Soenneker.Utils.SingletonDictionary 2.1.322

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 2.1.322                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 2.1.322                
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.SingletonDictionary" Version="2.1.322" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.SingletonDictionary --version 2.1.322                
#r "nuget: Soenneker.Utils.SingletonDictionary, 2.1.322"                
#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.SingletonDictionary as a Cake Addin
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=2.1.322

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

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.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    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.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

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

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Database

A utility library for storing Azure Cosmos databases

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.507 1,053 10/3/2024
2.1.506 28 10/3/2024
2.1.505 371 10/3/2024
2.1.504 713 10/3/2024
2.1.503 558 10/3/2024
2.1.502 2,398 10/2/2024
2.1.501 46 10/2/2024
2.1.500 842 10/2/2024
2.1.499 503 10/2/2024
2.1.498 2,274 10/1/2024
2.1.497 465 10/1/2024
2.1.496 64 10/1/2024
2.1.495 1,712 10/1/2024
2.1.494 59 10/1/2024
2.1.493 93 10/1/2024
2.1.492 4,436 9/29/2024
2.1.491 1,324 9/29/2024
2.1.490 64 9/29/2024
2.1.489 1,160 9/29/2024
2.1.488 65 9/29/2024
2.1.487 2,460 9/29/2024
2.1.486 4,710 9/27/2024
2.1.485 732 9/27/2024
2.1.484 3,069 9/27/2024
2.1.483 72 9/27/2024
2.1.482 402 9/27/2024
2.1.481 2,118 9/27/2024
2.1.480 3,090 9/26/2024
2.1.479 3,411 9/26/2024
2.1.478 2,305 9/26/2024
2.1.477 2,115 9/26/2024
2.1.476 3,722 9/26/2024
2.1.475 68 9/26/2024
2.1.474 5,391 9/23/2024
2.1.473 1,251 9/23/2024
2.1.472 896 9/23/2024
2.1.471 1,089 9/23/2024
2.1.470 58 9/23/2024
2.1.469 1,504 9/23/2024
2.1.468 62 9/23/2024
2.1.467 4,593 9/23/2024
2.1.466 69 9/23/2024
2.1.465 674 9/23/2024
2.1.464 76 9/23/2024
2.1.463 66 9/23/2024
2.1.462 837 9/23/2024
2.1.461 8,808 9/18/2024
2.1.460 214 9/17/2024
2.1.459 1,161 9/17/2024
2.1.458 1,655 9/17/2024
2.1.457 68 9/17/2024
2.1.456 1,756 9/17/2024
2.1.455 420 9/17/2024
2.1.454 3,207 9/17/2024
2.1.453 492 9/17/2024
2.1.452 161 9/17/2024
2.1.451 2,602 9/17/2024
2.1.450 7,376 9/16/2024
2.1.449 672 9/16/2024
2.1.448 4,812 9/12/2024
2.1.447 2,864 9/12/2024
2.1.446 1,272 9/11/2024
2.1.445 1,497 9/11/2024
2.1.443 3,676 9/11/2024
2.1.442 954 9/11/2024
2.1.441 924 9/11/2024
2.1.440 2,255 9/11/2024
2.1.439 7,997 9/10/2024
2.1.438 93 9/10/2024
2.1.437 1,113 9/10/2024
2.1.436 85 9/10/2024
2.1.434 2,867 9/10/2024
2.1.433 565 9/9/2024
2.1.432 1,958 9/9/2024
2.1.430 1,499 9/9/2024
2.1.428 105 9/9/2024
2.1.427 421 9/9/2024
2.1.426 13,168 9/7/2024
2.1.425 99 9/7/2024
2.1.424 4,926 9/6/2024
2.1.423 332 9/6/2024
2.1.422 2,161 9/6/2024
2.1.421 86 9/5/2024
2.1.420 97 9/5/2024
2.1.419 2,342 9/5/2024
2.1.418 1,106 9/5/2024
2.1.417 86 9/5/2024
2.1.416 1,104 9/5/2024
2.1.415 398 9/5/2024
2.1.414 86 9/5/2024
2.1.413 4,987 9/5/2024
2.1.412 165 9/5/2024
2.1.411 89 9/5/2024
2.1.410 2,196 9/4/2024
2.1.409 7,912 9/3/2024
2.1.408 79 9/3/2024
2.1.407 72 9/3/2024
2.1.406 3,954 9/3/2024
2.1.405 123 9/3/2024
2.1.404 2,438 9/3/2024
2.1.403 5,226 8/29/2024
2.1.402 2,495 8/29/2024
2.1.401 2,832 8/26/2024
2.1.400 82 8/26/2024
2.1.399 4,888 8/21/2024
2.1.398 586 8/21/2024
2.1.397 103 8/21/2024
2.1.396 2,519 8/21/2024
2.1.395 120 8/20/2024
2.1.394 108 8/20/2024
2.1.393 443 8/20/2024
2.1.392 2,919 8/20/2024
2.1.391 389 8/20/2024
2.1.390 94 8/20/2024
2.1.389 2,594 8/20/2024
2.1.388 97 8/20/2024
2.1.387 1,170 8/20/2024
2.1.386 2,854 8/19/2024
2.1.385 4,716 8/15/2024
2.1.384 2,076 8/15/2024
2.1.383 4,759 8/14/2024
2.1.382 130 8/13/2024
2.1.381 5,558 8/7/2024
2.1.380 251 8/6/2024
2.1.379 2,646 8/6/2024
2.1.378 4,877 8/1/2024
2.1.377 304 8/1/2024
2.1.376 77 8/1/2024
2.1.374 1,108 8/1/2024
2.1.373 5,737 7/25/2024
2.1.372 72 7/25/2024
2.1.371 694 7/25/2024
2.1.370 280 7/25/2024
2.1.369 330 7/25/2024
2.1.368 158 7/25/2024
2.1.367 358 7/24/2024
2.1.366 115 7/24/2024
2.1.365 177 7/24/2024
2.1.364 287 7/24/2024
2.1.363 7,679 7/20/2024
2.1.362 1,415 7/20/2024
2.1.361 4,932 7/14/2024
2.1.360 1,503 7/14/2024
2.1.359 81 7/14/2024
2.1.358 1,464 7/14/2024
2.1.357 4,257 7/10/2024
2.1.355 763 7/10/2024
2.1.354 1,155 7/10/2024
2.1.353 98 7/10/2024
2.1.352 1,877 7/10/2024
2.1.351 100 7/10/2024
2.1.350 77 7/10/2024
2.1.349 139 7/10/2024
2.1.348 83 7/10/2024
2.1.347 2,009 7/10/2024
2.1.346 97 7/10/2024
2.1.345 789 7/10/2024
2.1.344 86 7/10/2024
2.1.343 184 7/9/2024
2.1.342 76 7/9/2024
2.1.339 1,932 7/9/2024
2.1.338 463 7/9/2024
2.1.337 3,962 7/9/2024
2.1.336 1,045 7/9/2024
2.1.335 88 7/9/2024
2.1.334 2,539 7/9/2024
2.1.333 94 7/9/2024
2.1.332 1,983 7/9/2024
2.1.331 83 7/9/2024
2.1.330 2,470 7/9/2024
2.1.329 71 7/9/2024
2.1.328 1,038 7/9/2024
2.1.327 686 7/8/2024
2.1.326 936 7/8/2024
2.1.325 100 7/8/2024
2.1.324 93 7/8/2024
2.1.323 4,772 7/8/2024
2.1.322 1,585 7/8/2024
2.1.321 99 7/8/2024
2.1.320 2,238 7/7/2024
2.1.319 94 7/7/2024
2.1.318 105 7/7/2024
2.1.317 84 7/7/2024
2.1.316 1,098 7/7/2024
2.1.315 2,122 7/7/2024
2.1.314 1,816 7/7/2024
2.1.313 188 7/7/2024
2.1.312 3,325 7/5/2024
2.1.311 3,822 7/3/2024
2.1.310 2,979 7/3/2024
2.1.309 354 7/3/2024
2.1.308 3,847 7/2/2024
2.1.307 1,810 6/30/2024
2.1.306 2,200 6/28/2024
2.1.305 5,319 6/22/2024
2.1.304 4,811 6/15/2024
2.1.303 4,035 6/14/2024
2.1.302 5,798 6/1/2024
2.1.301 1,541 6/1/2024
2.1.300 558 6/1/2024
2.1.299 5,755 5/31/2024
2.1.298 3,648 5/29/2024
2.1.297 2,972 5/28/2024
2.1.296 2,396 5/27/2024
2.1.295 4,756 5/26/2024
2.1.294 1,975 5/26/2024
2.1.293 445 5/26/2024
2.1.292 2,465 5/25/2024
2.1.291 1,320 5/25/2024
2.1.290 104 5/25/2024
2.1.289 97 5/25/2024
2.1.288 642 5/25/2024
2.1.287 98 5/25/2024
2.1.286 372 5/25/2024
2.1.285 108 5/25/2024
2.1.284 98 5/25/2024
2.1.283 7,302 5/23/2024
2.1.282 491 5/23/2024
2.1.281 233 5/22/2024
2.1.280 3,570 5/22/2024
2.1.279 92 5/22/2024
2.1.278 104 5/22/2024
2.1.277 107 5/22/2024
2.1.276 2,067 5/22/2024
2.1.275 3,324 5/18/2024
2.1.274 1,843 5/18/2024
2.1.273 1,761 5/17/2024
2.1.272 87 5/17/2024
2.1.271 2,669 5/16/2024
2.1.270 401 5/15/2024
2.1.269 2,689 5/15/2024
2.1.268 4,378 5/12/2024
2.1.267 2,677 5/3/2024
2.1.266 1,104 4/30/2024
2.1.265 1,709 4/29/2024
2.1.264 1,853 4/29/2024
2.1.263 2,577 4/28/2024
2.1.262 1,431 4/28/2024
2.1.261 1,054 4/28/2024
2.1.260 1,699 4/28/2024
2.1.259 852 4/28/2024
2.1.258 88 4/28/2024
2.1.257 4,090 4/27/2024
2.1.256 97 4/27/2024
2.1.255 4,310 4/19/2024
2.1.254 3,989 4/18/2024
2.1.253 3,361 4/12/2024
2.1.252 1,098 4/12/2024
2.1.251 685 4/12/2024
2.1.250 821 4/12/2024
2.1.249 155 4/12/2024
2.1.248 85 4/12/2024
2.1.247 955 4/12/2024
2.1.246 273 4/12/2024
2.1.245 1,601 4/11/2024
2.1.244 3,631 4/10/2024
2.1.243 1,081 4/9/2024
2.1.242 3,085 4/2/2024
2.1.241 865 4/1/2024
2.1.240 2,027 3/29/2024
2.1.239 1,778 3/25/2024
2.1.238 264 3/25/2024
2.1.237 3,243 3/20/2024
2.1.236 2,098 3/19/2024
2.1.235 488 3/19/2024
2.1.234 2,256 3/18/2024
2.1.233 1,357 3/18/2024
2.1.232 1,338 3/15/2024
2.1.231 2,275 3/13/2024
2.1.230 1,056 3/13/2024
2.1.229 619 3/13/2024
2.1.228 720 3/13/2024
2.1.227 103 3/13/2024
2.1.226 511 3/13/2024
2.1.225 115 3/13/2024
2.1.224 120 3/13/2024
2.1.223 1,606 3/12/2024
2.1.222 2,766 3/11/2024
2.1.221 2,385 3/11/2024
2.1.220 1,559 3/10/2024
2.1.219 1,831 3/8/2024
2.1.218 1,009 3/8/2024
2.1.217 1,497 3/8/2024
2.1.216 2,036 3/6/2024
2.1.215 1,946 3/4/2024
2.1.214 1,360 3/4/2024
2.1.213 2,494 3/2/2024
2.1.212 1,162 3/2/2024
2.1.211 374 3/2/2024
2.1.210 323 3/2/2024
2.1.209 435 3/2/2024
2.1.208 3,359 2/29/2024
2.1.207 603 2/29/2024
2.1.206 310 2/29/2024
2.1.205 3,237 2/26/2024
2.1.204 1,449 2/25/2024
2.1.203 2,546 2/23/2024
2.1.202 1,846 2/22/2024
2.1.201 908 2/22/2024
2.1.200 386 2/21/2024
2.1.199 1,149 2/21/2024
2.1.198 257 2/21/2024
2.1.197 719 2/21/2024
2.1.196 103 2/21/2024
2.1.195 1,191 2/21/2024
2.1.194 373 2/21/2024
2.1.193 110 2/21/2024
2.1.192 103 2/21/2024
2.1.191 558 2/21/2024
2.1.190 86 2/21/2024
2.1.189 2,551 2/20/2024
2.1.188 673 2/20/2024
2.1.187 599 2/20/2024
2.1.186 718 2/20/2024
2.1.185 2,037 2/19/2024
2.1.184 1,821 2/17/2024
2.1.183 852 2/16/2024
2.1.182 812 2/16/2024
2.1.181 1,282 2/16/2024
2.1.180 92 2/16/2024
2.1.179 590 2/16/2024
2.1.178 99 2/16/2024
2.1.177 102 2/16/2024
2.1.176 506 2/16/2024
2.1.175 89 2/16/2024
2.1.174 3,232 2/13/2024
2.1.173 1,325 2/13/2024
2.1.172 1,042 2/13/2024
2.1.171 426 2/13/2024
2.1.170 594 2/13/2024
2.1.169 1,879 2/12/2024
2.1.168 468 2/11/2024
2.1.167 1,469 2/11/2024
2.1.166 807 2/11/2024
2.1.165 2,675 2/10/2024
2.1.164 515 2/9/2024
2.1.163 113 2/9/2024
2.1.162 1,512 2/9/2024
2.1.161 1,615 2/9/2024
2.1.160 356 2/8/2024
2.1.159 1,145 2/8/2024
2.1.158 805 2/8/2024
2.1.157 1,399 2/8/2024
2.1.156 99 2/8/2024
2.1.155 1,796 2/7/2024
2.1.154 418 2/7/2024
2.1.153 572 2/7/2024
2.1.152 1,226 2/7/2024
2.1.151 346 2/6/2024
2.1.150 108 2/6/2024
2.1.149 102 2/6/2024
2.1.148 2,698 2/5/2024
2.1.147 1,476 2/4/2024
2.1.146 2,023 2/2/2024
2.1.145 1,859 1/31/2024
2.1.144 2,088 1/29/2024
2.1.143 1,316 1/29/2024
2.1.142 323 1/29/2024
2.1.141 1,435 1/28/2024
2.1.140 420 1/28/2024
2.1.139 279 1/28/2024
2.1.138 506 1/28/2024
2.1.137 1,870 1/28/2024
2.1.136 895 1/28/2024
2.1.135 260 1/27/2024
2.1.134 884 1/27/2024
2.1.133 1,130 1/27/2024
2.1.132 1,137 1/27/2024
2.1.131 132 1/27/2024
2.1.130 673 1/27/2024
2.1.129 1,021 1/26/2024
2.1.128 192 1/26/2024
2.1.127 841 1/26/2024
2.1.126 1,084 1/26/2024
2.1.125 1,580 1/26/2024
2.1.124 851 1/25/2024
2.1.123 1,059 1/25/2024
2.1.122 423 1/25/2024
2.1.121 881 1/25/2024
2.1.120 492 1/25/2024
2.1.119 2,528 1/19/2024
2.1.118 2,167 1/15/2024
2.1.117 472 1/15/2024
2.1.116 1,182 1/15/2024
2.1.115 107 1/15/2024
2.1.114 537 1/15/2024
2.1.113 1,329 1/15/2024
2.1.112 2,481 1/14/2024
2.1.111 1,572 1/13/2024
2.1.110 1,791 1/12/2024
2.1.109 2,007 1/11/2024
2.1.108 2,588 1/7/2024
2.1.107 2,054 1/5/2024
2.1.106 457 1/5/2024
2.1.105 118 1/5/2024
2.1.104 124 1/5/2024
2.1.103 1,442 1/5/2024
2.1.102 124 1/5/2024
2.1.101 2,682 1/1/2024
2.1.100 2,175 12/28/2023
2.1.99 715 12/28/2023
2.1.98 476 12/28/2023
2.1.97 114 12/28/2023
2.1.96 112 12/28/2023
2.1.95 692 12/27/2023
2.1.94 122 12/27/2023
2.1.93 447 12/27/2023
2.1.92 115 12/27/2023
2.1.91 118 12/27/2023
2.1.90 2,179 12/25/2023
2.1.89 332 12/25/2023
2.1.88 751 12/25/2023
2.1.87 119 12/25/2023
2.1.86 595 12/25/2023
2.1.85 112 12/25/2023
2.1.84 545 12/25/2023
2.1.83 118 12/25/2023
2.1.82 1,606 12/24/2023
2.1.81 1,041 12/23/2023
2.1.80 835 12/23/2023
2.1.79 288 12/23/2023
2.1.78 523 12/23/2023
2.1.77 111 12/23/2023
2.1.76 101 12/23/2023
2.1.75 1,052 12/23/2023
2.1.74 103 12/23/2023
2.1.73 1,362 12/19/2023
2.1.72 194 12/19/2023
2.1.71 3,003 12/11/2023
2.1.70 700 12/10/2023
2.1.69 100 12/10/2023
2.1.68 457 12/10/2023
2.1.67 1,376 12/10/2023
2.1.66 352 12/9/2023
2.1.65 343 12/9/2023
2.1.64 274 12/9/2023
2.1.63 107 12/9/2023
2.1.62 243 12/9/2023
2.1.61 180 12/9/2023
2.1.60 112 12/9/2023
2.1.59 1,049 12/9/2023
2.1.58 108 12/9/2023
2.1.57 1,472 12/6/2023
2.1.56 373 12/6/2023
2.1.55 221 12/6/2023
2.1.54 254 12/6/2023
2.1.53 897 12/5/2023
2.1.52 363 12/5/2023
2.1.51 327 12/5/2023
2.1.50 366 12/5/2023
2.1.49 114 12/5/2023
2.1.48 320 12/5/2023
2.1.47 262 12/5/2023
2.1.46 114 12/4/2023
2.1.45 117 12/4/2023
2.1.44 312 12/4/2023
2.1.43 128 12/4/2023
2.1.42 981 12/4/2023
2.1.41 98 12/4/2023
2.1.40 1,139 11/27/2023
2.1.39 490 11/26/2023
2.1.38 194 11/26/2023
2.1.37 598 11/23/2023
2.1.36 666 11/23/2023
2.1.35 615 11/23/2023
2.1.34 116 11/23/2023
2.1.33 378 11/23/2023
2.1.32 122 11/23/2023
2.1.31 1,056 11/20/2023
2.1.30 1,021 11/20/2023
2.1.29 760 11/19/2023
2.1.28 240 11/19/2023
2.1.27 438 11/19/2023
2.1.26 471 11/19/2023
2.1.25 473 11/19/2023
2.1.24 104 11/19/2023
2.1.23 199 11/18/2023
2.1.22 952 11/18/2023
2.1.21 356 11/18/2023
2.1.20 505 11/18/2023
2.1.19 114 11/18/2023
2.1.18 288 11/18/2023
2.1.17 112 11/18/2023
2.1.16 573 11/17/2023
2.1.15 497 11/17/2023
2.1.14 109 11/17/2023
2.1.13 398 11/17/2023
2.1.12 280 11/17/2023
2.1.11 466 11/17/2023
2.1.10 110 11/17/2023
2.1.9 493 11/17/2023
2.1.8 107 11/17/2023
2.1.7 127 11/17/2023
2.1.6 304 11/17/2023
2.1.5 355 11/16/2023
2.0.101 2,045 11/15/2023
2.0.100 105 11/15/2023
2.0.99 111 11/15/2023
2.0.4 109 11/16/2023
2.0.3 119 11/16/2023
2.0.2 108 11/16/2023
2.0.1 106 11/16/2023
1.0.98 593 11/14/2023
1.0.97 730 11/13/2023
1.0.96 101 11/13/2023
1.0.95 552 11/10/2023
1.0.94 103 11/10/2023
1.0.93 899 11/9/2023
1.0.92 110 11/9/2023
1.0.91 987 11/7/2023
1.0.90 102 11/7/2023
1.0.89 487 11/6/2023
1.0.88 110 11/6/2023
1.0.87 578 11/3/2023
1.0.86 116 11/3/2023
1.0.85 857 11/2/2023
1.0.84 107 11/2/2023
1.0.83 583 11/1/2023
1.0.82 1,412 10/26/2023
1.0.81 1,268 10/19/2023
1.0.80 122 10/19/2023
1.0.79 746 10/18/2023
1.0.78 141 10/18/2023
1.0.77 705 10/17/2023
1.0.76 124 10/17/2023
1.0.75 619 10/16/2023
1.0.74 133 10/16/2023
1.0.73 674 10/13/2023
1.0.72 318 10/12/2023
1.0.71 1,705 9/20/2023
1.0.70 643 9/19/2023
1.0.69 656 9/18/2023
1.0.68 122 9/18/2023
1.0.67 870 9/14/2023
1.0.66 1,475 8/31/2023
1.0.65 130 8/31/2023
1.0.64 769 8/30/2023
1.0.63 138 8/30/2023
1.0.62 140 8/30/2023
1.0.61 810 8/28/2023
1.0.60 663 8/25/2023
1.0.59 130 8/25/2023
1.0.58 462 8/24/2023
1.0.57 1,406 8/21/2023
1.0.56 765 8/18/2023
1.0.55 724 8/17/2023
1.0.54 133 8/17/2023
1.0.53 1,877 8/10/2023
1.0.52 544 8/9/2023
1.0.51 646 8/8/2023
1.0.50 617 8/7/2023
1.0.49 157 8/7/2023
1.0.48 2,419 7/13/2023
1.0.47 851 7/11/2023
1.0.46 701 7/10/2023
1.0.45 663 7/7/2023
1.0.44 152 7/7/2023
1.0.43 2,072 6/30/2023
1.0.42 1,025 6/29/2023
1.0.41 576 6/28/2023
1.0.40 1,461 6/26/2023
1.0.39 749 6/23/2023
1.0.38 1,058 6/21/2023
1.0.37 1,385 6/15/2023
1.0.36 451 6/14/2023
1.0.35 1,715 6/9/2023
1.0.34 790 6/8/2023
1.0.33 1,548 6/7/2023
1.0.32 144 6/7/2023
1.0.31 1,179 6/6/2023
1.0.30 1,115 6/5/2023
1.0.29 1,314 6/2/2023
1.0.28 134 6/2/2023
1.0.27 1,198 6/1/2023
1.0.26 577 5/31/2023
1.0.25 463 5/31/2023
1.0.24 144 5/31/2023
1.0.23 1,432 5/30/2023
1.0.22 1,499 5/26/2023
1.0.21 653 5/25/2023
1.0.20 130 5/25/2023
1.0.19 803 5/24/2023
1.0.18 140 5/24/2023
1.0.17 426 5/23/2023
1.0.13 1,437 5/22/2023
1.0.12 1,154 5/18/2023
1.0.11 570 5/17/2023
1.0.10 1,522 5/1/2023
1.0.9 1,005 4/25/2023
1.0.8 453 4/24/2023
1.0.7 979 4/21/2023
1.0.6 1,938 4/13/2023
1.0.5 568 4/12/2023
1.0.4 995 4/8/2023
1.0.3 170 4/8/2023
1.0.2 566 4/8/2023
1.0.1 173 4/8/2023