Stripe.net 45.2.0-beta.1

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 45.2.0-beta.1
                    
NuGet\Install-Package Stripe.net -Version 45.2.0-beta.1
                    
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="45.2.0-beta.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stripe.net" Version="45.2.0-beta.1" />
                    
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 45.2.0-beta.1
                    
#r "nuget: Stripe.net, 45.2.0-beta.1"
                    
#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.
#addin nuget:?package=Stripe.net&version=45.2.0-beta.1&prerelease
                    
Install Stripe.net as a Cake Addin
#tool nuget:?package=Stripe.net&version=45.2.0-beta.1&prerelease
                    
Install Stripe.net as a Cake Tool

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 2.0+, 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

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.

Use StripeConfiguration.ApiKey property to set the secret key.

StripeConfiguration.ApiKey = "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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
var customers = service.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 service = new CustomerService();
var customers = service.ListAutoPaging();

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

Per-request configuration

All of 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 service = new CustomerService();
var customer = service.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 service = new CustomerService();
var customer = service.Get("cus_1234");

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

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;

Beta SDKs

Stripe has features in the beta phase that can be accessed via the beta version of this package. We would love for you to try these and share feedback with us before these features reach the stable phase. To install a beta version of Stripe.net use the version parameter with dotnet add package command:

dotnet add package Stripe.net --version 40.3.0-beta.1

Note There can be breaking changes between beta versions. Therefore we recommend pinning the package version to a specific beta 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 beta version.

We highly recommend keeping an eye on when the beta feature you are interested in goes from beta to stable so that you can move from using a beta version of the SDK to the stable version.

If your beta feature requires a Stripe-Version header to be sent, set the StripeConfiguration.ApiVersion property with the StripeConfiguration.AddBetaVersion function:

Note The ApiVersion can only be set in beta versions of the library.

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

.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

Run all tests from the src/StripeTests directory:

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:

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 was computed.  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 was computed.  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. 
.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 (116)

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 (23)

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
Librum-Reader/Librum-Server
The Librum server
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
bhrugen/Bulky
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
bhrugen/Mango_Microservices
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.1.0-beta.4 358 7 days ago
48.1.0-beta.3 465 14 days ago
48.1.0-beta.2 597 21 days ago
48.0.2 10,631 9 days ago
48.0.1 2,909 9 days ago
48.0.0 38,767 23 days ago
47.5.0-beta.1 1,200 a month ago
47.4.0 255,243 2 months ago
47.4.0-beta.1 8,297 3 months ago
47.3.0 251,814 3 months ago
47.3.0-beta.3 4,197 3 months ago
47.3.0-beta.2 512 3 months ago
47.3.0-beta.1 3,966 3 months ago
47.2.0 278,540 4 months ago
47.2.0-beta.3 1,542 4 months ago
47.2.0-beta.2 523 5 months ago
47.2.0-beta.1 14,041 5 months ago
47.1.0 343,251 5 months ago
47.1.0-beta.3 1,996 5 months ago
47.1.0-beta.2 916 6 months ago
47.1.0-beta.1 3,843 6 months ago
47.0.0 320,513 6 months ago
46.3.0-beta.1 8,983 6 months ago
46.2.2 16,785 6 months ago
46.2.1 140,419 6 months ago
46.2.0 169,843 6 months ago
46.2.0-beta.3 1,376 7 months ago
46.1.0 64,785 7 months ago
46.0.0 27,207 7 months ago
45.15.0-beta.1 12,540 7 months ago
45.14.0 344,364 7 months ago
45.13.0 62,723 7 months ago
45.12.0 2,416 7 months ago
45.12.0-beta.1 1,660 8 months ago
45.11.0 110,468 8 months ago
45.10.0 111,776 8 months ago
45.10.0-beta.1 3,217 8 months ago
45.9.0 69,227 8 months ago
45.9.0-beta.2 158 8 months ago
45.9.0-beta.1 4,323 8 months ago
45.8.0 98,281 8 months ago
45.8.0-beta.1 2,173 8 months ago
45.7.0 80,404 9 months ago
45.7.0-beta.1 3,747 9 months ago
45.6.0 85,959 9 months ago
45.6.0-beta.1 4,530 9 months ago
45.5.0 93,211 9 months ago
45.4.0 93,993 9 months ago
45.3.0 137,019 9 months ago
45.3.0-beta.1 46,554 10 months ago
45.2.0 99,100 10 months ago
45.2.0-beta.1 3,358 10 months ago
45.1.0 112,085 10 months ago
45.0.0 106,107 10 months ago
44.13.0 239,367 6/17/2024
44.13.0-beta.1 3,297 6/13/2024
44.12.0 61,600 6/13/2024
44.12.0-beta.1 375 6/6/2024
44.11.0 104,415 6/6/2024
44.11.0-beta.1 2,074 5/30/2024
44.10.0 222,636 5/30/2024
44.10.0-beta.1 6,337 5/23/2024
44.9.0 104,743 5/23/2024
44.9.0-beta.1 2,197 5/16/2024
44.8.0 86,070 5/16/2024
44.7.0 104,486 5/9/2024
44.7.0-beta.1 157 5/9/2024
44.6.0 6,150 5/9/2024
44.6.0-beta.1 1,694 5/2/2024
44.5.0 92,833 5/2/2024
44.5.0-beta.1 6,213 4/25/2024
44.4.0 113,080 4/25/2024
44.4.0-beta.1 1,069 4/18/2024
44.3.0 156,549 4/18/2024
44.2.0 41,653 4/16/2024
44.2.0-beta.1 716 4/12/2024
44.1.0 139,205 4/11/2024
44.0.0 89,804 4/10/2024
43.23.0 70,433 4/9/2024
43.23.0-beta.1 2,430 4/4/2024
43.22.0 76,770 4/4/2024
43.22.0-beta.1 34,633 3/28/2024
43.21.0 106,933 3/28/2024
43.21.0-beta.1 1,157 3/21/2024
43.20.0 210,220 3/21/2024
43.20.0-beta.1 547 3/14/2024
43.19.0 156,560 3/14/2024
43.19.0-beta.1 8,889 3/8/2024
43.18.0 105,752 3/7/2024
43.18.0-beta.1 747 2/29/2024
43.17.0 75,859 2/29/2024
43.17.0-beta.1 8,596 2/22/2024
43.16.0 83,092 2/22/2024
43.16.0-beta.1 4,819 2/16/2024
43.15.0 123,101 2/16/2024
43.15.0-beta.1 1,138 2/8/2024
43.14.0 113,585 2/8/2024
43.14.0-beta.1 1,317 2/2/2024
43.13.0 186,600 2/1/2024
43.13.0-beta.1 1,331 1/26/2024
43.12.0 122,604 1/25/2024
43.12.0-beta.1 3,502 1/18/2024
43.11.0 117,170 1/18/2024
43.11.0-beta.1 387 1/12/2024
43.10.0 73,881 1/12/2024
43.10.0-beta.1 1,495 1/4/2024
43.9.0 106,049 1/4/2024
43.9.0-beta.1 2,185 12/22/2023
43.8.0 93,181 12/22/2023
43.8.0-beta.1 971 12/15/2023
43.7.0 117,757 12/15/2023
43.7.0-beta.1 475 12/8/2023
43.6.0 166,889 12/7/2023
43.6.0-beta.1 565 11/30/2023
43.5.0 79,171 11/30/2023
43.5.0-beta.1 2,663 11/21/2023
43.4.0 244,665 11/21/2023
43.4.0-beta.1 2,454 11/17/2023
43.3.0 95,345 11/17/2023
43.3.0-beta.1 889 11/10/2023
43.2.0 123,527 11/9/2023
43.2.0-beta.1 440 11/2/2023
43.1.0 117,229 11/2/2023
43.1.0-beta.2 1,041 10/26/2023
43.1.0-beta.1 1,330 10/17/2023
43.0.0 310,448 10/16/2023
42.10.0 32,032 10/16/2023
42.10.0-beta.1 1,319 10/11/2023
42.9.0 69,006 10/11/2023
42.9.0-beta.1 2,105 10/5/2023
42.8.0 96,014 10/5/2023
42.8.0-beta.1 986 9/29/2023
42.7.0 94,526 9/28/2023
42.7.0-beta.1 7,481 9/22/2023
42.6.0 119,843 9/21/2023
42.6.0-beta.1 4,029 9/15/2023
42.5.0 87,986 9/15/2023
42.5.0-beta.1 2,202 9/7/2023
42.4.0 86,020 9/7/2023
42.4.0-beta.1 1,143 9/1/2023
42.3.0 68,756 8/31/2023
42.2.0 109,102 8/24/2023
42.1.0 64,731 8/17/2023
42.0.0 15,744 8/16/2023
42.0.0-beta.1 162 8/24/2023
41.29.0-beta.1 4,627 8/11/2023
41.28.0 225,505 8/11/2023
41.28.0-beta.1 2,045 8/3/2023
41.27.0 97,894 8/3/2023
41.27.0-beta.1 1,630 7/28/2023
41.26.0 96,619 7/27/2023
41.25.0 116,700 7/20/2023
41.25.0-beta.1 854 7/13/2023
41.24.0 99,473 7/13/2023
41.23.0 116,875 7/6/2023
41.23.0-beta.1 6,085 6/30/2023
41.22.0 88,418 6/29/2023
41.22.0-beta.1 378 6/22/2023
41.21.0 88,533 6/22/2023
41.21.0-beta.2 2,767 6/15/2023
41.21.0-beta.1 425 6/8/2023
41.20.0 192,466 6/8/2023
41.20.0-beta.1 539 6/1/2023
41.19.0 124,890 6/1/2023
41.19.0-beta.1 2,513 5/25/2023
41.18.0 281,003 5/25/2023
41.18.0-beta.1 545 5/19/2023
41.17.0 101,736 5/19/2023
41.17.0-beta.1 1,787 5/11/2023
41.16.0 2,162,947 5/11/2023
41.16.0-beta.1 786 5/5/2023
41.15.0 119,746 5/4/2023
41.15.0-beta.1 706 4/27/2023
41.14.0 148,446 4/27/2023
41.14.0-beta.3 616 4/20/2023
41.14.0-beta.2 1,349 4/13/2023
41.14.0-beta.1 1,297 4/6/2023
41.13.0 400,639 4/6/2023
41.13.0-beta.1 2,438 3/30/2023
41.12.0 134,996 3/30/2023
41.12.0-beta.1 811 3/24/2023
41.11.0 102,056 3/23/2023
41.11.0-beta.1 3,944 3/17/2023
41.10.0 94,982 3/17/2023
41.10.0-beta.1 2,239 3/9/2023
41.9.0 304,850 3/9/2023
41.9.0-beta.1 8,443 3/3/2023
41.8.0 78,442 3/2/2023
41.8.0-beta.2 921 2/24/2023
41.8.0-beta.1 1,838 2/17/2023
41.7.0 205,172 2/16/2023
41.7.0-beta.1 5,786 2/2/2023
41.6.0 268,123 2/2/2023
41.6.0-beta.2 579 1/27/2023
41.6.0-beta.1 1,230 1/19/2023
41.5.0 219,461 1/19/2023
41.5.0-beta.2 414 1/12/2023
41.5.0-beta.1 4,755 1/5/2023
41.4.0 220,482 1/5/2023
41.4.0-beta.1 1,373 12/22/2022
41.3.0 126,112 12/22/2022
41.3.0-beta.2 3,563 12/16/2022
41.3.0-beta.1 4,210 12/8/2022
41.2.0 201,310 12/6/2022
41.1.0 348,141 11/17/2022
41.0.0 32,861 11/16/2022
40.17.0-beta.1 838 11/10/2022
40.16.0 289,251 11/8/2022
40.15.0 245,363 11/3/2022
40.15.0-beta.2 570 11/2/2022
40.15.0-beta.1 4,513 10/22/2022
40.14.0 182,786 10/20/2022
40.14.0-beta.1 955 10/14/2022
40.13.0 210,030 10/13/2022
40.13.0-beta.1 2,248 10/7/2022
40.12.0 78,017 10/6/2022
40.12.0-beta.2 261 10/4/2022
40.12.0-beta.1 231 10/4/2022
40.11.0 99,931 9/29/2022
40.11.0-beta.1 934 9/26/2022
40.10.0 107,543 9/22/2022
40.9.0 127,711 9/15/2022
40.8.0 126,561 9/9/2022
40.7.0 83,090 9/6/2022
40.6.0 136,471 8/31/2022
40.5.0 77,005 8/26/2022
40.5.0-beta.1 624 8/26/2022
40.4.0 204,200 8/23/2022
40.4.0-beta.1 732 8/23/2022
40.3.0 157,385 8/19/2022
40.3.0-beta.1 441 8/11/2022
40.2.0 121,611 8/11/2022
40.1.0 65,343 8/9/2022
40.1.0-beta.1 289 8/3/2022
40.0.0 278,417 8/2/2022
39.126.0 521,864 7/26/2022
39.125.0 101,587 7/25/2022
39.125.0-beta.1 346 7/22/2022
39.124.0 150,507 7/18/2022
39.123.0 246,456 7/12/2022
39.123.0-beta.1 1,714 7/7/2022
39.122.0 112,574 7/7/2022
39.121.0 271,266 6/29/2022
39.120.0 94,412 6/23/2022
39.119.0 126,356 6/17/2022
39.119.0-beta.1 397 6/15/2022
39.118.0 134,525 6/9/2022
39.117.0 44,886 6/8/2022
39.116.0 101,038 6/1/2022
39.115.0 94,439 5/26/2022
39.114.0 120,911 5/23/2022
39.113.0 11,294 5/23/2022
39.112.0 36,445 5/20/2022
39.111.0 295,120 5/11/2022
39.110.0 213,791 5/5/2022
39.109.0 8,525 5/5/2022
39.108.0 29,327 5/3/2022
39.107.0 131,176 4/21/2022
39.106.0 322,545 4/20/2022
39.105.0 238,718 4/13/2022
39.104.0 181,663 4/8/2022
39.103.0 187,992 4/1/2022
39.102.0 29,853 3/30/2022
39.101.0 17,299 3/29/2022
39.100.0 65,211 3/25/2022
39.99.0 60,268 3/23/2022
39.98.0 70,475 3/18/2022
39.97.0 194,153 3/11/2022
39.96.0 90,739 3/9/2022
39.95.0 121,869 3/2/2022
39.94.0 7,540 3/2/2022
39.93.0 58,593 2/26/2022
39.92.0 36,066 2/23/2022
39.91.0 460,278 2/16/2022
39.90.0 134,742 2/6/2022
39.89.0 324,352 1/25/2022
39.88.0 91,473 1/20/2022
39.87.0 12,695 1/19/2022
39.86.0 57,394 1/13/2022
39.85.0 32,359 1/12/2022
39.84.0 265,862 12/22/2021
39.83.0 97,497 12/15/2021
39.82.0 64,862 12/9/2021
39.81.0 10,189 12/9/2021
39.80.0 529,806 11/20/2021
39.79.0 20,010 11/17/2021
39.78.1 11,064 11/16/2021
39.78.0 3,396 11/16/2021
39.77.0 44,898 11/11/2021
39.76.0 123,458 11/4/2021
39.75.1 5,635 11/4/2021
39.75.0 142,415 11/1/2021
39.74.0 252,572 10/20/2021
39.73.0 120,458 10/11/2021
39.72.0 7,564 10/11/2021
39.71.0 25,946 10/7/2021
39.70.0 72,961 9/29/2021
39.69.0 64,721 9/24/2021
39.68.0 201,437 9/16/2021
39.67.0 6,867 9/15/2021
39.66.0 128,144 9/2/2021
39.65.0 4,648 9/1/2021
39.64.0 182,363 8/27/2021
39.63.0 236,169 8/11/2021
39.62.0 162,275 7/28/2021
39.61.0 120,280 7/22/2021
39.60.0 19,068 7/21/2021
39.59.0 233,226 7/14/2021
39.58.0 60,435 7/9/2021
39.57.0 93,851 6/30/2021
39.56.1 5,286 6/30/2021
39.56.0 8,873 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 42,046 6/25/2021
39.54.0 68,450 6/16/2021
39.53.0 337,457 6/7/2021
39.52.0 31,462 6/4/2021
39.51.0 62,407 6/4/2021
39.50.0 221,115 5/26/2021
39.49.0 87,098 5/20/2021
39.48.0 164,888 5/7/2021
39.47.0 49,535 5/6/2021
39.46.0 3,990 5/5/2021
39.45.0 137,502 4/16/2021
39.44.0 150,114 4/12/2021
39.43.0 136,180 4/3/2021
39.42.0 152,129 3/31/2021
39.41.0 120,915 3/26/2021
39.40.0 168,263 3/22/2021
39.39.0 215,213 3/1/2021
39.38.0 292,587 2/23/2021
39.37.0 85,771 2/18/2021
39.36.0 14,497 2/17/2021
39.35.0 102,325 2/9/2021
39.34.0 134,328 2/3/2021
39.33.0 233,152 1/21/2021
39.32.0 134,550 1/7/2021
39.31.0 268,905 12/16/2020
39.30.0 66,968 12/11/2020
39.29.0 178,543 12/4/2020
39.28.0 205,285 11/24/2020
39.27.0 52,891 11/20/2020
39.26.0 14,918 11/19/2020
39.25.0 26,227 11/18/2020
39.24.0 9,163 11/18/2020
39.23.0 204,004 11/9/2020
39.22.0 44,949 11/4/2020
39.21.0 75,444 10/29/2020
39.20.0 24,516 10/27/2020
39.19.0 37,564 10/26/2020
39.18.0 15,428 10/23/2020
39.17.0 13,621 10/23/2020
39.16.0 120,879 10/14/2020
39.15.0 20,701 10/13/2020
39.14.0 5,015 10/12/2020
39.13.0 22,818 10/9/2020
39.12.0 24,474 10/9/2020
39.11.0 119,043 10/3/2020
39.10.0 39,069 9/30/2020
39.9.0 17,446 9/30/2020
39.8.0 17,405 9/29/2020
39.7.0 44,994 9/25/2020
39.6.0 27,220 9/23/2020
39.5.0 54,090 9/22/2020
39.4.0 110,567 9/13/2020
39.3.0 86,526 9/8/2020
39.2.0 49,694 9/3/2020
39.1.2 49,038 9/1/2020
37.35.0 426,605 8/27/2020
37.34.0 120,630 8/19/2020
37.33.0 40,125 8/18/2020
37.32.0 8,123 8/17/2020
37.31.0 24,867 8/13/2020
37.30.0 74,174 8/7/2020
37.29.0 34,223 8/6/2020
37.28.0 14,284 8/4/2020
37.27.0 76,922 7/29/2020
37.26.0 133,271 7/25/2020
37.25.0 6,031 7/25/2020
37.24.0 21,998 7/22/2020
37.23.0 9,075 7/21/2020
37.22.0 5,294 7/21/2020
37.21.0 10,506 7/21/2020
37.20.0 14,589 7/18/2020
37.19.0 6,820 7/17/2020
37.18.0 83,425 7/15/2020
37.17.0 40,310 7/13/2020
37.16.0 103,443 7/6/2020
37.15.1 36,926 7/3/2020
37.15.0 32,114 7/1/2020
37.14.0 194,453 6/25/2020
37.13.0 40,159 6/23/2020
37.12.0 35,626 6/22/2020
37.11.0 15,531 6/18/2020
37.10.0 86,910 6/11/2020
37.9.0 10,100 6/11/2020
37.8.0 204,542 6/3/2020
37.7.0 4,273 6/3/2020
37.6.0 56,401 5/29/2020
37.5.0 31,009 5/28/2020
37.4.0 144,742 5/22/2020
37.3.0 76,240 5/21/2020
37.2.0 4,289 5/20/2020
37.1.0 65,944 5/19/2020
37.0.0 68,301 5/18/2020
36.12.2 75,347 5/14/2020
36.12.1 4,011 5/14/2020
36.12.0 4,134 5/13/2020
36.11.0 75,254 5/12/2020
36.10.0 17,585 5/11/2020
36.9.0 27,430 5/8/2020
36.8.1 38,861 5/5/2020
36.8.0 29,629 5/1/2020
36.7.0 17,539 4/29/2020
36.6.0 29,721 4/24/2020
36.5.0 22,517 4/22/2020
36.4.0 4,447 4/22/2020
36.3.0 8,761 4/21/2020
36.2.0 20,842 4/18/2020
36.1.0 17,302 4/17/2020
36.0.0 12,145 4/16/2020
35.17.0 29,939 4/14/2020
35.16.0 20,797 4/13/2020
35.15.0 6,323 4/13/2020
35.14.0 15,656 4/10/2020
35.13.0 5,250 4/9/2020
35.12.1 190,902 4/8/2020
35.12.0 51,632 4/3/2020
35.11.1 220,324 3/31/2020
35.11.0 36,473 3/31/2020
35.10.0 51,868 3/26/2020
35.9.0 41,350 3/25/2020
35.8.0 7,661 3/24/2020
35.7.1 6,184 3/23/2020
35.7.0 35,782 3/20/2020
35.6.0 301,636 3/13/2020
35.5.0 7,076 3/12/2020
35.4.0 5,247 3/12/2020
35.3.0 88,670 3/5/2020
35.2.0 4,442 3/4/2020
35.1.0 7,027 3/4/2020
35.0.0 26,563 3/4/2020
34.26.0 107,814 2/24/2020
34.25.0 21,340 2/21/2020
34.24.0 8,915 2/21/2020
34.23.0 123,179 2/17/2020
34.22.0 36,240 2/13/2020
34.21.0 5,377 2/12/2020
34.20.1 10,278 2/12/2020
34.20.0 80,553 2/6/2020
34.19.0 49,293 2/3/2020
34.18.0 55,733 1/31/2020
34.17.0 57,062 1/25/2020
34.16.1 12,309 1/22/2020
34.16.0 41,944 1/17/2020
34.15.0 280,727 1/15/2020
34.14.0 7,036 1/14/2020
34.13.0 59,533 1/10/2020
34.12.0 24,363 1/6/2020
34.11.0 15,503 1/4/2020
34.10.1 8,991 1/3/2020
34.10.0 30,015 12/31/2019
34.9.0 103,205 12/24/2019
34.8.0 33,537 12/21/2019
34.7.0 9,968 12/19/2019
34.6.0 29,560 12/17/2019
34.5.0 58,655 12/13/2019
34.4.0 7,367 12/12/2019
34.3.0 30,471 12/9/2019
34.2.0 4,075 12/9/2019
34.1.0 101,593 12/4/2019
34.0.0 21,129 12/4/2019
33.9.0 46,107 12/2/2019
33.8.0 35,356 11/26/2019
33.7.0 20,321 11/25/2019
33.6.0 19,213 11/22/2019
33.5.0 8,867 11/21/2019
33.4.0 14,258 11/19/2019
33.3.0 74,302 11/8/2019
33.2.0 9,308 11/7/2019
33.1.0 13,695 11/6/2019
33.0.0 26,692 11/6/2019
32.2.0 33,503 11/4/2019
32.1.3 38,661 10/28/2019
32.1.2 8,153 10/25/2019
32.1.1 3,534 10/24/2019
32.1.0 14,716 10/24/2019
32.0.0 22,136 10/19/2019
31.2.0 5,282 10/18/2019
31.1.0 107,171 10/11/2019
31.0.0 5,337 10/10/2019
30.1.0 47,631 10/10/2019
30.0.1 5,566 10/9/2019
30.0.0 36,258 10/9/2019
29.6.0 54,037 10/3/2019
29.5.0 63,246 9/27/2019
29.4.0 21,786 9/26/2019
29.3.0 10,020 9/26/2019
29.2.1 26,953 9/23/2019
29.2.0 38,297 9/19/2019
29.1.0 161,403 9/13/2019
29.0.1 12,467 9/12/2019
29.0.0 91,692 9/10/2019
28.11.0 48,843 9/9/2019
28.10.0 92,136 9/4/2019
28.9.0 21,345 9/3/2019
28.8.0 287,798 8/30/2019
28.7.0 4,794 8/29/2019
28.6.0 171,068 8/27/2019
28.5.0 56,825 8/23/2019
28.4.0 21,451 8/21/2019
28.3.0 17,167 8/20/2019
28.2.0 159,260 8/16/2019
28.1.0 47,652 8/15/2019
28.0.0 57,011 8/14/2019
27.25.1 10,438 8/14/2019
27.24.0 58,512 8/9/2019
27.23.0 9,875 8/8/2019
27.22.0 4,040 8/8/2019
27.21.0 130,278 8/2/2019
27.20.0 29,494 8/1/2019
27.19.0 33,254 7/31/2019
27.18.0 30,333 7/26/2019
27.17.0 8,987 7/25/2019
27.16.1 116,207 7/23/2019
27.16.0 59,025 7/22/2019
27.15.0 95,338 7/19/2019
27.14.0 35,170 7/18/2019
27.13.0 41,990 7/16/2019
27.12.0 5,606 7/15/2019
27.11.0 28,720 7/11/2019
27.10.0 20,511 7/10/2019
27.9.1 36,706 7/10/2019
27.9.0 35,711 7/5/2019
27.8.1 50,186 7/3/2019
27.8.0 8,726 7/2/2019
27.7.0 4,297 7/2/2019
27.6.0 6,113 7/1/2019
27.5.0 11,097 7/1/2019
27.4.0 23,613 6/26/2019
27.3.2 54,072 6/20/2019
27.3.1 23,891 6/18/2019
27.3.0 9,686 6/17/2019
27.2.0 29,835 6/14/2019
27.1.3 10,674 6/12/2019
27.1.2 11,501 6/11/2019
27.1.1 4,017 6/10/2019
27.1.0 4,591 6/10/2019
27.0.0 14,462 6/7/2019
26.1.0 21,504 6/6/2019
26.0.0 127,146 5/24/2019
25.19.1 19,777 5/22/2019
25.19.0 37,794 5/17/2019
25.18.0 18,441 5/14/2019
25.17.0 17,178 5/10/2019
25.16.1 18,890 5/8/2019
25.16.0 12,855 5/6/2019
25.15.0 52,264 5/4/2019
25.14.0 6,956 5/3/2019
25.13.0 25,495 4/30/2019
25.12.0 25,692 4/25/2019
25.11.0 3,832 4/24/2019
25.10.0 37,900 4/23/2019
25.9.0 18,659 4/18/2019
25.8.0 66,463 4/17/2019
25.7.1 4,437 4/16/2019
25.7.0 10,853 4/15/2019
25.6.0 35,074 4/10/2019
25.5.0 3,728 4/9/2019
25.4.0 14,162 4/5/2019
25.3.0 162,430 3/29/2019
25.2.0 28,502 3/25/2019
25.1.0 15,342 3/22/2019
25.0.0 28,424 3/19/2019
24.6.0 14,680 3/19/2019
24.5.0 40,146 3/14/2019
24.4.1 26,597 3/11/2019
24.3.0 39,932 3/7/2019
24.2.0 4,896 3/6/2019
24.1.0 37,652 2/28/2019
24.0.2 166,625 2/20/2019
24.0.1 4,520 2/20/2019
23.2.0 4,213 2/19/2019
23.1.0 6,872 2/18/2019
23.0.0 16,121 2/14/2019
22.9.0 10,731 2/12/2019
22.8.1 42,620 2/4/2019
22.8.0 86,598 1/25/2019
22.7.0 34,320 1/20/2019
22.6.0 7,105 1/18/2019
22.5.0 4,634 1/17/2019
22.4.0 30,519 1/10/2019
22.3.0 40,361 1/9/2019
22.2.0 4,272 1/9/2019
22.1.0 7,078 1/8/2019
22.0.0 11,422 1/7/2019
21.9.0 29,824 1/3/2019
21.8.1 5,200 1/3/2019
21.8.0 42,622 12/27/2018
21.7.1 14,261 12/21/2018
21.7.0 246,659 11/28/2018
21.6.0 13,399 11/27/2018
21.5.0 34,530 11/26/2018
21.4.1 29,364 11/16/2018
21.4.0 9,586 11/14/2018
21.3.0 4,266 11/14/2018
21.2.0 10,662 11/12/2018
21.1.0 11,772 11/9/2018
21.0.0 8,716 11/9/2018
20.4.1 10,477 11/8/2018
20.4.0 21,392 11/5/2018
20.3.0 10,146 10/31/2018
20.2.0 18,677 10/25/2018
20.1.0 20,161 10/23/2018
20.0.0 6,639 10/22/2018
19.10.0 269,605 10/9/2018
19.9.2 40,147 9/28/2018
19.9.1 10,302 9/27/2018
19.9.0 134,341 9/26/2018
19.8.0 16,919 9/24/2018
19.7.0 98,727 9/20/2018
19.6.0 47,183 9/11/2018
19.5.0 21,866 9/6/2018
19.4.0 6,246 9/6/2018
19.3.0 18,852 9/4/2018
19.2.0 27,035 8/29/2018
19.1.0 9,315 8/28/2018
19.0.1 5,581 8/27/2018
18.0.0 27,269 8/23/2018
17.11.0 27,418 8/23/2018
17.10.0 15,434 8/21/2018
17.9.0 15,057 8/16/2018
17.8.0 311,419 8/3/2018
17.7.0 43,504 7/31/2018
17.6.0 30,940 7/27/2018
17.5.0 7,949 7/26/2018
17.4.0 17,501 7/23/2018
17.3.1 84,687 7/16/2018
17.3.0 16,818 7/13/2018
17.2.0 4,500 7/13/2018
17.1.0 6,135 7/12/2018
17.0.0 5,256 7/11/2018
16.16.1 34,978 7/11/2018
16.16.0 16,906 7/6/2018
16.14.0 31,216 6/29/2018
16.13.0 5,331 6/28/2018
16.12.0 44,876 6/20/2018
16.11.0 4,340 6/20/2018
16.10.0 90,310 6/13/2018
16.9.0 16,902 6/12/2018
16.8.0 5,263 6/12/2018
16.7.0 15,859 6/6/2018
16.6.0 4,682 6/6/2018
16.5.0 7,557 6/6/2018
16.4.0 26,388 6/1/2018
16.3.0 48,789 5/23/2018
16.1.0 111,885 5/10/2018
16.0.0 5,787 5/10/2018
15.8.0 13,239 5/8/2018
15.7.0 11,274 5/3/2018
15.6.2 30,696 4/25/2018
15.6.1 80,914 4/19/2018
15.6.0 35,969 4/18/2018
15.5.0 14,902 4/16/2018
15.3.2 188,347 4/9/2018
15.3.1 14,665 4/6/2018
15.3.0 42,239 4/4/2018
15.2.1 57,940 3/27/2018
15.2.0 5,140 3/26/2018
15.1.0 8,837 3/23/2018
15.0.0 26,964 3/21/2018
14.0.0 14,505 3/16/2018
13.5.0 29,256 3/15/2018
13.4.0 9,048 3/13/2018
13.3.1 27,390 3/5/2018
13.3.0 18,058 3/1/2018
13.2.0 9,137 2/27/2018
13.1.0 540,000 2/22/2018
13.0.1 11,296 2/19/2018
13.0.0 32,161 2/13/2018
12.1.0 237,109 1/19/2018
12.0.0 11,993 1/16/2018
11.10.0 68,419 12/26/2017
11.9.0 73,415 11/29/2017
11.8.2 17,023 11/23/2017
11.8.1 14,486 11/23/2017
11.7.1 85,290 10/31/2017
11.7.0 4,554 10/31/2017
11.6.1 22,278 10/24/2017
11.6.0 37,436 10/19/2017
11.5.0 41,878 10/17/2017
11.4.0 7,478 10/13/2017
11.3.0 6,030 10/11/2017
11.2.0 9,244 10/10/2017
11.1.0 4,374 10/10/2017
11.0.0 17,338 10/10/2017
10.4.0 248,128 8/8/2017
10.3.0 59,034 7/14/2017
10.2.0 66,711 6/28/2017
10.1.0 5,422 6/27/2017
10.0.0 56,458 6/6/2017
9.1.0 21,225 6/1/2017
9.0.0 52,287 5/13/2017
8.4.0 19,955 5/5/2017
8.3.0 7,615 5/2/2017
8.2.0 29,355 4/27/2017
8.1.1 14,999 4/19/2017
8.1.0 4,717 4/19/2017
8.0.0 11,991 4/13/2017
7.63.0 3,661 11/17/2020 7.63.0 is deprecated.
7.8.0 48,357 4/6/2017
7.7.0 10,113 4/1/2017
7.6.1 11,655 3/28/2017
7.6.0 22,860 3/17/2017
7.5.0 5,229 3/16/2017
7.4.0 13,613 3/7/2017
7.3.0 31,754 3/3/2017
7.2.0 16,697 2/28/2017
7.1.2 11,210 2/24/2017
7.1.1 6,814 2/23/2017
7.1.0 10,954 2/21/2017
7.0.5 66,347 2/21/2017
7.0.4 46,004 2/11/2017
7.0.3 45,013 1/19/2017
7.0.2 36,136 1/10/2017
7.0.1 20,892 12/25/2016
7.0.0 32,523 12/19/2016
6.13.0 14,810 12/17/2016
6.12.1 5,015 12/16/2016
6.12.0 82,258 11/29/2016
6.11.1 19,248 11/21/2016
6.11.0 10,833 11/8/2016
6.10.0 13,479 10/29/2016
6.9.0 71,329 10/18/2016
6.8.0 30,878 10/4/2016
6.7.0 16,511 9/26/2016
6.6.0 18,649 9/11/2016
6.5.0 28,880 9/1/2016
6.4.0 67,010 8/6/2016
6.3.6 22,992 7/29/2016
6.3.5 18,221 7/6/2016
6.3.4 35,038 6/25/2016
6.3.3 80,060 5/14/2016
6.3.2 40,951 4/25/2016
6.3.1 28,421 4/17/2016
6.3.0 4,621 4/17/2016
6.2.2 13,395 4/12/2016
6.2.1 7,279 4/4/2016
6.2.0 4,634 4/3/2016
6.1.1 4,526 4/1/2016
6.1.0 36,540 3/25/2016
6.0.1 37,701 3/15/2016
6.0.0 14,562 3/10/2016
5.3.0 52,784 2/14/2016
5.2.0 18,688 1/25/2016
5.1.3 11,734 1/8/2016
5.1.2 59,547 12/2/2015
5.1.1 8,835 11/29/2015
5.1.0 7,120 11/28/2015
5.0.1 46,214 11/19/2015
5.0.0 12,673 10/23/2015
4.2.1 18,154 9/13/2015
4.2.0 55,942 7/26/2015
4.1.0 11,129 7/11/2015
4.0.2 9,395 7/3/2015
4.0.1 14,651 7/2/2015
4.0.0 4,632 7/2/2015
3.0.2 11,347 6/17/2015
3.0.1 4,773 6/17/2015
3.0.0 7,125 5/28/2015
2.9.0 89,716 4/12/2015
2.8.0 30,287 3/14/2015
2.7.2 15,599 2/17/2015
2.7.1 5,225 2/17/2015
2.7.0 5,060 2/16/2015
2.6.0 5,455 2/14/2015
2.5.1 11,455 2/7/2015
2.5.0 5,305 1/31/2015
2.4.1 4,721 1/31/2015
2.4.0 5,174 1/25/2015
2.3.5 7,624 1/21/2015
2.3.4 23,569 12/4/2014
2.3.3 26,294 11/3/2014
2.3.2 5,405 10/26/2014
2.3.1 4,808 10/26/2014
2.3.0 12,306 9/4/2014
2.2.6 43,242 7/15/2014
2.2.5 9,327 6/22/2014
2.2.4 5,401 6/17/2014
2.2.3 5,278 6/13/2014
2.2.2 7,697 5/29/2014
2.2.1 4,841 5/28/2014
2.2.0 4,563 5/27/2014
2.1.2 5,310 5/14/2014
2.1.1 5,207 5/13/2014
2.1.0 7,188 4/20/2014
2.0.1 5,561 4/13/2014
2.0.0 5,579 4/5/2014
1.7.7 6,909 3/17/2014
1.7.6 19,636 1/18/2014
1.7.5 4,919 1/12/2014
1.7.4 6,363 12/25/2013
1.7.3 4,529 12/25/2013
1.7.2 4,554 12/24/2013
1.7.1 5,508 12/1/2013
1.7.0 7,279 11/3/2013
1.6.3 6,275 10/19/2013
1.6.2 8,765 8/30/2013
1.6.1 7,793 8/15/2013
1.6.0 4,524 8/10/2013
1.5.7 6,967 7/18/2013
1.5.6 5,247 6/30/2013
1.5.5 19,070 5/27/2013
1.5.4 5,418 5/7/2013
1.5.3 6,086 3/30/2013
1.5.2 4,677 3/26/2013
1.5.1 4,744 3/13/2013
1.5.0 4,748 3/4/2013
1.4.3 4,416 3/4/2013
1.4.2 4,690 3/4/2013
1.4.1 4,739 2/24/2013
1.4.0 4,762 2/12/2013
1.3.1 4,554 2/11/2013
1.3.0 4,527 2/11/2013
1.2.1 4,644 1/24/2013
1.2.0 5,359 12/2/2012
1.1.18 14,067 11/4/2012
1.1.17 5,400 9/7/2012
1.1.16 4,656 9/5/2012
1.1.15 4,460 8/27/2012
1.1.14 4,894 8/4/2012
1.1.13 10,899 6/10/2012
1.1.12 4,919 4/21/2012
1.1.11 4,907 4/8/2012
1.1.10 14,033 3/25/2012
1.1.9 4,547 3/5/2012
1.1.8 4,601 2/26/2012
1.1.7 4,550 2/26/2012
1.1.6 4,757 2/26/2012
0.5.2 22,332 11/28/2015