Soenneker.Utils.AsyncSingleton 2.1.326

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.326
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.326
                    
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.326" />
                    
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.326" />
                    
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.326
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.326"
                    
#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.326
                    
#: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.326
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.326
                    
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 94,202 9/3/2025
3.0.715 177 9/3/2025
3.0.714 60,243 8/11/2025
3.0.713 165 8/11/2025
3.0.712 108,555 7/1/2025
3.0.711 12,451 6/27/2025
3.0.710 1,633 6/27/2025
3.0.709 66,385 5/27/2025
3.0.708 1,159 5/27/2025
3.0.707 25,435 5/22/2025
3.0.705 39,053 5/7/2025
3.0.704 633 5/7/2025
3.0.703 23,898 5/5/2025
3.0.702 691 5/5/2025
3.0.701 204 5/5/2025
3.0.700 29,943 4/8/2025
3.0.699 7,425 4/8/2025
3.0.698 3,782 4/8/2025
3.0.697 5,272 4/8/2025
3.0.696 13,918 4/7/2025
3.0.695 4,937 4/7/2025
3.0.694 13,034 4/7/2025
3.0.693 11,983 4/7/2025
3.0.692 3,530 4/7/2025
3.0.691 3,335 4/6/2025
3.0.690 1,867 4/6/2025
3.0.689 331 4/6/2025
3.0.688 227 4/6/2025
3.0.687 4,838 4/6/2025
3.0.686 2,892 4/6/2025
3.0.685 175 4/6/2025
3.0.684 12,277 4/5/2025
3.0.683 1,998 4/5/2025
3.0.682 613 4/5/2025
3.0.681 181 4/5/2025
3.0.680 945 4/4/2025
3.0.679 338 4/4/2025
3.0.678 63,315 4/1/2025
3.0.677 16,911 3/31/2025
3.0.676 12,620 3/29/2025
3.0.675 16,668 3/25/2025
3.0.674 12,862 3/21/2025
3.0.673 23,564 3/15/2025
3.0.672 13,258 3/12/2025
3.0.671 1,210 3/12/2025
3.0.670 6,591 3/11/2025
3.0.669 319 3/11/2025
3.0.668 8,907 3/11/2025
3.0.667 8,374 3/11/2025
3.0.666 27,716 3/2/2025
3.0.665 3,016 3/2/2025
3.0.664 3,165 3/1/2025
3.0.663 5,226 3/1/2025
3.0.662 4,615 3/1/2025
3.0.661 3,304 3/1/2025
3.0.660 160 3/1/2025
3.0.659 5,078 3/1/2025
3.0.658 19,665 2/25/2025
3.0.657 4,467 2/25/2025
3.0.656 4,002 2/25/2025
3.0.655 4,982 2/24/2025
3.0.654 11,583 2/22/2025
3.0.653 18,724 2/22/2025
3.0.652 530 2/22/2025
3.0.651 5,285 2/21/2025
3.0.650 11,361 2/21/2025
3.0.649 14,874 2/19/2025
3.0.648 777 2/18/2025
3.0.647 2,822 2/18/2025
3.0.646 3,261 2/18/2025
3.0.645 8,389 2/18/2025
3.0.644 14,828 2/13/2025
3.0.643 16,788 2/12/2025
3.0.642 1,679 2/12/2025
3.0.641 2,897 2/12/2025
3.0.640 3,195 2/11/2025
3.0.639 3,256 2/11/2025
3.0.638 4,066 2/11/2025
3.0.637 6,131 2/11/2025
3.0.636 7,585 2/11/2025
3.0.635 9,968 2/10/2025
3.0.634 182 2/10/2025
3.0.633 12,831 2/9/2025
3.0.632 9,772 2/8/2025
3.0.631 1,829 2/8/2025
3.0.630 3,925 2/7/2025
3.0.629 4,857 2/7/2025
3.0.628 5,080 2/7/2025
3.0.627 435 2/7/2025
3.0.626 4,817 2/7/2025
3.0.625 168 2/7/2025
3.0.624 1,060 2/7/2025
3.0.623 26,201 2/5/2025
3.0.622 2,194 2/5/2025
3.0.621 3,935 2/5/2025
3.0.620 3,025 2/5/2025
3.0.619 29,994 1/28/2025
3.0.618 8,423 1/28/2025
3.0.617 459 1/27/2025
3.0.616 30,130 1/26/2025
3.0.615 2,791 1/26/2025
3.0.614 6,712 1/25/2025
3.0.613 9,245 1/25/2025
3.0.612 5,690 1/25/2025
3.0.611 3,191 1/24/2025
3.0.610 22,922 1/24/2025
3.0.609 7,548 1/24/2025
3.0.608 7,349 1/24/2025
3.0.607 6,053 1/23/2025
3.0.606 5,978 1/23/2025
3.0.605 17,509 1/21/2025
3.0.604 3,782 1/21/2025
3.0.603 8,716 1/21/2025
3.0.602 5,770 1/21/2025
3.0.601 8,334 1/21/2025
3.0.600 8,409 1/20/2025
3.0.599 607 1/20/2025
3.0.598 1,110 1/20/2025
3.0.597 8,306 1/20/2025
3.0.596 10,088 1/20/2025
3.0.595 1,206 1/20/2025
3.0.594 178 1/20/2025
3.0.593 1,133 1/20/2025
3.0.592 163 1/20/2025
3.0.591 26,244 1/19/2025
3.0.590 4,076 1/19/2025
3.0.589 4,119 1/18/2025
3.0.588 6,792 1/18/2025
3.0.587 2,653 1/18/2025
3.0.586 11,126 1/17/2025
3.0.585 2,044 1/17/2025
3.0.584 5,506 1/17/2025
3.0.583 4,957 1/16/2025
3.0.582 29,787 1/16/2025
3.0.581 2,640 1/16/2025
3.0.580 5,338 1/16/2025
3.0.579 6,691 1/15/2025
3.0.578 3,984 1/15/2025
3.0.577 7,368 1/15/2025
3.0.576 11,684 1/15/2025
3.0.575 2,025 1/15/2025
3.0.574 6,288 1/15/2025
3.0.573 584 1/15/2025
3.0.572 5,896 1/14/2025
3.0.571 2,777 1/14/2025
3.0.570 6,382 1/14/2025
3.0.569 25,222 1/13/2025
3.0.568 8,833 1/12/2025
3.0.567 13,280 1/11/2025
3.0.566 3,665 1/11/2025
3.0.565 1,725 1/11/2025
3.0.564 1,469 1/10/2025
3.0.563 7,498 1/10/2025
3.0.562 669 1/10/2025
3.0.561 1,571 1/10/2025
3.0.560 153 1/10/2025
3.0.559 153 1/10/2025
3.0.558 16,309 1/8/2025
3.0.557 484 1/8/2025
3.0.556 6,665 1/3/2025
3.0.555 5,282 1/3/2025
3.0.554 7,217 1/2/2025
3.0.553 1,202 1/2/2025
3.0.552 205 1/2/2025
3.0.551 4,182 1/2/2025
3.0.550 9,097 1/1/2025
3.0.549 1,286 1/1/2025
3.0.548 2,047 1/1/2025
3.0.547 2,358 1/1/2025
3.0.546 177 1/1/2025
3.0.545 1,032 12/31/2024
3.0.544 170 12/31/2024
3.0.543 374 12/31/2024
3.0.542 12,818 12/31/2024
3.0.541 13,774 12/31/2024
3.0.540 5,471 12/31/2024
3.0.539 6,792 12/31/2024
3.0.538 4,954 12/31/2024
3.0.537 2,096 12/31/2024
3.0.536 173 12/31/2024
3.0.535 8,402 12/31/2024
3.0.534 26,033 12/27/2024
3.0.533 4,831 12/27/2024
3.0.532 17,550 12/24/2024
3.0.531 1,083 12/24/2024
3.0.530 2,459 12/24/2024
3.0.529 434 12/24/2024
3.0.528 481 12/24/2024
3.0.527 3,009 12/23/2024
3.0.526 6,240 12/23/2024
3.0.525 2,977 12/23/2024
3.0.524 2,811 12/23/2024
3.0.523 3,899 12/23/2024
3.0.522 2,007 12/23/2024
3.0.521 5,021 12/22/2024
3.0.520 179 12/22/2024
3.0.519 21,139 12/22/2024
3.0.518 198 12/22/2024
3.0.517 16,369 12/22/2024
3.0.516 164 12/22/2024
3.0.515 7,639 12/22/2024
3.0.514 182 12/22/2024
3.0.513 1,489 12/21/2024
3.0.512 471 12/21/2024
3.0.511 161 12/21/2024
3.0.510 14,065 12/21/2024
3.0.509 1,476 12/21/2024
3.0.508 155 12/21/2024
3.0.507 2,379 12/21/2024
3.0.506 173 12/21/2024
3.0.505 7,949 12/21/2024
3.0.504 2,602 12/21/2024
3.0.503 6,298 12/21/2024
3.0.502 170 12/21/2024
3.0.501 3,905 12/20/2024
3.0.500 3,813 12/20/2024
3.0.499 7,586 12/20/2024
3.0.498 2,303 12/20/2024
3.0.497 1,079 12/20/2024
3.0.496 13,256 12/19/2024
3.0.495 1,031 12/19/2024
3.0.494 1,771 12/18/2024
3.0.493 946 12/18/2024
3.0.492 18,729 12/17/2024
3.0.491 554 12/17/2024
3.0.490 1,245 12/17/2024
3.0.489 1,607 12/17/2024
3.0.488 1,806 12/16/2024
3.0.487 575 12/16/2024
3.0.486 146 12/16/2024
3.0.485 16,533 12/9/2024
3.0.484 4,034 12/9/2024
3.0.483 8,712 12/9/2024
3.0.482 1,627 12/9/2024
3.0.480 17,669 12/6/2024
3.0.479 9,292 12/6/2024
3.0.478 3,057 12/6/2024
3.0.477 1,673 12/6/2024
3.0.476 1,122 12/6/2024
3.0.475 3,678 12/6/2024
3.0.474 11,202 12/6/2024
3.0.473 14,427 12/5/2024
3.0.472 1,711 12/5/2024
3.0.471 8,687 12/5/2024
3.0.470 3,964 12/5/2024
3.0.469 1,134 12/5/2024
3.0.468 7,994 12/4/2024
3.0.467 4,551 12/4/2024
3.0.466 4,753 12/4/2024
3.0.465 12,147 12/3/2024
3.0.464 507 12/3/2024
3.0.463 2,746 12/3/2024
3.0.462 10,542 12/3/2024
3.0.461 2,015 12/3/2024
3.0.460 6,548 12/3/2024
3.0.459 160 12/3/2024
3.0.458 1,324 12/3/2024
3.0.457 14,082 12/2/2024
3.0.456 6,304 12/2/2024
3.0.455 1,864 12/2/2024
3.0.454 1,596 12/1/2024
3.0.453 8,572 12/1/2024
3.0.452 8,934 12/1/2024
3.0.451 9,359 11/29/2024
3.0.450 14,578 11/20/2024
3.0.449 9,697 11/20/2024
3.0.448 718 11/20/2024
3.0.447 3,348 11/20/2024
3.0.445 4,222 11/19/2024
3.0.444 3,516 11/19/2024
3.0.443 9,728 11/19/2024
3.0.442 7,029 11/19/2024
3.0.441 163 11/19/2024
3.0.439 19,708 11/14/2024
3.0.438 7,578 11/14/2024
3.0.437 3,149 11/14/2024
3.0.436 5,782 11/14/2024
3.0.435 553 11/14/2024
3.0.434 184 11/14/2024
3.0.433 2,039 11/14/2024
3.0.432 161 11/14/2024
2.1.431 28,071 11/13/2024
2.1.430 5,439 11/13/2024
2.1.429 4,253 11/12/2024
2.1.428 19,604 11/9/2024
2.1.427 4,167 11/9/2024
2.1.426 4,346 11/8/2024
2.1.425 2,010 11/8/2024
2.1.424 2,238 11/8/2024
2.1.423 2,586 11/8/2024
2.1.422 2,965 11/8/2024
2.1.421 7,910 11/8/2024
2.1.420 30,837 11/1/2024
2.1.419 14,243 10/29/2024
2.1.418 5,410 10/29/2024
2.1.417 7,418 10/29/2024
2.1.416 13,919 10/28/2024
2.1.415 13,822 10/26/2024
2.1.414 15,626 10/22/2024
2.1.413 5,178 10/22/2024
2.1.412 2,891 10/22/2024
2.1.411 15,684 10/17/2024
2.1.410 13,966 10/15/2024
2.1.409 2,568 10/14/2024
2.1.408 14,364 10/11/2024
2.1.407 4,016 10/11/2024
2.1.406 2,624 10/11/2024
2.1.404 21,349 10/8/2024
2.1.403 8,525 10/8/2024
2.1.402 26,353 10/3/2024
2.1.401 1,890 10/3/2024
2.1.400 4,427 10/3/2024
2.1.399 17,138 10/2/2024
2.1.398 5,646 10/2/2024
2.1.397 17,572 10/1/2024
2.1.396 1,591 10/1/2024
2.1.395 8,695 9/30/2024
2.1.394 13,689 9/29/2024
2.1.393 4,469 9/29/2024
2.1.392 4,168 9/29/2024
2.1.391 11,790 9/27/2024
2.1.390 8,052 9/27/2024
2.1.389 263 9/27/2024
2.1.388 1,197 9/27/2024
2.1.387 3,086 9/27/2024
2.1.386 179 9/27/2024
2.1.385 17,890 9/26/2024
2.1.384 15,748 9/26/2024
2.1.383 6,861 9/26/2024
2.1.382 19,533 9/23/2024
2.1.381 4,761 9/23/2024
2.1.380 8,452 9/23/2024
2.1.379 8,318 9/23/2024
2.1.378 6,402 9/23/2024
2.1.377 1,244 9/23/2024
2.1.376 3,275 9/23/2024
2.1.375 169 9/23/2024
2.1.374 23,332 9/17/2024
2.1.373 1,062 9/17/2024
2.1.372 4,371 9/17/2024
2.1.371 4,624 9/17/2024
2.1.370 5,039 9/17/2024
2.1.369 7,051 9/17/2024
2.1.368 7,724 9/17/2024
2.1.367 25,440 9/16/2024
2.1.366 13,031 9/12/2024
2.1.365 4,986 9/11/2024
2.1.363 13,933 9/11/2024
2.1.362 27,169 9/10/2024
2.1.361 1,133 9/10/2024
2.1.360 1,657 9/10/2024
2.1.359 1,463 9/10/2024
2.1.358 5,775 9/9/2024
2.1.357 2,361 9/9/2024
2.1.356 9,674 9/9/2024
2.1.355 2,709 9/9/2024
2.1.354 11,022 9/9/2024
2.1.353 21,339 9/7/2024
2.1.352 16,011 9/6/2024
2.1.351 8,306 9/5/2024
2.1.350 8,311 9/5/2024
2.1.349 861 9/5/2024
2.1.348 208 9/5/2024
2.1.347 14,427 9/5/2024
2.1.346 1,628 9/4/2024
2.1.345 22,001 9/3/2024
2.1.344 10,001 9/3/2024
2.1.343 7,487 9/3/2024
2.1.342 14,265 8/29/2024
2.1.341 11,941 8/26/2024
2.1.340 12,668 8/21/2024
2.1.339 4,707 8/21/2024
2.1.338 2,738 8/20/2024
2.1.337 9,567 8/20/2024
2.1.336 199 8/20/2024
2.1.335 188 8/20/2024
2.1.334 16,069 8/19/2024
2.1.333 15,488 8/15/2024
2.1.332 15,507 8/13/2024
2.1.331 12,806 8/6/2024
2.1.330 7,430 8/6/2024
2.1.329 11,334 8/1/2024
2.1.328 2,341 8/1/2024
2.1.327 1,068 8/1/2024
2.1.326 16,343 7/25/2024
2.1.325 3,422 7/25/2024
2.1.324 2,949 7/25/2024
2.1.323 443 7/24/2024
2.1.322 1,292 7/24/2024
2.1.321 616 7/24/2024
2.1.320 16,570 7/20/2024
2.1.319 20,678 7/14/2024
2.1.318 7,675 7/14/2024
2.1.317 11,204 7/10/2024
2.1.316 4,907 7/10/2024
2.1.315 4,400 7/10/2024
2.1.314 2,500 7/10/2024
2.1.313 1,744 7/10/2024
2.1.312 539 7/10/2024
2.1.311 4,402 7/10/2024
2.1.310 2,132 7/9/2024
2.1.308 4,421 7/9/2024
2.1.307 174 7/9/2024
2.1.306 4,903 7/9/2024
2.1.305 11,189 7/9/2024
2.1.304 9,751 7/9/2024
2.1.303 4,575 7/9/2024
2.1.302 173 7/9/2024
2.1.301 12,420 7/9/2024
2.1.300 10,345 7/8/2024
2.1.299 589 7/8/2024
2.1.298 167 7/8/2024
2.1.297 182 7/8/2024
2.1.296 14,075 7/8/2024
2.1.295 2,757 7/7/2024
2.1.294 8,952 7/7/2024
2.1.293 192 7/7/2024
2.1.292 2,398 7/7/2024
2.1.291 5,139 7/7/2024
2.1.290 17,560 7/3/2024
2.1.289 5,670 7/3/2024
2.1.288 5,008 7/3/2024
2.1.287 1,475 7/3/2024
2.1.286 9,847 7/2/2024
2.1.283 6,030 6/30/2024
2.1.282 4,022 6/28/2024
2.1.281 411 6/28/2024
2.1.279 12,766 6/22/2024
2.1.278 14,607 6/15/2024
2.1.277 1,880 6/15/2024
2.1.276 11,124 6/14/2024
2.1.275 17,844 6/1/2024
2.1.274 2,908 6/1/2024
2.1.273 1,783 6/1/2024
2.1.272 15,756 5/31/2024
2.1.271 9,699 5/29/2024
2.1.270 11,065 5/28/2024
2.1.269 6,297 5/27/2024
2.1.268 11,489 5/26/2024
2.1.267 11,447 5/26/2024
2.1.266 541 5/26/2024
2.1.265 4,178 5/25/2024
2.1.264 2,934 5/25/2024
2.1.263 2,749 5/25/2024
2.1.262 180 5/25/2024
2.1.261 2,260 5/25/2024
2.1.260 182 5/25/2024
2.1.259 8,065 5/25/2024
2.1.258 175 5/25/2024
2.1.257 14,209 5/23/2024
2.1.256 5,800 5/23/2024
2.1.255 4,113 5/22/2024
2.1.254 3,025 5/22/2024
2.1.253 1,224 5/22/2024
2.1.252 180 5/22/2024
2.1.251 178 5/22/2024
2.1.250 6,015 5/22/2024
2.1.249 15,296 5/18/2024
2.1.248 3,172 5/17/2024
2.1.247 5,618 5/17/2024
2.1.246 8,551 5/16/2024
2.1.245 2,233 5/15/2024
2.1.244 6,346 5/15/2024
2.1.243 13,282 5/12/2024
2.1.242 7,104 5/3/2024
2.1.241 7,927 4/29/2024
2.1.240 4,374 4/29/2024
2.1.239 8,573 4/28/2024
2.1.238 1,386 4/28/2024
2.1.237 1,619 4/28/2024
2.1.236 6,511 4/28/2024
2.1.235 908 4/28/2024
2.1.234 8,430 4/28/2024
2.1.233 1,809 4/28/2024
2.1.232 7,975 4/27/2024
2.1.231 190 4/27/2024
2.1.230 16,024 4/19/2024
2.1.229 9,976 4/18/2024
2.1.228 10,341 4/12/2024
2.1.227 1,624 4/12/2024
2.1.226 2,615 4/12/2024
2.1.225 2,136 4/12/2024
2.1.224 1,514 4/12/2024
2.1.223 2,198 4/12/2024
2.1.222 819 4/12/2024
2.1.221 195 4/12/2024
2.1.220 5,784 4/10/2024
2.1.219 24,690 4/10/2024
2.1.218 1,052 4/10/2024
2.1.217 12,400 4/2/2024
2.1.216 2,193 4/1/2024
2.1.215 11,871 3/29/2024
2.1.214 8,659 3/25/2024
2.1.213 970 3/25/2024
2.1.212 11,943 3/20/2024
2.1.211 8,157 3/19/2024
2.1.210 5,019 3/19/2024
2.1.209 5,444 3/18/2024
2.1.208 11,716 3/15/2024
2.1.207 8,049 3/13/2024
2.1.206 3,096 3/13/2024
2.1.205 4,029 3/13/2024
2.1.204 248 3/13/2024
2.1.203 235 3/13/2024
2.1.202 2,660 3/13/2024
2.1.201 229 3/13/2024
2.1.200 5,751 3/12/2024
2.1.199 7,393 3/12/2024
2.1.198 9,652 3/11/2024
2.1.197 6,740 3/11/2024
2.1.196 7,320 3/10/2024
2.1.195 9,298 3/8/2024
2.1.194 841 3/8/2024
2.1.193 6,619 3/8/2024
2.1.192 8,623 3/6/2024
2.1.191 8,535 3/4/2024
2.1.190 4,732 3/4/2024
2.1.189 9,483 3/2/2024
2.1.188 2,394 3/2/2024
2.1.187 3,077 3/2/2024
2.1.186 1,724 3/2/2024
2.1.185 1,168 3/2/2024
2.1.184 6,520 2/29/2024
2.1.183 2,102 2/29/2024
2.1.182 3,239 2/29/2024
2.1.181 6,129 2/26/2024
2.1.180 23,515 2/25/2024
2.1.179 2,776 2/25/2024
2.1.178 9,305 2/23/2024
2.1.177 9,009 2/22/2024
2.1.176 2,518 2/22/2024
2.1.175 3,072 2/21/2024
2.1.174 4,923 2/21/2024
2.1.173 4,410 2/21/2024
2.1.172 5,592 2/21/2024
2.1.171 2,380 2/21/2024
2.1.170 454 2/21/2024
2.1.169 4,968 2/21/2024
2.1.168 1,649 2/20/2024
2.1.167 289 2/20/2024
2.1.166 289 2/20/2024
2.1.165 6,679 2/20/2024
2.1.164 5,183 2/20/2024
2.1.163 4,872 2/20/2024
2.1.162 10,287 2/19/2024
2.1.161 8,046 2/17/2024
2.1.160 3,299 2/17/2024
2.1.159 2,465 2/16/2024
2.1.158 1,749 2/16/2024
2.1.157 3,027 2/16/2024
2.1.156 4,415 2/16/2024
2.1.155 5,262 2/16/2024
2.1.154 338 2/16/2024
2.1.153 2,639 2/16/2024
2.1.152 320 2/16/2024
2.1.151 318 2/16/2024
2.1.150 8,957 2/14/2024
2.1.149 3,686 2/13/2024
2.1.148 4,439 2/13/2024
2.1.147 5,619 2/13/2024
2.1.146 5,414 2/13/2024
2.1.145 7,426 2/12/2024
2.1.144 1,148 2/11/2024
2.1.143 7,929 2/11/2024
2.1.142 4,377 2/11/2024
2.1.141 9,257 2/10/2024
2.1.140 1,167 2/9/2024
2.1.139 8,360 2/9/2024
2.1.138 5,507 2/9/2024
2.1.137 1,399 2/8/2024
2.1.136 6,791 2/8/2024
2.1.135 2,758 2/8/2024
2.1.134 15,952 2/8/2024
2.1.133 398 2/8/2024
2.1.132 331 2/8/2024
2.1.131 7,645 2/7/2024
2.1.130 3,108 2/7/2024
2.1.129 5,271 2/7/2024
2.1.128 1,695 2/7/2024
2.1.127 1,461 2/6/2024
2.1.126 4,277 2/6/2024
2.1.125 362 2/6/2024
2.1.124 11,167 2/5/2024
2.1.123 7,174 2/4/2024
2.1.122 7,654 2/2/2024
2.1.121 8,973 1/31/2024
2.1.120 8,765 1/29/2024
2.1.119 5,486 1/29/2024
2.1.118 3,689 1/29/2024
2.1.117 5,592 1/28/2024
2.1.116 7,636 1/28/2024
2.1.115 4,300 1/28/2024
2.1.114 2,657 1/28/2024
2.1.113 3,238 1/27/2024
2.1.112 3,065 1/27/2024
2.1.111 7,902 1/27/2024
2.1.110 4,179 1/27/2024
2.1.109 9,269 1/27/2024
2.1.108 2,573 1/26/2024
2.1.107 3,165 1/26/2024
2.1.106 3,846 1/26/2024
2.1.105 7,241 1/26/2024
2.1.104 3,424 1/26/2024
2.1.103 1,997 1/26/2024
2.1.102 6,687 1/25/2024
2.1.101 5,293 1/25/2024
2.1.100 2,617 1/25/2024
2.1.99 8,119 1/25/2024
2.1.98 8,313 1/19/2024
2.1.97 8,131 1/15/2024
2.1.96 3,645 1/15/2024
2.1.95 2,996 1/15/2024
2.1.94 7,392 1/15/2024
2.1.93 7,607 1/15/2024
2.1.92 7,285 1/14/2024
2.1.91 8,985 1/13/2024
2.1.90 7,348 1/12/2024
2.1.89 7,366 1/11/2024
2.1.88 10,105 1/7/2024
2.1.87 8,115 1/5/2024
2.1.86 3,539 1/5/2024
2.1.85 4,774 1/5/2024
2.1.84 8,685 1/3/2024
2.1.83 5,267 1/1/2024
2.1.82 7,170 12/28/2023
2.1.81 2,820 12/28/2023
2.1.80 3,028 12/28/2023
2.1.79 6,436 12/27/2023
2.1.78 3,061 12/27/2023
2.1.77 382 12/27/2023
2.1.76 12,377 12/25/2023
2.1.75 6,686 12/25/2023
2.1.74 3,543 12/25/2023
2.1.73 1,043 12/25/2023
2.1.72 404 12/25/2023
2.1.71 9,813 12/24/2023
2.1.70 7,648 12/23/2023
2.1.69 4,107 12/23/2023
2.1.68 2,550 12/23/2023
2.1.67 5,204 12/23/2023
2.1.66 373 12/23/2023
2.1.65 11,792 12/19/2023
2.1.64 3,091 12/19/2023
2.1.63 7,774 12/12/2023
2.1.62 644 12/12/2023
2.1.61 3,768 12/11/2023
2.1.60 3,006 12/11/2023
2.1.59 1,575 12/11/2023
2.1.58 2,319 12/11/2023
2.1.57 1,214 12/10/2023
2.1.56 1,176 12/10/2023
2.1.55 2,432 12/10/2023
2.1.54 1,514 12/10/2023
2.1.53 11,073 12/10/2023
2.1.52 2,578 12/9/2023
2.1.51 1,449 12/9/2023
2.1.50 2,214 12/9/2023
2.1.49 3,386 12/9/2023
2.1.48 343 12/9/2023
2.1.47 1,904 12/9/2023
2.1.46 413 12/9/2023
2.1.45 3,744 12/9/2023
2.1.44 375 12/9/2023
2.1.43 6,325 12/9/2023
2.1.42 9,277 12/6/2023
2.1.41 1,622 12/6/2023
2.1.40 2,439 12/6/2023
2.1.39 5,533 12/5/2023
2.1.38 2,784 12/5/2023
2.1.37 1,577 12/5/2023
2.1.36 4,002 12/5/2023
2.1.35 354 12/5/2023
2.1.34 3,401 12/5/2023
2.1.33 355 12/5/2023
2.1.32 2,342 12/4/2023
2.1.31 1,996 12/4/2023
2.1.30 383 12/4/2023
2.1.29 12,271 12/4/2023
2.1.28 4,397 11/27/2023
2.1.27 1,936 11/26/2023
2.1.26 4,797 11/23/2023
2.1.25 4,155 11/23/2023
2.1.24 5,159 11/23/2023
2.1.23 355 11/23/2023
2.1.22 9,961 11/20/2023
2.1.21 4,808 11/20/2023
2.1.20 8,183 11/19/2023
2.1.19 4,243 11/19/2023
2.1.18 5,791 11/19/2023
2.1.17 1,551 11/18/2023
2.1.16 7,903 11/18/2023
2.1.15 1,659 11/18/2023
2.1.14 4,827 11/18/2023
2.1.13 887 11/18/2023
2.1.12 5,045 11/17/2023
2.1.11 4,239 11/17/2023
2.1.10 3,303 11/17/2023
2.1.9 578 11/17/2023
2.1.8 4,641 11/17/2023
2.1.7 2,945 11/17/2023
2.1.6 3,687 11/17/2023
2.1.5 2,829 11/17/2023
2.1.4 874 11/17/2023
2.1.3 4,694 11/16/2023
2.0.78 1,603 11/15/2023
2.0.77 382 11/15/2023
2.0.76 4,287 11/15/2023
2.0.2 365 11/16/2023
2.0.1 348 11/16/2023
1.0.75 6,167 11/13/2023
1.0.74 8,702 11/10/2023
1.0.73 6,423 11/9/2023
1.0.72 4,457 11/8/2023
1.0.71 6,646 11/7/2023
1.0.70 3,450 11/6/2023
1.0.69 4,267 11/3/2023
1.0.68 7,247 11/2/2023
1.0.67 5,013 11/1/2023
1.0.66 14,940 10/26/2023
1.0.65 8,992 10/19/2023
1.0.64 3,785 10/18/2023
1.0.63 3,896 10/17/2023
1.0.62 4,750 10/16/2023
1.0.61 7,789 10/13/2023
1.0.60 4,829 10/12/2023
1.0.59 15,747 9/18/2023
1.0.58 373 9/18/2023
1.0.57 10,203 9/14/2023
1.0.56 9,754 8/31/2023
1.0.55 4,737 8/30/2023
1.0.54 4,298 8/29/2023
1.0.53 4,178 8/28/2023
1.0.52 7,524 8/25/2023
1.0.51 4,474 8/24/2023
1.0.50 10,639 8/21/2023
1.0.49 4,434 8/18/2023
1.0.48 4,087 8/17/2023
1.0.47 6,893 8/16/2023
1.0.46 11,874 8/10/2023
1.0.45 4,144 8/9/2023
1.0.44 6,526 8/8/2023
1.0.43 5,884 8/7/2023
1.0.42 6,068 8/4/2023
1.0.41 11,349 7/13/2023
1.0.40 7,303 7/11/2023
1.0.39 4,794 7/10/2023
1.0.38 5,578 7/7/2023
1.0.37 464 7/7/2023
1.0.36 15,407 6/30/2023
1.0.35 7,956 6/28/2023
1.0.34 7,891 6/27/2023
1.0.33 8,993 6/26/2023
1.0.32 5,668 6/23/2023
1.0.31 11,110 6/21/2023
1.0.30 11,800 6/15/2023
1.0.29 4,742 6/14/2023
1.0.28 12,596 6/9/2023
1.0.27 5,329 6/8/2023
1.0.26 6,362 6/7/2023
1.0.25 7,282 6/6/2023
1.0.24 479 6/6/2023
1.0.23 6,263 6/5/2023
1.0.22 21,648 5/30/2023
1.0.21 23,494 5/29/2023
1.0.20 8,423 5/26/2023
1.0.19 9,619 5/25/2023
1.0.18 10,025 5/24/2023
1.0.17 6,928 5/24/2023
1.0.16 2,171 5/23/2023
1.0.15 1,958 5/23/2023
1.0.12 3,994 5/22/2023
1.0.11 23,361 5/16/2023
1.0.10 19,325 4/20/2023
1.0.9 18,425 4/3/2023
1.0.8 1,458 4/3/2023
1.0.7 2,878 3/23/2023
1.0.5 930 3/13/2023
1.0.4 656 3/11/2023
1.0.3 543 3/11/2023
1.0.2 542 3/11/2023
1.0.1 614 3/11/2023