Soenneker.Utils.AsyncSingleton 2.1.255

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.255
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.255
                    
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.255" />
                    
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.255" />
                    
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.255
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.255"
                    
#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.255
                    
#: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.255
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.255
                    
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 75,746 9/3/2025
3.0.715 177 9/3/2025
3.0.714 53,808 8/11/2025
3.0.713 165 8/11/2025
3.0.712 96,840 7/1/2025
3.0.711 11,188 6/27/2025
3.0.710 1,464 6/27/2025
3.0.709 59,361 5/27/2025
3.0.708 1,016 5/27/2025
3.0.707 23,006 5/22/2025
3.0.705 35,662 5/7/2025
3.0.704 580 5/7/2025
3.0.703 21,645 5/5/2025
3.0.702 637 5/5/2025
3.0.701 202 5/5/2025
3.0.700 27,241 4/8/2025
3.0.699 6,764 4/8/2025
3.0.698 3,492 4/8/2025
3.0.697 4,712 4/8/2025
3.0.696 12,491 4/7/2025
3.0.695 4,394 4/7/2025
3.0.694 11,650 4/7/2025
3.0.693 10,740 4/7/2025
3.0.692 3,241 4/7/2025
3.0.691 3,015 4/6/2025
3.0.690 1,739 4/6/2025
3.0.689 317 4/6/2025
3.0.688 227 4/6/2025
3.0.687 4,441 4/6/2025
3.0.686 2,614 4/6/2025
3.0.685 175 4/6/2025
3.0.684 11,018 4/5/2025
3.0.683 1,818 4/5/2025
3.0.682 546 4/5/2025
3.0.681 180 4/5/2025
3.0.680 904 4/4/2025
3.0.679 337 4/4/2025
3.0.678 56,624 4/1/2025
3.0.677 15,055 3/31/2025
3.0.676 11,222 3/29/2025
3.0.675 14,904 3/25/2025
3.0.674 11,583 3/21/2025
3.0.673 21,027 3/15/2025
3.0.672 11,824 3/12/2025
3.0.671 1,086 3/12/2025
3.0.670 5,927 3/11/2025
3.0.669 313 3/11/2025
3.0.668 7,895 3/11/2025
3.0.667 7,444 3/11/2025
3.0.666 25,002 3/2/2025
3.0.665 2,738 3/2/2025
3.0.664 2,900 3/1/2025
3.0.663 4,657 3/1/2025
3.0.662 4,203 3/1/2025
3.0.661 3,032 3/1/2025
3.0.660 159 3/1/2025
3.0.659 4,559 3/1/2025
3.0.658 17,642 2/25/2025
3.0.657 4,076 2/25/2025
3.0.656 3,630 2/25/2025
3.0.655 4,421 2/24/2025
3.0.654 10,382 2/22/2025
3.0.653 16,728 2/22/2025
3.0.652 508 2/22/2025
3.0.651 4,797 2/21/2025
3.0.650 10,166 2/21/2025
3.0.649 13,298 2/19/2025
3.0.648 746 2/18/2025
3.0.647 2,552 2/18/2025
3.0.646 2,917 2/18/2025
3.0.645 7,530 2/18/2025
3.0.644 13,384 2/13/2025
3.0.643 15,039 2/12/2025
3.0.642 1,504 2/12/2025
3.0.641 2,655 2/12/2025
3.0.640 2,899 2/11/2025
3.0.639 2,931 2/11/2025
3.0.638 3,673 2/11/2025
3.0.637 5,394 2/11/2025
3.0.636 6,777 2/11/2025
3.0.635 9,239 2/10/2025
3.0.634 177 2/10/2025
3.0.633 11,442 2/9/2025
3.0.632 8,608 2/8/2025
3.0.631 1,700 2/8/2025
3.0.630 3,519 2/7/2025
3.0.629 4,204 2/7/2025
3.0.628 4,588 2/7/2025
3.0.627 383 2/7/2025
3.0.626 4,210 2/7/2025
3.0.625 167 2/7/2025
3.0.624 1,034 2/7/2025
3.0.623 23,227 2/5/2025
3.0.622 1,922 2/5/2025
3.0.621 3,506 2/5/2025
3.0.620 2,714 2/5/2025
3.0.619 26,765 1/28/2025
3.0.618 7,408 1/28/2025
3.0.617 431 1/27/2025
3.0.616 26,741 1/26/2025
3.0.615 2,443 1/26/2025
3.0.614 5,942 1/25/2025
3.0.613 8,162 1/25/2025
3.0.612 5,052 1/25/2025
3.0.611 2,853 1/24/2025
3.0.610 20,367 1/24/2025
3.0.609 6,763 1/24/2025
3.0.608 6,530 1/24/2025
3.0.607 5,267 1/23/2025
3.0.606 5,199 1/23/2025
3.0.605 15,627 1/21/2025
3.0.604 3,350 1/21/2025
3.0.603 7,850 1/21/2025
3.0.602 5,254 1/21/2025
3.0.601 7,461 1/21/2025
3.0.600 7,564 1/20/2025
3.0.599 543 1/20/2025
3.0.598 1,041 1/20/2025
3.0.597 7,392 1/20/2025
3.0.596 9,072 1/20/2025
3.0.595 1,072 1/20/2025
3.0.594 175 1/20/2025
3.0.593 1,049 1/20/2025
3.0.592 158 1/20/2025
3.0.591 23,248 1/19/2025
3.0.590 3,692 1/19/2025
3.0.589 3,701 1/18/2025
3.0.588 5,986 1/18/2025
3.0.587 2,379 1/18/2025
3.0.586 9,742 1/17/2025
3.0.585 1,841 1/17/2025
3.0.584 4,996 1/17/2025
3.0.583 4,325 1/16/2025
3.0.582 26,426 1/16/2025
3.0.581 2,342 1/16/2025
3.0.580 4,724 1/16/2025
3.0.579 5,916 1/15/2025
3.0.578 3,468 1/15/2025
3.0.577 6,511 1/15/2025
3.0.576 10,367 1/15/2025
3.0.575 1,852 1/15/2025
3.0.574 5,436 1/15/2025
3.0.573 545 1/15/2025
3.0.572 5,315 1/14/2025
3.0.571 2,493 1/14/2025
3.0.570 5,493 1/14/2025
3.0.569 21,923 1/13/2025
3.0.568 7,757 1/12/2025
3.0.567 11,718 1/11/2025
3.0.566 3,216 1/11/2025
3.0.565 1,593 1/11/2025
3.0.564 1,295 1/10/2025
3.0.563 6,667 1/10/2025
3.0.562 633 1/10/2025
3.0.561 1,345 1/10/2025
3.0.560 151 1/10/2025
3.0.559 151 1/10/2025
3.0.558 14,407 1/8/2025
3.0.557 424 1/8/2025
3.0.556 5,904 1/3/2025
3.0.555 4,692 1/3/2025
3.0.554 6,449 1/2/2025
3.0.553 1,102 1/2/2025
3.0.552 204 1/2/2025
3.0.551 3,698 1/2/2025
3.0.550 8,014 1/1/2025
3.0.549 1,135 1/1/2025
3.0.548 1,899 1/1/2025
3.0.547 2,112 1/1/2025
3.0.546 176 1/1/2025
3.0.545 949 12/31/2024
3.0.544 169 12/31/2024
3.0.543 373 12/31/2024
3.0.542 11,453 12/31/2024
3.0.541 11,897 12/31/2024
3.0.540 4,902 12/31/2024
3.0.539 6,065 12/31/2024
3.0.538 4,353 12/31/2024
3.0.537 1,940 12/31/2024
3.0.536 173 12/31/2024
3.0.535 7,345 12/31/2024
3.0.534 23,068 12/27/2024
3.0.533 4,296 12/27/2024
3.0.532 15,540 12/24/2024
3.0.531 1,008 12/24/2024
3.0.530 2,200 12/24/2024
3.0.529 410 12/24/2024
3.0.528 457 12/24/2024
3.0.527 2,667 12/23/2024
3.0.526 5,533 12/23/2024
3.0.525 2,668 12/23/2024
3.0.524 2,528 12/23/2024
3.0.523 3,474 12/23/2024
3.0.522 1,802 12/23/2024
3.0.521 4,442 12/22/2024
3.0.520 179 12/22/2024
3.0.519 18,722 12/22/2024
3.0.518 192 12/22/2024
3.0.517 14,314 12/22/2024
3.0.516 163 12/22/2024
3.0.515 6,923 12/22/2024
3.0.514 181 12/22/2024
3.0.513 1,365 12/21/2024
3.0.512 459 12/21/2024
3.0.511 156 12/21/2024
3.0.510 12,571 12/21/2024
3.0.509 1,267 12/21/2024
3.0.508 153 12/21/2024
3.0.507 2,138 12/21/2024
3.0.506 172 12/21/2024
3.0.505 6,975 12/21/2024
3.0.504 2,215 12/21/2024
3.0.503 5,586 12/21/2024
3.0.502 169 12/21/2024
3.0.501 3,535 12/20/2024
3.0.500 3,423 12/20/2024
3.0.499 6,742 12/20/2024
3.0.498 2,048 12/20/2024
3.0.497 960 12/20/2024
3.0.496 11,135 12/19/2024
3.0.495 936 12/19/2024
3.0.494 1,537 12/18/2024
3.0.493 853 12/18/2024
3.0.492 16,372 12/17/2024
3.0.491 532 12/17/2024
3.0.490 1,136 12/17/2024
3.0.489 1,509 12/17/2024
3.0.488 1,679 12/16/2024
3.0.487 522 12/16/2024
3.0.486 146 12/16/2024
3.0.485 14,551 12/9/2024
3.0.484 3,586 12/9/2024
3.0.483 7,703 12/9/2024
3.0.482 1,482 12/9/2024
3.0.480 15,546 12/6/2024
3.0.479 8,330 12/6/2024
3.0.478 2,738 12/6/2024
3.0.477 1,499 12/6/2024
3.0.476 1,034 12/6/2024
3.0.475 3,255 12/6/2024
3.0.474 10,032 12/6/2024
3.0.473 13,091 12/5/2024
3.0.472 1,507 12/5/2024
3.0.471 7,814 12/5/2024
3.0.470 3,380 12/5/2024
3.0.469 1,045 12/5/2024
3.0.468 6,988 12/4/2024
3.0.467 4,004 12/4/2024
3.0.466 4,265 12/4/2024
3.0.465 10,835 12/3/2024
3.0.464 453 12/3/2024
3.0.463 2,482 12/3/2024
3.0.462 9,060 12/3/2024
3.0.461 1,731 12/3/2024
3.0.460 5,646 12/3/2024
3.0.459 159 12/3/2024
3.0.458 1,214 12/3/2024
3.0.457 12,587 12/2/2024
3.0.456 5,518 12/2/2024
3.0.455 1,706 12/2/2024
3.0.454 1,460 12/1/2024
3.0.453 7,471 12/1/2024
3.0.452 7,888 12/1/2024
3.0.451 8,272 11/29/2024
3.0.450 13,138 11/20/2024
3.0.449 8,594 11/20/2024
3.0.448 669 11/20/2024
3.0.447 3,000 11/20/2024
3.0.445 3,769 11/19/2024
3.0.444 3,155 11/19/2024
3.0.443 8,850 11/19/2024
3.0.442 6,251 11/19/2024
3.0.441 161 11/19/2024
3.0.439 17,451 11/14/2024
3.0.438 6,862 11/14/2024
3.0.437 2,864 11/14/2024
3.0.436 5,275 11/14/2024
3.0.435 519 11/14/2024
3.0.434 183 11/14/2024
3.0.433 1,954 11/14/2024
3.0.432 161 11/14/2024
2.1.431 25,040 11/13/2024
2.1.430 4,885 11/13/2024
2.1.429 3,813 11/12/2024
2.1.428 17,649 11/9/2024
2.1.427 3,774 11/9/2024
2.1.426 4,036 11/8/2024
2.1.425 1,791 11/8/2024
2.1.424 1,999 11/8/2024
2.1.423 2,298 11/8/2024
2.1.422 2,701 11/8/2024
2.1.421 7,139 11/8/2024
2.1.420 27,563 11/1/2024
2.1.419 12,639 10/29/2024
2.1.418 4,973 10/29/2024
2.1.417 6,742 10/29/2024
2.1.416 12,422 10/28/2024
2.1.415 12,472 10/26/2024
2.1.414 14,420 10/22/2024
2.1.413 4,707 10/22/2024
2.1.412 2,549 10/22/2024
2.1.411 14,055 10/17/2024
2.1.410 12,409 10/15/2024
2.1.409 2,413 10/14/2024
2.1.408 12,850 10/11/2024
2.1.407 3,610 10/11/2024
2.1.406 2,424 10/11/2024
2.1.404 19,297 10/8/2024
2.1.403 7,766 10/8/2024
2.1.402 23,682 10/3/2024
2.1.401 1,739 10/3/2024
2.1.400 4,136 10/3/2024
2.1.399 15,412 10/2/2024
2.1.398 5,044 10/2/2024
2.1.397 15,820 10/1/2024
2.1.396 1,469 10/1/2024
2.1.395 7,829 9/30/2024
2.1.394 12,321 9/29/2024
2.1.393 4,042 9/29/2024
2.1.392 3,834 9/29/2024
2.1.391 10,656 9/27/2024
2.1.390 7,333 9/27/2024
2.1.389 243 9/27/2024
2.1.388 1,072 9/27/2024
2.1.387 2,800 9/27/2024
2.1.386 177 9/27/2024
2.1.385 16,095 9/26/2024
2.1.384 14,227 9/26/2024
2.1.383 6,154 9/26/2024
2.1.382 17,641 9/23/2024
2.1.381 4,378 9/23/2024
2.1.380 7,704 9/23/2024
2.1.379 7,548 9/23/2024
2.1.378 5,872 9/23/2024
2.1.377 1,158 9/23/2024
2.1.376 2,968 9/23/2024
2.1.375 164 9/23/2024
2.1.374 21,068 9/17/2024
2.1.373 971 9/17/2024
2.1.372 4,040 9/17/2024
2.1.371 4,209 9/17/2024
2.1.370 4,581 9/17/2024
2.1.369 6,263 9/17/2024
2.1.368 7,030 9/17/2024
2.1.367 23,030 9/16/2024
2.1.366 11,879 9/12/2024
2.1.365 4,545 9/11/2024
2.1.363 12,833 9/11/2024
2.1.362 24,850 9/10/2024
2.1.361 1,076 9/10/2024
2.1.360 1,538 9/10/2024
2.1.359 1,360 9/10/2024
2.1.358 5,294 9/9/2024
2.1.357 2,215 9/9/2024
2.1.356 9,045 9/9/2024
2.1.355 2,479 9/9/2024
2.1.354 10,172 9/9/2024
2.1.353 19,367 9/7/2024
2.1.352 14,610 9/6/2024
2.1.351 7,639 9/5/2024
2.1.350 7,690 9/5/2024
2.1.349 776 9/5/2024
2.1.348 208 9/5/2024
2.1.347 13,149 9/5/2024
2.1.346 1,501 9/4/2024
2.1.345 20,152 9/3/2024
2.1.344 9,268 9/3/2024
2.1.343 6,812 9/3/2024
2.1.342 13,081 8/29/2024
2.1.341 10,891 8/26/2024
2.1.340 11,586 8/21/2024
2.1.339 4,349 8/21/2024
2.1.338 2,577 8/20/2024
2.1.337 8,803 8/20/2024
2.1.336 198 8/20/2024
2.1.335 187 8/20/2024
2.1.334 14,711 8/19/2024
2.1.333 14,090 8/15/2024
2.1.332 13,999 8/13/2024
2.1.331 11,733 8/6/2024
2.1.330 6,753 8/6/2024
2.1.329 10,386 8/1/2024
2.1.328 2,079 8/1/2024
2.1.327 980 8/1/2024
2.1.326 14,813 7/25/2024
2.1.325 3,108 7/25/2024
2.1.324 2,718 7/25/2024
2.1.323 435 7/24/2024
2.1.322 1,181 7/24/2024
2.1.321 569 7/24/2024
2.1.320 15,051 7/20/2024
2.1.319 18,655 7/14/2024
2.1.318 6,953 7/14/2024
2.1.317 10,321 7/10/2024
2.1.316 4,460 7/10/2024
2.1.315 4,100 7/10/2024
2.1.314 2,316 7/10/2024
2.1.313 1,655 7/10/2024
2.1.312 510 7/10/2024
2.1.311 3,983 7/10/2024
2.1.310 2,033 7/9/2024
2.1.308 4,091 7/9/2024
2.1.307 172 7/9/2024
2.1.306 4,565 7/9/2024
2.1.305 10,201 7/9/2024
2.1.304 8,809 7/9/2024
2.1.303 4,171 7/9/2024
2.1.302 172 7/9/2024
2.1.301 11,869 7/9/2024
2.1.300 9,513 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 12,820 7/8/2024
2.1.295 2,517 7/7/2024
2.1.294 8,147 7/7/2024
2.1.293 190 7/7/2024
2.1.292 2,265 7/7/2024
2.1.291 4,751 7/7/2024
2.1.290 16,019 7/3/2024
2.1.289 5,164 7/3/2024
2.1.288 4,632 7/3/2024
2.1.287 1,308 7/3/2024
2.1.286 9,029 7/2/2024
2.1.283 5,499 6/30/2024
2.1.282 3,617 6/28/2024
2.1.281 385 6/28/2024
2.1.279 11,623 6/22/2024
2.1.278 13,414 6/15/2024
2.1.277 1,739 6/15/2024
2.1.276 10,226 6/14/2024
2.1.275 16,331 6/1/2024
2.1.274 2,752 6/1/2024
2.1.273 1,644 6/1/2024
2.1.272 14,536 5/31/2024
2.1.271 8,927 5/29/2024
2.1.270 10,139 5/28/2024
2.1.269 5,819 5/27/2024
2.1.268 10,592 5/26/2024
2.1.267 10,500 5/26/2024
2.1.266 533 5/26/2024
2.1.265 3,922 5/25/2024
2.1.264 2,660 5/25/2024
2.1.263 2,626 5/25/2024
2.1.262 178 5/25/2024
2.1.261 2,106 5/25/2024
2.1.260 182 5/25/2024
2.1.259 7,429 5/25/2024
2.1.258 174 5/25/2024
2.1.257 13,115 5/23/2024
2.1.256 5,288 5/23/2024
2.1.255 3,864 5/22/2024
2.1.254 2,794 5/22/2024
2.1.253 1,166 5/22/2024
2.1.252 178 5/22/2024
2.1.251 178 5/22/2024
2.1.250 5,457 5/22/2024
2.1.249 13,921 5/18/2024
2.1.248 2,958 5/17/2024
2.1.247 5,280 5/17/2024
2.1.246 7,742 5/16/2024
2.1.245 2,065 5/15/2024
2.1.244 5,887 5/15/2024
2.1.243 12,193 5/12/2024
2.1.242 6,545 5/3/2024
2.1.241 7,256 4/29/2024
2.1.240 4,122 4/29/2024
2.1.239 7,967 4/28/2024
2.1.238 1,303 4/28/2024
2.1.237 1,553 4/28/2024
2.1.236 6,017 4/28/2024
2.1.235 855 4/28/2024
2.1.234 7,718 4/28/2024
2.1.233 1,702 4/28/2024
2.1.232 7,245 4/27/2024
2.1.231 189 4/27/2024
2.1.230 14,735 4/19/2024
2.1.229 9,166 4/18/2024
2.1.228 9,506 4/12/2024
2.1.227 1,524 4/12/2024
2.1.226 2,409 4/12/2024
2.1.225 2,033 4/12/2024
2.1.224 1,414 4/12/2024
2.1.223 2,067 4/12/2024
2.1.222 781 4/12/2024
2.1.221 194 4/12/2024
2.1.220 5,319 4/10/2024
2.1.219 23,093 4/10/2024
2.1.218 964 4/10/2024
2.1.217 11,362 4/2/2024
2.1.216 2,037 4/1/2024
2.1.215 10,874 3/29/2024
2.1.214 7,958 3/25/2024
2.1.213 900 3/25/2024
2.1.212 10,971 3/20/2024
2.1.211 7,582 3/19/2024
2.1.210 4,657 3/19/2024
2.1.209 5,066 3/18/2024
2.1.208 10,785 3/15/2024
2.1.207 7,418 3/13/2024
2.1.206 2,876 3/13/2024
2.1.205 3,811 3/13/2024
2.1.204 246 3/13/2024
2.1.203 234 3/13/2024
2.1.202 2,425 3/13/2024
2.1.201 227 3/13/2024
2.1.200 5,398 3/12/2024
2.1.199 6,887 3/12/2024
2.1.198 8,938 3/11/2024
2.1.197 6,220 3/11/2024
2.1.196 6,774 3/10/2024
2.1.195 8,645 3/8/2024
2.1.194 805 3/8/2024
2.1.193 6,206 3/8/2024
2.1.192 7,930 3/6/2024
2.1.191 7,919 3/4/2024
2.1.190 4,400 3/4/2024
2.1.189 8,869 3/2/2024
2.1.188 2,223 3/2/2024
2.1.187 2,882 3/2/2024
2.1.186 1,584 3/2/2024
2.1.185 1,087 3/2/2024
2.1.184 6,040 2/29/2024
2.1.183 1,958 2/29/2024
2.1.182 2,949 2/29/2024
2.1.181 5,707 2/26/2024
2.1.180 22,151 2/25/2024
2.1.179 2,623 2/25/2024
2.1.178 8,745 2/23/2024
2.1.177 8,447 2/22/2024
2.1.176 2,382 2/22/2024
2.1.175 2,853 2/21/2024
2.1.174 4,619 2/21/2024
2.1.173 4,166 2/21/2024
2.1.172 5,260 2/21/2024
2.1.171 2,212 2/21/2024
2.1.170 433 2/21/2024
2.1.169 4,750 2/21/2024
2.1.168 1,581 2/20/2024
2.1.167 286 2/20/2024
2.1.166 287 2/20/2024
2.1.165 6,292 2/20/2024
2.1.164 4,860 2/20/2024
2.1.163 4,585 2/20/2024
2.1.162 9,666 2/19/2024
2.1.161 7,599 2/17/2024
2.1.160 3,082 2/17/2024
2.1.159 2,366 2/16/2024
2.1.158 1,667 2/16/2024
2.1.157 2,827 2/16/2024
2.1.156 4,197 2/16/2024
2.1.155 4,928 2/16/2024
2.1.154 337 2/16/2024
2.1.153 2,496 2/16/2024
2.1.152 319 2/16/2024
2.1.151 316 2/16/2024
2.1.150 8,406 2/14/2024
2.1.149 3,460 2/13/2024
2.1.148 4,168 2/13/2024
2.1.147 5,307 2/13/2024
2.1.146 5,096 2/13/2024
2.1.145 6,882 2/12/2024
2.1.144 1,091 2/11/2024
2.1.143 7,453 2/11/2024
2.1.142 4,150 2/11/2024
2.1.141 8,608 2/10/2024
2.1.140 1,094 2/9/2024
2.1.139 7,911 2/9/2024
2.1.138 5,179 2/9/2024
2.1.137 1,339 2/8/2024
2.1.136 6,432 2/8/2024
2.1.135 2,592 2/8/2024
2.1.134 14,571 2/8/2024
2.1.133 394 2/8/2024
2.1.132 327 2/8/2024
2.1.131 7,186 2/7/2024
2.1.130 2,940 2/7/2024
2.1.129 4,982 2/7/2024
2.1.128 1,594 2/7/2024
2.1.127 1,384 2/6/2024
2.1.126 4,094 2/6/2024
2.1.125 361 2/6/2024
2.1.124 10,442 2/5/2024
2.1.123 6,722 2/4/2024
2.1.122 7,203 2/2/2024
2.1.121 8,374 1/31/2024
2.1.120 8,201 1/29/2024
2.1.119 5,132 1/29/2024
2.1.118 3,434 1/29/2024
2.1.117 5,331 1/28/2024
2.1.116 7,190 1/28/2024
2.1.115 4,116 1/28/2024
2.1.114 2,527 1/28/2024
2.1.113 3,045 1/27/2024
2.1.112 2,918 1/27/2024
2.1.111 7,547 1/27/2024
2.1.110 3,893 1/27/2024
2.1.109 8,735 1/27/2024
2.1.108 2,473 1/26/2024
2.1.107 2,994 1/26/2024
2.1.106 3,641 1/26/2024
2.1.105 6,881 1/26/2024
2.1.104 3,280 1/26/2024
2.1.103 1,900 1/26/2024
2.1.102 6,248 1/25/2024
2.1.101 4,973 1/25/2024
2.1.100 2,468 1/25/2024
2.1.99 7,662 1/25/2024
2.1.98 7,846 1/19/2024
2.1.97 7,605 1/15/2024
2.1.96 3,477 1/15/2024
2.1.95 2,825 1/15/2024
2.1.94 7,005 1/15/2024
2.1.93 7,231 1/15/2024
2.1.92 6,902 1/14/2024
2.1.91 8,461 1/13/2024
2.1.90 6,974 1/12/2024
2.1.89 6,954 1/11/2024
2.1.88 9,563 1/7/2024
2.1.87 7,702 1/5/2024
2.1.86 3,366 1/5/2024
2.1.85 4,511 1/5/2024
2.1.84 8,202 1/3/2024
2.1.83 5,002 1/1/2024
2.1.82 6,829 12/28/2023
2.1.81 2,703 12/28/2023
2.1.80 2,915 12/28/2023
2.1.79 6,192 12/27/2023
2.1.78 2,904 12/27/2023
2.1.77 382 12/27/2023
2.1.76 11,708 12/25/2023
2.1.75 6,378 12/25/2023
2.1.74 3,369 12/25/2023
2.1.73 1,016 12/25/2023
2.1.72 402 12/25/2023
2.1.71 9,333 12/24/2023
2.1.70 7,287 12/23/2023
2.1.69 3,894 12/23/2023
2.1.68 2,465 12/23/2023
2.1.67 5,019 12/23/2023
2.1.66 371 12/23/2023
2.1.65 11,151 12/19/2023
2.1.64 2,958 12/19/2023
2.1.63 7,376 12/12/2023
2.1.62 625 12/12/2023
2.1.61 3,618 12/11/2023
2.1.60 2,909 12/11/2023
2.1.59 1,552 12/11/2023
2.1.58 2,244 12/11/2023
2.1.57 1,151 12/10/2023
2.1.56 1,164 12/10/2023
2.1.55 2,329 12/10/2023
2.1.54 1,478 12/10/2023
2.1.53 10,661 12/10/2023
2.1.52 2,487 12/9/2023
2.1.51 1,420 12/9/2023
2.1.50 2,125 12/9/2023
2.1.49 3,240 12/9/2023
2.1.48 342 12/9/2023
2.1.47 1,770 12/9/2023
2.1.46 410 12/9/2023
2.1.45 3,639 12/9/2023
2.1.44 374 12/9/2023
2.1.43 6,082 12/9/2023
2.1.42 8,915 12/6/2023
2.1.41 1,570 12/6/2023
2.1.40 2,352 12/6/2023
2.1.39 5,320 12/5/2023
2.1.38 2,664 12/5/2023
2.1.37 1,504 12/5/2023
2.1.36 3,838 12/5/2023
2.1.35 350 12/5/2023
2.1.34 3,275 12/5/2023
2.1.33 353 12/5/2023
2.1.32 2,231 12/4/2023
2.1.31 1,924 12/4/2023
2.1.30 383 12/4/2023
2.1.29 11,766 12/4/2023
2.1.28 4,040 11/27/2023
2.1.27 1,833 11/26/2023
2.1.26 4,542 11/23/2023
2.1.25 3,905 11/23/2023
2.1.24 4,912 11/23/2023
2.1.23 355 11/23/2023
2.1.22 9,404 11/20/2023
2.1.21 4,568 11/20/2023
2.1.20 7,727 11/19/2023
2.1.19 4,044 11/19/2023
2.1.18 5,549 11/19/2023
2.1.17 1,466 11/18/2023
2.1.16 7,511 11/18/2023
2.1.15 1,589 11/18/2023
2.1.14 4,657 11/18/2023
2.1.13 868 11/18/2023
2.1.12 4,826 11/17/2023
2.1.11 4,098 11/17/2023
2.1.10 3,111 11/17/2023
2.1.9 547 11/17/2023
2.1.8 4,419 11/17/2023
2.1.7 2,852 11/17/2023
2.1.6 3,477 11/17/2023
2.1.5 2,697 11/17/2023
2.1.4 865 11/17/2023
2.1.3 4,493 11/16/2023
2.0.78 1,507 11/15/2023
2.0.77 381 11/15/2023
2.0.76 4,197 11/15/2023
2.0.2 365 11/16/2023
2.0.1 347 11/16/2023
1.0.75 5,854 11/13/2023
1.0.74 8,328 11/10/2023
1.0.73 6,119 11/9/2023
1.0.72 4,326 11/8/2023
1.0.71 6,370 11/7/2023
1.0.70 3,350 11/6/2023
1.0.69 4,068 11/3/2023
1.0.68 7,029 11/2/2023
1.0.67 4,894 11/1/2023
1.0.66 14,187 10/26/2023
1.0.65 8,706 10/19/2023
1.0.64 3,679 10/18/2023
1.0.63 3,754 10/17/2023
1.0.62 4,574 10/16/2023
1.0.61 7,595 10/13/2023
1.0.60 4,711 10/12/2023
1.0.59 15,029 9/18/2023
1.0.58 371 9/18/2023
1.0.57 9,829 9/14/2023
1.0.56 9,363 8/31/2023
1.0.55 4,557 8/30/2023
1.0.54 4,157 8/29/2023
1.0.53 4,026 8/28/2023
1.0.52 7,282 8/25/2023
1.0.51 4,312 8/24/2023
1.0.50 10,240 8/21/2023
1.0.49 4,250 8/18/2023
1.0.48 3,944 8/17/2023
1.0.47 6,665 8/16/2023
1.0.46 11,407 8/10/2023
1.0.45 3,987 8/9/2023
1.0.44 6,353 8/8/2023
1.0.43 5,651 8/7/2023
1.0.42 5,823 8/4/2023
1.0.41 10,902 7/13/2023
1.0.40 7,075 7/11/2023
1.0.39 4,604 7/10/2023
1.0.38 5,386 7/7/2023
1.0.37 464 7/7/2023
1.0.36 14,813 6/30/2023
1.0.35 7,655 6/28/2023
1.0.34 7,641 6/27/2023
1.0.33 8,714 6/26/2023
1.0.32 5,440 6/23/2023
1.0.31 10,821 6/21/2023
1.0.30 11,370 6/15/2023
1.0.29 4,597 6/14/2023
1.0.28 12,217 6/9/2023
1.0.27 5,116 6/8/2023
1.0.26 6,219 6/7/2023
1.0.25 7,094 6/6/2023
1.0.24 478 6/6/2023
1.0.23 6,060 6/5/2023
1.0.22 20,689 5/30/2023
1.0.21 23,075 5/29/2023
1.0.20 8,152 5/26/2023
1.0.19 9,372 5/25/2023
1.0.18 9,825 5/24/2023
1.0.17 6,800 5/24/2023
1.0.16 1,981 5/23/2023
1.0.15 1,922 5/23/2023
1.0.12 3,802 5/22/2023
1.0.11 22,623 5/16/2023
1.0.10 18,625 4/20/2023
1.0.9 17,780 4/3/2023
1.0.8 1,452 4/3/2023
1.0.7 2,868 3/23/2023
1.0.5 927 3/13/2023
1.0.4 654 3/11/2023
1.0.3 540 3/11/2023
1.0.2 539 3/11/2023
1.0.1 613 3/11/2023