Soenneker.Utils.AsyncSingleton 3.0.534

Prefix Reserved
dotnet add package Soenneker.Utils.AsyncSingleton --version 3.0.534                
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 3.0.534                
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.534" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.AsyncSingleton --version 3.0.534                
#r "nuget: Soenneker.Utils.AsyncSingleton, 3.0.534"                
#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.
// Install Soenneker.Utils.AsyncSingleton as a Cake Addin
#addin nuget:?package=Soenneker.Utils.AsyncSingleton&version=3.0.534

// Install Soenneker.Utils.AsyncSingleton as a Cake Tool
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=3.0.534                

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (23)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.AsyncSingleton:

Package Downloads
Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Redis.Client

A utility library for Redis client accessibility

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

Soenneker.ServiceBus.Admin

A utility library for Azure Service Bus Administration client accessibility

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.534 1,583 12/27/2024
3.0.533 935 12/27/2024
3.0.532 5,166 12/24/2024
3.0.531 403 12/24/2024
3.0.530 1,082 12/24/2024
3.0.529 164 12/24/2024
3.0.528 215 12/24/2024
3.0.527 1,413 12/23/2024
3.0.526 2,954 12/23/2024
3.0.525 1,536 12/23/2024
3.0.524 1,463 12/23/2024
3.0.523 2,099 12/23/2024
3.0.522 1,107 12/23/2024
3.0.521 2,723 12/22/2024
3.0.520 69 12/22/2024
3.0.519 10,839 12/22/2024
3.0.518 92 12/22/2024
3.0.517 7,525 12/22/2024
3.0.516 69 12/22/2024
3.0.515 3,930 12/22/2024
3.0.514 70 12/22/2024
3.0.513 757 12/21/2024
3.0.512 235 12/21/2024
3.0.511 68 12/21/2024
3.0.510 6,370 12/21/2024
3.0.509 784 12/21/2024
3.0.508 66 12/21/2024
3.0.507 1,265 12/21/2024
3.0.506 74 12/21/2024
3.0.505 4,378 12/21/2024
3.0.504 1,401 12/21/2024
3.0.503 3,430 12/21/2024
3.0.502 68 12/21/2024
3.0.501 2,121 12/20/2024
3.0.500 2,197 12/20/2024
3.0.499 4,137 12/20/2024
3.0.498 1,268 12/20/2024
3.0.497 566 12/20/2024
3.0.496 6,460 12/19/2024
3.0.495 528 12/19/2024
3.0.494 947 12/18/2024
3.0.493 486 12/18/2024
3.0.492 10,506 12/17/2024
3.0.491 341 12/17/2024
3.0.490 766 12/17/2024
3.0.489 990 12/17/2024
3.0.488 1,036 12/16/2024
3.0.487 302 12/16/2024
3.0.486 65 12/16/2024
3.0.485 9,295 12/9/2024
3.0.484 2,124 12/9/2024
3.0.483 4,737 12/9/2024
3.0.482 887 12/9/2024
3.0.480 9,575 12/6/2024
3.0.479 5,130 12/6/2024
3.0.478 1,634 12/6/2024
3.0.477 915 12/6/2024
3.0.476 596 12/6/2024
3.0.475 2,011 12/6/2024
3.0.474 6,259 12/6/2024
3.0.473 8,334 12/5/2024
3.0.472 925 12/5/2024
3.0.471 4,854 12/5/2024
3.0.470 2,162 12/5/2024
3.0.469 595 12/5/2024
3.0.468 4,393 12/4/2024
3.0.467 2,337 12/4/2024
3.0.466 2,540 12/4/2024
3.0.465 6,773 12/3/2024
3.0.464 268 12/3/2024
3.0.463 1,533 12/3/2024
3.0.462 5,774 12/3/2024
3.0.461 1,089 12/3/2024
3.0.460 3,359 12/3/2024
3.0.459 74 12/3/2024
3.0.458 706 12/3/2024
3.0.457 7,777 12/2/2024
3.0.456 3,452 12/2/2024
3.0.455 992 12/2/2024
3.0.454 857 12/1/2024
3.0.453 4,567 12/1/2024
3.0.452 4,965 12/1/2024
3.0.451 5,103 11/29/2024
3.0.450 7,278 11/20/2024
3.0.449 5,447 11/20/2024
3.0.448 380 11/20/2024
3.0.447 1,878 11/20/2024
3.0.445 2,343 11/19/2024
3.0.444 2,081 11/19/2024
3.0.443 5,659 11/19/2024
3.0.442 4,023 11/19/2024
3.0.441 71 11/19/2024
3.0.439 11,023 11/14/2024
3.0.438 4,264 11/14/2024
3.0.437 1,818 11/14/2024
3.0.436 3,340 11/14/2024
3.0.435 309 11/14/2024
3.0.434 80 11/14/2024
3.0.433 1,130 11/14/2024
3.0.432 79 11/14/2024
2.1.431 15,257 11/13/2024
2.1.430 3,145 11/13/2024
2.1.429 2,444 11/12/2024
2.1.428 11,557 11/9/2024
2.1.427 2,358 11/9/2024
2.1.426 2,543 11/8/2024
2.1.425 1,160 11/8/2024
2.1.424 1,304 11/8/2024
2.1.423 1,506 11/8/2024
2.1.422 1,749 11/8/2024
2.1.421 4,666 11/8/2024
2.1.420 18,042 11/1/2024
2.1.419 8,247 10/29/2024
2.1.418 3,215 10/29/2024
2.1.417 4,374 10/29/2024
2.1.416 8,171 10/28/2024
2.1.415 8,281 10/26/2024
2.1.414 8,473 10/22/2024
2.1.413 2,937 10/22/2024
2.1.412 1,653 10/22/2024
2.1.411 9,019 10/17/2024
2.1.410 8,049 10/15/2024
2.1.409 1,475 10/14/2024
2.1.408 8,342 10/11/2024
2.1.407 2,295 10/11/2024
2.1.406 1,488 10/11/2024
2.1.404 12,278 10/8/2024
2.1.403 5,065 10/8/2024
2.1.402 15,083 10/3/2024
2.1.401 1,094 10/3/2024
2.1.400 2,541 10/3/2024
2.1.399 9,812 10/2/2024
2.1.398 3,241 10/2/2024
2.1.397 10,212 10/1/2024
2.1.396 911 10/1/2024
2.1.395 5,058 9/30/2024
2.1.394 7,885 9/29/2024
2.1.393 2,548 9/29/2024
2.1.392 2,449 9/29/2024
2.1.391 6,882 9/27/2024
2.1.390 4,725 9/27/2024
2.1.389 150 9/27/2024
2.1.388 727 9/27/2024
2.1.387 1,751 9/27/2024
2.1.386 95 9/27/2024
2.1.385 10,471 9/26/2024
2.1.384 9,187 9/26/2024
2.1.383 3,995 9/26/2024
2.1.382 11,546 9/23/2024
2.1.381 2,872 9/23/2024
2.1.380 4,981 9/23/2024
2.1.379 4,944 9/23/2024
2.1.378 3,739 9/23/2024
2.1.377 750 9/23/2024
2.1.376 1,871 9/23/2024
2.1.375 86 9/23/2024
2.1.374 13,629 9/17/2024
2.1.373 662 9/17/2024
2.1.372 2,730 9/17/2024
2.1.371 2,736 9/17/2024
2.1.370 3,111 9/17/2024
2.1.369 4,236 9/17/2024
2.1.368 4,733 9/17/2024
2.1.367 15,642 9/16/2024
2.1.366 8,017 9/12/2024
2.1.365 3,048 9/11/2024
2.1.363 8,901 9/11/2024
2.1.362 17,187 9/10/2024
2.1.361 719 9/10/2024
2.1.360 1,037 9/10/2024
2.1.359 913 9/10/2024
2.1.358 3,659 9/9/2024
2.1.357 1,509 9/9/2024
2.1.356 6,278 9/9/2024
2.1.355 1,737 9/9/2024
2.1.354 7,017 9/9/2024
2.1.353 13,470 9/7/2024
2.1.352 9,915 9/6/2024
2.1.351 5,129 9/5/2024
2.1.350 5,164 9/5/2024
2.1.349 550 9/5/2024
2.1.348 132 9/5/2024
2.1.347 9,033 9/5/2024
2.1.346 1,023 9/4/2024
2.1.345 13,600 9/3/2024
2.1.344 6,128 9/3/2024
2.1.343 4,522 9/3/2024
2.1.342 8,666 8/29/2024
2.1.341 7,255 8/26/2024
2.1.340 7,680 8/21/2024
2.1.339 2,815 8/21/2024
2.1.338 1,643 8/20/2024
2.1.337 5,796 8/20/2024
2.1.336 112 8/20/2024
2.1.335 114 8/20/2024
2.1.334 9,762 8/19/2024
2.1.333 9,478 8/15/2024
2.1.332 9,473 8/13/2024
2.1.331 7,943 8/6/2024
2.1.330 4,337 8/6/2024
2.1.329 6,551 8/1/2024
2.1.328 1,350 8/1/2024
2.1.327 619 8/1/2024
2.1.326 9,475 7/25/2024
2.1.325 1,973 7/25/2024
2.1.324 1,703 7/25/2024
2.1.323 263 7/24/2024
2.1.322 714 7/24/2024
2.1.321 339 7/24/2024
2.1.320 9,111 7/20/2024
2.1.319 11,789 7/14/2024
2.1.318 4,448 7/14/2024
2.1.317 6,788 7/10/2024
2.1.316 2,947 7/10/2024
2.1.315 2,737 7/10/2024
2.1.314 1,588 7/10/2024
2.1.313 1,003 7/10/2024
2.1.312 316 7/10/2024
2.1.311 2,600 7/10/2024
2.1.310 1,339 7/9/2024
2.1.308 2,758 7/9/2024
2.1.307 91 7/9/2024
2.1.306 2,927 7/9/2024
2.1.305 6,783 7/9/2024
2.1.304 5,680 7/9/2024
2.1.303 2,728 7/9/2024
2.1.302 91 7/9/2024
2.1.301 4,603 7/9/2024
2.1.300 6,116 7/8/2024
2.1.299 361 7/8/2024
2.1.298 94 7/8/2024
2.1.297 102 7/8/2024
2.1.296 8,385 7/8/2024
2.1.295 1,634 7/7/2024
2.1.294 5,070 7/7/2024
2.1.293 115 7/7/2024
2.1.292 1,443 7/7/2024
2.1.291 3,089 7/7/2024
2.1.290 10,250 7/3/2024
2.1.289 3,278 7/3/2024
2.1.288 2,938 7/3/2024
2.1.287 842 7/3/2024
2.1.286 5,648 7/2/2024
2.1.283 3,526 6/30/2024
2.1.282 2,365 6/28/2024
2.1.281 235 6/28/2024
2.1.279 7,641 6/22/2024
2.1.278 8,695 6/15/2024
2.1.277 1,162 6/15/2024
2.1.276 6,753 6/14/2024
2.1.275 10,734 6/1/2024
2.1.274 1,729 6/1/2024
2.1.273 1,094 6/1/2024
2.1.272 9,395 5/31/2024
2.1.271 5,865 5/29/2024
2.1.270 6,696 5/28/2024
2.1.269 3,767 5/27/2024
2.1.268 6,965 5/26/2024
2.1.267 6,879 5/26/2024
2.1.266 311 5/26/2024
2.1.265 2,517 5/25/2024
2.1.264 1,820 5/25/2024
2.1.263 1,663 5/25/2024
2.1.262 106 5/25/2024
2.1.261 1,344 5/25/2024
2.1.260 106 5/25/2024
2.1.259 4,883 5/25/2024
2.1.258 102 5/25/2024
2.1.257 8,698 5/23/2024
2.1.256 3,439 5/23/2024
2.1.255 2,465 5/22/2024
2.1.254 1,858 5/22/2024
2.1.253 754 5/22/2024
2.1.252 98 5/22/2024
2.1.251 98 5/22/2024
2.1.250 3,608 5/22/2024
2.1.249 9,261 5/18/2024
2.1.248 1,953 5/17/2024
2.1.247 3,332 5/17/2024
2.1.246 5,206 5/16/2024
2.1.245 1,342 5/15/2024
2.1.244 3,782 5/15/2024
2.1.243 7,754 5/12/2024
2.1.242 4,225 5/3/2024
2.1.241 4,731 4/29/2024
2.1.240 2,702 4/29/2024
2.1.239 5,217 4/28/2024
2.1.238 842 4/28/2024
2.1.237 964 4/28/2024
2.1.236 3,925 4/28/2024
2.1.235 550 4/28/2024
2.1.234 5,239 4/28/2024
2.1.233 1,099 4/28/2024
2.1.232 4,887 4/27/2024
2.1.231 108 4/27/2024
2.1.230 9,840 4/19/2024
2.1.229 6,106 4/18/2024
2.1.228 6,379 4/12/2024
2.1.227 1,019 4/12/2024
2.1.226 1,631 4/12/2024
2.1.225 1,372 4/12/2024
2.1.224 952 4/12/2024
2.1.223 1,372 4/12/2024
2.1.222 519 4/12/2024
2.1.221 110 4/12/2024
2.1.220 3,575 4/10/2024
2.1.219 14,450 4/10/2024
2.1.218 672 4/10/2024
2.1.217 7,591 4/2/2024
2.1.216 1,327 4/1/2024
2.1.215 7,319 3/29/2024
2.1.214 5,325 3/25/2024
2.1.213 607 3/25/2024
2.1.212 7,417 3/20/2024
2.1.211 5,081 3/19/2024
2.1.210 3,052 3/19/2024
2.1.209 3,363 3/18/2024
2.1.208 7,358 3/15/2024
2.1.207 5,005 3/13/2024
2.1.206 1,911 3/13/2024
2.1.205 2,487 3/13/2024
2.1.204 157 3/13/2024
2.1.203 140 3/13/2024
2.1.202 1,647 3/13/2024
2.1.201 155 3/13/2024
2.1.200 3,604 3/12/2024
2.1.199 4,625 3/12/2024
2.1.198 6,043 3/11/2024
2.1.197 4,195 3/11/2024
2.1.196 4,497 3/10/2024
2.1.195 5,804 3/8/2024
2.1.194 529 3/8/2024
2.1.193 4,188 3/8/2024
2.1.192 5,386 3/6/2024
2.1.191 5,379 3/4/2024
2.1.190 3,048 3/4/2024
2.1.189 6,101 3/2/2024
2.1.188 1,556 3/2/2024
2.1.187 1,942 3/2/2024
2.1.186 1,087 3/2/2024
2.1.185 756 3/2/2024
2.1.184 4,094 2/29/2024
2.1.183 1,337 2/29/2024
2.1.182 2,058 2/29/2024
2.1.181 3,953 2/26/2024
2.1.180 15,274 2/25/2024
2.1.179 1,818 2/25/2024
2.1.178 6,019 2/23/2024
2.1.177 5,838 2/22/2024
2.1.176 1,625 2/22/2024
2.1.175 1,963 2/21/2024
2.1.174 3,173 2/21/2024
2.1.173 2,853 2/21/2024
2.1.172 3,591 2/21/2024
2.1.171 1,549 2/21/2024
2.1.170 350 2/21/2024
2.1.169 3,307 2/21/2024
2.1.168 1,020 2/20/2024
2.1.167 199 2/20/2024
2.1.166 204 2/20/2024
2.1.165 4,396 2/20/2024
2.1.164 3,322 2/20/2024
2.1.163 3,189 2/20/2024
2.1.162 6,690 2/19/2024
2.1.161 5,339 2/17/2024
2.1.160 2,221 2/17/2024
2.1.159 1,600 2/16/2024
2.1.158 1,155 2/16/2024
2.1.157 1,956 2/16/2024
2.1.156 3,005 2/16/2024
2.1.155 3,470 2/16/2024
2.1.154 243 2/16/2024
2.1.153 1,710 2/16/2024
2.1.152 241 2/16/2024
2.1.151 238 2/16/2024
2.1.150 5,935 2/14/2024
2.1.149 2,519 2/13/2024
2.1.148 3,023 2/13/2024
2.1.147 3,648 2/13/2024
2.1.146 3,501 2/13/2024
2.1.145 4,854 2/12/2024
2.1.144 762 2/11/2024
2.1.143 5,276 2/11/2024
2.1.142 2,975 2/11/2024
2.1.141 6,161 2/10/2024
2.1.140 771 2/9/2024
2.1.139 5,622 2/9/2024
2.1.138 3,629 2/9/2024
2.1.137 955 2/8/2024
2.1.136 4,517 2/8/2024
2.1.135 1,840 2/8/2024
2.1.134 10,456 2/8/2024
2.1.133 310 2/8/2024
2.1.132 239 2/8/2024
2.1.131 5,149 2/7/2024
2.1.130 2,053 2/7/2024
2.1.129 3,518 2/7/2024
2.1.128 1,143 2/7/2024
2.1.127 1,006 2/6/2024
2.1.126 2,808 2/6/2024
2.1.125 277 2/6/2024
2.1.124 7,413 2/5/2024
2.1.123 4,845 2/4/2024
2.1.122 5,150 2/2/2024
2.1.121 6,129 1/31/2024
2.1.120 6,027 1/29/2024
2.1.119 3,641 1/29/2024
2.1.118 2,445 1/29/2024
2.1.117 3,900 1/28/2024
2.1.116 5,166 1/28/2024
2.1.115 2,937 1/28/2024
2.1.114 1,714 1/28/2024
2.1.113 2,344 1/27/2024
2.1.112 2,062 1/27/2024
2.1.111 5,379 1/27/2024
2.1.110 2,712 1/27/2024
2.1.109 6,451 1/27/2024
2.1.108 1,673 1/26/2024
2.1.107 2,116 1/26/2024
2.1.106 2,741 1/26/2024
2.1.105 4,970 1/26/2024
2.1.104 2,369 1/26/2024
2.1.103 1,312 1/26/2024
2.1.102 4,433 1/25/2024
2.1.101 3,521 1/25/2024
2.1.100 1,708 1/25/2024
2.1.99 5,692 1/25/2024
2.1.98 5,478 1/19/2024
2.1.97 5,682 1/15/2024
2.1.96 2,600 1/15/2024
2.1.95 2,039 1/15/2024
2.1.94 5,167 1/15/2024
2.1.93 5,311 1/15/2024
2.1.92 5,146 1/14/2024
2.1.91 6,294 1/13/2024
2.1.90 5,269 1/12/2024
2.1.89 5,164 1/11/2024
2.1.88 7,166 1/7/2024
2.1.87 5,700 1/5/2024
2.1.86 2,558 1/5/2024
2.1.85 3,251 1/5/2024
2.1.84 6,134 1/3/2024
2.1.83 3,736 1/1/2024
2.1.82 5,089 12/28/2023
2.1.81 2,054 12/28/2023
2.1.80 2,063 12/28/2023
2.1.79 4,564 12/27/2023
2.1.78 2,148 12/27/2023
2.1.77 295 12/27/2023
2.1.76 8,759 12/25/2023
2.1.75 4,809 12/25/2023
2.1.74 2,439 12/25/2023
2.1.73 695 12/25/2023
2.1.72 317 12/25/2023
2.1.71 6,911 12/24/2023
2.1.70 5,391 12/23/2023
2.1.69 2,884 12/23/2023
2.1.68 1,714 12/23/2023
2.1.67 3,878 12/23/2023
2.1.66 291 12/23/2023
2.1.65 8,153 12/19/2023
2.1.64 2,248 12/19/2023
2.1.63 5,526 12/12/2023
2.1.62 464 12/12/2023
2.1.61 2,724 12/11/2023
2.1.60 2,214 12/11/2023
2.1.59 1,229 12/11/2023
2.1.58 1,667 12/11/2023
2.1.57 822 12/10/2023
2.1.56 798 12/10/2023
2.1.55 1,827 12/10/2023
2.1.54 1,132 12/10/2023
2.1.53 8,199 12/10/2023
2.1.52 1,864 12/9/2023
2.1.51 1,052 12/9/2023
2.1.50 1,616 12/9/2023
2.1.49 2,490 12/9/2023
2.1.48 264 12/9/2023
2.1.47 1,272 12/9/2023
2.1.46 336 12/9/2023
2.1.45 2,872 12/9/2023
2.1.44 300 12/9/2023
2.1.43 4,527 12/9/2023
2.1.42 6,777 12/6/2023
2.1.41 1,245 12/6/2023
2.1.40 1,776 12/6/2023
2.1.39 3,993 12/5/2023
2.1.38 2,018 12/5/2023
2.1.37 1,135 12/5/2023
2.1.36 2,871 12/5/2023
2.1.35 293 12/5/2023
2.1.34 2,437 12/5/2023
2.1.33 301 12/5/2023
2.1.32 1,609 12/4/2023
2.1.31 1,537 12/4/2023
2.1.30 326 12/4/2023
2.1.29 8,835 12/4/2023
2.1.28 2,908 11/27/2023
2.1.27 1,364 11/26/2023
2.1.26 3,418 11/23/2023
2.1.25 2,946 11/23/2023
2.1.24 3,596 11/23/2023
2.1.23 300 11/23/2023
2.1.22 7,024 11/20/2023
2.1.21 3,403 11/20/2023
2.1.20 5,490 11/19/2023
2.1.19 3,014 11/19/2023
2.1.18 4,157 11/19/2023
2.1.17 1,122 11/18/2023
2.1.16 5,400 11/18/2023
2.1.15 1,311 11/18/2023
2.1.14 3,432 11/18/2023
2.1.13 757 11/18/2023
2.1.12 3,563 11/17/2023
2.1.11 2,937 11/17/2023
2.1.10 2,187 11/17/2023
2.1.9 406 11/17/2023
2.1.8 3,477 11/17/2023
2.1.7 2,009 11/17/2023
2.1.6 2,532 11/17/2023
2.1.5 1,728 11/17/2023
2.1.4 588 11/17/2023
2.1.3 3,288 11/16/2023
2.0.78 1,129 11/15/2023
2.0.77 318 11/15/2023
2.0.76 2,943 11/15/2023
2.0.2 324 11/16/2023
2.0.1 286 11/16/2023
1.0.75 4,231 11/13/2023
1.0.74 6,093 11/10/2023
1.0.73 4,805 11/9/2023
1.0.72 3,258 11/8/2023
1.0.71 5,003 11/7/2023
1.0.70 2,487 11/6/2023
1.0.69 3,111 11/3/2023
1.0.68 5,616 11/2/2023
1.0.67 3,429 11/1/2023
1.0.66 10,925 10/26/2023
1.0.65 6,701 10/19/2023
1.0.64 2,904 10/18/2023
1.0.63 2,811 10/17/2023
1.0.62 3,408 10/16/2023
1.0.61 6,204 10/13/2023
1.0.60 3,637 10/12/2023
1.0.59 11,409 9/18/2023
1.0.58 306 9/18/2023
1.0.57 7,677 9/14/2023
1.0.56 7,169 8/31/2023
1.0.55 3,646 8/30/2023
1.0.54 3,120 8/29/2023
1.0.53 3,032 8/28/2023
1.0.52 5,801 8/25/2023
1.0.51 3,255 8/24/2023
1.0.50 7,914 8/21/2023
1.0.49 3,214 8/18/2023
1.0.48 2,986 8/17/2023
1.0.47 5,498 8/16/2023
1.0.46 9,061 8/10/2023
1.0.45 3,160 8/9/2023
1.0.44 5,283 8/8/2023
1.0.43 4,462 8/7/2023
1.0.42 4,659 8/4/2023
1.0.41 8,577 7/13/2023
1.0.40 5,713 7/11/2023
1.0.39 3,471 7/10/2023
1.0.38 4,355 7/7/2023
1.0.37 362 7/7/2023
1.0.36 12,017 6/30/2023
1.0.35 6,181 6/28/2023
1.0.34 6,321 6/27/2023
1.0.33 7,328 6/26/2023
1.0.32 4,359 6/23/2023
1.0.31 8,858 6/21/2023
1.0.30 9,247 6/15/2023
1.0.29 3,652 6/14/2023
1.0.28 9,851 6/9/2023
1.0.27 4,286 6/8/2023
1.0.26 5,238 6/7/2023
1.0.25 5,892 6/6/2023
1.0.24 388 6/6/2023
1.0.23 4,932 6/5/2023
1.0.22 17,032 5/30/2023
1.0.21 19,873 5/29/2023
1.0.20 6,867 5/26/2023
1.0.19 7,999 5/25/2023
1.0.18 8,357 5/24/2023
1.0.17 5,661 5/24/2023
1.0.16 1,692 5/23/2023
1.0.15 1,677 5/23/2023
1.0.12 3,104 5/22/2023
1.0.11 19,299 5/16/2023
1.0.10 15,881 4/20/2023
1.0.9 15,192 4/3/2023
1.0.8 1,272 4/3/2023
1.0.7 2,515 3/23/2023
1.0.5 772 3/13/2023
1.0.4 534 3/11/2023
1.0.3 438 3/11/2023
1.0.2 441 3/11/2023
1.0.1 494 3/11/2023