Soenneker.Utils.SingletonDictionary 3.0.731

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 3.0.731                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.731                
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="3.0.731" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.SingletonDictionary --version 3.0.731                
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.731"                
#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=3.0.731

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

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

NuGet packages (7)

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
3.0.759 1,013 1/3/2025
3.0.758 386 1/3/2025
3.0.757 871 1/3/2025
3.0.756 76 1/3/2025
3.0.755 1,250 1/3/2025
3.0.754 57 1/3/2025
3.0.753 954 1/3/2025
3.0.752 917 1/2/2025
3.0.751 51 1/2/2025
3.0.750 1,526 1/2/2025
3.0.749 61 1/2/2025
3.0.748 2,649 1/2/2025
3.0.747 46 1/2/2025
3.0.746 56 1/2/2025
3.0.745 4,387 1/1/2025
3.0.744 956 1/1/2025
3.0.743 237 1/1/2025
3.0.742 82 1/1/2025
3.0.741 1,416 1/1/2025
3.0.740 75 1/1/2025
3.0.739 81 1/1/2025
3.0.738 84 1/1/2025
3.0.737 285 12/31/2024
3.0.736 87 12/31/2024
3.0.735 101 12/31/2024
3.0.734 582 12/31/2024
3.0.733 101 12/31/2024
3.0.732 4,453 12/31/2024
3.0.731 92 12/31/2024
3.0.730 4,274 12/31/2024
3.0.729 72 12/31/2024
3.0.728 2,541 12/31/2024
3.0.727 300 12/31/2024
3.0.726 73 12/31/2024
3.0.725 1,285 12/31/2024
3.0.724 72 12/31/2024
3.0.723 8,786 12/28/2024
3.0.722 1,094 12/28/2024
3.0.721 1,190 12/27/2024
3.0.720 82 12/27/2024
3.0.719 2,652 12/27/2024
3.0.718 4,854 12/24/2024
3.0.717 1,218 12/24/2024
3.0.716 910 12/24/2024
3.0.715 776 12/24/2024
3.0.714 1,351 12/24/2024
3.0.713 67 12/24/2024
3.0.712 2,215 12/24/2024
3.0.711 614 12/24/2024
3.0.710 76 12/24/2024
3.0.709 431 12/24/2024
3.0.708 945 12/24/2024
3.0.707 227 12/24/2024
3.0.706 97 12/24/2024
3.0.705 1,018 12/24/2024
3.0.704 77 12/24/2024
3.0.703 1,752 12/23/2024
3.0.702 2,719 12/23/2024
3.0.701 83 12/23/2024
3.0.700 639 12/23/2024
3.0.699 75 12/23/2024
3.0.698 1,796 12/23/2024
3.0.697 81 12/23/2024
3.0.696 1,416 12/23/2024
3.0.695 84 12/23/2024
3.0.694 406 12/22/2024
3.0.693 1,367 12/22/2024
3.0.692 3,968 12/22/2024
3.0.691 80 12/22/2024
3.0.690 1,509 12/22/2024
3.0.689 133 12/22/2024
3.0.688 444 12/22/2024
3.0.687 78 12/22/2024
3.0.686 239 12/22/2024
3.0.685 77 12/22/2024
3.0.684 6,724 12/22/2024
3.0.683 77 12/22/2024
3.0.682 1,038 12/21/2024
3.0.681 235 12/21/2024
3.0.680 83 12/21/2024
3.0.679 459 12/21/2024
3.0.678 745 12/21/2024
3.0.677 76 12/21/2024
3.0.676 3,740 12/21/2024
3.0.675 355 12/21/2024
3.0.674 75 12/21/2024
3.0.673 2,504 12/21/2024
3.0.672 651 12/21/2024
3.0.671 79 12/21/2024
3.0.670 1,551 12/20/2024
3.0.669 84 12/20/2024
3.0.668 77 12/20/2024
3.0.667 3,645 12/20/2024
3.0.666 1,111 12/20/2024
3.0.665 191 12/20/2024
3.0.664 3,419 12/19/2024
3.0.663 402 12/19/2024
3.0.662 1,988 12/18/2024
3.0.661 83 12/18/2024
3.0.660 6,524 12/17/2024
3.0.659 181 12/17/2024
3.0.658 660 12/16/2024
3.0.657 86 12/16/2024
3.0.656 117 12/16/2024
3.0.655 75 12/16/2024
3.0.654 6,442 12/10/2024
3.0.653 971 12/10/2024
3.0.652 353 12/9/2024
3.0.651 83 12/9/2024
3.0.650 2,642 12/9/2024
3.0.649 1,341 12/9/2024
3.0.648 75 12/9/2024
3.0.647 3,602 12/9/2024
3.0.646 2,701 12/6/2024
3.0.645 404 12/6/2024
3.0.644 88 12/6/2024
3.0.643 660 12/6/2024
3.0.641 3,838 12/6/2024
3.0.640 2,420 12/6/2024
3.0.639 5,246 12/6/2024
3.0.637 340 12/6/2024
3.0.636 2,493 12/5/2024
3.0.635 3,539 12/5/2024
3.0.634 3,141 12/5/2024
3.0.633 81 12/5/2024
3.0.632 1,712 12/5/2024
3.0.631 1,005 12/5/2024
3.0.630 85 12/5/2024
3.0.629 356 12/5/2024
3.0.628 79 12/5/2024
3.0.627 123 12/5/2024
3.0.626 79 12/5/2024
3.0.625 3,334 12/4/2024
3.0.624 77 12/4/2024
3.0.623 88 12/4/2024
3.0.622 85 12/4/2024
3.0.621 1,691 12/4/2024
3.0.620 274 12/4/2024
3.0.619 385 12/4/2024
3.0.618 3,324 12/3/2024
3.0.617 87 12/3/2024
3.0.616 1,099 12/3/2024
3.0.615 418 12/3/2024
3.0.614 91 12/3/2024
3.0.613 82 12/3/2024
3.0.612 3,992 12/3/2024
3.0.611 84 12/3/2024
3.0.610 3,269 12/3/2024
3.0.609 74 12/3/2024
3.0.608 3,032 12/2/2024
3.0.607 2,621 12/2/2024
3.0.606 1,598 12/2/2024
3.0.605 248 12/2/2024
3.0.604 86 12/2/2024
3.0.603 375 12/2/2024
3.0.602 3,417 12/1/2024
3.0.601 86 12/1/2024
3.0.600 1,840 12/1/2024
3.0.599 171 12/1/2024
3.0.598 3,426 12/1/2024
3.0.597 91 12/1/2024
3.0.596 3,539 11/29/2024
3.0.595 1,027 11/29/2024
3.0.594 4,550 11/21/2024
3.0.593 269 11/21/2024
3.0.592 4,467 11/20/2024
3.0.591 311 11/20/2024
3.0.590 86 11/20/2024
3.0.589 91 11/20/2024
3.0.588 395 11/20/2024
3.0.587 133 11/20/2024
3.0.586 79 11/20/2024
3.0.585 2,006 11/20/2024
3.0.584 2,727 11/19/2024
3.0.583 80 11/19/2024
3.0.582 616 11/19/2024
3.0.581 78 11/19/2024
3.0.580 2,653 11/19/2024
3.0.579 75 11/19/2024
3.0.578 1,288 11/19/2024
3.0.577 82 11/19/2024
3.0.576 8,470 11/14/2024
3.0.575 116 11/14/2024
3.0.574 488 11/14/2024
3.0.573 2,343 11/14/2024
3.0.572 695 11/14/2024
3.0.571 89 11/14/2024
3.0.570 86 11/14/2024
3.0.569 4,111 11/14/2024
3.0.568 94 11/14/2024
3.0.567 90 11/14/2024
3.0.566 3,461 11/14/2024
3.0.565 90 11/14/2024
3.0.564 86 11/14/2024
3.0.563 90 11/14/2024
2.1.562 7,742 11/13/2024
2.1.561 1,322 11/13/2024
2.1.560 3,026 11/13/2024
2.1.559 91 11/13/2024
2.1.558 1,311 11/12/2024
2.1.557 381 11/12/2024
2.1.556 8,210 11/9/2024
2.1.555 343 11/9/2024
2.1.554 86 11/9/2024
2.1.553 1,708 11/9/2024
2.1.552 86 11/9/2024
2.1.551 929 11/8/2024
2.1.550 89 11/8/2024
2.1.549 90 11/8/2024
2.1.548 88 11/8/2024
2.1.547 402 11/8/2024
2.1.546 1,862 11/8/2024
2.1.545 85 11/8/2024
2.1.544 5,430 11/8/2024
2.1.543 83 11/8/2024
2.1.542 11,534 11/1/2024
2.1.541 436 11/1/2024
2.1.540 6,738 10/29/2024
2.1.539 711 10/29/2024
2.1.538 2,810 10/29/2024
2.1.537 607 10/29/2024
2.1.536 5,524 10/28/2024
2.1.535 1,822 10/28/2024
2.1.534 3,986 10/26/2024
2.1.533 685 10/26/2024
2.1.532 7,370 10/22/2024
2.1.531 234 10/22/2024
2.1.530 531 10/22/2024
2.1.529 858 10/22/2024
2.1.528 71 10/22/2024
2.1.527 463 10/22/2024
2.1.526 6,464 10/18/2024
2.1.525 1,067 10/17/2024
2.1.524 4,122 10/15/2024
2.1.523 1,577 10/15/2024
2.1.522 85 10/14/2024
2.1.521 5,096 10/12/2024
2.1.520 631 10/11/2024
2.1.519 85 10/11/2024
2.1.518 455 10/11/2024
2.1.517 2,897 10/11/2024
2.1.516 6,314 10/9/2024
2.1.515 365 10/9/2024
2.1.514 81 10/9/2024
2.1.513 1,946 10/8/2024
2.1.512 123 10/8/2024
2.1.511 2,199 10/8/2024
2.1.510 128 10/8/2024
2.1.509 78 10/8/2024
2.1.508 3,908 10/8/2024
2.1.507 6,121 10/3/2024
2.1.506 89 10/3/2024
2.1.505 1,084 10/3/2024
2.1.504 1,892 10/3/2024
2.1.503 1,385 10/3/2024
2.1.502 5,696 10/2/2024
2.1.501 87 10/2/2024
2.1.500 1,794 10/2/2024
2.1.499 982 10/2/2024
2.1.498 4,150 10/1/2024
2.1.497 674 10/1/2024
2.1.496 89 10/1/2024
2.1.495 2,600 10/1/2024
2.1.494 88 10/1/2024
2.1.493 129 10/1/2024
2.1.492 5,311 9/29/2024
2.1.491 1,357 9/29/2024
2.1.490 89 9/29/2024
2.1.489 1,198 9/29/2024
2.1.488 84 9/29/2024
2.1.487 2,497 9/29/2024
2.1.486 4,970 9/27/2024
2.1.485 759 9/27/2024
2.1.484 3,102 9/27/2024
2.1.483 94 9/27/2024
2.1.482 426 9/27/2024
2.1.481 2,141 9/27/2024
2.1.480 3,134 9/26/2024
2.1.479 3,450 9/26/2024
2.1.478 2,332 9/26/2024
2.1.477 2,138 9/26/2024
2.1.476 3,766 9/26/2024
2.1.475 89 9/26/2024
2.1.474 5,518 9/23/2024
2.1.473 1,279 9/23/2024
2.1.472 934 9/23/2024
2.1.471 1,116 9/23/2024
2.1.470 84 9/23/2024
2.1.469 1,526 9/23/2024
2.1.468 82 9/23/2024
2.1.467 4,624 9/23/2024
2.1.466 90 9/23/2024
2.1.465 699 9/23/2024
2.1.464 96 9/23/2024
2.1.463 85 9/23/2024
2.1.462 858 9/23/2024
2.1.461 9,037 9/18/2024
2.1.460 234 9/17/2024
2.1.459 1,184 9/17/2024
2.1.458 1,689 9/17/2024
2.1.457 91 9/17/2024
2.1.456 1,779 9/17/2024
2.1.455 442 9/17/2024
2.1.454 3,233 9/17/2024
2.1.453 518 9/17/2024
2.1.452 180 9/17/2024
2.1.451 2,623 9/17/2024
2.1.450 7,421 9/16/2024
2.1.449 699 9/16/2024
2.1.448 4,936 9/12/2024
2.1.447 2,898 9/12/2024
2.1.446 1,290 9/11/2024
2.1.445 1,513 9/11/2024
2.1.443 3,699 9/11/2024
2.1.442 975 9/11/2024
2.1.441 942 9/11/2024
2.1.440 2,272 9/11/2024
2.1.439 8,048 9/10/2024
2.1.438 111 9/10/2024
2.1.437 1,133 9/10/2024
2.1.436 105 9/10/2024
2.1.434 2,893 9/10/2024
2.1.433 586 9/9/2024
2.1.432 1,982 9/9/2024
2.1.430 1,524 9/9/2024
2.1.428 129 9/9/2024
2.1.427 448 9/9/2024
2.1.426 13,209 9/7/2024
2.1.425 121 9/7/2024
2.1.424 4,962 9/6/2024
2.1.423 352 9/6/2024
2.1.422 2,186 9/6/2024
2.1.421 105 9/5/2024
2.1.420 114 9/5/2024
2.1.419 2,364 9/5/2024
2.1.418 1,125 9/5/2024
2.1.417 107 9/5/2024
2.1.416 1,128 9/5/2024
2.1.415 417 9/5/2024
2.1.414 105 9/5/2024
2.1.413 5,005 9/5/2024
2.1.412 185 9/5/2024
2.1.411 111 9/5/2024
2.1.410 2,236 9/4/2024
2.1.409 7,949 9/3/2024
2.1.408 98 9/3/2024
2.1.407 92 9/3/2024
2.1.406 3,979 9/3/2024
2.1.405 142 9/3/2024
2.1.404 2,457 9/3/2024
2.1.403 5,245 8/29/2024
2.1.402 2,518 8/29/2024
2.1.401 2,855 8/26/2024
2.1.400 95 8/26/2024
2.1.399 4,905 8/21/2024
2.1.398 600 8/21/2024
2.1.397 122 8/21/2024
2.1.396 2,536 8/21/2024
2.1.395 134 8/20/2024
2.1.394 123 8/20/2024
2.1.393 457 8/20/2024
2.1.392 2,941 8/20/2024
2.1.391 406 8/20/2024
2.1.390 108 8/20/2024
2.1.389 2,628 8/20/2024
2.1.388 110 8/20/2024
2.1.387 1,188 8/20/2024
2.1.386 2,869 8/19/2024
2.1.385 4,735 8/15/2024
2.1.384 2,091 8/15/2024
2.1.383 4,773 8/14/2024
2.1.382 146 8/13/2024
2.1.381 5,627 8/7/2024
2.1.380 264 8/6/2024
2.1.379 2,667 8/6/2024
2.1.378 4,897 8/1/2024
2.1.377 317 8/1/2024
2.1.376 89 8/1/2024
2.1.374 1,121 8/1/2024
2.1.373 5,765 7/25/2024
2.1.372 84 7/25/2024
2.1.371 711 7/25/2024
2.1.370 296 7/25/2024
2.1.369 347 7/25/2024
2.1.368 172 7/25/2024
2.1.367 372 7/24/2024
2.1.366 129 7/24/2024
2.1.365 196 7/24/2024
2.1.364 299 7/24/2024
2.1.363 7,925 7/20/2024
2.1.362 1,436 7/20/2024
2.1.361 4,951 7/14/2024
2.1.360 1,517 7/14/2024
2.1.359 93 7/14/2024
2.1.358 1,486 7/14/2024
2.1.357 4,269 7/10/2024
2.1.355 775 7/10/2024
2.1.354 1,167 7/10/2024
2.1.353 110 7/10/2024
2.1.352 1,890 7/10/2024
2.1.351 111 7/10/2024
2.1.350 91 7/10/2024
2.1.349 156 7/10/2024
2.1.348 94 7/10/2024
2.1.347 2,024 7/10/2024
2.1.346 110 7/10/2024
2.1.345 800 7/10/2024
2.1.344 98 7/10/2024
2.1.343 196 7/9/2024
2.1.342 88 7/9/2024
2.1.339 1,944 7/9/2024
2.1.338 475 7/9/2024
2.1.337 3,983 7/9/2024
2.1.336 1,057 7/9/2024
2.1.335 101 7/9/2024
2.1.334 2,553 7/9/2024
2.1.333 105 7/9/2024
2.1.332 4,457 7/9/2024
2.1.331 94 7/9/2024
2.1.330 2,486 7/9/2024
2.1.329 82 7/9/2024
2.1.328 1,048 7/9/2024
2.1.327 697 7/8/2024
2.1.326 947 7/8/2024
2.1.325 111 7/8/2024
2.1.324 107 7/8/2024
2.1.323 4,806 7/8/2024
2.1.322 1,596 7/8/2024
2.1.321 113 7/8/2024
2.1.320 2,258 7/7/2024
2.1.319 106 7/7/2024
2.1.318 116 7/7/2024
2.1.317 97 7/7/2024
2.1.316 1,117 7/7/2024
2.1.315 2,134 7/7/2024
2.1.314 1,828 7/7/2024
2.1.313 200 7/7/2024
2.1.312 3,336 7/5/2024
2.1.311 3,837 7/3/2024
2.1.310 3,006 7/3/2024
2.1.309 367 7/3/2024
2.1.308 3,858 7/2/2024
2.1.307 1,821 6/30/2024
2.1.306 2,218 6/28/2024
2.1.305 5,352 6/22/2024
2.1.304 4,826 6/15/2024
2.1.303 4,049 6/14/2024
2.1.302 5,827 6/1/2024
2.1.301 1,553 6/1/2024
2.1.300 569 6/1/2024
2.1.299 5,775 5/31/2024
2.1.298 3,660 5/29/2024
2.1.297 2,989 5/28/2024
2.1.296 2,408 5/27/2024
2.1.295 4,773 5/26/2024
2.1.294 1,992 5/26/2024
2.1.293 467 5/26/2024
2.1.292 2,479 5/25/2024
2.1.291 1,348 5/25/2024
2.1.290 116 5/25/2024
2.1.289 109 5/25/2024
2.1.288 660 5/25/2024
2.1.287 110 5/25/2024
2.1.286 390 5/25/2024
2.1.285 120 5/25/2024
2.1.284 110 5/25/2024
2.1.283 7,337 5/23/2024
2.1.282 513 5/23/2024
2.1.281 250 5/22/2024
2.1.280 3,590 5/22/2024
2.1.279 104 5/22/2024
2.1.278 117 5/22/2024
2.1.277 119 5/22/2024
2.1.276 2,091 5/22/2024
2.1.275 3,357 5/18/2024
2.1.274 1,872 5/18/2024
2.1.273 1,780 5/17/2024
2.1.272 99 5/17/2024
2.1.271 2,694 5/16/2024
2.1.270 415 5/15/2024
2.1.269 2,701 5/15/2024
2.1.268 4,400 5/12/2024
2.1.267 2,698 5/3/2024
2.1.266 1,117 4/30/2024
2.1.265 1,722 4/29/2024
2.1.264 1,866 4/29/2024
2.1.263 2,607 4/28/2024
2.1.262 1,443 4/28/2024
2.1.261 1,071 4/28/2024
2.1.260 1,727 4/28/2024
2.1.259 879 4/28/2024
2.1.258 101 4/28/2024
2.1.257 4,107 4/27/2024
2.1.256 114 4/27/2024
2.1.255 4,338 4/19/2024
2.1.254 4,014 4/18/2024
2.1.253 3,384 4/12/2024
2.1.252 1,120 4/12/2024
2.1.251 706 4/12/2024
2.1.250 837 4/12/2024
2.1.249 180 4/12/2024
2.1.248 97 4/12/2024
2.1.247 969 4/12/2024
2.1.246 288 4/12/2024
2.1.245 1,621 4/11/2024
2.1.244 3,656 4/10/2024
2.1.243 1,097 4/9/2024
2.1.242 3,112 4/2/2024
2.1.241 875 4/1/2024
2.1.240 2,047 3/29/2024
2.1.239 1,791 3/25/2024
2.1.238 277 3/25/2024
2.1.237 3,267 3/20/2024
2.1.236 2,114 3/19/2024
2.1.235 503 3/19/2024
2.1.234 2,290 3/18/2024
2.1.233 1,371 3/18/2024
2.1.232 1,358 3/15/2024
2.1.231 2,310 3/13/2024
2.1.230 1,069 3/13/2024
2.1.229 636 3/13/2024
2.1.228 737 3/13/2024
2.1.227 121 3/13/2024
2.1.226 524 3/13/2024
2.1.225 126 3/13/2024
2.1.224 134 3/13/2024
2.1.223 1,626 3/12/2024
2.1.222 2,788 3/11/2024
2.1.221 2,418 3/11/2024
2.1.220 1,587 3/10/2024
2.1.219 1,847 3/8/2024
2.1.218 1,031 3/8/2024
2.1.217 1,524 3/8/2024
2.1.216 2,051 3/6/2024
2.1.215 1,968 3/4/2024
2.1.214 1,383 3/4/2024
2.1.213 2,524 3/2/2024
2.1.212 1,186 3/2/2024
2.1.211 388 3/2/2024
2.1.210 334 3/2/2024
2.1.209 455 3/2/2024
2.1.208 3,376 2/29/2024
2.1.207 621 2/29/2024
2.1.206 322 2/29/2024
2.1.205 3,258 2/26/2024
2.1.204 1,464 2/25/2024
2.1.203 2,558 2/23/2024
2.1.202 1,863 2/22/2024
2.1.201 923 2/22/2024
2.1.200 402 2/21/2024
2.1.199 1,166 2/21/2024
2.1.198 273 2/21/2024
2.1.197 740 2/21/2024
2.1.196 114 2/21/2024
2.1.195 1,206 2/21/2024
2.1.194 389 2/21/2024
2.1.193 120 2/21/2024
2.1.192 119 2/21/2024
2.1.191 574 2/21/2024
2.1.190 99 2/21/2024
2.1.189 2,597 2/20/2024
2.1.188 687 2/20/2024
2.1.187 619 2/20/2024
2.1.186 727 2/20/2024
2.1.185 2,067 2/19/2024
2.1.184 1,841 2/17/2024
2.1.183 866 2/16/2024
2.1.182 836 2/16/2024
2.1.181 1,307 2/16/2024
2.1.180 108 2/16/2024
2.1.179 613 2/16/2024
2.1.178 117 2/16/2024
2.1.177 118 2/16/2024
2.1.176 528 2/16/2024
2.1.175 104 2/16/2024
2.1.174 3,253 2/13/2024
2.1.173 1,345 2/13/2024
2.1.172 1,062 2/13/2024
2.1.171 439 2/13/2024
2.1.170 608 2/13/2024
2.1.169 1,907 2/12/2024
2.1.168 496 2/11/2024
2.1.167 1,498 2/11/2024
2.1.166 835 2/11/2024
2.1.165 2,715 2/10/2024
2.1.164 529 2/9/2024
2.1.163 127 2/9/2024
2.1.162 1,529 2/9/2024
2.1.161 1,640 2/9/2024
2.1.160 371 2/8/2024
2.1.159 1,199 2/8/2024
2.1.158 821 2/8/2024
2.1.157 1,417 2/8/2024
2.1.156 114 2/8/2024
2.1.155 1,828 2/7/2024
2.1.154 427 2/7/2024
2.1.153 583 2/7/2024
2.1.152 1,243 2/7/2024
2.1.151 366 2/6/2024
2.1.150 124 2/6/2024
2.1.149 117 2/6/2024
2.1.148 2,719 2/5/2024
2.1.147 1,505 2/4/2024
2.1.146 2,056 2/2/2024
2.1.145 1,888 1/31/2024
2.1.144 2,108 1/29/2024
2.1.143 1,333 1/29/2024
2.1.142 334 1/29/2024
2.1.141 1,456 1/28/2024
2.1.140 439 1/28/2024
2.1.139 293 1/28/2024
2.1.138 527 1/28/2024
2.1.137 1,894 1/28/2024
2.1.136 910 1/28/2024
2.1.135 275 1/27/2024
2.1.134 899 1/27/2024
2.1.133 1,141 1/27/2024
2.1.132 1,158 1/27/2024
2.1.131 143 1/27/2024
2.1.130 683 1/27/2024
2.1.129 1,036 1/26/2024
2.1.128 208 1/26/2024
2.1.127 856 1/26/2024
2.1.126 1,105 1/26/2024
2.1.125 1,609 1/26/2024
2.1.124 865 1/25/2024
2.1.123 1,080 1/25/2024
2.1.122 441 1/25/2024
2.1.121 896 1/25/2024
2.1.120 505 1/25/2024
2.1.119 2,548 1/19/2024
2.1.118 2,188 1/15/2024
2.1.117 487 1/15/2024
2.1.116 1,195 1/15/2024
2.1.115 120 1/15/2024
2.1.114 550 1/15/2024
2.1.113 1,358 1/15/2024
2.1.112 2,519 1/14/2024
2.1.111 1,581 1/13/2024
2.1.110 1,812 1/12/2024
2.1.109 2,019 1/11/2024
2.1.108 2,602 1/7/2024
2.1.107 2,073 1/5/2024
2.1.106 472 1/5/2024
2.1.105 129 1/5/2024
2.1.104 134 1/5/2024
2.1.103 1,463 1/5/2024
2.1.102 134 1/5/2024
2.1.101 2,731 1/1/2024
2.1.100 2,191 12/28/2023
2.1.99 727 12/28/2023
2.1.98 485 12/28/2023
2.1.97 126 12/28/2023
2.1.96 123 12/28/2023
2.1.95 701 12/27/2023
2.1.94 133 12/27/2023
2.1.93 457 12/27/2023
2.1.92 127 12/27/2023
2.1.91 129 12/27/2023
2.1.90 2,188 12/25/2023
2.1.89 342 12/25/2023
2.1.88 763 12/25/2023
2.1.87 132 12/25/2023
2.1.86 610 12/25/2023
2.1.85 123 12/25/2023
2.1.84 556 12/25/2023
2.1.83 127 12/25/2023
2.1.82 1,624 12/24/2023
2.1.81 1,055 12/23/2023
2.1.80 851 12/23/2023
2.1.79 297 12/23/2023
2.1.78 533 12/23/2023
2.1.77 121 12/23/2023
2.1.76 113 12/23/2023
2.1.75 1,071 12/23/2023
2.1.74 114 12/23/2023
2.1.73 1,380 12/19/2023
2.1.72 210 12/19/2023
2.1.71 3,049 12/11/2023
2.1.70 711 12/10/2023
2.1.69 110 12/10/2023
2.1.68 478 12/10/2023
2.1.67 1,393 12/10/2023
2.1.66 360 12/9/2023
2.1.65 352 12/9/2023
2.1.64 285 12/9/2023
2.1.63 124 12/9/2023
2.1.62 255 12/9/2023
2.1.61 190 12/9/2023
2.1.60 123 12/9/2023
2.1.59 1,060 12/9/2023
2.1.58 119 12/9/2023
2.1.57 1,488 12/6/2023
2.1.56 383 12/6/2023
2.1.55 235 12/6/2023
2.1.54 265 12/6/2023
2.1.53 909 12/5/2023
2.1.52 374 12/5/2023
2.1.51 339 12/5/2023
2.1.50 378 12/5/2023
2.1.49 126 12/5/2023
2.1.48 334 12/5/2023
2.1.47 271 12/5/2023
2.1.46 126 12/4/2023
2.1.45 127 12/4/2023
2.1.44 323 12/4/2023
2.1.43 139 12/4/2023
2.1.42 992 12/4/2023
2.1.41 109 12/4/2023
2.1.40 1,158 11/27/2023
2.1.39 508 11/26/2023
2.1.38 211 11/26/2023
2.1.37 619 11/23/2023
2.1.36 676 11/23/2023
2.1.35 627 11/23/2023
2.1.34 127 11/23/2023
2.1.33 388 11/23/2023
2.1.32 133 11/23/2023
2.1.31 1,065 11/20/2023
2.1.30 1,032 11/20/2023
2.1.29 785 11/19/2023
2.1.28 252 11/19/2023
2.1.27 450 11/19/2023
2.1.26 486 11/19/2023
2.1.25 485 11/19/2023
2.1.24 114 11/19/2023
2.1.23 214 11/18/2023
2.1.22 968 11/18/2023
2.1.21 370 11/18/2023
2.1.20 527 11/18/2023
2.1.19 126 11/18/2023
2.1.18 300 11/18/2023
2.1.17 121 11/18/2023
2.1.16 583 11/17/2023
2.1.15 507 11/17/2023
2.1.14 119 11/17/2023
2.1.13 415 11/17/2023
2.1.12 290 11/17/2023
2.1.11 484 11/17/2023
2.1.10 120 11/17/2023
2.1.9 504 11/17/2023
2.1.8 120 11/17/2023
2.1.7 137 11/17/2023
2.1.6 314 11/17/2023
2.1.5 364 11/16/2023
2.0.101 2,057 11/15/2023
2.0.100 117 11/15/2023
2.0.99 126 11/15/2023
2.0.4 125 11/16/2023
2.0.3 129 11/16/2023
2.0.2 122 11/16/2023
2.0.1 116 11/16/2023
1.0.98 605 11/14/2023
1.0.97 744 11/13/2023
1.0.96 113 11/13/2023
1.0.95 564 11/10/2023
1.0.94 114 11/10/2023
1.0.93 914 11/9/2023
1.0.92 122 11/9/2023
1.0.91 1,019 11/7/2023
1.0.90 112 11/7/2023
1.0.89 499 11/6/2023
1.0.88 122 11/6/2023
1.0.87 590 11/3/2023
1.0.86 126 11/3/2023
1.0.85 877 11/2/2023
1.0.84 119 11/2/2023
1.0.83 595 11/1/2023
1.0.82 1,436 10/26/2023
1.0.81 1,285 10/19/2023
1.0.80 135 10/19/2023
1.0.79 771 10/18/2023
1.0.78 153 10/18/2023
1.0.77 722 10/17/2023
1.0.76 140 10/17/2023
1.0.75 630 10/16/2023
1.0.74 145 10/16/2023
1.0.73 692 10/13/2023
1.0.72 330 10/12/2023
1.0.71 1,717 9/20/2023
1.0.70 665 9/19/2023
1.0.69 668 9/18/2023
1.0.68 133 9/18/2023
1.0.67 880 9/14/2023
1.0.66 1,494 8/31/2023
1.0.65 141 8/31/2023
1.0.64 782 8/30/2023
1.0.63 149 8/30/2023
1.0.62 150 8/30/2023
1.0.61 829 8/28/2023
1.0.60 675 8/25/2023
1.0.59 142 8/25/2023
1.0.58 474 8/24/2023
1.0.57 1,431 8/21/2023
1.0.56 785 8/18/2023
1.0.55 736 8/17/2023
1.0.54 145 8/17/2023
1.0.53 1,887 8/10/2023
1.0.52 554 8/9/2023
1.0.51 661 8/8/2023
1.0.50 633 8/7/2023
1.0.49 168 8/7/2023
1.0.48 2,428 7/13/2023
1.0.47 866 7/11/2023
1.0.46 711 7/10/2023
1.0.45 675 7/7/2023
1.0.44 161 7/7/2023
1.0.43 2,089 6/30/2023
1.0.42 1,044 6/29/2023
1.0.41 586 6/28/2023
1.0.40 1,492 6/26/2023
1.0.39 761 6/23/2023
1.0.38 1,067 6/21/2023
1.0.37 1,395 6/15/2023
1.0.36 463 6/14/2023
1.0.35 1,731 6/9/2023
1.0.34 802 6/8/2023
1.0.33 1,572 6/7/2023
1.0.32 160 6/7/2023
1.0.31 1,190 6/6/2023
1.0.30 1,125 6/5/2023
1.0.29 1,326 6/2/2023
1.0.28 146 6/2/2023
1.0.27 1,214 6/1/2023
1.0.26 589 5/31/2023
1.0.25 473 5/31/2023
1.0.24 155 5/31/2023
1.0.23 1,444 5/30/2023
1.0.22 1,509 5/26/2023
1.0.21 663 5/25/2023
1.0.20 142 5/25/2023
1.0.19 820 5/24/2023
1.0.18 150 5/24/2023
1.0.17 437 5/23/2023
1.0.13 1,456 5/22/2023
1.0.12 1,177 5/18/2023
1.0.11 581 5/17/2023
1.0.10 1,539 5/1/2023
1.0.9 1,014 4/25/2023
1.0.8 465 4/24/2023
1.0.7 988 4/21/2023
1.0.6 1,948 4/13/2023
1.0.5 583 4/12/2023
1.0.4 1,006 4/8/2023
1.0.3 180 4/8/2023
1.0.2 578 4/8/2023
1.0.1 183 4/8/2023