Soenneker.Utils.AsyncSingleton 3.0.479

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 3.0.479
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 3.0.479
                    
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="3.0.479" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.AsyncSingleton" Version="3.0.479" />
                    
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 3.0.479
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 3.0.479"
                    
#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@3.0.479
                    
#: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=3.0.479
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=3.0.479
                    
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 net9.0 is compatible.  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. 
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 70,069 9/3/2025
3.0.715 177 9/3/2025
3.0.714 51,574 8/11/2025
3.0.713 165 8/11/2025
3.0.712 93,064 7/1/2025
3.0.711 10,706 6/27/2025
3.0.710 1,416 6/27/2025
3.0.709 57,103 5/27/2025
3.0.708 1,007 5/27/2025
3.0.707 21,884 5/22/2025
3.0.705 33,959 5/7/2025
3.0.704 571 5/7/2025
3.0.703 20,630 5/5/2025
3.0.702 619 5/5/2025
3.0.701 202 5/5/2025
3.0.700 25,851 4/8/2025
3.0.699 6,425 4/8/2025
3.0.698 3,242 4/8/2025
3.0.697 4,556 4/8/2025
3.0.696 11,994 4/7/2025
3.0.695 4,231 4/7/2025
3.0.694 11,130 4/7/2025
3.0.693 10,139 4/7/2025
3.0.692 2,955 4/7/2025
3.0.691 2,914 4/6/2025
3.0.690 1,664 4/6/2025
3.0.689 317 4/6/2025
3.0.688 226 4/6/2025
3.0.687 4,210 4/6/2025
3.0.686 2,487 4/6/2025
3.0.685 175 4/6/2025
3.0.684 10,569 4/5/2025
3.0.683 1,744 4/5/2025
3.0.682 542 4/5/2025
3.0.681 180 4/5/2025
3.0.680 843 4/4/2025
3.0.679 334 4/4/2025
3.0.678 54,034 4/1/2025
3.0.677 14,357 3/31/2025
3.0.676 10,701 3/29/2025
3.0.675 14,216 3/25/2025
3.0.674 11,069 3/21/2025
3.0.673 20,247 3/15/2025
3.0.672 11,411 3/12/2025
3.0.671 1,058 3/12/2025
3.0.670 5,712 3/11/2025
3.0.669 313 3/11/2025
3.0.668 7,632 3/11/2025
3.0.667 7,137 3/11/2025
3.0.666 23,970 3/2/2025
3.0.665 2,618 3/2/2025
3.0.664 2,785 3/1/2025
3.0.663 4,460 3/1/2025
3.0.662 4,060 3/1/2025
3.0.661 2,844 3/1/2025
3.0.660 159 3/1/2025
3.0.659 4,433 3/1/2025
3.0.658 16,965 2/25/2025
3.0.657 3,826 2/25/2025
3.0.656 3,438 2/25/2025
3.0.655 4,236 2/24/2025
3.0.654 10,001 2/22/2025
3.0.653 16,084 2/22/2025
3.0.652 493 2/22/2025
3.0.651 4,515 2/21/2025
3.0.650 9,779 2/21/2025
3.0.649 12,765 2/19/2025
3.0.648 708 2/18/2025
3.0.647 2,471 2/18/2025
3.0.646 2,804 2/18/2025
3.0.645 7,161 2/18/2025
3.0.644 12,772 2/13/2025
3.0.643 14,415 2/12/2025
3.0.642 1,464 2/12/2025
3.0.641 2,518 2/12/2025
3.0.640 2,835 2/11/2025
3.0.639 2,825 2/11/2025
3.0.638 3,533 2/11/2025
3.0.637 5,080 2/11/2025
3.0.636 6,547 2/11/2025
3.0.635 8,753 2/10/2025
3.0.634 177 2/10/2025
3.0.633 10,981 2/9/2025
3.0.632 8,233 2/8/2025
3.0.631 1,599 2/8/2025
3.0.630 3,377 2/7/2025
3.0.629 4,100 2/7/2025
3.0.628 4,452 2/7/2025
3.0.627 382 2/7/2025
3.0.626 3,992 2/7/2025
3.0.625 167 2/7/2025
3.0.624 968 2/7/2025
3.0.623 22,389 2/5/2025
3.0.622 1,873 2/5/2025
3.0.621 3,414 2/5/2025
3.0.620 2,644 2/5/2025
3.0.619 25,793 1/28/2025
3.0.618 7,083 1/28/2025
3.0.617 409 1/27/2025
3.0.616 25,615 1/26/2025
3.0.615 2,380 1/26/2025
3.0.614 5,743 1/25/2025
3.0.613 7,733 1/25/2025
3.0.612 4,809 1/25/2025
3.0.611 2,694 1/24/2025
3.0.610 19,550 1/24/2025
3.0.609 6,452 1/24/2025
3.0.608 6,220 1/24/2025
3.0.607 5,045 1/23/2025
3.0.606 5,014 1/23/2025
3.0.605 14,869 1/21/2025
3.0.604 3,173 1/21/2025
3.0.603 7,442 1/21/2025
3.0.602 5,020 1/21/2025
3.0.601 7,158 1/21/2025
3.0.600 7,190 1/20/2025
3.0.599 522 1/20/2025
3.0.598 939 1/20/2025
3.0.597 7,229 1/20/2025
3.0.596 8,578 1/20/2025
3.0.595 1,069 1/20/2025
3.0.594 175 1/20/2025
3.0.593 1,002 1/20/2025
3.0.592 158 1/20/2025
3.0.591 22,195 1/19/2025
3.0.590 3,541 1/19/2025
3.0.589 3,537 1/18/2025
3.0.588 5,756 1/18/2025
3.0.587 2,288 1/18/2025
3.0.586 9,470 1/17/2025
3.0.585 1,715 1/17/2025
3.0.584 4,792 1/17/2025
3.0.583 4,126 1/16/2025
3.0.582 25,405 1/16/2025
3.0.581 2,223 1/16/2025
3.0.580 4,536 1/16/2025
3.0.579 5,669 1/15/2025
3.0.578 3,354 1/15/2025
3.0.577 6,229 1/15/2025
3.0.576 9,862 1/15/2025
3.0.575 1,713 1/15/2025
3.0.574 5,188 1/15/2025
3.0.573 542 1/15/2025
3.0.572 5,032 1/14/2025
3.0.571 2,322 1/14/2025
3.0.570 5,229 1/14/2025
3.0.569 20,944 1/13/2025
3.0.568 7,399 1/12/2025
3.0.567 11,128 1/11/2025
3.0.566 3,062 1/11/2025
3.0.565 1,504 1/11/2025
3.0.564 1,259 1/10/2025
3.0.563 6,394 1/10/2025
3.0.562 588 1/10/2025
3.0.561 1,296 1/10/2025
3.0.560 151 1/10/2025
3.0.559 151 1/10/2025
3.0.558 13,678 1/8/2025
3.0.557 411 1/8/2025
3.0.556 5,648 1/3/2025
3.0.555 4,484 1/3/2025
3.0.554 6,140 1/2/2025
3.0.553 1,078 1/2/2025
3.0.552 204 1/2/2025
3.0.551 3,512 1/2/2025
3.0.550 7,629 1/1/2025
3.0.549 1,076 1/1/2025
3.0.548 1,790 1/1/2025
3.0.547 2,022 1/1/2025
3.0.546 176 1/1/2025
3.0.545 943 12/31/2024
3.0.544 169 12/31/2024
3.0.543 343 12/31/2024
3.0.542 11,008 12/31/2024
3.0.541 11,300 12/31/2024
3.0.540 4,660 12/31/2024
3.0.539 5,760 12/31/2024
3.0.538 4,176 12/31/2024
3.0.537 1,786 12/31/2024
3.0.536 173 12/31/2024
3.0.535 7,026 12/31/2024
3.0.534 21,862 12/27/2024
3.0.533 4,060 12/27/2024
3.0.532 14,784 12/24/2024
3.0.531 984 12/24/2024
3.0.530 2,124 12/24/2024
3.0.529 410 12/24/2024
3.0.528 457 12/24/2024
3.0.527 2,584 12/23/2024
3.0.526 5,302 12/23/2024
3.0.525 2,472 12/23/2024
3.0.524 2,429 12/23/2024
3.0.523 3,305 12/23/2024
3.0.522 1,716 12/23/2024
3.0.521 4,198 12/22/2024
3.0.520 179 12/22/2024
3.0.519 17,913 12/22/2024
3.0.518 192 12/22/2024
3.0.517 13,534 12/22/2024
3.0.516 163 12/22/2024
3.0.515 6,308 12/22/2024
3.0.514 181 12/22/2024
3.0.513 1,309 12/21/2024
3.0.512 459 12/21/2024
3.0.511 156 12/21/2024
3.0.510 11,855 12/21/2024
3.0.509 1,233 12/21/2024
3.0.508 153 12/21/2024
3.0.507 1,961 12/21/2024
3.0.506 172 12/21/2024
3.0.505 6,653 12/21/2024
3.0.504 2,188 12/21/2024
3.0.503 5,253 12/21/2024
3.0.502 169 12/21/2024
3.0.501 3,319 12/20/2024
3.0.500 3,230 12/20/2024
3.0.499 6,405 12/20/2024
3.0.498 1,957 12/20/2024
3.0.497 933 12/20/2024
3.0.496 10,554 12/19/2024
3.0.495 895 12/19/2024
3.0.494 1,495 12/18/2024
3.0.493 817 12/18/2024
3.0.492 15,728 12/17/2024
3.0.491 499 12/17/2024
3.0.490 1,090 12/17/2024
3.0.489 1,425 12/17/2024
3.0.488 1,612 12/16/2024
3.0.487 522 12/16/2024
3.0.486 146 12/16/2024
3.0.485 13,922 12/9/2024
3.0.484 3,381 12/9/2024
3.0.483 7,369 12/9/2024
3.0.482 1,364 12/9/2024
3.0.480 14,822 12/6/2024
3.0.479 7,873 12/6/2024
3.0.478 2,565 12/6/2024
3.0.477 1,472 12/6/2024
3.0.476 976 12/6/2024
3.0.475 3,101 12/6/2024
3.0.474 9,411 12/6/2024
3.0.473 12,202 12/5/2024
3.0.472 1,477 12/5/2024
3.0.471 7,474 12/5/2024
3.0.470 3,224 12/5/2024
3.0.469 988 12/5/2024
3.0.468 6,682 12/4/2024
3.0.467 3,853 12/4/2024
3.0.466 4,046 12/4/2024
3.0.465 10,371 12/3/2024
3.0.464 438 12/3/2024
3.0.463 2,383 12/3/2024
3.0.462 8,638 12/3/2024
3.0.461 1,722 12/3/2024
3.0.460 5,393 12/3/2024
3.0.459 159 12/3/2024
3.0.458 1,166 12/3/2024
3.0.457 11,904 12/2/2024
3.0.456 5,238 12/2/2024
3.0.455 1,594 12/2/2024
3.0.454 1,352 12/1/2024
3.0.453 7,129 12/1/2024
3.0.452 7,469 12/1/2024
3.0.451 7,890 11/29/2024
3.0.450 12,569 11/20/2024
3.0.449 8,208 11/20/2024
3.0.448 633 11/20/2024
3.0.447 2,897 11/20/2024
3.0.445 3,617 11/19/2024
3.0.444 2,984 11/19/2024
3.0.443 8,400 11/19/2024
3.0.442 5,985 11/19/2024
3.0.441 160 11/19/2024
3.0.439 16,652 11/14/2024
3.0.438 6,512 11/14/2024
3.0.437 2,664 11/14/2024
3.0.436 5,094 11/14/2024
3.0.435 513 11/14/2024
3.0.434 183 11/14/2024
3.0.433 1,859 11/14/2024
3.0.432 161 11/14/2024
2.1.431 24,062 11/13/2024
2.1.430 4,657 11/13/2024
2.1.429 3,695 11/12/2024
2.1.428 16,828 11/9/2024
2.1.427 3,577 11/9/2024
2.1.426 3,792 11/8/2024
2.1.425 1,682 11/8/2024
2.1.424 1,915 11/8/2024
2.1.423 2,229 11/8/2024
2.1.422 2,608 11/8/2024
2.1.421 6,738 11/8/2024
2.1.420 26,326 11/1/2024
2.1.419 12,041 10/29/2024
2.1.418 4,691 10/29/2024
2.1.417 6,321 10/29/2024
2.1.416 11,865 10/28/2024
2.1.415 11,827 10/26/2024
2.1.414 13,775 10/22/2024
2.1.413 4,405 10/22/2024
2.1.412 2,493 10/22/2024
2.1.411 13,303 10/17/2024
2.1.410 11,836 10/15/2024
2.1.409 2,260 10/14/2024
2.1.408 12,220 10/11/2024
2.1.407 3,439 10/11/2024
2.1.406 2,225 10/11/2024
2.1.404 18,221 10/8/2024
2.1.403 7,386 10/8/2024
2.1.402 22,515 10/3/2024
2.1.401 1,673 10/3/2024
2.1.400 3,901 10/3/2024
2.1.399 14,521 10/2/2024
2.1.398 4,772 10/2/2024
2.1.397 15,017 10/1/2024
2.1.396 1,344 10/1/2024
2.1.395 7,422 9/30/2024
2.1.394 11,658 9/29/2024
2.1.393 3,847 9/29/2024
2.1.392 3,616 9/29/2024
2.1.391 10,119 9/27/2024
2.1.390 6,892 9/27/2024
2.1.389 243 9/27/2024
2.1.388 1,056 9/27/2024
2.1.387 2,608 9/27/2024
2.1.386 177 9/27/2024
2.1.385 15,370 9/26/2024
2.1.384 13,454 9/26/2024
2.1.383 5,836 9/26/2024
2.1.382 16,845 9/23/2024
2.1.381 4,133 9/23/2024
2.1.380 7,331 9/23/2024
2.1.379 7,258 9/23/2024
2.1.378 5,556 9/23/2024
2.1.377 1,103 9/23/2024
2.1.376 2,815 9/23/2024
2.1.375 163 9/23/2024
2.1.374 20,118 9/17/2024
2.1.373 967 9/17/2024
2.1.372 3,856 9/17/2024
2.1.371 4,030 9/17/2024
2.1.370 4,402 9/17/2024
2.1.369 6,011 9/17/2024
2.1.368 6,779 9/17/2024
2.1.367 21,881 9/16/2024
2.1.366 11,317 9/12/2024
2.1.365 4,301 9/11/2024
2.1.363 12,112 9/11/2024
2.1.362 23,702 9/10/2024
2.1.361 1,063 9/10/2024
2.1.360 1,463 9/10/2024
2.1.359 1,316 9/10/2024
2.1.358 5,076 9/9/2024
2.1.357 2,015 9/9/2024
2.1.356 8,621 9/9/2024
2.1.355 2,397 9/9/2024
2.1.354 9,693 9/9/2024
2.1.353 18,514 9/7/2024
2.1.352 13,927 9/6/2024
2.1.351 7,249 9/5/2024
2.1.350 7,364 9/5/2024
2.1.349 776 9/5/2024
2.1.348 208 9/5/2024
2.1.347 12,565 9/5/2024
2.1.346 1,427 9/4/2024
2.1.345 19,174 9/3/2024
2.1.344 8,643 9/3/2024
2.1.343 6,420 9/3/2024
2.1.342 12,190 8/29/2024
2.1.341 10,318 8/26/2024
2.1.340 10,961 8/21/2024
2.1.339 4,136 8/21/2024
2.1.338 2,397 8/20/2024
2.1.337 8,448 8/20/2024
2.1.336 198 8/20/2024
2.1.335 186 8/20/2024
2.1.334 13,969 8/19/2024
2.1.333 13,412 8/15/2024
2.1.332 13,317 8/13/2024
2.1.331 11,126 8/6/2024
2.1.330 6,416 8/6/2024
2.1.329 9,779 8/1/2024
2.1.328 1,990 8/1/2024
2.1.327 925 8/1/2024
2.1.326 13,982 7/25/2024
2.1.325 2,964 7/25/2024
2.1.324 2,570 7/25/2024
2.1.323 423 7/24/2024
2.1.322 1,136 7/24/2024
2.1.321 565 7/24/2024
2.1.320 14,342 7/20/2024
2.1.319 17,690 7/14/2024
2.1.318 6,635 7/14/2024
2.1.317 9,834 7/10/2024
2.1.316 4,227 7/10/2024
2.1.315 3,794 7/10/2024
2.1.314 2,160 7/10/2024
2.1.313 1,561 7/10/2024
2.1.312 486 7/10/2024
2.1.311 3,829 7/10/2024
2.1.310 1,838 7/9/2024
2.1.308 3,834 7/9/2024
2.1.307 172 7/9/2024
2.1.306 4,335 7/9/2024
2.1.305 9,788 7/9/2024
2.1.304 8,368 7/9/2024
2.1.303 4,017 7/9/2024
2.1.302 172 7/9/2024
2.1.301 11,771 7/9/2024
2.1.300 8,899 7/8/2024
2.1.299 555 7/8/2024
2.1.298 167 7/8/2024
2.1.297 182 7/8/2024
2.1.296 12,157 7/8/2024
2.1.295 2,362 7/7/2024
2.1.294 7,659 7/7/2024
2.1.293 190 7/7/2024
2.1.292 2,101 7/7/2024
2.1.291 4,408 7/7/2024
2.1.290 15,082 7/3/2024
2.1.289 4,867 7/3/2024
2.1.288 4,323 7/3/2024
2.1.287 1,304 7/3/2024
2.1.286 8,459 7/2/2024
2.1.283 5,100 6/30/2024
2.1.282 3,441 6/28/2024
2.1.281 384 6/28/2024
2.1.279 10,981 6/22/2024
2.1.278 12,678 6/15/2024
2.1.277 1,698 6/15/2024
2.1.276 9,691 6/14/2024
2.1.275 15,410 6/1/2024
2.1.274 2,609 6/1/2024
2.1.273 1,531 6/1/2024
2.1.272 13,702 5/31/2024
2.1.271 8,421 5/29/2024
2.1.270 9,607 5/28/2024
2.1.269 5,503 5/27/2024
2.1.268 10,050 5/26/2024
2.1.267 9,976 5/26/2024
2.1.266 510 5/26/2024
2.1.265 3,785 5/25/2024
2.1.264 2,532 5/25/2024
2.1.263 2,434 5/25/2024
2.1.262 178 5/25/2024
2.1.261 1,998 5/25/2024
2.1.260 182 5/25/2024
2.1.259 7,066 5/25/2024
2.1.258 174 5/25/2024
2.1.257 12,503 5/23/2024
2.1.256 5,041 5/23/2024
2.1.255 3,736 5/22/2024
2.1.254 2,650 5/22/2024
2.1.253 1,157 5/22/2024
2.1.252 178 5/22/2024
2.1.251 178 5/22/2024
2.1.250 5,203 5/22/2024
2.1.249 13,317 5/18/2024
2.1.248 2,765 5/17/2024
2.1.247 4,997 5/17/2024
2.1.246 7,442 5/16/2024
2.1.245 1,988 5/15/2024
2.1.244 5,598 5/15/2024
2.1.243 11,585 5/12/2024
2.1.242 6,221 5/3/2024
2.1.241 6,897 4/29/2024
2.1.240 3,951 4/29/2024
2.1.239 7,570 4/28/2024
2.1.238 1,241 4/28/2024
2.1.237 1,467 4/28/2024
2.1.236 5,719 4/28/2024
2.1.235 843 4/28/2024
2.1.234 7,440 4/28/2024
2.1.233 1,682 4/28/2024
2.1.232 7,014 4/27/2024
2.1.231 189 4/27/2024
2.1.230 14,062 4/19/2024
2.1.229 8,800 4/18/2024
2.1.228 9,092 4/12/2024
2.1.227 1,477 4/12/2024
2.1.226 2,343 4/12/2024
2.1.225 1,943 4/12/2024
2.1.224 1,346 4/12/2024
2.1.223 1,981 4/12/2024
2.1.222 781 4/12/2024
2.1.221 194 4/12/2024
2.1.220 5,078 4/10/2024
2.1.219 22,111 4/10/2024
2.1.218 925 4/10/2024
2.1.217 10,883 4/2/2024
2.1.216 1,942 4/1/2024
2.1.215 10,380 3/29/2024
2.1.214 7,592 3/25/2024
2.1.213 888 3/25/2024
2.1.212 10,498 3/20/2024
2.1.211 7,261 3/19/2024
2.1.210 4,428 3/19/2024
2.1.209 4,841 3/18/2024
2.1.208 10,339 3/15/2024
2.1.207 7,114 3/13/2024
2.1.206 2,714 3/13/2024
2.1.205 3,654 3/13/2024
2.1.204 246 3/13/2024
2.1.203 234 3/13/2024
2.1.202 2,349 3/13/2024
2.1.201 227 3/13/2024
2.1.200 5,096 3/12/2024
2.1.199 6,588 3/12/2024
2.1.198 8,542 3/11/2024
2.1.197 5,922 3/11/2024
2.1.196 6,455 3/10/2024
2.1.195 8,243 3/8/2024
2.1.194 751 3/8/2024
2.1.193 5,885 3/8/2024
2.1.192 7,566 3/6/2024
2.1.191 7,559 3/4/2024
2.1.190 4,214 3/4/2024
2.1.189 8,495 3/2/2024
2.1.188 2,155 3/2/2024
2.1.187 2,781 3/2/2024
2.1.186 1,540 3/2/2024
2.1.185 1,037 3/2/2024
2.1.184 5,845 2/29/2024
2.1.183 1,905 2/29/2024
2.1.182 2,859 2/29/2024
2.1.181 5,519 2/26/2024
2.1.180 21,024 2/25/2024
2.1.179 2,534 2/25/2024
2.1.178 8,248 2/23/2024
2.1.177 7,971 2/22/2024
2.1.176 2,260 2/22/2024
2.1.175 2,730 2/21/2024
2.1.174 4,411 2/21/2024
2.1.173 3,915 2/21/2024
2.1.172 5,017 2/21/2024
2.1.171 2,124 2/21/2024
2.1.170 433 2/21/2024
2.1.169 4,438 2/21/2024
2.1.168 1,450 2/20/2024
2.1.167 286 2/20/2024
2.1.166 286 2/20/2024
2.1.165 6,016 2/20/2024
2.1.164 4,667 2/20/2024
2.1.163 4,347 2/20/2024
2.1.162 9,179 2/19/2024
2.1.161 7,264 2/17/2024
2.1.160 2,956 2/17/2024
2.1.159 2,247 2/16/2024
2.1.158 1,596 2/16/2024
2.1.157 2,706 2/16/2024
2.1.156 4,027 2/16/2024
2.1.155 4,779 2/16/2024
2.1.154 337 2/16/2024
2.1.153 2,335 2/16/2024
2.1.152 319 2/16/2024
2.1.151 316 2/16/2024
2.1.150 7,994 2/14/2024
2.1.149 3,333 2/13/2024
2.1.148 4,011 2/13/2024
2.1.147 5,062 2/13/2024
2.1.146 4,814 2/13/2024
2.1.145 6,611 2/12/2024
2.1.144 1,016 2/11/2024
2.1.143 7,083 2/11/2024
2.1.142 3,976 2/11/2024
2.1.141 8,256 2/10/2024
2.1.140 1,066 2/9/2024
2.1.139 7,546 2/9/2024
2.1.138 4,973 2/9/2024
2.1.137 1,263 2/8/2024
2.1.136 6,087 2/8/2024
2.1.135 2,499 2/8/2024
2.1.134 14,312 2/8/2024
2.1.133 394 2/8/2024
2.1.132 327 2/8/2024
2.1.131 6,931 2/7/2024
2.1.130 2,826 2/7/2024
2.1.129 4,774 2/7/2024
2.1.128 1,524 2/7/2024
2.1.127 1,354 2/6/2024
2.1.126 3,797 2/6/2024
2.1.125 361 2/6/2024
2.1.124 10,089 2/5/2024
2.1.123 6,474 2/4/2024
2.1.122 6,895 2/2/2024
2.1.121 8,093 1/31/2024
2.1.120 7,878 1/29/2024
2.1.119 4,949 1/29/2024
2.1.118 3,293 1/29/2024
2.1.117 5,106 1/28/2024
2.1.116 6,956 1/28/2024
2.1.115 3,930 1/28/2024
2.1.114 2,399 1/28/2024
2.1.113 2,969 1/27/2024
2.1.112 2,772 1/27/2024
2.1.111 7,278 1/27/2024
2.1.110 3,732 1/27/2024
2.1.109 8,486 1/27/2024
2.1.108 2,367 1/26/2024
2.1.107 2,844 1/26/2024
2.1.106 3,541 1/26/2024
2.1.105 6,634 1/26/2024
2.1.104 3,113 1/26/2024
2.1.103 1,815 1/26/2024
2.1.102 6,085 1/25/2024
2.1.101 4,749 1/25/2024
2.1.100 2,360 1/25/2024
2.1.99 7,380 1/25/2024
2.1.98 7,537 1/19/2024
2.1.97 7,393 1/15/2024
2.1.96 3,378 1/15/2024
2.1.95 2,668 1/15/2024
2.1.94 6,747 1/15/2024
2.1.93 6,930 1/15/2024
2.1.92 6,667 1/14/2024
2.1.91 8,179 1/13/2024
2.1.90 6,760 1/12/2024
2.1.89 6,711 1/11/2024
2.1.88 9,222 1/7/2024
2.1.87 7,399 1/5/2024
2.1.86 3,243 1/5/2024
2.1.85 4,337 1/5/2024
2.1.84 7,907 1/3/2024
2.1.83 4,822 1/1/2024
2.1.82 6,591 12/28/2023
2.1.81 2,597 12/28/2023
2.1.80 2,746 12/28/2023
2.1.79 5,972 12/27/2023
2.1.78 2,823 12/27/2023
2.1.77 382 12/27/2023
2.1.76 11,337 12/25/2023
2.1.75 6,156 12/25/2023
2.1.74 3,249 12/25/2023
2.1.73 945 12/25/2023
2.1.72 402 12/25/2023
2.1.71 9,042 12/24/2023
2.1.70 7,026 12/23/2023
2.1.69 3,773 12/23/2023
2.1.68 2,300 12/23/2023
2.1.67 4,824 12/23/2023
2.1.66 371 12/23/2023
2.1.65 10,846 12/19/2023
2.1.64 2,844 12/19/2023
2.1.63 7,147 12/12/2023
2.1.62 620 12/12/2023
2.1.61 3,509 12/11/2023
2.1.60 2,807 12/11/2023
2.1.59 1,492 12/11/2023
2.1.58 2,150 12/11/2023
2.1.57 1,111 12/10/2023
2.1.56 1,104 12/10/2023
2.1.55 2,264 12/10/2023
2.1.54 1,440 12/10/2023
2.1.53 10,395 12/10/2023
2.1.52 2,400 12/9/2023
2.1.51 1,345 12/9/2023
2.1.50 2,053 12/9/2023
2.1.49 3,111 12/9/2023
2.1.48 342 12/9/2023
2.1.47 1,692 12/9/2023
2.1.46 410 12/9/2023
2.1.45 3,542 12/9/2023
2.1.44 374 12/9/2023
2.1.43 5,905 12/9/2023
2.1.42 8,553 12/6/2023
2.1.41 1,516 12/6/2023
2.1.40 2,267 12/6/2023
2.1.39 5,122 12/5/2023
2.1.38 2,560 12/5/2023
2.1.37 1,437 12/5/2023
2.1.36 3,702 12/5/2023
2.1.35 350 12/5/2023
2.1.34 3,109 12/5/2023
2.1.33 353 12/5/2023
2.1.32 2,125 12/4/2023
2.1.31 1,877 12/4/2023
2.1.30 383 12/4/2023
2.1.29 11,347 12/4/2023
2.1.28 3,919 11/27/2023
2.1.27 1,773 11/26/2023
2.1.26 4,393 11/23/2023
2.1.25 3,790 11/23/2023
2.1.24 4,757 11/23/2023
2.1.23 355 11/23/2023
2.1.22 9,100 11/20/2023
2.1.21 4,392 11/20/2023
2.1.20 7,414 11/19/2023
2.1.19 3,902 11/19/2023
2.1.18 5,316 11/19/2023
2.1.17 1,446 11/18/2023
2.1.16 7,215 11/18/2023
2.1.15 1,580 11/18/2023
2.1.14 4,468 11/18/2023
2.1.13 848 11/18/2023
2.1.12 4,712 11/17/2023
2.1.11 3,939 11/17/2023
2.1.10 3,014 11/17/2023
2.1.9 535 11/17/2023
2.1.8 4,271 11/17/2023
2.1.7 2,710 11/17/2023
2.1.6 3,377 11/17/2023
2.1.5 2,540 11/17/2023
2.1.4 817 11/17/2023
2.1.3 4,270 11/16/2023
2.0.78 1,446 11/15/2023
2.0.77 380 11/15/2023
2.0.76 3,975 11/15/2023
2.0.2 365 11/16/2023
2.0.1 346 11/16/2023
1.0.75 5,612 11/13/2023
1.0.74 7,968 11/10/2023
1.0.73 5,977 11/9/2023
1.0.72 4,087 11/8/2023
1.0.71 6,208 11/7/2023
1.0.70 3,192 11/6/2023
1.0.69 3,917 11/3/2023
1.0.68 6,860 11/2/2023
1.0.67 4,706 11/1/2023
1.0.66 13,886 10/26/2023
1.0.65 8,463 10/19/2023
1.0.64 3,580 10/18/2023
1.0.63 3,616 10/17/2023
1.0.62 4,419 10/16/2023
1.0.61 7,387 10/13/2023
1.0.60 4,526 10/12/2023
1.0.59 14,555 9/18/2023
1.0.58 371 9/18/2023
1.0.57 9,509 9/14/2023
1.0.56 9,077 8/31/2023
1.0.55 4,423 8/30/2023
1.0.54 4,022 8/29/2023
1.0.53 3,879 8/28/2023
1.0.52 7,063 8/25/2023
1.0.51 4,132 8/24/2023
1.0.50 9,913 8/21/2023
1.0.49 4,137 8/18/2023
1.0.48 3,795 8/17/2023
1.0.47 6,510 8/16/2023
1.0.46 11,150 8/10/2023
1.0.45 3,871 8/9/2023
1.0.44 6,187 8/8/2023
1.0.43 5,475 8/7/2023
1.0.42 5,654 8/4/2023
1.0.41 10,644 7/13/2023
1.0.40 6,902 7/11/2023
1.0.39 4,478 7/10/2023
1.0.38 5,234 7/7/2023
1.0.37 462 7/7/2023
1.0.36 14,500 6/30/2023
1.0.35 7,461 6/28/2023
1.0.34 7,456 6/27/2023
1.0.33 8,546 6/26/2023
1.0.32 5,335 6/23/2023
1.0.31 10,599 6/21/2023
1.0.30 11,103 6/15/2023
1.0.29 4,478 6/14/2023
1.0.28 11,941 6/9/2023
1.0.27 5,033 6/8/2023
1.0.26 6,093 6/7/2023
1.0.25 6,945 6/6/2023
1.0.24 478 6/6/2023
1.0.23 5,967 6/5/2023
1.0.22 20,321 5/30/2023
1.0.21 22,610 5/29/2023
1.0.20 7,966 5/26/2023
1.0.19 9,236 5/25/2023
1.0.18 9,580 5/24/2023
1.0.17 6,647 5/24/2023
1.0.16 1,981 5/23/2023
1.0.15 1,922 5/23/2023
1.0.12 3,717 5/22/2023
1.0.11 22,206 5/16/2023
1.0.10 18,312 4/20/2023
1.0.9 17,445 4/3/2023
1.0.8 1,433 4/3/2023
1.0.7 2,804 3/23/2023
1.0.5 923 3/13/2023
1.0.4 648 3/11/2023
1.0.3 540 3/11/2023
1.0.2 539 3/11/2023
1.0.1 608 3/11/2023