Skip to content

Console Output

Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on sos-builder01-ubuntu18 (lin) in workspace /builds/workspace/astor
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/SpoonLabs/astor.git
 > git init /builds/workspace/astor # timeout=10
Fetching upstream changes from https://github.com/SpoonLabs/astor.git
 > git --version # timeout=10
 > git --version # 'git version 2.17.1'
 > git fetch --tags --progress -- https://github.com/SpoonLabs/astor.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/SpoonLabs/astor.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
Checking out Revision 07e062982e2153e4b818bed2f1b9584a61e2a693 (refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 07e062982e2153e4b818bed2f1b9584a61e2a693 # timeout=10
Commit message: "add explanation about no source code generated (#366)"
 > git rev-list --no-walk 07e062982e2153e4b818bed2f1b9584a61e2a693 # timeout=10
[astor] $ /bin/sh -xe /tmp/jenkins6103395280822203020.sh
+ curl https://spoon.gforge.inria.fr/jenkins/inject_spoon_snapshot.py
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  2376  100  2376    0     0  10800      0 --:--:-- --:--:-- --:--:-- 10800
100  2376  100  2376    0     0  10153      0 --:--:-- --:--:-- --:--:-- 10153
+ python3 -c #! /bin/python3
"""Script for injecting the latest SNAPSHOT version of Spoon into all pom.xml
files it finds in the curren tworking directory or any subdirectory.

Requires the ``defusedxml`` package to be installed separately.

This script is compatible with Python 3.5+
"""
import xml.etree.ElementTree as ET
import subprocess
import pathlib

from typing import Optional

SPOON_SNAPSHOT_REPO = """
<repository>
    <id>spoon-snapshot-repo</id>
    <name>Maven Repository for Spoon Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    <snapshots/>
</repository>
"""
MAVEN_NAMESPACE = "http://maven.apache.org/POM/4.0.0"
NAMESPACES = {"": MAVEN_NAMESPACE}

MAVEN_VERSIONS_COMMAND = "mvn -B -U versions:use-latest-versions -DallowSnapshots -Dincludes=fr.inria.gforge.spoon".split()
PURGE_LOCAL_REPO_COMMAND = "mvn -B -U dependency:purge-local-repository -DmanualInclude='fr.inria.gforge.spoon:spoon-core' -DsnapshotsOnly=true".split()


def main():
    ET.register_namespace("", MAVEN_NAMESPACE)
    pom_file = pathlib.Path("pom.xml")
    inject_snapshot_repo(pom_file)
    subprocess.run(MAVEN_VERSIONS_COMMAND, cwd=str(pom_file.parent))
    subprocess.run(PURGE_LOCAL_REPO_COMMAND, cwd=str(pom_file.parent))


def inject_snapshot_repo(pom_file: pathlib.Path) -> None:
    tree = ET.parse(str(pom_file))
    root = tree.getroot()

    repositories = root.find(in_maven_namespace("repositories"))
    if not repositories:
        repositories = ET.fromstring("<repositories></repositories>")
        root.append(repositories)

    snapshot_repo = ET.fromstring(SPOON_SNAPSHOT_REPO)
    snapshot_repo_url = snapshot_repo.find("url").text

    for repo in repositories.findall(in_maven_namespace("repository")):
        url = repo.find(in_maven_namespace("url")).text
        if url == snapshot_repo_url:
            return

    repositories.append(snapshot_repo)

    tree.write(str(pom_file))


def in_maven_namespace(tag: str) -> str:
    """Wrap the tag in the default Maven namespace.

    If porting this script to Python 3.6+, then this method can be removed and
    one can instead search with a default namespace like so:

    someElement.find(tag, namespaces={"": MAVEN_NAMESPACE})

    This does not appear to work in Python 3.5
    """
    return "{{{}}}{}".format(MAVEN_NAMESPACE, tag)


if __name__ == "__main__":
    main()
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for org.inria.sacha.automaticRepair:astor:jar:2.0.0
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-surefire-plugin @ line 346, column 12
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:build-helper-maven-plugin is missing. @ line 321, column 12
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 192, column 8
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/maven-metadata.xml (915 B at 712 B/s)
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 74 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 105 kB/s)
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml (1.2 kB at 24 kB/s)
[INFO] 
[INFO] ---------------< org.inria.sacha.automaticRepair:astor >----------------
[INFO] Building ASTOR 2.0.0
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- versions-maven-plugin:2.16.2:use-latest-versions (default-cli) @ astor ---
[INFO] Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from EvoSuite: http://www.evosuite.org/m2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloaded from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (881 B at 1.7 kB/s)
[INFO] Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 358 B/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (11 kB at 123 kB/s)
[INFO] Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 795 B/s)
[WARNING] Could not transfer metadata fr.inria.gforge.spoon:spoon-core/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml 500 Internal Server Error
[INFO] Updated fr.inria.gforge.spoon:spoon-core:jar:9.2.0-beta-1 to version 11.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  10.018 s
[INFO] Finished at: 2024-05-07T12:35:06+02:00
[INFO] ------------------------------------------------------------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for org.inria.sacha.automaticRepair:astor:jar:2.0.0
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-surefire-plugin @ line 346, column 12
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:build-helper-maven-plugin is missing. @ line 321, column 12
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 192, column 8
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/maven-metadata.xml (915 B at 1.8 kB/s)
[INFO] 
[INFO] ---------------< org.inria.sacha.automaticRepair:astor >----------------
[INFO] Building ASTOR 2.0.0
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:purge-local-repository (default-cli) @ astor ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  5.067 s
[INFO] Finished at: 2024-05-07T12:35:13+02:00
[INFO] ------------------------------------------------------------------------
+ cd examples/math_70
+ mvn clean test -DskipTests
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for org.apache.commons:commons-math:jar:2.2-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-idea-plugin is missing. @ org.apache.commons:commons-parent:15, /builds/.m2/repository/org/apache/commons/commons-parent/15/commons-parent-15.pom, line 329, column 15
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ------------------< org.apache.commons:commons-math >-------------------
[INFO] Building Commons Math 2.2-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.4:clean (default-clean) @ commons-math ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.3:run (javadoc.resources) @ commons-math ---
[INFO] Executing tasks
     [copy] Copying 2 files to /builds/workspace/astor/examples/math_70/target/apidocs/META-INF
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.0:process (default) @ commons-math ---
[INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[INFO] Setting property: velocimacro.messages.on => 'false'.
[INFO] Setting property: resource.loader => 'classpath'.
[INFO] Setting property: resource.manager.logwhenfound => 'false'.
[INFO] 
[INFO] --- maven-resources-plugin:2.4.1:resources (default-resources) @ commons-math ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources to META-INF
[INFO] 
[INFO] --- maven-compiler-plugin:2.1:compile (default-compile) @ commons-math ---
[INFO] Compiling 414 source files to /builds/workspace/astor/examples/math_70/target/classes
[INFO] 
[INFO] --- maven-bundle-plugin:1.4.3:manifest (bundle-manifest) @ commons-math ---
[INFO] 
[INFO] --- maven-resources-plugin:2.4.1:testResources (default-testResources) @ commons-math ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 11 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.1:testCompile (default-testCompile) @ commons-math ---
[INFO] Compiling 270 source files to /builds/workspace/astor/examples/math_70/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.5:test (default-test) @ commons-math ---
[INFO] Tests are skipped.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  31.601 s
[INFO] Finished at: 2024-05-07T12:35:47+02:00
[INFO] ------------------------------------------------------------------------
+ cd ../..
+ mvn versions:use-latest-versions -DallowSnapshots=true -Dincludes=com.github.spoonlabs
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for org.inria.sacha.automaticRepair:astor:jar:2.0.0
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-surefire-plugin @ line 346, column 12
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:build-helper-maven-plugin is missing. @ line 321, column 12
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 192, column 8
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ---------------< org.inria.sacha.automaticRepair:astor >----------------
[INFO] Building ASTOR 2.0.0
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- versions-maven-plugin:2.16.2:use-latest-versions (default-cli) @ astor ---
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from EvoSuite: http://www.evosuite.org/m2/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/maven-metadata.xml
Progress (1): 627 B
                   
Downloading from central: https://repo.maven.apache.org/maven2/com/github/spoonlabs/flacoco/maven-metadata.xml
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/maven-metadata.xml (627 B at 631 B/s)
Progress (1): 627 B
Progress (2): 627 B | 520 B
                           
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/maven-metadata.xml (627 B at 1.5 kB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/com/github/spoonlabs/flacoco/maven-metadata.xml (520 B at 1.3 kB/s)
[WARNING] Could not transfer metadata com.github.spoonlabs:flacoco/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/com/github/spoonlabs/flacoco/maven-metadata.xml 500 Internal Server Error
[INFO] Updated com.github.spoonlabs:flacoco:jar:1.0.5 to version 1.0.7-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  4.859 s
[INFO] Finished at: 2024-05-07T12:35:55+02:00
[INFO] ------------------------------------------------------------------------
+ mvn clean test -DskipTests
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for org.inria.sacha.automaticRepair:astor:jar:2.0.0
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-surefire-plugin @ line 346, column 12
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:build-helper-maven-plugin is missing. @ line 321, column 12
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 192, column 8
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ---------------< org.inria.sacha.automaticRepair:astor >----------------
[INFO] Building ASTOR 2.0.0
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from EvoSuite: http://www.evosuite.org/m2/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml
Progress (1): 1.0 kB
                    
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml (1.0 kB at 945 B/s)
Progress (1): 1.0 kB
                    
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml (1.0 kB at 2.7 kB/s)
[WARNING] Could not transfer metadata com.github.spoonlabs:flacoco:1.0.7-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
[WARNING] Failure to transfer com.github.spoonlabs:flacoco:1.0.7-SNAPSHOT/maven-metadata.xml from http://maven.inria.fr/artifactory/spoon-public-snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of maven.inria.fr-snapshot has elapsed or updates are forced. Original error: Could not transfer metadata com.github.spoonlabs:flacoco:1.0.7-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/flacoco-1.0.7-20240222.122318-16.pom
Progress (1): 4.1/11 kB
Progress (1): 7.8/11 kB
Progress (1): 11 kB    
                   
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/flacoco-1.0.7-20240222.122318-16.pom (11 kB at 45 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from EvoSuite: http://www.evosuite.org/m2/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 1.4 kB
                    
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 4.8 kB/s)
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 1.4 kB
                    
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 8.2 kB/s)
[WARNING] Could not transfer metadata fr.inria.gforge.spoon:spoon-core:11.0.1-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
[WARNING] Failure to transfer fr.inria.gforge.spoon:spoon-core:11.0.1-SNAPSHOT/maven-metadata.xml from http://maven.inria.fr/artifactory/spoon-public-snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of maven.inria.fr-snapshot has elapsed or updates are forced. Original error: Could not transfer metadata fr.inria.gforge.spoon:spoon-core:11.0.1-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom
Progress (1): 4.1/9.6 kB
Progress (1): 7.8/9.6 kB
Progress (1): 9.6 kB    
                    
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom (9.6 kB at 43 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from EvoSuite: http://www.evosuite.org/m2/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 609 B
                   
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml (609 B at 2.9 kB/s)
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 609 B
                   
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml (609 B at 3.3 kB/s)
[WARNING] Could not transfer metadata fr.inria.gforge.spoon:spoon-pom:11.0.1-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240507.010545-1.pom
Progress (1): 4.1/25 kB
Progress (1): 7.8/25 kB
Progress (1): 12/25 kB 
Progress (1): 16/25 kB
Progress (1): 20/25 kB
Progress (1): 24/25 kB
Progress (1): 25 kB   
                   
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240507.010545-1.pom (25 kB at 91 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom
Progress (1): 2.5 kB
                    
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.pom (2.5 kB at 21 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom
Progress (1): 1.3 kB
                    
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.pom (1.3 kB at 22 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom
Progress (1): 2.8/20 kB
Progress (1): 5.5/20 kB
Progress (1): 8.3/20 kB
Progress (1): 11/20 kB 
Progress (1): 14/20 kB
Progress (1): 17/20 kB
Progress (1): 20 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom (20 kB at 185 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/apache/commons/commons-parent/69/commons-parent-69.pom
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom
Progress (1): 2.8/77 kB
Progress (1): 5.5/77 kB
Progress (1): 8.3/77 kB
Progress (1): 11/77 kB 
Progress (1): 14/77 kB
Progress (1): 18/77 kB
Progress (1): 22/77 kB
Progress (1): 26/77 kB
Progress (1): 30/77 kB
Progress (1): 34/77 kB
Progress (1): 38/77 kB
Progress (1): 42/77 kB
Progress (1): 47/77 kB
Progress (1): 51/77 kB
Progress (1): 55/77 kB
Progress (1): 59/77 kB
Progress (1): 63/77 kB
Progress (1): 67/77 kB
Progress (1): 71/77 kB
Progress (1): 75/77 kB
Progress (1): 77 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom (77 kB at 550 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom
Progress (1): 4.1/5.6 kB
Progress (1): 5.6 kB    
                    
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom (5.6 kB at 91 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom
Progress (1): 4.1/21 kB
Progress (1): 8.2/21 kB
Progress (1): 12/21 kB 
Progress (1): 16/21 kB
Progress (1): 20/21 kB
Progress (1): 21 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.pom (21 kB at 244 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom
Progress (1): 4.1/12 kB
Progress (1): 8.2/12 kB
Progress (1): 12 kB    
                   
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.17.1/jackson-base-2.17.1.pom (12 kB at 163 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom
Progress (1): 4.1/19 kB
Progress (1): 8.2/19 kB
Progress (1): 12/19 kB 
Progress (1): 16/19 kB
Progress (1): 19 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.17.1/jackson-bom-2.17.1.pom (19 kB at 267 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom
Progress (1): 4.1/6.5 kB
Progress (1): 6.5 kB    
                    
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom (6.5 kB at 93 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/oss-parent/58/oss-parent-58.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/58/oss-parent-58.pom
Progress (1): 4.1/24 kB
Progress (1): 8.2/24 kB
Progress (1): 12/24 kB 
Progress (1): 16/24 kB
Progress (1): 20/24 kB
Progress (1): 24 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/58/oss-parent-58.pom (24 kB at 415 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom
Progress (1): 4.1/7.1 kB
Progress (1): 7.1 kB    
                    
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.pom (7.1 kB at 128 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom
Progress (1): 4.1/9.6 kB
Progress (1): 8.2/9.6 kB
Progress (1): 9.6 kB    
                    
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.pom (9.6 kB at 148 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
Progress (1): 4.1/22 kB
Progress (1): 8.2/22 kB
Progress (1): 12/22 kB 
Progress (1): 16/22 kB
Progress (1): 20/22 kB
Progress (1): 22 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom (22 kB at 294 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/apache/commons/commons-parent/66/commons-parent-66.pom
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/66/commons-parent-66.pom
Progress (1): 4.1/77 kB
Progress (1): 8.2/77 kB
Progress (1): 12/77 kB 
Progress (1): 16/77 kB
Progress (1): 20/77 kB
Progress (1): 25/77 kB
Progress (1): 29/77 kB
Progress (1): 33/77 kB
Progress (1): 37/77 kB
Progress (1): 41/77 kB
Progress (1): 45/77 kB
Progress (1): 49/77 kB
Progress (1): 53/77 kB
Progress (1): 57/77 kB
Progress (1): 61/77 kB
Progress (1): 66/77 kB
Progress (1): 70/77 kB
Progress (1): 74/77 kB
Progress (1): 77 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/66/commons-parent-66.pom (77 kB at 755 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from EvoSuite: http://www.evosuite.org/m2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
Progress (1): 4.1/16 kB
Progress (1): 8.2/16 kB
Progress (1): 12/16 kB 
Progress (1): 16 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom (16 kB at 218 kB/s)
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from EvoSuite: http://www.evosuite.org/m2/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Progress (1): 1.0 kB
                    
Downloaded from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml (1.0 kB at 1.6 kB/s)
[WARNING] Could not transfer metadata fil.iagl.cocospoon:CocoSpoon:1.0.0-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
[WARNING] Failure to transfer fil.iagl.cocospoon:CocoSpoon:1.0.0-SNAPSHOT/maven-metadata.xml from http://maven.inria.fr/artifactory/spoon-public-snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of maven.inria.fr-snapshot has elapsed or updates are forced. Original error: Could not transfer metadata fil.iagl.cocospoon:CocoSpoon:1.0.0-SNAPSHOT/maven-metadata.xml from/to maven.inria.fr-snapshot (http://maven.inria.fr/artifactory/spoon-public-snapshot/): Transfer failed for http://maven.inria.fr/artifactory/spoon-public-snapshot/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml 500 Internal Server Error
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/flacoco-1.0.7-20240222.122318-16.jar
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.jar
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Progress (1): 4.1/88 kB
Progress (1): 7.8/88 kB
                       
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Progress (1): 12/88 kB
                      
Downloading from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Progress (2): 12/88 kB | 0/1.9 MB
Progress (2): 12/88 kB | 0/1.9 MB
Progress (2): 16/88 kB | 0/1.9 MB
Progress (2): 20/88 kB | 0/1.9 MB
                                 
Progress (2): 24/88 kB | 0/1.9 MB
Progress (2): 28/88 kB | 0/1.9 MB
Progress (2): 32/88 kB | 0/1.9 MB
Progress (2): 37/88 kB | 0/1.9 MB
Progress (2): 41/88 kB | 0/1.9 MB
Progress (2): 45/88 kB | 0/1.9 MB
Progress (2): 49/88 kB | 0/1.9 MB
Progress (2): 53/88 kB | 0/1.9 MB
Progress (2): 57/88 kB | 0/1.9 MB
                                 
Progress (2): 57/88 kB | 0/1.9 MB
Progress (2): 57/88 kB | 0/1.9 MB
Progress (2): 57/88 kB | 0.1/1.9 MB
Progress (2): 57/88 kB | 0.1/1.9 MB
Progress (2): 57/88 kB | 0.1/1.9 MB
Progress (2): 57/88 kB | 0.1/1.9 MB
Progress (2): 61/88 kB | 0.1/1.9 MB
Progress (2): 65/88 kB | 0.1/1.9 MB
Progress (2): 69/88 kB | 0.1/1.9 MB
Progress (2): 73/88 kB | 0.1/1.9 MB
Progress (2): 77/88 kB | 0.1/1.9 MB
Progress (2): 82/88 kB | 0.1/1.9 MB
Progress (2): 86/88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB   
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.1/1.9 MB
Progress (2): 88 kB | 0.2/1.9 MB
Progress (2): 88 kB | 0.2/1.9 MB
Progress (2): 88 kB | 0.2/1.9 MB
                                
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/github/spoonlabs/flacoco/1.0.7-SNAPSHOT/flacoco-1.0.7-20240222.122318-16.jar (88 kB at 139 kB/s)
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9 MB    
                    
Downloaded from sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.jar (1.9 MB at 1.1 MB/s)
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Downloading from inria: http://spoon.gforge.inria.fr/repositories/releases/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Downloading from EvoSuite: http://www.evosuite.org/m2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Downloading from sachaproject.gforge.inria.fr-release: http://sachaproject.gforge.inria.fr/repositories/releases/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Downloading from maven.inria.fr-snapshot: http://maven.inria.fr/artifactory/spoon-public-snapshot/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar
Progress (1): 0/4.3 MB
Progress (1): 0/4.3 MB
Progress (1): 0.1/4.3 MB
Progress (1): 0.1/4.3 MB
Progress (2): 0.1/4.3 MB | 0/3.3 MB
Progress (2): 0.1/4.3 MB | 0/3.3 MB
Progress (2): 0.1/4.3 MB | 0/3.3 MB
Progress (2): 0.1/4.3 MB | 0/3.3 MB
Progress (3): 0.1/4.3 MB | 0/3.3 MB | 0/1.6 MB
Progress (3): 0.1/4.3 MB | 0/3.3 MB | 0/1.6 MB
Progress (3): 0.1/4.3 MB | 0/3.3 MB | 0/1.6 MB
Progress (3): 0.2/4.3 MB | 0/3.3 MB | 0/1.6 MB
Progress (3): 0.2/4.3 MB | 0/3.3 MB | 0/1.6 MB
Progress (3): 0.2/4.3 MB | 0/3.3 MB | 0/1.6 MB
Progress (3): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB
Progress (3): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB
Progress (3): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 4.1/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 8.2/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 12/78 kB 
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 16/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 20/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 25/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 25/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0/1.6 MB | 25/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 25/78 kB
Progress (4): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 25/78 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 25/78 kB | 2.8/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 25/78 kB | 2.8/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 29/78 kB | 2.8/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 2.8/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 2.8/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 2.8/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 5.5/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 8.3/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 11/582 kB 
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 33/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 37/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 41/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 45/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 49/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 53/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 57/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 61/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 66/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 70/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 74/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78/78 kB | 14/582 kB
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB   
Progress (5): 0.2/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.3/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.3/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.3/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.3/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.4/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.4/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.4/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 14/582 kB
Progress (5): 0.4/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 17/582 kB
Progress (5): 0.4/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.1/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.1/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.2/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
Progress (5): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 78 kB | 19/582 kB
                                                                      
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.17.1/jackson-annotations-2.17.1.jar (78 kB at 420 kB/s)
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 22/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 25/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 28/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 30/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 33/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 36/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 40/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 44/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 48/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 52/582 kB
                                                              
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 52/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 56/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 60/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 65/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.4/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.2/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 69/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 73/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 77/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 81/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 85/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 89/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 93/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 97/582 kB
Progress (4): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 101/582 kB
Progress (5): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.3/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.5/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 101/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 105/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 105/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 105/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 105/582 kB | 0/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 105/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 105/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 110/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 114/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 118/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 122/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 126/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 130/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 134/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.4/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.3/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.1/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.6/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 138/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 142/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 146/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 151/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 155/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 159/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 163/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 167/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 171/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 175/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 179/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 183/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 187/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 192/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 196/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 200/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 204/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 208/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 212/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.7/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.5/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.4/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 216/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 220/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 224/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 228/582 kB | 0.2/1.1 MB
Progress (5): 0.8/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.6/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 232/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 237/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 241/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 245/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 249/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.7/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.2/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.5/1.6 MB | 253/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 253/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 253/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 253/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 257/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 261/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 265/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 269/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 273/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 278/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 282/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 286/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 290/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 294/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 298/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 0.9/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.0/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.0/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.0/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.0/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.6/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.3/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 302/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 306/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 310/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 314/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 318/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 323/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.8/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.9/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.9/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.9/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.9/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.9/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 0.9/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 327/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 331/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 335/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 339/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 343/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 347/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 351/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 355/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 359/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 364/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 368/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 372/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 376/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 380/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 384/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 388/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.1/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.4/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.7/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.2/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 392/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 396/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 400/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 404/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 409/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 413/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 417/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 421/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 425/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 429/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 433/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 437/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 441/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 445/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 450/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 454/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 458/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.0/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.1/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.1/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.1/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.1/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.1/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.1/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.5/1.1 MB
Progress (5): 1.3/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.3/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 462/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 466/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 470/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 474/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 478/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 482/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 486/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 491/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 495/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 499/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 503/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 507/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 511/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 515/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 519/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 523/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.6/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.2/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.4/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.8/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 527/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 531/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 536/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 540/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 544/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 548/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 552/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 556/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 560/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 564/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 568/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 572/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 577/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 581/582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB    
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.3/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 0.9/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.7/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.5/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.6/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.6/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.6/4.3 MB | 1.4/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.6/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
Progress (5): 1.6/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 582 kB | 0.8/1.1 MB
                                                                        
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.17.1/jackson-core-2.17.1.jar (582 kB at 971 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
Progress (4): 1.6/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.0/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB
Progress (4): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 4.1/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 8.2/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 8.2/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 8.2/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 8.2/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 8.2/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 12/365 kB 
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 16/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 20/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 25/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 29/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.7/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.5/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.8/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 33/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 37/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 41/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 45/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 49/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 53/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 57/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 61/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 66/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 70/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 74/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 78/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 82/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 86/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 90/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 94/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 98/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 102/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 106/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 0.9/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.1/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 111/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 1.8/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 1.9/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 1.9/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 1.9/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 1.9/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 115/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 119/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 123/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 127/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 131/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 135/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 139/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 143/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 147/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 152/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 156/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 160/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 164/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 168/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 172/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 176/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.0/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.0/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1/1.1 MB | 180/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 180/365 kB    
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 184/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 188/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 193/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 197/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 201/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.6/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.2/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
Progress (5): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 1.1 MB | 205/365 kB
                                                                        
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar (1.1 MB at 1.4 MB/s)
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 209/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 213/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 217/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 221/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 225/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 229/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 233/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 238/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 242/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 246/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 250/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 254/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 258/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 262/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 266/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 270/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 274/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.1/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.7/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.8/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.8/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.8/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.8/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.8/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.8/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.3/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 279/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 283/365 kB
Progress (4): 2.2/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 287/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 287/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 291/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 295/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 295/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 299/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 303/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 307/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 307/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 311/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 311/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 315/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 319/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 324/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.3/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 1.9/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.4/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.4/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.5/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.5/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.5/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.5/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 328/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 332/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 336/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 340/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 344/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 348/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 352/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 356/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 360/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365/365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB    
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB
Progress (4): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB | 365 kB
                                                           
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar (365 kB at 432 kB/s)
Progress (3): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB
Progress (3): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB
Progress (3): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB
Progress (3): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB
Progress (3): 2.6/4.3 MB | 2.0/3.3 MB | 1.5/1.6 MB
Progress (3): 2.6/4.3 MB | 2.0/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.1/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.1/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.1/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.1/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.1/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.1/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6/1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6 MB    
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.2/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.3/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.4/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.4/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.4/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.4/3.3 MB | 1.6 MB
Progress (3): 2.6/4.3 MB | 2.4/3.3 MB | 1.6 MB
Progress (3): 2.7/4.3 MB | 2.4/3.3 MB | 1.6 MB
                                              
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.17.1/jackson-databind-2.17.1.jar (1.6 MB at 1.7 MB/s)
Progress (2): 2.7/4.3 MB | 2.4/3.3 MB
Progress (2): 2.7/4.3 MB | 2.4/3.3 MB
Progress (2): 2.7/4.3 MB | 2.4/3.3 MB
Progress (2): 2.7/4.3 MB | 2.4/3.3 MB
Progress (2): 2.7/4.3 MB | 2.4/3.3 MB
Progress (2): 2.7/4.3 MB | 2.5/3.3 MB
Progress (2): 2.7/4.3 MB | 2.5/3.3 MB
Progress (2): 2.7/4.3 MB | 2.5/3.3 MB
Progress (2): 2.7/4.3 MB | 2.5/3.3 MB
Progress (2): 2.7/4.3 MB | 2.5/3.3 MB
Progress (2): 2.7/4.3 MB | 2.5/3.3 MB
Progress (2): 2.7/4.3 MB | 2.6/3.3 MB
Progress (2): 2.7/4.3 MB | 2.6/3.3 MB
Progress (2): 2.8/4.3 MB | 2.6/3.3 MB
Progress (2): 2.8/4.3 MB | 2.6/3.3 MB
Progress (2): 2.8/4.3 MB | 2.6/3.3 MB
Progress (2): 2.8/4.3 MB | 2.6/3.3 MB
Progress (2): 2.9/4.3 MB | 2.6/3.3 MB
Progress (2): 2.9/4.3 MB | 2.6/3.3 MB
Progress (2): 2.9/4.3 MB | 2.6/3.3 MB
Progress (2): 2.9/4.3 MB | 2.6/3.3 MB
Progress (2): 2.9/4.3 MB | 2.6/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.7/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 2.9/4.3 MB | 2.8/3.3 MB
Progress (2): 3.0/4.3 MB | 2.8/3.3 MB
Progress (2): 3.0/4.3 MB | 2.8/3.3 MB
Progress (2): 3.0/4.3 MB | 2.8/3.3 MB
Progress (2): 3.0/4.3 MB | 2.8/3.3 MB
Progress (2): 3.0/4.3 MB | 2.8/3.3 MB
Progress (2): 3.0/4.3 MB | 2.9/3.3 MB
Progress (2): 3.0/4.3 MB | 2.9/3.3 MB
Progress (2): 3.0/4.3 MB | 2.9/3.3 MB
Progress (2): 3.0/4.3 MB | 2.9/3.3 MB
Progress (2): 3.1/4.3 MB | 2.9/3.3 MB
Progress (2): 3.1/4.3 MB | 2.9/3.3 MB
Progress (2): 3.1/4.3 MB | 2.9/3.3 MB
Progress (2): 3.1/4.3 MB | 2.9/3.3 MB
Progress (2): 3.2/4.3 MB | 2.9/3.3 MB
Progress (2): 3.2/4.3 MB | 2.9/3.3 MB
Progress (2): 3.2/4.3 MB | 2.9/3.3 MB
Progress (2): 3.2/4.3 MB | 2.9/3.3 MB
Progress (2): 3.2/4.3 MB | 2.9/3.3 MB
Progress (2): 3.2/4.3 MB | 3.0/3.3 MB
Progress (2): 3.2/4.3 MB | 3.0/3.3 MB
Progress (2): 3.2/4.3 MB | 3.0/3.3 MB
Progress (2): 3.2/4.3 MB | 3.0/3.3 MB
Progress (2): 3.2/4.3 MB | 3.0/3.3 MB
Progress (2): 3.2/4.3 MB | 3.0/3.3 MB
Progress (2): 3.2/4.3 MB | 3.1/3.3 MB
Progress (2): 3.2/4.3 MB | 3.1/3.3 MB
Progress (2): 3.2/4.3 MB | 3.1/3.3 MB
Progress (2): 3.2/4.3 MB | 3.1/3.3 MB
Progress (2): 3.2/4.3 MB | 3.1/3.3 MB
Progress (2): 3.2/4.3 MB | 3.1/3.3 MB
Progress (2): 3.3/4.3 MB | 3.1/3.3 MB
Progress (2): 3.3/4.3 MB | 3.1/3.3 MB
Progress (2): 3.3/4.3 MB | 3.1/3.3 MB
Progress (2): 3.3/4.3 MB | 3.2/3.3 MB
Progress (2): 3.3/4.3 MB | 3.2/3.3 MB
Progress (2): 3.3/4.3 MB | 3.2/3.3 MB
Progress (2): 3.3/4.3 MB | 3.2/3.3 MB
Progress (2): 3.3/4.3 MB | 3.2/3.3 MB
Progress (2): 3.4/4.3 MB | 3.2/3.3 MB
Progress (2): 3.4/4.3 MB | 3.2/3.3 MB
Progress (2): 3.4/4.3 MB | 3.2/3.3 MB
Progress (2): 3.4/4.3 MB | 3.2/3.3 MB
Progress (2): 3.4/4.3 MB | 3.3/3.3 MB
Progress (2): 3.4/4.3 MB | 3.3/3.3 MB
Progress (2): 3.4/4.3 MB | 3.3 MB    
Progress (2): 3.4/4.3 MB | 3.3 MB
Progress (2): 3.4/4.3 MB | 3.3 MB
                                 
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/ecj/3.37.0/ecj-3.37.0.jar (3.3 MB at 2.8 MB/s)
Progress (1): 3.5/4.3 MB
Progress (1): 3.5/4.3 MB
Progress (1): 3.5/4.3 MB
Progress (1): 3.5/4.3 MB
Progress (1): 3.6/4.3 MB
Progress (1): 3.6/4.3 MB
Progress (1): 3.6/4.3 MB
Progress (1): 3.6/4.3 MB
Progress (1): 3.7/4.3 MB
Progress (1): 3.7/4.3 MB
Progress (1): 3.7/4.3 MB
Progress (1): 3.7/4.3 MB
Progress (1): 3.8/4.3 MB
Progress (1): 3.8/4.3 MB
Progress (1): 3.8/4.3 MB
Progress (1): 3.8/4.3 MB
Progress (1): 3.9/4.3 MB
Progress (1): 3.9/4.3 MB
Progress (1): 3.9/4.3 MB
Progress (1): 3.9/4.3 MB
Progress (1): 4.0/4.3 MB
Progress (1): 4.0/4.3 MB
Progress (1): 4.0/4.3 MB
Progress (1): 4.0/4.3 MB
Progress (1): 4.1/4.3 MB
Progress (1): 4.1/4.3 MB
Progress (1): 4.1/4.3 MB
Progress (1): 4.1/4.3 MB
Progress (1): 4.2/4.3 MB
Progress (1): 4.2/4.3 MB
Progress (1): 4.2/4.3 MB
Progress (1): 4.2/4.3 MB
Progress (1): 4.2/4.3 MB
Progress (1): 4.3 MB    
                    
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jdt/org.eclipse.jdt.core/3.37.0/org.eclipse.jdt.core-3.37.0.jar (4.3 MB at 3.1 MB/s)
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ astor ---
[INFO] 
[INFO] --- jacoco-maven-plugin:0.8.7:prepare-agent (default) @ astor ---
[INFO] argLine set to -javaagent:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar=destfile=/builds/workspace/astor/target/jacoco.exec
[INFO] 
[INFO] --- build-helper-maven-plugin:3.5.0:add-source (default) @ astor ---
[INFO] Source directory: /builds/workspace/astor/src/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-core/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-jgenprog/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-jkali/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-jmutrepair/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-cardumen/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-deeprepair/main/java added.
[INFO] Source directory: /builds/workspace/astor/src-3sfix/main/java added.
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ astor ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ astor ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 338 source files to /builds/workspace/astor/target/classes
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  41.977 s
[INFO] Finished at: 2024-05-07T12:36:39+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.0:compile (default-compile) on project astor: Fatal error compiling: CompilerException: NullPointerException -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Build step 'Execute shell' marked build as failure
Sending e-mails to: martin.monperrus@gnieh.org matias.sebastian.martinez@gmail.com
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] done
Finished: FAILURE