Soenneker.Utils.SingletonDictionary 3.0.1019

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.1019
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1019
                    
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.1019" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="3.0.1019" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.SingletonDictionary" />
                    
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.SingletonDictionary --version 3.0.1019
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1019"
                    
#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.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1019
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1019
                    
Install Soenneker.Utils.SingletonDictionary 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.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 (9)

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.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1062 0 4/8/2025
3.0.1061 0 4/8/2025
3.0.1060 0 4/8/2025
3.0.1059 13 4/8/2025
3.0.1058 8 4/8/2025
3.0.1057 75 4/8/2025
3.0.1056 85 4/8/2025
3.0.1055 565 4/8/2025
3.0.1054 198 4/8/2025
3.0.1053 1,372 4/7/2025
3.0.1052 377 4/7/2025
3.0.1051 43 4/7/2025
3.0.1050 325 4/7/2025
3.0.1049 46 4/7/2025
3.0.1048 3,587 4/7/2025
3.0.1047 47 4/7/2025
3.0.1046 4,383 4/7/2025
3.0.1045 46 4/7/2025
3.0.1044 846 4/7/2025
3.0.1043 42 4/7/2025
3.0.1042 953 4/7/2025
3.0.1041 511 4/6/2025
3.0.1040 132 4/6/2025
3.0.1039 46 4/6/2025
3.0.1038 501 4/6/2025
3.0.1037 43 4/6/2025
3.0.1036 200 4/6/2025
3.0.1035 756 4/6/2025
3.0.1034 42 4/6/2025
3.0.1033 1,224 4/6/2025
3.0.1032 40 4/6/2025
3.0.1031 78 4/6/2025
3.0.1030 46 4/6/2025
3.0.1029 962 4/5/2025
3.0.1028 103 4/5/2025
3.0.1027 739 4/5/2025
3.0.1026 972 4/5/2025
3.0.1025 657 4/5/2025
3.0.1024 420 4/5/2025
3.0.1023 329 4/5/2025
3.0.1022 68 4/5/2025
3.0.1021 901 4/4/2025
3.0.1020 4,942 4/4/2025
3.0.1019 15,850 4/4/2025
3.0.1018 4,768 4/1/2025
3.0.1017 2,422 4/1/2025
3.0.1016 139 4/1/2025
3.0.1015 5,010 4/1/2025
3.0.1014 2,296 3/31/2025
3.0.1013 352 3/31/2025
3.0.1012 3,859 3/31/2025
3.0.1011 6,617 3/29/2025
3.0.1010 1,028 3/29/2025
3.0.1009 1,375 3/29/2025
3.0.1008 79 3/29/2025
3.0.1007 4,283 3/27/2025
3.0.1006 3,805 3/25/2025
3.0.1005 580 3/25/2025
3.0.1004 3,060 3/25/2025
3.0.1003 5,948 3/21/2025
3.0.1002 2,517 3/21/2025
3.0.1001 6,146 3/18/2025
3.0.1000 3,354 3/18/2025
3.0.999 6,293 3/15/2025
3.0.998 1,741 3/15/2025
3.0.997 56 3/15/2025
3.0.996 6,001 3/12/2025
3.0.995 2,130 3/12/2025
3.0.994 154 3/12/2025
3.0.993 374 3/12/2025
3.0.992 139 3/12/2025
3.0.991 2,661 3/11/2025
3.0.990 151 3/11/2025
3.0.989 1,247 3/11/2025
3.0.988 152 3/11/2025
3.0.987 2,535 3/11/2025
3.0.986 157 3/11/2025
3.0.985 2,620 3/11/2025
3.0.984 146 3/11/2025
3.0.983 1,595 3/11/2025
3.0.982 147 3/11/2025
3.0.981 8,809 3/7/2025
3.0.980 2,574 3/7/2025
3.0.979 6,079 3/2/2025
3.0.978 1,017 3/2/2025
3.0.977 628 3/2/2025
3.0.976 99 3/2/2025
3.0.975 4,277 3/2/2025
3.0.974 88 3/2/2025
3.0.973 3,143 3/1/2025
3.0.972 85 3/1/2025
3.0.971 4,244 3/1/2025
3.0.970 106 3/1/2025
3.0.969 87 3/1/2025
3.0.968 387 3/1/2025
3.0.967 85 3/1/2025
3.0.966 5,762 3/1/2025
3.0.965 4,739 2/26/2025
3.0.964 802 2/26/2025
3.0.963 2,296 2/25/2025
3.0.962 81 2/25/2025
3.0.961 826 2/25/2025
3.0.960 83 2/25/2025
3.0.959 110 2/25/2025
3.0.958 1,806 2/25/2025
3.0.957 4,799 2/24/2025
3.0.956 4,440 2/23/2025
3.0.955 1,061 2/22/2025
3.0.954 85 2/22/2025
3.0.953 7,506 2/22/2025
3.0.952 2,162 2/22/2025
3.0.951 1,023 2/22/2025
3.0.950 741 2/22/2025
3.0.949 123 2/22/2025
3.0.948 100 2/22/2025
3.0.947 85 2/22/2025
3.0.946 4,587 2/21/2025
3.0.945 88 2/21/2025
3.0.944 5,449 2/21/2025
3.0.943 4,507 2/19/2025
3.0.942 1,591 2/19/2025
3.0.941 704 2/19/2025
3.0.940 91 2/19/2025
3.0.939 384 2/18/2025
3.0.938 89 2/18/2025
3.0.937 5,413 2/18/2025
3.0.936 88 2/18/2025
3.0.935 2,775 2/18/2025
3.0.934 6,361 2/16/2025
3.0.933 1,505 2/14/2025
3.0.932 789 2/14/2025
3.0.931 687 2/13/2025
3.0.930 2,355 2/13/2025
3.0.929 254 2/13/2025
3.0.928 3,638 2/13/2025
3.0.927 3,621 2/12/2025
3.0.926 1,438 2/12/2025
3.0.925 134 2/12/2025
3.0.924 90 2/12/2025
3.0.923 1,956 2/12/2025
3.0.922 322 2/12/2025
3.0.921 99 2/12/2025
3.0.920 171 2/12/2025
3.0.919 170 2/12/2025
3.0.918 93 2/12/2025
3.0.917 151 2/11/2025
3.0.916 3,353 2/11/2025
3.0.915 3,636 2/11/2025
3.0.914 2,153 2/11/2025
3.0.913 97 2/11/2025
3.0.912 378 2/11/2025
3.0.911 1,698 2/10/2025
3.0.910 98 2/10/2025
3.0.909 762 2/10/2025
3.0.908 96 2/10/2025
3.0.907 6,278 2/10/2025
3.0.906 97 2/10/2025
3.0.905 1,137 2/9/2025
3.0.904 5,567 2/9/2025
3.0.903 92 2/9/2025
3.0.902 7,070 2/8/2025
3.0.901 94 2/8/2025
3.0.900 1,653 2/7/2025
3.0.899 86 2/7/2025
3.0.898 1,554 2/7/2025
3.0.897 93 2/7/2025
3.0.896 622 2/7/2025
3.0.895 392 2/7/2025
3.0.894 98 2/7/2025
3.0.893 308 2/7/2025
3.0.892 91 2/7/2025
3.0.891 1,014 2/7/2025
3.0.890 89 2/7/2025
3.0.889 97 2/7/2025
3.0.888 10,531 2/7/2025
3.0.887 6,131 2/5/2025
3.0.886 576 2/5/2025
3.0.885 870 2/5/2025
3.0.884 268 2/5/2025
3.0.883 963 2/5/2025
3.0.882 636 2/5/2025
3.0.881 2,887 2/5/2025
3.0.880 98 2/5/2025
3.0.879 10,701 1/28/2025
3.0.878 618 1/28/2025
3.0.877 1,715 1/28/2025
3.0.876 204 1/28/2025
3.0.875 3,621 1/28/2025
3.0.874 609 1/27/2025
3.0.873 79 1/27/2025
3.0.872 162 1/27/2025
3.0.871 248 1/27/2025
3.0.870 84 1/27/2025
3.0.869 4,669 1/27/2025
3.0.868 4,336 1/26/2025
3.0.867 902 1/26/2025
3.0.866 159 1/26/2025
3.0.865 983 1/26/2025
3.0.864 1,291 1/25/2025
3.0.863 90 1/25/2025
3.0.862 5,490 1/25/2025
3.0.861 933 1/25/2025
3.0.860 278 1/25/2025
3.0.859 83 1/25/2025
3.0.858 1,764 1/25/2025
3.0.857 1,232 1/25/2025
3.0.856 6,352 1/24/2025
3.0.855 1,448 1/24/2025
3.0.854 78 1/24/2025
3.0.853 1,889 1/24/2025
3.0.852 297 1/24/2025
3.0.851 192 1/24/2025
3.0.850 2,982 1/24/2025
3.0.849 84 1/24/2025
3.0.848 463 1/23/2025
3.0.847 82 1/23/2025
3.0.846 540 1/23/2025
3.0.845 81 1/23/2025
3.0.844 7,534 1/22/2025
3.0.843 948 1/21/2025
3.0.842 927 1/21/2025
3.0.841 542 1/21/2025
3.0.840 87 1/21/2025
3.0.839 569 1/21/2025
3.0.838 700 1/21/2025
3.0.837 5,204 1/21/2025
3.0.836 513 1/21/2025
3.0.835 969 1/21/2025
3.0.834 88 1/21/2025
3.0.833 768 1/21/2025
3.0.832 80 1/21/2025
3.0.831 2,059 1/21/2025
3.0.830 77 1/21/2025
3.0.829 366 1/20/2025
3.0.828 2,666 1/20/2025
3.0.827 213 1/20/2025
3.0.826 1,945 1/20/2025
3.0.825 87 1/20/2025
3.0.824 1,028 1/20/2025
3.0.823 88 1/20/2025
3.0.822 95 1/20/2025
3.0.821 81 1/20/2025
3.0.820 332 1/20/2025
3.0.819 86 1/20/2025
3.0.818 87 1/20/2025
3.0.817 5,360 1/19/2025
3.0.816 89 1/19/2025
3.0.815 4,956 1/19/2025
3.0.814 1,527 1/19/2025
3.0.813 102 1/19/2025
3.0.812 357 1/19/2025
3.0.811 76 1/19/2025
3.0.810 1,784 1/19/2025
3.0.809 83 1/19/2025
3.0.808 3,073 1/18/2025
3.0.807 85 1/18/2025
3.0.806 6,860 1/17/2025
3.0.805 96 1/17/2025
3.0.804 561 1/17/2025
3.0.803 880 1/17/2025
3.0.802 3,977 1/16/2025
3.0.801 1,375 1/16/2025
3.0.800 1,988 1/16/2025
3.0.799 520 1/16/2025
3.0.798 1,137 1/16/2025
3.0.797 970 1/16/2025
3.0.796 76 1/16/2025
3.0.795 4,353 1/15/2025
3.0.794 79 1/15/2025
3.0.793 2,679 1/15/2025
3.0.792 79 1/15/2025
3.0.791 123 1/15/2025
3.0.790 3,157 1/15/2025
3.0.789 71 1/15/2025
3.0.788 2,647 1/15/2025
3.0.787 56 1/15/2025
3.0.786 417 1/15/2025
3.0.785 56 1/15/2025
3.0.784 1,527 1/15/2025
3.0.783 55 1/15/2025
3.0.782 196 1/14/2025
3.0.781 65 1/14/2025
3.0.780 74 1/14/2025
3.0.779 2,924 1/14/2025
3.0.778 498 1/14/2025
3.0.777 66 1/14/2025
3.0.776 1,102 1/14/2025
3.0.775 72 1/14/2025
3.0.774 4,942 1/13/2025
3.0.773 1,514 1/13/2025
3.0.772 1,277 1/13/2025
3.0.771 71 1/13/2025
3.0.770 4,812 1/11/2025
3.0.769 1,926 1/11/2025
3.0.768 97 1/11/2025
3.0.767 2,040 1/11/2025
3.0.766 86 1/11/2025
3.0.765 1,648 1/10/2025
3.0.764 1,786 1/10/2025
3.0.763 84 1/10/2025
3.0.762 740 1/10/2025
3.0.761 88 1/10/2025
3.0.760 83 1/10/2025
3.0.759 6,221 1/3/2025
3.0.758 447 1/3/2025
3.0.757 966 1/3/2025
3.0.756 115 1/3/2025
3.0.755 1,397 1/3/2025
3.0.754 96 1/3/2025
3.0.753 1,042 1/3/2025
3.0.752 1,002 1/2/2025
3.0.751 90 1/2/2025
3.0.750 1,686 1/2/2025
3.0.749 106 1/2/2025
3.0.748 2,808 1/2/2025
3.0.747 90 1/2/2025
3.0.746 96 1/2/2025
3.0.745 4,627 1/1/2025
3.0.744 980 1/1/2025
3.0.743 256 1/1/2025
3.0.742 103 1/1/2025
3.0.741 1,447 1/1/2025
3.0.740 98 1/1/2025
3.0.739 103 1/1/2025
3.0.738 106 1/1/2025
3.0.737 305 12/31/2024
3.0.736 101 12/31/2024
3.0.735 115 12/31/2024
3.0.734 599 12/31/2024
3.0.733 116 12/31/2024
3.0.732 4,525 12/31/2024
3.0.731 109 12/31/2024
3.0.730 4,342 12/31/2024
3.0.729 89 12/31/2024
3.0.728 2,559 12/31/2024
3.0.727 317 12/31/2024
3.0.726 91 12/31/2024
3.0.725 1,306 12/31/2024
3.0.724 92 12/31/2024
3.0.723 8,835 12/28/2024
3.0.722 1,110 12/28/2024
3.0.721 1,204 12/27/2024
3.0.720 96 12/27/2024
3.0.719 2,666 12/27/2024
3.0.718 4,871 12/24/2024
3.0.717 1,232 12/24/2024
3.0.716 925 12/24/2024
3.0.715 791 12/24/2024
3.0.714 1,366 12/24/2024
3.0.713 82 12/24/2024
3.0.712 2,237 12/24/2024
3.0.711 631 12/24/2024
3.0.710 90 12/24/2024
3.0.709 446 12/24/2024
3.0.708 959 12/24/2024
3.0.707 241 12/24/2024
3.0.706 110 12/24/2024
3.0.705 1,037 12/24/2024
3.0.704 90 12/24/2024
3.0.703 1,769 12/23/2024
3.0.702 2,732 12/23/2024
3.0.701 96 12/23/2024
3.0.700 653 12/23/2024
3.0.699 89 12/23/2024
3.0.698 1,814 12/23/2024
3.0.697 94 12/23/2024
3.0.696 1,437 12/23/2024
3.0.695 99 12/23/2024
3.0.694 424 12/22/2024
3.0.693 1,381 12/22/2024
3.0.692 3,981 12/22/2024
3.0.691 99 12/22/2024
3.0.690 1,529 12/22/2024
3.0.689 147 12/22/2024
3.0.688 457 12/22/2024
3.0.687 91 12/22/2024
3.0.686 253 12/22/2024
3.0.685 91 12/22/2024
3.0.684 6,743 12/22/2024
3.0.683 90 12/22/2024
3.0.682 1,052 12/21/2024
3.0.681 254 12/21/2024
3.0.680 96 12/21/2024
3.0.679 473 12/21/2024
3.0.678 758 12/21/2024
3.0.677 89 12/21/2024
3.0.676 3,756 12/21/2024
3.0.675 375 12/21/2024
3.0.674 89 12/21/2024
3.0.673 2,518 12/21/2024
3.0.672 667 12/21/2024
3.0.671 95 12/21/2024
3.0.670 1,566 12/20/2024
3.0.669 100 12/20/2024
3.0.668 91 12/20/2024
3.0.667 3,667 12/20/2024
3.0.666 1,125 12/20/2024
3.0.665 205 12/20/2024
3.0.664 3,432 12/19/2024
3.0.663 415 12/19/2024
3.0.662 2,001 12/18/2024
3.0.661 97 12/18/2024
3.0.660 6,560 12/17/2024
3.0.659 200 12/17/2024
3.0.658 678 12/16/2024
3.0.657 100 12/16/2024
3.0.656 130 12/16/2024
3.0.655 88 12/16/2024
3.0.654 6,462 12/10/2024
3.0.653 984 12/10/2024
3.0.652 366 12/9/2024
3.0.651 94 12/9/2024
3.0.650 2,655 12/9/2024
3.0.649 1,354 12/9/2024
3.0.648 88 12/9/2024
3.0.647 3,615 12/9/2024
3.0.646 2,717 12/6/2024
3.0.645 415 12/6/2024
3.0.644 99 12/6/2024
3.0.643 676 12/6/2024
3.0.641 3,859 12/6/2024
3.0.640 2,431 12/6/2024
3.0.639 5,263 12/6/2024
3.0.637 362 12/6/2024
3.0.636 2,508 12/5/2024
3.0.635 3,552 12/5/2024
3.0.634 3,158 12/5/2024
3.0.633 94 12/5/2024
3.0.632 1,726 12/5/2024
3.0.631 1,019 12/5/2024
3.0.630 97 12/5/2024
3.0.629 367 12/5/2024
3.0.628 92 12/5/2024
3.0.627 134 12/5/2024
3.0.626 91 12/5/2024
3.0.625 3,345 12/4/2024
3.0.624 90 12/4/2024
3.0.623 101 12/4/2024
3.0.622 98 12/4/2024
3.0.621 1,702 12/4/2024
3.0.620 285 12/4/2024
3.0.619 400 12/4/2024
3.0.618 3,347 12/3/2024
3.0.617 98 12/3/2024
3.0.616 1,113 12/3/2024
3.0.615 429 12/3/2024
3.0.614 104 12/3/2024
3.0.613 101 12/3/2024
3.0.612 4,022 12/3/2024
3.0.611 95 12/3/2024
3.0.610 3,282 12/3/2024
3.0.609 88 12/3/2024
3.0.608 3,052 12/2/2024
3.0.607 2,632 12/2/2024
3.0.606 1,610 12/2/2024
3.0.605 261 12/2/2024
3.0.604 97 12/2/2024
3.0.603 387 12/2/2024
3.0.602 3,429 12/1/2024
3.0.601 98 12/1/2024
3.0.600 1,860 12/1/2024
3.0.599 185 12/1/2024
3.0.598 3,444 12/1/2024
3.0.597 104 12/1/2024
3.0.596 3,554 11/29/2024
3.0.595 1,040 11/29/2024
3.0.594 5,454 11/21/2024
3.0.593 282 11/21/2024
3.0.592 4,496 11/20/2024
3.0.591 322 11/20/2024
3.0.590 97 11/20/2024
3.0.589 102 11/20/2024
3.0.588 408 11/20/2024
3.0.587 144 11/20/2024
3.0.586 92 11/20/2024
3.0.585 2,017 11/20/2024
3.0.584 2,748 11/19/2024
3.0.583 91 11/19/2024
3.0.582 630 11/19/2024
3.0.581 92 11/19/2024
3.0.580 2,664 11/19/2024
3.0.579 88 11/19/2024
3.0.578 1,302 11/19/2024
3.0.577 95 11/19/2024
3.0.576 8,502 11/14/2024
3.0.575 127 11/14/2024
3.0.574 498 11/14/2024
3.0.573 2,359 11/14/2024
3.0.572 708 11/14/2024
3.0.571 100 11/14/2024
3.0.570 103 11/14/2024
3.0.569 4,129 11/14/2024
3.0.568 105 11/14/2024
3.0.567 101 11/14/2024
3.0.566 3,472 11/14/2024
3.0.565 101 11/14/2024
3.0.564 97 11/14/2024
3.0.563 100 11/14/2024
2.1.562 8,268 11/13/2024
2.1.561 1,360 11/13/2024
2.1.560 3,043 11/13/2024
2.1.559 101 11/13/2024
2.1.558 1,321 11/12/2024
2.1.557 391 11/12/2024
2.1.556 8,233 11/9/2024
2.1.555 353 11/9/2024
2.1.554 96 11/9/2024
2.1.553 1,722 11/9/2024
2.1.552 99 11/9/2024
2.1.551 948 11/8/2024
2.1.550 101 11/8/2024
2.1.549 100 11/8/2024
2.1.548 101 11/8/2024
2.1.547 415 11/8/2024
2.1.546 1,881 11/8/2024
2.1.545 97 11/8/2024
2.1.544 5,443 11/8/2024
2.1.543 93 11/8/2024
2.1.542 11,600 11/1/2024
2.1.541 451 11/1/2024
2.1.540 6,767 10/29/2024
2.1.539 727 10/29/2024
2.1.538 2,825 10/29/2024
2.1.537 619 10/29/2024
2.1.536 5,549 10/28/2024
2.1.535 1,841 10/28/2024
2.1.534 3,999 10/26/2024
2.1.533 695 10/26/2024
2.1.532 8,653 10/22/2024
2.1.531 246 10/22/2024
2.1.530 541 10/22/2024
2.1.529 870 10/22/2024
2.1.528 85 10/22/2024
2.1.527 481 10/22/2024
2.1.526 6,485 10/18/2024
2.1.525 1,077 10/17/2024
2.1.524 4,141 10/15/2024
2.1.523 1,588 10/15/2024
2.1.522 93 10/14/2024
2.1.521 5,118 10/12/2024
2.1.520 642 10/11/2024
2.1.519 96 10/11/2024
2.1.518 466 10/11/2024
2.1.517 2,906 10/11/2024
2.1.516 6,362 10/9/2024
2.1.515 374 10/9/2024
2.1.514 92 10/9/2024
2.1.513 1,961 10/8/2024
2.1.512 133 10/8/2024
2.1.511 2,208 10/8/2024
2.1.510 137 10/8/2024
2.1.509 89 10/8/2024
2.1.508 3,929 10/8/2024
2.1.507 6,142 10/3/2024
2.1.506 97 10/3/2024
2.1.505 1,092 10/3/2024
2.1.504 1,912 10/3/2024
2.1.503 1,401 10/3/2024
2.1.502 5,712 10/2/2024
2.1.501 94 10/2/2024
2.1.500 1,807 10/2/2024
2.1.499 990 10/2/2024
2.1.498 4,161 10/1/2024
2.1.497 690 10/1/2024
2.1.496 105 10/1/2024
2.1.495 2,613 10/1/2024
2.1.494 98 10/1/2024
2.1.493 137 10/1/2024
2.1.492 5,399 9/29/2024
2.1.491 1,366 9/29/2024
2.1.490 98 9/29/2024
2.1.489 1,207 9/29/2024
2.1.488 95 9/29/2024
2.1.487 2,506 9/29/2024
2.1.486 5,070 9/27/2024
2.1.485 768 9/27/2024
2.1.484 3,118 9/27/2024
2.1.483 104 9/27/2024
2.1.482 434 9/27/2024
2.1.481 2,149 9/27/2024
2.1.480 3,145 9/26/2024
2.1.479 3,470 9/26/2024
2.1.478 2,346 9/26/2024
2.1.477 2,157 9/26/2024
2.1.476 3,786 9/26/2024
2.1.475 100 9/26/2024
2.1.474 5,593 9/23/2024
2.1.473 1,287 9/23/2024
2.1.472 942 9/23/2024
2.1.471 1,134 9/23/2024
2.1.470 95 9/23/2024
2.1.469 1,540 9/23/2024
2.1.468 93 9/23/2024
2.1.467 4,649 9/23/2024
2.1.466 99 9/23/2024
2.1.465 707 9/23/2024
2.1.464 107 9/23/2024
2.1.463 94 9/23/2024
2.1.462 870 9/23/2024
2.1.461 9,073 9/18/2024
2.1.460 245 9/17/2024
2.1.459 1,193 9/17/2024
2.1.458 1,702 9/17/2024
2.1.457 99 9/17/2024
2.1.456 1,796 9/17/2024
2.1.455 450 9/17/2024
2.1.454 3,261 9/17/2024
2.1.453 537 9/17/2024
2.1.452 188 9/17/2024
2.1.451 2,633 9/17/2024
2.1.450 7,443 9/16/2024
2.1.449 711 9/16/2024
2.1.448 5,005 9/12/2024
2.1.447 2,909 9/12/2024
2.1.446 1,300 9/11/2024
2.1.445 1,522 9/11/2024
2.1.443 3,705 9/11/2024
2.1.442 987 9/11/2024
2.1.441 948 9/11/2024
2.1.440 2,303 9/11/2024
2.1.439 8,073 9/10/2024
2.1.438 121 9/10/2024
2.1.437 1,144 9/10/2024
2.1.436 115 9/10/2024
2.1.434 2,902 9/10/2024
2.1.433 598 9/9/2024
2.1.432 1,998 9/9/2024
2.1.430 1,541 9/9/2024
2.1.428 137 9/9/2024
2.1.427 457 9/9/2024
2.1.426 13,234 9/7/2024
2.1.425 129 9/7/2024
2.1.424 4,987 9/6/2024
2.1.423 366 9/6/2024
2.1.422 2,200 9/6/2024
2.1.421 113 9/5/2024
2.1.420 124 9/5/2024
2.1.419 2,380 9/5/2024
2.1.418 1,146 9/5/2024
2.1.417 122 9/5/2024
2.1.416 1,137 9/5/2024
2.1.415 427 9/5/2024
2.1.414 115 9/5/2024
2.1.413 5,021 9/5/2024
2.1.412 194 9/5/2024
2.1.411 120 9/5/2024
2.1.410 2,251 9/4/2024
2.1.409 7,986 9/3/2024
2.1.408 106 9/3/2024
2.1.407 100 9/3/2024
2.1.406 4,003 9/3/2024
2.1.405 150 9/3/2024
2.1.404 2,478 9/3/2024
2.1.403 5,272 8/29/2024
2.1.402 2,544 8/29/2024
2.1.401 2,881 8/26/2024
2.1.400 107 8/26/2024
2.1.399 4,920 8/21/2024
2.1.398 606 8/21/2024
2.1.397 129 8/21/2024
2.1.396 2,546 8/21/2024
2.1.395 141 8/20/2024
2.1.394 130 8/20/2024
2.1.393 463 8/20/2024
2.1.392 2,950 8/20/2024
2.1.391 412 8/20/2024
2.1.390 114 8/20/2024
2.1.389 2,639 8/20/2024
2.1.388 116 8/20/2024
2.1.387 1,197 8/20/2024
2.1.386 2,889 8/19/2024
2.1.385 4,751 8/15/2024
2.1.384 2,108 8/15/2024
2.1.383 4,800 8/14/2024
2.1.382 153 8/13/2024
2.1.381 5,669 8/7/2024
2.1.380 272 8/6/2024
2.1.379 2,683 8/6/2024
2.1.378 4,917 8/1/2024
2.1.377 329 8/1/2024
2.1.376 96 8/1/2024
2.1.374 1,130 8/1/2024
2.1.373 5,783 7/25/2024
2.1.372 91 7/25/2024
2.1.371 718 7/25/2024
2.1.370 303 7/25/2024
2.1.369 353 7/25/2024
2.1.368 179 7/25/2024
2.1.367 379 7/24/2024
2.1.366 138 7/24/2024
2.1.365 202 7/24/2024
2.1.364 312 7/24/2024
2.1.363 8,284 7/20/2024
2.1.362 1,443 7/20/2024
2.1.361 4,989 7/14/2024
2.1.360 1,536 7/14/2024
2.1.359 100 7/14/2024
2.1.358 1,493 7/14/2024
2.1.357 4,300 7/10/2024
2.1.355 792 7/10/2024
2.1.354 1,178 7/10/2024
2.1.353 118 7/10/2024
2.1.352 1,899 7/10/2024
2.1.351 120 7/10/2024
2.1.350 106 7/10/2024
2.1.349 172 7/10/2024
2.1.348 104 7/10/2024
2.1.347 2,041 7/10/2024
2.1.346 120 7/10/2024
2.1.345 807 7/10/2024
2.1.344 105 7/10/2024
2.1.343 206 7/9/2024
2.1.342 95 7/9/2024
2.1.339 1,969 7/9/2024
2.1.338 482 7/9/2024
2.1.337 4,000 7/9/2024
2.1.336 1,065 7/9/2024
2.1.335 111 7/9/2024
2.1.334 2,566 7/9/2024
2.1.333 112 7/9/2024
2.1.332 7,238 7/9/2024
2.1.331 101 7/9/2024
2.1.330 2,497 7/9/2024
2.1.329 92 7/9/2024
2.1.328 1,055 7/9/2024
2.1.327 707 7/8/2024
2.1.326 957 7/8/2024
2.1.325 121 7/8/2024
2.1.324 117 7/8/2024
2.1.323 4,831 7/8/2024
2.1.322 1,612 7/8/2024
2.1.321 123 7/8/2024
2.1.320 2,269 7/7/2024
2.1.319 117 7/7/2024
2.1.318 126 7/7/2024
2.1.317 108 7/7/2024
2.1.316 1,143 7/7/2024
2.1.315 2,155 7/7/2024
2.1.314 1,843 7/7/2024
2.1.313 214 7/7/2024
2.1.312 3,370 7/5/2024
2.1.311 3,860 7/3/2024
2.1.310 3,024 7/3/2024
2.1.309 382 7/3/2024
2.1.308 3,888 7/2/2024
2.1.307 1,844 6/30/2024
2.1.306 2,234 6/28/2024
2.1.305 5,369 6/22/2024
2.1.304 4,840 6/15/2024
2.1.303 4,073 6/14/2024
2.1.302 5,866 6/1/2024
2.1.301 1,575 6/1/2024
2.1.300 575 6/1/2024
2.1.299 5,800 5/31/2024
2.1.298 3,682 5/29/2024
2.1.297 3,016 5/28/2024
2.1.296 2,443 5/27/2024
2.1.295 4,798 5/26/2024
2.1.294 2,000 5/26/2024
2.1.293 476 5/26/2024
2.1.292 2,487 5/25/2024
2.1.291 1,367 5/25/2024
2.1.290 124 5/25/2024
2.1.289 117 5/25/2024
2.1.288 671 5/25/2024
2.1.287 118 5/25/2024
2.1.286 398 5/25/2024
2.1.285 129 5/25/2024
2.1.284 119 5/25/2024
2.1.283 7,362 5/23/2024
2.1.282 521 5/23/2024
2.1.281 258 5/22/2024
2.1.280 3,609 5/22/2024
2.1.279 112 5/22/2024
2.1.278 126 5/22/2024
2.1.277 128 5/22/2024
2.1.276 2,104 5/22/2024
2.1.275 3,394 5/18/2024
2.1.274 1,880 5/18/2024
2.1.273 1,788 5/17/2024
2.1.272 107 5/17/2024
2.1.271 2,707 5/16/2024
2.1.270 424 5/15/2024
2.1.269 2,726 5/15/2024
2.1.268 4,424 5/12/2024
2.1.267 2,712 5/3/2024
2.1.266 1,123 4/30/2024
2.1.265 1,733 4/29/2024
2.1.264 1,890 4/29/2024
2.1.263 2,620 4/28/2024
2.1.262 1,458 4/28/2024
2.1.261 1,092 4/28/2024
2.1.260 1,739 4/28/2024
2.1.259 897 4/28/2024
2.1.258 110 4/28/2024
2.1.257 4,126 4/27/2024
2.1.256 123 4/27/2024
2.1.255 4,352 4/19/2024
2.1.254 4,045 4/18/2024
2.1.253 3,403 4/12/2024
2.1.252 1,134 4/12/2024
2.1.251 718 4/12/2024
2.1.250 851 4/12/2024
2.1.249 189 4/12/2024
2.1.248 106 4/12/2024
2.1.247 978 4/12/2024
2.1.246 297 4/12/2024
2.1.245 1,638 4/11/2024
2.1.244 3,690 4/10/2024
2.1.243 1,122 4/9/2024
2.1.242 3,149 4/2/2024
2.1.241 888 4/1/2024
2.1.240 2,065 3/29/2024
2.1.239 1,819 3/25/2024
2.1.238 286 3/25/2024
2.1.237 3,276 3/20/2024
2.1.236 2,124 3/19/2024
2.1.235 518 3/19/2024
2.1.234 2,321 3/18/2024
2.1.233 1,384 3/18/2024
2.1.232 1,365 3/15/2024
2.1.231 2,327 3/13/2024
2.1.230 1,087 3/13/2024
2.1.229 651 3/13/2024
2.1.228 752 3/13/2024
2.1.227 131 3/13/2024
2.1.226 532 3/13/2024
2.1.225 136 3/13/2024
2.1.224 143 3/13/2024
2.1.223 1,646 3/12/2024
2.1.222 2,812 3/11/2024
2.1.221 2,448 3/11/2024
2.1.220 1,605 3/10/2024
2.1.219 1,860 3/8/2024
2.1.218 1,045 3/8/2024
2.1.217 1,533 3/8/2024
2.1.216 2,062 3/6/2024
2.1.215 1,979 3/4/2024
2.1.214 1,401 3/4/2024
2.1.213 2,546 3/2/2024
2.1.212 1,194 3/2/2024
2.1.211 398 3/2/2024
2.1.210 342 3/2/2024
2.1.209 464 3/2/2024
2.1.208 3,398 2/29/2024
2.1.207 630 2/29/2024
2.1.206 331 2/29/2024
2.1.205 3,279 2/26/2024
2.1.204 1,474 2/25/2024
2.1.203 2,576 2/23/2024
2.1.202 1,881 2/22/2024
2.1.201 945 2/22/2024
2.1.200 425 2/21/2024
2.1.199 1,177 2/21/2024
2.1.198 286 2/21/2024
2.1.197 760 2/21/2024
2.1.196 126 2/21/2024
2.1.195 1,232 2/21/2024
2.1.194 401 2/21/2024
2.1.193 134 2/21/2024
2.1.192 133 2/21/2024
2.1.191 587 2/21/2024
2.1.190 112 2/21/2024
2.1.189 2,616 2/20/2024
2.1.188 711 2/20/2024
2.1.187 635 2/20/2024
2.1.186 745 2/20/2024
2.1.185 2,096 2/19/2024
2.1.184 1,858 2/17/2024
2.1.183 885 2/16/2024
2.1.182 852 2/16/2024
2.1.181 1,332 2/16/2024
2.1.180 120 2/16/2024
2.1.179 631 2/16/2024
2.1.178 129 2/16/2024
2.1.177 128 2/16/2024
2.1.176 548 2/16/2024
2.1.175 115 2/16/2024
2.1.174 3,275 2/13/2024
2.1.173 1,360 2/13/2024
2.1.172 1,072 2/13/2024
2.1.171 448 2/13/2024
2.1.170 618 2/13/2024
2.1.169 1,916 2/12/2024
2.1.168 505 2/11/2024
2.1.167 1,508 2/11/2024
2.1.166 844 2/11/2024
2.1.165 2,759 2/10/2024
2.1.164 539 2/9/2024
2.1.163 140 2/9/2024
2.1.162 1,549 2/9/2024
2.1.161 1,656 2/9/2024
2.1.160 381 2/8/2024
2.1.159 1,208 2/8/2024
2.1.158 843 2/8/2024
2.1.157 1,449 2/8/2024
2.1.156 124 2/8/2024
2.1.155 1,844 2/7/2024
2.1.154 436 2/7/2024
2.1.153 597 2/7/2024
2.1.152 1,254 2/7/2024
2.1.151 376 2/6/2024
2.1.150 132 2/6/2024
2.1.149 125 2/6/2024
2.1.148 2,760 2/5/2024
2.1.147 1,517 2/4/2024
2.1.146 2,072 2/2/2024
2.1.145 1,903 1/31/2024
2.1.144 2,122 1/29/2024
2.1.143 1,348 1/29/2024
2.1.142 341 1/29/2024
2.1.141 1,470 1/28/2024
2.1.140 447 1/28/2024
2.1.139 301 1/28/2024
2.1.138 534 1/28/2024
2.1.137 1,904 1/28/2024
2.1.136 917 1/28/2024
2.1.135 282 1/27/2024
2.1.134 922 1/27/2024
2.1.133 1,154 1/27/2024
2.1.132 1,173 1/27/2024
2.1.131 150 1/27/2024
2.1.130 691 1/27/2024
2.1.129 1,044 1/26/2024
2.1.128 215 1/26/2024
2.1.127 866 1/26/2024
2.1.126 1,112 1/26/2024
2.1.125 1,617 1/26/2024
2.1.124 873 1/25/2024
2.1.123 1,093 1/25/2024
2.1.122 448 1/25/2024
2.1.121 910 1/25/2024
2.1.120 515 1/25/2024
2.1.119 2,564 1/19/2024
2.1.118 2,207 1/15/2024
2.1.117 497 1/15/2024
2.1.116 1,202 1/15/2024
2.1.115 127 1/15/2024
2.1.114 558 1/15/2024
2.1.113 1,365 1/15/2024
2.1.112 2,536 1/14/2024
2.1.111 1,594 1/13/2024
2.1.110 1,825 1/12/2024
2.1.109 2,037 1/11/2024
2.1.108 2,629 1/7/2024
2.1.107 2,080 1/5/2024
2.1.106 481 1/5/2024
2.1.105 138 1/5/2024
2.1.104 143 1/5/2024
2.1.103 1,481 1/5/2024
2.1.102 143 1/5/2024
2.1.101 2,748 1/1/2024
2.1.100 2,210 12/28/2023
2.1.99 734 12/28/2023
2.1.98 494 12/28/2023
2.1.97 133 12/28/2023
2.1.96 130 12/28/2023
2.1.95 711 12/27/2023
2.1.94 141 12/27/2023
2.1.93 466 12/27/2023
2.1.92 136 12/27/2023
2.1.91 137 12/27/2023
2.1.90 2,207 12/25/2023
2.1.89 351 12/25/2023
2.1.88 775 12/25/2023
2.1.87 139 12/25/2023
2.1.86 630 12/25/2023
2.1.85 130 12/25/2023
2.1.84 569 12/25/2023
2.1.83 137 12/25/2023
2.1.82 1,650 12/24/2023
2.1.81 1,066 12/23/2023
2.1.80 864 12/23/2023
2.1.79 312 12/23/2023
2.1.78 554 12/23/2023
2.1.77 130 12/23/2023
2.1.76 121 12/23/2023
2.1.75 1,083 12/23/2023
2.1.74 124 12/23/2023
2.1.73 1,393 12/19/2023
2.1.72 218 12/19/2023
2.1.71 3,075 12/11/2023
2.1.70 720 12/10/2023
2.1.69 119 12/10/2023
2.1.68 486 12/10/2023
2.1.67 1,410 12/10/2023
2.1.66 367 12/9/2023
2.1.65 367 12/9/2023
2.1.64 292 12/9/2023
2.1.63 132 12/9/2023
2.1.62 263 12/9/2023
2.1.61 199 12/9/2023
2.1.60 134 12/9/2023
2.1.59 1,068 12/9/2023
2.1.58 128 12/9/2023
2.1.57 1,514 12/6/2023
2.1.56 388 12/6/2023
2.1.55 243 12/6/2023
2.1.54 272 12/6/2023
2.1.53 919 12/5/2023
2.1.52 378 12/5/2023
2.1.51 342 12/5/2023
2.1.50 382 12/5/2023
2.1.49 130 12/5/2023
2.1.48 339 12/5/2023
2.1.47 276 12/5/2023
2.1.46 129 12/4/2023
2.1.45 132 12/4/2023
2.1.44 327 12/4/2023
2.1.43 143 12/4/2023
2.1.42 1,006 12/4/2023
2.1.41 113 12/4/2023
2.1.40 1,164 11/27/2023
2.1.39 519 11/26/2023
2.1.38 214 11/26/2023
2.1.37 624 11/23/2023
2.1.36 684 11/23/2023
2.1.35 639 11/23/2023
2.1.34 131 11/23/2023
2.1.33 398 11/23/2023
2.1.32 137 11/23/2023
2.1.31 1,075 11/20/2023
2.1.30 1,041 11/20/2023
2.1.29 794 11/19/2023
2.1.28 256 11/19/2023
2.1.27 453 11/19/2023
2.1.26 506 11/19/2023
2.1.25 500 11/19/2023
2.1.24 120 11/19/2023
2.1.23 219 11/18/2023
2.1.22 974 11/18/2023
2.1.21 378 11/18/2023
2.1.20 531 11/18/2023
2.1.19 130 11/18/2023
2.1.18 305 11/18/2023
2.1.17 126 11/18/2023
2.1.16 600 11/17/2023
2.1.15 513 11/17/2023
2.1.14 124 11/17/2023
2.1.13 421 11/17/2023
2.1.12 296 11/17/2023
2.1.11 493 11/17/2023
2.1.10 126 11/17/2023
2.1.9 508 11/17/2023
2.1.8 126 11/17/2023
2.1.7 143 11/17/2023
2.1.6 321 11/17/2023
2.1.5 369 11/16/2023
2.0.101 2,066 11/15/2023
2.0.100 122 11/15/2023
2.0.99 130 11/15/2023
2.0.4 128 11/16/2023
2.0.3 133 11/16/2023
2.0.2 125 11/16/2023
2.0.1 121 11/16/2023
1.0.98 609 11/14/2023
1.0.97 749 11/13/2023
1.0.96 116 11/13/2023
1.0.95 570 11/10/2023
1.0.94 120 11/10/2023
1.0.93 927 11/9/2023
1.0.92 126 11/9/2023
1.0.91 1,039 11/7/2023
1.0.90 117 11/7/2023
1.0.89 503 11/6/2023
1.0.88 126 11/6/2023
1.0.87 595 11/3/2023
1.0.86 132 11/3/2023
1.0.85 889 11/2/2023
1.0.84 123 11/2/2023
1.0.83 598 11/1/2023
1.0.82 1,446 10/26/2023
1.0.81 1,291 10/19/2023
1.0.80 139 10/19/2023
1.0.79 774 10/18/2023
1.0.78 156 10/18/2023
1.0.77 726 10/17/2023
1.0.76 144 10/17/2023
1.0.75 637 10/16/2023
1.0.74 149 10/16/2023
1.0.73 697 10/13/2023
1.0.72 333 10/12/2023
1.0.71 1,728 9/20/2023
1.0.70 671 9/19/2023
1.0.69 672 9/18/2023
1.0.68 139 9/18/2023
1.0.67 885 9/14/2023
1.0.66 1,497 8/31/2023
1.0.65 144 8/31/2023
1.0.64 794 8/30/2023
1.0.63 153 8/30/2023
1.0.62 158 8/30/2023
1.0.61 833 8/28/2023
1.0.60 687 8/25/2023
1.0.59 146 8/25/2023
1.0.58 485 8/24/2023
1.0.57 1,438 8/21/2023
1.0.56 819 8/18/2023
1.0.55 740 8/17/2023
1.0.54 149 8/17/2023
1.0.53 1,891 8/10/2023
1.0.52 557 8/9/2023
1.0.51 665 8/8/2023
1.0.50 639 8/7/2023
1.0.49 173 8/7/2023
1.0.48 2,446 7/13/2023
1.0.47 878 7/11/2023
1.0.46 714 7/10/2023
1.0.45 678 7/7/2023
1.0.44 166 7/7/2023
1.0.43 2,093 6/30/2023
1.0.42 1,048 6/29/2023
1.0.41 589 6/28/2023
1.0.40 1,495 6/26/2023
1.0.39 773 6/23/2023
1.0.38 1,071 6/21/2023
1.0.37 1,409 6/15/2023
1.0.36 470 6/14/2023
1.0.35 1,744 6/9/2023
1.0.34 817 6/8/2023
1.0.33 1,593 6/7/2023
1.0.32 167 6/7/2023
1.0.31 1,197 6/6/2023
1.0.30 1,139 6/5/2023
1.0.29 1,333 6/2/2023
1.0.28 153 6/2/2023
1.0.27 1,229 6/1/2023
1.0.26 595 5/31/2023
1.0.25 479 5/31/2023
1.0.24 162 5/31/2023
1.0.23 1,458 5/30/2023
1.0.22 1,515 5/26/2023
1.0.21 669 5/25/2023
1.0.20 148 5/25/2023
1.0.19 826 5/24/2023
1.0.18 156 5/24/2023
1.0.17 445 5/23/2023
1.0.13 1,464 5/22/2023
1.0.12 1,185 5/18/2023
1.0.11 589 5/17/2023
1.0.10 1,547 5/1/2023
1.0.9 1,021 4/25/2023
1.0.8 473 4/24/2023
1.0.7 995 4/21/2023
1.0.6 1,955 4/13/2023
1.0.5 592 4/12/2023
1.0.4 1,014 4/8/2023
1.0.3 187 4/8/2023
1.0.2 586 4/8/2023
1.0.1 191 4/8/2023