Soenneker.Utils.AsyncSingleton 2.1.427

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.427
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.427
                    
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.427" />
                    
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.427" />
                    
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.427
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.427"
                    
#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.427
                    
#: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.427
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.427
                    
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 77,773 9/3/2025
3.0.715 177 9/3/2025
3.0.714 55,232 8/11/2025
3.0.713 165 8/11/2025
3.0.712 99,047 7/1/2025
3.0.711 11,371 6/27/2025
3.0.710 1,470 6/27/2025
3.0.709 60,299 5/27/2025
3.0.708 1,024 5/27/2025
3.0.707 23,247 5/22/2025
3.0.705 36,013 5/7/2025
3.0.704 593 5/7/2025
3.0.703 21,892 5/5/2025
3.0.702 664 5/5/2025
3.0.701 202 5/5/2025
3.0.700 27,486 4/8/2025
3.0.699 6,838 4/8/2025
3.0.698 3,503 4/8/2025
3.0.697 4,807 4/8/2025
3.0.696 12,665 4/7/2025
3.0.695 4,440 4/7/2025
3.0.694 11,702 4/7/2025
3.0.693 10,866 4/7/2025
3.0.692 3,267 4/7/2025
3.0.691 3,070 4/6/2025
3.0.690 1,748 4/6/2025
3.0.689 317 4/6/2025
3.0.688 227 4/6/2025
3.0.687 4,480 4/6/2025
3.0.686 2,630 4/6/2025
3.0.685 175 4/6/2025
3.0.684 11,159 4/5/2025
3.0.683 1,833 4/5/2025
3.0.682 552 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 57,279 4/1/2025
3.0.677 15,279 3/31/2025
3.0.676 11,356 3/29/2025
3.0.675 15,063 3/25/2025
3.0.674 11,738 3/21/2025
3.0.673 21,346 3/15/2025
3.0.672 11,989 3/12/2025
3.0.671 1,107 3/12/2025
3.0.670 5,957 3/11/2025
3.0.669 313 3/11/2025
3.0.668 8,057 3/11/2025
3.0.667 7,529 3/11/2025
3.0.666 25,289 3/2/2025
3.0.665 2,753 3/2/2025
3.0.664 2,939 3/1/2025
3.0.663 4,747 3/1/2025
3.0.662 4,247 3/1/2025
3.0.661 3,064 3/1/2025
3.0.660 159 3/1/2025
3.0.659 4,610 3/1/2025
3.0.658 17,853 2/25/2025
3.0.657 4,120 2/25/2025
3.0.656 3,664 2/25/2025
3.0.655 4,483 2/24/2025
3.0.654 10,528 2/22/2025
3.0.653 16,933 2/22/2025
3.0.652 517 2/22/2025
3.0.651 4,848 2/21/2025
3.0.650 10,311 2/21/2025
3.0.649 13,466 2/19/2025
3.0.648 755 2/18/2025
3.0.647 2,591 2/18/2025
3.0.646 2,958 2/18/2025
3.0.645 7,607 2/18/2025
3.0.644 13,560 2/13/2025
3.0.643 15,221 2/12/2025
3.0.642 1,517 2/12/2025
3.0.641 2,672 2/12/2025
3.0.640 2,983 2/11/2025
3.0.639 2,997 2/11/2025
3.0.638 3,732 2/11/2025
3.0.637 5,443 2/11/2025
3.0.636 6,913 2/11/2025
3.0.635 9,356 2/10/2025
3.0.634 177 2/10/2025
3.0.633 11,572 2/9/2025
3.0.632 8,709 2/8/2025
3.0.631 1,725 2/8/2025
3.0.630 3,567 2/7/2025
3.0.629 4,284 2/7/2025
3.0.628 4,662 2/7/2025
3.0.627 410 2/7/2025
3.0.626 4,269 2/7/2025
3.0.625 167 2/7/2025
3.0.624 1,038 2/7/2025
3.0.623 23,583 2/5/2025
3.0.622 1,945 2/5/2025
3.0.621 3,549 2/5/2025
3.0.620 2,728 2/5/2025
3.0.619 27,153 1/28/2025
3.0.618 7,499 1/28/2025
3.0.617 434 1/27/2025
3.0.616 27,172 1/26/2025
3.0.615 2,463 1/26/2025
3.0.614 6,024 1/25/2025
3.0.613 8,242 1/25/2025
3.0.612 5,111 1/25/2025
3.0.611 2,865 1/24/2025
3.0.610 20,686 1/24/2025
3.0.609 6,853 1/24/2025
3.0.608 6,637 1/24/2025
3.0.607 5,314 1/23/2025
3.0.606 5,354 1/23/2025
3.0.605 15,864 1/21/2025
3.0.604 3,423 1/21/2025
3.0.603 7,959 1/21/2025
3.0.602 5,347 1/21/2025
3.0.601 7,596 1/21/2025
3.0.600 7,661 1/20/2025
3.0.599 544 1/20/2025
3.0.598 1,042 1/20/2025
3.0.597 7,449 1/20/2025
3.0.596 9,199 1/20/2025
3.0.595 1,102 1/20/2025
3.0.594 175 1/20/2025
3.0.593 1,056 1/20/2025
3.0.592 158 1/20/2025
3.0.591 23,639 1/19/2025
3.0.590 3,707 1/19/2025
3.0.589 3,753 1/18/2025
3.0.588 6,085 1/18/2025
3.0.587 2,386 1/18/2025
3.0.586 9,964 1/17/2025
3.0.585 1,854 1/17/2025
3.0.584 5,045 1/17/2025
3.0.583 4,359 1/16/2025
3.0.582 26,993 1/16/2025
3.0.581 2,374 1/16/2025
3.0.580 4,776 1/16/2025
3.0.579 6,045 1/15/2025
3.0.578 3,500 1/15/2025
3.0.577 6,697 1/15/2025
3.0.576 10,515 1/15/2025
3.0.575 1,876 1/15/2025
3.0.574 5,519 1/15/2025
3.0.573 546 1/15/2025
3.0.572 5,353 1/14/2025
3.0.571 2,553 1/14/2025
3.0.570 5,644 1/14/2025
3.0.569 22,348 1/13/2025
3.0.568 7,918 1/12/2025
3.0.567 11,936 1/11/2025
3.0.566 3,266 1/11/2025
3.0.565 1,614 1/11/2025
3.0.564 1,295 1/10/2025
3.0.563 6,772 1/10/2025
3.0.562 633 1/10/2025
3.0.561 1,378 1/10/2025
3.0.560 151 1/10/2025
3.0.559 151 1/10/2025
3.0.558 14,695 1/8/2025
3.0.557 431 1/8/2025
3.0.556 5,995 1/3/2025
3.0.555 4,755 1/3/2025
3.0.554 6,551 1/2/2025
3.0.553 1,110 1/2/2025
3.0.552 204 1/2/2025
3.0.551 3,776 1/2/2025
3.0.550 8,134 1/1/2025
3.0.549 1,142 1/1/2025
3.0.548 1,918 1/1/2025
3.0.547 2,129 1/1/2025
3.0.546 177 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,654 12/31/2024
3.0.541 12,141 12/31/2024
3.0.540 4,922 12/31/2024
3.0.539 6,274 12/31/2024
3.0.538 4,440 12/31/2024
3.0.537 1,962 12/31/2024
3.0.536 173 12/31/2024
3.0.535 7,493 12/31/2024
3.0.534 23,376 12/27/2024
3.0.533 4,365 12/27/2024
3.0.532 15,763 12/24/2024
3.0.531 1,029 12/24/2024
3.0.530 2,209 12/24/2024
3.0.529 413 12/24/2024
3.0.528 458 12/24/2024
3.0.527 2,695 12/23/2024
3.0.526 5,588 12/23/2024
3.0.525 2,693 12/23/2024
3.0.524 2,546 12/23/2024
3.0.523 3,487 12/23/2024
3.0.522 1,814 12/23/2024
3.0.521 4,451 12/22/2024
3.0.520 179 12/22/2024
3.0.519 19,094 12/22/2024
3.0.518 192 12/22/2024
3.0.517 14,652 12/22/2024
3.0.516 163 12/22/2024
3.0.515 6,969 12/22/2024
3.0.514 181 12/22/2024
3.0.513 1,368 12/21/2024
3.0.512 459 12/21/2024
3.0.511 156 12/21/2024
3.0.510 12,815 12/21/2024
3.0.509 1,267 12/21/2024
3.0.508 153 12/21/2024
3.0.507 2,167 12/21/2024
3.0.506 172 12/21/2024
3.0.505 7,086 12/21/2024
3.0.504 2,229 12/21/2024
3.0.503 5,671 12/21/2024
3.0.502 169 12/21/2024
3.0.501 3,572 12/20/2024
3.0.500 3,475 12/20/2024
3.0.499 6,822 12/20/2024
3.0.498 2,090 12/20/2024
3.0.497 960 12/20/2024
3.0.496 11,518 12/19/2024
3.0.495 939 12/19/2024
3.0.494 1,542 12/18/2024
3.0.493 853 12/18/2024
3.0.492 16,552 12/17/2024
3.0.491 533 12/17/2024
3.0.490 1,142 12/17/2024
3.0.489 1,531 12/17/2024
3.0.488 1,695 12/16/2024
3.0.487 531 12/16/2024
3.0.486 146 12/16/2024
3.0.485 14,737 12/9/2024
3.0.484 3,652 12/9/2024
3.0.483 7,824 12/9/2024
3.0.482 1,494 12/9/2024
3.0.480 15,771 12/6/2024
3.0.479 8,416 12/6/2024
3.0.478 2,770 12/6/2024
3.0.477 1,526 12/6/2024
3.0.476 1,035 12/6/2024
3.0.475 3,310 12/6/2024
3.0.474 10,181 12/6/2024
3.0.473 13,244 12/5/2024
3.0.472 1,533 12/5/2024
3.0.471 7,968 12/5/2024
3.0.470 3,473 12/5/2024
3.0.469 1,051 12/5/2024
3.0.468 7,042 12/4/2024
3.0.467 4,127 12/4/2024
3.0.466 4,333 12/4/2024
3.0.465 11,010 12/3/2024
3.0.464 453 12/3/2024
3.0.463 2,527 12/3/2024
3.0.462 9,107 12/3/2024
3.0.461 1,749 12/3/2024
3.0.460 5,711 12/3/2024
3.0.459 159 12/3/2024
3.0.458 1,229 12/3/2024
3.0.457 12,770 12/2/2024
3.0.456 5,633 12/2/2024
3.0.455 1,712 12/2/2024
3.0.454 1,469 12/1/2024
3.0.453 7,644 12/1/2024
3.0.452 8,060 12/1/2024
3.0.451 8,427 11/29/2024
3.0.450 13,369 11/20/2024
3.0.449 8,761 11/20/2024
3.0.448 669 11/20/2024
3.0.447 3,036 11/20/2024
3.0.445 3,824 11/19/2024
3.0.444 3,171 11/19/2024
3.0.443 8,989 11/19/2024
3.0.442 6,342 11/19/2024
3.0.441 161 11/19/2024
3.0.439 17,730 11/14/2024
3.0.438 6,918 11/14/2024
3.0.437 2,895 11/14/2024
3.0.436 5,375 11/14/2024
3.0.435 538 11/14/2024
3.0.434 183 11/14/2024
3.0.433 1,957 11/14/2024
3.0.432 161 11/14/2024
2.1.431 25,457 11/13/2024
2.1.430 4,931 11/13/2024
2.1.429 3,865 11/12/2024
2.1.428 17,881 11/9/2024
2.1.427 3,798 11/9/2024
2.1.426 4,056 11/8/2024
2.1.425 1,791 11/8/2024
2.1.424 2,009 11/8/2024
2.1.423 2,329 11/8/2024
2.1.422 2,705 11/8/2024
2.1.421 7,236 11/8/2024
2.1.420 28,023 11/1/2024
2.1.419 12,854 10/29/2024
2.1.418 5,012 10/29/2024
2.1.417 6,818 10/29/2024
2.1.416 12,646 10/28/2024
2.1.415 12,623 10/26/2024
2.1.414 14,552 10/22/2024
2.1.413 4,761 10/22/2024
2.1.412 2,562 10/22/2024
2.1.411 14,220 10/17/2024
2.1.410 12,573 10/15/2024
2.1.409 2,434 10/14/2024
2.1.408 12,978 10/11/2024
2.1.407 3,664 10/11/2024
2.1.406 2,446 10/11/2024
2.1.404 19,566 10/8/2024
2.1.403 7,853 10/8/2024
2.1.402 24,031 10/3/2024
2.1.401 1,752 10/3/2024
2.1.400 4,192 10/3/2024
2.1.399 15,650 10/2/2024
2.1.398 5,144 10/2/2024
2.1.397 16,038 10/1/2024
2.1.396 1,480 10/1/2024
2.1.395 7,917 9/30/2024
2.1.394 12,505 9/29/2024
2.1.393 4,109 9/29/2024
2.1.392 3,869 9/29/2024
2.1.391 10,797 9/27/2024
2.1.390 7,401 9/27/2024
2.1.389 243 9/27/2024
2.1.388 1,114 9/27/2024
2.1.387 2,827 9/27/2024
2.1.386 177 9/27/2024
2.1.385 16,346 9/26/2024
2.1.384 14,431 9/26/2024
2.1.383 6,241 9/26/2024
2.1.382 17,939 9/23/2024
2.1.381 4,394 9/23/2024
2.1.380 7,763 9/23/2024
2.1.379 7,656 9/23/2024
2.1.378 5,956 9/23/2024
2.1.377 1,190 9/23/2024
2.1.376 2,979 9/23/2024
2.1.375 165 9/23/2024
2.1.374 21,308 9/17/2024
2.1.373 979 9/17/2024
2.1.372 4,047 9/17/2024
2.1.371 4,229 9/17/2024
2.1.370 4,684 9/17/2024
2.1.369 6,338 9/17/2024
2.1.368 7,116 9/17/2024
2.1.367 23,346 9/16/2024
2.1.366 12,015 9/12/2024
2.1.365 4,583 9/11/2024
2.1.363 12,941 9/11/2024
2.1.362 25,124 9/10/2024
2.1.361 1,076 9/10/2024
2.1.360 1,545 9/10/2024
2.1.359 1,364 9/10/2024
2.1.358 5,350 9/9/2024
2.1.357 2,228 9/9/2024
2.1.356 9,162 9/9/2024
2.1.355 2,504 9/9/2024
2.1.354 10,275 9/9/2024
2.1.353 19,637 9/7/2024
2.1.352 14,771 9/6/2024
2.1.351 7,712 9/5/2024
2.1.350 7,773 9/5/2024
2.1.349 776 9/5/2024
2.1.348 208 9/5/2024
2.1.347 13,304 9/5/2024
2.1.346 1,513 9/4/2024
2.1.345 20,421 9/3/2024
2.1.344 9,364 9/3/2024
2.1.343 6,917 9/3/2024
2.1.342 13,240 8/29/2024
2.1.341 11,025 8/26/2024
2.1.340 11,742 8/21/2024
2.1.339 4,394 8/21/2024
2.1.338 2,608 8/20/2024
2.1.337 8,858 8/20/2024
2.1.336 198 8/20/2024
2.1.335 187 8/20/2024
2.1.334 14,853 8/19/2024
2.1.333 14,256 8/15/2024
2.1.332 14,207 8/13/2024
2.1.331 11,880 8/6/2024
2.1.330 6,845 8/6/2024
2.1.329 10,504 8/1/2024
2.1.328 2,105 8/1/2024
2.1.327 985 8/1/2024
2.1.326 14,995 7/25/2024
2.1.325 3,153 7/25/2024
2.1.324 2,761 7/25/2024
2.1.323 436 7/24/2024
2.1.322 1,189 7/24/2024
2.1.321 569 7/24/2024
2.1.320 15,269 7/20/2024
2.1.319 18,922 7/14/2024
2.1.318 7,043 7/14/2024
2.1.317 10,442 7/10/2024
2.1.316 4,489 7/10/2024
2.1.315 4,122 7/10/2024
2.1.314 2,326 7/10/2024
2.1.313 1,655 7/10/2024
2.1.312 511 7/10/2024
2.1.311 4,083 7/10/2024
2.1.310 2,044 7/9/2024
2.1.308 4,103 7/9/2024
2.1.307 172 7/9/2024
2.1.306 4,629 7/9/2024
2.1.305 10,398 7/9/2024
2.1.304 8,991 7/9/2024
2.1.303 4,249 7/9/2024
2.1.302 172 7/9/2024
2.1.301 11,901 7/9/2024
2.1.300 9,641 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,993 7/8/2024
2.1.295 2,541 7/7/2024
2.1.294 8,275 7/7/2024
2.1.293 191 7/7/2024
2.1.292 2,272 7/7/2024
2.1.291 4,798 7/7/2024
2.1.290 16,300 7/3/2024
2.1.289 5,228 7/3/2024
2.1.288 4,685 7/3/2024
2.1.287 1,332 7/3/2024
2.1.286 9,178 7/2/2024
2.1.283 5,631 6/30/2024
2.1.282 3,697 6/28/2024
2.1.281 401 6/28/2024
2.1.279 11,800 6/22/2024
2.1.278 13,595 6/15/2024
2.1.277 1,755 6/15/2024
2.1.276 10,339 6/14/2024
2.1.275 16,597 6/1/2024
2.1.274 2,777 6/1/2024
2.1.273 1,644 6/1/2024
2.1.272 14,647 5/31/2024
2.1.271 9,033 5/29/2024
2.1.270 10,268 5/28/2024
2.1.269 5,896 5/27/2024
2.1.268 10,720 5/26/2024
2.1.267 10,643 5/26/2024
2.1.266 533 5/26/2024
2.1.265 3,952 5/25/2024
2.1.264 2,696 5/25/2024
2.1.263 2,635 5/25/2024
2.1.262 178 5/25/2024
2.1.261 2,114 5/25/2024
2.1.260 182 5/25/2024
2.1.259 7,564 5/25/2024
2.1.258 174 5/25/2024
2.1.257 13,292 5/23/2024
2.1.256 5,360 5/23/2024
2.1.255 3,934 5/22/2024
2.1.254 2,807 5/22/2024
2.1.253 1,178 5/22/2024
2.1.252 179 5/22/2024
2.1.251 178 5/22/2024
2.1.250 5,613 5/22/2024
2.1.249 14,151 5/18/2024
2.1.248 2,986 5/17/2024
2.1.247 5,343 5/17/2024
2.1.246 7,854 5/16/2024
2.1.245 2,081 5/15/2024
2.1.244 5,955 5/15/2024
2.1.243 12,338 5/12/2024
2.1.242 6,651 5/3/2024
2.1.241 7,327 4/29/2024
2.1.240 4,156 4/29/2024
2.1.239 8,060 4/28/2024
2.1.238 1,309 4/28/2024
2.1.237 1,570 4/28/2024
2.1.236 6,073 4/28/2024
2.1.235 864 4/28/2024
2.1.234 7,825 4/28/2024
2.1.233 1,710 4/28/2024
2.1.232 7,400 4/27/2024
2.1.231 190 4/27/2024
2.1.230 14,906 4/19/2024
2.1.229 9,276 4/18/2024
2.1.228 9,645 4/12/2024
2.1.227 1,536 4/12/2024
2.1.226 2,436 4/12/2024
2.1.225 2,052 4/12/2024
2.1.224 1,434 4/12/2024
2.1.223 2,086 4/12/2024
2.1.222 781 4/12/2024
2.1.221 195 4/12/2024
2.1.220 5,386 4/10/2024
2.1.219 23,413 4/10/2024
2.1.218 968 4/10/2024
2.1.217 11,495 4/2/2024
2.1.216 2,053 4/1/2024
2.1.215 11,069 3/29/2024
2.1.214 8,111 3/25/2024
2.1.213 916 3/25/2024
2.1.212 11,170 3/20/2024
2.1.211 7,711 3/19/2024
2.1.210 4,753 3/19/2024
2.1.209 5,129 3/18/2024
2.1.208 10,994 3/15/2024
2.1.207 7,537 3/13/2024
2.1.206 2,924 3/13/2024
2.1.205 3,865 3/13/2024
2.1.204 246 3/13/2024
2.1.203 234 3/13/2024
2.1.202 2,452 3/13/2024
2.1.201 227 3/13/2024
2.1.200 5,480 3/12/2024
2.1.199 6,983 3/12/2024
2.1.198 9,094 3/11/2024
2.1.197 6,313 3/11/2024
2.1.196 6,872 3/10/2024
2.1.195 8,797 3/8/2024
2.1.194 805 3/8/2024
2.1.193 6,315 3/8/2024
2.1.192 8,066 3/6/2024
2.1.191 8,051 3/4/2024
2.1.190 4,476 3/4/2024
2.1.189 9,035 3/2/2024
2.1.188 2,243 3/2/2024
2.1.187 2,913 3/2/2024
2.1.186 1,596 3/2/2024
2.1.185 1,087 3/2/2024
2.1.184 6,123 2/29/2024
2.1.183 1,967 2/29/2024
2.1.182 2,981 2/29/2024
2.1.181 5,772 2/26/2024
2.1.180 22,705 2/25/2024
2.1.179 2,664 2/25/2024
2.1.178 8,876 2/23/2024
2.1.177 8,607 2/22/2024
2.1.176 2,408 2/22/2024
2.1.175 2,886 2/21/2024
2.1.174 4,684 2/21/2024
2.1.173 4,240 2/21/2024
2.1.172 5,353 2/21/2024
2.1.171 2,257 2/21/2024
2.1.170 433 2/21/2024
2.1.169 4,822 2/21/2024
2.1.168 1,585 2/20/2024
2.1.167 286 2/20/2024
2.1.166 287 2/20/2024
2.1.165 6,378 2/20/2024
2.1.164 4,960 2/20/2024
2.1.163 4,657 2/20/2024
2.1.162 9,816 2/19/2024
2.1.161 7,753 2/17/2024
2.1.160 3,147 2/17/2024
2.1.159 2,373 2/16/2024
2.1.158 1,700 2/16/2024
2.1.157 2,866 2/16/2024
2.1.156 4,230 2/16/2024
2.1.155 5,064 2/16/2024
2.1.154 337 2/16/2024
2.1.153 2,531 2/16/2024
2.1.152 319 2/16/2024
2.1.151 316 2/16/2024
2.1.150 8,560 2/14/2024
2.1.149 3,512 2/13/2024
2.1.148 4,232 2/13/2024
2.1.147 5,388 2/13/2024
2.1.146 5,174 2/13/2024
2.1.145 7,042 2/12/2024
2.1.144 1,101 2/11/2024
2.1.143 7,586 2/11/2024
2.1.142 4,215 2/11/2024
2.1.141 8,822 2/10/2024
2.1.140 1,102 2/9/2024
2.1.139 8,042 2/9/2024
2.1.138 5,268 2/9/2024
2.1.137 1,343 2/8/2024
2.1.136 6,530 2/8/2024
2.1.135 2,625 2/8/2024
2.1.134 14,705 2/8/2024
2.1.133 394 2/8/2024
2.1.132 327 2/8/2024
2.1.131 7,340 2/7/2024
2.1.130 2,964 2/7/2024
2.1.129 5,066 2/7/2024
2.1.128 1,617 2/7/2024
2.1.127 1,392 2/6/2024
2.1.126 4,117 2/6/2024
2.1.125 361 2/6/2024
2.1.124 10,630 2/5/2024
2.1.123 6,851 2/4/2024
2.1.122 7,323 2/2/2024
2.1.121 8,521 1/31/2024
2.1.120 8,328 1/29/2024
2.1.119 5,239 1/29/2024
2.1.118 3,495 1/29/2024
2.1.117 5,370 1/28/2024
2.1.116 7,298 1/28/2024
2.1.115 4,170 1/28/2024
2.1.114 2,546 1/28/2024
2.1.113 3,098 1/27/2024
2.1.112 2,927 1/27/2024
2.1.111 7,655 1/27/2024
2.1.110 3,960 1/27/2024
2.1.109 8,904 1/27/2024
2.1.108 2,508 1/26/2024
2.1.107 2,999 1/26/2024
2.1.106 3,713 1/26/2024
2.1.105 6,996 1/26/2024
2.1.104 3,300 1/26/2024
2.1.103 1,921 1/26/2024
2.1.102 6,392 1/25/2024
2.1.101 5,033 1/25/2024
2.1.100 2,507 1/25/2024
2.1.99 7,793 1/25/2024
2.1.98 7,997 1/19/2024
2.1.97 7,741 1/15/2024
2.1.96 3,528 1/15/2024
2.1.95 2,849 1/15/2024
2.1.94 7,116 1/15/2024
2.1.93 7,349 1/15/2024
2.1.92 7,007 1/14/2024
2.1.91 8,606 1/13/2024
2.1.90 7,085 1/12/2024
2.1.89 7,095 1/11/2024
2.1.88 9,732 1/7/2024
2.1.87 7,810 1/5/2024
2.1.86 3,414 1/5/2024
2.1.85 4,568 1/5/2024
2.1.84 8,365 1/3/2024
2.1.83 5,083 1/1/2024
2.1.82 6,920 12/28/2023
2.1.81 2,726 12/28/2023
2.1.80 2,928 12/28/2023
2.1.79 6,267 12/27/2023
2.1.78 2,952 12/27/2023
2.1.77 382 12/27/2023
2.1.76 11,917 12/25/2023
2.1.75 6,462 12/25/2023
2.1.74 3,437 12/25/2023
2.1.73 1,019 12/25/2023
2.1.72 402 12/25/2023
2.1.71 9,483 12/24/2023
2.1.70 7,398 12/23/2023
2.1.69 3,966 12/23/2023
2.1.68 2,478 12/23/2023
2.1.67 5,067 12/23/2023
2.1.66 371 12/23/2023
2.1.65 11,362 12/19/2023
2.1.64 2,981 12/19/2023
2.1.63 7,483 12/12/2023
2.1.62 625 12/12/2023
2.1.61 3,654 12/11/2023
2.1.60 2,932 12/11/2023
2.1.59 1,555 12/11/2023
2.1.58 2,254 12/11/2023
2.1.57 1,163 12/10/2023
2.1.56 1,168 12/10/2023
2.1.55 2,337 12/10/2023
2.1.54 1,490 12/10/2023
2.1.53 10,798 12/10/2023
2.1.52 2,495 12/9/2023
2.1.51 1,428 12/9/2023
2.1.50 2,147 12/9/2023
2.1.49 3,278 12/9/2023
2.1.48 342 12/9/2023
2.1.47 1,777 12/9/2023
2.1.46 411 12/9/2023
2.1.45 3,665 12/9/2023
2.1.44 374 12/9/2023
2.1.43 6,133 12/9/2023
2.1.42 9,023 12/6/2023
2.1.41 1,589 12/6/2023
2.1.40 2,375 12/6/2023
2.1.39 5,366 12/5/2023
2.1.38 2,697 12/5/2023
2.1.37 1,533 12/5/2023
2.1.36 3,878 12/5/2023
2.1.35 350 12/5/2023
2.1.34 3,294 12/5/2023
2.1.33 354 12/5/2023
2.1.32 2,258 12/4/2023
2.1.31 1,940 12/4/2023
2.1.30 383 12/4/2023
2.1.29 11,856 12/4/2023
2.1.28 4,225 11/27/2023
2.1.27 1,864 11/26/2023
2.1.26 4,634 11/23/2023
2.1.25 3,966 11/23/2023
2.1.24 4,974 11/23/2023
2.1.23 355 11/23/2023
2.1.22 9,517 11/20/2023
2.1.21 4,627 11/20/2023
2.1.20 7,869 11/19/2023
2.1.19 4,084 11/19/2023
2.1.18 5,619 11/19/2023
2.1.17 1,498 11/18/2023
2.1.16 7,589 11/18/2023
2.1.15 1,597 11/18/2023
2.1.14 4,680 11/18/2023
2.1.13 869 11/18/2023
2.1.12 4,868 11/17/2023
2.1.11 4,133 11/17/2023
2.1.10 3,141 11/17/2023
2.1.9 555 11/17/2023
2.1.8 4,483 11/17/2023
2.1.7 2,873 11/17/2023
2.1.6 3,514 11/17/2023
2.1.5 2,716 11/17/2023
2.1.4 873 11/17/2023
2.1.3 4,520 11/16/2023
2.0.78 1,515 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,885 11/13/2023
1.0.74 8,383 11/10/2023
1.0.73 6,212 11/9/2023
1.0.72 4,338 11/8/2023
1.0.71 6,446 11/7/2023
1.0.70 3,360 11/6/2023
1.0.69 4,099 11/3/2023
1.0.68 7,079 11/2/2023
1.0.67 4,906 11/1/2023
1.0.66 14,304 10/26/2023
1.0.65 8,739 10/19/2023
1.0.64 3,690 10/18/2023
1.0.63 3,776 10/17/2023
1.0.62 4,603 10/16/2023
1.0.61 7,620 10/13/2023
1.0.60 4,741 10/12/2023
1.0.59 15,147 9/18/2023
1.0.58 373 9/18/2023
1.0.57 9,900 9/14/2023
1.0.56 9,442 8/31/2023
1.0.55 4,597 8/30/2023
1.0.54 4,173 8/29/2023
1.0.53 4,060 8/28/2023
1.0.52 7,350 8/25/2023
1.0.51 4,329 8/24/2023
1.0.50 10,339 8/21/2023
1.0.49 4,286 8/18/2023
1.0.48 3,969 8/17/2023
1.0.47 6,732 8/16/2023
1.0.46 11,532 8/10/2023
1.0.45 4,017 8/9/2023
1.0.44 6,402 8/8/2023
1.0.43 5,697 8/7/2023
1.0.42 5,877 8/4/2023
1.0.41 11,031 7/13/2023
1.0.40 7,121 7/11/2023
1.0.39 4,642 7/10/2023
1.0.38 5,421 7/7/2023
1.0.37 464 7/7/2023
1.0.36 14,983 6/30/2023
1.0.35 7,701 6/28/2023
1.0.34 7,711 6/27/2023
1.0.33 8,772 6/26/2023
1.0.32 5,498 6/23/2023
1.0.31 10,884 6/21/2023
1.0.30 11,471 6/15/2023
1.0.29 4,636 6/14/2023
1.0.28 12,307 6/9/2023
1.0.27 5,160 6/8/2023
1.0.26 6,247 6/7/2023
1.0.25 7,136 6/6/2023
1.0.24 479 6/6/2023
1.0.23 6,077 6/5/2023
1.0.22 20,864 5/30/2023
1.0.21 23,189 5/29/2023
1.0.20 8,205 5/26/2023
1.0.19 9,435 5/25/2023
1.0.18 9,871 5/24/2023
1.0.17 6,816 5/24/2023
1.0.16 2,008 5/23/2023
1.0.15 1,928 5/23/2023
1.0.12 3,817 5/22/2023
1.0.11 22,740 5/16/2023
1.0.10 18,732 4/20/2023
1.0.9 17,862 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 542 3/11/2023
1.0.2 541 3/11/2023
1.0.1 613 3/11/2023