Soenneker.Utils.AsyncSingleton 2.1.118

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.118
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.118
                    
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.118" />
                    
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.118" />
                    
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.118
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.118"
                    
#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.118
                    
#: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.118
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.118
                    
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 79,054 9/3/2025
3.0.715 177 9/3/2025
3.0.714 56,098 8/11/2025
3.0.713 165 8/11/2025
3.0.712 100,753 7/1/2025
3.0.711 11,538 6/27/2025
3.0.710 1,512 6/27/2025
3.0.709 61,314 5/27/2025
3.0.708 1,051 5/27/2025
3.0.707 23,710 5/22/2025
3.0.705 36,636 5/7/2025
3.0.704 599 5/7/2025
3.0.703 22,336 5/5/2025
3.0.702 671 5/5/2025
3.0.701 202 5/5/2025
3.0.700 28,063 4/8/2025
3.0.699 6,949 4/8/2025
3.0.698 3,544 4/8/2025
3.0.697 4,903 4/8/2025
3.0.696 12,916 4/7/2025
3.0.695 4,523 4/7/2025
3.0.694 12,069 4/7/2025
3.0.693 11,116 4/7/2025
3.0.692 3,305 4/7/2025
3.0.691 3,127 4/6/2025
3.0.690 1,748 4/6/2025
3.0.689 320 4/6/2025
3.0.688 227 4/6/2025
3.0.687 4,511 4/6/2025
3.0.686 2,713 4/6/2025
3.0.685 175 4/6/2025
3.0.684 11,434 4/5/2025
3.0.683 1,865 4/5/2025
3.0.682 576 4/5/2025
3.0.681 180 4/5/2025
3.0.680 906 4/4/2025
3.0.679 337 4/4/2025
3.0.678 58,586 4/1/2025
3.0.677 15,694 3/31/2025
3.0.676 11,593 3/29/2025
3.0.675 15,499 3/25/2025
3.0.674 12,030 3/21/2025
3.0.673 21,958 3/15/2025
3.0.672 12,303 3/12/2025
3.0.671 1,125 3/12/2025
3.0.670 6,094 3/11/2025
3.0.669 313 3/11/2025
3.0.668 8,221 3/11/2025
3.0.667 7,722 3/11/2025
3.0.666 25,988 3/2/2025
3.0.665 2,824 3/2/2025
3.0.664 2,977 3/1/2025
3.0.663 4,884 3/1/2025
3.0.662 4,312 3/1/2025
3.0.661 3,129 3/1/2025
3.0.660 159 3/1/2025
3.0.659 4,715 3/1/2025
3.0.658 18,289 2/25/2025
3.0.657 4,173 2/25/2025
3.0.656 3,791 2/25/2025
3.0.655 4,565 2/24/2025
3.0.654 10,762 2/22/2025
3.0.653 17,442 2/22/2025
3.0.652 517 2/22/2025
3.0.651 4,939 2/21/2025
3.0.650 10,628 2/21/2025
3.0.649 13,775 2/19/2025
3.0.648 755 2/18/2025
3.0.647 2,653 2/18/2025
3.0.646 3,037 2/18/2025
3.0.645 7,846 2/18/2025
3.0.644 13,918 2/13/2025
3.0.643 15,656 2/12/2025
3.0.642 1,560 2/12/2025
3.0.641 2,723 2/12/2025
3.0.640 3,073 2/11/2025
3.0.639 3,015 2/11/2025
3.0.638 3,845 2/11/2025
3.0.637 5,704 2/11/2025
3.0.636 7,034 2/11/2025
3.0.635 9,481 2/10/2025
3.0.634 178 2/10/2025
3.0.633 11,923 2/9/2025
3.0.632 8,969 2/8/2025
3.0.631 1,737 2/8/2025
3.0.630 3,624 2/7/2025
3.0.629 4,425 2/7/2025
3.0.628 4,787 2/7/2025
3.0.627 413 2/7/2025
3.0.626 4,359 2/7/2025
3.0.625 167 2/7/2025
3.0.624 1,038 2/7/2025
3.0.623 24,236 2/5/2025
3.0.622 2,025 2/5/2025
3.0.621 3,660 2/5/2025
3.0.620 2,799 2/5/2025
3.0.619 27,737 1/28/2025
3.0.618 7,743 1/28/2025
3.0.617 442 1/27/2025
3.0.616 27,782 1/26/2025
3.0.615 2,545 1/26/2025
3.0.614 6,207 1/25/2025
3.0.613 8,494 1/25/2025
3.0.612 5,184 1/25/2025
3.0.611 2,969 1/24/2025
3.0.610 21,114 1/24/2025
3.0.609 7,036 1/24/2025
3.0.608 6,785 1/24/2025
3.0.607 5,486 1/23/2025
3.0.606 5,476 1/23/2025
3.0.605 16,214 1/21/2025
3.0.604 3,485 1/21/2025
3.0.603 8,169 1/21/2025
3.0.602 5,455 1/21/2025
3.0.601 7,775 1/21/2025
3.0.600 7,889 1/20/2025
3.0.599 574 1/20/2025
3.0.598 1,072 1/20/2025
3.0.597 7,775 1/20/2025
3.0.596 9,319 1/20/2025
3.0.595 1,150 1/20/2025
3.0.594 176 1/20/2025
3.0.593 1,068 1/20/2025
3.0.592 159 1/20/2025
3.0.591 24,179 1/19/2025
3.0.590 3,823 1/19/2025
3.0.589 3,869 1/18/2025
3.0.588 6,304 1/18/2025
3.0.587 2,475 1/18/2025
3.0.586 10,167 1/17/2025
3.0.585 1,906 1/17/2025
3.0.584 5,151 1/17/2025
3.0.583 4,492 1/16/2025
3.0.582 27,581 1/16/2025
3.0.581 2,417 1/16/2025
3.0.580 4,887 1/16/2025
3.0.579 6,143 1/15/2025
3.0.578 3,665 1/15/2025
3.0.577 6,819 1/15/2025
3.0.576 10,787 1/15/2025
3.0.575 1,906 1/15/2025
3.0.574 5,689 1/15/2025
3.0.573 558 1/15/2025
3.0.572 5,521 1/14/2025
3.0.571 2,590 1/14/2025
3.0.570 5,792 1/14/2025
3.0.569 23,023 1/13/2025
3.0.568 8,132 1/12/2025
3.0.567 12,256 1/11/2025
3.0.566 3,338 1/11/2025
3.0.565 1,659 1/11/2025
3.0.564 1,356 1/10/2025
3.0.563 6,915 1/10/2025
3.0.562 633 1/10/2025
3.0.561 1,438 1/10/2025
3.0.560 151 1/10/2025
3.0.559 151 1/10/2025
3.0.558 15,089 1/8/2025
3.0.557 442 1/8/2025
3.0.556 6,162 1/3/2025
3.0.555 4,912 1/3/2025
3.0.554 6,751 1/2/2025
3.0.553 1,117 1/2/2025
3.0.552 204 1/2/2025
3.0.551 3,884 1/2/2025
3.0.550 8,487 1/1/2025
3.0.549 1,200 1/1/2025
3.0.548 1,955 1/1/2025
3.0.547 2,208 1/1/2025
3.0.546 177 1/1/2025
3.0.545 984 12/31/2024
3.0.544 170 12/31/2024
3.0.543 373 12/31/2024
3.0.542 11,907 12/31/2024
3.0.541 12,433 12/31/2024
3.0.540 5,090 12/31/2024
3.0.539 6,333 12/31/2024
3.0.538 4,617 12/31/2024
3.0.537 1,995 12/31/2024
3.0.536 173 12/31/2024
3.0.535 7,640 12/31/2024
3.0.534 23,952 12/27/2024
3.0.533 4,486 12/27/2024
3.0.532 16,190 12/24/2024
3.0.531 1,053 12/24/2024
3.0.530 2,306 12/24/2024
3.0.529 430 12/24/2024
3.0.528 470 12/24/2024
3.0.527 2,803 12/23/2024
3.0.526 5,741 12/23/2024
3.0.525 2,771 12/23/2024
3.0.524 2,612 12/23/2024
3.0.523 3,584 12/23/2024
3.0.522 1,850 12/23/2024
3.0.521 4,572 12/22/2024
3.0.520 179 12/22/2024
3.0.519 19,486 12/22/2024
3.0.518 192 12/22/2024
3.0.517 14,854 12/22/2024
3.0.516 163 12/22/2024
3.0.515 7,157 12/22/2024
3.0.514 182 12/22/2024
3.0.513 1,392 12/21/2024
3.0.512 465 12/21/2024
3.0.511 160 12/21/2024
3.0.510 13,087 12/21/2024
3.0.509 1,340 12/21/2024
3.0.508 154 12/21/2024
3.0.507 2,211 12/21/2024
3.0.506 172 12/21/2024
3.0.505 7,180 12/21/2024
3.0.504 2,324 12/21/2024
3.0.503 5,809 12/21/2024
3.0.502 169 12/21/2024
3.0.501 3,687 12/20/2024
3.0.500 3,546 12/20/2024
3.0.499 6,967 12/20/2024
3.0.498 2,149 12/20/2024
3.0.497 990 12/20/2024
3.0.496 11,861 12/19/2024
3.0.495 955 12/19/2024
3.0.494 1,600 12/18/2024
3.0.493 886 12/18/2024
3.0.492 17,116 12/17/2024
3.0.491 545 12/17/2024
3.0.490 1,177 12/17/2024
3.0.489 1,552 12/17/2024
3.0.488 1,729 12/16/2024
3.0.487 552 12/16/2024
3.0.486 146 12/16/2024
3.0.485 15,118 12/9/2024
3.0.484 3,732 12/9/2024
3.0.483 8,079 12/9/2024
3.0.482 1,545 12/9/2024
3.0.480 16,235 12/6/2024
3.0.479 8,629 12/6/2024
3.0.478 2,850 12/6/2024
3.0.477 1,589 12/6/2024
3.0.476 1,042 12/6/2024
3.0.475 3,415 12/6/2024
3.0.474 10,393 12/6/2024
3.0.473 13,523 12/5/2024
3.0.472 1,592 12/5/2024
3.0.471 8,341 12/5/2024
3.0.470 3,690 12/5/2024
3.0.469 1,066 12/5/2024
3.0.468 7,199 12/4/2024
3.0.467 4,230 12/4/2024
3.0.466 4,509 12/4/2024
3.0.465 11,334 12/3/2024
3.0.464 483 12/3/2024
3.0.463 2,574 12/3/2024
3.0.462 9,747 12/3/2024
3.0.461 1,855 12/3/2024
3.0.460 5,801 12/3/2024
3.0.459 160 12/3/2024
3.0.458 1,246 12/3/2024
3.0.457 13,127 12/2/2024
3.0.456 5,813 12/2/2024
3.0.455 1,747 12/2/2024
3.0.454 1,524 12/1/2024
3.0.453 7,896 12/1/2024
3.0.452 8,243 12/1/2024
3.0.451 8,680 11/29/2024
3.0.450 13,623 11/20/2024
3.0.449 9,000 11/20/2024
3.0.448 669 11/20/2024
3.0.447 3,151 11/20/2024
3.0.445 3,949 11/19/2024
3.0.444 3,285 11/19/2024
3.0.443 9,191 11/19/2024
3.0.442 6,455 11/19/2024
3.0.441 162 11/19/2024
3.0.439 18,230 11/14/2024
3.0.438 7,119 11/14/2024
3.0.437 2,979 11/14/2024
3.0.436 5,485 11/14/2024
3.0.435 538 11/14/2024
3.0.434 184 11/14/2024
3.0.433 1,961 11/14/2024
3.0.432 161 11/14/2024
2.1.431 26,117 11/13/2024
2.1.430 5,116 11/13/2024
2.1.429 3,972 11/12/2024
2.1.428 18,258 11/9/2024
2.1.427 3,882 11/9/2024
2.1.426 4,106 11/8/2024
2.1.425 1,853 11/8/2024
2.1.424 2,077 11/8/2024
2.1.423 2,384 11/8/2024
2.1.422 2,809 11/8/2024
2.1.421 7,387 11/8/2024
2.1.420 28,657 11/1/2024
2.1.419 13,203 10/29/2024
2.1.418 5,105 10/29/2024
2.1.417 7,002 10/29/2024
2.1.416 12,970 10/28/2024
2.1.415 12,919 10/26/2024
2.1.414 14,873 10/22/2024
2.1.413 4,879 10/22/2024
2.1.412 2,660 10/22/2024
2.1.411 14,578 10/17/2024
2.1.410 12,971 10/15/2024
2.1.409 2,458 10/14/2024
2.1.408 13,349 10/11/2024
2.1.407 3,758 10/11/2024
2.1.406 2,461 10/11/2024
2.1.404 19,963 10/8/2024
2.1.403 8,024 10/8/2024
2.1.402 24,575 10/3/2024
2.1.401 1,787 10/3/2024
2.1.400 4,219 10/3/2024
2.1.399 15,916 10/2/2024
2.1.398 5,220 10/2/2024
2.1.397 16,287 10/1/2024
2.1.396 1,489 10/1/2024
2.1.395 8,053 9/30/2024
2.1.394 12,691 9/29/2024
2.1.393 4,148 9/29/2024
2.1.392 3,961 9/29/2024
2.1.391 10,943 9/27/2024
2.1.390 7,493 9/27/2024
2.1.389 255 9/27/2024
2.1.388 1,137 9/27/2024
2.1.387 2,870 9/27/2024
2.1.386 177 9/27/2024
2.1.385 16,628 9/26/2024
2.1.384 14,676 9/26/2024
2.1.383 6,350 9/26/2024
2.1.382 18,193 9/23/2024
2.1.381 4,471 9/23/2024
2.1.380 7,928 9/23/2024
2.1.379 7,747 9/23/2024
2.1.378 6,035 9/23/2024
2.1.377 1,204 9/23/2024
2.1.376 3,058 9/23/2024
2.1.375 165 9/23/2024
2.1.374 21,651 9/17/2024
2.1.373 1,001 9/17/2024
2.1.372 4,143 9/17/2024
2.1.371 4,317 9/17/2024
2.1.370 4,753 9/17/2024
2.1.369 6,448 9/17/2024
2.1.368 7,250 9/17/2024
2.1.367 23,629 9/16/2024
2.1.366 12,207 9/12/2024
2.1.365 4,681 9/11/2024
2.1.363 13,128 9/11/2024
2.1.362 25,462 9/10/2024
2.1.361 1,081 9/10/2024
2.1.360 1,583 9/10/2024
2.1.359 1,372 9/10/2024
2.1.358 5,423 9/9/2024
2.1.357 2,240 9/9/2024
2.1.356 9,286 9/9/2024
2.1.355 2,551 9/9/2024
2.1.354 10,464 9/9/2024
2.1.353 19,817 9/7/2024
2.1.352 15,008 9/6/2024
2.1.351 7,853 9/5/2024
2.1.350 7,850 9/5/2024
2.1.349 812 9/5/2024
2.1.348 208 9/5/2024
2.1.347 13,523 9/5/2024
2.1.346 1,545 9/4/2024
2.1.345 20,683 9/3/2024
2.1.344 9,488 9/3/2024
2.1.343 7,005 9/3/2024
2.1.342 13,400 8/29/2024
2.1.341 11,192 8/26/2024
2.1.340 11,905 8/21/2024
2.1.339 4,430 8/21/2024
2.1.338 2,628 8/20/2024
2.1.337 9,011 8/20/2024
2.1.336 198 8/20/2024
2.1.335 187 8/20/2024
2.1.334 15,044 8/19/2024
2.1.333 14,482 8/15/2024
2.1.332 14,443 8/13/2024
2.1.331 12,077 8/6/2024
2.1.330 6,946 8/6/2024
2.1.329 10,659 8/1/2024
2.1.328 2,187 8/1/2024
2.1.327 1,016 8/1/2024
2.1.326 15,230 7/25/2024
2.1.325 3,234 7/25/2024
2.1.324 2,793 7/25/2024
2.1.323 436 7/24/2024
2.1.322 1,213 7/24/2024
2.1.321 579 7/24/2024
2.1.320 15,550 7/20/2024
2.1.319 19,197 7/14/2024
2.1.318 7,167 7/14/2024
2.1.317 10,566 7/10/2024
2.1.316 4,583 7/10/2024
2.1.315 4,213 7/10/2024
2.1.314 2,366 7/10/2024
2.1.313 1,680 7/10/2024
2.1.312 515 7/10/2024
2.1.311 4,139 7/10/2024
2.1.310 2,056 7/9/2024
2.1.308 4,167 7/9/2024
2.1.307 172 7/9/2024
2.1.306 4,733 7/9/2024
2.1.305 10,531 7/9/2024
2.1.304 9,138 7/9/2024
2.1.303 4,314 7/9/2024
2.1.302 172 7/9/2024
2.1.301 11,965 7/9/2024
2.1.300 9,785 7/8/2024
2.1.299 573 7/8/2024
2.1.298 167 7/8/2024
2.1.297 182 7/8/2024
2.1.296 13,225 7/8/2024
2.1.295 2,592 7/7/2024
2.1.294 8,430 7/7/2024
2.1.293 191 7/7/2024
2.1.292 2,300 7/7/2024
2.1.291 4,881 7/7/2024
2.1.290 16,564 7/3/2024
2.1.289 5,350 7/3/2024
2.1.288 4,772 7/3/2024
2.1.287 1,380 7/3/2024
2.1.286 9,318 7/2/2024
2.1.283 5,690 6/30/2024
2.1.282 3,779 6/28/2024
2.1.281 405 6/28/2024
2.1.279 11,993 6/22/2024
2.1.278 13,797 6/15/2024
2.1.277 1,817 6/15/2024
2.1.276 10,493 6/14/2024
2.1.275 16,821 6/1/2024
2.1.274 2,793 6/1/2024
2.1.273 1,690 6/1/2024
2.1.272 14,842 5/31/2024
2.1.271 9,133 5/29/2024
2.1.270 10,398 5/28/2024
2.1.269 5,929 5/27/2024
2.1.268 10,839 5/26/2024
2.1.267 10,782 5/26/2024
2.1.266 533 5/26/2024
2.1.265 3,993 5/25/2024
2.1.264 2,751 5/25/2024
2.1.263 2,652 5/25/2024
2.1.262 178 5/25/2024
2.1.261 2,158 5/25/2024
2.1.260 182 5/25/2024
2.1.259 7,675 5/25/2024
2.1.258 174 5/25/2024
2.1.257 13,405 5/23/2024
2.1.256 5,410 5/23/2024
2.1.255 3,992 5/22/2024
2.1.254 2,865 5/22/2024
2.1.253 1,200 5/22/2024
2.1.252 179 5/22/2024
2.1.251 178 5/22/2024
2.1.250 5,675 5/22/2024
2.1.249 14,300 5/18/2024
2.1.248 3,034 5/17/2024
2.1.247 5,407 5/17/2024
2.1.246 7,992 5/16/2024
2.1.245 2,129 5/15/2024
2.1.244 5,998 5/15/2024
2.1.243 12,476 5/12/2024
2.1.242 6,706 5/3/2024
2.1.241 7,442 4/29/2024
2.1.240 4,168 4/29/2024
2.1.239 8,175 4/28/2024
2.1.238 1,309 4/28/2024
2.1.237 1,594 4/28/2024
2.1.236 6,165 4/28/2024
2.1.235 876 4/28/2024
2.1.234 7,929 4/28/2024
2.1.233 1,734 4/28/2024
2.1.232 7,506 4/27/2024
2.1.231 190 4/27/2024
2.1.230 15,071 4/19/2024
2.1.229 9,379 4/18/2024
2.1.228 9,782 4/12/2024
2.1.227 1,578 4/12/2024
2.1.226 2,476 4/12/2024
2.1.225 2,078 4/12/2024
2.1.224 1,450 4/12/2024
2.1.223 2,118 4/12/2024
2.1.222 789 4/12/2024
2.1.221 195 4/12/2024
2.1.220 5,500 4/10/2024
2.1.219 23,556 4/10/2024
2.1.218 984 4/10/2024
2.1.217 11,666 4/2/2024
2.1.216 2,092 4/1/2024
2.1.215 11,219 3/29/2024
2.1.214 8,204 3/25/2024
2.1.213 936 3/25/2024
2.1.212 11,316 3/20/2024
2.1.211 7,805 3/19/2024
2.1.210 4,856 3/19/2024
2.1.209 5,210 3/18/2024
2.1.208 11,137 3/15/2024
2.1.207 7,650 3/13/2024
2.1.206 2,935 3/13/2024
2.1.205 3,906 3/13/2024
2.1.204 247 3/13/2024
2.1.203 234 3/13/2024
2.1.202 2,496 3/13/2024
2.1.201 227 3/13/2024
2.1.200 5,583 3/12/2024
2.1.199 7,058 3/12/2024
2.1.198 9,228 3/11/2024
2.1.197 6,386 3/11/2024
2.1.196 6,958 3/10/2024
2.1.195 8,911 3/8/2024
2.1.194 805 3/8/2024
2.1.193 6,393 3/8/2024
2.1.192 8,160 3/6/2024
2.1.191 8,165 3/4/2024
2.1.190 4,536 3/4/2024
2.1.189 9,157 3/2/2024
2.1.188 2,300 3/2/2024
2.1.187 2,951 3/2/2024
2.1.186 1,641 3/2/2024
2.1.185 1,109 3/2/2024
2.1.184 6,231 2/29/2024
2.1.183 2,008 2/29/2024
2.1.182 3,047 2/29/2024
2.1.181 5,869 2/26/2024
2.1.180 22,921 2/25/2024
2.1.179 2,701 2/25/2024
2.1.178 8,969 2/23/2024
2.1.177 8,714 2/22/2024
2.1.176 2,421 2/22/2024
2.1.175 2,946 2/21/2024
2.1.174 4,767 2/21/2024
2.1.173 4,278 2/21/2024
2.1.172 5,408 2/21/2024
2.1.171 2,294 2/21/2024
2.1.170 433 2/21/2024
2.1.169 4,869 2/21/2024
2.1.168 1,585 2/20/2024
2.1.167 287 2/20/2024
2.1.166 287 2/20/2024
2.1.165 6,434 2/20/2024
2.1.164 5,009 2/20/2024
2.1.163 4,709 2/20/2024
2.1.162 9,924 2/19/2024
2.1.161 7,840 2/17/2024
2.1.160 3,165 2/17/2024
2.1.159 2,400 2/16/2024
2.1.158 1,716 2/16/2024
2.1.157 2,902 2/16/2024
2.1.156 4,283 2/16/2024
2.1.155 5,101 2/16/2024
2.1.154 337 2/16/2024
2.1.153 2,555 2/16/2024
2.1.152 319 2/16/2024
2.1.151 316 2/16/2024
2.1.150 8,663 2/14/2024
2.1.149 3,570 2/13/2024
2.1.148 4,286 2/13/2024
2.1.147 5,466 2/13/2024
2.1.146 5,218 2/13/2024
2.1.145 7,147 2/12/2024
2.1.144 1,101 2/11/2024
2.1.143 7,680 2/11/2024
2.1.142 4,258 2/11/2024
2.1.141 8,912 2/10/2024
2.1.140 1,114 2/9/2024
2.1.139 8,122 2/9/2024
2.1.138 5,330 2/9/2024
2.1.137 1,351 2/8/2024
2.1.136 6,581 2/8/2024
2.1.135 2,665 2/8/2024
2.1.134 14,778 2/8/2024
2.1.133 394 2/8/2024
2.1.132 328 2/8/2024
2.1.131 7,423 2/7/2024
2.1.130 2,983 2/7/2024
2.1.129 5,132 2/7/2024
2.1.128 1,653 2/7/2024
2.1.127 1,392 2/6/2024
2.1.126 4,133 2/6/2024
2.1.125 362 2/6/2024
2.1.124 10,738 2/5/2024
2.1.123 6,920 2/4/2024
2.1.122 7,392 2/2/2024
2.1.121 8,644 1/31/2024
2.1.120 8,434 1/29/2024
2.1.119 5,279 1/29/2024
2.1.118 3,535 1/29/2024
2.1.117 5,432 1/28/2024
2.1.116 7,364 1/28/2024
2.1.115 4,181 1/28/2024
2.1.114 2,563 1/28/2024
2.1.113 3,149 1/27/2024
2.1.112 2,958 1/27/2024
2.1.111 7,701 1/27/2024
2.1.110 3,992 1/27/2024
2.1.109 8,993 1/27/2024
2.1.108 2,509 1/26/2024
2.1.107 3,015 1/26/2024
2.1.106 3,747 1/26/2024
2.1.105 7,052 1/26/2024
2.1.104 3,320 1/26/2024
2.1.103 1,945 1/26/2024
2.1.102 6,460 1/25/2024
2.1.101 5,114 1/25/2024
2.1.100 2,523 1/25/2024
2.1.99 7,849 1/25/2024
2.1.98 8,076 1/19/2024
2.1.97 7,819 1/15/2024
2.1.96 3,569 1/15/2024
2.1.95 2,897 1/15/2024
2.1.94 7,181 1/15/2024
2.1.93 7,415 1/15/2024
2.1.92 7,082 1/14/2024
2.1.91 8,714 1/13/2024
2.1.90 7,142 1/12/2024
2.1.89 7,179 1/11/2024
2.1.88 9,828 1/7/2024
2.1.87 7,873 1/5/2024
2.1.86 3,458 1/5/2024
2.1.85 4,613 1/5/2024
2.1.84 8,449 1/3/2024
2.1.83 5,126 1/1/2024
2.1.82 6,992 12/28/2023
2.1.81 2,765 12/28/2023
2.1.80 2,946 12/28/2023
2.1.79 6,333 12/27/2023
2.1.78 2,988 12/27/2023
2.1.77 382 12/27/2023
2.1.76 12,041 12/25/2023
2.1.75 6,533 12/25/2023
2.1.74 3,466 12/25/2023
2.1.73 1,019 12/25/2023
2.1.72 402 12/25/2023
2.1.71 9,554 12/24/2023
2.1.70 7,490 12/23/2023
2.1.69 4,017 12/23/2023
2.1.68 2,501 12/23/2023
2.1.67 5,104 12/23/2023
2.1.66 371 12/23/2023
2.1.65 11,472 12/19/2023
2.1.64 3,012 12/19/2023
2.1.63 7,564 12/12/2023
2.1.62 625 12/12/2023
2.1.61 3,697 12/11/2023
2.1.60 2,971 12/11/2023
2.1.59 1,567 12/11/2023
2.1.58 2,279 12/11/2023
2.1.57 1,174 12/10/2023
2.1.56 1,168 12/10/2023
2.1.55 2,384 12/10/2023
2.1.54 1,490 12/10/2023
2.1.53 10,895 12/10/2023
2.1.52 2,518 12/9/2023
2.1.51 1,432 12/9/2023
2.1.50 2,167 12/9/2023
2.1.49 3,314 12/9/2023
2.1.48 342 12/9/2023
2.1.47 1,824 12/9/2023
2.1.46 411 12/9/2023
2.1.45 3,701 12/9/2023
2.1.44 374 12/9/2023
2.1.43 6,192 12/9/2023
2.1.42 9,091 12/6/2023
2.1.41 1,602 12/6/2023
2.1.40 2,398 12/6/2023
2.1.39 5,409 12/5/2023
2.1.38 2,716 12/5/2023
2.1.37 1,548 12/5/2023
2.1.36 3,926 12/5/2023
2.1.35 351 12/5/2023
2.1.34 3,328 12/5/2023
2.1.33 355 12/5/2023
2.1.32 2,280 12/4/2023
2.1.31 1,964 12/4/2023
2.1.30 383 12/4/2023
2.1.29 11,994 12/4/2023
2.1.28 4,265 11/27/2023
2.1.27 1,876 11/26/2023
2.1.26 4,689 11/23/2023
2.1.25 4,025 11/23/2023
2.1.24 5,019 11/23/2023
2.1.23 355 11/23/2023
2.1.22 9,639 11/20/2023
2.1.21 4,690 11/20/2023
2.1.20 7,977 11/19/2023
2.1.19 4,139 11/19/2023
2.1.18 5,665 11/19/2023
2.1.17 1,524 11/18/2023
2.1.16 7,665 11/18/2023
2.1.15 1,626 11/18/2023
2.1.14 4,730 11/18/2023
2.1.13 870 11/18/2023
2.1.12 4,928 11/17/2023
2.1.11 4,153 11/17/2023
2.1.10 3,216 11/17/2023
2.1.9 555 11/17/2023
2.1.8 4,545 11/17/2023
2.1.7 2,873 11/17/2023
2.1.6 3,558 11/17/2023
2.1.5 2,748 11/17/2023
2.1.4 874 11/17/2023
2.1.3 4,566 11/16/2023
2.0.78 1,567 11/15/2023
2.0.77 381 11/15/2023
2.0.76 4,217 11/15/2023
2.0.2 365 11/16/2023
2.0.1 347 11/16/2023
1.0.75 5,956 11/13/2023
1.0.74 8,449 11/10/2023
1.0.73 6,281 11/9/2023
1.0.72 4,358 11/8/2023
1.0.71 6,523 11/7/2023
1.0.70 3,379 11/6/2023
1.0.69 4,146 11/3/2023
1.0.68 7,141 11/2/2023
1.0.67 4,935 11/1/2023
1.0.66 14,402 10/26/2023
1.0.65 8,826 10/19/2023
1.0.64 3,718 10/18/2023
1.0.63 3,800 10/17/2023
1.0.62 4,643 10/16/2023
1.0.61 7,670 10/13/2023
1.0.60 4,746 10/12/2023
1.0.59 15,313 9/18/2023
1.0.58 373 9/18/2023
1.0.57 9,978 9/14/2023
1.0.56 9,527 8/31/2023
1.0.55 4,631 8/30/2023
1.0.54 4,198 8/29/2023
1.0.53 4,096 8/28/2023
1.0.52 7,395 8/25/2023
1.0.51 4,354 8/24/2023
1.0.50 10,421 8/21/2023
1.0.49 4,326 8/18/2023
1.0.48 4,000 8/17/2023
1.0.47 6,782 8/16/2023
1.0.46 11,615 8/10/2023
1.0.45 4,053 8/9/2023
1.0.44 6,446 8/8/2023
1.0.43 5,747 8/7/2023
1.0.42 5,931 8/4/2023
1.0.41 11,091 7/13/2023
1.0.40 7,168 7/11/2023
1.0.39 4,685 7/10/2023
1.0.38 5,455 7/7/2023
1.0.37 464 7/7/2023
1.0.36 15,097 6/30/2023
1.0.35 7,787 6/28/2023
1.0.34 7,774 6/27/2023
1.0.33 8,826 6/26/2023
1.0.32 5,530 6/23/2023
1.0.31 10,956 6/21/2023
1.0.30 11,571 6/15/2023
1.0.29 4,665 6/14/2023
1.0.28 12,408 6/9/2023
1.0.27 5,208 6/8/2023
1.0.26 6,287 6/7/2023
1.0.25 7,151 6/6/2023
1.0.24 479 6/6/2023
1.0.23 6,131 6/5/2023
1.0.22 21,060 5/30/2023
1.0.21 23,275 5/29/2023
1.0.20 8,268 5/26/2023
1.0.19 9,485 5/25/2023
1.0.18 9,916 5/24/2023
1.0.17 6,831 5/24/2023
1.0.16 2,048 5/23/2023
1.0.15 1,953 5/23/2023
1.0.12 3,860 5/22/2023
1.0.11 22,892 5/16/2023
1.0.10 18,885 4/20/2023
1.0.9 17,988 4/3/2023
1.0.8 1,452 4/3/2023
1.0.7 2,868 3/23/2023
1.0.5 928 3/13/2023
1.0.4 654 3/11/2023
1.0.3 542 3/11/2023
1.0.2 541 3/11/2023
1.0.1 614 3/11/2023