https://doi.org/10.5281/zenodo.19657478

Scripted Higher-Level Analyses in FSL using FEAT derivatives#

This notebook walks through a simple, novice-friendly workflow in Neurodesk EDU:

  1. set up one example project folder and download the FEAT templates used for higher-level modeling

  2. download a public OSF archive that contains the five run-level Level-1 .feat directories for sub-104 and the precomputed Level-2 .gfeat directories for the full sample

  3. render and run a fixed-effects Level-2 FEAT model for cope10 (reciprocate > defect) in sub-104

  4. review the Level-2 output, including quick NiiVue visualizations

  5. render and run an initial Level-3 one-group model focused on the same lower-level cope

  6. inspect the resulting mask before trusting the activation map, using a real teachable moment from this workflow

  7. download a refreshed Level-2 archive generated after rerunning preprocessing with fMRIPrep 25.2.5, rerender the same one-group Level-3 template, and rerun the group model

  8. review the refreshed Level-3 output and compare it with the original result

The main teaching goal is to show how higher-level FEAT analyses can still go wrong even when the commands run cleanly — and why it is so important to check the mask before interpreting the activation.

Author:

Date: April 18, 2026

License:

Provenance: This notebook adapts course materials and selected logic from the Fareri trust-game workflow code, but rewrites the steps so they can be followed directly in notebook cells. Full workflow repository: tubric/fareri-2022-neuroimage.

Acknowledgments: This notebook was generated with assistance from ChatGPT-5 across several iterations and then revised by the instructor. The instructor reviewed the final content and takes responsibility for it.

Citation and Resources#

Study-specific references#

  • Fareri et al. (2022): Fareri, D. S., Hackett, K., Tepfer, L. J., Kelly, V., Henninger, N., Reeck, C., Giovannetti, T., & Smith, D. V. (2022). Age-related differences in ventral striatal and default mode network function during reciprocated trust. NeuroImage, 256, 119267. DOI

  • Smith et al. (2024): Smith, D. V., Ludwig, R. M., Dennison, J. B., Reeck, C., & Fareri, D. S. (2024). An fMRI Dataset on Social Reward Processing and Decision Making in Younger and Older Adults. Scientific Data, 11(1), 158. DOI

Full workflow repository#

Public archives for this notebook#

Table of content#

1. Load software tools and import python libraries
2. Project setup
3. Download the FEAT derivatives from OSF
4. Check the downloaded inputs
5. Render the Level-2 FEAT template
6. Run the Level-2 FEAT model
7. Review the Level-2 output
8. Render and run the initial Level-3 FEAT model
9. Review the initial Level-3 output and check the mask
10. Refresh the Level-3 inputs and rerun the group model
11. Review the refreshed Level-3 output
12. Dependencies in Jupyter/Python

1. Load software tools and import python libraries#

import module
await module.load('fsl/6.0.7.16')
await module.list()
['fsl/6.0.7.16']
%%capture
!pip install nibabel numpy osfclient
from pathlib import Path
import os
import numpy as np
import nibabel as nib
from IPython.display import display, Markdown, Image

HOME = Path.home()
EXAMPLE_DIR = HOME / "trust_example_higherlevel"

DOWNLOAD_DIR = EXAMPLE_DIR / "downloads"
DERIV_ROOT = EXAMPLE_DIR / "derivatives" / "fsl"
TEMPLATE_ROOT = EXAMPLE_DIR / "templates"

for d in [DOWNLOAD_DIR, DERIV_ROOT, TEMPLATE_ROOT]:
    d.mkdir(parents=True, exist_ok=True)

sub = "104"
task = "trust"
model_type = "act"
sm = 6
nruns = 5
cope_num = 10

print("Example directory:", EXAMPLE_DIR)
print("Downloads:", DOWNLOAD_DIR)
print("Derivative root:", DERIV_ROOT)
print("Template root:", TEMPLATE_ROOT)
Example directory: /home/jovyan/trust_example_higherlevel
Downloads: /home/jovyan/trust_example_higherlevel/downloads
Derivative root: /home/jovyan/trust_example_higherlevel/derivatives/fsl
Template root: /home/jovyan/trust_example_higherlevel/templates

2. Project setup#

We will keep everything for this example in one folder directly under the home directory:

~/trust_example_higherlevel

This notebook is designed to be rerun safely. To make that possible, we keep the downloaded archive, the shared derivatives, and the notebook-generated FEAT outputs in separate subfolders.

For this notebook, we need:

  • one Level-2 fixed-effects template for rerunning sub-104

  • one Level-3 one-group template for the initial and refreshed group analyses

We will use three subfolders with different roles:

  • ~/trust_example_higherlevel/templates for the downloaded .fsf templates

  • ~/trust_example_higherlevel/downloads for the raw OSF archive and its unpacked contents

  • ~/trust_example_higherlevel/derivatives/fsl for the shared FEAT derivatives and the new notebook-generated higher-level outputs

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"

mkdir -p "$EXAMPLE_DIR/templates"
mkdir -p "$EXAMPLE_DIR/downloads"
mkdir -p "$EXAMPLE_DIR/derivatives/fsl/sub-104"

# Copy the FEAT templates we need for this notebook.
curl -L \
  https://raw.githubusercontent.com/tubric/fareri-2022-neuroimage/main/templates/L2_task-trust_model-01_type-act_nruns-5.fsf \
  -o "$EXAMPLE_DIR/templates/L2_task-trust_model-01_type-act_nruns-5.fsf"

curl -L \
  https://raw.githubusercontent.com/tubric/fareri-2022-neuroimage/main/templates/L3_template_n48_trust_onegroup.fsf \
  -o "$EXAMPLE_DIR/templates/L3_template_n48_trust_onegroup.fsf"

echo "Templates copied to:"
ls -1 "$EXAMPLE_DIR/templates"
Templates copied to:
L2_task-trust_model-01_type-act_nruns-5.fsf
L3_template_n48_trust_onegroup.fsf
  % Total    % Received % Xferd  Average Speed   Tim
e    Time     Time  Current
                          Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0
  0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  9228  100  9228    0     0  30239      0 --:--:-- --:--:-- --:--:-- 30255
  % Total    % Received % Xferd  Average Speed   Time    T
ime     Time  Current
                        Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0
0      0      0 --:--:-- --:--:-- --:--:--     0
100 21483  100 21483    0     0  79060      0 --:--:-- --:--:-- --:--:-- 79273
!find ~/trust_example_higherlevel/templates -maxdepth 1 -type f | sort
/home/jovyan/trust_example_higherlevel/templates/L2_task-trust_model-01_type-act_nruns-5.fsf
/home/jovyan/trust_example_higherlevel/templates/L3_template_n48_trust_onegroup.fsf

The original shell scripts automate higher-level FEAT across many participants, models, and contrasts. Here we narrow that logic to one concrete teaching case.

The OSF archive used below contains two kinds of material that matter for this notebook:

  • the five run-level Level-1 .feat directories for sub-104, which let us rerun the Level-2 model from scratch

  • the precomputed Level-2 .gfeat directories for the full sample, which let us build Level-3 group analyses without first rerunning every participant

That combination keeps the notebook compact while still showing the full higher-level workflow end to end.

3. Download the FEAT derivatives from OSF#

For this notebook, assume the completed FEAT derivatives have already been shared through the public OSF project:

The first command below lists the files visible in that OSF project. In this case, the archive path reported by osf ls is:

osfstorage/fareri-2022-neuroimage_example-activation.tar.gz

The cell is written so that it can be rerun safely. If the archive already exists locally, it will be reused rather than downloaded again. The unpacked archive contents will still be refreshed, and the archived FEAT derivatives will be copied into the notebook’s derivatives/fsl/ folder.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
PROJECT="ktxug"

REMOTE_ARCHIVE="osfstorage/fareri-2022-neuroimage_example-activation.tar.gz"
LOCAL_ARCHIVE="$EXAMPLE_DIR/downloads/fareri-2022-neuroimage_example-activation.tar.gz"

DOWNLOAD_DIR="$EXAMPLE_DIR/downloads"
DERIV_DIR="$EXAMPLE_DIR/derivatives/fsl"

mkdir -p "$DOWNLOAD_DIR"
mkdir -p "$DERIV_DIR"

echo "Files visible in OSF project $PROJECT:"
osf -p "$PROJECT" ls

echo
if [ ! -f "$LOCAL_ARCHIVE" ]; then
    echo "Downloading archive from OSF ..."
    osf -p "$PROJECT" fetch "$REMOTE_ARCHIVE" "$LOCAL_ARCHIVE"
else
    echo "Archive already exists locally. Reusing it:"
    echo "  $LOCAL_ARCHIVE"
fi

echo
echo "Refreshing unpacked archive contents ..."
rm -rf "$DOWNLOAD_DIR/__forOSF"
tar -xzf "$LOCAL_ARCHIVE" -C "$DOWNLOAD_DIR"

echo
echo "Copying archived FEAT derivatives into the teaching directory ..."
cp -r "$DOWNLOAD_DIR/__forOSF/." "$DERIV_DIR/"

echo
echo "Example derivatives are now here:"
echo "  $DERIV_DIR"
find "$DERIV_DIR" -maxdepth 2 -type d | sort | head -60
Files visible in OSF project ktxug:
osfstorage/revised-fsl-activation.tar.gz
osfstorage/fareri-2022-neuroimage_example-activation.tar.gz
Downloading archive from OSF ...
Refreshing unpacked archive contents ...
Copying archived FEAT derivatives into the teaching directory ...

Example derivatives are now here:
  /home/jovyan/trust_example_higherlevel/derivatives/fsl
/home/jovyan/trust_example_higherlevel/derivatives/fsl
/home/jovyan/trust_example_higherlevel/deriva
tives/fsl/sub-104
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model
-01_type-act_run-01_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task
-trust_model-01_type-act_run-02_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub
-104/L1_task-trust_model-01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivat
ives/fsl/sub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherl
evel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat
/home/jovyan/trust_exa
mple_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tru
st_example_higherlevel/derivatives/fsl/sub-105
/home/jovyan/trust_example_higherlevel/derivatives/fs
l/sub-105/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivati
ves/fsl/sub-106
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106/L2_task-trust_model-0
1_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107
/home/jovyan/tr
ust_example_higherlevel/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jov
yan/trust_example_higherlevel/derivatives/fsl/sub-108
/home/jovyan/trust_example_higherlevel/derivat
ives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/d
erivatives/fsl/sub-109
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109/L2_task-trust_
model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110
/home/jo
vyan/trust_example_higherlevel/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/h
ome/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111
/home/jovyan/trust_example_higherlevel/
derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higher
level/derivatives/fsl/sub-112
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112/L2_task
-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113
/
home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.g
feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115
/home/jovyan/trust_example_highe
rlevel/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example
_higherlevel/derivatives/fsl/sub-116
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116/
L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/su
b-117
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act
_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118
/home/jovyan/trust_exampl
e_higherlevel/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_
example_higherlevel/derivatives/fsl/sub-120
/home/jovyan/trust_example_higherlevel/derivatives/fsl/s
ub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives
/fsl/sub-121
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121/L2_task-trust_model-01_t
ype-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122
/home/jovyan/trust
_example_higherlevel/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan
/trust_example_higherlevel/derivatives/fsl/sub-124
/home/jovyan/trust_example_higherlevel/derivative
s/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/deri
vatives/fsl/sub-125
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125/L2_task-trust_mod
el-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126
/home/jovya
n/trust_example_higherlevel/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat
/home
/jovyan/trust_example_higherlevel/derivatives/fsl/sub-127
/home/jovyan/trust_example_higherlevel/der
ivatives/fsl/sub-127/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlev
el/derivatives/fsl/sub-128
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-128/L2_task-tr
ust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129
/hom
e/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129/L2_task-trust_model-01_type-act_sm-6.gfea
t
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-130
/home/jovyan/trust_example_higherle
vel/derivatives/fsl/sub-130/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_hi
gherlevel/derivatives/fsl/sub-131
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-131/L2_
task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-1
32
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-132/L2_task-trust_model-01_type-act_sm
-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-133
/home/jovyan/trust_example_h
igherlevel/derivatives/fsl/sub-133/L2_task-trust_model-01_type-act_sm-6.gfeat
  0%|          | 0.00/3.30G [00:00<?, ?bytes/s]
  0%|          | 16.4k/3.30G [00:00<9:35:17, 95.7kbytes/s]
  0%|          | 49.2k/3.30G [00:00<7:23:58, 124kbytes/s]
  0%|          | 81.9k/3.30G [00:00<7:00:18, 131kbytes/s]
  0%|          | 131k/3.30G [00:00<4:28:30, 205kbytes/s]
  0%|          | 180k/3.30G [00:00<3:37:06, 254kbytes/s]
  0%|          | 246k/3.30G [00:01<2:42:32, 339kbytes/s]
  0%|          | 360k/3.30G [00:01<1:45:14, 523kbytes/s]
  0%|          | 475k/3.30G [00:01<1:22:14, 670kbytes/s]
  0%|          | 672k/3.30G [00:01<54:57, 1.00Mbytes/s]
  0%|          | 918k/3.30G [00:01<39:50, 1.38Mbytes/s]
  0%|          | 1.28M/3.30G [00:01<27:43, 1.99Mbytes/s]
  0%|          | 1.80M/3.30G [00:01<19:08, 2.88Mbytes/s]
  0%|          | 2.54M/3.30G [00:01<13:16, 4.14Mbytes/s]
  0%|          | 3.52M/3.30G [00:01<09:31, 5.78Mbytes/s]
  0%|          | 4.93M/3.30G [00:01<06:42, 8.20Mbytes/s]
  0%|          | 6.83M/3.30G [00:02<04:50, 11.3Mbytes/s]
  0%|          | 8.90M/3.30G [00:02<04:03, 13.6Mbytes/s]
  0%|          | 11.0M/3.30G [00:02<03:37, 15.1Mbytes/s]
  0%|          | 13.2M/3.30G [00:02<03:20, 16.4Mbytes/s]
  0%|          | 15.2M/3.30G [00:02<03:07, 17.5Mbytes/s]
  1%|          | 17.1M/3.30G [00:02<03:06, 17.6Mbytes/s]
  1%|          | 19.2M/3.30G [00:02<02:56, 18.6Mbytes/s]
  1%|          | 21.1M/3.30G [00:02<02:56, 18.6Mbytes/s]
  1%|          | 23.1M/3.30G [00:02<02:56, 18.6Mbytes/s]
  1%|          | 25.3M/3.30G [00:03<02:48, 19.4Mbytes/s]
  1%|          | 27.2M/3.30G [00:03<02:51, 19.1Mbytes/s]
  1%|          | 29.2M/3.30G [00:03<02:55, 18.7Mbytes/s]
  1%|          | 31.3M/3.30G [00:03<02:50, 19.1Mbytes/s]
  1%|          | 33.2M/3.30G [00:03<02:50, 19.2Mbytes/s]
  1%|          | 35.2M/3.30G [00:03<02:50, 19.2Mbytes/s]
  1%|          | 37.1M/3.30G [00:03<02:50, 19.2Mbytes/s]
  1%|          | 39.1M/3.30G [00:03<02:50, 19.2Mbytes/s]
  1%|          | 41.0M/3.30G [00:03<02:50, 19.2Mbytes/s]
  1%|▏         | 42.9M/3.30G [00:03<02:50, 19.1Mbytes/s]
  1%|▏         | 44.8M/3.30G [00:04<02:50, 19.1Mbytes/s]
  1%|▏         | 46.7M/3.30G [00:04<03:03, 17.8Mbytes/s]
  1%|▏         | 48.9M/3.30G [00:04<02:52, 18.9Mbytes/s]
  2%|▏         | 50.9M/3.30G [00:04<02:55, 18.6Mbytes/s]
  2%|▏         | 53.0M/3.30G [00:04<02:46, 19.5Mbytes/s]
  2%|▏         | 55.0M/3.30G [00:04<02:50, 19.0Mbytes/s]
  2%|▏         | 57.1M/3.30G [00:04<02:55, 18.5Mbytes/s]
  2%|▏         | 59.3M/3.30G [00:04<03:01, 17.9Mbytes/s]
  2%|▏         | 61.5M/3.30G [00:04<02:51, 18.9Mbytes/s]
  2%|▏         | 63.4M/3.30G [00:05<02:53, 18.6Mbytes/s]
  2%|▏         | 65.3M/3.30G [00:05<03:04, 17.6Mbytes/s]
  2%|▏         | 67.1M/3.30G [00:05<03:38, 14.8Mbytes/s]
  2%|▏         | 70.5M/3.30G [00:05<02:47, 19.3Mbytes/s]
  2%|▏         | 72.5M/3.30G [00:05<02:55, 18.4Mbytes/s]
  2%|▏         | 74.8M/3.30G [00:05<03:17, 16.4Mbytes/s]
  2%|▏         | 78.2M/3.30G [00:05<02:39, 20.2Mbytes/s]
  2%|▏         | 80.4M/3.30G [00:05<02:49, 19.1Mbytes/s]
  2%|▏         | 82.5M/3.30G [00:06<03:12, 16.7Mbytes/s]
  3%|▎         | 86.0M/3.30G [00:06<02:38, 20.3Mbytes/s]
  3%|▎         | 88.2M/3.30G [00:06<02:49, 19.0Mbytes/s]
  3%|▎         | 90.2M/3.30G [00:06<02:54, 18.5Mbytes/s]
  3%|▎         | 92.6M/3.30G [00:06<02:44, 19.6Mbytes/s]
  3%|▎         | 94.6M/3.30G [00:06<03:22, 15.8Mbytes/s]
  3%|▎         | 96.3M/3.30G [00:07<04:02, 13.2Mbytes/s]
  3%|▎         | 99.7M/3.30G [00:07<03:37, 14.7Mbytes/s]
  3%|▎         | 104M/3.30G [00:07<03:17, 16.2Mbytes/s]
  3%|▎         | 107M/3.30G [00:07<03:06, 17.1Mbytes/s]
  3%|▎         | 111M/3.30G [00:07<03:00, 17.7Mbytes/s]
  3%|▎         | 115M/3.30G [00:08<02:55, 18.1Mbytes/s]
  4%|▎         | 119M/3.30G [00:08<02:53, 18.3Mbytes/s]
  4%|▎         | 123M/3.30G [00:08<02:51, 18.5Mbytes/s]
  4%|▍         | 127M/3.30G [00:08<02:50, 18.7Mbytes/s]
  4%|▍         | 131M/3.30G [00:08<02:48, 18.8Mbytes/s]
  4%|▍         | 134M/3.30G [00:08<02:27, 21.5Mbytes/s]
  4%|▍         | 137M/3.30G [00:09<02:43, 19.3Mbytes/s]
  4%|▍         | 139M/3.30G [00:09<02:54, 18.2Mbytes/s]
  4%|▍         | 142M/3.30G [00:09<02:29, 21.2Mbytes/s]
  4%|▍         | 144M/3.30G [00:09<02:45, 19.1Mbytes/s]
  4%|▍         | 146M/3.30G [00:09<02:57, 17.8Mbytes/s]
  5%|▍         | 149M/3.30G [00:09<02:32, 20.7Mbytes/s]
  5%|▍         | 152M/3.30G [00:09<02:49, 18.6Mbytes/s]
  5%|▍         | 154M/3.30G [00:10<02:58, 17.6Mbytes/s]
  5%|▍         | 157M/3.30G [00:10<02:29, 21.0Mbytes/s]
  5%|▍         | 160M/3.30G [00:10<02:45, 19.0Mbytes/s]
  5%|▍         | 162M/3.30G [00:10<02:57, 17.7Mbytes/s]
  5%|▍         | 165M/3.30G [00:10<02:29, 21.0Mbytes/s]
  5%|▌         | 167M/3.30G [00:10<02:45, 18.9Mbytes/s]
  5%|▌         | 170M/3.30G [00:10<02:57, 17.6Mbytes/s]
  5%|▌         | 173M/3.30G [00:10<02:28, 21.1Mbytes/s]
  5%|▌         | 175M/3.30G [00:11<02:49, 18.4Mbytes/s]
  5%|▌         | 177M/3.30G [00:11<02:56, 17.7Mbytes/s]
  5%|▌         | 181M/3.30G [00:11<02:27, 21.2Mbytes/s]
  6%|▌         | 183M/3.30G [00:11<02:52, 18.1Mbytes/s]
  6%|▌         | 185M/3.30G [00:11<02:54, 17.9Mbytes/s]
  6%|▌         | 188M/3.30G [00:11<02:36, 19.9Mbytes/s]
  6%|▌         | 190M/3.30G [00:11<02:50, 18.3Mbytes/s]
  6%|▌         | 192M/3.30G [00:12<03:23, 15.3Mbytes/s]
  6%|▌         | 196M/3.30G [00:12<03:14, 16.0Mbytes/s]
  6%|▌         | 199M/3.30G [00:12<03:01, 17.1Mbytes/s]
  6%|▌         | 203M/3.30G [00:12<02:54, 17.8Mbytes/s]
  6%|▋         | 207M/3.30G [00:12<02:49, 18.3Mbytes/s]
  6%|▋         | 211M/3.30G [00:13<02:47, 18.5Mbytes/s]
  7%|▋         | 215M/3.30G [00:13<02:45, 18.6Mbytes/s]
  7%|▋         | 219M/3.30G [00:13<02:43, 18.8Mbytes/s]
  7%|▋         | 223M/3.30G [00:13<02:43, 18.9Mbytes/s]
  7%|▋         | 227M/3.30G [00:13<02:41, 19.1Mbytes/s]
  7%|▋         | 231M/3.30G [00:14<02:19, 22.1Mbytes/s]
  7%|▋         | 233M/3.30G [00:14<02:41, 19.0Mbytes/s]
  7%|▋         | 235M/3.30G [00:14<03:11, 16.0Mbytes/s]
  7%|▋         | 238M/3.30G [00:14<02:39, 19.3Mbytes/s]
  7%|▋         | 241M/3.30G [00:14<03:03, 16.7Mbytes/s]
  7%|▋         | 243M/3.30G [00:14<03:32, 14.4Mbytes/s]
  7%|▋         | 246M/3.30G [00:15<02:46, 18.4Mbytes/s]
  8%|▊         | 248M/3.30G [00:15<03:14, 15.7Mbytes/s]
  8%|▊         | 250M/3.30G [00:15<03:38, 14.0Mbytes/s]
  8%|▊         | 253M/3.30G [00:15<03:48, 13.4Mbytes/s]
  8%|▊         | 255M/3.30G [00:15<04:08, 12.3Mbytes/s]
  8%|▊         | 259M/3.30G [00:16<03:27, 14.7Mbytes/s]
  8%|▊         | 263M/3.30G [00:16<03:09, 16.0Mbytes/s]
  8%|▊         | 266M/3.30G [00:16<02:39, 19.0Mbytes/s]
  8%|▊         | 268M/3.30G [00:16<03:30, 14.4Mbytes/s]
  8%|▊         | 271M/3.30G [00:16<03:33, 14.2Mbytes/s]
  8%|▊         | 274M/3.30G [00:17<03:13, 15.7Mbytes/s]
  8%|▊         | 278M/3.30G [00:17<03:00, 16.8Mbytes/s]
  9%|▊         | 282M/3.30G [00:17<02:30, 20.0Mbytes/s]
  9%|▊         | 284M/3.30G [00:17<02:45, 18.2Mbytes/s]
  9%|▊         | 286M/3.30G [00:17<02:55, 17.2Mbytes/s]
  9%|▉         | 290M/3.30G [00:17<02:24, 20.8Mbytes/s]
  9%|▉         | 292M/3.30G [00:17<02:42, 18.6Mbytes/s]
  9%|▉         | 294M/3.30G [00:18<02:55, 17.2Mbytes/s]
  9%|▉         | 297M/3.30G [00:18<02:22, 21.2Mbytes/s]
  9%|▉         | 300M/3.30G [00:18<02:43, 18.4Mbytes/s]
  9%|▉         | 302M/3.30G [00:18<02:51, 17.6Mbytes/s]
  9%|▉         | 305M/3.30G [00:18<02:23, 20.9Mbytes/s]
  9%|▉         | 307M/3.30G [00:18<02:43, 18.3Mbytes/s]
  9%|▉         | 309M/3.30G [00:18<02:50, 17.6Mbytes/s]
  9%|▉         | 313M/3.30G [00:18<02:22, 21.1Mbytes/s]
 10%|▉         | 315M/3.30G [00:19<02:40, 18.6Mbytes/s]
 10%|▉         | 317M/3.30G [00:19<02:48, 17.8Mbytes/s]
 10%|▉         | 320M/3.30G [00:19<02:23, 20.8Mbytes/s]
 10%|▉         | 323M/3.30G [00:19<02:41, 18.4Mbytes/s]
 10%|▉         | 325M/3.30G [00:19<02:45, 18.0Mbytes/s]
 10%|▉         | 328M/3.30G [00:19<02:23, 20.7Mbytes/s]
 10%|▉         | 330M/3.30G [00:19<02:41, 18.4Mbytes/s]
 10%|█         | 333M/3.30G [00:20<02:43, 18.1Mbytes/s]
 10%|█         | 336M/3.30G [00:20<02:22, 20.8Mbytes/s]
 10%|█         | 338M/3.30G [00:20<02:40, 18.4Mbytes/s]
 10%|█         | 341M/3.30G [00:20<02:44, 18.0Mbytes/s]
 10%|█         | 344M/3.30G [00:20<02:22, 20.7Mbytes/s]
 10%|█         | 346M/3.30G [00:20<02:43, 18.1Mbytes/s]
 11%|█         | 348M/3.30G [00:20<02:43, 18.1Mbytes/s]
 11%|█         | 351M/3.30G [00:20<02:22, 20.8Mbytes/s]
 11%|█         | 353M/3.30G [00:21<02:42, 18.2Mbytes/s]
 11%|█         | 356M/3.30G [00:21<02:41, 18.3Mbytes/s]
 11%|█         | 359M/3.30G [00:21<02:22, 20.7Mbytes/s]
 11%|█         | 361M/3.30G [00:21<02:42, 18.1Mbytes/s]
 11%|█         | 364M/3.30G [00:21<02:40, 18.3Mbytes/s]
 11%|█         | 366M/3.30G [00:21<02:24, 20.4Mbytes/s]
 11%|█         | 369M/3.30G [00:21<02:45, 17.8Mbytes/s]
 11%|█         | 371M/3.30G [00:22<02:33, 19.1Mbytes/s]
 11%|█▏        | 373M/3.30G [00:22<02:34, 19.0Mbytes/s]
 11%|█▏        | 375M/3.30G [00:22<02:28, 19.7Mbytes/s]
 11%|█▏        | 377M/3.30G [00:22<02:30, 19.5Mbytes/s]
 11%|█▏        | 379M/3.30G [00:22<02:46, 17.6Mbytes/s]
 12%|█▏        | 382M/3.30G [00:22<02:17, 21.2Mbytes/s]
 12%|█▏        | 385M/3.30G [00:22<02:37, 18.5Mbytes/s]
 12%|█▏        | 387M/3.30G [00:22<02:45, 17.7Mbytes/s]
 12%|█▏        | 390M/3.30G [00:23<02:22, 20.4Mbytes/s]
 12%|█▏        | 392M/3.30G [00:23<02:51, 17.0Mbytes/s]
 12%|█▏        | 394M/3.30G [00:23<03:14, 15.0Mbytes/s]
 12%|█▏        | 398M/3.30G [00:23<02:57, 16.3Mbytes/s]
 12%|█▏        | 402M/3.30G [00:23<02:48, 17.3Mbytes/s]
 12%|█▏        | 405M/3.30G [00:23<02:41, 17.9Mbytes/s]
 12%|█▏        | 409M/3.30G [00:24<02:37, 18.3Mbytes/s]
 13%|█▎        | 413M/3.30G [00:24<02:35, 18.5Mbytes/s]
 13%|█▎        | 417M/3.30G [00:24<02:34, 18.6Mbytes/s]
 13%|█▎        | 419M/3.30G [00:24<02:41, 17.8Mbytes/s]
 13%|█▎        | 422M/3.30G [00:24<02:49, 17.0Mbytes/s]
 13%|█▎        | 424M/3.30G [00:25<03:04, 15.6Mbytes/s]
 13%|█▎        | 426M/3.30G [00:25<03:28, 13.8Mbytes/s]
 13%|█▎        | 430M/3.30G [00:25<03:02, 15.7Mbytes/s]
 13%|█▎        | 434M/3.30G [00:25<02:51, 16.7Mbytes/s]
 13%|█▎        | 438M/3.30G [00:25<02:44, 17.5Mbytes/s]
 13%|█▎        | 442M/3.30G [00:26<02:39, 18.0Mbytes/s]
 13%|█▎        | 446M/3.30G [00:26<02:36, 18.3Mbytes/s]
 14%|█▎        | 450M/3.30G [00:26<02:33, 18.6Mbytes/s]
 14%|█▎        | 454M/3.30G [00:26<02:32, 18.7Mbytes/s]
 14%|█▍        | 458M/3.30G [00:26<02:30, 18.9Mbytes/s]
 14%|█▍        | 461M/3.30G [00:27<02:30, 18.9Mbytes/s]
 14%|█▍        | 465M/3.30G [00:27<02:07, 22.2Mbytes/s]
 14%|█▍        | 468M/3.30G [00:27<02:25, 19.6Mbytes/s]
 14%|█▍        | 470M/3.30G [00:27<02:32, 18.6Mbytes/s]
 14%|█▍        | 473M/3.30G [00:27<02:37, 18.0Mbytes/s]
 14%|█▍        | 477M/3.30G [00:27<02:10, 21.7Mbytes/s]
 15%|█▍        | 479M/3.30G [00:28<02:31, 18.7Mbytes/s]
 15%|█▍        | 481M/3.30G [00:28<02:35, 18.1Mbytes/s]
 15%|█▍        | 484M/3.30G [00:28<02:18, 20.4Mbytes/s]
 15%|█▍        | 486M/3.30G [00:28<02:36, 18.0Mbytes/s]
 15%|█▍        | 489M/3.30G [00:28<02:38, 17.8Mbytes/s]
 15%|█▍        | 491M/3.30G [00:28<02:38, 17.7Mbytes/s]
 15%|█▍        | 492M/3.30G [00:28<02:53, 16.2Mbytes/s]
 15%|█▌        | 496M/3.30G [00:28<02:31, 18.6Mbytes/s]
 15%|█▌        | 498M/3.30G [00:29<02:35, 18.0Mbytes/s]
 15%|█▌        | 500M/3.30G [00:29<02:38, 17.7Mbytes/s]
 15%|█▌        | 503M/3.30G [00:29<02:20, 19.9Mbytes/s]
 15%|█▌        | 505M/3.30G [00:29<02:34, 18.1Mbytes/s]
 15%|█▌        | 508M/3.30G [00:29<02:23, 19.6Mbytes/s]
 15%|█▌        | 510M/3.30G [00:29<02:27, 18.9Mbytes/s]
 15%|█▌        | 512M/3.30G [00:29<02:37, 17.8Mbytes/s]
 16%|█▌        | 515M/3.30G [00:29<02:15, 20.6Mbytes/s]
 16%|█▌        | 517M/3.30G [00:30<02:28, 18.7Mbytes/s]
 16%|█▌        | 519M/3.30G [00:30<02:22, 19.5Mbytes/s]
 16%|█▌        | 521M/3.30G [00:30<02:27, 18.8Mbytes/s]
 16%|█▌        | 524M/3.30G [00:30<02:39, 17.5Mbytes/s]
 16%|█▌        | 527M/3.30G [00:30<02:12, 20.9Mbytes/s]
 16%|█▌        | 529M/3.30G [00:30<02:28, 18.6Mbytes/s]
 16%|█▌        | 531M/3.30G [00:30<02:38, 17.5Mbytes/s]
 16%|█▌        | 534M/3.30G [00:30<02:13, 20.7Mbytes/s]
 16%|█▌        | 537M/3.30G [00:31<02:27, 18.8Mbytes/s]
 16%|█▋        | 539M/3.30G [00:31<02:37, 17.6Mbytes/s]
 16%|█▋        | 541M/3.30G [00:31<02:53, 15.9Mbytes/s]
 16%|█▋        | 543M/3.30G [00:31<03:10, 14.5Mbytes/s]
 17%|█▋        | 547M/3.30G [00:31<02:50, 16.2Mbytes/s]
 17%|█▋        | 551M/3.30G [00:31<02:40, 17.2Mbytes/s]
 17%|█▋        | 554M/3.30G [00:32<02:13, 20.6Mbytes/s]
 17%|█▋        | 556M/3.30G [00:32<02:21, 19.4Mbytes/s]
 17%|█▋        | 558M/3.30G [00:32<02:39, 17.2Mbytes/s]
 17%|█▋        | 562M/3.30G [00:32<02:13, 20.5Mbytes/s]
 17%|█▋        | 564M/3.30G [00:32<02:21, 19.3Mbytes/s]
 17%|█▋        | 566M/3.30G [00:32<02:41, 17.0Mbytes/s]
 17%|█▋        | 570M/3.30G [00:32<02:08, 21.3Mbytes/s]
 17%|█▋        | 572M/3.30G [00:33<02:19, 19.6Mbytes/s]
 17%|█▋        | 574M/3.30G [00:33<02:38, 17.2Mbytes/s]
 17%|█▋        | 578M/3.30G [00:33<02:36, 17.4Mbytes/s]
 18%|█▊        | 582M/3.30G [00:33<02:31, 18.0Mbytes/s]
 18%|█▊        | 586M/3.30G [00:33<02:28, 18.3Mbytes/s]
 18%|█▊        | 589M/3.30G [00:34<02:26, 18.6Mbytes/s]
 18%|█▊        | 593M/3.30G [00:34<02:03, 21.9Mbytes/s]
 18%|█▊        | 596M/3.30G [00:34<02:15, 20.0Mbytes/s]
 18%|█▊        | 598M/3.30G [00:34<02:30, 18.0Mbytes/s]
 18%|█▊        | 601M/3.30G [00:34<02:32, 17.7Mbytes/s]
 18%|█▊        | 603M/3.30G [00:34<02:58, 15.1Mbytes/s]
 18%|█▊        | 606M/3.30G [00:34<02:32, 17.7Mbytes/s]
 18%|█▊        | 608M/3.30G [00:35<02:34, 17.4Mbytes/s]
 18%|█▊        | 610M/3.30G [00:35<02:19, 19.3Mbytes/s]
 19%|█▊        | 613M/3.30G [00:35<02:42, 16.6Mbytes/s]
 19%|█▊        | 615M/3.30G [00:35<02:35, 17.3Mbytes/s]
 19%|█▊        | 617M/3.30G [00:35<02:36, 17.2Mbytes/s]
 19%|█▊        | 619M/3.30G [00:35<02:27, 18.2Mbytes/s]
 19%|█▉        | 621M/3.30G [00:35<02:27, 18.2Mbytes/s]
 19%|█▉        | 623M/3.30G [00:35<02:23, 18.7Mbytes/s]
 19%|█▉        | 625M/3.30G [00:35<02:23, 18.6Mbytes/s]
 19%|█▉        | 627M/3.30G [00:36<02:18, 19.3Mbytes/s]
 19%|█▉        | 629M/3.30G [00:36<02:21, 18.9Mbytes/s]
 19%|█▉        | 631M/3.30G [00:36<02:19, 19.2Mbytes/s]
 19%|█▉        | 633M/3.30G [00:36<02:18, 19.3Mbytes/s]
 19%|█▉        | 635M/3.30G [00:36<02:19, 19.2Mbytes/s]
 19%|█▉        | 637M/3.30G [00:36<02:34, 17.2Mbytes/s]
 19%|█▉        | 639M/3.30G [00:36<02:26, 18.2Mbytes/s]
 19%|█▉        | 641M/3.30G [00:36<02:26, 18.1Mbytes/s]
 19%|█▉        | 643M/3.30G [00:36<02:21, 18.8Mbytes/s]
 20%|█▉        | 645M/3.30G [00:37<02:25, 18.3Mbytes/s]
 20%|█▉        | 647M/3.30G [00:37<02:40, 16.5Mbytes/s]
 20%|█▉        | 650M/3.30G [00:37<02:14, 19.8Mbytes/s]
 20%|█▉        | 652M/3.30G [00:37<02:33, 17.3Mbytes/s]
 20%|█▉        | 655M/3.30G [00:37<03:00, 14.7Mbytes/s]
 20%|█▉        | 658M/3.30G [00:37<02:29, 17.7Mbytes/s]
 20%|█▉        | 660M/3.30G [00:38<02:44, 16.1Mbytes/s]
 20%|██        | 662M/3.30G [00:38<02:28, 17.8Mbytes/s]
 20%|██        | 664M/3.30G [00:38<02:46, 15.9Mbytes/s]
 20%|██        | 666M/3.30G [00:38<03:10, 13.8Mbytes/s]
 20%|██        | 670M/3.30G [00:38<02:26, 18.0Mbytes/s]
 20%|██        | 672M/3.30G [00:38<03:01, 14.5Mbytes/s]
 20%|██        | 674M/3.30G [00:38<02:53, 15.1Mbytes/s]
 21%|██        | 678M/3.30G [00:39<02:13, 19.7Mbytes/s]
 21%|██        | 680M/3.30G [00:39<02:30, 17.5Mbytes/s]
 21%|██        | 682M/3.30G [00:39<02:42, 16.1Mbytes/s]
 21%|██        | 686M/3.30G [00:39<02:34, 16.9Mbytes/s]
 21%|██        | 689M/3.30G [00:39<02:05, 20.8Mbytes/s]
 21%|██        | 692M/3.30G [00:39<02:32, 17.1Mbytes/s]
 21%|██        | 694M/3.30G [00:40<02:40, 16.3Mbytes/s]
 21%|██        | 697M/3.30G [00:40<02:21, 18.4Mbytes/s]
 21%|██        | 699M/3.30G [00:40<02:25, 17.9Mbytes/s]
 21%|██        | 702M/3.30G [00:40<02:59, 14.5Mbytes/s]
 21%|██▏       | 706M/3.30G [00:40<02:59, 14.5Mbytes/s]
 21%|██▏       | 709M/3.30G [00:41<02:54, 14.9Mbytes/s]
 22%|██▏       | 713M/3.30G [00:41<02:52, 15.1Mbytes/s]
 22%|██▏       | 717M/3.30G [00:41<02:49, 15.3Mbytes/s]
 22%|██▏       | 721M/3.30G [00:41<02:40, 16.1Mbytes/s]
 22%|██▏       | 725M/3.30G [00:42<02:45, 15.6Mbytes/s]
 22%|██▏       | 729M/3.30G [00:42<02:44, 15.6Mbytes/s]
 22%|██▏       | 733M/3.30G [00:42<02:43, 15.7Mbytes/s]
 22%|██▏       | 737M/3.30G [00:42<02:14, 19.0Mbytes/s]
 22%|██▏       | 739M/3.30G [00:42<02:31, 16.9Mbytes/s]
 22%|██▏       | 741M/3.30G [00:43<02:55, 14.6Mbytes/s]
 22%|██▏       | 743M/3.30G [00:43<02:33, 16.7Mbytes/s]
 23%|██▎       | 745M/3.30G [00:43<02:32, 16.8Mbytes/s]
 23%|██▎       | 747M/3.30G [00:43<02:38, 16.1Mbytes/s]
 23%|██▎       | 749M/3.30G [00:43<02:39, 16.0Mbytes/s]
 23%|██▎       | 751M/3.30G [00:43<02:24, 17.6Mbytes/s]
 23%|██▎       | 753M/3.30G [00:43<02:24, 17.6Mbytes/s]
 23%|██▎       | 755M/3.30G [00:43<02:21, 18.0Mbytes/s]
 23%|██▎       | 757M/3.30G [00:43<02:21, 18.0Mbytes/s]
 23%|██▎       | 759M/3.30G [00:43<02:19, 18.2Mbytes/s]
 23%|██▎       | 761M/3.30G [00:44<02:26, 17.4Mbytes/s]
 23%|██▎       | 763M/3.30G [00:44<02:05, 20.3Mbytes/s]
 23%|██▎       | 766M/3.30G [00:44<02:10, 19.4Mbytes/s]
 23%|██▎       | 768M/3.30G [00:44<02:43, 15.5Mbytes/s]
 23%|██▎       | 769M/3.30G [00:44<03:24, 12.4Mbytes/s]
 23%|██▎       | 773M/3.30G [00:44<02:27, 17.1Mbytes/s]
 23%|██▎       | 775M/3.30G [00:45<02:52, 14.6Mbytes/s]
 24%|██▎       | 777M/3.30G [00:45<03:14, 13.0Mbytes/s]
 24%|██▎       | 781M/3.30G [00:45<03:00, 14.0Mbytes/s]
 24%|██▎       | 785M/3.30G [00:45<02:52, 14.6Mbytes/s]
 24%|██▍       | 789M/3.30G [00:45<02:48, 15.0Mbytes/s]
 24%|██▍       | 793M/3.30G [00:46<02:44, 15.2Mbytes/s]
 24%|██▍       | 796M/3.30G [00:46<02:43, 15.3Mbytes/s]
 24%|██▍       | 800M/3.30G [00:46<02:32, 16.4Mbytes/s]
 24%|██▍       | 802M/3.30G [00:46<02:33, 16.3Mbytes/s]
 24%|██▍       | 804M/3.30G [00:46<02:35, 16.1Mbytes/s]
 24%|██▍       | 806M/3.30G [00:47<02:36, 15.9Mbytes/s]
 24%|██▍       | 808M/3.30G [00:47<02:35, 16.0Mbytes/s]
 25%|██▍       | 810M/3.30G [00:47<02:38, 15.7Mbytes/s]
 25%|██▍       | 812M/3.30G [00:47<02:36, 15.9Mbytes/s]
 25%|██▍       | 813M/3.30G [00:47<02:39, 15.7Mbytes/s]
 25%|██▍       | 816M/3.30G [00:47<02:21, 17.5Mbytes/s]
 25%|██▍       | 818M/3.30G [00:47<02:25, 17.1Mbytes/s]
 25%|██▍       | 820M/3.30G [00:47<02:32, 16.3Mbytes/s]
 25%|██▍       | 821M/3.30G [00:47<02:33, 16.1Mbytes/s]
 25%|██▍       | 824M/3.30G [00:48<02:32, 16.3Mbytes/s]
 25%|██▍       | 825M/3.30G [00:48<02:36, 15.9Mbytes/s]
 25%|██▌       | 827M/3.30G [00:48<02:36, 15.9Mbytes/s]
 25%|██▌       | 831M/3.30G [00:48<02:09, 19.1Mbytes/s]
 25%|██▌       | 833M/3.30G [00:48<02:19, 17.8Mbytes/s]
 25%|██▌       | 835M/3.30G [00:48<02:38, 15.6Mbytes/s]
 25%|██▌       | 839M/3.30G [00:48<02:12, 18.6Mbytes/s]
 25%|██▌       | 841M/3.30G [00:49<02:33, 16.1Mbytes/s]
 26%|██▌       | 843M/3.30G [00:49<02:50, 14.4Mbytes/s]
 26%|██▌       | 846M/3.30G [00:49<02:16, 18.0Mbytes/s]
 26%|██▌       | 848M/3.30G [00:49<02:34, 15.9Mbytes/s]
 26%|██▌       | 851M/3.30G [00:49<03:03, 13.4Mbytes/s]
 26%|██▌       | 853M/3.30G [00:50<03:23, 12.0Mbytes/s]
 26%|██▌       | 857M/3.30G [00:50<03:01, 13.5Mbytes/s]
 26%|██▌       | 861M/3.30G [00:50<02:50, 14.3Mbytes/s]
 26%|██▌       | 865M/3.30G [00:50<02:44, 14.8Mbytes/s]
 26%|██▋       | 869M/3.30G [00:51<02:41, 15.1Mbytes/s]
 26%|██▋       | 873M/3.30G [00:51<02:38, 15.3Mbytes/s]
 27%|██▋       | 877M/3.30G [00:51<02:28, 16.3Mbytes/s]
 27%|██▋       | 881M/3.30G [00:51<02:21, 17.1Mbytes/s]
 27%|██▋       | 885M/3.30G [00:52<02:23, 16.8Mbytes/s]
 27%|██▋       | 888M/3.30G [00:52<02:22, 16.9Mbytes/s]
 27%|██▋       | 892M/3.30G [00:52<02:25, 16.5Mbytes/s]
 27%|██▋       | 896M/3.30G [00:52<02:18, 17.4Mbytes/s]
 27%|██▋       | 900M/3.30G [00:52<02:14, 17.9Mbytes/s]
 27%|██▋       | 903M/3.30G [00:52<01:56, 20.7Mbytes/s]
 27%|██▋       | 906M/3.30G [00:53<02:10, 18.3Mbytes/s]
 27%|██▋       | 908M/3.30G [00:53<02:38, 15.1Mbytes/s]
 28%|██▊       | 911M/3.30G [00:53<02:05, 19.0Mbytes/s]
 28%|██▊       | 913M/3.30G [00:53<02:09, 18.4Mbytes/s]
 28%|██▊       | 916M/3.30G [00:53<02:26, 16.3Mbytes/s]
 28%|██▊       | 919M/3.30G [00:53<02:22, 16.7Mbytes/s]
 28%|██▊       | 923M/3.30G [00:54<02:15, 17.5Mbytes/s]
 28%|██▊       | 926M/3.30G [00:54<01:56, 20.4Mbytes/s]
 28%|██▊       | 928M/3.30G [00:54<02:12, 18.0Mbytes/s]
 28%|██▊       | 931M/3.30G [00:54<02:37, 15.1Mbytes/s]
 28%|██▊       | 933M/3.30G [00:54<02:14, 17.6Mbytes/s]
 28%|██▊       | 935M/3.30G [00:54<02:28, 16.0Mbytes/s]
 28%|██▊       | 938M/3.30G [00:55<02:39, 14.8Mbytes/s]
 28%|██▊       | 942M/3.30G [00:55<02:09, 18.3Mbytes/s]
 29%|██▊       | 944M/3.30G [00:55<02:15, 17.4Mbytes/s]
 29%|██▊       | 946M/3.30G [00:55<02:39, 14.7Mbytes/s]
 29%|██▊       | 950M/3.30G [00:55<02:08, 18.3Mbytes/s]
 29%|██▉       | 952M/3.30G [00:55<02:21, 16.6Mbytes/s]
 29%|██▉       | 954M/3.30G [00:56<02:46, 14.1Mbytes/s]
 29%|██▉       | 958M/3.30G [00:56<02:28, 15.8Mbytes/s]
 29%|██▉       | 961M/3.30G [00:56<02:01, 19.3Mbytes/s]
 29%|██▉       | 963M/3.30G [00:56<02:28, 15.8Mbytes/s]
 29%|██▉       | 966M/3.30G [00:56<02:24, 16.2Mbytes/s]
 29%|██▉       | 969M/3.30G [00:56<02:02, 19.1Mbytes/s]
 29%|██▉       | 971M/3.30G [00:57<02:30, 15.5Mbytes/s]
 29%|██▉       | 974M/3.30G [00:57<02:27, 15.8Mbytes/s]
 30%|██▉       | 976M/3.30G [00:57<02:13, 17.5Mbytes/s]
 30%|██▉       | 978M/3.30G [00:57<02:12, 17.6Mbytes/s]
 30%|██▉       | 981M/3.30G [00:57<02:04, 18.7Mbytes/s]
 30%|██▉       | 983M/3.30G [00:57<02:22, 16.3Mbytes/s]
 30%|██▉       | 986M/3.30G [00:57<02:07, 18.2Mbytes/s]
 30%|██▉       | 988M/3.30G [00:57<01:59, 19.4Mbytes/s]
 30%|██▉       | 990M/3.30G [00:58<02:01, 19.1Mbytes/s]
 30%|███       | 992M/3.30G [00:58<02:10, 17.7Mbytes/s]
 30%|███       | 994M/3.30G [00:58<02:12, 17.5Mbytes/s]
 30%|███       | 996M/3.30G [00:58<02:02, 18.8Mbytes/s]
 30%|███       | 998M/3.30G [00:58<02:04, 18.6Mbytes/s]
 30%|███       | 1.00G/3.30G [00:58<01:59, 19.2Mbytes/s]
 30%|███       | 1.00G/3.30G [00:58<02:19, 16.5Mbytes/s]
 30%|███       | 1.00G/3.30G [00:58<02:09, 17.8Mbytes/s]
 30%|███       | 1.01G/3.30G [00:59<02:15, 16.9Mbytes/s]
 31%|███       | 1.01G/3.30G [00:59<02:16, 16.8Mbytes/s]
 31%|███       | 1.01G/3.30G [00:59<02:23, 16.0Mbytes/s]
 31%|███       | 1.01G/3.30G [00:59<02:22, 16.1Mbytes/s]
 31%|███       | 1.02G/3.30G [00:59<01:53, 20.1Mbytes/s]
 31%|███       | 1.02G/3.30G [00:59<02:11, 17.4Mbytes/s]
 31%|███       | 1.02G/3.30G [00:59<02:37, 14.5Mbytes/s]
 31%|███       | 1.02G/3.30G [01:00<02:03, 18.5Mbytes/s]
 31%|███       | 1.03G/3.30G [01:00<02:20, 16.2Mbytes/s]
 31%|███       | 1.03G/3.30G [01:00<02:29, 15.2Mbytes/s]
 31%|███       | 1.03G/3.30G [01:00<02:02, 18.5Mbytes/s]
 31%|███▏      | 1.03G/3.30G [01:00<02:20, 16.2Mbytes/s]
 31%|███▏      | 1.04G/3.30G [01:00<02:23, 15.8Mbytes/s]
 31%|███▏      | 1.04G/3.30G [01:00<01:56, 19.5Mbytes/s]
 32%|███▏      | 1.04G/3.30G [01:01<02:03, 18.4Mbytes/s]
 32%|███▏      | 1.04G/3.30G [01:01<02:03, 18.3Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:01<02:15, 16.7Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:01<02:10, 17.3Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:01<02:19, 16.2Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:01<02:29, 15.0Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:01<02:07, 17.6Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:02<02:07, 17.6Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:02<02:19, 16.1Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:02<02:07, 17.5Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:02<02:21, 15.8Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:02<02:11, 17.0Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:02<02:10, 17.2Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:02<02:03, 18.1Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:02<02:03, 18.1Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:02<02:15, 16.5Mbytes/s]
 33%|███▎      | 1.07G/3.30G [01:03<02:14, 16.5Mbytes/s]
 33%|███▎      | 1.08G/3.30G [01:03<02:25, 15.4Mbytes/s]
 33%|███▎      | 1.08G/3.30G [01:03<02:40, 13.9Mbytes/s]
 33%|███▎      | 1.08G/3.30G [01:03<02:35, 14.3Mbytes/s]
 33%|███▎      | 1.08G/3.30G [01:03<02:24, 15.4Mbytes/s]
 33%|███▎      | 1.08G/3.30G [01:03<02:39, 13.9Mbytes/s]
 33%|███▎      | 1.09G/3.30G [01:03<02:21, 15.7Mbytes/s]
 33%|███▎      | 1.09G/3.30G [01:03<02:19, 15.8Mbytes/s]
 33%|███▎      | 1.09G/3.30G [01:03<02:10, 16.9Mbytes/s]
 33%|███▎      | 1.09G/3.30G [01:04<02:07, 17.3Mbytes/s]
 33%|███▎      | 1.09G/3.30G [01:04<02:03, 17.9Mbytes/s]
 33%|███▎      | 1.09G/3.30G [01:04<02:01, 18.2Mbytes/s]
 33%|███▎      | 1.10G/3.30G [01:04<01:58, 18.7Mbytes/s]
 33%|███▎      | 1.10G/3.30G [01:04<01:58, 18.6Mbytes/s]
 33%|███▎      | 1.10G/3.30G [01:04<01:55, 19.1Mbytes/s]
 33%|███▎      | 1.10G/3.30G [01:04<01:56, 19.0Mbytes/s]
 33%|███▎      | 1.10G/3.30G [01:04<01:54, 19.2Mbytes/s]
 33%|███▎      | 1.11G/3.30G [01:04<01:55, 19.1Mbytes/s]
 34%|███▎      | 1.11G/3.30G [01:05<01:54, 19.1Mbytes/s]
 34%|███▎      | 1.11G/3.30G [01:05<01:55, 19.1Mbytes/s]
 34%|███▎      | 1.11G/3.30G [01:05<01:55, 19.0Mbytes/s]
 34%|███▎      | 1.11G/3.30G [01:05<01:54, 19.1Mbytes/s]
 34%|███▍      | 1.12G/3.30G [01:05<02:10, 16.7Mbytes/s]
 34%|███▍      | 1.12G/3.30G [01:05<02:01, 18.0Mbytes/s]
 34%|███▍      | 1.12G/3.30G [01:05<02:16, 16.1Mbytes/s]
 34%|███▍      | 1.12G/3.30G [01:05<02:05, 17.4Mbytes/s]
 34%|███▍      | 1.12G/3.30G [01:05<02:19, 15.7Mbytes/s]
 34%|███▍      | 1.13G/3.30G [01:06<02:08, 16.9Mbytes/s]
 34%|███▍      | 1.13G/3.30G [01:06<02:07, 17.0Mbytes/s]
 34%|███▍      | 1.13G/3.30G [01:06<02:00, 18.1Mbytes/s]
 34%|███▍      | 1.13G/3.30G [01:06<02:00, 18.0Mbytes/s]
 34%|███▍      | 1.13G/3.30G [01:06<01:57, 18.6Mbytes/s]
 34%|███▍      | 1.14G/3.30G [01:06<01:54, 19.0Mbytes/s]
 34%|███▍      | 1.14G/3.30G [01:06<02:09, 16.8Mbytes/s]
 34%|███▍      | 1.14G/3.30G [01:06<02:03, 17.5Mbytes/s]
 35%|███▍      | 1.14G/3.30G [01:06<02:14, 16.1Mbytes/s]
 35%|███▍      | 1.14G/3.30G [01:07<02:11, 16.4Mbytes/s]
 35%|███▍      | 1.14G/3.30G [01:07<02:21, 15.3Mbytes/s]
 35%|███▍      | 1.15G/3.30G [01:07<02:17, 15.7Mbytes/s]
 35%|███▍      | 1.15G/3.30G [01:07<02:20, 15.3Mbytes/s]
 35%|███▍      | 1.15G/3.30G [01:07<02:16, 15.8Mbytes/s]
 35%|███▍      | 1.15G/3.30G [01:07<02:19, 15.4Mbytes/s]
 35%|███▍      | 1.15G/3.30G [01:07<02:16, 15.7Mbytes/s]
 35%|███▍      | 1.16G/3.30G [01:07<02:19, 15.4Mbytes/s]
 35%|███▌      | 1.16G/3.30G [01:08<02:15, 15.9Mbytes/s]
 35%|███▌      | 1.16G/3.30G [01:08<02:18, 15.5Mbytes/s]
 35%|███▌      | 1.16G/3.30G [01:08<02:14, 16.0Mbytes/s]
 35%|███▌      | 1.16G/3.30G [01:08<02:17, 15.6Mbytes/s]
 35%|███▌      | 1.17G/3.30G [01:08<01:41, 21.0Mbytes/s]
 35%|███▌      | 1.17G/3.30G [01:08<01:57, 18.1Mbytes/s]
 35%|███▌      | 1.17G/3.30G [01:08<02:07, 16.7Mbytes/s]
 36%|███▌      | 1.18G/3.30G [01:09<02:02, 17.3Mbytes/s]
 36%|███▌      | 1.18G/3.30G [01:09<01:45, 20.2Mbytes/s]
 36%|███▌      | 1.18G/3.30G [01:09<02:05, 16.9Mbytes/s]
 36%|███▌      | 1.18G/3.30G [01:09<02:20, 15.1Mbytes/s]
 36%|███▌      | 1.19G/3.30G [01:09<02:16, 15.5Mbytes/s]
 36%|███▌      | 1.19G/3.30G [01:09<02:06, 16.7Mbytes/s]
 36%|███▌      | 1.19G/3.30G [01:10<02:09, 16.3Mbytes/s]
 36%|███▌      | 1.20G/3.30G [01:10<02:28, 14.2Mbytes/s]
 36%|███▋      | 1.20G/3.30G [01:10<02:28, 14.2Mbytes/s]
 36%|███▋      | 1.20G/3.30G [01:10<02:22, 14.7Mbytes/s]
 37%|███▋      | 1.21G/3.30G [01:11<02:11, 16.0Mbytes/s]
 37%|███▋      | 1.21G/3.30G [01:11<02:04, 16.8Mbytes/s]
 37%|███▋      | 1.22G/3.30G [01:11<01:59, 17.5Mbytes/s]
 37%|███▋      | 1.22G/3.30G [01:11<01:55, 18.1Mbytes/s]
 37%|███▋      | 1.22G/3.30G [01:11<01:52, 18.4Mbytes/s]
 37%|███▋      | 1.23G/3.30G [01:12<01:51, 18.7Mbytes/s]
 37%|███▋      | 1.23G/3.30G [01:12<01:57, 17.6Mbytes/s]
 37%|███▋      | 1.23G/3.30G [01:12<02:01, 17.0Mbytes/s]
 37%|███▋      | 1.24G/3.30G [01:12<02:04, 16.6Mbytes/s]
 38%|███▊      | 1.24G/3.30G [01:13<02:06, 16.3Mbytes/s]
 38%|███▊      | 1.25G/3.30G [01:13<02:07, 16.2Mbytes/s]
 38%|███▊      | 1.25G/3.30G [01:13<02:08, 16.0Mbytes/s]
 38%|███▊      | 1.25G/3.30G [01:13<02:08, 16.0Mbytes/s]
 38%|███▊      | 1.26G/3.30G [01:13<01:46, 19.2Mbytes/s]
 38%|███▊      | 1.26G/3.30G [01:14<02:05, 16.3Mbytes/s]
 38%|███▊      | 1.26G/3.30G [01:14<02:18, 14.7Mbytes/s]
 38%|███▊      | 1.27G/3.30G [01:14<02:16, 14.9Mbytes/s]
 38%|███▊      | 1.27G/3.30G [01:14<02:05, 16.2Mbytes/s]
 39%|███▊      | 1.27G/3.30G [01:14<01:59, 17.1Mbytes/s]
 39%|███▊      | 1.28G/3.30G [01:15<01:58, 17.1Mbytes/s]
 39%|███▊      | 1.28G/3.30G [01:15<01:53, 17.8Mbytes/s]
 39%|███▊      | 1.28G/3.30G [01:15<01:55, 17.5Mbytes/s]
 39%|███▉      | 1.28G/3.30G [01:15<02:01, 16.7Mbytes/s]
 39%|███▉      | 1.28G/3.30G [01:15<01:50, 18.3Mbytes/s]
 39%|███▉      | 1.29G/3.30G [01:15<02:02, 16.4Mbytes/s]
 39%|███▉      | 1.29G/3.30G [01:15<01:57, 17.1Mbytes/s]
 39%|███▉      | 1.29G/3.30G [01:15<02:09, 15.5Mbytes/s]
 39%|███▉      | 1.29G/3.30G [01:16<01:50, 18.2Mbytes/s]
 39%|███▉      | 1.30G/3.30G [01:16<02:03, 16.2Mbytes/s]
 39%|███▉      | 1.30G/3.30G [01:16<01:57, 17.0Mbytes/s]
 39%|███▉      | 1.30G/3.30G [01:16<02:08, 15.6Mbytes/s]
 39%|███▉      | 1.30G/3.30G [01:16<01:59, 16.8Mbytes/s]
 39%|███▉      | 1.30G/3.30G [01:16<01:57, 17.1Mbytes/s]
 39%|███▉      | 1.30G/3.30G [01:16<01:50, 18.0Mbytes/s]
 40%|███▉      | 1.31G/3.30G [01:16<01:50, 18.1Mbytes/s]
 40%|███▉      | 1.31G/3.30G [01:17<02:00, 16.6Mbytes/s]
 40%|███▉      | 1.31G/3.30G [01:17<01:37, 20.4Mbytes/s]
 40%|███▉      | 1.31G/3.30G [01:17<01:47, 18.5Mbytes/s]
 40%|███▉      | 1.32G/3.30G [01:17<01:52, 17.6Mbytes/s]
 40%|███▉      | 1.32G/3.30G [01:17<01:53, 17.5Mbytes/s]
 40%|███▉      | 1.32G/3.30G [01:17<01:58, 16.7Mbytes/s]
 40%|████      | 1.32G/3.30G [01:17<02:00, 16.5Mbytes/s]
 40%|████      | 1.32G/3.30G [01:17<02:02, 16.2Mbytes/s]
 40%|████      | 1.33G/3.30G [01:18<02:03, 16.1Mbytes/s]
 40%|████      | 1.33G/3.30G [01:18<02:02, 16.1Mbytes/s]
 40%|████      | 1.33G/3.30G [01:18<02:03, 16.0Mbytes/s]
 40%|████      | 1.33G/3.30G [01:18<02:03, 16.0Mbytes/s]
 40%|████      | 1.33G/3.30G [01:18<02:05, 15.7Mbytes/s]
 40%|████      | 1.34G/3.30G [01:18<02:03, 16.0Mbytes/s]
 40%|████      | 1.34G/3.30G [01:18<02:04, 15.8Mbytes/s]
 41%|████      | 1.34G/3.30G [01:18<02:03, 15.9Mbytes/s]
 41%|████      | 1.34G/3.30G [01:19<02:04, 15.8Mbytes/s]
 41%|████      | 1.34G/3.30G [01:19<02:02, 16.0Mbytes/s]
 41%|████      | 1.35G/3.30G [01:19<02:03, 15.9Mbytes/s]
 41%|████      | 1.35G/3.30G [01:19<01:50, 17.8Mbytes/s]
 41%|████      | 1.35G/3.30G [01:19<01:51, 17.5Mbytes/s]
 41%|████      | 1.35G/3.30G [01:19<01:40, 19.5Mbytes/s]
 41%|████      | 1.35G/3.30G [01:19<01:49, 17.9Mbytes/s]
 41%|████      | 1.36G/3.30G [01:19<01:52, 17.4Mbytes/s]
 41%|████      | 1.36G/3.30G [01:20<02:23, 13.6Mbytes/s]
 41%|████      | 1.36G/3.30G [01:20<02:43, 11.9Mbytes/s]
 41%|████      | 1.36G/3.30G [01:20<02:06, 15.3Mbytes/s]
 41%|████▏     | 1.36G/3.30G [01:20<02:16, 14.3Mbytes/s]
 41%|████▏     | 1.37G/3.30G [01:20<02:54, 11.1Mbytes/s]
 41%|████▏     | 1.37G/3.30G [01:20<02:29, 13.0Mbytes/s]
 42%|████▏     | 1.37G/3.30G [01:21<02:08, 15.0Mbytes/s]
 42%|████▏     | 1.38G/3.30G [01:21<01:58, 16.3Mbytes/s]
 42%|████▏     | 1.38G/3.30G [01:21<01:51, 17.2Mbytes/s]
 42%|████▏     | 1.38G/3.30G [01:21<01:31, 21.0Mbytes/s]
 42%|████▏     | 1.39G/3.30G [01:21<01:36, 19.8Mbytes/s]
 42%|████▏     | 1.39G/3.30G [01:21<01:51, 17.2Mbytes/s]
 42%|████▏     | 1.39G/3.30G [01:22<01:48, 17.6Mbytes/s]
 42%|████▏     | 1.40G/3.30G [01:22<01:28, 21.5Mbytes/s]
 42%|████▏     | 1.40G/3.30G [01:22<01:40, 19.1Mbytes/s]
 42%|████▏     | 1.40G/3.30G [01:22<01:52, 17.0Mbytes/s]
 42%|████▏     | 1.40G/3.30G [01:22<01:46, 17.8Mbytes/s]
 43%|████▎     | 1.41G/3.30G [01:22<01:25, 22.1Mbytes/s]
 43%|████▎     | 1.41G/3.30G [01:23<01:51, 17.0Mbytes/s]
 43%|████▎     | 1.41G/3.30G [01:23<01:43, 18.2Mbytes/s]
 43%|████▎     | 1.41G/3.30G [01:23<02:25, 12.9Mbytes/s]
 43%|████▎     | 1.42G/3.30G [01:23<02:24, 13.0Mbytes/s]
 43%|████▎     | 1.42G/3.30G [01:23<02:15, 13.9Mbytes/s]
 43%|████▎     | 1.43G/3.30G [01:24<02:09, 14.5Mbytes/s]
 43%|████▎     | 1.43G/3.30G [01:24<02:07, 14.7Mbytes/s]
 43%|████▎     | 1.43G/3.30G [01:24<02:04, 15.1Mbytes/s]
 43%|████▎     | 1.44G/3.30G [01:24<02:02, 15.3Mbytes/s]
 44%|████▎     | 1.44G/3.30G [01:25<02:00, 15.5Mbytes/s]
 44%|████▎     | 1.44G/3.30G [01:25<01:53, 16.4Mbytes/s]
 44%|████▍     | 1.45G/3.30G [01:25<01:48, 17.2Mbytes/s]
 44%|████▍     | 1.45G/3.30G [01:25<01:33, 19.7Mbytes/s]
 44%|████▍     | 1.45G/3.30G [01:25<01:52, 16.5Mbytes/s]
 44%|████▍     | 1.46G/3.30G [01:26<02:06, 14.6Mbytes/s]
 44%|████▍     | 1.46G/3.30G [01:26<02:03, 15.0Mbytes/s]
 44%|████▍     | 1.46G/3.30G [01:26<02:09, 14.2Mbytes/s]
 44%|████▍     | 1.47G/3.30G [01:26<01:55, 15.9Mbytes/s]
 45%|████▍     | 1.47G/3.30G [01:26<01:48, 16.9Mbytes/s]
 45%|████▍     | 1.47G/3.30G [01:27<01:44, 17.5Mbytes/s]
 45%|████▍     | 1.48G/3.30G [01:27<01:44, 17.5Mbytes/s]
 45%|████▍     | 1.48G/3.30G [01:27<01:49, 16.7Mbytes/s]
 45%|████▍     | 1.48G/3.30G [01:27<01:48, 16.8Mbytes/s]
 45%|████▍     | 1.48G/3.30G [01:27<01:51, 16.3Mbytes/s]
 45%|████▍     | 1.49G/3.30G [01:27<01:45, 17.3Mbytes/s]
 45%|████▌     | 1.49G/3.30G [01:28<01:46, 17.0Mbytes/s]
 45%|████▌     | 1.49G/3.30G [01:28<01:48, 16.6Mbytes/s]
 45%|████▌     | 1.49G/3.30G [01:28<01:49, 16.5Mbytes/s]
 45%|████▌     | 1.49G/3.30G [01:28<01:52, 16.1Mbytes/s]
 45%|████▌     | 1.50G/3.30G [01:28<01:51, 16.2Mbytes/s]
 45%|████▌     | 1.50G/3.30G [01:28<01:53, 15.9Mbytes/s]
 45%|████▌     | 1.50G/3.30G [01:28<01:52, 16.1Mbytes/s]
 45%|████▌     | 1.50G/3.30G [01:28<01:54, 15.8Mbytes/s]
 46%|████▌     | 1.50G/3.30G [01:28<01:52, 16.0Mbytes/s]
 46%|████▌     | 1.51G/3.30G [01:29<01:54, 15.7Mbytes/s]
 46%|████▌     | 1.51G/3.30G [01:29<01:40, 17.9Mbytes/s]
 46%|████▌     | 1.51G/3.30G [01:29<01:47, 16.7Mbytes/s]
 46%|████▌     | 1.51G/3.30G [01:29<01:45, 17.0Mbytes/s]
 46%|████▌     | 1.51G/3.30G [01:29<01:52, 15.8Mbytes/s]
 46%|████▌     | 1.52G/3.30G [01:29<01:47, 16.7Mbytes/s]
 46%|████▌     | 1.52G/3.30G [01:29<01:54, 15.6Mbytes/s]
 46%|████▌     | 1.52G/3.30G [01:30<01:48, 16.5Mbytes/s]
 46%|████▌     | 1.52G/3.30G [01:30<01:42, 17.4Mbytes/s]
 46%|████▌     | 1.52G/3.30G [01:30<01:46, 16.6Mbytes/s]
 46%|████▌     | 1.53G/3.30G [01:30<01:46, 16.7Mbytes/s]
 46%|████▋     | 1.53G/3.30G [01:30<01:50, 16.0Mbytes/s]
 46%|████▋     | 1.53G/3.30G [01:30<01:43, 17.2Mbytes/s]
 46%|████▋     | 1.53G/3.30G [01:30<01:43, 17.1Mbytes/s]
 46%|████▋     | 1.53G/3.30G [01:30<01:45, 16.9Mbytes/s]
 47%|████▋     | 1.54G/3.30G [01:30<01:33, 19.0Mbytes/s]
 47%|████▋     | 1.54G/3.30G [01:31<01:35, 18.5Mbytes/s]
 47%|████▋     | 1.54G/3.30G [01:31<01:39, 17.8Mbytes/s]
 47%|████▋     | 1.54G/3.30G [01:31<01:44, 16.8Mbytes/s]
 47%|████▋     | 1.54G/3.30G [01:31<01:43, 17.0Mbytes/s]
 47%|████▋     | 1.55G/3.30G [01:31<01:49, 16.1Mbytes/s]
 47%|████▋     | 1.55G/3.30G [01:31<01:46, 16.6Mbytes/s]
 47%|████▋     | 1.55G/3.30G [01:31<01:50, 15.9Mbytes/s]
 47%|████▋     | 1.55G/3.30G [01:31<01:50, 15.8Mbytes/s]
 47%|████▋     | 1.55G/3.30G [01:31<01:38, 17.7Mbytes/s]
 47%|████▋     | 1.56G/3.30G [01:32<01:39, 17.6Mbytes/s]
 47%|████▋     | 1.56G/3.30G [01:32<01:36, 18.1Mbytes/s]
 47%|████▋     | 1.56G/3.30G [01:32<01:36, 18.2Mbytes/s]
 47%|████▋     | 1.56G/3.30G [01:32<01:45, 16.6Mbytes/s]
 47%|████▋     | 1.57G/3.30G [01:32<01:27, 20.0Mbytes/s]
 47%|████▋     | 1.57G/3.30G [01:32<01:35, 18.1Mbytes/s]
 48%|████▊     | 1.57G/3.30G [01:32<01:48, 16.0Mbytes/s]
 48%|████▊     | 1.57G/3.30G [01:32<01:32, 18.8Mbytes/s]
 48%|████▊     | 1.57G/3.30G [01:33<01:59, 14.5Mbytes/s]
 48%|████▊     | 1.58G/3.30G [01:33<02:20, 12.3Mbytes/s]
 48%|████▊     | 1.58G/3.30G [01:33<01:59, 14.4Mbytes/s]
 48%|████▊     | 1.58G/3.30G [01:33<01:47, 15.9Mbytes/s]
 48%|████▊     | 1.59G/3.30G [01:34<01:41, 16.9Mbytes/s]
 48%|████▊     | 1.59G/3.30G [01:34<01:36, 17.7Mbytes/s]
 48%|████▊     | 1.60G/3.30G [01:34<01:34, 18.1Mbytes/s]
 48%|████▊     | 1.60G/3.30G [01:34<01:33, 18.3Mbytes/s]
 49%|████▊     | 1.60G/3.30G [01:34<01:31, 18.5Mbytes/s]
 49%|████▊     | 1.61G/3.30G [01:34<01:22, 20.6Mbytes/s]
 49%|████▊     | 1.61G/3.30G [01:35<01:32, 18.3Mbytes/s]
 49%|████▉     | 1.61G/3.30G [01:35<01:29, 19.0Mbytes/s]
 49%|████▉     | 1.61G/3.30G [01:35<01:37, 17.3Mbytes/s]
 49%|████▉     | 1.62G/3.30G [01:35<01:55, 14.6Mbytes/s]
 49%|████▉     | 1.62G/3.30G [01:35<01:34, 17.8Mbytes/s]
 49%|████▉     | 1.62G/3.30G [01:35<01:50, 15.2Mbytes/s]
 49%|████▉     | 1.62G/3.30G [01:36<01:51, 15.1Mbytes/s]
 49%|████▉     | 1.62G/3.30G [01:36<01:45, 15.9Mbytes/s]
 49%|████▉     | 1.63G/3.30G [01:36<01:37, 17.2Mbytes/s]
 49%|████▉     | 1.63G/3.30G [01:36<01:46, 15.7Mbytes/s]
 49%|████▉     | 1.63G/3.30G [01:36<02:20, 11.9Mbytes/s]
 49%|████▉     | 1.63G/3.30G [01:36<02:12, 12.6Mbytes/s]
 50%|████▉     | 1.64G/3.30G [01:37<02:01, 13.7Mbytes/s]
 50%|████▉     | 1.64G/3.30G [01:37<01:56, 14.3Mbytes/s]
 50%|████▉     | 1.64G/3.30G [01:37<01:52, 14.8Mbytes/s]
 50%|████▉     | 1.65G/3.30G [01:37<01:43, 16.1Mbytes/s]
 50%|█████     | 1.65G/3.30G [01:37<01:37, 17.0Mbytes/s]
 50%|█████     | 1.66G/3.30G [01:38<01:33, 17.6Mbytes/s]
 50%|█████     | 1.66G/3.30G [01:38<01:36, 17.0Mbytes/s]
 50%|█████     | 1.66G/3.30G [01:38<01:38, 16.6Mbytes/s]
 50%|█████     | 1.67G/3.30G [01:38<01:40, 16.3Mbytes/s]
 51%|█████     | 1.67G/3.30G [01:39<01:36, 16.9Mbytes/s]
 51%|█████     | 1.68G/3.30G [01:39<01:27, 18.6Mbytes/s]
 51%|█████     | 1.68G/3.30G [01:39<01:32, 17.7Mbytes/s]
 51%|█████     | 1.68G/3.30G [01:39<01:44, 15.6Mbytes/s]
 51%|█████     | 1.68G/3.30G [01:39<01:29, 18.1Mbytes/s]
 51%|█████     | 1.68G/3.30G [01:39<01:39, 16.3Mbytes/s]
 51%|█████     | 1.69G/3.30G [01:40<01:47, 15.1Mbytes/s]
 51%|█████     | 1.69G/3.30G [01:40<01:38, 16.4Mbytes/s]
 51%|█████▏    | 1.69G/3.30G [01:40<01:33, 17.2Mbytes/s]
 51%|█████▏    | 1.70G/3.30G [01:40<01:18, 20.6Mbytes/s]
 51%|█████▏    | 1.70G/3.30G [01:40<01:21, 19.7Mbytes/s]
 52%|█████▏    | 1.70G/3.30G [01:40<01:41, 15.8Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [01:40<01:20, 20.0Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [01:41<01:30, 17.6Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [01:41<01:49, 14.6Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [01:41<01:27, 18.1Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [01:41<01:36, 16.4Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [01:41<01:47, 14.8Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [01:42<01:37, 16.3Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [01:42<01:31, 17.2Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [01:42<01:19, 19.7Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [01:42<01:30, 17.3Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [01:42<01:27, 18.0Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [01:42<01:19, 19.8Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [01:42<01:22, 19.0Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [01:42<01:18, 19.9Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [01:43<01:26, 18.2Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [01:43<01:42, 15.1Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [01:43<01:38, 15.9Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [01:43<01:31, 17.0Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [01:43<01:27, 17.7Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [01:44<01:25, 18.1Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [01:44<01:23, 18.4Mbytes/s]
 53%|█████▎    | 1.77G/3.30G [01:44<01:22, 18.5Mbytes/s]
 54%|█████▎    | 1.77G/3.30G [01:44<01:22, 18.7Mbytes/s]
 54%|█████▎    | 1.77G/3.30G [01:44<01:29, 17.1Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [01:45<01:37, 15.6Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [01:45<01:30, 16.9Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [01:45<01:26, 17.5Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [01:45<01:24, 17.9Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [01:45<01:23, 18.1Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [01:46<01:11, 21.0Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [01:46<01:21, 18.5Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [01:46<01:23, 17.9Mbytes/s]
 55%|█████▍    | 1.80G/3.30G [01:46<01:12, 20.7Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [01:46<01:23, 18.0Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [01:46<01:30, 16.5Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [01:46<01:15, 19.8Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [01:47<01:28, 16.8Mbytes/s]
 55%|█████▍    | 1.82G/3.30G [01:47<01:31, 16.2Mbytes/s]
 55%|█████▌    | 1.82G/3.30G [01:47<01:12, 20.5Mbytes/s]
 55%|█████▌    | 1.82G/3.30G [01:47<01:19, 18.7Mbytes/s]
 55%|█████▌    | 1.82G/3.30G [01:47<01:34, 15.7Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [01:47<01:23, 17.6Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [01:48<01:30, 16.4Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [01:48<01:26, 17.0Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [01:48<01:34, 15.6Mbytes/s]
 56%|█████▌    | 1.83G/3.30G [01:48<01:27, 16.7Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [01:48<01:36, 15.2Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [01:48<01:28, 16.6Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [01:48<01:27, 16.7Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [01:48<01:22, 17.7Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [01:48<01:21, 17.9Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [01:49<01:28, 16.4Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [01:49<01:26, 16.8Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [01:49<01:31, 15.9Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [01:49<01:27, 16.5Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [01:49<01:32, 15.7Mbytes/s]
 56%|█████▌    | 1.86G/3.30G [01:49<01:24, 17.1Mbytes/s]
 56%|█████▋    | 1.86G/3.30G [01:49<01:20, 17.9Mbytes/s]
 56%|█████▋    | 1.87G/3.30G [01:50<01:18, 18.3Mbytes/s]
 57%|█████▋    | 1.87G/3.30G [01:50<01:17, 18.6Mbytes/s]
 57%|█████▋    | 1.87G/3.30G [01:50<01:16, 18.8Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [01:50<01:16, 18.8Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [01:50<01:21, 17.5Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [01:51<01:18, 18.0Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [01:51<01:17, 18.4Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [01:51<01:15, 18.7Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [01:51<01:16, 18.5Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [01:51<01:21, 17.4Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [01:51<01:24, 16.7Mbytes/s]
 57%|█████▋    | 1.90G/3.30G [01:51<01:24, 16.7Mbytes/s]
 57%|█████▋    | 1.90G/3.30G [01:52<01:08, 20.5Mbytes/s]
 58%|█████▊    | 1.90G/3.30G [01:52<01:21, 17.2Mbytes/s]
 58%|█████▊    | 1.90G/3.30G [01:52<01:27, 16.1Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [01:52<01:18, 17.7Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [01:52<01:26, 16.1Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [01:52<01:17, 17.9Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [01:52<01:21, 17.0Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [01:53<01:19, 17.5Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [01:53<01:13, 19.0Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [01:53<01:17, 17.8Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [01:53<01:15, 18.2Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [01:53<01:11, 19.3Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [01:53<01:15, 18.2Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [01:53<01:19, 17.4Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [01:53<01:18, 17.4Mbytes/s]
 59%|█████▊    | 1.93G/3.30G [01:54<01:25, 16.0Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [01:54<01:23, 16.5Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [01:54<01:30, 15.2Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [01:54<01:23, 16.4Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [01:54<01:29, 15.2Mbytes/s]
 59%|█████▉    | 1.94G/3.30G [01:54<01:23, 16.4Mbytes/s]
 59%|█████▉    | 1.94G/3.30G [01:54<01:29, 15.1Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [01:54<01:22, 16.4Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [01:54<01:29, 15.1Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [01:55<01:22, 16.4Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [01:55<01:29, 15.1Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [01:55<01:22, 16.3Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [01:55<01:31, 14.8Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [01:55<01:21, 16.5Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [01:55<01:34, 14.2Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [01:55<01:24, 15.9Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [01:56<01:33, 14.3Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [01:56<01:21, 16.5Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [01:56<01:28, 15.0Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [01:56<01:20, 16.5Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [01:56<01:29, 14.9Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [01:56<01:19, 16.7Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [01:56<01:28, 15.1Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [01:56<01:19, 16.7Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [01:57<01:28, 14.9Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [01:57<01:40, 13.2Mbytes/s]
 60%|██████    | 1.99G/3.30G [01:57<01:16, 17.2Mbytes/s]
 60%|██████    | 1.99G/3.30G [01:57<01:25, 15.4Mbytes/s]
 60%|██████    | 1.99G/3.30G [01:57<01:17, 17.0Mbytes/s]
 60%|██████    | 1.99G/3.30G [01:57<01:24, 15.5Mbytes/s]
 60%|██████    | 1.99G/3.30G [01:57<01:37, 13.5Mbytes/s]
 60%|██████    | 2.00G/3.30G [01:58<01:15, 17.4Mbytes/s]
 60%|██████    | 2.00G/3.30G [01:58<01:24, 15.5Mbytes/s]
 61%|██████    | 2.00G/3.30G [01:58<01:38, 13.2Mbytes/s]
 61%|██████    | 2.00G/3.30G [01:58<01:48, 12.0Mbytes/s]
 61%|██████    | 2.01G/3.30G [01:58<01:16, 16.9Mbytes/s]
 61%|██████    | 2.01G/3.30G [01:59<01:24, 15.3Mbytes/s]
 61%|██████    | 2.01G/3.30G [01:59<01:38, 13.1Mbytes/s]
 61%|██████    | 2.02G/3.30G [01:59<01:26, 14.8Mbytes/s]
 61%|██████    | 2.02G/3.30G [01:59<01:21, 15.8Mbytes/s]
 61%|██████    | 2.02G/3.30G [01:59<01:24, 15.2Mbytes/s]
 61%|██████    | 2.02G/3.30G [01:59<01:20, 15.9Mbytes/s]
 61%|██████    | 2.02G/3.30G [01:59<01:24, 15.2Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [01:59<01:20, 15.8Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [02:00<01:23, 15.4Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [02:00<01:20, 15.8Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [02:00<01:22, 15.4Mbytes/s]
 62%|██████▏   | 2.03G/3.30G [02:00<01:22, 15.4Mbytes/s]
 62%|██████▏   | 2.03G/3.30G [02:00<01:21, 15.6Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [02:00<01:20, 15.7Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [02:00<01:19, 15.8Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [02:00<01:20, 15.6Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [02:01<01:19, 15.8Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [02:01<01:20, 15.7Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [02:01<01:19, 15.8Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [02:01<01:19, 15.7Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [02:01<01:19, 15.8Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [02:01<01:19, 15.7Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [02:01<01:19, 15.8Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [02:01<01:19, 15.8Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [02:02<01:19, 15.7Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [02:02<01:19, 15.6Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [02:02<01:19, 15.6Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [02:02<01:18, 15.9Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [02:02<01:19, 15.6Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [02:02<01:17, 16.0Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [02:02<01:39, 12.4Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [02:03<01:33, 13.2Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [02:03<01:26, 14.2Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [02:03<01:24, 14.5Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [02:03<01:21, 14.9Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [02:04<01:19, 15.2Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [02:04<01:18, 15.4Mbytes/s]
 63%|██████▎   | 2.10G/3.30G [02:04<01:18, 15.5Mbytes/s]
 64%|██████▎   | 2.10G/3.30G [02:04<01:17, 15.6Mbytes/s]
 64%|██████▎   | 2.10G/3.30G [02:05<01:16, 15.7Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [02:05<01:16, 15.7Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [02:05<01:15, 15.7Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [02:05<01:17, 15.4Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [02:06<01:21, 14.5Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [02:06<01:19, 14.9Mbytes/s]
 64%|██████▍   | 2.13G/3.30G [02:06<01:16, 15.3Mbytes/s]
 64%|██████▍   | 2.13G/3.30G [02:06<01:16, 15.3Mbytes/s]
 65%|██████▍   | 2.13G/3.30G [02:07<01:15, 15.5Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [02:07<01:14, 15.6Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [02:07<01:14, 15.7Mbytes/s]
 65%|██████▍   | 2.15G/3.30G [02:07<01:13, 15.8Mbytes/s]
 65%|██████▌   | 2.15G/3.30G [02:08<01:13, 15.8Mbytes/s]
 65%|██████▌   | 2.15G/3.30G [02:08<01:12, 15.8Mbytes/s]
 65%|██████▌   | 2.16G/3.30G [02:08<01:12, 15.8Mbytes/s]
 65%|██████▌   | 2.16G/3.30G [02:08<01:12, 15.8Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [02:09<01:11, 15.8Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [02:09<01:11, 15.8Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [02:09<01:11, 15.7Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [02:09<01:13, 15.3Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [02:10<01:13, 15.4Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [02:10<01:12, 15.5Mbytes/s]
 66%|██████▌   | 2.19G/3.30G [02:10<01:02, 18.0Mbytes/s]
 66%|██████▋   | 2.19G/3.30G [02:10<01:10, 15.8Mbytes/s]
 66%|██████▋   | 2.19G/3.30G [02:10<01:15, 14.7Mbytes/s]
 66%|██████▋   | 2.20G/3.30G [02:10<01:03, 17.4Mbytes/s]
 66%|██████▋   | 2.20G/3.30G [02:11<01:11, 15.6Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [02:11<01:15, 14.5Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [02:11<01:06, 16.6Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [02:11<01:12, 15.2Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [02:11<01:01, 17.9Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [02:11<01:12, 15.2Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [02:12<01:16, 14.3Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [02:12<01:07, 16.3Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [02:12<01:12, 15.0Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [02:12<01:05, 16.6Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [02:12<01:13, 14.8Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [02:12<00:58, 18.6Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [02:12<01:11, 15.1Mbytes/s]
 67%|██████▋   | 2.23G/3.30G [02:13<01:16, 14.0Mbytes/s]
 67%|██████▋   | 2.23G/3.30G [02:13<01:08, 15.6Mbytes/s]
 68%|██████▊   | 2.23G/3.30G [02:13<01:14, 14.5Mbytes/s]
 68%|██████▊   | 2.23G/3.30G [02:13<01:06, 16.0Mbytes/s]
 68%|██████▊   | 2.23G/3.30G [02:13<01:12, 14.7Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [02:13<01:05, 16.2Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [02:13<01:12, 14.8Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [02:13<01:05, 16.4Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [02:14<01:11, 14.8Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [02:14<01:13, 14.5Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [02:14<01:08, 15.3Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [02:14<01:11, 14.7Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [02:14<01:07, 15.7Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [02:14<01:11, 14.7Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [02:14<01:14, 14.0Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [02:14<01:18, 13.4Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [02:15<01:08, 15.2Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [02:15<01:13, 14.1Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [02:15<01:05, 15.9Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [02:15<01:10, 14.7Mbytes/s]
 69%|██████▊   | 2.26G/3.30G [02:15<01:04, 16.2Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [02:15<01:08, 15.0Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [02:15<01:03, 16.3Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [02:15<01:08, 15.2Mbytes/s]
 69%|██████▉   | 2.27G/3.30G [02:16<01:03, 16.2Mbytes/s]
 69%|██████▉   | 2.27G/3.30G [02:16<01:08, 15.1Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [02:16<01:03, 16.2Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [02:16<01:08, 14.9Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [02:16<01:03, 16.2Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [02:16<01:08, 15.0Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [02:16<01:02, 16.2Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [02:16<01:08, 14.9Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [02:16<01:03, 16.1Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [02:17<01:07, 14.9Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [02:17<01:03, 15.9Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [02:17<01:07, 15.0Mbytes/s]
 69%|██████▉   | 2.30G/3.30G [02:17<01:04, 15.5Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [02:17<01:06, 15.0Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [02:17<01:04, 15.5Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [02:17<01:05, 15.2Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [02:18<01:18, 12.8Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [02:18<01:14, 13.3Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [02:18<00:55, 17.9Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [02:18<01:02, 15.7Mbytes/s]
 70%|███████   | 2.31G/3.30G [02:18<01:13, 13.4Mbytes/s]
 70%|███████   | 2.32G/3.30G [02:18<00:56, 17.5Mbytes/s]
 70%|███████   | 2.32G/3.30G [02:19<01:02, 15.7Mbytes/s]
 70%|███████   | 2.32G/3.30G [02:19<01:12, 13.5Mbytes/s]
 70%|███████   | 2.33G/3.30G [02:19<00:53, 18.2Mbytes/s]
 70%|███████   | 2.33G/3.30G [02:19<01:00, 16.3Mbytes/s]
 71%|███████   | 2.33G/3.30G [02:19<01:11, 13.7Mbytes/s]
 71%|███████   | 2.33G/3.30G [02:20<01:08, 14.2Mbytes/s]
 71%|███████   | 2.34G/3.30G [02:20<00:55, 17.5Mbytes/s]
 71%|███████   | 2.34G/3.30G [02:20<01:00, 15.9Mbytes/s]
 71%|███████   | 2.34G/3.30G [02:20<01:09, 13.9Mbytes/s]
 71%|███████   | 2.35G/3.30G [02:20<00:54, 17.6Mbytes/s]
 71%|███████   | 2.35G/3.30G [02:20<01:00, 16.0Mbytes/s]
 71%|███████   | 2.35G/3.30G [02:21<01:08, 13.9Mbytes/s]
 71%|███████   | 2.35G/3.30G [02:21<00:54, 17.5Mbytes/s]
 71%|███████▏  | 2.35G/3.30G [02:21<00:59, 15.9Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [02:21<01:07, 14.0Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [02:21<00:53, 17.7Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [02:21<00:59, 15.8Mbytes/s]
 72%|███████▏  | 2.36G/3.30G [02:22<01:08, 13.7Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [02:22<00:52, 17.8Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [02:22<00:58, 16.0Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [02:22<01:08, 13.7Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [02:22<00:51, 18.2Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [02:22<00:58, 15.8Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [02:23<01:07, 13.6Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [02:23<00:52, 17.4Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [02:23<01:01, 15.0Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [02:23<01:05, 14.0Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [02:23<00:55, 16.3Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [02:23<01:03, 14.4Mbytes/s]
 72%|███████▏  | 2.40G/3.30G [02:24<01:04, 14.0Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [02:24<00:55, 16.4Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [02:24<01:02, 14.4Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [02:24<01:01, 14.7Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [02:24<00:53, 16.9Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [02:24<01:00, 14.9Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [02:24<00:50, 17.8Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [02:25<00:58, 15.3Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [02:25<01:01, 14.4Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [02:25<00:53, 16.5Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [02:25<01:00, 14.5Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [02:25<00:51, 17.3Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [02:25<00:57, 15.2Mbytes/s]
 73%|███████▎  | 2.43G/3.30G [02:26<00:59, 14.7Mbytes/s]
 74%|███████▎  | 2.43G/3.30G [02:26<00:52, 16.8Mbytes/s]
 74%|███████▎  | 2.43G/3.30G [02:26<00:59, 14.6Mbytes/s]
 74%|███████▎  | 2.43G/3.30G [02:26<00:49, 17.6Mbytes/s]
 74%|███████▎  | 2.44G/3.30G [02:26<00:56, 15.3Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [02:26<00:59, 14.6Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [02:26<00:51, 16.7Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [02:27<00:59, 14.5Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [02:27<00:49, 17.3Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [02:27<00:55, 15.4Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [02:27<00:59, 14.3Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [02:27<00:49, 17.2Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [02:27<00:56, 15.1Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [02:27<00:48, 17.3Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [02:28<00:58, 14.4Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [02:28<01:01, 13.8Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [02:28<00:47, 17.7Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [02:28<00:56, 14.7Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [02:28<00:59, 14.0Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [02:28<00:46, 17.9Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [02:29<00:55, 15.0Mbytes/s]
 75%|███████▍  | 2.48G/3.30G [02:29<00:58, 14.2Mbytes/s]
 75%|███████▌  | 2.48G/3.30G [02:29<00:52, 15.7Mbytes/s]
 75%|███████▌  | 2.48G/3.30G [02:29<01:04, 12.8Mbytes/s]
 75%|███████▌  | 2.48G/3.30G [02:29<00:59, 13.9Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [02:29<00:50, 16.1Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [02:30<01:00, 13.5Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [02:30<00:54, 15.0Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [02:30<00:47, 17.0Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [02:30<00:56, 14.3Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [02:30<00:52, 15.3Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [02:30<00:51, 15.7Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [02:31<00:51, 15.4Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [02:31<00:51, 15.4Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [02:31<00:50, 15.7Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [02:31<00:50, 15.8Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [02:31<00:50, 15.7Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [02:31<00:50, 15.8Mbytes/s]
 76%|███████▌  | 2.52G/3.30G [02:31<00:50, 15.7Mbytes/s]
 76%|███████▌  | 2.52G/3.30G [02:31<00:49, 15.8Mbytes/s]
 76%|███████▌  | 2.52G/3.30G [02:31<00:49, 15.8Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [02:32<00:49, 15.9Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [02:32<00:49, 15.7Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [02:32<00:49, 15.7Mbytes/s]
 76%|███████▋  | 2.53G/3.30G [02:32<00:49, 15.6Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [02:32<00:50, 15.5Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [02:32<00:49, 15.6Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [02:32<00:48, 15.9Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [02:32<00:49, 15.5Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [02:33<00:47, 16.2Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [02:33<00:50, 15.3Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [02:33<00:47, 16.0Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [02:33<00:50, 15.2Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [02:33<00:46, 16.5Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [02:33<00:50, 15.2Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [02:33<00:47, 16.0Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [02:33<00:49, 15.2Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [02:34<00:48, 15.5Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [02:34<00:49, 15.3Mbytes/s]
 77%|███████▋  | 2.56G/3.30G [02:34<00:46, 16.2Mbytes/s]
 77%|███████▋  | 2.56G/3.30G [02:34<00:48, 15.4Mbytes/s]
 77%|███████▋  | 2.56G/3.30G [02:34<00:46, 16.1Mbytes/s]
 78%|███████▊  | 2.56G/3.30G [02:34<00:48, 15.3Mbytes/s]
 78%|███████▊  | 2.56G/3.30G [02:34<00:47, 15.6Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [02:34<00:47, 15.5Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [02:35<00:45, 16.4Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [02:35<00:47, 15.6Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [02:35<00:46, 15.7Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [02:35<00:46, 15.7Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [02:35<00:46, 15.9Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [02:35<00:49, 14.8Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [02:35<00:46, 15.5Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [02:35<00:47, 15.1Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [02:36<00:47, 15.2Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [02:36<00:46, 15.6Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [02:36<00:47, 15.3Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [02:36<00:45, 15.8Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [02:36<00:46, 15.4Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [02:36<00:45, 15.8Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [02:36<00:46, 15.4Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [02:36<00:44, 15.9Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [02:37<00:45, 15.5Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [02:37<00:44, 16.0Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [02:37<00:45, 15.4Mbytes/s]
 79%|███████▉  | 2.60G/3.30G [02:37<00:44, 15.8Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [02:37<00:45, 15.5Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [02:37<00:46, 15.1Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [02:37<00:44, 15.5Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [02:37<00:45, 15.4Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [02:38<00:43, 15.8Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [02:38<00:44, 15.5Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [02:38<00:43, 15.8Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [02:38<00:44, 15.5Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [02:38<00:44, 15.3Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [02:38<00:43, 15.8Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [02:38<00:43, 15.6Mbytes/s]
 79%|███████▉  | 2.63G/3.30G [02:38<00:51, 13.3Mbytes/s]
 80%|███████▉  | 2.63G/3.30G [02:39<00:52, 12.8Mbytes/s]
 80%|███████▉  | 2.63G/3.30G [02:39<00:37, 18.1Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [02:39<00:44, 15.2Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [02:39<00:49, 13.5Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [02:39<00:46, 14.3Mbytes/s]
 80%|████████  | 2.64G/3.30G [02:40<00:41, 15.7Mbytes/s]
 80%|████████  | 2.65G/3.30G [02:40<00:44, 14.7Mbytes/s]
 80%|████████  | 2.65G/3.30G [02:40<00:40, 16.2Mbytes/s]
 80%|████████  | 2.65G/3.30G [02:40<00:43, 14.9Mbytes/s]
 80%|████████  | 2.65G/3.30G [02:40<00:39, 16.7Mbytes/s]
 80%|████████  | 2.65G/3.30G [02:40<00:42, 15.1Mbytes/s]
 80%|████████  | 2.66G/3.30G [02:40<00:38, 16.7Mbytes/s]
 80%|████████  | 2.66G/3.30G [02:40<00:42, 15.1Mbytes/s]
 80%|████████  | 2.66G/3.30G [02:41<00:37, 17.1Mbytes/s]
 81%|████████  | 2.66G/3.30G [02:41<00:42, 15.0Mbytes/s]
 81%|████████  | 2.66G/3.30G [02:41<00:37, 17.2Mbytes/s]
 81%|████████  | 2.67G/3.30G [02:41<00:46, 13.7Mbytes/s]
 81%|████████  | 2.67G/3.30G [02:41<00:46, 13.6Mbytes/s]
 81%|████████  | 2.67G/3.30G [02:41<00:36, 17.1Mbytes/s]
 81%|████████  | 2.67G/3.30G [02:41<00:42, 15.0Mbytes/s]
 81%|████████  | 2.68G/3.30G [02:42<00:45, 13.8Mbytes/s]
 81%|████████  | 2.68G/3.30G [02:42<00:42, 14.6Mbytes/s]
 81%|████████  | 2.68G/3.30G [02:42<00:43, 14.5Mbytes/s]
 81%|████████  | 2.68G/3.30G [02:42<00:41, 15.1Mbytes/s]
 81%|████████  | 2.68G/3.30G [02:42<00:41, 15.0Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [02:42<00:40, 15.4Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [02:42<00:40, 15.3Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [02:43<00:40, 15.2Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [02:43<00:40, 15.3Mbytes/s]
 82%|████████▏ | 2.69G/3.30G [02:43<00:39, 15.4Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [02:43<00:39, 15.5Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [02:43<00:38, 15.6Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [02:43<00:38, 15.7Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [02:43<00:38, 15.7Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [02:43<00:38, 15.7Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [02:44<00:37, 15.8Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [02:44<00:38, 15.7Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [02:44<00:37, 15.7Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [02:44<00:37, 15.7Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [02:44<00:37, 15.6Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [02:44<00:37, 15.7Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [02:44<00:37, 15.5Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [02:44<00:36, 15.9Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [02:45<00:37, 15.6Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [02:45<00:36, 16.0Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [02:45<00:37, 15.6Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [02:45<00:36, 15.8Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [02:45<00:36, 15.6Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [02:45<00:37, 15.4Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [02:45<00:36, 15.8Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [02:45<00:36, 15.5Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [02:46<00:35, 15.8Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [02:46<00:36, 15.5Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [02:46<00:35, 16.0Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [02:46<00:36, 15.5Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [02:46<00:34, 16.0Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [02:46<00:35, 15.5Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [02:46<00:34, 16.1Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [02:46<00:36, 15.4Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [02:47<00:34, 16.1Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [02:47<00:35, 15.5Mbytes/s]
 83%|████████▎ | 2.76G/3.30G [02:47<00:34, 16.1Mbytes/s]
 83%|████████▎ | 2.76G/3.30G [02:47<00:35, 15.5Mbytes/s]
 84%|████████▎ | 2.76G/3.30G [02:47<00:33, 16.0Mbytes/s]
 84%|████████▎ | 2.76G/3.30G [02:47<00:35, 15.4Mbytes/s]
 84%|████████▎ | 2.76G/3.30G [02:47<00:33, 16.0Mbytes/s]
 84%|████████▎ | 2.77G/3.30G [02:47<00:35, 15.4Mbytes/s]
 84%|████████▎ | 2.77G/3.30G [02:48<00:37, 14.3Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [02:48<00:38, 13.8Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [02:48<00:35, 14.8Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [02:48<00:36, 14.6Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [02:48<00:33, 15.7Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [02:48<00:35, 15.0Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [02:48<00:35, 14.8Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [02:48<00:34, 15.4Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [02:48<00:34, 15.2Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [02:49<00:33, 15.6Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [02:49<00:33, 15.3Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [02:49<00:32, 15.8Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [02:49<00:33, 15.5Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [02:49<00:32, 15.9Mbytes/s]
 85%|████████▍ | 2.79G/3.30G [02:49<00:33, 15.5Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [02:49<00:32, 15.8Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [02:49<00:32, 15.5Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [02:50<00:32, 15.7Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [02:50<00:33, 15.1Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [02:50<00:32, 15.6Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [02:50<00:32, 15.4Mbytes/s]
 85%|████████▍ | 2.81G/3.30G [02:50<00:32, 15.4Mbytes/s]
 85%|████████▍ | 2.81G/3.30G [02:50<00:31, 15.9Mbytes/s]
 85%|████████▌ | 2.81G/3.30G [02:50<00:31, 15.6Mbytes/s]
 85%|████████▌ | 2.81G/3.30G [02:50<00:30, 16.0Mbytes/s]
 85%|████████▌ | 2.81G/3.30G [02:51<00:34, 14.1Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [02:51<00:34, 14.2Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [02:51<00:32, 14.7Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [02:51<00:31, 15.0Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [02:52<00:33, 14.4Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [02:52<00:30, 15.4Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [02:52<00:32, 14.7Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [02:52<00:29, 15.7Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [02:52<00:31, 15.0Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [02:52<00:29, 15.9Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [02:52<00:31, 14.9Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [02:52<00:28, 16.1Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [02:53<00:31, 14.8Mbytes/s]
 86%|████████▌ | 2.85G/3.30G [02:53<00:28, 16.3Mbytes/s]
 86%|████████▌ | 2.85G/3.30G [02:53<00:31, 14.7Mbytes/s]
 86%|████████▌ | 2.85G/3.30G [02:53<00:27, 16.4Mbytes/s]
 86%|████████▋ | 2.85G/3.30G [02:53<00:30, 14.8Mbytes/s]
 86%|████████▋ | 2.85G/3.30G [02:53<00:27, 16.1Mbytes/s]
 86%|████████▋ | 2.86G/3.30G [02:53<00:30, 14.8Mbytes/s]
 86%|████████▋ | 2.86G/3.30G [02:53<00:27, 16.2Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [02:54<00:29, 15.0Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [02:54<00:26, 16.4Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [02:54<00:29, 15.1Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [02:54<00:26, 16.3Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [02:54<00:29, 15.1Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [02:54<00:26, 16.3Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [02:54<00:28, 15.1Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [02:54<00:26, 16.4Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [02:55<00:28, 15.1Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [02:55<00:25, 16.5Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [02:55<00:28, 15.1Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [02:55<00:25, 16.6Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [02:55<00:27, 15.1Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [02:55<00:25, 16.6Mbytes/s]
 87%|████████▋ | 2.89G/3.30G [02:55<00:27, 15.1Mbytes/s]
 87%|████████▋ | 2.89G/3.30G [02:55<00:25, 16.6Mbytes/s]
 87%|████████▋ | 2.89G/3.30G [02:56<00:29, 14.3Mbytes/s]
 88%|████████▊ | 2.89G/3.30G [02:56<00:35, 11.8Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [02:56<00:25, 16.2Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [02:56<00:27, 14.9Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [02:56<00:30, 13.2Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [02:56<00:23, 17.1Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [02:57<00:25, 15.4Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [02:57<00:29, 13.6Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [02:57<00:22, 17.5Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [02:57<00:24, 16.0Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [02:57<00:28, 13.7Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [02:57<00:21, 17.6Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [02:58<00:24, 15.9Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [02:58<00:27, 13.8Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [02:58<00:21, 17.8Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [02:58<00:23, 16.0Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [02:58<00:27, 13.8Mbytes/s]
 89%|████████▉ | 2.93G/3.30G [02:58<00:20, 17.7Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [02:59<00:23, 15.9Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [02:59<00:26, 14.0Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [02:59<00:20, 17.4Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [02:59<00:22, 15.8Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [02:59<00:25, 14.1Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [02:59<00:20, 17.5Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [03:00<00:22, 15.7Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [03:00<00:24, 14.1Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [03:00<00:19, 17.5Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [03:00<00:22, 15.7Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [03:00<00:24, 14.1Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [03:00<00:19, 17.6Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [03:01<00:21, 15.7Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [03:01<00:23, 14.2Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [03:01<00:18, 17.6Mbytes/s]
 90%|█████████ | 2.98G/3.30G [03:01<00:21, 15.2Mbytes/s]
 90%|█████████ | 2.98G/3.30G [03:01<00:22, 14.4Mbytes/s]
 90%|█████████ | 2.98G/3.30G [03:01<00:18, 17.4Mbytes/s]
 90%|█████████ | 2.98G/3.30G [03:02<00:22, 14.5Mbytes/s]
 90%|█████████ | 2.99G/3.30G [03:02<00:21, 14.7Mbytes/s]
 90%|█████████ | 2.99G/3.30G [03:02<00:17, 17.8Mbytes/s]
 90%|█████████ | 2.99G/3.30G [03:02<00:21, 14.9Mbytes/s]
 91%|█████████ | 2.99G/3.30G [03:02<00:21, 14.8Mbytes/s]
 91%|█████████ | 3.00G/3.30G [03:02<00:17, 17.8Mbytes/s]
 91%|█████████ | 3.00G/3.30G [03:03<00:21, 14.4Mbytes/s]
 91%|█████████ | 3.00G/3.30G [03:03<00:20, 14.9Mbytes/s]
 91%|█████████ | 3.00G/3.30G [03:03<00:18, 16.2Mbytes/s]
 91%|█████████ | 3.00G/3.30G [03:03<00:19, 15.1Mbytes/s]
 91%|█████████ | 3.01G/3.30G [03:03<00:19, 15.3Mbytes/s]
 91%|█████████ | 3.01G/3.30G [03:03<00:19, 15.3Mbytes/s]
 91%|█████████ | 3.01G/3.30G [03:03<00:18, 15.6Mbytes/s]
 91%|█████████ | 3.01G/3.30G [03:03<00:18, 15.5Mbytes/s]
 91%|█████████ | 3.01G/3.30G [03:04<00:18, 15.6Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [03:04<00:18, 15.6Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [03:04<00:17, 16.0Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [03:04<00:18, 15.7Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [03:04<00:17, 15.8Mbytes/s]
 92%|█████████▏| 3.02G/3.30G [03:04<00:17, 15.7Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [03:04<00:17, 15.8Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [03:04<00:17, 15.7Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [03:05<00:17, 16.1Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [03:05<00:17, 15.4Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [03:05<00:16, 16.3Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [03:05<00:17, 15.1Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [03:05<00:16, 16.3Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [03:05<00:17, 15.2Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [03:05<00:16, 16.2Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [03:05<00:17, 15.2Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [03:06<00:16, 15.6Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [03:06<00:16, 15.5Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [03:06<00:16, 15.4Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [03:06<00:16, 15.7Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [03:06<00:16, 15.4Mbytes/s]
 92%|█████████▏| 3.06G/3.30G [03:06<00:15, 15.7Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [03:06<00:15, 15.6Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [03:06<00:15, 15.9Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [03:07<00:15, 15.6Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [03:07<00:15, 16.0Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [03:07<00:14, 16.1Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [03:07<00:15, 15.7Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [03:07<00:20, 11.7Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [03:07<00:18, 12.9Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [03:08<00:16, 13.9Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [03:08<00:15, 14.6Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [03:08<00:14, 15.0Mbytes/s]
 93%|█████████▎| 3.09G/3.30G [03:08<00:14, 15.2Mbytes/s]
 94%|█████████▎| 3.09G/3.30G [03:09<00:13, 15.4Mbytes/s]
 94%|█████████▎| 3.10G/3.30G [03:09<00:13, 15.4Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [03:09<00:13, 15.5Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [03:09<00:10, 18.5Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [03:09<00:11, 16.7Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [03:10<00:13, 14.5Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [03:10<00:12, 14.9Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [03:10<00:10, 18.8Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [03:10<00:11, 16.2Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [03:10<00:13, 14.2Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [03:11<00:12, 14.2Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [03:11<00:13, 13.6Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [03:11<00:12, 14.3Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [03:11<00:11, 14.8Mbytes/s]
 95%|█████████▍| 3.14G/3.30G [03:11<00:10, 16.2Mbytes/s]
 95%|█████████▍| 3.14G/3.30G [03:12<00:10, 15.3Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [03:12<00:10, 16.2Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [03:12<00:10, 15.2Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [03:12<00:09, 16.3Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [03:12<00:10, 15.1Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [03:12<00:09, 16.0Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [03:12<00:10, 14.9Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [03:12<00:09, 16.2Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [03:13<00:10, 15.1Mbytes/s]
 95%|█████████▌| 3.16G/3.30G [03:13<00:09, 16.2Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [03:13<00:09, 15.2Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [03:13<00:08, 16.3Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [03:13<00:09, 15.2Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [03:13<00:08, 16.3Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [03:13<00:09, 15.3Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [03:13<00:08, 16.2Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [03:14<00:08, 15.3Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [03:14<00:08, 15.8Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [03:14<00:08, 14.9Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [03:14<00:08, 15.3Mbytes/s]
 96%|█████████▌| 3.18G/3.30G [03:14<00:09, 14.2Mbytes/s]
 96%|█████████▌| 3.18G/3.30G [03:14<00:07, 15.9Mbytes/s]
 96%|█████████▌| 3.18G/3.30G [03:14<00:08, 14.8Mbytes/s]
 96%|█████████▋| 3.18G/3.30G [03:14<00:07, 16.2Mbytes/s]
 96%|█████████▋| 3.18G/3.30G [03:15<00:08, 14.9Mbytes/s]
 96%|█████████▋| 3.19G/3.30G [03:15<00:07, 16.3Mbytes/s]
 96%|█████████▋| 3.19G/3.30G [03:15<00:07, 14.9Mbytes/s]
 97%|█████████▋| 3.19G/3.30G [03:15<00:07, 16.4Mbytes/s]
 97%|█████████▋| 3.19G/3.30G [03:15<00:07, 15.1Mbytes/s]
 97%|█████████▋| 3.19G/3.30G [03:15<00:06, 16.4Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [03:15<00:07, 15.2Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [03:15<00:06, 16.3Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [03:16<00:07, 15.0Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [03:16<00:06, 16.4Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [03:16<00:06, 15.2Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [03:16<00:06, 16.3Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [03:16<00:07, 13.6Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [03:16<00:05, 18.1Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [03:16<00:05, 15.9Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [03:17<00:06, 14.4Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [03:17<00:05, 15.0Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [03:17<00:05, 15.0Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [03:17<00:05, 15.4Mbytes/s]
 98%|█████████▊| 3.22G/3.30G [03:17<00:05, 15.3Mbytes/s]
 98%|█████████▊| 3.22G/3.30G [03:17<00:05, 15.6Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [03:17<00:05, 15.5Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [03:17<00:04, 15.8Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [03:18<00:04, 15.6Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [03:18<00:04, 15.8Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [03:18<00:04, 15.7Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [03:18<00:04, 15.9Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [03:18<00:04, 15.7Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [03:18<00:04, 15.9Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [03:18<00:04, 15.6Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [03:18<00:03, 15.8Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [03:18<00:03, 15.7Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [03:19<00:03, 15.9Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [03:19<00:03, 15.8Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [03:19<00:03, 15.9Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [03:19<00:03, 15.9Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [03:19<00:03, 15.5Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [03:19<00:02, 15.8Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [03:19<00:02, 15.4Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [03:19<00:02, 16.3Mbytes/s]
 99%|█████████▉| 3.26G/3.30G [03:20<00:02, 15.4Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [03:20<00:02, 15.9Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [03:20<00:02, 15.5Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [03:20<00:02, 15.9Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [03:20<00:02, 15.5Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [03:20<00:01, 16.2Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [03:20<00:01, 15.3Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [03:20<00:01, 16.4Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [03:21<00:01, 15.4Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [03:21<00:01, 16.1Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [03:21<00:01, 15.0Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [03:21<00:01, 14.0Mbytes/s]
 99%|█████████▉| 3.29G/3.30G [03:21<00:01, 13.7Mbytes/s]
 99%|█████████▉| 3.29G/3.30G [03:21<00:01, 14.7Mbytes/s]
100%|█████████▉| 3.29G/3.30G [03:21<00:00, 14.7Mbytes/s]
100%|█████████▉| 3.29G/3.30G [03:21<00:00, 14.8Mbytes/s]
100%|█████████▉| 3.29G/3.30G [03:22<00:00, 15.4Mbytes/s]
100%|█████████▉| 3.30G/3.30G [03:22<00:00, 15.4Mbytes/s]
100%|█████████▉| 3.30G/3.30G [03:22<00:00, 15.7Mbytes/s]
100%|█████████▉| 3.30G/3.30G [03:22<00:00, 15.5Mbytes/s]
100%|█████████▉| 3.30G/3.30G [03:22<00:00, 15.8Mbytes/s]
100%|█████████▉| 3.30G/3.30G [03:22<00:00, 15.6Mbytes/s]
100%|██████████| 3.30G/3.30G [03:22<00:00, 16.3Mbytes/s]
!find ~/trust_example_higherlevel/derivatives/fsl -maxdepth 2 -type d | sort | head -60
/home/jovyan/trust_example_higherlevel/derivatives/fsl
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-02_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-105
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-105/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-108
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-120
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-124
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-127
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-127/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-128
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-128/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-130
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-130/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-131
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-131/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-132
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-132/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-133
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-133/L2_task-trust_model-01_type-act_sm-6.gfeat

The archive is expected to unpack into a top-level __forOSF/ folder. Its contents are then copied into:

~/trust_example_higherlevel/derivatives/fsl/

That means the notebook’s working derivative tree now includes:

  • the five run-level Level-1 .feat directories for sub-104

  • the precomputed Level-2 .gfeat directories for the full sample

Later cells clean only the specific notebook-generated outputs they are about to recreate, which keeps reruns predictable without deleting the archived materials.

4. Check the downloaded inputs#

Before rendering any templates, it is worth confirming two simple things:

  1. the five run-level Level-1 .feat directories exist for sub-104, because they are the direct inputs to the Level-2 model

  2. the precomputed Level-2 .gfeat directories exist across the sample, because they are the direct inputs to the Level-3 group models

These checks are deliberately simple and explicit. If the expected directories are missing, it is better to stop here than to render templates that point to nonexistent inputs.

%%bash
set -e

echo "Checking sub-104 run-level Level-1 FEAT inputs ..."
find ~/trust_example_higherlevel/derivatives/fsl/sub-104 -maxdepth 1 -type d -name "L1_task-trust_model-01_type-act_run-*_sm-6.feat" | sort

echo
echo "Counting downloaded Level-2 .gfeat directories across the sample ..."
find ~/trust_example_higherlevel/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | wc -l
Checking sub-104 run-level Level-1 FEAT inputs ...
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-0
1_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_ty
pe-act_run-02_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust
_model-01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L
1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/f
sl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat

Counting downloaded Level-2 .gfeat directories across the sample ...
48
!find ~/trust_example_higherlevel/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | sort | head -20
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-105/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat

If one or more Level-1 runs are missing for sub-104, stop here and fix that first. If the Level-2 directories are missing across the sample, the later Level-3 group analyses will not work.

The original scripts include more bookkeeping for edge cases, but this teaching version stays simple on purpose.

One practical point is still worth noting: these archived FEAT derivatives were generated with FSL 6.0.7.16, and this notebook assumes the same version for consistency. In principle, higher-level FEAT often works across nearby FSL versions, but for a teaching example it is better to keep the software version fixed so the file layout and behavior stay predictable.

5. Render the Level-2 FEAT template#

The original L2stats.sh script uses sed to replace a small set of placeholders in the .fsf template. For the 5-run activation model, the important placeholders are:

  • OUTPUT for the new higher-level output directory

  • INPUT1 through INPUT5 for the five run-level .feat directories

This is the key idea of scripted FEAT workflows: rather than point-and-clicking through the GUI every time, you render a text template with the correct paths and then hand the finished .fsf file to FEAT.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
INPUT_DIR="$EXAMPLE_DIR/derivatives/fsl/sub-104"
OUTPUT_DIR="$EXAMPLE_DIR/derivatives/fsl/sub-104"

ITEMPLATE="$EXAMPLE_DIR/templates/L2_task-trust_model-01_type-act_nruns-5.fsf"
OTEMPLATE="$OUTPUT_DIR/L2_task-trust_model-01_type-act.fsf"
OUTPUT="$OUTPUT_DIR/L2_task-trust_model-01_type-act_sm-6"

INPUT1="$INPUT_DIR/L1_task-trust_model-01_type-act_run-01_sm-6.feat"
INPUT2="$INPUT_DIR/L1_task-trust_model-01_type-act_run-02_sm-6.feat"
INPUT3="$INPUT_DIR/L1_task-trust_model-01_type-act_run-03_sm-6.feat"
INPUT4="$INPUT_DIR/L1_task-trust_model-01_type-act_run-04_sm-6.feat"
INPUT5="$INPUT_DIR/L1_task-trust_model-01_type-act_run-05_sm-6.feat"

sed \
  -e "s@OUTPUT@${OUTPUT}@g" \
  -e "s@INPUT1@${INPUT1}@g" \
  -e "s@INPUT2@${INPUT2}@g" \
  -e "s@INPUT3@${INPUT3}@g" \
  -e "s@INPUT4@${INPUT4}@g" \
  -e "s@INPUT5@${INPUT5}@g" \
  < "$ITEMPLATE" > "$OTEMPLATE"

echo "Rendered template: $OTEMPLATE"
Rendered template: /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_mode
l-01_type-act.fsf
!grep -E 'outputdir|multiple|ncopeinputs|feat_files' ~/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act.fsf | head -20
set fmri(outputdir) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6"
set fmri(multiple) 5
set fmri(ncopeinputs) 18
set feat_files(1) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat"
set feat_files(2) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-02_sm-6.feat"
set feat_files(3) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-03_sm-6.feat"
set feat_files(4) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat"
set feat_files(5) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat"

That quick check is worth doing. It lets you confirm that the rendered .fsf now points to the correct output directory and the correct five inputs before you launch FEAT.

6. Run the Level-2 FEAT model#

The next two cells prepare and launch FEAT on the rendered Level-2 .fsf file. Compared with fMRIPrep, this step is usually much faster, but it can still take a while depending on the system and the size of the run-level inputs.

In conceptual terms, this model uses fixed effects to combine the five trust-task runs within one participant. The result is a single .gfeat directory that contains one higher-level FEAT result for each lower-level cope.

%%bash
set -e

OUTPUT_DIR="$HOME/trust_example_higherlevel/derivatives/fsl/sub-104"
L2_BASENAME="L2_task-trust_model-01_type-act_sm-6"

rm -rf "${OUTPUT_DIR}/${L2_BASENAME}.gfeat"
rm -rf "${OUTPUT_DIR}/${L2_BASENAME}+"*.gfeat
rm -rf "${OUTPUT_DIR}/logs"

echo "Removed any previous notebook-generated Level-2 derivatives:"
echo "  ${OUTPUT_DIR}/${L2_BASENAME}.gfeat"
echo "  ${OUTPUT_DIR}/${L2_BASENAME}+*.gfeat"
Removed any previous notebook-generated Level-2 derivatives:
  /home/jovyan/trust_example_higherleve
l/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
  /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-
6+*.gfeat
%%bash
set -e

OTEMPLATE="$HOME/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act.fsf"
feat "$OTEMPLATE"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example_hig
herlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/report_log.html

7. Review the Level-2 output#

The Level-2 output should now live in a .gfeat directory under:

~/trust_example_higherlevel/derivatives/fsl/sub-104/

At a minimum, you want to confirm that:

  • the .gfeat directory exists

  • the expected cope*.feat subdirectories exist

  • the FEAT report exists

  • the thresholded map for cope10 (reciprocate > defect) exists

The next few cells give you quick visual checks in NiiVue.

from pathlib import Path

outroot = EXAMPLE_DIR / "derivatives" / "fsl" / "sub-104"
matches = sorted(
    outroot.glob("L2_task-trust_model-01_type-act_sm-6*.gfeat"),
    key=lambda p: p.stat().st_mtime,
    reverse=True,
)

if not matches:
    raise FileNotFoundError("No matching Level-2 .gfeat directory found.")

gfeat_dir = matches[0]
print("Using Level-2 gfeat directory:", gfeat_dir)

for rel in [
    "report.html",
    "cope1.feat",
    "cope10.feat",
    "cope18.feat",
    "cope10.feat/thresh_zstat1.nii.gz",
]:
    p = gfeat_dir / rel
    print(f"{p}: {p.exists()}")
Using Level-2 gfeat directory: /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/report.html: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope1.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope18.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/thresh_zstat1.nii.gz: True
cope_dirs = sorted(gfeat_dir.glob("cope*.feat"))
for p in cope_dirs[:20]:
    print(p)
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope1.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope11.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope12.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope13.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope14.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope15.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope16.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope17.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope18.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope2.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope3.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope4.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope5.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope7.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope8.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope9.feat
report_html = gfeat_dir / "report.html"
print("Level-2 report exists:", report_html.exists(), report_html)
Level-2 report exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/report.html

In this section we move directly to quick visual checks of the Level-2 cope10 map. The goal is to confirm that the within-subject fixed-effects analysis ran and to inspect the main result before moving to the group model.

The first overlay below uses cope10.feat/thresh_zstat1.nii.gz, which corresponds to the reciprocate > defect contrast combined across runs.

from ipyniivue import NiiVue

bg_meanfunc = gfeat_dir / "bg_image.nii.gz"
zmap = gfeat_dir / "cope10.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", bg_meanfunc.exists(), bg_meanfunc)
print("Contrast exists:", zmap.exists(), zmap)

if bg_meanfunc.exists() and zmap.exists():
    bg_data = nib.load(str(bg_meanfunc)).get_fdata()
    bg_nonzero = bg_data[bg_data > 0]
    lo = float(np.percentile(bg_nonzero, 2))
    hi = float(np.percentile(bg_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": str(bg_meanfunc),
            "name": "bg_image",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi,
        },
        {
            "path": str(zmap),
            "name": "reciprocate > defect across runs",
            "colormap": "red",
            "opacity": 0.75,
        },
    ])
    display(nv)
else:
    print("Run FEAT first, then come back to this cell.")
Background exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/bg_image.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/thresh_zstat1.nii.gz

The next cell shows the same Level-2 map on an MNI T1 background with better anatomical contrast.

from ipyniivue import NiiVue

# Try a few common FSL locations for the MNI T1 background.
bg_candidates = [
    Path(os.environ.get("FSLDIR", "")) / "data" / "standard" / "MNI152_T1_2mm_brain.nii.gz" if os.environ.get("FSLDIR") else None,
    Path("/opt/fsl/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/usr/share/fsl/5.0/data/standard/MNI152_T1_2mm_brain.nii.gz"),
]

bg_path = None
for cand in bg_candidates:
    if cand is not None and cand.exists():
        bg_path = cand
        break

zmap = gfeat_dir / "cope10.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", bg_path is not None, bg_path)
print("Contrast exists:", zmap.exists(), zmap)

if bg_path is not None and zmap.exists():
    bg_data = nib.load(str(bg_path)).get_fdata()
    bg_nonzero = bg_data[bg_data > 0]
    lo = float(np.percentile(bg_nonzero, 2))
    hi = float(np.percentile(bg_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": str(bg_path),
            "name": "MNI152_T1_2mm_brain",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi,
        },
        {
            "path": str(zmap),
            "name": "reciprocate > defect across runs",
            "colormap": "red",
            "opacity": 0.75,
        },
    ])
    display(nv)
else:
    print("Could not find the MNI T1 background or the thresholded map.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/thresh_zstat1.nii.gz

8. Render and run the initial Level-3 FEAT model#

We now turn to the first group-level analysis, while staying focused on the same lower-level cope: cope10 (reciprocate > defect).

For the teachable moment below, we begin with the original one-group template and the original shared Level-2 archive:

  • L3_template_n48_trust_onegroup.fsf

  • one-sample t-test across the full sample

  • output of interest: cope1.feat/thresh_zstat1.nii.gz

We deliberately keep this first Level-3 run simple. That makes it easier to see the problem when the group activation looks less impressive than expected.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
DERIV_DIR="$EXAMPLE_DIR/derivatives/fsl"

ITEMPLATE_ONE="$EXAMPLE_DIR/templates/L3_template_n48_trust_onegroup.fsf"
OTEMPLATE_ONE="$DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup.fsf"
OUTPUT_ONE="$DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup"

sed \
  -e "s@OUTPUT@${OUTPUT_ONE}@g" \
  -e "s@BASEDIR@${EXAMPLE_DIR}@g" \
  -e "s@REPLACEME@type-act@g" \
  -e "s@COPENUM@10@g" \
  < "$ITEMPLATE_ONE" > "$OTEMPLATE_ONE"

echo "Rendered:"
echo "  $OTEMPLATE_ONE"
Rendered:
  /home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_oneg
roup.fsf
!grep -E 'outputdir|feat_files\(1\)|feat_files\(48\)|conname_real' ~/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.fsf
set fmri(outputdir) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup"
set feat_files(1) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set feat_files(48) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-159/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set fmri(conname_real.1) "pos"
set fmri(conname_real.2) "neg"

The rendered .fsf should point to the archived Level-2 .gfeat directories in the original shared derivative tree. Because this first group model is just a one-sample t-test, the bookkeeping stays simple enough that you can inspect the paths directly before running FEAT.

%%bash
set -e

DERIV_DIR="$HOME/trust_example_higherlevel/derivatives/fsl"

rm -rf "${DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat"
rm -rf "${DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup+"*.gfeat
rm -rf "${DERIV_DIR}/logs"

echo "Removed any previous notebook-generated initial Level-3 derivatives."
Removed any previous notebook-generated initial Level-3 derivatives.
%%bash
set -e

ONEGROUP_FSF="$HOME/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.fsf"
feat "$ONEGROUP_FSF"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example_hig
herlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/report_log.html

9. Review the initial Level-3 output and check the mask#

For the initial one-group model, the main map we want is:

  • cope1.feat/thresh_zstat1.nii.gz

This is where the teachable moment begins. If the activation pattern looks surprisingly limited, do not immediately assume the underlying effect is absent. First inspect the group mask that FEAT actually used for the inference step.

initial_onegroup_dir = EXAMPLE_DIR / "derivatives" / "fsl" / "L3_task-trust_model-01_type-act_cope10_onegroup.gfeat"

for rel in [
    "report.html",
    "design.png",
    "cope1.feat",
    "cope1.feat/mask.nii.gz",
    "cope1.feat/thresh_zstat1.nii.gz",
]:
    p = initial_onegroup_dir / rel
    print(f"{p}: {p.exists()}")

# Reuse the MNI T1 background logic for the Level-3 visualizations.
bg_candidates = [
    Path(os.environ.get("FSLDIR", "")) / "data" / "standard" / "MNI152_T1_2mm_brain.nii.gz" if os.environ.get("FSLDIR") else None,
    Path("/opt/fsl/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/usr/share/fsl/5.0/data/standard/MNI152_T1_2mm_brain.nii.gz"),
]

group_bg = None
for cand in bg_candidates:
    if cand is not None and cand.exists():
        group_bg = cand
        break

print("MNI background exists:", group_bg is not None, group_bg)
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/report.html: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/design.png: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/mask.nii.gz: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/thresh_zstat1.nii.gz: True
MNI background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz

The first visualization below shows the original one-group result for reciprocate > defect. The result is not wrong in the narrow sense that FEAT ran, but it is incomplete in a scientifically important way. This is exactly why it is worth checking the mask before spending much time on interpretation.

from ipyniivue import NiiVue

zmap = initial_onegroup_dir / "cope1.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", group_bg is not None, group_bg)
print("Contrast exists:", zmap.exists(), zmap)

if group_bg is not None and zmap.exists():
    zdata = nib.load(str(zmap)).get_fdata()
    zmax = float(np.nanmax(zdata))
    print("Max thresholded value:", zmax)

    if zmax > 0:
        bg_data = nib.load(str(group_bg)).get_fdata()
        bg_nonzero = bg_data[bg_data > 0]
        lo = float(np.percentile(bg_nonzero, 2))
        hi = float(np.percentile(bg_nonzero, 98))

        nv = NiiVue()
        nv.load_volumes([
            {
                "path": str(group_bg),
                "name": "MNI152_T1_2mm_brain",
                "colormap": "gray",
                "opacity": 1.0,
                "cal_min": lo,
                "cal_max": hi,
            },
            {
                "path": str(zmap),
                "name": "initial mean_pos",
                "colormap": "red",
                "opacity": 0.75,
            },
        ])
        display(nv)
    else:
        print("The thresholded map contains no voxels above zero, so we skip plotting it.")
else:
    print("Could not find the MNI background or the initial thresholded group map.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/thresh_zstat1.nii.gz
Max thresholded value: 4.791534900665283

Now check the Level-3 mask directly. The lesson here is simple and general: always check your mask before you check your activation.

In this case, the mask reveals that FEAT only analyzed a small and obviously incorrect subset of voxels—mostly in the temporal lobe, with some voxels even extending outside the brain. That pattern tells us something went seriously wrong upstream.

These original higher-level inputs were derived from an older preprocessing run using fMRIPrep 20.2.3. We chose that older version because it came closer to the preprocessing vintage of the original paper, even though the Neurodesk module options do not go that far back. That likely contributed to the failure mode here, which is why we reran the shared derivatives with a different fMRIPrep version before trusting the group result.

old_mask = initial_onegroup_dir / "cope1.feat" / "mask.nii.gz"

print("Background exists:", group_bg is not None, group_bg)
print("Mask exists:", old_mask.exists(), old_mask)

if old_mask.exists():
    mask_data = nib.load(str(old_mask)).get_fdata()
    mask_nvox = int(np.count_nonzero(mask_data > 0))
    print("Nonzero mask voxels:", mask_nvox)

    nz = np.argwhere(mask_data > 0)
    if nz.size > 0:
        print("Mask bounding box (voxel indices):")
        print("  min:", nz.min(axis=0))
        print("  max:", nz.max(axis=0))

if group_bg is not None and old_mask.exists():
    bg_data = nib.load(str(group_bg)).get_fdata()
    bg_nonzero = bg_data[bg_data > 0]
    lo = float(np.percentile(bg_nonzero, 2))
    hi = float(np.percentile(bg_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": str(group_bg),
            "name": "MNI152_T1_2mm_brain",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi,
        },
        {
            "path": str(old_mask),
            "name": "initial group mask",
            "colormap": "red",
            "opacity": 0.55,
            "cal_min": 0.5,
            "cal_max": 1.0,
        },
    ])
    display(nv)
else:
    print("Could not find the MNI background or the initial group mask.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Mask exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/mask.nii.gz
Nonzero mask voxels: 1214
Mask bounding box (voxel indices):
  min: [ 8 33 16]
  max: [25 62 29]

10. Refresh the Level-3 inputs and rerun the group model#

To fix that problem, we keep the Level-2 example as-is but swap in a refreshed shared Level-2 archive that was generated after rerunning preprocessing with fMRIPrep 25.2.5.

The public file page for that refreshed archive is:

The refreshed archive itself is named:

osfstorage/revised-fsl-activation.tar.gz

The cell below uses that exact archive name. It also detects the top-level extracted folder automatically, so the notebook stays stable even if the archive unpacks into a folder such as __forHigherLevel-Act.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
PROJECT="ktxug"

REFRESH_ROOT="$EXAMPLE_DIR/refreshed_2525"
REFRESH_DOWNLOAD_DIR="$REFRESH_ROOT/downloads"
REFRESH_DERIV_DIR="$REFRESH_ROOT/derivatives/fsl"

REMOTE_ARCHIVE_NEW="osfstorage/revised-fsl-activation.tar.gz"
LOCAL_ARCHIVE_NEW="$REFRESH_DOWNLOAD_DIR/revised-fsl-activation.tar.gz"

mkdir -p "$REFRESH_DOWNLOAD_DIR"
mkdir -p "$REFRESH_DERIV_DIR"

echo "Files visible in OSF project $PROJECT:"
osf -p "$PROJECT" ls

echo
if [ ! -f "$LOCAL_ARCHIVE_NEW" ]; then
    echo "Downloading refreshed archive from OSF ..."
    osf -p "$PROJECT" fetch "$REMOTE_ARCHIVE_NEW" "$LOCAL_ARCHIVE_NEW"
else
    echo "Refreshed archive already exists locally. Reusing it:"
    echo "  $LOCAL_ARCHIVE_NEW"
fi

echo
echo "Refreshing unpacked archive contents ..."
find "$REFRESH_DOWNLOAD_DIR" -mindepth 1 -maxdepth 1 -type d -name "__for*" -exec rm -rf {} +
tar -xzf "$LOCAL_ARCHIVE_NEW" -C "$REFRESH_DOWNLOAD_DIR"

# Detect the top-level folder created by the archive so the notebook stays robust
# if we rename that folder in a future archive refresh.
ARCHIVE_ROOT="$(find "$REFRESH_DOWNLOAD_DIR" -mindepth 1 -maxdepth 1 -type d -name "__for*" | head -1)"

echo "Detected archive root:"
echo "  $ARCHIVE_ROOT"

if [ -z "$ARCHIVE_ROOT" ] || [ ! -d "$ARCHIVE_ROOT" ]; then
    echo "Could not detect the refreshed archive root after unpacking."
    exit 1
fi

echo
ls "$REFRESH_DOWNLOAD_DIR"
ls "$LOCAL_ARCHIVE_NEW"

echo
echo "Refreshing the shared derivative tree ..."
rm -rf "$REFRESH_DERIV_DIR"
mkdir -p "$REFRESH_DERIV_DIR"
cp -r "$ARCHIVE_ROOT/." "$REFRESH_DERIV_DIR/"

echo
echo "Refreshed higher-level derivatives are now here:"
echo "  $REFRESH_DERIV_DIR"
find "$REFRESH_DERIV_DIR" -maxdepth 2 -type d | sort | head -60
Files visible in OSF project ktxug:
osfstorage/revised-fsl-activation.tar.gz
osfstorage/fareri-2022-neuroimage_example-activation.tar.gz
Downloading refreshed archive from OSF ...

Refreshing unpacked archive contents ...
Detected archive root:
  /home/jovyan/trust_example_higherlevel/refreshed_2525/downloads/__forHigher
Level-Act
__forHigherLevel-Act
revised-fsl-activation.tar.gz
/home/jovyan/trust_example_higherlevel/refreshed_2525/downloads/revised-fsl-activation.tar.gz
Refreshing the shared derivative tree ...

Refreshed higher-level derivatives are now here:
  /home/jovyan/trust_example_higherlevel/refreshed
_2525/derivatives/fsl
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl
/home/jovyan/trust_example_hig
herlevel/refreshed_2525/derivatives/fsl/sub-104
/home/jovyan/trust_example_higherlevel/refreshed_252
5/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat
/home/jovyan/trust_exampl
e_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-02_sm-6.fea
t
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L1_task-trust_model-
01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/s
ub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherlevel/refre
shed_2525/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat
/home/jovyan/trus
t_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gf
eat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-105
/home/jovyan/trust
_example_higherlevel/refreshed_2525/derivatives/fsl/sub-105/L2_task-trust_model-01_type-act_sm-6.gfe
at
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-106
/home/jovyan/trust_
example_higherlevel/refreshed_2525/derivatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfea
t
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-107
/home/jovyan/trust_e
xample_higherlevel/refreshed_2525/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat

/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-108
/home/jovyan/trust_ex
ample_higherlevel/refreshed_2525/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-109
/home/jovyan/trust_exa
mple_higherlevel/refreshed_2525/derivatives/fsl/sub-109/L2_task-trust_model-01_type-act_sm-6.gfeat
/
home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-110
/home/jovyan/trust_exam
ple_higherlevel/refreshed_2525/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/h
ome/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-111
/home/jovyan/trust_examp
le_higherlevel/refreshed_2525/derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/ho
me/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-112
/home/jovyan/trust_exampl
e_higherlevel/refreshed_2525/derivatives/fsl/sub-112/L2_task-trust_model-01_type-act_sm-6.gfeat
/hom
e/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-113
/home/jovyan/trust_example
_higherlevel/refreshed_2525/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.gfeat
/home
/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-115
/home/jovyan/trust_example_
higherlevel/refreshed_2525/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/
jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-116
/home/jovyan/trust_example_h
igherlevel/refreshed_2525/derivatives/fsl/sub-116/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/j
ovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-117
/home/jovyan/trust_example_hi
gherlevel/refreshed_2525/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jo
vyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-118
/home/jovyan/trust_example_hig
herlevel/refreshed_2525/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jov
yan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-120
/home/jovyan/trust_example_high
erlevel/refreshed_2525/derivatives/fsl/sub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovy
an/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-121
/home/jovyan/trust_example_highe
rlevel/refreshed_2525/derivatives/fsl/sub-121/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovya
n/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-122
/home/jovyan/trust_example_higher
level/refreshed_2525/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan
/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-124
/home/jovyan/trust_example_higherl
evel/refreshed_2525/derivatives/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/
trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-125
/home/jovyan/trust_example_higherle
vel/refreshed_2525/derivatives/fsl/sub-125/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/t
rust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-126
/home/jovyan/trust_example_higherlev
el/refreshed_2525/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tr
ust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-127
/home/jovyan/trust_example_higherleve
l/refreshed_2525/derivatives/fsl/sub-127/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tru
st_example_higherlevel/refreshed_2525/derivatives/fsl/sub-128
/home/jovyan/trust_example_higherlevel
/refreshed_2525/derivatives/fsl/sub-128/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trus
t_example_higherlevel/refreshed_2525/derivatives/fsl/sub-129
/home/jovyan/trust_example_higherlevel/
refreshed_2525/derivatives/fsl/sub-129/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust
_example_higherlevel/refreshed_2525/derivatives/fsl/sub-130
/home/jovyan/trust_example_higherlevel/r
efreshed_2525/derivatives/fsl/sub-130/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_
example_higherlevel/refreshed_2525/derivatives/fsl/sub-131
/home/jovyan/trust_example_higherlevel/re
freshed_2525/derivatives/fsl/sub-131/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_e
xample_higherlevel/refreshed_2525/derivatives/fsl/sub-132
/home/jovyan/trust_example_higherlevel/ref
reshed_2525/derivatives/fsl/sub-132/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_ex
ample_higherlevel/refreshed_2525/derivatives/fsl/sub-133
/home/jovyan/trust_example_higherlevel/refr
eshed_2525/derivatives/fsl/sub-133/L2_task-trust_model-01_type-act_sm-6.gfeat
  0%|          | 0.00/2.76G [00:00<?, ?bytes/s]
  0%|          | 16.4k/2.76G [00:00<7:46:46, 98.6kbytes/s]
  0%|          | 49.2k/2.76G [00:00<6:07:49, 125kbytes/s]
  0%|          | 81.9k/2.76G [00:00<5:49:42, 132kbytes/s]
  0%|          | 131k/2.76G [00:00<3:41:20, 208kbytes/s]
  0%|          | 180k/2.76G [00:00<2:55:44, 262kbytes/s]
  0%|          | 246k/2.76G [00:00<2:15:40, 339kbytes/s]
  0%|          | 360k/2.76G [00:01<1:27:10, 528kbytes/s]
  0%|          | 475k/2.76G [00:01<1:08:25, 672kbytes/s]
  0%|          | 672k/2.76G [00:01<46:02, 999kbytes/s]
  0%|          | 934k/2.76G [00:01<32:17, 1.42Mbytes/s]
  0%|          | 1.29M/2.76G [00:01<22:54, 2.01Mbytes/s]
  0%|          | 1.82M/2.76G [00:01<15:51, 2.90Mbytes/s]
  0%|          | 2.57M/2.76G [00:01<10:57, 4.19Mbytes/s]
  0%|          | 3.56M/2.76G [00:01<07:55, 5.80Mbytes/s]
  0%|          | 5.01M/2.76G [00:01<05:30, 8.33Mbytes/s]
  0%|          | 6.57M/2.76G [00:02<04:26, 10.3Mbytes/s]
  0%|          | 8.16M/2.76G [00:02<03:50, 11.9Mbytes/s]
  0%|          | 9.60M/2.76G [00:02<03:39, 12.5Mbytes/s]
  0%|          | 11.2M/2.76G [00:02<03:21, 13.7Mbytes/s]
  0%|          | 12.6M/2.76G [00:02<03:22, 13.6Mbytes/s]
  1%|          | 14.2M/2.76G [00:02<03:13, 14.2Mbytes/s]
  1%|          | 15.6M/2.76G [00:02<03:14, 14.1Mbytes/s]
  1%|          | 17.3M/2.76G [00:02<03:12, 14.2Mbytes/s]
  1%|          | 19.0M/2.76G [00:02<03:11, 14.3Mbytes/s]
  1%|          | 20.7M/2.76G [00:02<03:02, 15.0Mbytes/s]
  1%|          | 22.2M/2.76G [00:03<03:03, 14.9Mbytes/s]
  1%|          | 23.8M/2.76G [00:03<03:01, 15.1Mbytes/s]
  1%|          | 25.3M/2.76G [00:03<03:03, 14.9Mbytes/s]
  1%|          | 26.8M/2.76G [00:03<03:00, 15.1Mbytes/s]
  1%|          | 28.4M/2.76G [00:03<03:03, 14.9Mbytes/s]
  1%|          | 29.9M/2.76G [00:03<03:00, 15.1Mbytes/s]
  1%|          | 31.5M/2.76G [00:03<03:14, 14.0Mbytes/s]
  1%|          | 33.3M/2.76G [00:03<03:05, 14.7Mbytes/s]
  1%|▏         | 34.8M/2.76G [00:03<03:08, 14.5Mbytes/s]
  1%|▏         | 36.4M/2.76G [00:04<03:03, 14.9Mbytes/s]
  1%|▏         | 37.9M/2.76G [00:04<03:11, 14.3Mbytes/s]
  1%|▏         | 39.6M/2.76G [00:04<03:13, 14.1Mbytes/s]
  1%|▏         | 41.2M/2.76G [00:04<03:07, 14.5Mbytes/s]
  2%|▏         | 42.7M/2.76G [00:04<03:05, 14.7Mbytes/s]
  2%|▏         | 44.3M/2.76G [00:04<03:06, 14.6Mbytes/s]
  2%|▏         | 45.7M/2.76G [00:04<03:05, 14.6Mbytes/s]
  2%|▏         | 47.2M/2.76G [00:04<03:04, 14.7Mbytes/s]
  2%|▏         | 48.7M/2.76G [00:04<03:06, 14.6Mbytes/s]
  2%|▏         | 50.2M/2.76G [00:05<03:04, 14.7Mbytes/s]
  2%|▏         | 51.7M/2.76G [00:05<03:05, 14.6Mbytes/s]
  2%|▏         | 53.3M/2.76G [00:05<03:03, 14.8Mbytes/s]
  2%|▏         | 54.8M/2.76G [00:05<03:03, 14.7Mbytes/s]
  2%|▏         | 56.3M/2.76G [00:05<03:01, 14.9Mbytes/s]
  2%|▏         | 57.8M/2.76G [00:05<03:02, 14.8Mbytes/s]
  2%|▏         | 59.3M/2.76G [00:05<03:01, 14.9Mbytes/s]
  2%|▏         | 60.8M/2.76G [00:05<03:01, 14.9Mbytes/s]
  2%|▏         | 62.4M/2.76G [00:05<03:00, 14.9Mbytes/s]
  2%|▏         | 63.9M/2.76G [00:05<03:00, 14.9Mbytes/s]
  2%|▏         | 65.4M/2.76G [00:06<02:59, 15.0Mbytes/s]
  2%|▏         | 66.9M/2.76G [00:06<02:59, 15.0Mbytes/s]
  2%|▏         | 68.4M/2.76G [00:06<02:59, 15.0Mbytes/s]
  3%|▎         | 69.9M/2.76G [00:06<03:00, 14.9Mbytes/s]
  3%|▎         | 71.4M/2.76G [00:06<03:02, 14.7Mbytes/s]
  3%|▎         | 72.9M/2.76G [00:06<03:04, 14.6Mbytes/s]
  3%|▎         | 74.5M/2.76G [00:06<03:00, 14.9Mbytes/s]
  3%|▎         | 76.0M/2.76G [00:06<03:44, 11.9Mbytes/s]
  3%|▎         | 77.4M/2.76G [00:07<04:28, 10.0Mbytes/s]
  3%|▎         | 80.2M/2.76G [00:07<03:09, 14.1Mbytes/s]
  3%|▎         | 81.9M/2.76G [00:07<03:17, 13.6Mbytes/s]
  3%|▎         | 83.7M/2.76G [00:07<03:35, 12.4Mbytes/s]
  3%|▎         | 86.4M/2.76G [00:07<02:48, 15.9Mbytes/s]
  3%|▎         | 88.2M/2.76G [00:07<02:59, 14.9Mbytes/s]
  3%|▎         | 89.8M/2.76G [00:07<03:25, 13.0Mbytes/s]
  3%|▎         | 92.7M/2.76G [00:07<02:40, 16.6Mbytes/s]
  3%|▎         | 94.6M/2.76G [00:08<02:51, 15.5Mbytes/s]
  3%|▎         | 96.3M/2.76G [00:08<03:17, 13.5Mbytes/s]
  4%|▎         | 98.6M/2.76G [00:08<03:04, 14.4Mbytes/s]
  4%|▎         | 101M/2.76G [00:08<02:50, 15.6Mbytes/s]
  4%|▎         | 102M/2.76G [00:08<03:16, 13.5Mbytes/s]
  4%|▍         | 105M/2.76G [00:08<03:31, 12.6Mbytes/s]
  4%|▍         | 107M/2.76G [00:09<03:27, 12.8Mbytes/s]
  4%|▍         | 110M/2.76G [00:09<03:17, 13.4Mbytes/s]
  4%|▍         | 113M/2.76G [00:09<03:10, 13.9Mbytes/s]
  4%|▍         | 116M/2.76G [00:09<03:07, 14.1Mbytes/s]
  4%|▍         | 119M/2.76G [00:09<03:04, 14.3Mbytes/s]
  4%|▍         | 122M/2.76G [00:10<03:02, 14.4Mbytes/s]
  5%|▍         | 125M/2.76G [00:10<03:01, 14.5Mbytes/s]
  5%|▍         | 128M/2.76G [00:10<03:00, 14.6Mbytes/s]
  5%|▍         | 131M/2.76G [00:10<02:59, 14.6Mbytes/s]
  5%|▍         | 134M/2.76G [00:10<02:58, 14.7Mbytes/s]
  5%|▍         | 137M/2.76G [00:11<02:57, 14.7Mbytes/s]
  5%|▌         | 140M/2.76G [00:11<02:57, 14.7Mbytes/s]
  5%|▌         | 143M/2.76G [00:11<02:58, 14.6Mbytes/s]
  5%|▌         | 146M/2.76G [00:11<02:58, 14.6Mbytes/s]
  5%|▌         | 149M/2.76G [00:11<02:59, 14.6Mbytes/s]
  6%|▌         | 152M/2.76G [00:12<02:58, 14.6Mbytes/s]
  6%|▌         | 155M/2.76G [00:12<02:57, 14.7Mbytes/s]
  6%|▌         | 158M/2.76G [00:12<02:57, 14.6Mbytes/s]
  6%|▌         | 161M/2.76G [00:12<02:57, 14.6Mbytes/s]
  6%|▌         | 164M/2.76G [00:12<02:57, 14.6Mbytes/s]
  6%|▌         | 167M/2.76G [00:13<02:55, 14.7Mbytes/s]
  6%|▌         | 170M/2.76G [00:13<02:30, 17.2Mbytes/s]
  6%|▌         | 172M/2.76G [00:13<02:43, 15.8Mbytes/s]
  6%|▋         | 174M/2.76G [00:13<03:04, 14.0Mbytes/s]
  6%|▋         | 176M/2.76G [00:13<03:07, 13.8Mbytes/s]
  6%|▋         | 179M/2.76G [00:13<03:03, 14.1Mbytes/s]
  7%|▋         | 182M/2.76G [00:14<03:00, 14.3Mbytes/s]
  7%|▋         | 185M/2.76G [00:14<02:57, 14.5Mbytes/s]
  7%|▋         | 188M/2.76G [00:14<02:57, 14.5Mbytes/s]
  7%|▋         | 191M/2.76G [00:14<02:57, 14.5Mbytes/s]
  7%|▋         | 194M/2.76G [00:14<02:55, 14.7Mbytes/s]
  7%|▋         | 197M/2.76G [00:15<02:55, 14.6Mbytes/s]
  7%|▋         | 200M/2.76G [00:15<03:04, 13.8Mbytes/s]
  7%|▋         | 202M/2.76G [00:15<03:31, 12.1Mbytes/s]
  7%|▋         | 205M/2.76G [00:15<03:21, 12.7Mbytes/s]
  8%|▊         | 207M/2.76G [00:16<03:13, 13.2Mbytes/s]
  8%|▊         | 210M/2.76G [00:16<03:07, 13.6Mbytes/s]
  8%|▊         | 213M/2.76G [00:16<03:02, 14.0Mbytes/s]
  8%|▊         | 216M/2.76G [00:16<02:59, 14.2Mbytes/s]
  8%|▊         | 219M/2.76G [00:16<02:56, 14.4Mbytes/s]
  8%|▊         | 222M/2.76G [00:17<02:56, 14.4Mbytes/s]
  8%|▊         | 225M/2.76G [00:17<02:55, 14.4Mbytes/s]
  8%|▊         | 228M/2.76G [00:17<02:54, 14.5Mbytes/s]
  8%|▊         | 231M/2.76G [00:17<02:54, 14.5Mbytes/s]
  8%|▊         | 234M/2.76G [00:17<03:01, 14.0Mbytes/s]
  9%|▊         | 237M/2.76G [00:18<03:04, 13.7Mbytes/s]
  9%|▊         | 240M/2.76G [00:18<02:59, 14.1Mbytes/s]
  9%|▉         | 243M/2.76G [00:18<02:56, 14.3Mbytes/s]
  9%|▉         | 246M/2.76G [00:18<02:55, 14.3Mbytes/s]
  9%|▉         | 249M/2.76G [00:18<02:54, 14.4Mbytes/s]
  9%|▉         | 252M/2.76G [00:19<02:55, 14.3Mbytes/s]
  9%|▉         | 255M/2.76G [00:19<02:54, 14.4Mbytes/s]
  9%|▉         | 258M/2.76G [00:19<02:52, 14.5Mbytes/s]
  9%|▉         | 261M/2.76G [00:19<02:52, 14.5Mbytes/s]
 10%|▉         | 264M/2.76G [00:19<02:52, 14.5Mbytes/s]
 10%|▉         | 267M/2.76G [00:20<02:51, 14.5Mbytes/s]
 10%|▉         | 269M/2.76G [00:20<02:51, 14.5Mbytes/s]
 10%|▉         | 272M/2.76G [00:20<02:51, 14.5Mbytes/s]
 10%|▉         | 275M/2.76G [00:20<02:51, 14.5Mbytes/s]
 10%|█         | 278M/2.76G [00:20<02:52, 14.4Mbytes/s]
 10%|█         | 281M/2.76G [00:21<02:51, 14.5Mbytes/s]
 10%|█         | 284M/2.76G [00:21<02:51, 14.4Mbytes/s]
 10%|█         | 287M/2.76G [00:21<02:51, 14.4Mbytes/s]
 11%|█         | 290M/2.76G [00:21<02:51, 14.4Mbytes/s]
 11%|█         | 293M/2.76G [00:21<02:51, 14.3Mbytes/s]
 11%|█         | 296M/2.76G [00:22<02:51, 14.4Mbytes/s]
 11%|█         | 299M/2.76G [00:22<02:51, 14.4Mbytes/s]
 11%|█         | 302M/2.76G [00:22<02:51, 14.3Mbytes/s]
 11%|█         | 304M/2.76G [00:22<02:51, 14.3Mbytes/s]
 11%|█         | 307M/2.76G [00:22<02:50, 14.4Mbytes/s]
 11%|█         | 310M/2.76G [00:23<02:50, 14.4Mbytes/s]
 11%|█▏        | 313M/2.76G [00:23<02:49, 14.4Mbytes/s]
 11%|█▏        | 316M/2.76G [00:23<02:48, 14.5Mbytes/s]
 12%|█▏        | 319M/2.76G [00:23<02:48, 14.5Mbytes/s]
 12%|█▏        | 322M/2.76G [00:23<02:47, 14.5Mbytes/s]
 12%|█▏        | 325M/2.76G [00:24<02:48, 14.5Mbytes/s]
 12%|█▏        | 328M/2.76G [00:24<02:48, 14.4Mbytes/s]
 12%|█▏        | 331M/2.76G [00:24<02:49, 14.3Mbytes/s]
 12%|█▏        | 334M/2.76G [00:24<02:48, 14.4Mbytes/s]
 12%|█▏        | 337M/2.76G [00:25<02:47, 14.4Mbytes/s]
 12%|█▏        | 340M/2.76G [00:25<02:47, 14.5Mbytes/s]
 12%|█▏        | 343M/2.76G [00:25<02:48, 14.3Mbytes/s]
 12%|█▏        | 345M/2.76G [00:25<02:30, 16.1Mbytes/s]
 13%|█▎        | 347M/2.76G [00:25<02:51, 14.0Mbytes/s]
 13%|█▎        | 348M/2.76G [00:25<02:57, 13.6Mbytes/s]
 13%|█▎        | 351M/2.76G [00:25<02:34, 15.6Mbytes/s]
 13%|█▎        | 352M/2.76G [00:26<02:57, 13.5Mbytes/s]
 13%|█▎        | 354M/2.76G [00:26<02:58, 13.4Mbytes/s]
 13%|█▎        | 356M/2.76G [00:26<02:32, 15.8Mbytes/s]
 13%|█▎        | 358M/2.76G [00:26<02:56, 13.7Mbytes/s]
 13%|█▎        | 360M/2.76G [00:26<03:24, 11.8Mbytes/s]
 13%|█▎        | 362M/2.76G [00:26<03:50, 10.4Mbytes/s]
 13%|█▎        | 365M/2.76G [00:27<03:22, 11.9Mbytes/s]
 13%|█▎        | 368M/2.76G [00:27<03:09, 12.6Mbytes/s]
 13%|█▎        | 370M/2.76G [00:27<03:00, 13.3Mbytes/s]
 14%|█▎        | 373M/2.76G [00:27<02:54, 13.7Mbytes/s]
 14%|█▎        | 376M/2.76G [00:27<02:51, 13.9Mbytes/s]
 14%|█▎        | 379M/2.76G [00:28<02:48, 14.1Mbytes/s]
 14%|█▍        | 382M/2.76G [00:28<02:46, 14.3Mbytes/s]
 14%|█▍        | 385M/2.76G [00:28<02:45, 14.4Mbytes/s]
 14%|█▍        | 388M/2.76G [00:28<02:43, 14.5Mbytes/s]
 14%|█▍        | 391M/2.76G [00:28<02:43, 14.5Mbytes/s]
 14%|█▍        | 394M/2.76G [00:29<02:42, 14.5Mbytes/s]
 14%|█▍        | 397M/2.76G [00:29<02:42, 14.5Mbytes/s]
 14%|█▍        | 400M/2.76G [00:29<02:42, 14.6Mbytes/s]
 15%|█▍        | 403M/2.76G [00:29<02:43, 14.5Mbytes/s]
 15%|█▍        | 406M/2.76G [00:29<02:42, 14.5Mbytes/s]
 15%|█▍        | 409M/2.76G [00:30<02:43, 14.4Mbytes/s]
 15%|█▍        | 412M/2.76G [00:30<02:48, 14.0Mbytes/s]
 15%|█▌        | 415M/2.76G [00:30<02:46, 14.1Mbytes/s]
 15%|█▌        | 418M/2.76G [00:30<02:45, 14.2Mbytes/s]
 15%|█▌        | 421M/2.76G [00:31<02:43, 14.3Mbytes/s]
 15%|█▌        | 424M/2.76G [00:31<02:41, 14.5Mbytes/s]
 15%|█▌        | 427M/2.76G [00:31<02:39, 14.6Mbytes/s]
 16%|█▌        | 430M/2.76G [00:31<02:38, 14.7Mbytes/s]
 16%|█▌        | 433M/2.76G [00:31<02:37, 14.8Mbytes/s]
 16%|█▌        | 436M/2.76G [00:32<02:37, 14.8Mbytes/s]
 16%|█▌        | 439M/2.76G [00:32<02:37, 14.7Mbytes/s]
 16%|█▌        | 442M/2.76G [00:32<02:37, 14.7Mbytes/s]
 16%|█▌        | 445M/2.76G [00:32<02:36, 14.8Mbytes/s]
 16%|█▌        | 448M/2.76G [00:32<02:36, 14.8Mbytes/s]
 16%|█▋        | 451M/2.76G [00:33<02:26, 15.8Mbytes/s]
 16%|█▋        | 453M/2.76G [00:33<02:24, 15.9Mbytes/s]
 16%|█▋        | 454M/2.76G [00:33<02:30, 15.4Mbytes/s]
 17%|█▋        | 456M/2.76G [00:33<02:49, 13.6Mbytes/s]
 17%|█▋        | 458M/2.76G [00:33<02:33, 15.0Mbytes/s]
 17%|█▋        | 460M/2.76G [00:33<02:37, 14.6Mbytes/s]
 17%|█▋        | 461M/2.76G [00:33<02:27, 15.6Mbytes/s]
 17%|█▋        | 463M/2.76G [00:33<02:33, 15.0Mbytes/s]
 17%|█▋        | 465M/2.76G [00:34<02:48, 13.6Mbytes/s]
 17%|█▋        | 466M/2.76G [00:34<02:54, 13.1Mbytes/s]
 17%|█▋        | 468M/2.76G [00:34<02:40, 14.3Mbytes/s]
 17%|█▋        | 470M/2.76G [00:34<02:44, 13.9Mbytes/s]
 17%|█▋        | 471M/2.76G [00:34<03:05, 12.4Mbytes/s]
 17%|█▋        | 474M/2.76G [00:34<02:29, 15.3Mbytes/s]
 17%|█▋        | 476M/2.76G [00:34<02:44, 13.9Mbytes/s]
 17%|█▋        | 477M/2.76G [00:34<03:04, 12.4Mbytes/s]
 17%|█▋        | 480M/2.76G [00:35<02:51, 13.3Mbytes/s]
 18%|█▊        | 483M/2.76G [00:35<02:45, 13.8Mbytes/s]
 18%|█▊        | 486M/2.76G [00:35<02:42, 14.0Mbytes/s]
 18%|█▊        | 489M/2.76G [00:35<02:39, 14.3Mbytes/s]
 18%|█▊        | 492M/2.76G [00:35<02:17, 16.5Mbytes/s]
 18%|█▊        | 494M/2.76G [00:35<02:25, 15.6Mbytes/s]
 18%|█▊        | 495M/2.76G [00:36<02:48, 13.5Mbytes/s]
 18%|█▊        | 497M/2.76G [00:36<02:58, 12.7Mbytes/s]
 18%|█▊        | 500M/2.76G [00:36<02:48, 13.4Mbytes/s]
 18%|█▊        | 504M/2.76G [00:36<02:42, 13.9Mbytes/s]
 18%|█▊        | 507M/2.76G [00:36<02:39, 14.2Mbytes/s]
 18%|█▊        | 510M/2.76G [00:37<02:37, 14.3Mbytes/s]
 19%|█▊        | 512M/2.76G [00:37<02:37, 14.3Mbytes/s]
 19%|█▊        | 515M/2.76G [00:37<02:37, 14.3Mbytes/s]
 19%|█▉        | 518M/2.76G [00:37<02:36, 14.3Mbytes/s]
 19%|█▉        | 521M/2.76G [00:38<02:36, 14.3Mbytes/s]
 19%|█▉        | 524M/2.76G [00:38<02:35, 14.3Mbytes/s]
 19%|█▉        | 527M/2.76G [00:38<02:34, 14.4Mbytes/s]
 19%|█▉        | 530M/2.76G [00:38<02:33, 14.5Mbytes/s]
 19%|█▉        | 533M/2.76G [00:38<02:32, 14.6Mbytes/s]
 19%|█▉        | 536M/2.76G [00:39<02:31, 14.6Mbytes/s]
 20%|█▉        | 539M/2.76G [00:39<02:31, 14.7Mbytes/s]
 20%|█▉        | 542M/2.76G [00:39<02:40, 13.8Mbytes/s]
 20%|█▉        | 544M/2.76G [00:39<03:02, 12.1Mbytes/s]
 20%|█▉        | 547M/2.76G [00:39<02:50, 13.0Mbytes/s]
 20%|█▉        | 550M/2.76G [00:40<02:45, 13.4Mbytes/s]
 20%|██        | 553M/2.76G [00:40<02:41, 13.7Mbytes/s]
 20%|██        | 556M/2.76G [00:40<02:40, 13.8Mbytes/s]
 20%|██        | 558M/2.76G [00:40<02:29, 14.8Mbytes/s]
 20%|██        | 559M/2.76G [00:40<02:28, 14.9Mbytes/s]
 20%|██        | 561M/2.76G [00:40<02:28, 14.8Mbytes/s]
 20%|██        | 562M/2.76G [00:40<02:28, 14.8Mbytes/s]
 20%|██        | 564M/2.76G [00:41<02:28, 14.8Mbytes/s]
 20%|██        | 565M/2.76G [00:41<02:28, 14.8Mbytes/s]
 21%|██        | 567M/2.76G [00:41<02:29, 14.7Mbytes/s]
 21%|██        | 568M/2.76G [00:41<02:28, 14.7Mbytes/s]
 21%|██        | 570M/2.76G [00:41<02:29, 14.7Mbytes/s]
 21%|██        | 571M/2.76G [00:41<02:29, 14.7Mbytes/s]
 21%|██        | 573M/2.76G [00:41<02:29, 14.6Mbytes/s]
 21%|██        | 574M/2.76G [00:41<02:29, 14.6Mbytes/s]
 21%|██        | 576M/2.76G [00:41<02:28, 14.7Mbytes/s]
 21%|██        | 577M/2.76G [00:41<02:29, 14.6Mbytes/s]
 21%|██        | 579M/2.76G [00:42<02:29, 14.6Mbytes/s]
 21%|██        | 580M/2.76G [00:42<02:31, 14.4Mbytes/s]
 21%|██        | 582M/2.76G [00:42<02:24, 15.1Mbytes/s]
 21%|██        | 583M/2.76G [00:42<02:25, 15.0Mbytes/s]
 21%|██        | 585M/2.76G [00:42<02:24, 15.1Mbytes/s]
 21%|██        | 586M/2.76G [00:42<02:25, 14.9Mbytes/s]
 21%|██▏       | 588M/2.76G [00:42<02:22, 15.2Mbytes/s]
 21%|██▏       | 590M/2.76G [00:42<02:26, 14.8Mbytes/s]
 21%|██▏       | 591M/2.76G [00:42<02:20, 15.4Mbytes/s]
 21%|██▏       | 593M/2.76G [00:42<02:23, 15.1Mbytes/s]
 22%|██▏       | 595M/2.76G [00:43<02:17, 15.7Mbytes/s]
 22%|██▏       | 596M/2.76G [00:43<02:21, 15.3Mbytes/s]
 22%|██▏       | 598M/2.76G [00:43<02:45, 13.1Mbytes/s]
 22%|██▏       | 600M/2.76G [00:43<02:24, 15.0Mbytes/s]
 22%|██▏       | 602M/2.76G [00:43<02:25, 14.9Mbytes/s]
 22%|██▏       | 603M/2.76G [00:43<02:17, 15.7Mbytes/s]
 22%|██▏       | 605M/2.76G [00:43<02:21, 15.3Mbytes/s]
 22%|██▏       | 607M/2.76G [00:43<02:13, 16.1Mbytes/s]
 22%|██▏       | 609M/2.76G [00:44<02:18, 15.6Mbytes/s]
 22%|██▏       | 610M/2.76G [00:44<02:41, 13.3Mbytes/s]
 22%|██▏       | 612M/2.76G [00:44<02:23, 14.9Mbytes/s]
 22%|██▏       | 614M/2.76G [00:44<02:24, 14.8Mbytes/s]
 22%|██▏       | 616M/2.76G [00:44<02:20, 15.2Mbytes/s]
 22%|██▏       | 617M/2.76G [00:44<02:24, 14.8Mbytes/s]
 22%|██▏       | 619M/2.76G [00:44<02:41, 13.3Mbytes/s]
 23%|██▎       | 621M/2.76G [00:44<02:18, 15.4Mbytes/s]
 23%|██▎       | 623M/2.76G [00:45<02:21, 15.1Mbytes/s]
 23%|██▎       | 625M/2.76G [00:45<02:16, 15.7Mbytes/s]
 23%|██▎       | 627M/2.76G [00:45<02:52, 12.4Mbytes/s]
 23%|██▎       | 628M/2.76G [00:45<03:00, 11.8Mbytes/s]
 23%|██▎       | 630M/2.76G [00:45<03:05, 11.5Mbytes/s]
 23%|██▎       | 633M/2.76G [00:45<02:20, 15.2Mbytes/s]
 23%|██▎       | 634M/2.76G [00:45<02:37, 13.5Mbytes/s]
 23%|██▎       | 636M/2.76G [00:46<02:58, 11.9Mbytes/s]
 23%|██▎       | 639M/2.76G [00:46<02:50, 12.4Mbytes/s]
 23%|██▎       | 642M/2.76G [00:46<02:39, 13.3Mbytes/s]
 23%|██▎       | 645M/2.76G [00:46<02:32, 13.9Mbytes/s]
 23%|██▎       | 648M/2.76G [00:46<02:29, 14.1Mbytes/s]
 24%|██▎       | 651M/2.76G [00:46<02:03, 17.1Mbytes/s]
 24%|██▎       | 653M/2.76G [00:47<02:13, 15.8Mbytes/s]
 24%|██▎       | 654M/2.76G [00:47<02:31, 13.9Mbytes/s]
 24%|██▍       | 657M/2.76G [00:47<02:31, 13.9Mbytes/s]
 24%|██▍       | 659M/2.76G [00:47<02:10, 16.1Mbytes/s]
 24%|██▍       | 661M/2.76G [00:47<02:20, 15.0Mbytes/s]
 24%|██▍       | 663M/2.76G [00:47<02:30, 13.9Mbytes/s]
 24%|██▍       | 665M/2.76G [00:48<02:13, 15.8Mbytes/s]
 24%|██▍       | 667M/2.76G [00:48<02:19, 15.0Mbytes/s]
 24%|██▍       | 669M/2.76G [00:48<02:20, 14.9Mbytes/s]
 24%|██▍       | 671M/2.76G [00:48<02:05, 16.6Mbytes/s]
 24%|██▍       | 673M/2.76G [00:48<02:26, 14.2Mbytes/s]
 24%|██▍       | 675M/2.76G [00:48<02:32, 13.7Mbytes/s]
 25%|██▍       | 677M/2.76G [00:48<02:13, 15.6Mbytes/s]
 25%|██▍       | 679M/2.76G [00:48<02:20, 14.8Mbytes/s]
 25%|██▍       | 681M/2.76G [00:49<02:30, 13.8Mbytes/s]
 25%|██▍       | 684M/2.76G [00:49<02:11, 15.8Mbytes/s]
 25%|██▍       | 685M/2.76G [00:49<02:20, 14.8Mbytes/s]
 25%|██▍       | 687M/2.76G [00:49<02:30, 13.8Mbytes/s]
 25%|██▍       | 690M/2.76G [00:49<02:10, 15.8Mbytes/s]
 25%|██▌       | 691M/2.76G [00:49<02:19, 14.8Mbytes/s]
 25%|██▌       | 693M/2.76G [00:49<02:29, 13.8Mbytes/s]
 25%|██▌       | 696M/2.76G [00:50<02:07, 16.2Mbytes/s]
 25%|██▌       | 697M/2.76G [00:50<02:16, 15.1Mbytes/s]
 25%|██▌       | 699M/2.76G [00:50<02:29, 13.8Mbytes/s]
 25%|██▌       | 702M/2.76G [00:50<02:06, 16.3Mbytes/s]
 25%|██▌       | 704M/2.76G [00:50<02:32, 13.5Mbytes/s]
 26%|██▌       | 705M/2.76G [00:50<02:23, 14.3Mbytes/s]
 26%|██▌       | 707M/2.76G [00:50<02:19, 14.7Mbytes/s]
 26%|██▌       | 709M/2.76G [00:50<02:19, 14.8Mbytes/s]
 26%|██▌       | 710M/2.76G [00:51<02:17, 14.9Mbytes/s]
 26%|██▌       | 712M/2.76G [00:51<02:17, 14.9Mbytes/s]
 26%|██▌       | 713M/2.76G [00:51<02:18, 14.8Mbytes/s]
 26%|██▌       | 715M/2.76G [00:51<02:15, 15.1Mbytes/s]
 26%|██▌       | 716M/2.76G [00:51<02:16, 15.0Mbytes/s]
 26%|██▌       | 718M/2.76G [00:51<02:15, 15.1Mbytes/s]
 26%|██▌       | 719M/2.76G [00:51<02:15, 15.0Mbytes/s]
 26%|██▌       | 721M/2.76G [00:51<02:14, 15.2Mbytes/s]
 26%|██▌       | 723M/2.76G [00:51<02:15, 15.1Mbytes/s]
 26%|██▌       | 724M/2.76G [00:52<02:37, 13.0Mbytes/s]
 26%|██▋       | 727M/2.76G [00:52<02:15, 15.0Mbytes/s]
 26%|██▋       | 728M/2.76G [00:52<02:16, 14.9Mbytes/s]
 26%|██▋       | 730M/2.76G [00:52<02:51, 11.8Mbytes/s]
 26%|██▋       | 731M/2.76G [00:52<03:19, 10.2Mbytes/s]
 27%|██▋       | 733M/2.76G [00:52<03:03, 11.1Mbytes/s]
 27%|██▋       | 736M/2.76G [00:53<02:43, 12.4Mbytes/s]
 27%|██▋       | 740M/2.76G [00:53<02:33, 13.2Mbytes/s]
 27%|██▋       | 743M/2.76G [00:53<02:26, 13.8Mbytes/s]
 27%|██▋       | 746M/2.76G [00:53<02:22, 14.1Mbytes/s]
 27%|██▋       | 749M/2.76G [00:53<02:20, 14.3Mbytes/s]
 27%|██▋       | 752M/2.76G [00:54<02:19, 14.4Mbytes/s]
 27%|██▋       | 755M/2.76G [00:54<02:18, 14.5Mbytes/s]
 27%|██▋       | 758M/2.76G [00:54<02:18, 14.4Mbytes/s]
 28%|██▊       | 761M/2.76G [00:54<02:20, 14.2Mbytes/s]
 28%|██▊       | 764M/2.76G [00:54<02:19, 14.3Mbytes/s]
 28%|██▊       | 767M/2.76G [00:55<02:18, 14.4Mbytes/s]
 28%|██▊       | 770M/2.76G [00:55<02:16, 14.6Mbytes/s]
 28%|██▊       | 773M/2.76G [00:55<02:15, 14.7Mbytes/s]
 28%|██▊       | 776M/2.76G [00:55<02:15, 14.7Mbytes/s]
 28%|██▊       | 779M/2.76G [00:55<02:15, 14.7Mbytes/s]
 28%|██▊       | 782M/2.76G [00:56<02:14, 14.7Mbytes/s]
 28%|██▊       | 785M/2.76G [00:56<02:14, 14.7Mbytes/s]
 29%|██▊       | 788M/2.76G [00:56<02:22, 13.8Mbytes/s]
 29%|██▊       | 790M/2.76G [00:56<02:25, 13.6Mbytes/s]
 29%|██▊       | 793M/2.76G [00:56<02:23, 13.8Mbytes/s]
 29%|██▉       | 796M/2.76G [00:57<02:21, 13.9Mbytes/s]
 29%|██▉       | 799M/2.76G [00:57<02:18, 14.2Mbytes/s]
 29%|██▉       | 802M/2.76G [00:57<02:16, 14.3Mbytes/s]
 29%|██▉       | 805M/2.76G [00:57<02:15, 14.5Mbytes/s]
 29%|██▉       | 808M/2.76G [00:57<02:14, 14.5Mbytes/s]
 29%|██▉       | 811M/2.76G [00:58<02:14, 14.5Mbytes/s]
 29%|██▉       | 814M/2.76G [00:58<02:13, 14.6Mbytes/s]
 30%|██▉       | 817M/2.76G [00:58<02:12, 14.7Mbytes/s]
 30%|██▉       | 820M/2.76G [00:58<02:11, 14.7Mbytes/s]
 30%|██▉       | 823M/2.76G [00:59<02:11, 14.7Mbytes/s]
 30%|██▉       | 826M/2.76G [00:59<02:11, 14.7Mbytes/s]
 30%|███       | 829M/2.76G [00:59<02:10, 14.8Mbytes/s]
 30%|███       | 832M/2.76G [00:59<02:10, 14.8Mbytes/s]
 30%|███       | 835M/2.76G [00:59<01:50, 17.4Mbytes/s]
 30%|███       | 837M/2.76G [00:59<02:05, 15.4Mbytes/s]
 30%|███       | 839M/2.76G [01:00<02:12, 14.5Mbytes/s]
 30%|███       | 841M/2.76G [01:00<02:17, 14.0Mbytes/s]
 31%|███       | 844M/2.76G [01:00<01:54, 16.7Mbytes/s]
 31%|███       | 846M/2.76G [01:00<02:04, 15.4Mbytes/s]
 31%|███       | 848M/2.76G [01:00<02:17, 13.9Mbytes/s]
 31%|███       | 850M/2.76G [01:00<01:55, 16.5Mbytes/s]
 31%|███       | 852M/2.76G [01:00<02:06, 15.1Mbytes/s]
 31%|███       | 854M/2.76G [01:01<02:19, 13.6Mbytes/s]
 31%|███       | 856M/2.76G [01:01<01:56, 16.4Mbytes/s]
 31%|███       | 858M/2.76G [01:01<02:06, 15.1Mbytes/s]
 31%|███       | 860M/2.76G [01:01<02:21, 13.4Mbytes/s]
 31%|███       | 862M/2.76G [01:01<02:34, 12.3Mbytes/s]
 31%|███▏      | 864M/2.76G [01:01<02:55, 10.8Mbytes/s]
 31%|███▏      | 867M/2.76G [01:02<02:34, 12.2Mbytes/s]
 31%|███▏      | 870M/2.76G [01:02<02:25, 13.0Mbytes/s]
 32%|███▏      | 873M/2.76G [01:02<02:19, 13.5Mbytes/s]
 32%|███▏      | 876M/2.76G [01:02<02:16, 13.8Mbytes/s]
 32%|███▏      | 879M/2.76G [01:02<02:13, 14.1Mbytes/s]
 32%|███▏      | 881M/2.76G [01:03<02:13, 14.1Mbytes/s]
 32%|███▏      | 884M/2.76G [01:03<02:11, 14.3Mbytes/s]
 32%|███▏      | 888M/2.76G [01:03<02:09, 14.5Mbytes/s]
 32%|███▏      | 891M/2.76G [01:03<02:13, 14.0Mbytes/s]
 32%|███▏      | 893M/2.76G [01:03<02:15, 13.8Mbytes/s]
 32%|███▏      | 896M/2.76G [01:04<02:11, 14.1Mbytes/s]
 33%|███▎      | 899M/2.76G [01:04<02:09, 14.4Mbytes/s]
 33%|███▎      | 902M/2.76G [01:04<02:08, 14.5Mbytes/s]
 33%|███▎      | 905M/2.76G [01:04<02:06, 14.6Mbytes/s]
 33%|███▎      | 908M/2.76G [01:04<02:05, 14.7Mbytes/s]
 33%|███▎      | 911M/2.76G [01:05<02:05, 14.8Mbytes/s]
 33%|███▎      | 915M/2.76G [01:05<02:04, 14.8Mbytes/s]
 33%|███▎      | 917M/2.76G [01:05<02:05, 14.7Mbytes/s]
 33%|███▎      | 921M/2.76G [01:05<02:04, 14.8Mbytes/s]
 33%|███▎      | 923M/2.76G [01:05<02:05, 14.7Mbytes/s]
 34%|███▎      | 926M/2.76G [01:06<01:56, 15.8Mbytes/s]
 34%|███▎      | 927M/2.76G [01:06<02:09, 14.1Mbytes/s]
 34%|███▎      | 930M/2.76G [01:06<02:04, 14.7Mbytes/s]
 34%|███▎      | 932M/2.76G [01:06<01:54, 16.0Mbytes/s]
 34%|███▍      | 933M/2.76G [01:06<02:11, 13.9Mbytes/s]
 34%|███▍      | 936M/2.76G [01:06<02:04, 14.6Mbytes/s]
 34%|███▍      | 938M/2.76G [01:06<01:51, 16.3Mbytes/s]
 34%|███▍      | 940M/2.76G [01:07<02:10, 13.9Mbytes/s]
 34%|███▍      | 942M/2.76G [01:07<02:05, 14.4Mbytes/s]
 34%|███▍      | 944M/2.76G [01:07<01:54, 15.9Mbytes/s]
 34%|███▍      | 945M/2.76G [01:07<02:12, 13.7Mbytes/s]
 34%|███▍      | 948M/2.76G [01:07<02:05, 14.5Mbytes/s]
 34%|███▍      | 950M/2.76G [01:07<01:54, 15.9Mbytes/s]
 34%|███▍      | 951M/2.76G [01:07<02:11, 13.7Mbytes/s]
 35%|███▍      | 953M/2.76G [01:08<02:05, 14.4Mbytes/s]
 35%|███▍      | 956M/2.76G [01:08<01:52, 16.0Mbytes/s]
 35%|███▍      | 957M/2.76G [01:08<02:10, 13.8Mbytes/s]
 35%|███▍      | 959M/2.76G [01:08<02:04, 14.4Mbytes/s]
 35%|███▍      | 962M/2.76G [01:08<01:52, 16.0Mbytes/s]
 35%|███▍      | 963M/2.76G [01:08<02:09, 13.8Mbytes/s]
 35%|███▍      | 966M/2.76G [01:08<02:06, 14.2Mbytes/s]
 35%|███▌      | 968M/2.76G [01:08<01:47, 16.8Mbytes/s]
 35%|███▌      | 970M/2.76G [01:09<02:03, 14.5Mbytes/s]
 35%|███▌      | 972M/2.76G [01:09<02:10, 13.7Mbytes/s]
 35%|███▌      | 974M/2.76G [01:09<01:48, 16.5Mbytes/s]
 35%|███▌      | 976M/2.76G [01:09<02:03, 14.4Mbytes/s]
 35%|███▌      | 978M/2.76G [01:09<02:29, 11.9Mbytes/s]
 35%|███▌      | 979M/2.76G [01:09<02:54, 10.2Mbytes/s]
 36%|███▌      | 982M/2.76G [01:10<02:28, 11.9Mbytes/s]
 36%|███▌      | 985M/2.76G [01:10<02:17, 12.9Mbytes/s]
 36%|███▌      | 988M/2.76G [01:10<01:54, 15.5Mbytes/s]
 36%|███▌      | 990M/2.76G [01:10<02:16, 13.0Mbytes/s]
 36%|███▌      | 991M/2.76G [01:10<02:17, 12.9Mbytes/s]
 36%|███▌      | 993M/2.76G [01:10<02:00, 14.7Mbytes/s]
 36%|███▌      | 995M/2.76G [01:10<02:05, 14.1Mbytes/s]
 36%|███▌      | 997M/2.76G [01:11<02:10, 13.6Mbytes/s]
 36%|███▌      | 999M/2.76G [01:11<01:55, 15.2Mbytes/s]
 36%|███▌      | 1.00G/2.76G [01:11<02:01, 14.5Mbytes/s]
 36%|███▋      | 1.00G/2.76G [01:11<02:07, 13.8Mbytes/s]
 36%|███▋      | 1.01G/2.76G [01:11<01:53, 15.5Mbytes/s]
 36%|███▋      | 1.01G/2.76G [01:11<01:59, 14.7Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:11<02:08, 13.6Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:12<01:52, 15.6Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:12<02:03, 14.1Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:12<02:07, 13.7Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<01:52, 15.6Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<01:59, 14.6Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<02:06, 13.8Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<01:50, 15.7Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:13<01:57, 14.8Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<02:05, 13.8Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<01:52, 15.4Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<01:58, 14.6Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<02:03, 14.0Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<01:50, 15.7Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:13<02:08, 13.4Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:14<02:25, 11.9Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:14<02:13, 12.9Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:14<02:05, 13.7Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<02:01, 14.1Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<01:58, 14.4Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:15<01:56, 14.6Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:15<01:55, 14.7Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:15<01:55, 14.7Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:15<01:54, 14.8Mbytes/s]
 39%|███▊      | 1.07G/2.76G [01:15<01:54, 14.8Mbytes/s]
 39%|███▊      | 1.07G/2.76G [01:16<01:54, 14.8Mbytes/s]
 39%|███▉      | 1.07G/2.76G [01:16<01:54, 14.8Mbytes/s]
 39%|███▉      | 1.07G/2.76G [01:16<01:53, 14.8Mbytes/s]
 39%|███▉      | 1.08G/2.76G [01:16<01:53, 14.9Mbytes/s]
 39%|███▉      | 1.08G/2.76G [01:16<01:58, 14.2Mbytes/s]
 39%|███▉      | 1.08G/2.76G [01:17<02:15, 12.4Mbytes/s]
 39%|███▉      | 1.09G/2.76G [01:17<02:06, 13.2Mbytes/s]
 39%|███▉      | 1.09G/2.76G [01:17<02:03, 13.6Mbytes/s]
 40%|███▉      | 1.09G/2.76G [01:17<01:59, 14.0Mbytes/s]
 40%|███▉      | 1.09G/2.76G [01:17<01:56, 14.3Mbytes/s]
 40%|███▉      | 1.10G/2.76G [01:18<01:55, 14.4Mbytes/s]
 40%|███▉      | 1.10G/2.76G [01:18<01:53, 14.6Mbytes/s]
 40%|███▉      | 1.10G/2.76G [01:18<01:47, 15.4Mbytes/s]
 40%|████      | 1.10G/2.76G [01:18<01:49, 15.1Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:47, 15.4Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:48, 15.2Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:48, 15.2Mbytes/s]
 40%|████      | 1.11G/2.76G [01:19<01:50, 14.9Mbytes/s]
 40%|████      | 1.11G/2.76G [01:19<02:02, 13.4Mbytes/s]
 40%|████      | 1.12G/2.76G [01:19<01:49, 15.0Mbytes/s]
 40%|████      | 1.12G/2.76G [01:19<01:52, 14.6Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<01:48, 15.1Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<01:50, 14.8Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<02:02, 13.4Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<01:47, 15.2Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<01:51, 14.7Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<01:50, 14.8Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<01:50, 14.7Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<01:56, 14.0Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<01:40, 16.2Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<01:52, 14.4Mbytes/s]
 41%|████      | 1.14G/2.76G [01:20<01:52, 14.5Mbytes/s]
 41%|████      | 1.14G/2.76G [01:20<01:40, 16.2Mbytes/s]
 41%|████▏     | 1.14G/2.76G [01:21<01:50, 14.6Mbytes/s]
 41%|████▏     | 1.14G/2.76G [01:21<01:53, 14.2Mbytes/s]
 41%|████▏     | 1.14G/2.76G [01:21<02:15, 12.0Mbytes/s]
 41%|████▏     | 1.15G/2.76G [01:21<02:16, 11.8Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:21<02:03, 13.0Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:22<02:07, 12.6Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:22<02:04, 12.9Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:58, 13.5Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:54, 13.9Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:52, 14.2Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:23<01:50, 14.5Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:23<01:48, 14.6Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:23<01:41, 15.6Mbytes/s]
 43%|████▎     | 1.17G/2.76G [01:23<01:44, 15.2Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:44, 15.2Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:44, 15.2Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:43, 15.2Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:43, 15.2Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:24<02:02, 12.9Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:24<02:01, 13.0Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<01:53, 13.9Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<01:30, 17.4Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<01:38, 16.0Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<01:52, 14.0Mbytes/s]
 43%|████▎     | 1.20G/2.76G [01:25<01:54, 13.7Mbytes/s]
 43%|████▎     | 1.20G/2.76G [01:25<01:52, 13.8Mbytes/s]
 44%|████▎     | 1.20G/2.76G [01:25<01:48, 14.3Mbytes/s]
 44%|████▎     | 1.21G/2.76G [01:25<01:46, 14.6Mbytes/s]
 44%|████▍     | 1.21G/2.76G [01:25<01:34, 16.3Mbytes/s]
 44%|████▍     | 1.21G/2.76G [01:25<01:43, 15.0Mbytes/s]
 44%|████▍     | 1.21G/2.76G [01:26<01:50, 14.0Mbytes/s]
 44%|████▍     | 1.21G/2.76G [01:26<01:34, 16.4Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:43, 14.9Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:50, 14.0Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:33, 16.5Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:44, 14.8Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:49, 14.0Mbytes/s]
 44%|████▍     | 1.23G/2.76G [01:27<01:34, 16.3Mbytes/s]
 44%|████▍     | 1.23G/2.76G [01:27<01:41, 15.0Mbytes/s]
 45%|████▍     | 1.23G/2.76G [01:27<01:49, 13.9Mbytes/s]
 45%|████▍     | 1.23G/2.76G [01:27<01:50, 13.9Mbytes/s]
 45%|████▍     | 1.23G/2.76G [01:27<01:41, 15.0Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<01:43, 14.8Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<01:40, 15.2Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<02:03, 12.3Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:28<02:24, 10.5Mbytes/s]
 45%|████▌     | 1.24G/2.76G [01:28<02:06, 12.0Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:55, 13.1Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:50, 13.7Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:46, 14.2Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:29<01:32, 16.3Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:37, 15.4Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:46, 14.1Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:33, 16.1Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:37, 15.3Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:46, 14.1Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:29<01:35, 15.7Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:29<01:38, 15.1Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:30<02:01, 12.3Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:30<01:56, 12.7Mbytes/s]
 46%|████▌     | 1.28G/2.76G [01:30<01:49, 13.6Mbytes/s]
 46%|████▋     | 1.28G/2.76G [01:30<01:45, 14.1Mbytes/s]
 46%|████▋     | 1.28G/2.76G [01:30<01:42, 14.5Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:40, 14.7Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:39, 14.8Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:38, 14.9Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:38, 14.9Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:32<01:38, 14.9Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:32<01:37, 15.0Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:32<01:37, 14.9Mbytes/s]
 47%|████▋     | 1.31G/2.76G [01:32<01:37, 14.9Mbytes/s]
 47%|████▋     | 1.31G/2.76G [01:32<01:43, 14.0Mbytes/s]
 48%|████▊     | 1.31G/2.76G [01:33<01:47, 13.5Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:33<01:50, 13.0Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:33<01:59, 12.1Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:33<02:18, 10.4Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:34<02:10, 11.0Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<01:54, 12.6Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<02:02, 11.7Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<01:47, 13.3Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<01:58, 12.0Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<02:11, 10.9Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:35<01:48, 13.1Mbytes/s]
 48%|████▊     | 1.34G/2.76G [01:35<01:59, 11.9Mbytes/s]
 48%|████▊     | 1.34G/2.76G [01:35<01:41, 14.0Mbytes/s]
 49%|████▊     | 1.34G/2.76G [01:35<01:54, 12.5Mbytes/s]
 49%|████▊     | 1.34G/2.76G [01:35<02:16, 10.4Mbytes/s]
 49%|████▊     | 1.34G/2.76G [01:35<01:51, 12.7Mbytes/s]
 49%|████▊     | 1.34G/2.76G [01:35<02:03, 11.5Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:36<02:08, 11.0Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:36<01:47, 13.2Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:36<01:58, 11.9Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:36<02:08, 11.0Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:36<01:47, 13.0Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:36<01:58, 11.8Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:36<01:43, 13.6Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:37<01:56, 12.0Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:37<02:15, 10.3Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:37<01:51, 12.6Mbytes/s]
 49%|████▉     | 1.37G/2.76G [01:37<02:03, 11.3Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:37<02:10, 10.6Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:37<01:52, 12.4Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:38<02:14, 10.4Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:38<02:05, 11.1Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:38<01:52, 12.3Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:38<02:01, 11.4Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:38<01:48, 12.7Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:38<02:01, 11.3Mbytes/s]
 50%|█████     | 1.38G/2.76G [01:38<01:46, 12.9Mbytes/s]
 50%|█████     | 1.38G/2.76G [01:39<02:06, 10.9Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:39<02:00, 11.4Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:39<01:46, 12.9Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:39<01:58, 11.6Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:39<01:46, 12.9Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:39<02:04, 11.0Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:40<02:22, 9.60Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:40<02:32, 8.93Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:40<01:48, 12.6Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:40<02:00, 11.3Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:40<02:16, 9.97Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:40<01:43, 13.2Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:41<01:55, 11.7Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:41<02:12, 10.3Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:41<01:37, 13.8Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:41<01:50, 12.3Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:41<02:09, 10.4Mbytes/s]
 51%|█████▏    | 1.42G/2.76G [01:41<01:36, 13.9Mbytes/s]
 51%|█████▏    | 1.42G/2.76G [01:42<01:48, 12.4Mbytes/s]
 51%|█████▏    | 1.42G/2.76G [01:42<02:08, 10.5Mbytes/s]
 52%|█████▏    | 1.42G/2.76G [01:42<01:35, 14.1Mbytes/s]
 52%|█████▏    | 1.42G/2.76G [01:42<01:51, 12.0Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:42<02:05, 10.6Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:42<01:40, 13.3Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:43<01:52, 11.9Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:43<02:05, 10.6Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:43<01:37, 13.6Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:43<01:48, 12.2Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:43<02:02, 10.8Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:43<01:36, 13.7Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:44<01:48, 12.1Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:44<02:00, 10.9Mbytes/s]
 52%|█████▏    | 1.45G/2.76G [01:44<01:43, 12.7Mbytes/s]
 52%|█████▏    | 1.45G/2.76G [01:44<01:54, 11.5Mbytes/s]
 52%|█████▏    | 1.45G/2.76G [01:44<01:34, 13.8Mbytes/s]
 53%|█████▎    | 1.45G/2.76G [01:44<01:45, 12.4Mbytes/s]
 53%|█████▎    | 1.45G/2.76G [01:45<01:57, 11.1Mbytes/s]
 53%|█████▎    | 1.45G/2.76G [01:45<01:42, 12.8Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:45<01:52, 11.6Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:45<01:35, 13.7Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:45<01:47, 12.1Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:45<01:57, 11.0Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:45<01:47, 12.0Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:45<01:51, 11.6Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:49, 11.8Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:53, 11.4Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:51, 11.6Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:52, 11.4Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:52, 11.5Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:48, 11.9Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:46<01:45, 12.1Mbytes/s]
 53%|█████▎    | 1.48G/2.76G [01:46<01:43, 12.4Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:47<01:42, 12.5Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:47<01:41, 12.6Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:47<01:43, 12.4Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:47<01:40, 12.8Mbytes/s]
 54%|█████▍    | 1.48G/2.76G [01:47<01:42, 12.5Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:47<01:39, 12.8Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:47<01:41, 12.6Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:47<01:38, 12.9Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:48<01:39, 12.7Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:48<01:37, 13.0Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:48<01:40, 12.6Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:48<01:36, 13.1Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:48<01:41, 12.5Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:48<01:35, 13.3Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:48<01:40, 12.5Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:48<01:38, 12.8Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:49<01:40, 12.5Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:49<01:38, 12.7Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:49<01:47, 11.7Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:49<01:52, 11.2Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:49<01:59, 10.4Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:49<01:46, 11.8Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:49<01:52, 11.1Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:49<01:38, 12.7Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:50<01:51, 11.2Mbytes/s]
 55%|█████▍    | 1.52G/2.76G [01:50<01:35, 13.0Mbytes/s]
 55%|█████▍    | 1.52G/2.76G [01:50<01:46, 11.7Mbytes/s]
 55%|█████▌    | 1.52G/2.76G [01:50<01:38, 12.6Mbytes/s]
 55%|█████▌    | 1.52G/2.76G [01:50<01:43, 12.0Mbytes/s]
 55%|█████▌    | 1.52G/2.76G [01:50<01:36, 12.8Mbytes/s]
 55%|█████▌    | 1.52G/2.76G [01:50<01:40, 12.2Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:51<01:34, 13.0Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:51<01:39, 12.4Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:51<01:28, 13.8Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:51<01:39, 12.3Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:51<01:36, 12.8Mbytes/s]
 56%|█████▌    | 1.53G/2.76G [01:51<01:40, 12.2Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:51<01:35, 12.8Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:51<01:40, 12.2Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:51<01:34, 12.9Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:52<01:39, 12.2Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:52<01:34, 12.9Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:52<01:39, 12.3Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:52<01:33, 13.0Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:52<01:38, 12.4Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:52<01:31, 13.2Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:52<01:40, 12.0Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:52<01:29, 13.5Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:53<01:39, 12.1Mbytes/s]
 56%|█████▋    | 1.55G/2.76G [01:53<01:37, 12.3Mbytes/s]
 56%|█████▋    | 1.55G/2.76G [01:53<01:46, 11.3Mbytes/s]
 56%|█████▋    | 1.56G/2.76G [01:53<01:31, 13.1Mbytes/s]
 56%|█████▋    | 1.56G/2.76G [01:53<01:41, 11.9Mbytes/s]
 56%|█████▋    | 1.56G/2.76G [01:53<01:30, 13.3Mbytes/s]
 57%|█████▋    | 1.56G/2.76G [01:53<01:51, 10.8Mbytes/s]
 57%|█████▋    | 1.56G/2.76G [01:54<01:59, 10.0Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:54<01:48, 11.0Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:54<01:44, 11.4Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:54<01:42, 11.6Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:55<01:40, 11.8Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:55<01:39, 11.9Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:55<01:37, 12.1Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:55<01:35, 12.3Mbytes/s]
 58%|█████▊    | 1.59G/2.76G [01:56<01:34, 12.4Mbytes/s]
 58%|█████▊    | 1.59G/2.76G [01:56<01:34, 12.4Mbytes/s]
 58%|█████▊    | 1.59G/2.76G [01:56<01:34, 12.4Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:56<01:34, 12.4Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:57<01:33, 12.5Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:57<01:32, 12.5Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:57<01:32, 12.5Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:57<01:32, 12.5Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:58<01:31, 12.5Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:58<01:31, 12.5Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:58<01:31, 12.5Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:58<01:30, 12.5Mbytes/s]
 59%|█████▉    | 1.62G/2.76G [01:59<01:30, 12.5Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:59<01:31, 12.4Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:59<01:31, 12.4Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:59<01:31, 12.3Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [02:00<01:30, 12.4Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [02:00<01:30, 12.4Mbytes/s]
 60%|█████▉    | 1.64G/2.76G [02:00<01:31, 12.3Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [02:00<01:26, 13.0Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [02:00<01:21, 13.7Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [02:00<01:21, 13.7Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [02:01<01:16, 14.5Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [02:01<01:16, 14.5Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [02:01<01:11, 15.4Mbytes/s]
 60%|█████▉    | 1.66G/2.76G [02:01<01:22, 13.4Mbytes/s]
 60%|██████    | 1.66G/2.76G [02:01<01:12, 15.1Mbytes/s]
 60%|██████    | 1.66G/2.76G [02:01<01:09, 15.9Mbytes/s]
 60%|██████    | 1.66G/2.76G [02:01<01:19, 13.9Mbytes/s]
 60%|██████    | 1.67G/2.76G [02:01<01:09, 15.7Mbytes/s]
 60%|██████    | 1.67G/2.76G [02:02<01:08, 16.0Mbytes/s]
 60%|██████    | 1.67G/2.76G [02:02<01:09, 15.7Mbytes/s]
 61%|██████    | 1.67G/2.76G [02:02<01:06, 16.4Mbytes/s]
 61%|██████    | 1.67G/2.76G [02:02<01:17, 14.0Mbytes/s]
 61%|██████    | 1.67G/2.76G [02:02<01:11, 15.2Mbytes/s]
 61%|██████    | 1.68G/2.76G [02:02<01:07, 16.0Mbytes/s]
 61%|██████    | 1.68G/2.76G [02:02<01:18, 13.8Mbytes/s]
 61%|██████    | 1.68G/2.76G [02:03<01:09, 15.5Mbytes/s]
 61%|██████    | 1.68G/2.76G [02:03<01:06, 16.2Mbytes/s]
 61%|██████    | 1.68G/2.76G [02:03<01:17, 13.9Mbytes/s]
 61%|██████    | 1.69G/2.76G [02:03<01:08, 15.7Mbytes/s]
 61%|██████    | 1.69G/2.76G [02:03<01:05, 16.4Mbytes/s]
 61%|██████    | 1.69G/2.76G [02:03<01:06, 16.1Mbytes/s]
 61%|██████▏   | 1.69G/2.76G [02:03<01:05, 16.4Mbytes/s]
 61%|██████▏   | 1.69G/2.76G [02:03<01:15, 14.1Mbytes/s]
 61%|██████▏   | 1.70G/2.76G [02:04<01:07, 15.8Mbytes/s]
 62%|██████▏   | 1.70G/2.76G [02:04<01:05, 16.2Mbytes/s]
 62%|██████▏   | 1.70G/2.76G [02:04<01:06, 16.1Mbytes/s]
 62%|██████▏   | 1.70G/2.76G [02:04<01:05, 16.1Mbytes/s]
 62%|██████▏   | 1.70G/2.76G [02:04<01:06, 16.0Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:04<01:05, 16.1Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:04<01:06, 15.9Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:04<01:05, 16.1Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:04<01:17, 13.6Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:05<01:06, 15.7Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:05<01:05, 16.0Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:05<01:05, 15.9Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:05<01:05, 15.9Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:05<01:05, 15.9Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:05<01:06, 15.6Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:05<01:17, 13.5Mbytes/s]
 62%|██████▏   | 1.73G/2.76G [02:05<01:05, 15.9Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:05<01:04, 15.9Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:06<01:05, 15.9Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:06<01:04, 15.9Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:06<01:05, 15.7Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:06<01:06, 15.4Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:06<01:15, 13.5Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:06<01:01, 16.6Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:06<01:07, 15.2Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:06<01:06, 15.4Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:06<01:06, 15.3Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:07<01:07, 15.1Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:07<01:07, 15.1Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:07<01:07, 15.0Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:07<01:08, 14.8Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:07<01:14, 13.6Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:07<01:02, 16.0Mbytes/s]
 64%|██████▎   | 1.75G/2.76G [02:07<01:07, 14.8Mbytes/s]
 64%|██████▎   | 1.76G/2.76G [02:07<01:07, 15.0Mbytes/s]
 64%|██████▎   | 1.76G/2.76G [02:08<01:06, 15.1Mbytes/s]
 64%|██████▎   | 1.76G/2.76G [02:08<01:12, 13.8Mbytes/s]
 64%|██████▍   | 1.76G/2.76G [02:08<01:20, 12.4Mbytes/s]
 64%|██████▍   | 1.76G/2.76G [02:08<01:34, 10.6Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:08<01:11, 13.9Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:08<01:13, 13.5Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:08<01:18, 12.7Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:09<01:03, 15.5Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:09<01:07, 14.7Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:09<01:04, 15.4Mbytes/s]
 64%|██████▍   | 1.78G/2.76G [02:09<01:05, 15.1Mbytes/s]
 64%|██████▍   | 1.78G/2.76G [02:09<01:20, 12.2Mbytes/s]
 64%|██████▍   | 1.78G/2.76G [02:09<01:18, 12.5Mbytes/s]
 65%|██████▍   | 1.78G/2.76G [02:09<01:04, 15.1Mbytes/s]
 65%|██████▍   | 1.78G/2.76G [02:09<01:08, 14.3Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:10<01:14, 13.1Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:10<01:01, 15.7Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:10<01:05, 14.9Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:10<01:11, 13.6Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:10<01:04, 15.0Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:10<01:02, 15.5Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:10<01:02, 15.4Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:11<01:02, 15.4Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:11<01:02, 15.4Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:11<01:02, 15.4Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:11<01:02, 15.3Mbytes/s]
 65%|██████▌   | 1.81G/2.76G [02:11<01:02, 15.2Mbytes/s]
 65%|██████▌   | 1.81G/2.76G [02:11<01:02, 15.3Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:11<01:03, 15.0Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:11<01:00, 15.8Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:11<01:01, 15.4Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:11<01:01, 15.5Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:12<01:02, 15.2Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:12<01:12, 13.0Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:12<01:01, 15.3Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:12<01:04, 14.6Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:12<00:59, 15.6Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:12<01:03, 14.8Mbytes/s]
 66%|██████▌   | 1.83G/2.76G [02:12<01:07, 13.8Mbytes/s]
 66%|██████▌   | 1.83G/2.76G [02:12<00:58, 16.0Mbytes/s]
 66%|██████▋   | 1.83G/2.76G [02:13<01:03, 14.7Mbytes/s]
 66%|██████▋   | 1.83G/2.76G [02:13<01:05, 14.2Mbytes/s]
 66%|██████▋   | 1.84G/2.76G [02:13<00:57, 16.2Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:13<01:02, 14.8Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:13<01:05, 14.2Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:13<00:59, 15.6Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:13<01:12, 12.6Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:14<01:20, 11.4Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:14<01:15, 12.1Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:14<01:08, 13.2Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:14<01:05, 13.8Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:14<01:03, 14.3Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:15<01:01, 14.5Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:15<01:01, 14.7Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:15<01:00, 14.8Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:15<00:59, 14.9Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:15<01:02, 14.2Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:16<01:03, 14.1Mbytes/s]
 68%|██████▊   | 1.88G/2.76G [02:16<01:01, 14.4Mbytes/s]
 68%|██████▊   | 1.88G/2.76G [02:16<00:59, 14.7Mbytes/s]
 68%|██████▊   | 1.88G/2.76G [02:16<00:58, 14.9Mbytes/s]
 68%|██████▊   | 1.89G/2.76G [02:16<00:58, 15.0Mbytes/s]
 68%|██████▊   | 1.89G/2.76G [02:17<00:52, 16.7Mbytes/s]
 69%|██████▊   | 1.89G/2.76G [02:17<00:52, 16.5Mbytes/s]
 69%|██████▊   | 1.89G/2.76G [02:17<01:00, 14.5Mbytes/s]
 69%|██████▊   | 1.90G/2.76G [02:17<00:59, 14.5Mbytes/s]
 69%|██████▉   | 1.90G/2.76G [02:17<00:58, 14.7Mbytes/s]
 69%|██████▉   | 1.90G/2.76G [02:17<00:57, 14.8Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:18<00:57, 15.0Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:18<00:56, 15.0Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:18<00:56, 15.0Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:18<00:56, 15.1Mbytes/s]
 69%|██████▉   | 1.92G/2.76G [02:19<00:55, 15.1Mbytes/s]
 70%|██████▉   | 1.92G/2.76G [02:19<00:55, 15.2Mbytes/s]
 70%|██████▉   | 1.92G/2.76G [02:19<00:55, 15.1Mbytes/s]
 70%|██████▉   | 1.93G/2.76G [02:19<00:54, 15.2Mbytes/s]
 70%|██████▉   | 1.93G/2.76G [02:19<00:54, 15.3Mbytes/s]
 70%|███████   | 1.93G/2.76G [02:20<00:54, 15.3Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:20<00:53, 15.3Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:20<00:53, 15.3Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:20<00:53, 15.2Mbytes/s]
 70%|███████   | 1.95G/2.76G [02:20<00:53, 15.2Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:21<00:53, 15.1Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:21<00:53, 15.2Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:21<00:52, 15.2Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:21<00:52, 15.3Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:21<00:51, 15.4Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:22<00:51, 15.4Mbytes/s]
 71%|███████▏  | 1.97G/2.76G [02:22<00:51, 15.4Mbytes/s]
 71%|███████▏  | 1.97G/2.76G [02:22<00:51, 15.5Mbytes/s]
 71%|███████▏  | 1.97G/2.76G [02:22<00:50, 15.6Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:22<00:50, 15.6Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:23<00:49, 15.6Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:23<00:49, 15.6Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:23<00:49, 15.6Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:23<00:49, 15.6Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:23<00:44, 17.1Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:23<00:50, 15.1Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:24<00:59, 12.9Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:24<01:00, 12.6Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:24<00:56, 13.4Mbytes/s]
 73%|███████▎  | 2.00G/2.76G [02:24<00:55, 13.8Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:24<00:54, 14.0Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:25<00:51, 14.6Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:25<00:45, 16.4Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:25<00:51, 14.4Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:25<00:51, 14.5Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:25<00:45, 16.5Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:25<00:51, 14.4Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:25<00:52, 14.2Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:26<00:45, 16.3Mbytes/s]
 73%|███████▎  | 2.03G/2.76G [02:26<00:52, 14.1Mbytes/s]
 73%|███████▎  | 2.03G/2.76G [02:26<00:51, 14.4Mbytes/s]
 74%|███████▎  | 2.03G/2.76G [02:26<00:44, 16.5Mbytes/s]
 74%|███████▎  | 2.03G/2.76G [02:26<00:51, 14.3Mbytes/s]
 74%|███████▎  | 2.03G/2.76G [02:26<00:49, 14.6Mbytes/s]
 74%|███████▎  | 2.04G/2.76G [02:26<00:43, 16.6Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:26<00:49, 14.5Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:27<00:49, 14.7Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:27<00:44, 16.2Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:27<00:50, 14.2Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:27<00:48, 14.6Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:27<00:44, 16.2Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:27<00:50, 14.2Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:27<00:47, 14.9Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:28<00:42, 16.4Mbytes/s]
 74%|███████▍  | 2.06G/2.76G [02:28<00:49, 14.3Mbytes/s]
 75%|███████▍  | 2.06G/2.76G [02:28<00:54, 12.9Mbytes/s]
 75%|███████▍  | 2.06G/2.76G [02:28<00:53, 13.0Mbytes/s]
 75%|███████▍  | 2.06G/2.76G [02:28<00:51, 13.6Mbytes/s]
 75%|███████▍  | 2.07G/2.76G [02:29<00:49, 13.9Mbytes/s]
 75%|███████▍  | 2.07G/2.76G [02:29<00:48, 14.1Mbytes/s]
 75%|███████▌  | 2.07G/2.76G [02:29<00:48, 14.3Mbytes/s]
 75%|███████▌  | 2.08G/2.76G [02:29<00:47, 14.5Mbytes/s]
 75%|███████▌  | 2.08G/2.76G [02:29<00:46, 14.7Mbytes/s]
 75%|███████▌  | 2.08G/2.76G [02:30<00:45, 14.9Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:30<00:45, 14.9Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:30<00:45, 14.9Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:30<00:45, 14.7Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:30<00:45, 14.8Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:31<00:44, 14.8Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:31<00:44, 14.8Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:31<00:44, 14.8Mbytes/s]
 76%|███████▋  | 2.11G/2.76G [02:31<00:43, 14.9Mbytes/s]
 76%|███████▋  | 2.11G/2.76G [02:31<00:43, 14.9Mbytes/s]
 77%|███████▋  | 2.11G/2.76G [02:32<00:43, 14.9Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:32<00:43, 15.0Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:32<00:42, 15.0Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:32<00:42, 15.0Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:32<00:42, 15.0Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:33<00:41, 15.1Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:33<00:35, 17.8Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:33<00:38, 16.2Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:33<00:42, 14.6Mbytes/s]
 77%|███████▋  | 2.14G/2.76G [02:33<00:38, 16.3Mbytes/s]
 77%|███████▋  | 2.14G/2.76G [02:33<00:39, 15.6Mbytes/s]
 78%|███████▊  | 2.14G/2.76G [02:33<00:44, 13.9Mbytes/s]
 78%|███████▊  | 2.14G/2.76G [02:34<00:42, 14.5Mbytes/s]
 78%|███████▊  | 2.14G/2.76G [02:34<00:42, 14.5Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:40, 15.1Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:41, 15.0Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:39, 15.4Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:40, 15.3Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:39, 15.4Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:39, 15.3Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:34<00:39, 15.3Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:34<00:40, 15.1Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:35<00:39, 15.3Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:35<00:50, 11.9Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:35<00:53, 11.2Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:35<00:51, 11.7Mbytes/s]
 78%|███████▊  | 2.17G/2.76G [02:35<00:37, 15.9Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:35<00:40, 14.5Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:35<00:45, 12.9Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:36<00:44, 13.2Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:36<00:35, 16.3Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:36<00:39, 15.0Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:36<00:47, 12.4Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:36<00:48, 12.0Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:37<00:45, 12.8Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:37<00:43, 13.4Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:37<00:41, 13.7Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:37<00:41, 13.7Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:37<00:41, 13.8Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:38<00:40, 14.0Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:38<00:39, 14.1Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:38<00:39, 14.1Mbytes/s]
 80%|███████▉  | 2.21G/2.76G [02:38<00:38, 14.2Mbytes/s]
 80%|████████  | 2.21G/2.76G [02:38<00:38, 14.4Mbytes/s]
 80%|████████  | 2.21G/2.76G [02:39<00:38, 14.4Mbytes/s]
 80%|████████  | 2.22G/2.76G [02:39<00:37, 14.4Mbytes/s]
 80%|████████  | 2.22G/2.76G [02:39<00:37, 14.5Mbytes/s]
 80%|████████  | 2.22G/2.76G [02:39<00:37, 14.5Mbytes/s]
 81%|████████  | 2.22G/2.76G [02:39<00:31, 17.3Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:39<00:33, 15.8Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:40<00:38, 13.9Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:40<00:38, 13.8Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:40<00:31, 16.6Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:40<00:34, 15.2Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:40<00:39, 13.4Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:40<00:39, 13.3Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:41<00:33, 15.7Mbytes/s]
 81%|████████▏ | 2.24G/2.76G [02:41<00:35, 14.6Mbytes/s]
 81%|████████▏ | 2.25G/2.76G [02:41<00:39, 13.0Mbytes/s]
 81%|████████▏ | 2.25G/2.76G [02:41<00:33, 15.3Mbytes/s]
 81%|████████▏ | 2.25G/2.76G [02:41<00:36, 14.2Mbytes/s]
 82%|████████▏ | 2.25G/2.76G [02:41<00:39, 12.8Mbytes/s]
 82%|████████▏ | 2.25G/2.76G [02:41<00:32, 15.5Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:41<00:35, 14.1Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:42<00:39, 12.7Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:42<00:33, 15.1Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:42<00:40, 12.3Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:42<00:45, 11.0Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:42<00:43, 11.5Mbytes/s]
 82%|████████▏ | 2.27G/2.76G [02:43<00:39, 12.4Mbytes/s]
 82%|████████▏ | 2.27G/2.76G [02:43<00:37, 13.1Mbytes/s]
 82%|████████▏ | 2.27G/2.76G [02:43<00:35, 13.6Mbytes/s]
 82%|████████▏ | 2.28G/2.76G [02:43<00:34, 14.0Mbytes/s]
 83%|████████▎ | 2.28G/2.76G [02:43<00:33, 14.3Mbytes/s]
 83%|████████▎ | 2.28G/2.76G [02:44<00:33, 14.4Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:44<00:32, 14.4Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:44<00:28, 16.6Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:44<00:30, 15.6Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:44<00:33, 13.8Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:44<00:29, 16.1Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:44<00:31, 15.0Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:45<00:34, 13.3Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:45<00:34, 13.3Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:45<00:28, 16.1Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:45<00:30, 14.9Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:45<00:34, 13.3Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:45<00:28, 16.1Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:45<00:30, 14.9Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:46<00:33, 13.3Mbytes/s]
 84%|████████▍ | 2.31G/2.76G [02:46<00:27, 16.3Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:46<00:29, 15.2Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:46<00:32, 13.4Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:46<00:27, 16.1Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:46<00:29, 14.9Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:46<00:33, 13.0Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:47<00:32, 13.4Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:47<00:31, 13.8Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:47<00:25, 16.8Mbytes/s]
 85%|████████▍ | 2.33G/2.76G [02:47<00:27, 15.4Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:47<00:31, 13.6Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:47<00:31, 13.4Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:48<00:26, 16.1Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:48<00:27, 14.9Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:48<00:31, 13.4Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:48<00:26, 15.7Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:48<00:31, 12.9Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:48<00:34, 11.9Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:48<00:37, 11.0Mbytes/s]
 85%|████████▌ | 2.36G/2.76G [02:49<00:33, 12.0Mbytes/s]
 85%|████████▌ | 2.36G/2.76G [02:49<00:31, 12.8Mbytes/s]
 86%|████████▌ | 2.36G/2.76G [02:49<00:30, 13.3Mbytes/s]
 86%|████████▌ | 2.36G/2.76G [02:49<00:24, 16.2Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:49<00:25, 15.3Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:49<00:29, 13.5Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:50<00:29, 13.4Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:50<00:23, 16.5Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:50<00:24, 15.6Mbytes/s]
 86%|████████▌ | 2.38G/2.76G [02:50<00:28, 13.7Mbytes/s]
 86%|████████▌ | 2.38G/2.76G [02:50<00:30, 12.6Mbytes/s]
 86%|████████▌ | 2.38G/2.76G [02:51<00:29, 12.7Mbytes/s]
 86%|████████▋ | 2.38G/2.76G [02:51<00:28, 13.3Mbytes/s]
 86%|████████▋ | 2.39G/2.76G [02:51<00:25, 14.7Mbytes/s]
 86%|████████▋ | 2.39G/2.76G [02:51<00:25, 14.6Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:51<00:26, 14.0Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:51<00:23, 15.9Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:51<00:26, 13.6Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:51<00:25, 14.1Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:52<00:22, 15.8Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:52<00:26, 13.8Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:52<00:24, 14.5Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:52<00:22, 15.8Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:52<00:23, 15.3Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:52<00:21, 16.5Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:52<00:25, 14.0Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:52<00:25, 13.9Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:53<00:22, 15.4Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:53<00:23, 14.9Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:53<00:20, 16.5Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:53<00:24, 13.8Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:53<00:24, 13.8Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:53<00:22, 15.3Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:53<00:22, 14.8Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:53<00:20, 16.4Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:54<00:23, 14.0Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:54<00:23, 14.1Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:54<00:21, 15.5Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:54<00:21, 15.0Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:54<00:20, 16.0Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:54<00:23, 13.9Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:54<00:22, 14.4Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:54<00:21, 15.0Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:55<00:21, 14.9Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:55<00:20, 15.3Mbytes/s]
 89%|████████▊ | 2.44G/2.76G [02:55<00:20, 15.1Mbytes/s]
 89%|████████▊ | 2.45G/2.76G [02:55<00:20, 15.5Mbytes/s]
 89%|████████▊ | 2.45G/2.76G [02:55<00:20, 15.3Mbytes/s]
 89%|████████▊ | 2.45G/2.76G [02:55<00:19, 15.7Mbytes/s]
 89%|████████▉ | 2.45G/2.76G [02:55<00:20, 15.3Mbytes/s]
 89%|████████▉ | 2.45G/2.76G [02:55<00:19, 15.8Mbytes/s]
 89%|████████▉ | 2.45G/2.76G [02:55<00:22, 13.7Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:56<00:20, 14.6Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:56<00:19, 15.2Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:56<00:20, 14.9Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:56<00:19, 15.6Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:56<00:20, 14.8Mbytes/s]
 89%|████████▉ | 2.47G/2.76G [02:56<00:25, 11.5Mbytes/s]
 89%|████████▉ | 2.47G/2.76G [02:56<00:28, 10.3Mbytes/s]
 89%|████████▉ | 2.47G/2.76G [02:57<00:24, 11.9Mbytes/s]
 90%|████████▉ | 2.47G/2.76G [02:57<00:23, 12.2Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:57<00:22, 12.7Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:57<00:21, 13.4Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:57<00:20, 13.8Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:58<00:19, 14.1Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:58<00:18, 14.4Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:58<00:18, 14.5Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:58<00:16, 16.6Mbytes/s]
 90%|█████████ | 2.50G/2.76G [02:58<00:16, 15.7Mbytes/s]
 90%|█████████ | 2.50G/2.76G [02:58<00:18, 13.9Mbytes/s]
 91%|█████████ | 2.50G/2.76G [02:59<00:18, 14.0Mbytes/s]
 91%|█████████ | 2.50G/2.76G [02:59<00:17, 14.4Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:59<00:17, 14.8Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:59<00:14, 17.1Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:59<00:15, 16.0Mbytes/s]
 91%|█████████ | 2.51G/2.76G [03:00<00:17, 14.2Mbytes/s]
 91%|█████████ | 2.52G/2.76G [03:00<00:14, 16.7Mbytes/s]
 91%|█████████ | 2.52G/2.76G [03:00<00:15, 15.5Mbytes/s]
 91%|█████████ | 2.52G/2.76G [03:00<00:17, 13.6Mbytes/s]
 91%|█████████▏| 2.52G/2.76G [03:00<00:14, 16.6Mbytes/s]
 91%|█████████▏| 2.52G/2.76G [03:00<00:15, 15.5Mbytes/s]
 91%|█████████▏| 2.52G/2.76G [03:00<00:17, 13.8Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [03:00<00:14, 16.6Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [03:01<00:15, 15.4Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [03:01<00:16, 13.7Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [03:01<00:13, 16.4Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [03:01<00:14, 15.3Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [03:01<00:16, 13.6Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [03:01<00:13, 16.8Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [03:01<00:14, 15.5Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [03:02<00:15, 13.7Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [03:02<00:12, 16.8Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [03:02<00:13, 15.4Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [03:02<00:16, 12.6Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [03:02<00:19, 11.0Mbytes/s]
 93%|█████████▎| 2.55G/2.76G [03:02<00:16, 12.5Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [03:03<00:15, 13.4Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [03:03<00:14, 14.0Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [03:03<00:13, 14.4Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [03:03<00:13, 14.8Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [03:03<00:12, 15.0Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [03:04<00:12, 15.1Mbytes/s]
 93%|█████████▎| 2.58G/2.76G [03:04<00:12, 15.2Mbytes/s]
 93%|█████████▎| 2.58G/2.76G [03:04<00:11, 15.3Mbytes/s]
 94%|█████████▎| 2.58G/2.76G [03:04<00:11, 15.3Mbytes/s]
 94%|█████████▎| 2.59G/2.76G [03:04<00:11, 15.4Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [03:05<00:11, 15.5Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [03:05<00:10, 15.5Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [03:05<00:10, 15.4Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [03:05<00:10, 15.3Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [03:05<00:10, 15.3Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [03:06<00:10, 15.2Mbytes/s]
 94%|█████████▍| 2.61G/2.76G [03:06<00:10, 15.3Mbytes/s]
 95%|█████████▍| 2.61G/2.76G [03:06<00:08, 17.0Mbytes/s]
 95%|█████████▍| 2.61G/2.76G [03:06<00:10, 14.7Mbytes/s]
 95%|█████████▍| 2.61G/2.76G [03:06<00:11, 12.9Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:07<00:10, 13.6Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:07<00:09, 14.2Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:07<00:09, 14.6Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:07<00:07, 17.0Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:07<00:08, 16.4Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:07<00:09, 13.5Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:08<00:11, 11.6Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:08<00:10, 12.6Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:08<00:09, 13.7Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:08<00:08, 14.4Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:08<00:07, 14.8Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:09<00:07, 15.1Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:09<00:07, 15.2Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:09<00:07, 15.1Mbytes/s]
 96%|█████████▌| 2.66G/2.76G [03:09<00:07, 15.0Mbytes/s]
 96%|█████████▋| 2.66G/2.76G [03:09<00:06, 15.1Mbytes/s]
 96%|█████████▋| 2.66G/2.76G [03:10<00:06, 15.2Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:10<00:06, 15.2Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:10<00:06, 15.3Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:10<00:04, 18.0Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:10<00:05, 16.1Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:10<00:05, 14.9Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:11<00:05, 16.0Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:11<00:05, 15.1Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:11<00:05, 13.9Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:11<00:04, 15.8Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:11<00:05, 14.8Mbytes/s]
 97%|█████████▋| 2.69G/2.76G [03:11<00:05, 13.7Mbytes/s]
 97%|█████████▋| 2.69G/2.76G [03:11<00:04, 15.4Mbytes/s]
 97%|█████████▋| 2.69G/2.76G [03:11<00:04, 14.5Mbytes/s]
 98%|█████████▊| 2.69G/2.76G [03:12<00:05, 13.7Mbytes/s]
 98%|█████████▊| 2.69G/2.76G [03:12<00:04, 15.7Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:12<00:04, 14.8Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:12<00:04, 14.0Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:12<00:03, 16.0Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:12<00:03, 15.2Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:12<00:03, 14.2Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:13<00:03, 16.3Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:13<00:03, 15.4Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:13<00:03, 14.5Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:13<00:02, 16.5Mbytes/s]
 98%|█████████▊| 2.72G/2.76G [03:13<00:02, 15.5Mbytes/s]
 98%|█████████▊| 2.72G/2.76G [03:13<00:03, 14.3Mbytes/s]
 99%|█████████▊| 2.72G/2.76G [03:13<00:02, 16.5Mbytes/s]
 99%|█████████▊| 2.72G/2.76G [03:14<00:02, 15.5Mbytes/s]
 99%|█████████▊| 2.72G/2.76G [03:14<00:02, 14.5Mbytes/s]
 99%|█████████▊| 2.73G/2.76G [03:14<00:02, 16.5Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:14<00:02, 15.5Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:14<00:02, 14.4Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:14<00:01, 16.5Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:14<00:01, 15.3Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:14<00:01, 14.4Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:15<00:01, 15.6Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:15<00:01, 15.2Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:15<00:01, 15.8Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:15<00:01, 14.9Mbytes/s]
 99%|█████████▉| 2.75G/2.76G [03:15<00:01, 14.2Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:15<00:00, 15.7Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:15<00:00, 15.2Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:15<00:00, 16.6Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:16<00:00, 14.5Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:16<00:00, 14.1Mbytes/s]
100%|█████████▉| 2.76G/2.76G [03:16<00:00, 15.7Mbytes/s]
100%|█████████▉| 2.76G/2.76G [03:16<00:00, 15.1Mbytes/s]
100%|█████████▉| 2.76G/2.76G [03:16<00:00, 16.8Mbytes/s]
100%|██████████| 2.76G/2.76G [03:16<00:00, 14.0Mbytes/s]
%%bash
set -e

echo "Counting refreshed Level-2 .gfeat directories across the sample ..."
find ~/trust_example_higherlevel/refreshed_2525/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | wc -l

echo
echo "Showing a few refreshed Level-2 input paths ..."
find ~/trust_example_higherlevel/refreshed_2525/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | sort | head -5
Counting refreshed Level-2 .gfeat directories across the sample ...
48

Showing a few refreshed Level-2 input paths ...
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L2_task-trust_model-01
_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-105/L
2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/refreshed_2525/deri
vatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherleve
l/refreshed_2525/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tru
st_example_higherlevel/refreshed_2525/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.g
feat

We now rerender the same one-group Level-3 template so that BASEDIR points to the refreshed derivative tree. This lets us keep the original example intact while also showing how the group result changes when the Level-2 inputs are regenerated appropriately.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
REFRESH_ROOT="$EXAMPLE_DIR/refreshed_2525"
REFRESH_DERIV_DIR="$REFRESH_ROOT/derivatives/fsl"

ITEMPLATE_ONE="$EXAMPLE_DIR/templates/L3_template_n48_trust_onegroup.fsf"
OTEMPLATE_ONE="$REFRESH_DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.fsf"
OUTPUT_ONE="$REFRESH_DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525"

sed \
  -e "s@OUTPUT@${OUTPUT_ONE}@g" \
  -e "s@BASEDIR@${REFRESH_ROOT}@g" \
  -e "s@REPLACEME@type-act@g" \
  -e "s@COPENUM@10@g" \
  < "$ITEMPLATE_ONE" > "$OTEMPLATE_ONE"

echo "Rendered refreshed template:"
echo "  $OTEMPLATE_ONE"
Rendered refreshed template:
  /home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-
act_cope10_onegroup_fmriprep2525.fsf
!grep -E 'outputdir|feat_files\(1\)|feat_files\(48\)|conname_real' ~/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.fsf
set fmri(outputdir) "/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525"
set feat_files(1) "/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set feat_files(48) "/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-159/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set fmri(conname_real.1) "pos"
set fmri(conname_real.2) "neg"

Now rerun FEAT on the refreshed Level-3 template. This is the same FEAT logic as before. The only thing that changes is the shared Level-2 derivative tree that feeds the group model.

%%bash
set -e

REFRESH_DERIV_DIR="$HOME/trust_example_higherlevel/refreshed_2525/derivatives/fsl"

rm -rf "${REFRESH_DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat"
rm -rf "${REFRESH_DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525+"*.gfeat
rm -rf "${REFRESH_DERIV_DIR}/logs"

echo "Removed any previous refreshed Level-3 derivatives."
Removed any previous refreshed Level-3 derivatives.
%%bash
set -e

ONEGROUP_FSF="$HOME/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.fsf"

feat "$ONEGROUP_FSF"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example_hig
herlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525
.gfeat/report_log.html

11. Review the refreshed Level-3 output#

After rerunning the group model with the refreshed Level-2 derivatives, we want to check two things:

  1. the expected Level-3 outputs exist in the refreshed derivative tree

  2. the one-group reciprocate > defect result now looks much more like the ventral striatal effect we expected

For this notebook, that single refreshed map is enough to make the main teaching point.

refreshed_onegroup_dir = EXAMPLE_DIR / "refreshed_2525" / "derivatives" / "fsl" / "L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat"

for rel in [
    "report.html",
    "cope1.feat",
    "cope1.feat/mask.nii.gz",
    "cope1.feat/thresh_zstat1.nii.gz",
]:
    p = refreshed_onegroup_dir / rel
    print(f"{p}: {p.exists()}")
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/report.html: True
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat: True
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat/mask.nii.gz: True
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat/thresh_zstat1.nii.gz: True

The refreshed visualization below repeats the same contrast as before: cope10 (reciprocate > defect). The important difference is that the shared Level-2 inputs were rebuilt after rerunning preprocessing with fMRIPrep 25.2.5. This time, the group map should reveal the expected ventral striatal activation much more clearly.

from ipyniivue import NiiVue

zmap = refreshed_onegroup_dir / "cope1.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", group_bg is not None, group_bg)
print("Contrast exists:", zmap.exists(), zmap)

if group_bg is not None and zmap.exists():
    zdata = nib.load(str(zmap)).get_fdata()
    zmax = float(np.nanmax(zdata))
    print("Max thresholded value:", zmax)

    if zmax > 0:
        bg_data = nib.load(str(group_bg)).get_fdata()
        bg_nonzero = bg_data[bg_data > 0]
        lo = float(np.percentile(bg_nonzero, 2))
        hi = float(np.percentile(bg_nonzero, 98))

        nv = NiiVue()
        nv.load_volumes([
            {
                "path": str(group_bg),
                "name": "MNI152_T1_2mm_brain",
                "colormap": "gray",
                "opacity": 1.0,
                "cal_min": lo,
                "cal_max": hi,
            },
            {
                "path": str(zmap),
                "name": "refreshed mean_pos",
                "colormap": "red",
                "opacity": 0.75,
            },
        ])
        display(nv)
    else:
        print("The thresholded map contains no voxels above zero, so we skip plotting it.")
else:
    print("Could not find the MNI background or the refreshed thresholded group map.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat/thresh_zstat1.nii.gz
Max thresholded value: 6.677373886108398

If you want to generalize this notebook later, the main changes are still straightforward:

  • change the participant whose Level-1 runs you rerender at Level 2

  • change the lower-level cope number you want to carry forward to Level 3

  • change the refreshed archive filename if the OSF file changes

  • keep the old and refreshed derivative trees separate so the teachable comparison stays explicit

  • and, most importantly, check the mask before you interpret the activation

12. Dependencies in Jupyter/Python#

  • Using the package watermark to document system environment and software versions used in this notebook, alongside the Neurodesktop version extracted from the JUPYTER_IMAGE or NEURODESKTOP_VERSION environment variables.

import os

%load_ext watermark

%watermark
%watermark --iversions

neurodesktop_version = (
    os.environ.get('JUPYTER_IMAGE', '').split(':')[-1] or
    os.environ.get('NEURODESKTOP_VERSION', 'unknown')
)

print(f"Neurodesktop version: {neurodesktop_version}")
Last updated: 2026-08-20T02:37:22.230890+00:00

Python implementation: CPython
Python version       : 3.13.14
IPython version      : 9.12.0

Compiler    : GCC 14.3.0
OS          : Linux
Release     : 6.8.0-111-generic
Machine     : x86_64
Processor   : x86_64
CPU cores   : 16
Architecture: 64bit

IPython  : 9.12.0
ipyniivue: 2.4.4
nibabel  : 5.4.2
numpy    : 2.5.1

Neurodesktop version: 2026-07-11