awscli

Universal Command Line Environment for AWS.

Apache License 2.0 2467 个版本 Python >=3.10
Amazon Web Services
安装
pip install awscli
poetry add awscli
pipenv install awscli
conda install awscli
描述

aws-cli

.. image:: https://github.com/aws/aws-cli/actions/workflows/run-tests.yml/badge.svg :target: https://github.com/aws/aws-cli/actions/workflows/run-tests.yml :alt: Build Status

This package provides a unified command line interface to Amazon Web Services.

Jump to:

  • Getting Started <#getting-started>__
  • Getting Help <#getting-help>__
  • More Resources <#more-resources>__

Entering Maintenance Mode on July 15, 2026

We announced <https://aws.amazon.com/blogs/developer/cli-v1-maintenance-mode-announcement/>__ the upcoming end-of-support for the AWS CLI v1. We recommend that you migrate to AWS CLI v2 <https://docs.aws.amazon.com/cli/latest/userguide/cliv2-migration.html>__. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Getting Started

This README is for the AWS CLI version 1. If you are looking for information about the AWS CLI version 2, please visit the v2 branch <https://github.com/aws/aws-cli/tree/v2>__.

Requirements


The aws-cli package works on Python versions:

-  3.10.x and greater
-  3.11.x and greater
-  3.12.x and greater
-  3.13.x and greater
-  3.14.x and greater

Notices
~~~~~~~

On 2026-04-29, support for Python 3.9 ended for the AWS CLI. This follows the
Python Software Foundation `end of support <https://peps.python.org/pep-0596/#lifespan>`__
for the runtime which occurred on 2025-10-31.
For more information, see this `blog post <https://aws.amazon.com/blogs/developer/python-support-policy-updates-for-aws-sdks-and-tools/>`__.

*Attention!*

*We recommend that all customers regularly monitor the* `Amazon Web
Services Security Bulletins
website <https://aws.amazon.com/security/security-bulletins>`__ *for
any important security bulletins related to aws-cli.*

Maintenance and Support for CLI Major Versions

The AWS CLI version 1 was made generally available on 09/02/2013 and is currently in the full support phase of the availability life cycle.

For information about maintenance and support for SDK major versions and their underlying dependencies, see the Maintenance Policy <https://docs.aws.amazon.com/credref/latest/refdocs/maint-policy.html>__ section in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide.

Installation


Installation of the AWS CLI and its dependencies use a range of packaging
features provided by ``pip`` and ``setuptools``. To ensure smooth installation,
it's recommended to use:

- ``pip``: 9.0.2 or greater
- ``setuptools``: 36.2.0 or greater

The safest way to install the AWS CLI is to use
`pip <https://pip.pypa.io/en/stable/>`__ in a ``virtualenv``:

::

   $ python -m pip install awscli

or, if you are not installing in a ``virtualenv``, to install globally:

::

   $ sudo python -m pip install awscli

or for your user:

::

   $ python -m pip install --user awscli

If you have the aws-cli package installed and want to upgrade to the
latest version, you can run:

::

   $ python -m pip install --upgrade awscli

This will install the aws-cli package as well as all dependencies.

.. note::
   On macOS, if you see an error regarding the version of ``six`` that
   came with ``distutils`` in El Capitan, use the ``--ignore-installed``
   option:

::

   $ sudo python -m pip install awscli --ignore-installed six

On Linux and Mac OS, the AWS CLI can be installed using a `bundled
installer <https://docs.aws.amazon.com/cli/latest/userguide/install-linux.html#install-linux-bundled>`__.
The AWS CLI can also be installed on Windows via an `MSI
Installer <https://docs.aws.amazon.com/cli/latest/userguide/install-windows.html#msi-on-windows>`__.

If you want to run the ``develop`` branch of the AWS CLI, see the
`Development Version <CONTRIBUTING.md#cli-development-version>`__ section of
the contributing guide.

See the
`installation <https://docs.aws.amazon.com/cli/latest/userguide/install-cliv1.html>`__
section of the AWS CLI User Guide for more information.

Configuration

Before using the AWS CLI, you need to configure your AWS credentials. You can do this in several ways:

  • Configuration command
  • Environment variables
  • Shared credentials file
  • Config file
  • IAM Role

The quickest way to get started is to run the aws configure command:

::

$ aws configure AWS Access Key ID: MYACCESSKEY AWS Secret Access Key: MYSECRETKEY Default region name [us-west-2]: us-west-2 Default output format [None]: json

To use environment variables, do the following:

::

$ export AWS_ACCESS_KEY_ID=<access_key> $ export AWS_SECRET_ACCESS_KEY=<secret_key>

To use the shared credentials file, create an INI formatted file like this:

::

[default] aws_access_key_id=MYACCESSKEY aws_secret_access_key=MYSECRETKEY

[testing] aws_access_key_id=MYACCESSKEY aws_secret_access_key=MYSECRETKEY

and place it in ~/.aws/credentials (or in %UserProfile%\.aws/credentials on Windows). If you wish to place the shared credentials file in a different location than the one specified above, you need to tell aws-cli where to find it. Do this by setting the appropriate environment variable:

::

$ export AWS_SHARED_CREDENTIALS_FILE=/path/to/shared_credentials_file

To use a config file, create an INI formatted file like this:

::

[default] aws_access_key_id= aws_secret_access_key=

Optional, to define default region for this profile.

region=us-west-1

[profile testing] aws_access_key_id= aws_secret_access_key= region=us-west-2

and place it in ~/.aws/config (or in %UserProfile%\.aws\config on Windows). If you wish to place the config file in a different location than the one specified above, you need to tell the AWS CLI where to find it. Do this by setting the appropriate environment variable:

::

$ export AWS_CONFIG_FILE=/path/to/config_file

As you can see, you can have multiple profiles defined in both the shared credentials file and the configuration file. You can then specify which profile to use by using the --profile option. If no profile is specified the default profile is used.

In the config file, except for the default profile, you must prefix each config section of a profile group with profile. For example, if you have a profile named "testing" the section header would be [profile testing].

The final option for credentials is highly recommended if you are using the AWS CLI on an EC2 instance. IAM Roles <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html>__ are a great way to have credentials installed automatically on your instance. If you are using IAM Roles, the AWS CLI will find and use them automatically.

In addition to credentials, a number of other variables can be configured either with environment variables, configuration file entries, or both. See the AWS Tools and SDKs Shared Configuration and Credentials Reference Guide <https://docs.aws.amazon.com/credref/latest/refdocs/overview.html>__ for more information.

For more information about configuration options, please refer to the AWS CLI Configuration Variables topic <http://docs.aws.amazon.com/cli/latest/topic/config-vars.html#cli-aws-help-config-vars>__. You can access this topic from the AWS CLI as well by running aws help config-vars.

Basic Commands


An AWS CLI command has the following structure:

::

   $ aws <command> <subcommand> [options and parameters]

For example, to list S3 buckets, the command would be:

::

   $ aws s3 ls

To view help documentation, use one of the following:

::

   $ aws help
   $ aws <command> help
   $ aws <command> <subcommand> help

To get the version of the AWS CLI:

::

   $ aws --version

To turn on debugging output:

::

   $ aws --debug <command> <subcommand>

You can read more information on the `Using the AWS
CLI <https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-using.html>`__
chapter of the AWS CLI User Guide.

Command Completion

The aws-cli package includes a command completion feature for Unix-like systems. This feature is not automatically installed so you need to configure it manually. To learn more, read the AWS CLI Command completion topic <https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-completion.html>__.

Getting Help

The best way to interact with our team is through GitHub. You can open an issue <https://github.com/aws/aws-cli/issues/new/choose>__ and choose from one of our templates for guidance, bug reports, or feature requests.

You may find help from the community on Stack Overflow <https://stackoverflow.com/>__ with the tag aws-cli <https://stackoverflow.com/questions/tagged/aws-cli>__ or on the AWS Discussion Forum for CLI <https://forums.aws.amazon.com/forum.jspa?forumID=150>. If you have a support plan with AWS Support <https://aws.amazon.com/premiumsupport>, you can also create a new support case.

Please check for open similar issues <https://github.com/aws/aws-cli/issues/>__ before opening another one.

The AWS CLI implements AWS service APIs. For general issues regarding the services or their limitations, you may find the Amazon Web Services Discussion Forums <https://forums.aws.amazon.com/>__ helpful.

More Resources

  • Changelog <https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst>__
  • AWS CLI Documentation <https://docs.aws.amazon.com/cli/index.html>__
  • AWS CLI User Guide <https://docs.aws.amazon.com/cli/latest/userguide/>__
  • AWS CLI Command Reference <https://docs.aws.amazon.com/cli/latest/reference/>__
  • Amazon Web Services Discussion Forums <https://forums.aws.amazon.com/>__
  • AWS Support <https://console.aws.amazon.com/support/home#/>__

.. |Build Status| image:: https://travis-ci.org/aws/aws-cli.svg?branch=develop :target: https://travis-ci.org/aws/aws-cli .. |Gitter| image:: https://badges.gitter.im/aws/aws-cli.svg :target: https://gitter.im/aws/aws-cli

版本列表
1.45.36 2026-06-23
1.45.35 2026-06-22
1.45.34 2026-06-19
1.45.33 2026-06-18
1.45.32 2026-06-17
1.45.31 2026-06-16
1.45.30 2026-06-15
1.45.29 2026-06-12
1.45.28 2026-06-11
1.45.27 2026-06-10
1.45.26 2026-06-09
1.45.25 2026-06-08
1.45.24 2026-06-05
1.45.23 2026-06-04
1.45.22 2026-06-03
1.45.21 2026-06-03
1.45.20 2026-06-02
1.45.19 2026-06-01
1.45.18 2026-05-29
1.45.17 2026-05-28
1.45.16 2026-05-27
1.45.15 2026-05-26
1.45.14 2026-05-22
1.45.13 2026-05-21
1.45.12 2026-05-20
1.45.11 2026-05-19
1.45.10 2026-05-18
1.45.9 2026-05-15
1.45.8 2026-05-14
1.45.7 2026-05-13
1.45.6 2026-05-07
1.45.5 2026-05-06
1.45.4 2026-05-05
1.45.3 2026-05-04
1.45.2 2026-05-01
1.45.1 2026-04-30
1.45.0 2026-04-29
1.44.87 2026-04-27
1.44.86 2026-04-24
1.44.85 2026-04-23
1.44.84 2026-04-22
1.44.83 2026-04-21
1.44.82 2026-04-20
1.44.81 2026-04-17
1.44.80 2026-04-16
1.44.79 2026-04-13
1.44.78 2026-04-10
1.44.77 2026-04-09
1.44.76 2026-04-09
1.44.75 2026-04-07
1.44.74 2026-04-06
1.44.73 2026-04-03
1.44.72 2026-04-02
1.44.71 2026-04-01
1.44.70 2026-03-31
1.44.69 2026-03-30
1.44.68 2026-03-27
1.44.67 2026-03-26
1.44.66 2026-03-25
1.44.65 2026-03-24
1.44.64 2026-03-23
1.44.63 2026-03-20
1.44.62 2026-03-19
1.44.61 2026-03-18
1.44.60 2026-03-17
1.44.59 2026-03-16
1.44.58 2026-03-13
1.44.57 2026-03-12
1.44.56 2026-03-11
1.44.55 2026-03-10
1.44.54 2026-03-09
1.44.53 2026-03-06
1.44.52 2026-03-05
1.44.51 2026-03-04
1.44.50 2026-03-03
1.44.49 2026-02-27
1.44.48 2026-02-26
1.44.47 2026-02-25
1.44.46 2026-02-24
1.44.45 2026-02-23
1.44.44 2026-02-20
1.44.43 2026-02-19
1.44.42 2026-02-18
1.44.41 2026-02-17
1.44.40 2026-02-16
1.44.39 2026-02-13
1.44.38 2026-02-12
1.44.37 2026-02-11
1.44.36 2026-02-10
1.44.35 2026-02-09
1.44.34 2026-02-06
1.44.33 2026-02-05
1.44.32 2026-02-04
1.44.31 2026-02-03
1.44.30 2026-02-02
1.44.29 2026-01-30
1.44.28 2026-01-29
1.44.27 2026-01-28
1.44.26 2026-01-27
1.44.25 2026-01-26
1.44.24 2026-01-23
1.44.23 2026-01-22
1.44.22 2026-01-21
1.44.21 2026-01-20
1.44.20 2026-01-16
1.44.19 2026-01-15
1.44.18 2026-01-14
1.44.17 2026-01-13
1.44.16 2026-01-12
1.44.15 2026-01-09
1.44.14 2026-01-07
1.44.13 2026-01-06
1.44.12 2026-01-05
1.44.11 2026-01-03
1.44.10 2026-01-02
1.44.9 2025-12-30
1.44.8 2025-12-29
1.44.7 2025-12-26
1.44.6 2025-12-23
1.44.5 2025-12-22
1.44.4 2025-12-19
1.44.3 2025-12-18
1.44.2 2025-12-17
1.44.1 2025-12-16
1.44.0 2025-12-15
1.43.15 2025-12-12
1.43.14 2025-12-11
1.43.13 2025-12-10
1.43.12 2025-12-09
1.43.11 2025-12-08
1.43.10 2025-12-05
1.43.9 2025-12-04
1.43.8 2025-12-03
1.43.7 2025-12-02
1.43.6 2025-12-01
1.43.5 2025-11-26
1.43.4 2025-11-25
1.43.3 2025-11-24
1.43.2 2025-11-21
1.43.1 2025-11-20
1.43.0 2025-11-19
1.42.76 2025-11-18
1.42.75 2025-11-17
1.42.74 2025-11-14
1.42.73 2025-11-13
1.42.72 2025-11-12
1.42.71 2025-11-11
1.42.70 2025-11-10
1.42.69 2025-11-07
1.42.68 2025-11-06
1.42.67 2025-11-05
1.42.66 2025-11-04
1.42.65 2025-11-03
1.42.64 2025-10-31
1.42.63 2025-10-30
1.42.62 2025-10-29
1.42.61 2025-10-28
1.42.60 2025-10-27
1.42.59 2025-10-24
1.42.58 2025-10-23
1.42.57 2025-10-22
1.42.56 2025-10-21
1.42.55 2025-10-17
1.42.54 2025-10-16
1.42.53 2025-10-15
1.42.52 2025-10-14
1.42.51 2025-10-13
1.42.50 2025-10-10
1.42.49 2025-10-09
1.42.48 2025-10-08
1.42.47 2025-10-07
1.42.46 2025-10-06
1.42.45 2025-10-03
1.42.44 2025-10-02
1.42.43 2025-10-01
1.42.42 2025-09-30
1.42.41 2025-09-29
1.42.40 2025-09-26
1.42.39 2025-09-25
1.42.38 2025-09-24
1.42.37 2025-09-23
1.42.36 2025-09-22
1.42.35 2025-09-19
1.42.34 2025-09-18
1.42.33 2025-09-17
1.42.32 2025-09-16
1.42.31 2025-09-15
1.42.30 2025-09-12
1.42.29 2025-09-11
1.42.28 2025-09-10
1.42.27 2025-09-09
1.42.26 2025-09-08
1.42.25 2025-09-05
1.42.24 2025-09-04
1.42.23 2025-09-03
1.42.22 2025-09-02
1.42.21 2025-08-29
1.42.20 2025-08-28
1.42.19 2025-08-27
1.42.18 2025-08-26
1.42.17 2025-08-25
1.42.16 2025-08-22
1.42.15 2025-08-21
1.42.14 2025-08-20
1.42.13 2025-08-19
1.42.12 2025-08-18
1.42.11 2025-08-15
1.42.10 2025-08-14
1.42.9 2025-08-13
1.42.8 2025-08-12
1.42.7 2025-08-11
1.42.6 2025-08-08
1.42.5 2025-08-07
1.42.4 2025-08-06
1.42.3 2025-08-05
1.42.2 2025-08-04
1.42.1 2025-08-01
1.42.0 2025-07-31
1.41.17 2025-07-30
1.41.16 2025-07-29
1.41.15 2025-07-28
1.41.14 2025-07-25
1.41.13 2025-07-24
1.41.12 2025-07-23
1.41.11 2025-07-22
1.41.10 2025-07-21
1.41.9 2025-07-18
1.41.8 2025-07-17
1.41.7 2025-07-16
1.41.6 2025-07-16
1.41.5 2025-07-15
1.41.4 2025-07-09
1.41.3 2025-07-03
1.41.2 2025-07-02
1.41.1 2025-07-01
1.41.0 2025-06-30
1.40.45 2025-06-27
1.40.44 2025-06-26
1.40.43 2025-06-25
1.40.42 2025-06-24
1.40.41 2025-06-23
1.40.40 2025-06-20
1.40.39 2025-06-19
1.40.38 2025-06-18
1.40.37 2025-06-17
1.40.36 2025-06-16
1.40.35 2025-06-12
1.40.34 2025-06-11
1.40.33 2025-06-10
1.40.32 2025-06-09
1.40.31 2025-06-06
1.40.30 2025-06-05
1.40.29 2025-06-04
1.40.28 2025-06-03
1.40.27 2025-06-02
1.40.26 2025-05-30
1.40.25 2025-05-29
1.40.24 2025-05-28
1.40.23 2025-05-27
1.40.22 2025-05-23
1.40.21 2025-05-22
1.40.20 2025-05-21
1.40.19 2025-05-20
1.40.18 2025-05-19
1.40.17 2025-05-16
1.40.16 2025-05-15
1.40.15 2025-05-14
1.40.14 2025-05-13
1.40.13 2025-05-12
1.40.12 2025-05-09
1.40.11 2025-05-08
1.40.10 2025-05-07
1.40.9 2025-05-06
1.40.8 2025-05-05
1.40.7 2025-05-03
1.40.6 2025-05-01
1.40.5 2025-04-30
1.40.4 2025-04-29
1.40.3 2025-04-28
1.40.2 2025-04-25
1.40.1 2025-04-24
1.40.0 2025-04-23
1.39.0 2025-04-22
1.38.38 2025-04-21
1.38.37 2025-04-18
1.38.36 2025-04-17
1.38.35 2025-04-16
1.38.34 2025-04-14
1.38.33 2025-04-11
1.38.32 2025-04-10
1.38.31 2025-04-09
1.38.30 2025-04-08
1.38.29 2025-04-07
1.38.28 2025-04-04
1.38.27 2025-04-03
1.38.26 2025-04-02
1.38.25 2025-04-01
1.38.24 2025-03-31
1.38.23 2025-03-28
1.38.22 2025-03-27
1.38.21 2025-03-26
1.38.20 2025-03-25
1.38.19 2025-03-24
1.38.18 2025-03-21
1.38.17 2025-03-20
1.38.16 2025-03-19
1.38.15 2025-03-18
1.38.14 2025-03-17
1.38.13 2025-03-14
1.38.12 2025-03-13
1.38.11 2025-03-11
1.38.10 2025-03-10
1.38.9 2025-03-07
1.38.8 2025-03-06
1.38.7 2025-03-05
1.38.6 2025-03-04
1.38.5 2025-03-03
1.38.4 2025-02-28
1.38.3 2025-02-27
1.38.2 2025-02-26
1.38.1 2025-02-25
1.38.0 2025-02-24
1.37.26 2025-02-21
1.37.25 2025-02-20
1.37.24 2025-02-19
1.37.23 2025-02-18
1.37.22 2025-02-17
1.37.21 2025-02-14
1.37.20 2025-02-13
1.37.19 2025-02-12
1.37.18 2025-02-11
1.37.17 2025-02-10
1.37.16 2025-02-07
1.37.15 2025-02-06
1.37.14 2025-02-05
1.37.13 2025-02-04
1.37.12 2025-02-03
1.37.11 2025-01-31
1.37.10 2025-01-30
1.37.9 2025-01-29
1.37.8 2025-01-28
1.37.7 2025-01-27
1.37.6 2025-01-24
1.37.5 2025-01-23
1.37.4 2025-01-22
1.37.3 2025-01-21
1.37.2 2025-01-17
1.37.1 2025-01-16
1.37.0 2025-01-15
1.36.40 2025-01-14
1.36.39 2025-01-13
1.36.38 2025-01-10
1.36.37 2025-01-09
1.36.36 2025-01-08
1.36.35 2025-01-07
1.36.34 2025-01-06
1.36.33 2025-01-03
1.36.32 2025-01-02
1.36.31 2024-12-28
1.36.30 2024-12-27
1.36.29 2024-12-26
1.36.28 2024-12-23
1.36.27 2024-12-20
1.36.26 2024-12-19
1.36.25 2024-12-18
1.36.24 2024-12-17
1.36.23 2024-12-16
1.36.22 2024-12-13
1.36.21 2024-12-12
1.36.20 2024-12-11
1.36.19 2024-12-10
1.36.18 2024-12-09
1.36.17 2024-12-05
1.36.16 2024-12-04
1.36.15 2024-12-03
1.36.14 2024-12-03
1.36.13 2024-12-02
1.36.12 2024-11-27
1.36.11 2024-11-26
1.36.10 2024-11-25
1.36.9 2024-11-22
1.36.8 2024-11-22
1.36.7 2024-11-20
1.36.6 2024-11-19
1.36.5 2024-11-18
1.36.4 2024-11-15
1.36.3 2024-11-15
1.36.2 2024-11-14
1.36.1 2024-11-13
1.36.0 2024-11-12
1.35.24 2024-11-11
1.35.23 2024-11-08
1.35.22 2024-11-07
1.35.21 2024-11-06
1.35.20 2024-11-01
1.35.19 2024-10-31
1.35.18 2024-10-30
1.35.17 2024-10-29
1.35.16 2024-10-28
1.35.15 2024-10-25
1.35.14 2024-10-24
1.35.13 2024-10-23
1.35.12 2024-10-22
1.35.11 2024-10-21
1.35.10 2024-10-18
1.35.9 2024-10-17
1.35.8 2024-10-16
1.35.7 2024-10-15
1.35.6 2024-10-14
1.35.5 2024-10-11
1.35.4 2024-10-10
1.35.3 2024-10-09
1.35.2 2024-10-08
1.35.1 2024-10-07
1.35.0 2024-10-04
1.34.33 2024-10-03
1.34.32 2024-10-02
1.34.31 2024-10-01
1.34.30 2024-10-01
1.34.29 2024-09-27
1.34.28 2024-09-26
1.34.27 2024-09-25
1.34.26 2024-09-24
1.34.25 2024-09-23
1.34.24 2024-09-20
1.34.23 2024-09-19
1.34.22 2024-09-18
1.34.21 2024-09-17
1.34.20 2024-09-16
1.34.19 2024-09-13
1.34.18 2024-09-12
1.34.17 2024-09-11
1.34.16 2024-09-10
1.34.15 2024-09-09
1.34.14 2024-09-06
1.34.13 2024-09-05
1.34.12 2024-09-04
1.34.11 2024-09-03
1.34.10 2024-08-30
1.34.9 2024-08-29
1.34.8 2024-08-28
1.34.7 2024-08-27
1.34.6 2024-08-26
1.34.5 2024-08-23
1.34.4 2024-08-22
1.34.3 2024-08-21
1.34.2 2024-08-20
1.34.1 2024-08-19
1.34.0 2024-08-16
1.33.44 2024-08-15
1.33.43 2024-08-14
1.33.42 2024-08-13
1.33.41 2024-08-12
1.33.40 2024-08-09
1.33.39 2024-08-08
1.33.38 2024-08-07
1.33.37 2024-08-06
1.33.36 2024-08-05
1.33.35 2024-08-02
1.33.34 2024-08-01
1.33.33 2024-07-30
1.33.32 2024-07-29
1.33.31 2024-07-25
1.33.30 2024-07-24
1.33.29 2024-07-23
1.33.28 2024-07-22
1.33.27 2024-07-18
1.33.26 2024-07-12
1.33.25 2024-07-10
1.33.24 2024-07-09
1.33.23 2024-07-08
1.33.22 2024-07-05
1.33.21 2024-07-03
1.33.20 2024-07-02
1.33.19 2024-07-01
1.33.18 2024-06-28
1.33.17 2024-06-27
1.33.16 2024-06-26
1.33.15 2024-06-25
1.33.14 2024-06-24
1.33.13 2024-06-20
1.33.12 2024-06-19
1.33.11 2024-06-18
1.33.10 2024-06-17
1.33.9 2024-06-14
1.33.8 2024-06-13
1.33.7 2024-06-12
1.33.6 2024-06-11
1.33.5 2024-06-10
1.33.4 2024-06-07
1.33.3 2024-06-06
1.33.2 2024-06-05
1.33.1 2024-06-04
1.33.0 2024-06-03
1.32.117 2024-05-31
1.32.116 2024-05-30
1.32.115 2024-05-29
1.32.114 2024-05-28
1.32.113 2024-05-24
1.32.112 2024-05-23
1.32.111 2024-05-22
1.32.110 2024-05-21
1.32.109 2024-05-20
1.32.108 2024-05-17
1.32.107 2024-05-16
1.32.106 2024-05-15
1.32.105 2024-05-14
1.32.104 2024-05-13
1.32.103 2024-05-10
1.32.102 2024-05-10
1.32.101 2024-05-08
1.32.100 2024-05-07
1.32.99 2024-05-06
1.32.98 2024-05-03
1.32.97 2024-05-02
1.32.96 2024-05-01
1.32.95 2024-04-30
1.32.94 2024-04-29
1.32.93 2024-04-26
1.32.92 2024-04-25
1.32.91 2024-04-24
1.32.90 2024-04-23
1.32.89 2024-04-22
1.32.88 2024-04-19
1.32.87 2024-04-18
1.32.86 2024-04-17
1.32.85 2024-04-16
1.32.84 2024-04-12
1.32.83 2024-04-11
1.32.82 2024-04-10
1.32.81 2024-04-09
1.32.80 2024-04-08
1.32.79 2024-04-05
1.32.78 2024-04-04
1.32.77 2024-04-03
1.32.76 2024-04-02
1.32.75 2024-04-01
1.32.74 2024-03-29
1.32.73 2024-03-28
1.32.72 2024-03-27
1.32.71 2024-03-26
1.32.70 2024-03-25
1.32.69 2024-03-22
1.32.68 2024-03-21
1.32.67 2024-03-20
1.32.66 2024-03-19
1.32.65 2024-03-18
1.32.64 2024-03-15
1.32.63 2024-03-14
1.32.62 2024-03-13
1.32.61 2024-03-12
1.32.60 2024-03-11
1.32.59 2024-03-08
1.32.58 2024-03-07
1.32.57 2024-03-06
1.32.56 2024-03-05
1.32.55 2024-03-04
1.32.54 2024-03-01
1.32.53 2024-02-29
1.32.52 2024-02-28
1.32.51 2024-02-27
1.32.50 2024-02-26
1.32.49 2024-02-23
1.32.48 2024-02-22
1.32.47 2024-02-21
1.32.46 2024-02-20
1.32.45 2024-02-19
1.32.44 2024-02-16
1.32.43 2024-02-15
1.32.42 2024-02-14
1.32.41 2024-02-13
1.32.40 2024-02-12
1.32.39 2024-02-09
1.32.38 2024-02-08
1.32.37 2024-02-07
1.32.36 2024-02-06
1.32.35 2024-02-05
1.32.34 2024-02-02
1.32.33 2024-02-01
1.32.32 2024-01-31
1.32.31 2024-01-30
1.32.30 2024-01-29
1.32.29 2024-01-26
1.32.28 2024-01-25
1.32.27 2024-01-24
1.32.26 2024-01-23
1.32.25 2024-01-23
1.32.24 2024-01-22
1.32.23 2024-01-19
1.32.22 2024-01-18
1.32.21 2024-01-17
1.32.20 2024-01-16
1.32.19 2024-01-14
1.32.18 2024-01-12
1.32.17 2024-01-11
1.32.16 2024-01-10
1.32.15 2024-01-08
1.32.14 2024-01-05
1.32.13 2024-01-04
1.32.12 2024-01-03
1.32.11 2023-12-29
1.32.10 2023-12-28
1.32.9 2023-12-27
1.32.8 2023-12-26
1.32.7 2023-12-22
1.32.6 2023-12-21
1.32.5 2023-12-20
1.32.4 2023-12-19
1.32.3 2023-12-18
1.32.2 2023-12-15
1.32.1 2023-12-14
1.32.0 2023-12-13
1.31.13 2023-12-12
1.31.12 2023-12-11
1.31.11 2023-12-08
1.31.10 2023-12-07
1.31.9 2023-12-06
1.31.8 2023-12-05
1.31.7 2023-12-04
1.31.6 2023-12-01
1.31.5 2023-11-30
1.31.4 2023-11-30
1.31.3 2023-11-29
1.31.2 2023-11-28
1.31.1 2023-11-28
1.31.0 2023-11-27
1.30.7 2023-11-27
1.30.6 2023-11-22
1.30.5 2023-11-21
1.30.4 2023-11-20
1.30.3 2023-11-17
1.30.2 2023-11-16
1.30.1 2023-11-15
1.30.0 2023-11-14
1.29.85 2023-11-13
1.29.84 2023-11-10
1.29.83 2023-11-09
1.29.82 2023-11-09
1.29.81 2023-11-08
1.29.80 2023-11-07
1.29.79 2023-11-06
1.29.78 2023-11-03
1.29.77 2023-11-02
1.29.76 2023-11-01
1.29.75 2023-10-31
1.29.74 2023-10-30
1.29.73 2023-10-27
1.29.72 2023-10-26
1.29.71 2023-10-25
1.29.70 2023-10-24
1.29.69 2023-10-23
1.29.68 2023-10-20
1.29.67 2023-10-19
1.29.66 2023-10-18
1.29.65 2023-10-17
1.29.64 2023-10-16
1.29.63 2023-10-12
1.29.62 2023-10-06
1.29.61 2023-10-05
1.29.60 2023-10-04
1.29.59 2023-10-03
1.29.58 2023-10-02
1.29.57 2023-09-28
1.29.56 2023-09-27
1.29.55 2023-09-26
1.29.54 2023-09-25
1.29.53 2023-09-22
1.29.52 2023-09-20
1.29.51 2023-09-19
1.29.50 2023-09-18
1.29.49 2023-09-15
1.29.48 2023-09-14
1.29.47 2023-09-13
1.29.46 2023-09-12
1.29.45 2023-09-11
1.29.44 2023-09-08
1.29.43 2023-09-07
1.29.42 2023-09-06
1.29.41 2023-09-05
1.29.40 2023-09-01
1.29.39 2023-08-31
1.29.38 2023-08-30
1.29.37 2023-08-29
1.29.36 2023-08-28
1.29.35 2023-08-25
1.29.34 2023-08-24
1.29.33 2023-08-23
1.29.32 2023-08-22
1.29.31 2023-08-21
1.29.30 2023-08-18
1.29.29 2023-08-17
1.29.28 2023-08-16
1.29.27 2023-08-15
1.29.26 2023-08-14
1.29.25 2023-08-11
1.29.24 2023-08-10
1.29.23 2023-08-09
1.29.22 2023-08-08
1.29.21 2023-08-07
1.29.20 2023-08-04
1.29.19 2023-08-03
1.29.18 2023-08-02
1.29.17 2023-08-01
1.29.16 2023-07-31
1.29.15 2023-07-28
1.29.14 2023-07-28
1.29.13 2023-07-27
1.29.12 2023-07-26
1.29.11 2023-07-25
1.29.10 2023-07-24
1.29.9 2023-07-21
1.29.8 2023-07-20
1.29.7 2023-07-20
1.29.6 2023-07-19
1.29.5 2023-07-18
1.29.4 2023-07-18
1.29.3 2023-07-13
1.29.2 2023-07-11
1.29.1 2023-07-07
1.29.0 2023-07-06
1.28.1 2023-07-05
1.28.0 2023-07-03
1.27.165 2023-06-30
1.27.164 2023-06-29
1.27.163 2023-06-28
1.27.162 2023-06-27
1.27.161 2023-06-26
1.27.160 2023-06-23
1.27.159 2023-06-22
1.27.158 2023-06-21
1.27.157 2023-06-20
1.27.156 2023-06-19
1.27.155 2023-06-16
1.27.154 2023-06-15
1.27.153 2023-06-13
1.27.152 2023-06-12
1.27.151 2023-06-09
1.27.150 2023-06-08
1.27.149 2023-06-07
1.27.148 2023-06-06
1.27.147 2023-06-05
1.27.146 2023-06-02
1.27.145 2023-06-01
1.27.144 2023-05-31
1.27.143 2023-05-30
1.27.142 2023-05-26
1.27.141 2023-05-25
1.27.140 2023-05-24
1.27.139 2023-05-23
1.27.138 2023-05-22
1.27.137 2023-05-19
1.27.136 2023-05-18
1.27.135 2023-05-16
1.27.134 2023-05-15
1.27.133 2023-05-11
1.27.132 2023-05-10
1.27.131 2023-05-09
1.27.130 2023-05-08
1.27.129 2023-05-05
1.27.128 2023-05-05
1.27.127 2023-05-04
1.27.126 2023-05-03
1.27.125 2023-05-02
1.27.124 2023-05-01
1.27.123 2023-04-28
1.27.122 2023-04-27
1.27.121 2023-04-26
1.27.120 2023-04-25
1.27.119 2023-04-25
1.27.118 2023-04-21
1.27.117 2023-04-20
1.27.116 2023-04-19
1.27.115 2023-04-17
1.27.114 2023-04-14
1.27.113 2023-04-13
1.27.112 2023-04-12
1.27.111 2023-04-11
1.27.110 2023-04-10
1.27.109 2023-04-07
1.27.108 2023-04-06
1.27.107 2023-04-05
1.27.106 2023-04-04
1.27.105 2023-04-03
1.27.104 2023-03-31
1.27.103 2023-03-30
1.27.102 2023-03-29
1.27.101 2023-03-28
1.27.100 2023-03-27
1.27.99 2023-03-24
1.27.98 2023-03-23
1.27.97 2023-03-22
1.27.96 2023-03-21
1.27.95 2023-03-20
1.27.94 2023-03-17
1.27.93 2023-03-16
1.27.92 2023-03-15
1.27.91 2023-03-14
1.27.90 2023-03-13
1.27.89 2023-03-10
1.27.88 2023-03-09
1.27.87 2023-03-08
1.27.86 2023-03-07
1.27.85 2023-03-06
1.27.84 2023-03-03
1.27.83 2023-03-02
1.27.82 2023-03-01
1.27.81 2023-02-28
1.27.80 2023-02-27
1.27.79 2023-02-24
1.27.78 2023-02-23
1.27.77 2023-02-22
1.27.76 2023-02-21
1.27.75 2023-02-20
1.27.74 2023-02-17
1.27.73 2023-02-16
1.27.72 2023-02-15
1.27.71 2023-02-14
1.27.70 2023-02-13
1.27.69 2023-02-10
1.27.68 2023-02-09
1.27.67 2023-02-08
1.27.66 2023-02-07
1.27.65 2023-02-06
1.27.64 2023-02-03
1.27.63 2023-02-02
1.27.62 2023-02-01
1.27.61 2023-01-31
1.27.60 2023-01-30
1.27.59 2023-01-27
1.27.58 2023-01-26
1.27.57 2023-01-25
1.27.56 2023-01-24
1.27.55 2023-01-23
1.27.54 2023-01-20
1.27.53 2023-01-19
1.27.52 2023-01-18
1.27.51 2023-01-17
1.27.50 2023-01-13
1.27.49 2023-01-12
1.27.48 2023-01-11
1.27.47 2023-01-10
1.27.46 2023-01-09
1.27.45 2023-01-06
1.27.44 2023-01-05
1.27.43 2023-01-04
1.27.42 2023-01-03
1.27.41 2022-12-30
1.27.40 2022-12-29
1.27.39 2022-12-28
1.27.38 2022-12-27
1.27.37 2022-12-23
1.27.36 2022-12-22
1.27.35 2022-12-21
1.27.34 2022-12-20
1.27.33 2022-12-19
1.27.32 2022-12-16
1.27.31 2022-12-15
1.27.30 2022-12-14
1.27.29 2022-12-13
1.27.28 2022-12-12
1.27.27 2022-12-09
1.27.26 2022-12-08
1.27.25 2022-12-07
1.27.24 2022-12-06
1.27.23 2022-12-05
1.27.22 2022-12-02
1.27.21 2022-12-01
1.27.20 2022-11-30
1.27.19 2022-11-29
1.27.18 2022-11-29
1.27.17 2022-11-28
1.27.16 2022-11-23
1.27.15 2022-11-22
1.27.14 2022-11-21
1.27.13 2022-11-18
1.27.12 2022-11-17
1.27.11 2022-11-16
1.27.10 2022-11-15
1.27.9 2022-11-14
1.27.8 2022-11-11
1.27.7 2022-11-10
1.27.6 2022-11-09
1.27.5 2022-11-08
1.27.4 2022-11-07
1.27.3 2022-11-04
1.27.2 2022-11-03
1.27.1 2022-11-02
1.27.0 2022-11-01
1.26.5 2022-10-31
1.26.4 2022-10-28
1.26.3 2022-10-27
1.26.2 2022-10-26
1.26.1 2022-10-25
1.26.0 2022-10-25
1.25.97 2022-10-21
1.25.96 2022-10-20
1.25.95 2022-10-19
1.25.94 2022-10-18
1.25.93 2022-10-17
1.25.92 2022-10-14
1.25.91 2022-10-13
1.25.90 2022-10-07
1.25.89 2022-10-06
1.25.88 2022-10-05
1.25.87 2022-10-04
1.25.86 2022-10-03
1.25.85 2022-09-30
1.25.84 2022-09-29
1.25.83 2022-09-27
1.25.82 2022-09-26
1.25.81 2022-09-23
1.25.80 2022-09-22
1.25.79 2022-09-21
1.25.78 2022-09-20
1.25.77 2022-09-19
1.25.76 2022-09-16
1.25.75 2022-09-15
1.25.74 2022-09-14
1.25.73 2022-09-13
1.25.72 2022-09-12
1.25.71 2022-09-09
1.25.70 2022-09-08
1.25.69 2022-09-07
1.25.68 2022-09-06
1.25.67 2022-09-02
1.25.66 2022-09-01
1.25.65 2022-08-31
1.25.64 2022-08-30
1.25.63 2022-08-29
1.25.62 2022-08-26
1.25.61 2022-08-25
1.25.60 2022-08-24
1.25.59 2022-08-23
1.25.58 2022-08-22
1.25.57 2022-08-19
1.25.56 2022-08-18
1.25.55 2022-08-17
1.25.54 2022-08-17
1.25.53 2022-08-16
1.25.52 2022-08-15
1.25.51 2022-08-12
1.25.50 2022-08-11
1.25.49 2022-08-10
1.25.48 2022-08-09
1.25.47 2022-08-08
1.25.46 2022-08-04
1.25.45 2022-08-03
1.25.44 2022-08-02
1.25.43 2022-08-01
1.25.42 2022-07-30
1.25.41 2022-07-29
1.25.40 2022-07-28
1.25.39 2022-07-27
1.25.38 2022-07-26
1.25.37 2022-07-25
1.25.36 2022-07-22
1.25.35 2022-07-21
1.25.34 2022-07-20
1.25.33 2022-07-19
1.25.32 2022-07-18
1.25.31 2022-07-15
1.25.30 2022-07-14
1.25.29 2022-07-13
1.25.28 2022-07-12
1.25.27 2022-07-11
1.25.26 2022-07-08
1.25.25 2022-07-07
1.25.24 2022-07-06
1.25.23 2022-07-05
1.25.22 2022-07-01
1.25.21 2022-06-30
1.25.20 2022-06-29
1.25.19 2022-06-28
1.25.18 2022-06-27
1.25.17 2022-06-24
1.25.16 2022-06-23
1.25.15 2022-06-22
1.25.14 2022-06-21
1.25.13 2022-06-20
1.25.12 2022-06-17
1.25.11 2022-06-16
1.25.10 2022-06-15
1.25.9 2022-06-14
1.25.8 2022-06-13
1.25.7 2022-06-10
1.25.6 2022-06-09
1.25.5 2022-06-08
1.25.4 2022-06-07
1.25.3 2022-06-06
1.25.2 2022-06-02
1.25.1 2022-06-01
1.25.0 2022-05-31
1.24.10 2022-05-27
1.24.9 2022-05-26
1.24.8 2022-05-25
1.24.7 2022-05-24
1.24.6 2022-05-23
1.24.5 2022-05-20
1.24.4 2022-05-19
1.24.3 2022-05-18
1.24.2 2022-05-17
1.24.1 2022-05-16
1.24.0 2022-05-13
1.23.13 2022-05-12
1.23.12 2022-05-11
1.23.11 2022-05-10
1.23.10 2022-05-09
1.23.9 2022-05-06
1.23.8 2022-05-05
1.23.7 2022-05-04
1.23.6 2022-05-03
1.23.5 2022-05-02
1.23.4 2022-04-29
1.23.3 2022-04-28
1.23.2 2022-04-27
1.23.1 2022-04-26
1.23.0 2022-04-25
1.22.101 2022-04-22
1.22.100 2022-04-21
1.22.99 2022-04-20
1.22.98 2022-04-19
1.22.97 2022-04-15
1.22.96 2022-04-14
1.22.95 2022-04-13
1.22.94 2022-04-12
1.22.93 2022-04-11
1.22.92 2022-04-08
1.22.91 2022-04-07
1.22.90 2022-04-06
1.22.89 2022-04-05
1.22.88 2022-04-04
1.22.87 2022-04-01
1.22.86 2022-03-31
1.22.85 2022-03-30
1.22.84 2022-03-29
1.22.83 2022-03-28
1.22.82 2022-03-25
1.22.81 2022-03-24
1.22.80 2022-03-23
1.22.79 2022-03-22
1.22.78 2022-03-21
1.22.77 2022-03-18
1.22.76 2022-03-16
1.22.75 2022-03-15
1.22.74 2022-03-14
1.22.73 2022-03-11
1.22.72 2022-03-10
1.22.71 2022-03-09
1.22.70 2022-03-08
1.22.69 2022-03-07
1.22.68 2022-03-04
1.22.67 2022-03-03
1.22.66 2022-03-02
1.22.65 2022-03-01
1.22.64 2022-02-28
1.22.63 2022-02-25
1.22.62 2022-02-24
1.22.61 2022-02-23
1.22.60 2022-02-22
1.22.59 2022-02-21
1.22.58 2022-02-18
1.22.57 2022-02-17
1.22.56 2022-02-16
1.22.55 2022-02-14
1.22.54 2022-02-11
1.22.53 2022-02-10
1.22.52 2022-02-09
1.22.51 2022-02-08
1.22.50 2022-02-07
1.22.49 2022-02-04
1.22.48 2022-02-03
1.22.47 2022-02-02
1.22.46 2022-01-28
1.22.45 2022-01-27
1.22.44 2022-01-26
1.22.43 2022-01-25
1.22.42 2022-01-24
1.22.41 2022-01-21
1.22.40 2022-01-20
1.22.39 2022-01-19
1.22.38 2022-01-18
1.22.37 2022-01-15
1.22.36 2022-01-14
1.22.35 2022-01-13
1.22.34 2022-01-12
1.22.33 2022-01-11
1.22.32 2022-01-10
1.22.31 2022-01-07
1.22.30 2022-01-06
1.22.29 2022-01-05
1.22.28 2022-01-04
1.22.27 2022-01-03
1.22.26 2021-12-21
1.22.25 2021-12-20
1.22.24 2021-12-13
1.22.23 2021-12-09
1.22.22 2021-12-08
1.22.21 2021-12-06
1.22.20 2021-12-03
1.22.19 2021-12-02
1.22.18 2021-12-02
1.22.17 2021-12-01
1.22.16 2021-11-30
1.22.15 2021-11-29
1.22.14 2021-11-26
1.22.13 2021-11-24
1.22.12 2021-11-23
1.22.11 2021-11-22
1.22.10 2021-11-19
1.22.9 2021-11-18
1.22.8 2021-11-17
1.22.7 2021-11-16
1.22.6 2021-11-15
1.22.5 2021-11-12
1.22.4 2021-11-11
1.22.3 2021-11-10
1.22.2 2021-11-09
1.22.1 2021-11-08
1.22.0 2021-11-08
1.21.12 2021-11-05
1.21.11 2021-11-04
1.21.10 2021-11-03
1.21.9 2021-11-02
1.21.8 2021-11-01
1.21.7 2021-10-29
1.21.6 2021-10-28
1.21.5 2021-10-27
1.21.4 2021-10-26
1.21.3 2021-10-25
1.21.2 2021-10-22
1.21.1 2021-10-21
1.21.0 2021-10-20
1.20.65 2021-10-19
1.20.64 2021-10-18
1.20.63 2021-10-15
1.20.62 2021-10-14
1.20.61 2021-10-13
1.20.60 2021-10-12
1.20.59 2021-10-11
1.20.58 2021-10-08
1.20.57 2021-10-07
1.20.56 2021-10-06
1.20.55 2021-10-05
1.20.54 2021-10-04
1.20.53 2021-10-01
1.20.52 2021-09-30
1.20.51 2021-09-29
1.20.50 2021-09-28
1.20.49 2021-09-27
1.20.48 2021-09-24
1.20.47 2021-09-23
1.20.46 2021-09-22
1.20.45 2021-09-21
1.20.44 2021-09-17
1.20.43 2021-09-16
1.20.42 2021-09-14
1.20.41 2021-09-13
1.20.40 2021-09-10
1.20.39 2021-09-09
1.20.38 2021-09-08
1.20.37 2021-09-07
1.20.36 2021-09-03
1.20.35 2021-09-02
1.20.34 2021-09-01
1.20.33 2021-08-31
1.20.32 2021-08-30
1.20.31 2021-08-27
1.20.30 2021-08-26
1.20.29 2021-08-25
1.20.28 2021-08-24
1.20.27 2021-08-23
1.20.26 2021-08-20
1.20.25 2021-08-19
1.20.24 2021-08-18
1.20.23 2021-08-17
1.20.22 2021-08-16
1.20.21 2021-08-13
1.20.20 2021-08-12
1.20.19 2021-08-11
1.20.18 2021-08-10
1.20.17 2021-08-09
1.20.16 2021-08-06
1.20.15 2021-08-05
1.20.14 2021-08-04
1.20.13 2021-08-03
1.20.12 2021-08-02
1.20.11 2021-07-30
1.20.10 2021-07-29
1.20.9 2021-07-28
1.20.8 2021-07-27
1.20.7 2021-07-26
1.20.6 2021-07-23
1.20.5 2021-07-22
1.20.4 2021-07-21
1.20.3 2021-07-20
1.20.2 2021-07-19
1.20.1 2021-07-16
1.20.0 2021-07-15
1.19.112 2021-07-14
1.19.111 2021-07-13
1.19.110 2021-07-12
1.19.109 2021-07-09
1.19.108 2021-07-08
1.19.107 2021-07-07
1.19.106 2021-07-06
1.19.105 2021-07-02
1.19.104 2021-07-01
1.19.103 2021-06-30
1.19.102 2021-06-28
1.19.101 2021-06-25
1.19.100 2021-06-24
1.19.99 2021-06-23
1.19.98 2021-06-21
1.19.97 2021-06-17
1.19.96 2021-06-16
1.19.95 2021-06-15
1.19.94 2021-06-14
1.19.93 2021-06-11
1.19.92 2021-06-10
1.19.91 2021-06-09
1.19.90 2021-06-08
1.19.89 2021-06-07
1.19.88 2021-06-04
1.19.87 2021-06-03
1.19.86 2021-06-02
1.19.85 2021-06-01
1.19.84 2021-05-28
1.19.83 2021-05-27
1.19.82 2021-05-27
1.19.81 2021-05-26
1.19.80 2021-05-25
1.19.79 2021-05-24
1.19.78 2021-05-21
1.19.77 2021-05-20
1.19.76 2021-05-19
1.19.75 2021-05-18
1.19.74 2021-05-17
1.19.73 2021-05-14
1.19.72 2021-05-12
1.19.71 2021-05-11
1.19.70 2021-05-10
1.19.69 2021-05-07
1.19.68 2021-05-06
1.19.67 2021-05-05
1.19.66 2021-05-05
1.19.65 2021-05-04
1.19.64 2021-05-03
1.19.63 2021-05-03
1.19.62 2021-04-30
1.19.61 2021-04-29
1.19.60 2021-04-28
1.19.59 2021-04-27
1.19.58 2021-04-26
1.19.57 2021-04-23
1.19.56 2021-04-22
1.19.55 2021-04-21
1.19.54 2021-04-19
1.19.53 2021-04-15
1.19.52 2021-04-14
1.19.51 2021-04-13
1.19.50 2021-04-12
1.19.49 2021-04-09
1.19.48 2021-04-08
1.19.47 2021-04-07
1.19.46 2021-04-06
1.19.45 2021-04-05
1.19.44 2021-04-02
1.19.43 2021-04-01
1.19.42 2021-03-31
1.19.41 2021-03-30
1.19.40 2021-03-29
1.19.39 2021-03-26
1.19.38 2021-03-26
1.19.37 2021-03-25
1.19.36 2021-03-24
1.19.35 2021-03-23
1.19.34 2021-03-22
1.19.33 2021-03-19
1.19.32 2021-03-19
1.19.31 2021-03-18
1.19.30 2021-03-17
1.19.29 2021-03-16
1.19.28 2021-03-15
1.19.27 2021-03-12
1.19.26 2021-03-11
1.19.25 2021-03-10
1.19.24 2021-03-09
1.19.23 2021-03-08
1.19.22 2021-03-05
1.19.21 2021-03-04
1.19.20 2021-03-03
1.19.19 2021-03-02
1.19.18 2021-03-01
1.19.17 2021-02-26
1.19.16 2021-02-25
1.19.15 2021-02-24
1.19.14 2021-02-23
1.19.13 2021-02-22
1.19.12 2021-02-19
1.19.11 2021-02-18
1.19.10 2021-02-17
1.19.9 2021-02-16
1.19.8 2021-02-15
1.19.7 2021-02-12
1.19.6 2021-02-11
1.19.5 2021-02-09
1.19.4 2021-02-08
1.19.3 2021-02-05
1.19.2 2021-02-04
1.19.1 2021-02-03
1.19.0 2021-02-02
1.18.223 2021-01-29
1.18.222 2021-01-28
1.18.221 2021-01-27
1.18.220 2021-01-26
1.18.219 2021-01-22
1.18.218 2021-01-21
1.18.217 2021-01-19
1.18.216 2021-01-15
1.18.215 2021-01-14
1.18.214 2021-01-13
1.18.213 2021-01-12
1.18.212 2021-01-11
1.18.211 2021-01-07
1.18.210 2021-01-06
1.18.209 2021-01-05
1.18.208 2021-01-04
1.18.207 2020-12-31
1.18.206 2020-12-30
1.18.205 2020-12-29
1.18.204 2020-12-28
1.18.203 2020-12-23
1.18.202 2020-12-22
1.18.201 2020-12-21
1.18.200 2020-12-18
1.18.199 2020-12-17
1.18.198 2020-12-16
1.18.197 2020-12-15
1.18.196 2020-12-14
1.18.195 2020-12-11
1.18.194 2020-12-10
1.18.193 2020-12-09
1.18.192 2020-12-08
1.18.191 2020-12-07
1.18.190 2020-12-04
1.18.189 2020-12-03
1.18.188 2020-12-02
1.18.187 2020-12-01
1.18.186 2020-12-01
1.18.185 2020-11-24
1.18.184 2020-11-23
1.18.183 2020-11-20
1.18.182 2020-11-19
1.18.181 2020-11-18
1.18.180 2020-11-17
1.18.179 2020-11-16
1.18.178 2020-11-13
1.18.177 2020-11-12
1.18.176 2020-11-11
1.18.175 2020-11-10
1.18.174 2020-11-09
1.18.173 2020-11-06
1.18.172 2020-11-05
1.18.171 2020-11-04
1.18.170 2020-11-02
1.18.169 2020-10-30
1.18.168 2020-10-29
1.18.167 2020-10-28
1.18.166 2020-10-27
1.18.165 2020-10-26
1.18.164 2020-10-23
1.18.163 2020-10-22
1.18.162 2020-10-21
1.18.161 2020-10-20
1.18.160 2020-10-19
1.18.159 2020-10-16
1.18.158 2020-10-15
1.18.157 2020-10-09
1.18.156 2020-10-08
1.18.155 2020-10-07
1.18.154 2020-10-06
1.18.153 2020-10-05
1.18.152 2020-10-02
1.18.151 2020-10-01
1.18.150 2020-09-30
1.18.149 2020-09-29
1.18.148 2020-09-29
1.18.147 2020-09-25
1.18.146 2020-09-24
1.18.145 2020-09-23
1.18.144 2020-09-22
1.18.143 2020-09-21
1.18.142 2020-09-18
1.18.141 2020-09-17
1.18.140 2020-09-16
1.18.139 2020-09-15
1.18.138 2020-09-15
1.18.137 2020-09-11
1.18.136 2020-09-10
1.18.135 2020-09-09
1.18.134 2020-09-08
1.18.133 2020-09-04
1.18.132 2020-09-03
1.18.131 2020-09-02
1.18.130 2020-09-01
1.18.129 2020-08-31
1.18.128 2020-08-28
1.18.127 2020-08-27
1.18.126 2020-08-26
1.18.125 2020-08-24
1.18.124 2020-08-20
1.18.123 2020-08-19
1.18.122 2020-08-18
1.18.121 2020-08-17
1.18.120 2020-08-14
1.18.119 2020-08-13
1.18.118 2020-08-12
1.18.117 2020-08-11
1.18.116 2020-08-10
1.18.115 2020-08-07
1.18.114 2020-08-06
1.18.113 2020-08-05
1.18.112 2020-08-04
1.18.111 2020-08-03
1.18.110 2020-07-31
1.18.109 2020-07-30
1.18.108 2020-07-29
1.18.107 2020-07-28
1.18.106 2020-07-27
1.18.105 2020-07-24
1.18.104 2020-07-23
1.18.103 2020-07-22
1.18.102 2020-07-21
1.18.101 2020-07-20
1.18.100 2020-07-17
1.18.99 2020-07-16
1.18.98 2020-07-15
1.18.97 2020-07-09
1.18.96 2020-07-08
1.18.95 2020-07-07
1.18.94 2020-07-06
1.18.93 2020-07-02
1.18.92 2020-07-01
1.18.91 2020-06-30
1.18.90 2020-06-29
1.18.89 2020-06-26
1.18.88 2020-06-25
1.18.87 2020-06-24
1.18.86 2020-06-23
1.18.85 2020-06-22
1.18.84 2020-06-19
1.18.83 2020-06-18
1.18.82 2020-06-17
1.18.81 2020-06-16
1.18.80 2020-06-15
1.18.79 2020-06-12
1.18.78 2020-06-11
1.18.77 2020-06-10
1.18.76 2020-06-09
1.18.75 2020-06-08
1.18.74 2020-06-05
1.18.73 2020-06-04
1.18.72 2020-06-03
1.18.71 2020-06-02
1.18.70 2020-06-01
1.18.69 2020-05-28
1.18.68 2020-05-27
1.18.67 2020-05-26
1.18.66 2020-05-22
1.18.65 2020-05-21
1.18.64 2020-05-20
1.18.63 2020-05-19
1.18.62 2020-05-18
1.18.61 2020-05-15
1.18.60 2020-05-14
1.18.59 2020-05-13
1.18.58 2020-05-12
1.18.57 2020-05-11
1.18.56 2020-05-08
1.18.55 2020-05-07
1.18.54 2020-05-06
1.18.53 2020-05-05
1.18.52 2020-05-04
1.18.51 2020-05-01
1.18.50 2020-04-30
1.18.49 2020-04-29
1.18.48 2020-04-28
1.18.47 2020-04-27
1.18.46 2020-04-24
1.18.45 2020-04-23
1.18.44 2020-04-22
1.18.43 2020-04-21
1.18.42 2020-04-20
1.18.41 2020-04-17
1.18.40 2020-04-16
1.18.39 2020-04-08
1.18.38 2020-04-07
1.18.37 2020-04-06
1.18.36 2020-04-03
1.18.35 2020-04-02
1.18.34 2020-04-01
1.18.33 2020-03-31
1.18.32 2020-03-30
1.18.31 2020-03-27
1.18.30 2020-03-26
1.18.29 2020-03-25
1.18.28 2020-03-24
1.18.27 2020-03-23
1.18.26 2020-03-20
1.18.25 2020-03-19
1.18.24 2020-03-18
1.18.23 2020-03-17
1.18.22 2020-03-16
1.18.21 2020-03-13
1.18.20 2020-03-12
1.18.19 2020-03-11
1.18.18 2020-03-10
1.18.17 2020-03-09
1.18.16 2020-03-06
1.18.15 2020-03-05
1.18.14 2020-03-04
1.18.13 2020-03-03
1.18.12 2020-03-02
1.18.11 2020-02-29
1.18.10 2020-02-28
1.18.9 2020-02-27
1.18.8 2020-02-26
1.18.7 2020-02-25
1.18.6 2020-02-24
1.18.5 2020-02-21
1.18.4 2020-02-21
1.18.3 2020-02-19
1.18.2 2020-02-18
1.18.1 2020-02-17
1.18.0 2020-02-14
1.17.17 2020-02-13
1.17.16 2020-02-12
1.17.15 2020-02-11
1.17.14 2020-02-10
1.17.13 2020-02-07
1.17.12 2020-02-06
1.17.11 2020-02-05
1.17.10 2020-02-04
1.17.9 2020-01-24
1.17.8 2020-01-23
1.17.7 2020-01-21
1.17.6 2020-01-20
1.17.5 2020-01-17
1.17.4 2020-01-17
1.17.3 2020-01-15
1.17.2 2020-01-14
1.17.1 2020-01-13
1.17.0 2020-01-10
1.16.314 2020-01-09
1.16.313 2020-01-08
1.16.312 2020-01-07
1.16.311 2020-01-06
1.16.310 2020-01-02
1.16.309 2019-12-23
1.16.308 2019-12-20
1.16.307 2019-12-19
1.16.306 2019-12-18
1.16.305 2019-12-17
1.16.304 2019-12-16
1.16.303 2019-12-13
1.16.302 2019-12-12
1.16.301 2019-12-11
1.16.300 2019-12-10
1.16.299 2019-12-09
1.16.298 2019-12-06
1.16.297 2019-12-05
1.16.296 2019-12-04
1.16.295 2019-12-03
1.16.294 2019-12-03
1.16.293 2019-12-02
1.16.292 2019-11-26
1.16.291 2019-11-25
1.16.290 2019-11-22
1.16.289 2019-11-21
1.16.288 2019-11-21
1.16.287 2019-11-20
1.16.286 2019-11-20
1.16.285 2019-11-19
1.16.284 2019-11-18
1.16.283 2019-11-15
1.16.282 2019-11-14
1.16.281 2019-11-13
1.16.280 2019-11-12
1.16.279 2019-11-11
1.16.278 2019-11-08
1.16.277 2019-11-07
1.16.276 2019-11-07
1.16.275 2019-11-06
1.16.274 2019-11-05
1.16.273 2019-11-04
1.16.272 2019-11-01
1.16.271 2019-10-31
1.16.270 2019-10-30
1.16.269 2019-10-29
1.16.268 2019-10-28
1.16.267 2019-10-28
1.16.266 2019-10-24
1.16.265 2019-10-23
1.16.264 2019-10-22
1.16.263 2019-10-18
1.16.262 2019-10-17
1.16.261 2019-10-16
1.16.260 2019-10-15
1.16.259 2019-10-14
1.16.258 2019-10-11
1.16.257 2019-10-10
1.16.256 2019-10-09
1.16.255 2019-10-08
1.16.254 2019-10-07
1.16.253 2019-10-04
1.16.252 2019-10-03
1.16.251 2019-10-02
1.16.250 2019-10-01
1.16.249 2019-09-30
1.16.248 2019-09-27
1.16.247 2019-09-26
1.16.246 2019-09-25
1.16.245 2019-09-24
1.16.244 2019-09-23
1.16.243 2019-09-20
1.16.242 2019-09-19
1.16.241 2019-09-18
1.16.240 2019-09-17
1.16.239 2019-09-16
1.16.238 2019-09-12
1.16.237 2019-09-11
1.16.236 2019-09-10
1.16.235 2019-09-09
1.16.234 2019-09-06
1.16.233 2019-09-05
1.16.232 2019-09-04
1.16.231 2019-09-03
1.16.230 2019-08-30
1.16.229 2019-08-29
1.16.228 2019-08-28
1.16.227 2019-08-27
1.16.226 2019-08-26
1.16.225 2019-08-23
1.16.224 2019-08-22
1.16.223 2019-08-21
1.16.222 2019-08-20
1.16.221 2019-08-19
1.16.220 2019-08-16
1.16.219 2019-08-15
1.16.218 2019-08-14
1.16.217 2019-08-13
1.16.216 2019-08-12
1.16.215 2019-08-09
1.16.214 2019-08-08
1.16.213 2019-08-07
1.16.212 2019-08-06
1.16.211 2019-08-05
1.16.210 2019-08-02
1.16.209 2019-07-30
1.16.208 2019-07-29
1.16.207 2019-07-26
1.16.206 2019-07-25
1.16.205 2019-07-24
1.16.204 2019-07-23
1.16.203 2019-07-22
1.16.202 2019-07-21
1.16.201 2019-07-19
1.16.200 2019-07-18
1.16.199 2019-07-17
1.16.198 2019-07-12
1.16.197 2019-07-11
1.16.196 2019-07-10
1.16.195 2019-07-09
1.16.194 2019-07-08
1.16.193 2019-07-03
1.16.192 2019-07-02
1.16.191 2019-07-01
1.16.190 2019-06-28
1.16.189 2019-06-27
1.16.188 2019-06-27
1.16.187 2019-06-26
1.16.186 2019-06-25
1.16.185 2019-06-24
1.16.184 2019-06-21
1.16.183 2019-06-20
1.16.182 2019-06-19
1.16.181 2019-06-18
1.16.180 2019-06-17
1.16.179 2019-06-14
1.16.178 2019-06-13
1.16.177 2019-06-12
1.16.176 2019-06-11
1.16.175 2019-06-10
1.16.174 2019-06-07
1.16.173 2019-06-06
1.16.172 2019-06-05
1.16.171 2019-06-04
1.16.170 2019-06-03
1.16.169 2019-05-30
1.16.168 2019-05-29
1.16.167 2019-05-28
1.16.166 2019-05-24
1.16.165 2019-05-23
1.16.164 2019-05-22
1.16.163 2019-05-21
1.16.162 2019-05-20
1.16.161 2019-05-17
1.16.160 2019-05-16
1.16.159 2019-05-15
1.16.158 2019-05-14
1.16.157 2019-05-13
1.16.156 2019-05-11
1.16.155 2019-05-08
1.16.154 2019-05-07
1.16.153 2019-05-06
1.16.152 2019-05-03
1.16.151 2019-05-02
1.16.150 2019-05-01
1.16.149 2019-04-30
1.16.148 2019-04-29
1.16.147 2019-04-26
1.16.146 2019-04-25
1.16.145 2019-04-24
1.16.144 2019-04-19
1.16.143 2019-04-18
1.16.142 2019-04-17
1.16.141 2019-04-16
1.16.140 2019-04-05
1.16.139 2019-04-04
1.16.138 2019-04-03
1.16.137 2019-04-02
1.16.136 2019-04-01
1.16.135 2019-03-29
1.16.134 2019-03-29
1.16.133 2019-03-27
1.16.132 2019-03-26
1.16.131 2019-03-25
1.16.130 2019-03-22
1.16.129 2019-03-21
1.16.128 2019-03-20
1.16.127 2019-03-19
1.16.126 2019-03-18
1.16.125 2019-03-14
1.16.124 2019-03-13
1.16.123 2019-03-12
1.16.122 2019-03-11
1.16.121 2019-03-08
1.16.120 2019-03-07
1.16.119 2019-03-06
1.16.118 2019-03-05
1.16.117 2019-03-04
1.16.116 2019-03-01
1.16.115 2019-02-28
1.16.114 2019-02-27
1.16.113 2019-02-26
1.16.112 2019-02-25
1.16.111 2019-02-22
1.16.110 2019-02-21
1.16.109 2019-02-20
1.16.108 2019-02-19
1.16.107 2019-02-18
1.16.106 2019-02-15
1.16.105 2019-02-14
1.16.104 2019-02-13
1.16.103 2019-02-12
1.16.102 2019-02-12
1.16.101 2019-02-08
1.16.100 2019-02-08
1.16.99 2019-02-06
1.16.98 2019-02-05
1.16.97 2019-02-04
1.16.96 2019-01-25
1.16.95 2019-01-25
1.16.94 2019-01-23
1.16.93 2019-01-21
1.16.92 2019-01-18
1.16.91 2019-01-17
1.16.90 2019-01-16
1.16.89 2019-01-14
1.16.88 2019-01-11
1.16.87 2019-01-10
1.16.86 2019-01-09
1.16.85 2019-01-07
1.16.84 2019-01-04
1.16.83 2019-01-03
1.16.82 2019-01-03
1.16.81 2018-12-21
1.16.80 2018-12-21
1.16.79 2018-12-19
1.16.78 2018-12-19
1.16.77 2018-12-17
1.16.76 2018-12-14
1.16.75 2018-12-13
1.16.74 2018-12-12
1.16.73 2018-12-12
1.16.72 2018-12-07
1.16.71 2018-12-06
1.16.70 2018-12-05
1.16.69 2018-12-04
1.16.68 2018-12-03
1.16.67 2018-11-30
1.16.66 2018-11-29
1.16.65 2018-11-29
1.16.64 2018-11-28
1.16.63 2018-11-28
1.16.62 2018-11-27
1.16.61 2018-11-26
1.16.60 2018-11-21
1.16.59 2018-11-21
1.16.58 2018-11-20
1.16.57 2018-11-16
1.16.56 2018-11-16
1.16.55 2018-11-14
1.16.54 2018-11-13
1.16.53 2018-11-13
1.16.52 2018-11-10
1.16.51 2018-11-08
1.16.50 2018-11-07
1.16.49 2018-11-06
1.16.48 2018-11-06
1.16.47 2018-11-02
1.16.46 2018-11-01
1.16.45 2018-10-31
1.16.44 2018-10-30
1.16.43 2018-10-26
1.16.42 2018-10-25
1.16.41 2018-10-24
1.16.40 2018-10-23
1.16.39 2018-10-23
1.16.38 2018-10-19
1.16.37 2018-10-18
1.16.36 2018-10-17
1.16.35 2018-10-16
1.16.34 2018-10-15
1.16.33 2018-10-12
1.16.32 2018-10-11
1.16.31 2018-10-11
1.16.30 2018-10-09
1.16.29 2018-10-08
1.16.28 2018-10-05
1.16.27 2018-10-04
1.16.26 2018-10-02
1.16.25 2018-10-01
1.16.24 2018-09-28
1.16.23 2018-09-27
1.16.22 2018-09-26
1.16.21 2018-09-25
1.16.20 2018-09-24
1.16.19 2018-09-21
1.16.18 2018-09-20
1.16.17 2018-09-20
1.16.16 2018-09-18
1.16.15 2018-09-17
1.16.14 2018-09-13
1.16.13 2018-09-12
1.16.12 2018-09-11
1.16.11 2018-09-10
1.16.10 2018-09-07
1.16.9 2018-09-06
1.16.8 2018-09-05
1.16.7 2018-09-04
1.16.6 2018-08-31
1.16.5 2018-08-30
1.16.4 2018-08-29
1.16.3 2018-08-28
1.16.2 2018-08-28
1.16.1 2018-08-25
1.16.0 2018-08-25
1.15.85 2018-08-23
1.15.84 2018-08-22
1.15.83 2018-08-21
1.15.82 2018-08-20
1.15.81 2018-08-17
1.15.80 2018-08-17
1.15.79 2018-08-16
1.15.78 2018-08-15
1.15.77 2018-08-14
1.15.76 2018-08-10
1.15.75 2018-08-09
1.15.74 2018-08-08
1.15.73 2018-08-07
1.15.72 2018-08-06
1.15.71 2018-08-03
1.15.70 2018-08-02
1.15.69 2018-08-01
1.15.68 2018-07-31
1.15.67 2018-07-30
1.15.66 2018-07-26
1.15.65 2018-07-25
1.15.64 2018-07-24
1.15.63 2018-07-20
1.15.62 2018-07-19
1.15.61 2018-07-18
1.15.60 2018-07-17
1.15.59 2018-07-13
1.15.58 2018-07-12
1.15.57 2018-07-11
1.15.56 2018-07-10
1.15.55 2018-07-10
1.15.54 2018-07-09
1.15.53 2018-07-06
1.15.52 2018-07-05
1.15.51 2018-07-03
1.15.50 2018-07-02
1.15.49 2018-06-29
1.15.48 2018-06-28
1.15.47 2018-06-27
1.15.46 2018-06-26
1.15.45 2018-06-23
1.15.44 2018-06-22
1.15.43 2018-06-21
1.15.42 2018-06-20
1.15.41 2018-06-19
1.15.40 2018-06-15
1.15.39 2018-06-14
1.15.38 2018-06-13
1.15.37 2018-06-12
1.15.36 2018-06-11
1.15.35 2018-06-08
1.15.34 2018-06-07
1.15.33 2018-06-05
1.15.32 2018-06-05
1.15.31 2018-06-01
1.15.30 2018-05-31
1.15.29 2018-05-29
1.15.28 2018-05-25
1.15.27 2018-05-24
1.15.26 2018-05-22
1.15.25 2018-05-21
1.15.24 2018-05-18
1.15.23 2018-05-17
1.15.22 2018-05-16
1.15.21 2018-05-15
1.15.20 2018-05-14
1.15.19 2018-05-11
1.15.18 2018-05-10
1.15.17 2018-05-10
1.15.16 2018-05-08
1.15.15 2018-05-07
1.15.14 2018-05-04
1.15.13 2018-05-03
1.15.12 2018-05-02
1.15.11 2018-04-30
1.15.10 2018-04-26
1.15.9 2018-04-25
1.15.8 2018-04-24
1.15.7 2018-04-23
1.15.6 2018-04-20
1.15.5 2018-04-20
1.15.4 2018-04-10
1.15.3 2018-04-10
1.15.2 2018-04-06
1.15.1 2018-04-05
1.15.0 2018-04-04
1.14.70 2018-04-03
1.14.69 2018-04-03
1.14.68 2018-03-30
1.14.67 2018-03-29
1.14.66 2018-03-28
1.14.65 2018-03-27
1.14.64 2018-03-26
1.14.63 2018-03-23
1.14.62 2018-03-22
1.14.61 2018-03-22
1.14.60 2018-03-21
1.14.59 2018-03-20
1.14.58 2018-03-16
1.14.57 2018-03-15
1.14.56 2018-03-14
1.14.55 2018-03-13
1.14.54 2018-03-12
1.14.53 2018-03-08
1.14.52 2018-03-08
1.14.51 2018-03-06
1.14.50 2018-03-01
1.14.49 2018-02-28
1.14.48 2018-02-27
1.14.47 2018-02-27
1.14.46 2018-02-23
1.14.45 2018-02-22
1.14.44 2018-02-21
1.14.43 2018-02-20
1.14.42 2018-02-19
1.14.41 2018-02-17
1.14.40 2018-02-15
1.14.39 2018-02-15
1.14.38 2018-02-13
1.14.37 2018-02-13
1.14.36 2018-02-09
1.14.35 2018-02-08
1.14.34 2018-02-06
1.14.33 2018-02-06
1.14.32 2018-01-26
1.14.31 2018-01-25
1.14.30 2018-01-23
1.14.29 2018-01-19
1.14.28 2018-01-18
1.14.27 2018-01-17
1.14.26 2018-01-17
1.14.25 2018-01-16
1.14.24 2018-01-12
1.14.23 2018-01-11
1.14.22 2018-01-09
1.14.21 2018-01-09
1.14.20 2018-01-09
1.14.19 2018-01-05
1.14.18 2018-01-02
1.14.17 2017-12-29
1.14.16 2017-12-22
1.14.15 2017-12-22
1.14.14 2017-12-20
1.14.13 2017-12-19
1.14.12 2017-12-19
1.14.11 2017-12-15
1.14.10 2017-12-14
1.14.9 2017-12-12
1.14.8 2017-12-12
1.14.7 2017-12-08
1.14.6 2017-12-07
1.14.5 2017-12-06
1.14.4 2017-12-05
1.14.3 2017-12-04
1.14.2 2017-11-30
1.14.1 2017-11-30
1.14.0 2017-11-29
1.13.0 2017-11-29
1.12.2 2017-11-27
1.12.1 2017-11-23
1.12.0 2017-11-22
1.11.190 2017-11-21
1.11.189 2017-11-18
1.11.188 2017-11-17
1.11.187 2017-11-15
1.11.186 2017-11-15
1.11.185 2017-11-09
1.11.184 2017-11-08
1.11.183 2017-11-07
1.11.182 2017-11-07
1.11.181 2017-11-03
1.11.180 2017-11-03
1.11.179 2017-11-02
1.11.178 2017-10-26
1.11.177 2017-10-25
1.11.176 2017-10-23
1.11.175 2017-10-20
1.11.174 2017-10-19
1.11.173 2017-10-18
1.11.172 2017-10-17
1.11.171 2017-10-16
1.11.170 2017-10-12
1.11.169 2017-10-11
1.11.168 2017-10-10
1.11.167 2017-10-07
1.11.166 2017-10-05
1.11.165 2017-10-04
1.11.164 2017-10-03
1.11.163 2017-10-02
1.11.162 2017-09-29
1.11.161 2017-09-27
1.11.160 2017-09-26
1.11.159 2017-09-25
1.11.158 2017-09-21
1.11.157 2017-09-21
1.11.156 2017-09-19
1.11.155 2017-09-18
1.11.154 2017-09-15
1.11.153 2017-09-14
1.11.152 2017-09-13
1.11.151 2017-09-12
1.11.150 2017-09-11
1.11.149 2017-09-08
1.11.148 2017-09-07
1.11.147 2017-09-06
1.11.146 2017-09-05
1.11.145 2017-09-01
1.11.144 2017-09-01
1.11.143 2017-08-30
1.11.142 2017-08-29
1.11.141 2017-08-25
1.11.140 2017-08-24
1.11.139 2017-08-23
1.11.138 2017-08-22
1.11.137 2017-08-21
1.11.136 2017-08-16
1.11.135 2017-08-15
1.11.134 2017-08-14
1.11.133 2017-08-12
1.11.132 2017-08-10
1.11.131 2017-08-09
1.11.130 2017-08-08
1.11.129 2017-08-01
1.11.128 2017-08-01
1.11.127 2017-07-27
1.11.126 2017-07-26
1.11.125 2017-07-25
1.11.124 2017-07-24
1.11.123 2017-07-21
1.11.122 2017-07-19
1.11.121 2017-07-17
1.11.120 2017-07-14
1.11.119 2017-07-13
1.11.118 2017-07-12
1.11.117 2017-07-06
1.11.116 2017-07-05
1.11.115 2017-06-30
1.11.114 2017-06-29
1.11.113 2017-06-28
1.11.112 2017-06-23
1.11.111 2017-06-22
1.11.110 2017-06-22
1.11.109 2017-06-20
1.11.108 2017-06-19
1.11.107 2017-06-16
1.11.106 2017-06-16
1.11.105 2017-06-14
1.11.104 2017-06-13
1.11.103 2017-06-13
1.11.102 2017-06-09
1.11.101 2017-06-08
1.11.100 2017-06-07
1.11.99 2017-06-06
1.11.98 2017-06-05
1.11.97 2017-06-03
1.11.96 2017-06-01
1.11.95 2017-05-31
1.11.94 2017-05-30
1.11.93 2017-05-25
1.11.92 2017-05-24
1.11.91 2017-05-23
1.11.90 2017-05-22
1.11.89 2017-05-18
1.11.88 2017-05-17
1.11.87 2017-05-16
1.11.86 2017-05-15
1.11.85 2017-05-11
1.11.84 2017-05-09
1.11.83 2017-05-05
1.11.82 2017-04-28
1.11.81 2017-04-26
1.11.80 2017-04-21
1.11.79 2017-04-20
1.11.78 2017-04-19
1.11.77 2017-04-18
1.11.76 2017-04-11
1.11.75 2017-04-07
1.11.74 2017-04-06
1.11.73 2017-04-05
1.11.72 2017-04-04
1.11.71 2017-04-03
1.11.70 2017-03-31
1.11.69 2017-03-31
1.11.68 2017-03-28
1.11.67 2017-03-27
1.11.66 2017-03-23
1.11.65 2017-03-22
1.11.64 2017-03-21
1.11.63 2017-03-14
1.11.62 2017-03-13
1.11.61 2017-03-10
1.11.60 2017-03-09
1.11.59 2017-03-09
1.11.58 2017-03-08
1.11.57 2017-03-07
1.11.56 2017-02-28
1.11.55 2017-02-24
1.11.54 2017-02-23
1.11.53 2017-02-22
1.11.52 2017-02-21
1.11.51 2017-02-17
1.11.50 2017-02-16
1.11.49 2017-02-15
1.11.48 2017-02-14
1.11.47 2017-02-11
1.11.46 2017-02-09
1.11.45 2017-02-08
1.11.44 2017-01-27
1.11.43 2017-01-25
1.11.42 2017-01-25
1.11.41 2017-01-20
1.11.40 2017-01-19
1.11.39 2017-01-18
1.11.38 2017-01-17
1.11.37 2017-01-16
1.11.36 2017-01-04
1.11.35 2016-12-30
1.11.34 2016-12-22
1.11.33 2016-12-22
1.11.32 2016-12-21
1.11.31 2016-12-20
1.11.30 2016-12-16
1.11.29 2016-12-15
1.11.28 2016-12-08
1.11.27 2016-12-07
1.11.26 2016-12-06
1.11.25 2016-12-06
1.11.24 2016-12-01
1.11.23 2016-11-30
1.11.22 2016-11-29
1.11.21 2016-11-23
1.11.20 2016-11-22
1.11.19 2016-11-19
1.11.18 2016-11-18
1.11.17 2016-11-16
1.11.16 2016-11-15
1.11.15 2016-11-15
1.11.14 2016-11-11
1.11.13 2016-11-03
1.11.12 2016-11-02
1.11.11 2016-11-01
1.11.10 2016-10-25
1.11.9 2016-10-24
1.11.8 2016-10-21
1.11.7 2016-10-18
1.11.6 2016-10-17
1.11.5 2016-10-15
1.11.4 2016-10-14
1.11.3 2016-10-12
1.11.2 2016-10-06
1.11.1 2016-10-04
1.11.0 2016-09-30
1.10.67 2016-09-27
1.10.66 2016-09-21
1.10.65 2016-09-16
1.10.64 2016-09-14
1.10.63 2016-09-08
1.10.62 2016-09-07
1.10.61 2016-09-01
1.10.60 2016-08-30
1.10.59 2016-08-23
1.10.58 2016-08-19
1.10.57 2016-08-16
1.10.56 2016-08-11
1.10.54 2016-08-09
1.10.53 2016-08-04
1.10.52 2016-08-03
1.10.51 2016-07-29
1.10.50 2016-07-26
1.10.49 2016-07-21
1.10.48 2016-07-20
1.10.47 2016-07-13
1.10.46 2016-07-08
1.10.45 2016-07-06
1.10.44 2016-06-30
1.10.43 2016-06-29
1.10.42 2016-06-28
1.10.41 2016-06-24
1.10.40 2016-06-22
1.10.39 2016-06-22
1.10.38 2016-06-14
1.10.37 2016-06-10
1.10.36 2016-06-07
1.10.35 2016-06-03
1.10.34 2016-05-26
1.10.33 2016-05-24
1.10.32 2016-05-19
1.10.31 2016-05-19
1.10.30 2016-05-18
1.10.29 2016-05-18
1.10.28 2016-05-12
1.10.27 2016-05-10
1.10.26 2016-05-05
1.10.25 2016-05-04
1.10.24 2016-04-28
1.10.23 2016-04-26
1.10.22 2016-04-21
1.10.21 2016-04-19
1.10.20 2016-04-11
1.10.19 2016-04-08
1.10.18 2016-04-06
1.10.17 2016-03-29
1.10.16 2016-03-24
1.10.15 2016-03-22
1.10.14 2016-03-18
1.10.13 2016-03-16
1.10.12 2016-03-11
1.10.11 2016-03-08
1.10.10 2016-03-03
1.10.9 2016-03-02
1.10.8 2016-02-26
1.10.7 2016-02-23
1.10.6 2016-02-19
1.10.5 2016-02-17
1.10.4 2016-02-12
1.10.3 2016-02-10
1.10.2 2016-02-09
1.10.1 2016-01-29
1.10.0 2016-01-21
1.9.21 2016-01-20
1.9.20 2016-01-15
1.9.19 2016-01-15
1.9.18 2016-01-12
1.9.17 2016-01-07
1.9.16 2016-01-06
1.9.15 2015-12-21
1.9.14 2015-12-18
1.9.13 2015-12-16
1.9.12 2015-12-09
1.9.11 2015-12-04
1.9.10 2015-12-02
1.9.9 2015-11-24
1.9.8 2015-11-19
1.9.7 2015-11-12
1.9.6 2015-11-11
1.9.5 2015-11-04
1.9.4 2015-11-03
1.9.3 2015-11-02
1.9.2 2015-10-29
1.9.1 2015-10-26
1.9.0 2015-10-23
1.8.13 2015-10-15
1.8.12 2015-10-08
1.8.11 2015-10-07
1.8.10 2015-10-06
1.8.9 2015-10-01
1.8.8 2015-09-30
1.8.7 2015-09-24
1.8.6 2015-09-18
1.8.5 2015-09-16
1.8.4 2015-09-15
1.8.3 2015-09-10
1.8.2 2015-09-03
1.8.1 2015-08-31
1.8.0 2015-08-28
1.7.47 2015-08-25
1.7.46 2015-08-20
1.7.45 2015-08-12
1.7.44 2015-08-06
1.7.43 2015-08-04
1.7.42 2015-07-30
1.7.41 2015-07-28
1.7.40 2015-07-24
1.7.39 2015-07-14
1.7.38 2015-07-09
1.7.37 2015-07-07
1.7.36 2015-06-24
1.7.35 2015-06-18
1.7.34 2015-06-12
1.7.33 2015-06-11
1.7.32 2015-06-04
1.7.31 2015-05-28
1.7.30 2015-05-26
1.7.29 2015-05-21
1.7.28 2015-05-18
1.7.27 2015-05-14
1.7.26 2015-05-07
1.7.25 2015-04-27
1.7.24 2015-04-23
1.7.23 2015-04-16
1.7.22 2015-04-10
1.7.21 2015-04-09
1.7.20 2015-04-07
1.7.19 2015-04-02
1.7.18 2015-03-26
1.7.17 2015-03-25
1.7.16 2015-03-24
1.7.15 2015-03-19
1.7.14 2015-03-12
1.7.13 2015-03-05
1.7.12 2015-02-24
1.7.11 2015-02-19
1.7.10 2015-02-18
1.7.9 2015-02-17
1.7.8 2015-02-14
1.7.7 2015-02-12
1.7.6 2015-02-11
1.7.5 2015-02-05
1.7.4 2015-01-27
1.7.3 2015-01-20
1.7.2 2015-01-20
1.7.1 2015-01-16
1.7.0 2015-01-08
1.6.10 2014-12-18
1.6.9 2014-12-12
1.6.8 2014-12-09
1.6.7 2014-12-09
1.6.6 2014-12-04
1.6.5 2014-11-26
1.6.4 2014-11-22
1.6.3 2014-11-21
1.6.2 2014-11-13
1.6.1 2014-11-12
1.6.0 2014-11-11
1.5.6 2014-11-07
1.5.5 2014-11-04
1.5.4 2014-10-27
1.5.3 2014-10-23
1.5.2 2014-10-17
1.5.1 2014-10-08
1.5.0 2014-10-06
1.4.4 2014-09-17
1.4.3 2014-09-11
1.4.2 2014-08-14
1.4.1 2014-08-11
1.4.0 2014-08-07
1.3.25 2014-07-31
1.3.24 2014-07-24
1.3.23 2014-07-16
1.3.22 2014-07-10
1.3.21 2014-07-01
1.3.20 2014-06-26
1.3.19 2014-06-25
1.3.18 2014-06-20
1.3.17 2014-06-13
1.3.16 2014-06-06
1.3.15 2014-06-04
1.3.14 2014-06-03
1.3.13 2014-05-27
1.3.12 2014-05-20
1.3.11 2014-05-15
1.3.10 2014-05-12
1.3.9 2014-05-06
1.3.8 2014-04-24
1.3.7 2014-04-21
1.3.6 2014-04-02
1.3.5 2014-04-01
1.3.4 2014-03-26
1.3.3 2014-03-25
1.3.2 2014-03-20
1.3.1 2014-03-06
1.3.0 2014-02-28
1.2.13 2014-02-06
1.2.12 2014-01-30
1.2.11 2014-01-23
1.2.10 2014-01-09
1.2.9 2013-12-20
1.2.8 2013-12-12
1.2.7 2013-12-06
1.2.6 2013-11-26
1.2.5 2013-11-13
1.2.4 2013-11-08
1.2.3 2013-10-31
1.2.2 2013-10-29
1.2.1 2013-10-24
1.2.0 2013-10-18
1.1.2 2013-10-09
1.1.1 2013-10-02
1.1.0 2013-09-18
1.0.0 2013-09-03
0.16.0 2013-08-30
0.15.0 2013-08-23
0.14.1 2013-08-13
0.14.0 2013-08-13
0.13.2 2013-07-18
0.13.1 2013-07-18
0.13.0 2013-07-18
0.12.0 2013-06-05
0.11.0 2013-05-25
0.10.1 2013-05-16
0.9.3 2013-05-05
0.9.2 2013-04-23
0.9.1 2013-04-12
0.8.3 2013-04-03
0.8.2 2013-03-15
0.8.1 2013-03-11
0.8.0 2013-03-11
0.7.0 2013-02-22
0.6.0 2013-02-19
0.5.3 2013-02-15
0.5.2 2013-02-15
0.5.1 2013-01-31
0.5.0 2013-01-26
0.4.5 2013-01-03
0.4.4 2012-12-21
0.4.3 2012-12-21
0.4.2 2012-12-21
0.4.1 2012-12-21