Stripe.net 48.5.0-beta.2

Prefix Reserved
This is a prerelease version of Stripe.net.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Stripe.net --version 48.5.0-beta.2
                    
NuGet\Install-Package Stripe.net -Version 48.5.0-beta.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Stripe.net" Version="48.5.0-beta.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stripe.net" Version="48.5.0-beta.2" />
                    
Directory.Packages.props
<PackageReference Include="Stripe.net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stripe.net --version 48.5.0-beta.2
                    
#r "nuget: Stripe.net, 48.5.0-beta.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Stripe.net@48.5.0-beta.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stripe.net&version=48.5.0-beta.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Stripe.net&version=48.5.0-beta.2&prerelease
                    
Install as a Cake Tool

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 3.1+, and .NET Framework 4.6.1+.

Installation

Using the .NET Core command-line interface (CLI) tools:

dotnet add package Stripe.net

Using the NuGet Command Line Interface (CLI):

nuget install Stripe.net

Using the Package Manager Console:

Install-Package Stripe.net

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "Stripe.net".
  5. Click on the Stripe.net package, select the appropriate version in the right-tab and click Install.

Documentation

For a comprehensive list of examples, check out the API documentation. See video demonstrations covering how to use the library.

Usage

Using StripeClient

In version 46 of the Stripe .NET SDK, we have enhanced the StripeClient class to be the entry point to access all services that had to be previously independently instantiated with global configuration. This improves discoverability during IDE auto-completion and creates a more intuitive developer experience for you.

Each client instantiation can have its own configuration so you can access Stripe API with different API keys or different configuration (like number of retries) on a per client basis and without changing a global configuration.

// StripeClient pattern (Recommended)
var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Get("cus_1234");

// Global Configuration pattern (Legacy)
StripeConfiguration.ApiKey = "sk_test_...";
var service = new CustomerService();
Customer customer = service.Get("cus_1234");

The previous global configuration pattern will continue to be supported.

Authentication

Stripe authenticates API requests using your account’s secret key, which you can find in the Stripe Dashboard. By default, secret keys can be used to perform any API request without restriction.

var client = new StripeClient("sk_test_...");

Creating a resource

The Create method of the service class can be used to create a new resource:

var options = new CustomerCreateOptions
{
    Email = "customer@example.com"
};

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Create(options);

// Newly created customer is returned
Console.WriteLine(customer.Email);

Retrieve a resource

The Retrieve method of the service class can be used to retrieve a resource:

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Get("cus_1234");

Console.WriteLine(customer.Email);

Updating a resource

The Update method of the service class can be used to update a resource:

var options = new CustomerUpdateOptions
{
    Email = "updated-email@example.com"
};

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Update("cus_123", options);

// The updated customer is returned
Console.WriteLine(customer.Email);

Deleting a resource

The Delete method of the service class can be used to delete a resource:

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Delete("cus_123", options);

Listing a resource

The List method on the service class can be used to list resources page-by-page.

NOTE The List method returns only a single page, you have to manually continue the iteration using the StartingAfter parameter.

var client = new StripeClient("sk_test_...");
var customers = client.V1.Customers.List();

string lastId = null;

// Enumerate the first page of the list
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

customers = service.List(new CustomerListOptions()
{
    StartingAfter = lastId,
});

// Enumerate the subsequent page
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

Listing a resource with auto-pagination

The ListAutoPaging method on the service class can be used to automatically iterate over all pages.

var client = new StripeClient("sk_test_...");
var customers = client.V1.Customers.ListAutoPaging();

// Enumerate all pages of the list
foreach (Customer customer in customers)
{
   Console.WriteLine(customer.Email);
}

Per-request configuration

All the service methods accept an optional RequestOptions object. This is used if you want to set an idempotency key, if you are using Stripe Connect, or if you want to pass the secret API key on each method.

var requestOptions = new RequestOptions();
requestOptions.ApiKey = "SECRET API KEY";
requestOptions.IdempotencyKey = "SOME STRING";
requestOptions.StripeAccount = "CONNECTED ACCOUNT ID";

Using a custom HttpClient

You can configure the library with your own custom HttpClient:

StripeConfiguration.StripeClient = new StripeClient(
    apiKey,
    httpClient: new SystemNetHttpClient(httpClient));

Please refer to the Advanced client usage wiki page to see more examples of using custom clients, e.g. for using a proxy server, a custom message handler, etc.

Automatic retries

The library automatically retries requests on intermittent failures like on a connection error, timeout, or on certain API responses like a status 409 Conflict. Idempotency keys are always added to requests to make any such subsequent retries safe.

By default, it will perform up to two retries. That number can be configured with StripeConfiguration.MaxNetworkRetries:

StripeConfiguration.MaxNetworkRetries = 0; // Zero retries

How to use undocumented parameters and properties

stripe-dotnet is a typed library and it supports all public properties or parameters.

Stripe sometimes has beta features which introduce new properties or parameters that are not immediately public. The library does not support these properties or parameters until they are public but there is still an approach that allows you to use them.

Parameters

To pass undocumented parameters to Stripe using stripe-dotnet you need to use the AddExtraParam() method, as shown below:

var options = new CustomerCreateOptions
{
    Email = "jenny.rosen@example.com"
}
options.AddExtraParam("secret_feature_enabled", "true");
options.AddExtraParam("secret_parameter[primary]", "primary value");
options.AddExtraParam("secret_parameter[secondary]", "secondary value");

var client = new StripeClient("sk_test_...");
var customer = client.V1.Customers.Create(options);
Properties

To retrieve undocumented properties from Stripe using C# you can use an option in the library to return the raw JSON object and return the property. An example of this is shown below:

var client = new StripeClient("sk_test_...");
var customer = client.V1.Customers.Get("cus_1234");

customer.RawJObject["secret_feature_enabled"];
customer.RawJObject["secret_parameter"]["primary"];
customer.RawJObject["secret_parameter"]["secondary"];

This is only supported on objects returned directly from the Stripe.net SDK. If you are serializing Stripe objects to JSON you will need to handle undocumented properties separately.

Writing a plugin

If you're writing a plugin that uses the library, we'd appreciate it if you identified using StripeConfiguration.AppInfo:

StripeConfiguration.AppInfo = new AppInfo
{
    Name = "MyAwesomePlugin",
    Url = "https://myawesomeplugin.info",
    Version = "1.2.34",
};

This information is passed along when the library makes calls to the Stripe API. Note that while Name is always required, Url and Version are optional.

Telemetry

By default, the library sends telemetry to Stripe regarding request latency and feature usage. These numbers help Stripe improve the overall latency of its API for all users, and improve popular features.

You can disable this behavior if you prefer:

StripeConfiguration.EnableTelemetry = false;

Serializing Stripe resources to JSON

Stripe resources returned from a Stripe .NET library method can be serialized to a JSON string, which will contain all publicly documented fields for that object (see Serialization and RawJObject below):

Newtonsoft Json.NET
using Newtonsoft.Json;

...

var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonConvert.SerializeObject(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }

If you are using .NET 6 or above, you can also use System.Text.Json to serialize the same string value:

System.Text.Json
using System.Text.Json;
...
var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonSerializer.Serialize(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }
ASP.NET

If you are using .NET 6 or have installed the [Microsoft.AspNetCore.Mvc.NewtonsoftJson][https://www.nuget.org/packages/microsoft.aspnetcore.mvc.newtonsoftjson] package, you can return Stripe objects from ASP.NET controller methods:

using System.Text.Json;

public class HomeController : Controller
{
...
    public IActionResult Index()
    {
        return Json(_client.V1.Customers.List());
      // { "data": [{"id": "cus_1234", "name": "Jenny Rosen"}, ...], "has_more": false }
    }
}
Serialization and RawJObject

The RawJObject property is ignored on serialization in both Json.NET and System.Text.Json, which means that if you serialize a SDK response to a JSON string and the deserialize it back into a Stripe object, this property may be null or empty. If you rely on RawJObject you will need to serialize those values separately.

Public Preview SDKs

Stripe has features in the public preview phase that can be accessed via versions of this package that have the -beta.X suffix like 45.1.0-beta.2. We would love for you to try these as we incrementally release new features and improve them based on your feedback.

To install, choose the version that includes support for the preview feature you are interested in by reviewing the releases page and then use it in the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <replace-with-the-version-of-your-choice>

Note There can be breaking changes between two versions of the public preview SDKs without a bump in the major version. Therefore we recommend pinning the package version to a specific version in your project file. This way you can install the same version each time without breaking changes unless you are intentionally looking for the latest public preview SDK.

Some preview features require a name and version to be set in the Stripe-Version header like feature_beta=v3. If your preview feature has this requirement, use the StripeConfiguration.AddBetaVersion function (available only in the public preview SDKs):

StripeConfiguration.AddBetaVersion("feature_beta", "v3");

Custom requests

If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the RawRequestAsync method on StripeClient.

StripeClient client = new StripeClient();
StripeResponse response = await client.RawRequestAsync(HttpMethod.Get, "/v1/accounts/acc_123");

// Optionally use Deserialize to convert the response to strongly-typed object.
Account account = client.Deserialize<Account>(response.Content)

Support

New features and bug fixes are released on the latest major version of the Stripe .NET client library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.

Development

Contribution guidelines for this project

.NET 8 is required to build and test Stripe.net SDK, you can install it from get.dot.net.

The test suite depends on stripe-mock, so make sure to fetch and run it from a background terminal (stripe-mock's README also contains instructions for installing via Homebrew and other methods):

go install github.com/stripe/stripe-mock@latest
stripe-mock

Lastly, we use just for running common development tasks. You can also read the justfile and run those commands directly.

Run all tests from the src/StripeTests directory:

just test
# or: dotnet test src

Run some tests, filtering by name:

dotnet test src --filter FullyQualifiedName~InvoiceServiceTest

Run tests for a single target framework:

dotnet test src --framework net8.0

The library uses dotnet-format for code formatting. Code must be formatted before PRs are submitted, otherwise CI will fail. Run the formatter with:

just format
# or: dotnet format src/Stripe.net.sln

For any requests, bug or comments, please open an issue or submit a pull request.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (133)

Showing the top 5 NuGet packages that depend on Stripe.net:

Package Downloads
OElite.Common

Package Description

ImmediaC.SimpleCms

ASP.NET Core based CMS

N3O.Umbraco.Payments.Stripe

TODO

Soenneker.Stripe.Client

A .NET typesafe implementation of Stripe's StripeClient

JTigerNova.Web.Lib.Service.ThirdParty

Third Party library of web service functions

GitHub repositories (25)

Showing the top 20 popular GitHub repositories that depend on Stripe.net:

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
exceptionless/Exceptionless
Exceptionless application
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
NiclasOlofsson/MiNET
A (not so) basic Minecraft Pocket Edition server written in C#
bhrugen/Bulky_MVC
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
Librum-Reader/Librum-Server
The Librum server
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
bhrugen/Bulky
bhrugen/Mango_Microservices
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
TryCatchLearn/Skinet3.1
TryCatchLearn/Skinet-v6
Course repository for the Skinet app created on .Net 5.0 and Angular 11
TryCatchLearn/skinet
DevBetterCom/DevBetterWeb
A simple web application for devBetter
RemiBou/Toss.Blazor
Experimental project using AspNetCore Blazor
Version Downloads Last Updated
48.6.0-beta.1 58 8/27/2025
48.6.0-alpha.1 43 8/27/2025
48.5.0 531 8/27/2025
48.5.0-beta.2 567 8/8/2025
48.5.0-beta.1 894 7/30/2025
48.4.0 79,471 7/30/2025
48.4.0-beta.2 812 7/9/2025
48.4.0-beta.1 426 7/1/2025
48.3.0 126,351 7/1/2025
48.3.0-beta.2 268 6/26/2025
48.3.0-beta.1 7,130 5/28/2025
48.2.0 210,666 5/28/2025
48.2.0-beta.2 8,781 4/30/2025
48.2.0-beta.1 162 4/30/2025
48.1.0 227,922 4/30/2025
48.1.0-beta.4 4,362 4/17/2025
48.1.0-beta.3 1,385 4/10/2025
48.1.0-beta.2 5,215 4/2/2025
48.0.2 95,361 4/15/2025
48.0.1 8,220 4/14/2025
48.0.0 137,507 4/1/2025
47.5.0-beta.1 3,211 3/18/2025
47.4.0 626,953 2/24/2025
47.4.0-beta.1 21,824 2/7/2025
47.3.0 410,325 1/27/2025
47.3.0-beta.3 9,588 1/23/2025
47.3.0-beta.2 611 1/18/2025
47.3.0-beta.1 5,055 1/9/2025
47.2.0 397,152 12/18/2024
47.2.0-beta.3 1,718 12/12/2024
47.2.0-beta.2 612 12/5/2024
47.2.0-beta.1 18,158 11/21/2024
47.1.0 479,256 11/20/2024
47.1.0-beta.3 3,435 11/15/2024
47.1.0-beta.2 1,334 11/7/2024
47.1.0-beta.1 4,224 10/29/2024
47.0.0 444,217 10/29/2024
46.3.0-beta.1 12,134 10/18/2024
46.2.2 21,244 10/29/2024
46.2.1 183,220 10/18/2024
46.2.0 199,078 10/9/2024
46.2.0-beta.3 1,437 10/8/2024
46.1.0 75,080 10/3/2024
46.0.0 37,565 10/1/2024
45.15.0-beta.1 13,710 9/18/2024
45.14.0 571,457 9/18/2024
45.13.0 76,287 9/13/2024
45.12.0 3,404 9/13/2024
45.12.0-beta.1 1,774 9/5/2024
45.11.0 139,158 9/5/2024
45.10.0 133,636 8/29/2024
45.10.0-beta.1 3,315 8/23/2024
45.9.0 83,383 8/23/2024
45.9.0-beta.2 206 8/22/2024
45.9.0-beta.1 4,580 8/15/2024
45.8.0 121,231 8/15/2024
45.8.0-beta.1 2,418 8/12/2024
45.7.0 91,675 8/9/2024
45.7.0-beta.1 4,606 8/1/2024
45.6.0 118,009 8/1/2024
45.6.0-beta.1 5,543 7/25/2024
45.5.0 108,327 7/25/2024
45.4.0 123,806 7/18/2024
45.3.0 181,364 7/11/2024
45.3.0-beta.1 61,520 7/5/2024
45.2.0 108,681 7/5/2024
45.2.0-beta.1 3,438 6/27/2024
45.1.0 124,863 6/27/2024
45.0.0 152,961 6/24/2024
44.13.0 309,017 6/17/2024
44.13.0-beta.1 3,352 6/13/2024
44.12.0 70,053 6/13/2024
44.12.0-beta.1 428 6/6/2024
44.11.0 123,503 6/6/2024
44.11.0-beta.1 2,138 5/30/2024
44.10.0 281,593 5/30/2024
44.10.0-beta.1 6,724 5/23/2024
44.9.0 120,173 5/23/2024
44.9.0-beta.1 2,371 5/16/2024
44.8.0 97,740 5/16/2024
44.7.0 123,532 5/9/2024
44.7.0-beta.1 203 5/9/2024
44.6.0 6,885 5/9/2024
44.6.0-beta.1 2,002 5/2/2024
44.5.0 104,901 5/2/2024
44.5.0-beta.1 7,953 4/25/2024
44.4.0 130,909 4/25/2024
44.4.0-beta.1 1,209 4/18/2024
44.3.0 190,246 4/18/2024
44.2.0 46,677 4/16/2024
44.2.0-beta.1 768 4/12/2024
44.1.0 176,078 4/11/2024
44.0.0 154,092 4/10/2024
43.23.0 80,221 4/9/2024
43.23.0-beta.1 2,750 4/4/2024
43.22.0 102,108 4/4/2024
43.22.0-beta.1 34,682 3/28/2024
43.21.0 118,900 3/28/2024
43.21.0-beta.1 1,221 3/21/2024
43.20.0 226,184 3/21/2024
43.20.0-beta.1 602 3/14/2024
43.19.0 168,904 3/14/2024
43.19.0-beta.1 10,834 3/8/2024
43.18.0 122,600 3/7/2024
43.18.0-beta.1 1,240 2/29/2024
43.17.0 86,521 2/29/2024
43.17.0-beta.1 9,804 2/22/2024
43.16.0 92,494 2/22/2024
43.16.0-beta.1 4,880 2/16/2024
43.15.0 138,026 2/16/2024
43.15.0-beta.1 1,247 2/8/2024
43.14.0 137,396 2/8/2024
43.14.0-beta.1 1,448 2/2/2024
43.13.0 221,097 2/1/2024
43.13.0-beta.1 1,385 1/26/2024
43.12.0 137,765 1/25/2024
43.12.0-beta.1 3,556 1/18/2024
43.11.0 132,640 1/18/2024
43.11.0-beta.1 436 1/12/2024
43.10.0 78,052 1/12/2024
43.10.0-beta.1 1,612 1/4/2024
43.9.0 122,142 1/4/2024
43.9.0-beta.1 2,236 12/22/2023
43.8.0 103,574 12/22/2023
43.8.0-beta.1 1,011 12/15/2023
43.7.0 127,611 12/15/2023
43.7.0-beta.1 528 12/8/2023
43.6.0 180,241 12/7/2023
43.6.0-beta.1 633 11/30/2023
43.5.0 84,967 11/30/2023
43.5.0-beta.1 2,767 11/21/2023
43.4.0 271,751 11/21/2023
43.4.0-beta.1 2,970 11/17/2023
43.3.0 110,456 11/17/2023
43.3.0-beta.1 943 11/10/2023
43.2.0 137,557 11/9/2023
43.2.0-beta.1 482 11/2/2023
43.1.0 134,289 11/2/2023
43.1.0-beta.2 1,085 10/26/2023
43.1.0-beta.1 1,422 10/17/2023
43.0.0 338,231 10/16/2023
42.10.0 35,486 10/16/2023
42.10.0-beta.1 1,784 10/11/2023
42.9.0 72,301 10/11/2023
42.9.0-beta.1 2,161 10/5/2023
42.8.0 104,057 10/5/2023
42.8.0-beta.1 1,036 9/29/2023
42.7.0 103,006 9/28/2023
42.7.0-beta.1 9,295 9/22/2023
42.6.0 136,055 9/21/2023
42.6.0-beta.1 4,117 9/15/2023
42.5.0 90,801 9/15/2023
42.5.0-beta.1 2,899 9/7/2023
42.4.0 96,140 9/7/2023
42.4.0-beta.1 1,205 9/1/2023
42.3.0 74,124 8/31/2023
42.2.0 126,760 8/24/2023
42.1.0 69,960 8/17/2023
42.0.0 17,777 8/16/2023
42.0.0-beta.1 228 8/24/2023
41.29.0-beta.1 4,859 8/11/2023
41.28.0 258,875 8/11/2023
41.28.0-beta.1 2,208 8/3/2023
41.27.0 109,573 8/3/2023
41.27.0-beta.1 1,775 7/28/2023
41.26.0 104,027 7/27/2023
41.25.0 121,211 7/20/2023
41.25.0-beta.1 992 7/13/2023
41.24.0 102,408 7/13/2023
41.23.0 121,300 7/6/2023
41.23.0-beta.1 6,809 6/30/2023
41.22.0 95,191 6/29/2023
41.22.0-beta.1 451 6/22/2023
41.21.0 111,361 6/22/2023
41.21.0-beta.2 2,849 6/15/2023
41.21.0-beta.1 506 6/8/2023
41.20.0 198,634 6/8/2023
41.20.0-beta.1 639 6/1/2023
41.19.0 132,035 6/1/2023
41.19.0-beta.1 2,752 5/25/2023
41.18.0 332,939 5/25/2023
41.18.0-beta.1 615 5/19/2023
41.17.0 105,549 5/19/2023
41.17.0-beta.1 1,981 5/11/2023
41.16.0 3,273,999 5/11/2023
41.16.0-beta.1 921 5/5/2023
41.15.0 129,752 5/4/2023
41.15.0-beta.1 783 4/27/2023
41.14.0 161,858 4/27/2023
41.14.0-beta.3 725 4/20/2023
41.14.0-beta.2 1,667 4/13/2023
41.14.0-beta.1 1,372 4/6/2023
41.13.0 428,209 4/6/2023
41.13.0-beta.1 2,832 3/30/2023
41.12.0 142,913 3/30/2023
41.12.0-beta.1 888 3/24/2023
41.11.0 106,280 3/23/2023
41.11.0-beta.1 5,043 3/17/2023
41.10.0 98,713 3/17/2023
41.10.0-beta.1 2,317 3/9/2023
41.9.0 310,962 3/9/2023
41.9.0-beta.1 8,676 3/3/2023
41.8.0 80,170 3/2/2023
41.8.0-beta.2 999 2/24/2023
41.8.0-beta.1 1,950 2/17/2023
41.7.0 215,936 2/16/2023
41.7.0-beta.1 5,964 2/2/2023
41.6.0 283,728 2/2/2023
41.6.0-beta.2 674 1/27/2023
41.6.0-beta.1 1,334 1/19/2023
41.5.0 224,887 1/19/2023
41.5.0-beta.2 485 1/12/2023
41.5.0-beta.1 4,834 1/5/2023
41.4.0 233,970 1/5/2023
41.4.0-beta.1 1,461 12/22/2022
41.3.0 131,278 12/22/2022
41.3.0-beta.2 4,701 12/16/2022
41.3.0-beta.1 4,371 12/8/2022
41.2.0 212,066 12/6/2022
41.1.0 391,446 11/17/2022
41.0.0 48,280 11/16/2022
40.17.0-beta.1 1,002 11/10/2022
40.16.0 305,610 11/8/2022
40.15.0 259,657 11/3/2022
40.15.0-beta.2 644 11/2/2022
40.15.0-beta.1 4,582 10/22/2022
40.14.0 188,248 10/20/2022
40.14.0-beta.1 1,046 10/14/2022
40.13.0 235,381 10/13/2022
40.13.0-beta.1 2,332 10/7/2022
40.12.0 82,124 10/6/2022
40.12.0-beta.2 338 10/4/2022
40.12.0-beta.1 303 10/4/2022
40.11.0 105,915 9/29/2022
40.11.0-beta.1 1,012 9/26/2022
40.10.0 111,687 9/22/2022
40.9.0 138,912 9/15/2022
40.8.0 129,670 9/9/2022
40.7.0 84,572 9/6/2022
40.6.0 147,898 8/31/2022
40.5.0 79,489 8/26/2022
40.5.0-beta.1 704 8/26/2022
40.4.0 214,471 8/23/2022
40.4.0-beta.1 812 8/23/2022
40.3.0 159,672 8/19/2022
40.3.0-beta.1 513 8/11/2022
40.2.0 125,805 8/11/2022
40.1.0 69,600 8/9/2022
40.1.0-beta.1 361 8/3/2022
40.0.0 287,850 8/2/2022
39.126.0 568,032 7/26/2022
39.125.0 104,770 7/25/2022
39.125.0-beta.1 427 7/22/2022
39.124.0 164,609 7/18/2022
39.123.0 259,670 7/12/2022
39.123.0-beta.1 1,791 7/7/2022
39.122.0 115,524 7/7/2022
39.121.0 285,604 6/29/2022
39.120.0 103,216 6/23/2022
39.119.0 134,633 6/17/2022
39.119.0-beta.1 484 6/15/2022
39.118.0 144,527 6/9/2022
39.117.0 46,146 6/8/2022
39.116.0 103,937 6/1/2022
39.115.0 99,738 5/26/2022
39.114.0 127,849 5/23/2022
39.113.0 11,775 5/23/2022
39.112.0 37,333 5/20/2022
39.111.0 308,561 5/11/2022
39.110.0 223,648 5/5/2022
39.109.0 8,802 5/5/2022
39.108.0 30,106 5/3/2022
39.107.0 136,276 4/21/2022
39.106.0 349,237 4/20/2022
39.105.0 251,502 4/13/2022
39.104.0 185,261 4/8/2022
39.103.0 206,962 4/1/2022
39.102.0 30,594 3/30/2022
39.101.0 18,366 3/29/2022
39.100.0 70,118 3/25/2022
39.99.0 62,629 3/23/2022
39.98.0 71,504 3/18/2022
39.97.0 201,646 3/11/2022
39.96.0 93,081 3/9/2022
39.95.0 131,330 3/2/2022
39.94.0 7,806 3/2/2022
39.93.0 59,251 2/26/2022
39.92.0 36,777 2/23/2022
39.91.0 497,579 2/16/2022
39.90.0 140,043 2/6/2022
39.89.0 327,398 1/25/2022
39.88.0 96,097 1/20/2022
39.87.0 13,482 1/19/2022
39.86.0 59,824 1/13/2022
39.85.0 33,101 1/12/2022
39.84.0 281,586 12/22/2021
39.83.0 105,062 12/15/2021
39.82.0 66,336 12/9/2021
39.81.0 10,870 12/9/2021
39.80.0 556,067 11/20/2021
39.79.0 20,606 11/17/2021
39.78.1 11,285 11/16/2021
39.78.0 3,561 11/16/2021
39.77.0 45,754 11/11/2021
39.76.0 124,481 11/4/2021
39.75.1 5,801 11/4/2021
39.75.0 144,335 11/1/2021
39.74.0 254,967 10/20/2021
39.73.0 122,325 10/11/2021
39.72.0 7,860 10/11/2021
39.71.0 26,557 10/7/2021
39.70.0 74,917 9/29/2021
39.69.0 67,889 9/24/2021
39.68.0 212,967 9/16/2021
39.67.0 7,115 9/15/2021
39.66.0 129,617 9/2/2021
39.65.0 4,850 9/1/2021
39.64.0 210,585 8/27/2021
39.63.0 245,968 8/11/2021
39.62.0 167,800 7/28/2021
39.61.0 124,307 7/22/2021
39.60.0 19,487 7/21/2021
39.59.0 239,233 7/14/2021
39.58.0 62,391 7/9/2021
39.57.0 97,303 6/30/2021
39.56.1 5,560 6/30/2021
39.56.0 9,415 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 43,100 6/25/2021
39.54.0 70,029 6/16/2021
39.53.0 346,633 6/7/2021
39.52.0 32,705 6/4/2021
39.51.0 62,622 6/4/2021
39.50.0 222,278 5/26/2021
39.49.0 89,577 5/20/2021
39.48.0 174,358 5/7/2021
39.47.0 49,753 5/6/2021
39.46.0 4,156 5/5/2021
39.45.0 142,115 4/16/2021
39.44.0 159,791 4/12/2021
39.43.0 138,496 4/3/2021
39.42.0 153,047 3/31/2021
39.41.0 122,987 3/26/2021
39.40.0 182,745 3/22/2021
39.39.0 220,868 3/1/2021
39.38.0 296,256 2/23/2021
39.37.0 86,474 2/18/2021
39.36.0 14,966 2/17/2021
39.35.0 103,198 2/9/2021
39.34.0 137,013 2/3/2021
39.33.0 241,132 1/21/2021
39.32.0 138,824 1/7/2021
39.31.0 278,977 12/16/2020
39.30.0 67,187 12/11/2020
39.29.0 179,749 12/4/2020
39.28.0 211,412 11/24/2020
39.27.0 53,546 11/20/2020
39.26.0 15,124 11/19/2020
39.25.0 26,575 11/18/2020
39.24.0 9,420 11/18/2020
39.23.0 215,462 11/9/2020
39.22.0 45,327 11/4/2020
39.21.0 76,903 10/29/2020
39.20.0 25,317 10/27/2020
39.19.0 37,812 10/26/2020
39.18.0 15,661 10/23/2020
39.17.0 14,200 10/23/2020
39.16.0 121,587 10/14/2020
39.15.0 20,892 10/13/2020
39.14.0 5,191 10/12/2020
39.13.0 23,456 10/9/2020
39.12.0 25,594 10/9/2020
39.11.0 121,433 10/3/2020
39.10.0 40,099 9/30/2020
39.9.0 17,736 9/30/2020
39.8.0 18,008 9/29/2020
39.7.0 46,169 9/25/2020
39.6.0 27,932 9/23/2020
39.5.0 55,022 9/22/2020
39.4.0 111,605 9/13/2020
39.3.0 95,451 9/8/2020
39.2.0 50,476 9/3/2020
39.1.2 49,859 9/1/2020
37.35.0 456,892 8/27/2020
37.34.0 123,320 8/19/2020
37.33.0 41,219 8/18/2020
37.32.0 8,737 8/17/2020
37.31.0 25,658 8/13/2020
37.30.0 74,544 8/7/2020
37.29.0 34,788 8/6/2020
37.28.0 14,428 8/4/2020
37.27.0 77,703 7/29/2020
37.26.0 136,629 7/25/2020
37.25.0 6,174 7/25/2020
37.24.0 22,332 7/22/2020
37.23.0 9,244 7/21/2020
37.22.0 5,427 7/21/2020
37.21.0 10,655 7/21/2020
37.20.0 14,875 7/18/2020
37.19.0 6,955 7/17/2020
37.18.0 85,663 7/15/2020
37.17.0 42,395 7/13/2020
37.16.0 103,969 7/6/2020
37.15.1 37,286 7/3/2020
37.15.0 32,512 7/1/2020
37.14.0 198,990 6/25/2020
37.13.0 40,608 6/23/2020
37.12.0 35,801 6/22/2020
37.11.0 15,903 6/18/2020
37.10.0 89,720 6/11/2020
37.9.0 10,233 6/11/2020
37.8.0 219,097 6/3/2020
37.7.0 4,410 6/3/2020
37.6.0 56,944 5/29/2020
37.5.0 31,339 5/28/2020
37.4.0 155,247 5/22/2020
37.3.0 86,991 5/21/2020
37.2.0 4,431 5/20/2020
37.1.0 70,971 5/19/2020
37.0.0 68,625 5/18/2020
36.12.2 77,582 5/14/2020
36.12.1 4,150 5/14/2020
36.12.0 4,272 5/13/2020
36.11.0 79,234 5/12/2020
36.10.0 17,739 5/11/2020
36.9.0 27,579 5/8/2020
36.8.1 39,039 5/5/2020
36.8.0 30,819 5/1/2020
36.7.0 17,696 4/29/2020
36.6.0 29,996 4/24/2020
36.5.0 23,493 4/22/2020
36.4.0 4,597 4/22/2020
36.3.0 8,906 4/21/2020
36.2.0 21,000 4/18/2020
36.1.0 17,453 4/17/2020
36.0.0 12,870 4/16/2020
35.17.0 35,205 4/14/2020
35.16.0 20,988 4/13/2020
35.15.0 6,468 4/13/2020
35.14.0 15,860 4/10/2020
35.13.0 5,401 4/9/2020
35.12.1 195,203 4/8/2020
35.12.0 53,415 4/3/2020
35.11.1 223,714 3/31/2020
35.11.0 36,606 3/31/2020
35.10.0 53,704 3/26/2020
35.9.0 42,386 3/25/2020
35.8.0 7,801 3/24/2020
35.7.1 6,316 3/23/2020
35.7.0 37,415 3/20/2020
35.6.0 307,937 3/13/2020
35.5.0 7,212 3/12/2020
35.4.0 5,375 3/12/2020
35.3.0 90,735 3/5/2020
35.2.0 4,578 3/4/2020
35.1.0 7,150 3/4/2020
35.0.0 26,733 3/4/2020
34.26.0 114,379 2/24/2020
34.25.0 21,599 2/21/2020
34.24.0 9,059 2/21/2020
34.23.0 127,728 2/17/2020
34.22.0 37,113 2/13/2020
34.21.0 5,501 2/12/2020
34.20.1 10,426 2/12/2020
34.20.0 89,311 2/6/2020
34.19.0 49,569 2/3/2020
34.18.0 55,950 1/31/2020
34.17.0 59,047 1/25/2020
34.16.1 12,428 1/22/2020
34.16.0 43,320 1/17/2020
34.15.0 281,821 1/15/2020
34.14.0 7,220 1/14/2020
34.13.0 60,420 1/10/2020
34.12.0 24,648 1/6/2020
34.11.0 15,676 1/4/2020
34.10.1 9,105 1/3/2020
34.10.0 30,197 12/31/2019
34.9.0 107,797 12/24/2019
34.8.0 33,661 12/21/2019
34.7.0 10,088 12/19/2019
34.6.0 31,587 12/17/2019
34.5.0 59,108 12/13/2019
34.4.0 7,500 12/12/2019
34.3.0 30,994 12/9/2019
34.2.0 4,195 12/9/2019
34.1.0 102,574 12/4/2019
34.0.0 21,573 12/4/2019
33.9.0 47,387 12/2/2019
33.8.0 35,767 11/26/2019
33.7.0 20,957 11/25/2019
33.6.0 19,527 11/22/2019
33.5.0 8,994 11/21/2019
33.4.0 14,391 11/19/2019
33.3.0 75,560 11/8/2019
33.2.0 9,570 11/7/2019
33.1.0 13,810 11/6/2019
33.0.0 27,416 11/6/2019
32.2.0 33,646 11/4/2019
32.1.3 38,836 10/28/2019
32.1.2 8,281 10/25/2019
32.1.1 3,652 10/24/2019
32.1.0 14,861 10/24/2019
32.0.0 22,412 10/19/2019
31.2.0 5,436 10/18/2019
31.1.0 114,438 10/11/2019
31.0.0 5,459 10/10/2019
30.1.0 47,787 10/10/2019
30.0.1 5,690 10/9/2019
30.0.0 39,817 10/9/2019
29.6.0 54,745 10/3/2019
29.5.0 63,597 9/27/2019
29.4.0 21,925 9/26/2019
29.3.0 10,340 9/26/2019
29.2.1 29,107 9/23/2019
29.2.0 39,284 9/19/2019
29.1.0 164,699 9/13/2019
29.0.1 12,594 9/12/2019
29.0.0 93,890 9/10/2019
28.11.0 49,365 9/9/2019
28.10.0 93,473 9/4/2019
28.9.0 21,498 9/3/2019
28.8.0 326,594 8/30/2019
28.7.0 4,910 8/29/2019
28.6.0 177,074 8/27/2019
28.5.0 57,420 8/23/2019
28.4.0 21,578 8/21/2019
28.3.0 17,365 8/20/2019
28.2.0 160,446 8/16/2019
28.1.0 48,419 8/15/2019
28.0.0 58,173 8/14/2019
27.25.1 13,680 8/14/2019
27.24.0 61,612 8/9/2019
27.23.0 10,097 8/8/2019
27.22.0 4,162 8/8/2019
27.21.0 135,997 8/2/2019
27.20.0 30,534 8/1/2019
27.19.0 33,711 7/31/2019
27.18.0 30,685 7/26/2019
27.17.0 13,346 7/25/2019
27.16.1 118,898 7/23/2019
27.16.0 59,147 7/22/2019
27.15.0 100,436 7/19/2019
27.14.0 35,821 7/18/2019
27.13.0 45,237 7/16/2019
27.12.0 5,727 7/15/2019
27.11.0 29,165 7/11/2019
27.10.0 20,644 7/10/2019
27.9.1 37,709 7/10/2019
27.9.0 37,440 7/5/2019
27.8.1 50,576 7/3/2019
27.8.0 8,842 7/2/2019
27.7.0 4,436 7/2/2019
27.6.0 6,240 7/1/2019
27.5.0 11,220 7/1/2019
27.4.0 24,209 6/26/2019
27.3.2 56,627 6/20/2019
27.3.1 24,677 6/18/2019
27.3.0 9,934 6/17/2019
27.2.0 31,949 6/14/2019
27.1.3 10,798 6/12/2019
27.1.2 11,625 6/11/2019
27.1.1 4,143 6/10/2019
27.1.0 4,727 6/10/2019
27.0.0 14,635 6/7/2019
26.1.0 22,267 6/6/2019
26.0.0 128,602 5/24/2019
25.19.1 20,570 5/22/2019
25.19.0 37,971 5/17/2019
25.18.0 18,630 5/14/2019
25.17.0 17,331 5/10/2019
25.16.1 19,324 5/8/2019
25.16.0 12,983 5/6/2019
25.15.0 52,637 5/4/2019
25.14.0 7,074 5/3/2019
25.13.0 25,818 4/30/2019
25.12.0 25,884 4/25/2019
25.11.0 3,971 4/24/2019
25.10.0 38,138 4/23/2019
25.9.0 18,807 4/18/2019
25.8.0 66,676 4/17/2019
25.7.1 4,564 4/16/2019
25.7.0 10,976 4/15/2019
25.6.0 36,136 4/10/2019
25.5.0 3,856 4/9/2019
25.4.0 14,390 4/5/2019
25.3.0 164,611 3/29/2019
25.2.0 28,791 3/25/2019
25.1.0 15,553 3/22/2019
25.0.0 28,568 3/19/2019
24.6.0 14,808 3/19/2019
24.5.0 41,757 3/14/2019
24.4.1 26,837 3/11/2019
24.3.0 40,109 3/7/2019
24.2.0 5,021 3/6/2019
24.1.0 38,085 2/28/2019
24.0.2 173,201 2/20/2019
24.0.1 4,641 2/20/2019
23.2.0 4,346 2/19/2019
23.1.0 7,009 2/18/2019
23.0.0 16,257 2/14/2019
22.9.0 10,847 2/12/2019
22.8.1 43,024 2/4/2019
22.8.0 91,383 1/25/2019
22.7.0 34,661 1/20/2019
22.6.0 7,295 1/18/2019
22.5.0 4,810 1/17/2019
22.4.0 30,769 1/10/2019
22.3.0 40,922 1/9/2019
22.2.0 4,447 1/9/2019
22.1.0 7,254 1/8/2019
22.0.0 11,620 1/7/2019
21.9.0 30,359 1/3/2019
21.8.1 5,342 1/3/2019
21.8.0 43,428 12/27/2018
21.7.1 14,709 12/21/2018
21.7.0 259,723 11/28/2018
21.6.0 13,552 11/27/2018
21.5.0 36,945 11/26/2018
21.4.1 29,498 11/16/2018
21.4.0 9,900 11/14/2018
21.3.0 4,385 11/14/2018
21.2.0 10,795 11/12/2018
21.1.0 11,899 11/9/2018
21.0.0 8,859 11/9/2018
20.4.1 10,601 11/8/2018
20.4.0 21,833 11/5/2018
20.3.0 10,317 10/31/2018
20.2.0 18,809 10/25/2018
20.1.0 20,696 10/23/2018
20.0.0 6,857 10/22/2018
19.10.0 271,831 10/9/2018
19.9.2 40,457 9/28/2018
19.9.1 10,544 9/27/2018
19.9.0 134,483 9/26/2018
19.8.0 17,343 9/24/2018
19.7.0 98,971 9/20/2018
19.6.0 48,716 9/11/2018
19.5.0 22,330 9/6/2018
19.4.0 6,378 9/6/2018
19.3.0 19,307 9/4/2018
19.2.0 27,331 8/29/2018
19.1.0 9,450 8/28/2018
19.0.1 5,712 8/27/2018
18.0.0 29,255 8/23/2018
17.11.0 27,571 8/23/2018
17.10.0 15,572 8/21/2018
17.9.0 15,214 8/16/2018
17.8.0 330,325 8/3/2018
17.7.0 43,771 7/31/2018
17.6.0 33,959 7/27/2018
17.5.0 8,142 7/26/2018
17.4.0 17,838 7/23/2018
17.3.1 86,073 7/16/2018
17.3.0 18,127 7/13/2018
17.2.0 4,742 7/13/2018
17.1.0 6,380 7/12/2018
17.0.0 5,494 7/11/2018
16.16.1 35,467 7/11/2018
16.16.0 17,200 7/6/2018
16.14.0 31,795 6/29/2018
16.13.0 5,585 6/28/2018
16.12.0 45,455 6/20/2018
16.11.0 4,594 6/20/2018
16.10.0 98,562 6/13/2018
16.9.0 17,163 6/12/2018
16.8.0 5,511 6/12/2018
16.7.0 16,038 6/6/2018
16.6.0 4,924 6/6/2018
16.5.0 7,833 6/6/2018
16.4.0 26,794 6/1/2018
16.3.0 49,831 5/23/2018
16.1.0 116,099 5/10/2018
16.0.0 6,128 5/10/2018
15.8.0 13,654 5/8/2018
15.7.0 11,596 5/3/2018
15.6.2 31,304 4/25/2018
15.6.1 81,281 4/19/2018
15.6.0 36,220 4/18/2018
15.5.0 15,416 4/16/2018
15.3.2 202,137 4/9/2018
15.3.1 14,913 4/6/2018
15.3.0 42,553 4/4/2018
15.2.1 58,550 3/27/2018
15.2.0 5,389 3/26/2018
15.1.0 9,170 3/23/2018
15.0.0 27,234 3/21/2018
14.0.0 14,771 3/16/2018
13.5.0 31,520 3/15/2018
13.4.0 9,312 3/13/2018
13.3.1 28,380 3/5/2018
13.3.0 18,342 3/1/2018
13.2.0 9,437 2/27/2018
13.1.0 708,677 2/22/2018
13.0.1 11,484 2/19/2018
13.0.0 32,440 2/13/2018
12.1.0 250,664 1/19/2018
12.0.0 12,361 1/16/2018
11.10.0 70,460 12/26/2017
11.9.0 75,468 11/29/2017
11.8.2 17,469 11/23/2017
11.8.1 14,671 11/23/2017
11.7.1 87,208 10/31/2017
11.7.0 4,738 10/31/2017
11.6.1 22,534 10/24/2017
11.6.0 40,453 10/19/2017
11.5.0 42,296 10/17/2017
11.4.0 7,676 10/13/2017
11.3.0 6,217 10/11/2017
11.2.0 9,431 10/10/2017
11.1.0 4,561 10/10/2017
11.0.0 17,897 10/10/2017
10.4.0 252,549 8/8/2017
10.3.0 59,550 7/14/2017
10.2.0 67,414 6/28/2017
10.1.0 5,625 6/27/2017
10.0.0 57,976 6/6/2017
9.1.0 21,472 6/1/2017
9.0.0 52,742 5/13/2017
8.4.0 23,194 5/5/2017
8.3.0 7,823 5/2/2017
8.2.0 29,709 4/27/2017
8.1.1 15,257 4/19/2017
8.1.0 4,904 4/19/2017
8.0.0 12,213 4/13/2017
7.63.0 3,828 11/17/2020 7.63.0 is deprecated.
7.8.0 51,536 4/6/2017
7.7.0 10,296 4/1/2017
7.6.1 11,835 3/28/2017
7.6.0 23,067 3/17/2017
7.5.0 5,419 3/16/2017
7.4.0 13,825 3/7/2017
7.3.0 32,990 3/3/2017
7.2.0 17,683 2/28/2017
7.1.2 11,451 2/24/2017
7.1.1 7,010 2/23/2017
7.1.0 11,147 2/21/2017
7.0.5 66,541 2/21/2017
7.0.4 46,795 2/11/2017
7.0.3 45,879 1/19/2017
7.0.2 36,494 1/10/2017
7.0.1 21,144 12/25/2016
7.0.0 33,728 12/19/2016
6.13.0 15,021 12/17/2016
6.12.1 5,194 12/16/2016
6.12.0 82,986 11/29/2016
6.11.1 20,264 11/21/2016
6.11.0 11,112 11/8/2016
6.10.0 13,672 10/29/2016
6.9.0 71,932 10/18/2016
6.8.0 31,493 10/4/2016
6.7.0 16,704 9/26/2016
6.6.0 19,227 9/11/2016
6.5.0 29,165 9/1/2016
6.4.0 69,296 8/6/2016
6.3.6 23,183 7/29/2016
6.3.5 18,625 7/6/2016
6.3.4 35,262 6/25/2016
6.3.3 81,466 5/14/2016
6.3.2 41,182 4/25/2016
6.3.1 28,700 4/17/2016
6.3.0 4,820 4/17/2016
6.2.2 13,592 4/12/2016
6.2.1 7,497 4/4/2016
6.2.0 4,825 4/3/2016
6.1.1 4,716 4/1/2016
6.1.0 36,842 3/25/2016
6.0.1 39,531 3/15/2016
6.0.0 14,768 3/10/2016
5.3.0 55,336 2/14/2016
5.2.0 19,015 1/25/2016
5.1.3 12,069 1/8/2016
5.1.2 60,706 12/2/2015
5.1.1 9,153 11/29/2015
5.1.0 7,436 11/28/2015
5.0.1 52,891 11/19/2015
5.0.0 13,009 10/23/2015
4.2.1 18,663 9/13/2015
4.2.0 59,974 7/26/2015
4.1.0 11,403 7/11/2015
4.0.2 9,644 7/3/2015
4.0.1 15,281 7/2/2015
4.0.0 4,885 7/2/2015
3.0.2 11,609 6/17/2015
3.0.1 5,024 6/17/2015
3.0.0 7,379 5/28/2015
2.9.0 90,584 4/12/2015
2.8.0 30,573 3/14/2015
2.7.2 15,893 2/17/2015
2.7.1 5,493 2/17/2015
2.7.0 5,310 2/16/2015
2.6.0 5,723 2/14/2015
2.5.1 11,729 2/7/2015
2.5.0 5,568 1/31/2015
2.4.1 4,973 1/31/2015
2.4.0 5,431 1/25/2015
2.3.5 7,891 1/21/2015
2.3.4 24,096 12/4/2014
2.3.3 26,645 11/3/2014
2.3.2 5,664 10/26/2014
2.3.1 5,080 10/26/2014
2.3.0 12,577 9/4/2014
2.2.6 48,560 7/15/2014
2.2.5 9,609 6/22/2014
2.2.4 5,659 6/17/2014
2.2.3 5,535 6/13/2014
2.2.2 7,957 5/29/2014
2.2.1 5,103 5/28/2014
2.2.0 4,824 5/27/2014
2.1.2 5,576 5/14/2014
2.1.1 5,463 5/13/2014
2.1.0 7,452 4/20/2014
2.0.1 5,822 4/13/2014
2.0.0 5,844 4/5/2014
1.7.7 7,170 3/17/2014
1.7.6 19,903 1/18/2014
1.7.5 5,198 1/12/2014
1.7.4 6,628 12/25/2013
1.7.3 4,792 12/25/2013
1.7.2 4,819 12/24/2013
1.7.1 5,770 12/1/2013
1.7.0 7,555 11/3/2013
1.6.3 6,538 10/19/2013
1.6.2 8,962 8/30/2013
1.6.1 7,994 8/15/2013
1.6.0 4,728 8/10/2013
1.5.7 7,181 7/18/2013
1.5.6 5,453 6/30/2013
1.5.5 19,271 5/27/2013
1.5.4 5,620 5/7/2013
1.5.3 6,374 3/30/2013
1.5.2 4,884 3/26/2013
1.5.1 4,948 3/13/2013
1.5.0 4,950 3/4/2013
1.4.3 4,621 3/4/2013
1.4.2 4,891 3/4/2013
1.4.1 4,940 2/24/2013
1.4.0 4,960 2/12/2013
1.3.1 4,758 2/11/2013
1.3.0 4,726 2/11/2013
1.2.1 4,854 1/24/2013
1.2.0 5,574 12/2/2012
1.1.18 14,288 11/4/2012
1.1.17 5,596 9/7/2012
1.1.16 4,878 9/5/2012
1.1.15 4,675 8/27/2012
1.1.14 5,109 8/4/2012
1.1.13 12,013 6/10/2012
1.1.12 5,124 4/21/2012
1.1.11 5,125 4/8/2012
1.1.10 14,571 3/25/2012
1.1.9 4,754 3/5/2012
1.1.8 4,799 2/26/2012
1.1.7 4,748 2/26/2012
1.1.6 4,963 2/26/2012
0.5.2 24,027 11/28/2015