Soenneker.Utils.AsyncSingleton 2.1.409

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.AsyncSingleton --version 2.1.409
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.409
                    
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="Soenneker.Utils.AsyncSingleton" Version="2.1.409" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.AsyncSingleton" Version="2.1.409" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.AsyncSingleton" />
                    
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 Soenneker.Utils.AsyncSingleton --version 2.1.409
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.409"
                    
#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 Soenneker.Utils.AsyncSingleton@2.1.409
                    
#: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=Soenneker.Utils.AsyncSingleton&version=2.1.409
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.409
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.AsyncSingleton

An externally initializing singleton that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.AsyncSingleton

Example

The example below is a long-living HttpClient implementation using AsyncSingleton. It avoids the additional overhead of IHttpClientFactory, and doesn't rely on short-lived clients.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly AsyncSingleton<HttpClient> _client;

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _client = new AsyncSingleton<HttpClient>(() =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            return new HttpClient(socketsHandler);
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get()).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(this);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (32)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.AsyncSingleton:

Package Downloads
Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Redis.Client

A utility library for Redis client accessibility

Soenneker.GitHub.Client

An async thread-safe singleton for Octokit's GitHubClient

Soenneker.Blazor.Utils.JsVariable

A Blazor interop library that checks (and waits) for the existence of a JS variable

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.716 107,955 9/3/2025
3.0.715 182 9/3/2025
3.0.714 60,356 8/11/2025
3.0.713 169 8/11/2025
3.0.712 108,761 7/1/2025
3.0.711 12,467 6/27/2025
3.0.710 1,637 6/27/2025
3.0.709 66,457 5/27/2025
3.0.708 1,163 5/27/2025
3.0.707 25,466 5/22/2025
3.0.705 39,139 5/7/2025
3.0.704 637 5/7/2025
3.0.703 23,934 5/5/2025
3.0.702 694 5/5/2025
3.0.701 208 5/5/2025
3.0.700 30,016 4/8/2025
3.0.699 7,440 4/8/2025
3.0.698 3,792 4/8/2025
3.0.697 5,279 4/8/2025
3.0.696 13,929 4/7/2025
3.0.695 4,944 4/7/2025
3.0.694 13,049 4/7/2025
3.0.693 11,993 4/7/2025
3.0.692 3,538 4/7/2025
3.0.691 3,344 4/6/2025
3.0.690 1,872 4/6/2025
3.0.689 338 4/6/2025
3.0.688 233 4/6/2025
3.0.687 4,862 4/6/2025
3.0.686 2,896 4/6/2025
3.0.685 180 4/6/2025
3.0.684 12,311 4/5/2025
3.0.683 2,009 4/5/2025
3.0.682 617 4/5/2025
3.0.681 187 4/5/2025
3.0.680 949 4/4/2025
3.0.679 346 4/4/2025
3.0.678 63,358 4/1/2025
3.0.677 16,935 3/31/2025
3.0.676 12,631 3/29/2025
3.0.675 16,689 3/25/2025
3.0.674 12,869 3/21/2025
3.0.673 23,597 3/15/2025
3.0.672 13,280 3/12/2025
3.0.671 1,216 3/12/2025
3.0.670 6,599 3/11/2025
3.0.669 326 3/11/2025
3.0.668 8,919 3/11/2025
3.0.667 8,380 3/11/2025
3.0.666 27,784 3/2/2025
3.0.665 3,029 3/2/2025
3.0.664 3,170 3/1/2025
3.0.663 5,238 3/1/2025
3.0.662 4,632 3/1/2025
3.0.661 3,312 3/1/2025
3.0.660 164 3/1/2025
3.0.659 5,082 3/1/2025
3.0.658 19,689 2/25/2025
3.0.657 4,475 2/25/2025
3.0.656 4,015 2/25/2025
3.0.655 4,994 2/24/2025
3.0.654 11,596 2/22/2025
3.0.653 18,730 2/22/2025
3.0.652 534 2/22/2025
3.0.651 5,295 2/21/2025
3.0.650 11,369 2/21/2025
3.0.649 14,884 2/19/2025
3.0.648 785 2/18/2025
3.0.647 2,828 2/18/2025
3.0.646 3,265 2/18/2025
3.0.645 8,407 2/18/2025
3.0.644 14,837 2/13/2025
3.0.643 16,812 2/12/2025
3.0.642 1,684 2/12/2025
3.0.641 2,907 2/12/2025
3.0.640 3,204 2/11/2025
3.0.639 3,267 2/11/2025
3.0.638 4,078 2/11/2025
3.0.637 6,139 2/11/2025
3.0.636 7,602 2/11/2025
3.0.635 9,979 2/10/2025
3.0.634 188 2/10/2025
3.0.633 12,848 2/9/2025
3.0.632 9,789 2/8/2025
3.0.631 1,838 2/8/2025
3.0.630 3,935 2/7/2025
3.0.629 4,864 2/7/2025
3.0.628 5,088 2/7/2025
3.0.627 440 2/7/2025
3.0.626 4,832 2/7/2025
3.0.625 174 2/7/2025
3.0.624 1,065 2/7/2025
3.0.623 26,224 2/5/2025
3.0.622 2,208 2/5/2025
3.0.621 3,948 2/5/2025
3.0.620 3,034 2/5/2025
3.0.619 30,022 1/28/2025
3.0.618 8,440 1/28/2025
3.0.617 466 1/27/2025
3.0.616 30,156 1/26/2025
3.0.615 2,801 1/26/2025
3.0.614 6,719 1/25/2025
3.0.613 9,258 1/25/2025
3.0.612 5,695 1/25/2025
3.0.611 3,197 1/24/2025
3.0.610 22,952 1/24/2025
3.0.609 7,564 1/24/2025
3.0.608 7,358 1/24/2025
3.0.607 6,069 1/23/2025
3.0.606 5,991 1/23/2025
3.0.605 17,521 1/21/2025
3.0.604 3,792 1/21/2025
3.0.603 8,734 1/21/2025
3.0.602 5,783 1/21/2025
3.0.601 8,342 1/21/2025
3.0.600 8,431 1/20/2025
3.0.599 615 1/20/2025
3.0.598 1,116 1/20/2025
3.0.597 8,320 1/20/2025
3.0.596 10,110 1/20/2025
3.0.595 1,212 1/20/2025
3.0.594 182 1/20/2025
3.0.593 1,137 1/20/2025
3.0.592 167 1/20/2025
3.0.591 26,276 1/19/2025
3.0.590 4,088 1/19/2025
3.0.589 4,133 1/18/2025
3.0.588 6,804 1/18/2025
3.0.587 2,662 1/18/2025
3.0.586 11,144 1/17/2025
3.0.585 2,059 1/17/2025
3.0.584 5,521 1/17/2025
3.0.583 4,969 1/16/2025
3.0.582 29,807 1/16/2025
3.0.581 2,645 1/16/2025
3.0.580 5,344 1/16/2025
3.0.579 6,702 1/15/2025
3.0.578 3,995 1/15/2025
3.0.577 7,374 1/15/2025
3.0.576 11,694 1/15/2025
3.0.575 2,030 1/15/2025
3.0.574 6,297 1/15/2025
3.0.573 588 1/15/2025
3.0.572 5,908 1/14/2025
3.0.571 2,785 1/14/2025
3.0.570 6,392 1/14/2025
3.0.569 25,231 1/13/2025
3.0.568 8,849 1/12/2025
3.0.567 13,296 1/11/2025
3.0.566 3,673 1/11/2025
3.0.565 1,728 1/11/2025
3.0.564 1,474 1/10/2025
3.0.563 7,504 1/10/2025
3.0.562 672 1/10/2025
3.0.561 1,577 1/10/2025
3.0.560 158 1/10/2025
3.0.559 156 1/10/2025
3.0.558 16,323 1/8/2025
3.0.557 489 1/8/2025
3.0.556 6,675 1/3/2025
3.0.555 5,293 1/3/2025
3.0.554 7,225 1/2/2025
3.0.553 1,209 1/2/2025
3.0.552 213 1/2/2025
3.0.551 4,199 1/2/2025
3.0.550 9,101 1/1/2025
3.0.549 1,292 1/1/2025
3.0.548 2,056 1/1/2025
3.0.547 2,368 1/1/2025
3.0.546 182 1/1/2025
3.0.545 1,038 12/31/2024
3.0.544 176 12/31/2024
3.0.543 378 12/31/2024
3.0.542 12,825 12/31/2024
3.0.541 13,790 12/31/2024
3.0.540 5,478 12/31/2024
3.0.539 6,814 12/31/2024
3.0.538 4,959 12/31/2024
3.0.537 2,101 12/31/2024
3.0.536 180 12/31/2024
3.0.535 8,414 12/31/2024
3.0.534 26,048 12/27/2024
3.0.533 4,836 12/27/2024
3.0.532 17,567 12/24/2024
3.0.531 1,088 12/24/2024
3.0.530 2,465 12/24/2024
3.0.529 438 12/24/2024
3.0.528 486 12/24/2024
3.0.527 3,015 12/23/2024
3.0.526 6,246 12/23/2024
3.0.525 2,984 12/23/2024
3.0.524 2,817 12/23/2024
3.0.523 3,909 12/23/2024
3.0.522 2,014 12/23/2024
3.0.521 5,027 12/22/2024
3.0.520 187 12/22/2024
3.0.519 21,145 12/22/2024
3.0.518 202 12/22/2024
3.0.517 16,379 12/22/2024
3.0.516 169 12/22/2024
3.0.515 7,648 12/22/2024
3.0.514 186 12/22/2024
3.0.513 1,495 12/21/2024
3.0.512 474 12/21/2024
3.0.511 166 12/21/2024
3.0.510 14,076 12/21/2024
3.0.509 1,483 12/21/2024
3.0.508 158 12/21/2024
3.0.507 2,385 12/21/2024
3.0.506 180 12/21/2024
3.0.505 7,957 12/21/2024
3.0.504 2,617 12/21/2024
3.0.503 6,308 12/21/2024
3.0.502 176 12/21/2024
3.0.501 3,916 12/20/2024
3.0.500 3,827 12/20/2024
3.0.499 7,596 12/20/2024
3.0.498 2,314 12/20/2024
3.0.497 1,083 12/20/2024
3.0.496 13,263 12/19/2024
3.0.495 1,035 12/19/2024
3.0.494 1,776 12/18/2024
3.0.493 950 12/18/2024
3.0.492 18,749 12/17/2024
3.0.491 563 12/17/2024
3.0.490 1,249 12/17/2024
3.0.489 1,615 12/17/2024
3.0.488 1,812 12/16/2024
3.0.487 580 12/16/2024
3.0.486 149 12/16/2024
3.0.485 16,548 12/9/2024
3.0.484 4,038 12/9/2024
3.0.483 8,726 12/9/2024
3.0.482 1,640 12/9/2024
3.0.480 17,686 12/6/2024
3.0.479 9,303 12/6/2024
3.0.478 3,065 12/6/2024
3.0.477 1,678 12/6/2024
3.0.476 1,126 12/6/2024
3.0.475 3,691 12/6/2024
3.0.474 11,223 12/6/2024
3.0.473 14,448 12/5/2024
3.0.472 1,720 12/5/2024
3.0.471 8,694 12/5/2024
3.0.470 3,967 12/5/2024
3.0.469 1,138 12/5/2024
3.0.468 8,003 12/4/2024
3.0.467 4,557 12/4/2024
3.0.466 4,760 12/4/2024
3.0.465 12,165 12/3/2024
3.0.464 513 12/3/2024
3.0.463 2,757 12/3/2024
3.0.462 10,552 12/3/2024
3.0.461 2,024 12/3/2024
3.0.460 6,557 12/3/2024
3.0.459 166 12/3/2024
3.0.458 1,329 12/3/2024
3.0.457 14,118 12/2/2024
3.0.456 6,325 12/2/2024
3.0.455 1,887 12/2/2024
3.0.454 1,602 12/1/2024
3.0.453 8,594 12/1/2024
3.0.452 8,950 12/1/2024
3.0.451 9,379 11/29/2024
3.0.450 14,866 11/20/2024
3.0.449 9,720 11/20/2024
3.0.448 723 11/20/2024
3.0.447 3,355 11/20/2024
3.0.445 4,230 11/19/2024
3.0.444 3,529 11/19/2024
3.0.443 9,738 11/19/2024
3.0.442 7,041 11/19/2024
3.0.441 167 11/19/2024
3.0.439 19,736 11/14/2024
3.0.438 7,597 11/14/2024
3.0.437 3,167 11/14/2024
3.0.436 5,801 11/14/2024
3.0.435 557 11/14/2024
3.0.434 189 11/14/2024
3.0.433 2,047 11/14/2024
3.0.432 166 11/14/2024
2.1.431 28,182 11/13/2024
2.1.430 5,461 11/13/2024
2.1.429 4,256 11/12/2024
2.1.428 19,643 11/9/2024
2.1.427 4,175 11/9/2024
2.1.426 4,353 11/8/2024
2.1.425 2,015 11/8/2024
2.1.424 2,243 11/8/2024
2.1.423 2,599 11/8/2024
2.1.422 2,973 11/8/2024
2.1.421 7,947 11/8/2024
2.1.420 30,910 11/1/2024
2.1.419 14,272 10/29/2024
2.1.418 5,427 10/29/2024
2.1.417 7,426 10/29/2024
2.1.416 13,936 10/28/2024
2.1.415 13,852 10/26/2024
2.1.414 15,653 10/22/2024
2.1.413 5,186 10/22/2024
2.1.412 2,897 10/22/2024
2.1.411 15,720 10/17/2024
2.1.410 14,017 10/15/2024
2.1.409 2,579 10/14/2024
2.1.408 14,390 10/11/2024
2.1.407 4,022 10/11/2024
2.1.406 2,631 10/11/2024
2.1.404 21,391 10/8/2024
2.1.403 8,544 10/8/2024
2.1.402 26,468 10/3/2024
2.1.401 1,894 10/3/2024
2.1.400 4,445 10/3/2024
2.1.399 17,162 10/2/2024
2.1.398 5,669 10/2/2024
2.1.397 17,606 10/1/2024
2.1.396 1,600 10/1/2024
2.1.395 8,731 9/30/2024
2.1.394 13,734 9/29/2024
2.1.393 4,490 9/29/2024
2.1.392 4,181 9/29/2024
2.1.391 11,840 9/27/2024
2.1.390 8,060 9/27/2024
2.1.389 269 9/27/2024
2.1.388 1,201 9/27/2024
2.1.387 3,105 9/27/2024
2.1.386 184 9/27/2024
2.1.385 17,927 9/26/2024
2.1.384 15,773 9/26/2024
2.1.383 6,872 9/26/2024
2.1.382 19,567 9/23/2024
2.1.381 4,773 9/23/2024
2.1.380 8,482 9/23/2024
2.1.379 8,335 9/23/2024
2.1.378 6,430 9/23/2024
2.1.377 1,248 9/23/2024
2.1.376 3,281 9/23/2024
2.1.375 174 9/23/2024
2.1.374 23,407 9/17/2024
2.1.373 1,067 9/17/2024
2.1.372 4,376 9/17/2024
2.1.371 4,628 9/17/2024
2.1.370 5,087 9/17/2024
2.1.369 7,063 9/17/2024
2.1.368 7,742 9/17/2024
2.1.367 25,485 9/16/2024
2.1.366 13,060 9/12/2024
2.1.365 4,993 9/11/2024
2.1.363 13,972 9/11/2024
2.1.362 27,236 9/10/2024
2.1.361 1,137 9/10/2024
2.1.360 1,660 9/10/2024
2.1.359 1,466 9/10/2024
2.1.358 5,779 9/9/2024
2.1.357 2,364 9/9/2024
2.1.356 9,691 9/9/2024
2.1.355 2,717 9/9/2024
2.1.354 11,032 9/9/2024
2.1.353 21,418 9/7/2024
2.1.352 16,047 9/6/2024
2.1.351 8,338 9/5/2024
2.1.350 8,346 9/5/2024
2.1.349 864 9/5/2024
2.1.348 212 9/5/2024
2.1.347 14,454 9/5/2024
2.1.346 1,637 9/4/2024
2.1.345 22,050 9/3/2024
2.1.344 10,015 9/3/2024
2.1.343 7,516 9/3/2024
2.1.342 14,293 8/29/2024
2.1.341 11,955 8/26/2024
2.1.340 12,703 8/21/2024
2.1.339 4,713 8/21/2024
2.1.338 2,744 8/20/2024
2.1.337 9,589 8/20/2024
2.1.336 203 8/20/2024
2.1.335 191 8/20/2024
2.1.334 16,126 8/19/2024
2.1.333 15,521 8/15/2024
2.1.332 15,518 8/13/2024
2.1.331 12,827 8/6/2024
2.1.330 7,444 8/6/2024
2.1.329 11,378 8/1/2024
2.1.328 2,353 8/1/2024
2.1.327 1,070 8/1/2024
2.1.326 16,380 7/25/2024
2.1.325 3,442 7/25/2024
2.1.324 2,966 7/25/2024
2.1.323 448 7/24/2024
2.1.322 1,295 7/24/2024
2.1.321 621 7/24/2024
2.1.320 16,655 7/20/2024
2.1.319 20,725 7/14/2024
2.1.318 7,702 7/14/2024
2.1.317 11,230 7/10/2024
2.1.316 4,916 7/10/2024
2.1.315 4,405 7/10/2024
2.1.314 2,515 7/10/2024
2.1.313 1,747 7/10/2024
2.1.312 544 7/10/2024
2.1.311 4,423 7/10/2024
2.1.310 2,148 7/9/2024
2.1.308 4,431 7/9/2024
2.1.307 179 7/9/2024
2.1.306 4,918 7/9/2024
2.1.305 11,219 7/9/2024
2.1.304 9,761 7/9/2024
2.1.303 4,579 7/9/2024
2.1.302 175 7/9/2024
2.1.301 12,645 7/9/2024
2.1.300 10,376 7/8/2024
2.1.299 594 7/8/2024
2.1.298 171 7/8/2024
2.1.297 187 7/8/2024
2.1.296 14,098 7/8/2024
2.1.295 2,768 7/7/2024
2.1.294 8,977 7/7/2024
2.1.293 198 7/7/2024
2.1.292 2,406 7/7/2024
2.1.291 5,143 7/7/2024
2.1.290 17,568 7/3/2024
2.1.289 5,681 7/3/2024
2.1.288 5,019 7/3/2024
2.1.287 1,481 7/3/2024
2.1.286 9,869 7/2/2024
2.1.283 6,043 6/30/2024
2.1.282 4,030 6/28/2024
2.1.281 415 6/28/2024
2.1.279 12,795 6/22/2024
2.1.278 14,649 6/15/2024
2.1.277 1,887 6/15/2024
2.1.276 11,154 6/14/2024
2.1.275 17,889 6/1/2024
2.1.274 2,911 6/1/2024
2.1.273 1,789 6/1/2024
2.1.272 15,786 5/31/2024
2.1.271 9,729 5/29/2024
2.1.270 11,081 5/28/2024
2.1.269 6,310 5/27/2024
2.1.268 11,506 5/26/2024
2.1.267 11,462 5/26/2024
2.1.266 546 5/26/2024
2.1.265 4,188 5/25/2024
2.1.264 2,941 5/25/2024
2.1.263 2,762 5/25/2024
2.1.262 185 5/25/2024
2.1.261 2,265 5/25/2024
2.1.260 188 5/25/2024
2.1.259 8,081 5/25/2024
2.1.258 180 5/25/2024
2.1.257 14,233 5/23/2024
2.1.256 5,816 5/23/2024
2.1.255 4,119 5/22/2024
2.1.254 3,062 5/22/2024
2.1.253 1,227 5/22/2024
2.1.252 183 5/22/2024
2.1.251 184 5/22/2024
2.1.250 6,019 5/22/2024
2.1.249 15,335 5/18/2024
2.1.248 3,183 5/17/2024
2.1.247 5,642 5/17/2024
2.1.246 8,576 5/16/2024
2.1.245 2,241 5/15/2024
2.1.244 6,371 5/15/2024
2.1.243 13,299 5/12/2024
2.1.242 7,132 5/3/2024
2.1.241 7,951 4/29/2024
2.1.240 4,379 4/29/2024
2.1.239 8,581 4/28/2024
2.1.238 1,392 4/28/2024
2.1.237 1,625 4/28/2024
2.1.236 6,530 4/28/2024
2.1.235 915 4/28/2024
2.1.234 8,439 4/28/2024
2.1.233 1,815 4/28/2024
2.1.232 7,989 4/27/2024
2.1.231 193 4/27/2024
2.1.230 16,055 4/19/2024
2.1.229 9,997 4/18/2024
2.1.228 10,360 4/12/2024
2.1.227 1,632 4/12/2024
2.1.226 2,629 4/12/2024
2.1.225 2,157 4/12/2024
2.1.224 1,517 4/12/2024
2.1.223 2,208 4/12/2024
2.1.222 825 4/12/2024
2.1.221 200 4/12/2024
2.1.220 5,794 4/10/2024
2.1.219 24,729 4/10/2024
2.1.218 1,055 4/10/2024
2.1.217 12,411 4/2/2024
2.1.216 2,199 4/1/2024
2.1.215 11,890 3/29/2024
2.1.214 8,686 3/25/2024
2.1.213 974 3/25/2024
2.1.212 11,960 3/20/2024
2.1.211 8,168 3/19/2024
2.1.210 5,035 3/19/2024
2.1.209 5,468 3/18/2024
2.1.208 11,724 3/15/2024
2.1.207 8,068 3/13/2024
2.1.206 3,099 3/13/2024
2.1.205 4,038 3/13/2024
2.1.204 252 3/13/2024
2.1.203 241 3/13/2024
2.1.202 2,665 3/13/2024
2.1.201 234 3/13/2024
2.1.200 5,764 3/12/2024
2.1.199 7,404 3/12/2024
2.1.198 9,684 3/11/2024
2.1.197 6,759 3/11/2024
2.1.196 7,333 3/10/2024
2.1.195 9,312 3/8/2024
2.1.194 845 3/8/2024
2.1.193 6,635 3/8/2024
2.1.192 8,642 3/6/2024
2.1.191 8,538 3/4/2024
2.1.190 4,740 3/4/2024
2.1.189 9,508 3/2/2024
2.1.188 2,407 3/2/2024
2.1.187 3,080 3/2/2024
2.1.186 1,731 3/2/2024
2.1.185 1,174 3/2/2024
2.1.184 6,531 2/29/2024
2.1.183 2,110 2/29/2024
2.1.182 3,244 2/29/2024
2.1.181 6,135 2/26/2024
2.1.180 23,530 2/25/2024
2.1.179 2,782 2/25/2024
2.1.178 9,319 2/23/2024
2.1.177 9,015 2/22/2024
2.1.176 2,521 2/22/2024
2.1.175 3,079 2/21/2024
2.1.174 4,932 2/21/2024
2.1.173 4,425 2/21/2024
2.1.172 5,605 2/21/2024
2.1.171 2,386 2/21/2024
2.1.170 460 2/21/2024
2.1.169 4,985 2/21/2024
2.1.168 1,674 2/20/2024
2.1.167 294 2/20/2024
2.1.166 294 2/20/2024
2.1.165 6,704 2/20/2024
2.1.164 5,192 2/20/2024
2.1.163 4,877 2/20/2024
2.1.162 10,295 2/19/2024
2.1.161 8,054 2/17/2024
2.1.160 3,302 2/17/2024
2.1.159 2,472 2/16/2024
2.1.158 1,758 2/16/2024
2.1.157 3,030 2/16/2024
2.1.156 4,430 2/16/2024
2.1.155 5,273 2/16/2024
2.1.154 343 2/16/2024
2.1.153 2,647 2/16/2024
2.1.152 324 2/16/2024
2.1.151 323 2/16/2024
2.1.150 8,964 2/14/2024
2.1.149 3,689 2/13/2024
2.1.148 4,446 2/13/2024
2.1.147 5,631 2/13/2024
2.1.146 5,428 2/13/2024
2.1.145 7,432 2/12/2024
2.1.144 1,154 2/11/2024
2.1.143 7,934 2/11/2024
2.1.142 4,387 2/11/2024
2.1.141 9,270 2/10/2024
2.1.140 1,171 2/9/2024
2.1.139 8,375 2/9/2024
2.1.138 5,510 2/9/2024
2.1.137 1,405 2/8/2024
2.1.136 6,796 2/8/2024
2.1.135 2,769 2/8/2024
2.1.134 15,976 2/8/2024
2.1.133 406 2/8/2024
2.1.132 335 2/8/2024
2.1.131 7,656 2/7/2024
2.1.130 3,114 2/7/2024
2.1.129 5,276 2/7/2024
2.1.128 1,700 2/7/2024
2.1.127 1,466 2/6/2024
2.1.126 4,282 2/6/2024
2.1.125 366 2/6/2024
2.1.124 11,185 2/5/2024
2.1.123 7,182 2/4/2024
2.1.122 7,666 2/2/2024
2.1.121 8,984 1/31/2024
2.1.120 8,784 1/29/2024
2.1.119 5,490 1/29/2024
2.1.118 3,697 1/29/2024
2.1.117 5,608 1/28/2024
2.1.116 7,647 1/28/2024
2.1.115 4,305 1/28/2024
2.1.114 2,667 1/28/2024
2.1.113 3,244 1/27/2024
2.1.112 3,072 1/27/2024
2.1.111 7,906 1/27/2024
2.1.110 4,184 1/27/2024
2.1.109 9,277 1/27/2024
2.1.108 2,578 1/26/2024
2.1.107 3,171 1/26/2024
2.1.106 3,860 1/26/2024
2.1.105 7,256 1/26/2024
2.1.104 3,430 1/26/2024
2.1.103 2,002 1/26/2024
2.1.102 6,694 1/25/2024
2.1.101 5,300 1/25/2024
2.1.100 2,623 1/25/2024
2.1.99 8,123 1/25/2024
2.1.98 8,319 1/19/2024
2.1.97 8,136 1/15/2024
2.1.96 3,648 1/15/2024
2.1.95 3,001 1/15/2024
2.1.94 7,399 1/15/2024
2.1.93 7,615 1/15/2024
2.1.92 7,307 1/14/2024
2.1.91 8,992 1/13/2024
2.1.90 7,362 1/12/2024
2.1.89 7,373 1/11/2024
2.1.88 10,122 1/7/2024
2.1.87 8,127 1/5/2024
2.1.86 3,552 1/5/2024
2.1.85 4,796 1/5/2024
2.1.84 8,699 1/3/2024
2.1.83 5,280 1/1/2024
2.1.82 7,187 12/28/2023
2.1.81 2,825 12/28/2023
2.1.80 3,040 12/28/2023
2.1.79 6,441 12/27/2023
2.1.78 3,065 12/27/2023
2.1.77 386 12/27/2023
2.1.76 12,393 12/25/2023
2.1.75 6,701 12/25/2023
2.1.74 3,550 12/25/2023
2.1.73 1,049 12/25/2023
2.1.72 408 12/25/2023
2.1.71 9,823 12/24/2023
2.1.70 7,659 12/23/2023
2.1.69 4,115 12/23/2023
2.1.68 2,555 12/23/2023
2.1.67 5,221 12/23/2023
2.1.66 377 12/23/2023
2.1.65 11,820 12/19/2023
2.1.64 3,112 12/19/2023
2.1.63 7,786 12/12/2023
2.1.62 649 12/12/2023
2.1.61 3,775 12/11/2023
2.1.60 3,011 12/11/2023
2.1.59 1,579 12/11/2023
2.1.58 2,326 12/11/2023
2.1.57 1,218 12/10/2023
2.1.56 1,181 12/10/2023
2.1.55 2,440 12/10/2023
2.1.54 1,527 12/10/2023
2.1.53 11,088 12/10/2023
2.1.52 2,586 12/9/2023
2.1.51 1,455 12/9/2023
2.1.50 2,221 12/9/2023
2.1.49 3,396 12/9/2023
2.1.48 349 12/9/2023
2.1.47 1,908 12/9/2023
2.1.46 418 12/9/2023
2.1.45 3,751 12/9/2023
2.1.44 378 12/9/2023
2.1.43 6,330 12/9/2023
2.1.42 9,280 12/6/2023
2.1.41 1,628 12/6/2023
2.1.40 2,446 12/6/2023
2.1.39 5,549 12/5/2023
2.1.38 2,796 12/5/2023
2.1.37 1,583 12/5/2023
2.1.36 4,008 12/5/2023
2.1.35 360 12/5/2023
2.1.34 3,412 12/5/2023
2.1.33 358 12/5/2023
2.1.32 2,347 12/4/2023
2.1.31 2,002 12/4/2023
2.1.30 388 12/4/2023
2.1.29 12,277 12/4/2023
2.1.28 4,404 11/27/2023
2.1.27 1,943 11/26/2023
2.1.26 4,810 11/23/2023
2.1.25 4,170 11/23/2023
2.1.24 5,172 11/23/2023
2.1.23 360 11/23/2023
2.1.22 9,972 11/20/2023
2.1.21 4,815 11/20/2023
2.1.20 8,190 11/19/2023
2.1.19 4,247 11/19/2023
2.1.18 5,800 11/19/2023
2.1.17 1,558 11/18/2023
2.1.16 7,922 11/18/2023
2.1.15 1,670 11/18/2023
2.1.14 4,843 11/18/2023
2.1.13 895 11/18/2023
2.1.12 5,053 11/17/2023
2.1.11 4,253 11/17/2023
2.1.10 3,309 11/17/2023
2.1.9 581 11/17/2023
2.1.8 4,649 11/17/2023
2.1.7 2,953 11/17/2023
2.1.6 3,693 11/17/2023
2.1.5 2,842 11/17/2023
2.1.4 882 11/17/2023
2.1.3 4,705 11/16/2023
2.0.78 1,608 11/15/2023
2.0.77 386 11/15/2023
2.0.76 4,295 11/15/2023
2.0.2 369 11/16/2023
2.0.1 354 11/16/2023
1.0.75 6,171 11/13/2023
1.0.74 8,708 11/10/2023
1.0.73 6,430 11/9/2023
1.0.72 4,461 11/8/2023
1.0.71 6,650 11/7/2023
1.0.70 3,457 11/6/2023
1.0.69 4,278 11/3/2023
1.0.68 7,254 11/2/2023
1.0.67 5,016 11/1/2023
1.0.66 14,948 10/26/2023
1.0.65 8,999 10/19/2023
1.0.64 3,789 10/18/2023
1.0.63 3,902 10/17/2023
1.0.62 4,755 10/16/2023
1.0.61 7,796 10/13/2023
1.0.60 4,833 10/12/2023
1.0.59 15,751 9/18/2023
1.0.58 379 9/18/2023
1.0.57 10,206 9/14/2023
1.0.56 9,770 8/31/2023
1.0.55 4,744 8/30/2023
1.0.54 4,310 8/29/2023
1.0.53 4,185 8/28/2023
1.0.52 7,532 8/25/2023
1.0.51 4,483 8/24/2023
1.0.50 10,645 8/21/2023
1.0.49 4,443 8/18/2023
1.0.48 4,098 8/17/2023
1.0.47 6,898 8/16/2023
1.0.46 11,888 8/10/2023
1.0.45 4,150 8/9/2023
1.0.44 6,530 8/8/2023
1.0.43 5,890 8/7/2023
1.0.42 6,075 8/4/2023
1.0.41 11,375 7/13/2023
1.0.40 7,334 7/11/2023
1.0.39 4,807 7/10/2023
1.0.38 5,592 7/7/2023
1.0.37 469 7/7/2023
1.0.36 15,433 6/30/2023
1.0.35 7,971 6/28/2023
1.0.34 7,900 6/27/2023
1.0.33 9,016 6/26/2023
1.0.32 5,685 6/23/2023
1.0.31 11,122 6/21/2023
1.0.30 11,812 6/15/2023
1.0.29 4,756 6/14/2023
1.0.28 12,610 6/9/2023
1.0.27 5,341 6/8/2023
1.0.26 6,371 6/7/2023
1.0.25 7,292 6/6/2023
1.0.24 490 6/6/2023
1.0.23 6,271 6/5/2023
1.0.22 21,656 5/30/2023
1.0.21 23,502 5/29/2023
1.0.20 8,431 5/26/2023
1.0.19 9,630 5/25/2023
1.0.18 10,036 5/24/2023
1.0.17 6,936 5/24/2023
1.0.16 2,181 5/23/2023
1.0.15 1,968 5/23/2023
1.0.12 4,006 5/22/2023
1.0.11 23,380 5/16/2023
1.0.10 19,333 4/20/2023
1.0.9 18,438 4/3/2023
1.0.8 1,467 4/3/2023
1.0.7 2,887 3/23/2023
1.0.5 937 3/13/2023
1.0.4 666 3/11/2023
1.0.3 554 3/11/2023
1.0.2 551 3/11/2023
1.0.1 624 3/11/2023