Soenneker.Utils.SingletonDictionary 3.0.1076

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.1076
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1076
                    
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.1076" />
                    
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.1076" />
                    
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.1076
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1076"
                    
#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.1076
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1076
                    
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.  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. 
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.1077 1,574 5/14/2025
3.0.1076 7,346 5/8/2025
3.0.1075 268 5/8/2025
3.0.1074 563 5/8/2025
3.0.1073 1,073 5/7/2025
3.0.1072 12,440 5/5/2025
3.0.1071 841 5/5/2025
3.0.1070 1,536 5/5/2025
3.0.1069 704 5/5/2025
3.0.1068 219 5/5/2025
3.0.1067 130 5/5/2025
3.0.1066 17,977 4/9/2025
3.0.1065 256 4/9/2025
3.0.1064 1,055 4/8/2025
3.0.1063 2,186 4/8/2025
3.0.1062 2,998 4/8/2025
3.0.1061 188 4/8/2025
3.0.1060 154 4/8/2025
3.0.1059 185 4/8/2025
3.0.1058 149 4/8/2025
3.0.1057 853 4/8/2025
3.0.1056 276 4/8/2025
3.0.1055 6,391 4/8/2025
3.0.1054 650 4/8/2025
3.0.1053 3,271 4/7/2025
3.0.1052 706 4/7/2025
3.0.1051 157 4/7/2025
3.0.1050 588 4/7/2025
3.0.1049 154 4/7/2025
3.0.1048 6,763 4/7/2025
3.0.1047 162 4/7/2025
3.0.1046 9,315 4/7/2025
3.0.1045 153 4/7/2025
3.0.1044 1,371 4/7/2025
3.0.1043 155 4/7/2025
3.0.1042 1,616 4/7/2025
3.0.1041 929 4/6/2025
3.0.1040 282 4/6/2025
3.0.1039 159 4/6/2025
3.0.1038 1,049 4/6/2025
3.0.1037 156 4/6/2025
3.0.1036 391 4/6/2025
3.0.1035 1,174 4/6/2025
3.0.1034 136 4/6/2025
3.0.1033 2,043 4/6/2025
3.0.1032 95 4/6/2025
3.0.1031 147 4/6/2025
3.0.1030 106 4/6/2025
3.0.1029 1,601 4/5/2025
3.0.1028 167 4/5/2025
3.0.1027 1,145 4/5/2025
3.0.1026 1,203 4/5/2025
3.0.1025 1,045 4/5/2025
3.0.1024 632 4/5/2025
3.0.1023 530 4/5/2025
3.0.1022 108 4/5/2025
3.0.1021 1,266 4/4/2025
3.0.1020 6,947 4/4/2025
3.0.1019 23,311 4/4/2025
3.0.1018 6,625 4/1/2025
3.0.1017 2,605 4/1/2025
3.0.1016 150 4/1/2025
3.0.1015 5,371 4/1/2025
3.0.1014 2,325 3/31/2025
3.0.1013 361 3/31/2025
3.0.1012 3,880 3/31/2025
3.0.1011 6,709 3/29/2025
3.0.1010 1,042 3/29/2025
3.0.1009 1,386 3/29/2025
3.0.1008 89 3/29/2025
3.0.1007 4,291 3/27/2025
3.0.1006 3,817 3/25/2025
3.0.1005 590 3/25/2025
3.0.1004 3,073 3/25/2025
3.0.1003 6,001 3/21/2025
3.0.1002 2,527 3/21/2025
3.0.1001 7,258 3/18/2025
3.0.1000 3,364 3/18/2025
3.0.999 6,302 3/15/2025
3.0.998 1,750 3/15/2025
3.0.997 61 3/15/2025
3.0.996 6,006 3/12/2025
3.0.995 2,137 3/12/2025
3.0.994 159 3/12/2025
3.0.993 379 3/12/2025
3.0.992 145 3/12/2025
3.0.991 2,667 3/11/2025
3.0.990 156 3/11/2025
3.0.989 1,252 3/11/2025
3.0.988 157 3/11/2025
3.0.987 2,541 3/11/2025
3.0.986 162 3/11/2025
3.0.985 2,627 3/11/2025
3.0.984 151 3/11/2025
3.0.983 1,600 3/11/2025
3.0.982 153 3/11/2025
3.0.981 8,826 3/7/2025
3.0.980 2,579 3/7/2025
3.0.979 6,118 3/2/2025
3.0.978 1,022 3/2/2025
3.0.977 633 3/2/2025
3.0.976 104 3/2/2025
3.0.975 4,288 3/2/2025
3.0.974 93 3/2/2025
3.0.973 3,149 3/1/2025
3.0.972 90 3/1/2025
3.0.971 4,255 3/1/2025
3.0.970 111 3/1/2025
3.0.969 92 3/1/2025
3.0.968 392 3/1/2025
3.0.967 90 3/1/2025
3.0.966 5,775 3/1/2025
3.0.965 4,744 2/26/2025
3.0.964 807 2/26/2025
3.0.963 2,301 2/25/2025
3.0.962 86 2/25/2025
3.0.961 832 2/25/2025
3.0.960 88 2/25/2025
3.0.959 116 2/25/2025
3.0.958 1,815 2/25/2025
3.0.957 4,805 2/24/2025
3.0.956 4,445 2/23/2025
3.0.955 1,066 2/22/2025
3.0.954 90 2/22/2025
3.0.953 7,511 2/22/2025
3.0.952 2,170 2/22/2025
3.0.951 1,031 2/22/2025
3.0.950 746 2/22/2025
3.0.949 128 2/22/2025
3.0.948 106 2/22/2025
3.0.947 90 2/22/2025
3.0.946 4,593 2/21/2025
3.0.945 94 2/21/2025
3.0.944 5,454 2/21/2025
3.0.943 4,512 2/19/2025
3.0.942 1,596 2/19/2025
3.0.941 709 2/19/2025
3.0.940 96 2/19/2025
3.0.939 389 2/18/2025
3.0.938 94 2/18/2025
3.0.937 5,421 2/18/2025
3.0.936 93 2/18/2025
3.0.935 2,782 2/18/2025
3.0.934 6,399 2/16/2025
3.0.933 1,510 2/14/2025
3.0.932 794 2/14/2025
3.0.931 692 2/13/2025
3.0.930 2,360 2/13/2025
3.0.929 259 2/13/2025
3.0.928 3,644 2/13/2025
3.0.927 3,684 2/12/2025
3.0.926 1,444 2/12/2025
3.0.925 140 2/12/2025
3.0.924 95 2/12/2025
3.0.923 1,980 2/12/2025
3.0.922 327 2/12/2025
3.0.921 105 2/12/2025
3.0.920 176 2/12/2025
3.0.919 175 2/12/2025
3.0.918 98 2/12/2025
3.0.917 157 2/11/2025
3.0.916 3,358 2/11/2025
3.0.915 3,642 2/11/2025
3.0.914 2,158 2/11/2025
3.0.913 102 2/11/2025
3.0.912 383 2/11/2025
3.0.911 1,703 2/10/2025
3.0.910 103 2/10/2025
3.0.909 767 2/10/2025
3.0.908 101 2/10/2025
3.0.907 6,283 2/10/2025
3.0.906 102 2/10/2025
3.0.905 1,142 2/9/2025
3.0.904 5,577 2/9/2025
3.0.903 97 2/9/2025
3.0.902 7,075 2/8/2025
3.0.901 99 2/8/2025
3.0.900 1,658 2/7/2025
3.0.899 91 2/7/2025
3.0.898 1,559 2/7/2025
3.0.897 99 2/7/2025
3.0.896 627 2/7/2025
3.0.895 397 2/7/2025
3.0.894 104 2/7/2025
3.0.893 313 2/7/2025
3.0.892 96 2/7/2025
3.0.891 1,019 2/7/2025
3.0.890 95 2/7/2025
3.0.889 103 2/7/2025
3.0.888 10,536 2/7/2025
3.0.887 6,145 2/5/2025
3.0.886 581 2/5/2025
3.0.885 875 2/5/2025
3.0.884 273 2/5/2025
3.0.883 968 2/5/2025
3.0.882 644 2/5/2025
3.0.881 2,892 2/5/2025
3.0.880 103 2/5/2025
3.0.879 10,711 1/28/2025
3.0.878 622 1/28/2025
3.0.877 1,719 1/28/2025
3.0.876 209 1/28/2025
3.0.875 3,627 1/28/2025
3.0.874 613 1/27/2025
3.0.873 83 1/27/2025
3.0.872 167 1/27/2025
3.0.871 252 1/27/2025
3.0.870 88 1/27/2025
3.0.869 4,677 1/27/2025
3.0.868 4,341 1/26/2025
3.0.867 906 1/26/2025
3.0.866 163 1/26/2025
3.0.865 987 1/26/2025
3.0.864 1,296 1/25/2025
3.0.863 94 1/25/2025
3.0.862 5,494 1/25/2025
3.0.861 937 1/25/2025
3.0.860 282 1/25/2025
3.0.859 88 1/25/2025
3.0.858 1,768 1/25/2025
3.0.857 1,236 1/25/2025
3.0.856 6,357 1/24/2025
3.0.855 1,452 1/24/2025
3.0.854 82 1/24/2025
3.0.853 1,893 1/24/2025
3.0.852 301 1/24/2025
3.0.851 196 1/24/2025
3.0.850 2,986 1/24/2025
3.0.849 89 1/24/2025
3.0.848 467 1/23/2025
3.0.847 86 1/23/2025
3.0.846 546 1/23/2025
3.0.845 85 1/23/2025
3.0.844 7,538 1/22/2025
3.0.843 952 1/21/2025
3.0.842 931 1/21/2025
3.0.841 546 1/21/2025
3.0.840 91 1/21/2025
3.0.839 573 1/21/2025
3.0.838 705 1/21/2025
3.0.837 5,208 1/21/2025
3.0.836 517 1/21/2025
3.0.835 975 1/21/2025
3.0.834 92 1/21/2025
3.0.833 772 1/21/2025
3.0.832 84 1/21/2025
3.0.831 2,063 1/21/2025
3.0.830 81 1/21/2025
3.0.829 370 1/20/2025
3.0.828 2,670 1/20/2025
3.0.827 217 1/20/2025
3.0.826 1,950 1/20/2025
3.0.825 91 1/20/2025
3.0.824 1,032 1/20/2025
3.0.823 92 1/20/2025
3.0.822 99 1/20/2025
3.0.821 85 1/20/2025
3.0.820 337 1/20/2025
3.0.819 90 1/20/2025
3.0.818 92 1/20/2025
3.0.817 5,366 1/19/2025
3.0.816 94 1/19/2025
3.0.815 4,960 1/19/2025
3.0.814 1,531 1/19/2025
3.0.813 106 1/19/2025
3.0.812 361 1/19/2025
3.0.811 80 1/19/2025
3.0.810 1,788 1/19/2025
3.0.809 87 1/19/2025
3.0.808 3,083 1/18/2025
3.0.807 89 1/18/2025
3.0.806 6,864 1/17/2025
3.0.805 100 1/17/2025
3.0.804 565 1/17/2025
3.0.803 884 1/17/2025
3.0.802 3,981 1/16/2025
3.0.801 1,379 1/16/2025
3.0.800 1,992 1/16/2025
3.0.799 524 1/16/2025
3.0.798 1,141 1/16/2025
3.0.797 978 1/16/2025
3.0.796 80 1/16/2025
3.0.795 4,364 1/15/2025
3.0.794 83 1/15/2025
3.0.793 2,683 1/15/2025
3.0.792 83 1/15/2025
3.0.791 127 1/15/2025
3.0.790 3,161 1/15/2025
3.0.789 75 1/15/2025
3.0.788 2,652 1/15/2025
3.0.787 60 1/15/2025
3.0.786 422 1/15/2025
3.0.785 60 1/15/2025
3.0.784 1,537 1/15/2025
3.0.783 61 1/15/2025
3.0.782 200 1/14/2025
3.0.781 69 1/14/2025
3.0.780 80 1/14/2025
3.0.779 2,929 1/14/2025
3.0.778 504 1/14/2025
3.0.777 72 1/14/2025
3.0.776 1,168 1/14/2025
3.0.775 76 1/14/2025
3.0.774 4,948 1/13/2025
3.0.773 1,520 1/13/2025
3.0.772 1,285 1/13/2025
3.0.771 80 1/13/2025
3.0.770 4,820 1/11/2025
3.0.769 1,936 1/11/2025
3.0.768 103 1/11/2025
3.0.767 2,047 1/11/2025
3.0.766 93 1/11/2025
3.0.765 1,652 1/10/2025
3.0.764 1,790 1/10/2025
3.0.763 89 1/10/2025
3.0.762 744 1/10/2025
3.0.761 92 1/10/2025
3.0.760 87 1/10/2025
3.0.759 6,234 1/3/2025
3.0.758 455 1/3/2025
3.0.757 970 1/3/2025
3.0.756 120 1/3/2025
3.0.755 1,403 1/3/2025
3.0.754 100 1/3/2025
3.0.753 1,046 1/3/2025
3.0.752 1,007 1/2/2025
3.0.751 94 1/2/2025
3.0.750 1,690 1/2/2025
3.0.749 110 1/2/2025
3.0.748 2,813 1/2/2025
3.0.747 94 1/2/2025
3.0.746 101 1/2/2025
3.0.745 4,638 1/1/2025
3.0.744 985 1/1/2025
3.0.743 260 1/1/2025
3.0.742 107 1/1/2025
3.0.741 1,451 1/1/2025
3.0.740 103 1/1/2025
3.0.739 108 1/1/2025
3.0.738 111 1/1/2025
3.0.737 309 12/31/2024
3.0.736 106 12/31/2024
3.0.735 120 12/31/2024
3.0.734 604 12/31/2024
3.0.733 121 12/31/2024
3.0.732 4,533 12/31/2024
3.0.731 114 12/31/2024
3.0.730 4,346 12/31/2024
3.0.729 93 12/31/2024
3.0.728 2,563 12/31/2024
3.0.727 324 12/31/2024
3.0.726 96 12/31/2024
3.0.725 1,312 12/31/2024
3.0.724 96 12/31/2024
3.0.723 8,839 12/28/2024
3.0.722 1,115 12/28/2024
3.0.721 1,208 12/27/2024
3.0.720 101 12/27/2024
3.0.719 2,673 12/27/2024
3.0.718 4,875 12/24/2024
3.0.717 1,236 12/24/2024
3.0.716 929 12/24/2024
3.0.715 796 12/24/2024
3.0.714 1,370 12/24/2024
3.0.713 86 12/24/2024
3.0.712 2,241 12/24/2024
3.0.711 635 12/24/2024
3.0.710 94 12/24/2024
3.0.709 450 12/24/2024
3.0.708 966 12/24/2024
3.0.707 245 12/24/2024
3.0.706 114 12/24/2024
3.0.705 1,041 12/24/2024
3.0.704 94 12/24/2024
3.0.703 1,775 12/23/2024
3.0.702 2,736 12/23/2024
3.0.701 100 12/23/2024
3.0.700 657 12/23/2024
3.0.699 94 12/23/2024
3.0.698 1,818 12/23/2024
3.0.697 98 12/23/2024
3.0.696 1,441 12/23/2024
3.0.695 103 12/23/2024
3.0.694 428 12/22/2024
3.0.693 1,385 12/22/2024
3.0.692 3,985 12/22/2024
3.0.691 103 12/22/2024
3.0.690 1,541 12/22/2024
3.0.689 151 12/22/2024
3.0.688 461 12/22/2024
3.0.687 95 12/22/2024
3.0.686 257 12/22/2024
3.0.685 95 12/22/2024
3.0.684 6,747 12/22/2024
3.0.683 94 12/22/2024
3.0.682 1,057 12/21/2024
3.0.681 258 12/21/2024
3.0.680 101 12/21/2024
3.0.679 477 12/21/2024
3.0.678 762 12/21/2024
3.0.677 93 12/21/2024
3.0.676 3,767 12/21/2024
3.0.675 379 12/21/2024
3.0.674 93 12/21/2024
3.0.673 2,522 12/21/2024
3.0.672 671 12/21/2024
3.0.671 99 12/21/2024
3.0.670 1,570 12/20/2024
3.0.669 105 12/20/2024
3.0.668 95 12/20/2024
3.0.667 3,674 12/20/2024
3.0.666 1,129 12/20/2024
3.0.665 209 12/20/2024
3.0.664 3,438 12/19/2024
3.0.663 419 12/19/2024
3.0.662 2,008 12/18/2024
3.0.661 102 12/18/2024
3.0.660 6,564 12/17/2024
3.0.659 205 12/17/2024
3.0.658 682 12/16/2024
3.0.657 104 12/16/2024
3.0.656 134 12/16/2024
3.0.655 92 12/16/2024
3.0.654 6,466 12/10/2024
3.0.653 988 12/10/2024
3.0.652 373 12/9/2024
3.0.651 98 12/9/2024
3.0.650 2,659 12/9/2024
3.0.649 1,361 12/9/2024
3.0.648 92 12/9/2024
3.0.647 3,619 12/9/2024
3.0.646 2,721 12/6/2024
3.0.645 420 12/6/2024
3.0.644 103 12/6/2024
3.0.643 681 12/6/2024
3.0.641 3,863 12/6/2024
3.0.640 2,435 12/6/2024
3.0.639 5,267 12/6/2024
3.0.637 366 12/6/2024
3.0.636 2,512 12/5/2024
3.0.635 3,557 12/5/2024
3.0.634 3,165 12/5/2024
3.0.633 98 12/5/2024
3.0.632 1,730 12/5/2024
3.0.631 1,023 12/5/2024
3.0.630 101 12/5/2024
3.0.629 371 12/5/2024
3.0.628 96 12/5/2024
3.0.627 140 12/5/2024
3.0.626 95 12/5/2024
3.0.625 3,349 12/4/2024
3.0.624 94 12/4/2024
3.0.623 105 12/4/2024
3.0.622 103 12/4/2024
3.0.621 1,708 12/4/2024
3.0.620 289 12/4/2024
3.0.619 404 12/4/2024
3.0.618 3,354 12/3/2024
3.0.617 103 12/3/2024
3.0.616 1,117 12/3/2024
3.0.615 434 12/3/2024
3.0.614 108 12/3/2024
3.0.613 105 12/3/2024
3.0.612 4,028 12/3/2024
3.0.611 99 12/3/2024
3.0.610 3,286 12/3/2024
3.0.609 92 12/3/2024
3.0.608 3,062 12/2/2024
3.0.607 2,646 12/2/2024
3.0.606 1,614 12/2/2024
3.0.605 265 12/2/2024
3.0.604 101 12/2/2024
3.0.603 391 12/2/2024
3.0.602 3,438 12/1/2024
3.0.601 103 12/1/2024
3.0.600 1,869 12/1/2024
3.0.599 189 12/1/2024
3.0.598 3,451 12/1/2024
3.0.597 109 12/1/2024
3.0.596 3,559 11/29/2024
3.0.595 1,044 11/29/2024
3.0.594 5,703 11/21/2024
3.0.593 286 11/21/2024
3.0.592 4,507 11/20/2024
3.0.591 329 11/20/2024
3.0.590 104 11/20/2024
3.0.589 107 11/20/2024
3.0.588 415 11/20/2024
3.0.587 149 11/20/2024
3.0.586 96 11/20/2024
3.0.585 2,021 11/20/2024
3.0.584 2,752 11/19/2024
3.0.583 95 11/19/2024
3.0.582 634 11/19/2024
3.0.581 96 11/19/2024
3.0.580 2,671 11/19/2024
3.0.579 92 11/19/2024
3.0.578 1,309 11/19/2024
3.0.577 99 11/19/2024
3.0.576 8,510 11/14/2024
3.0.575 131 11/14/2024
3.0.574 502 11/14/2024
3.0.573 2,365 11/14/2024
3.0.572 712 11/14/2024
3.0.571 104 11/14/2024
3.0.570 107 11/14/2024
3.0.569 4,137 11/14/2024
3.0.568 110 11/14/2024
3.0.567 105 11/14/2024
3.0.566 3,480 11/14/2024
3.0.565 105 11/14/2024
3.0.564 104 11/14/2024
3.0.563 104 11/14/2024
2.1.562 8,382 11/13/2024
2.1.561 1,366 11/13/2024
2.1.560 3,047 11/13/2024
2.1.559 105 11/13/2024
2.1.558 1,328 11/12/2024
2.1.557 396 11/12/2024
2.1.556 8,240 11/9/2024
2.1.555 357 11/9/2024
2.1.554 100 11/9/2024
2.1.553 1,726 11/9/2024
2.1.552 103 11/9/2024
2.1.551 952 11/8/2024
2.1.550 105 11/8/2024
2.1.549 104 11/8/2024
2.1.548 105 11/8/2024
2.1.547 419 11/8/2024
2.1.546 1,886 11/8/2024
2.1.545 101 11/8/2024
2.1.544 5,448 11/8/2024
2.1.543 98 11/8/2024
2.1.542 11,639 11/1/2024
2.1.541 455 11/1/2024
2.1.540 6,772 10/29/2024
2.1.539 732 10/29/2024
2.1.538 2,829 10/29/2024
2.1.537 623 10/29/2024
2.1.536 5,553 10/28/2024
2.1.535 1,851 10/28/2024
2.1.534 4,006 10/26/2024
2.1.533 699 10/26/2024
2.1.532 9,071 10/22/2024
2.1.531 250 10/22/2024
2.1.530 545 10/22/2024
2.1.529 874 10/22/2024
2.1.528 89 10/22/2024
2.1.527 490 10/22/2024
2.1.526 6,499 10/18/2024
2.1.525 1,081 10/17/2024
2.1.524 4,146 10/15/2024
2.1.523 1,592 10/15/2024
2.1.522 97 10/14/2024
2.1.521 5,122 10/12/2024
2.1.520 646 10/11/2024
2.1.519 100 10/11/2024
2.1.518 470 10/11/2024
2.1.517 2,917 10/11/2024
2.1.516 6,371 10/9/2024
2.1.515 378 10/9/2024
2.1.514 96 10/9/2024
2.1.513 1,968 10/8/2024
2.1.512 138 10/8/2024
2.1.511 2,213 10/8/2024
2.1.510 141 10/8/2024
2.1.509 93 10/8/2024
2.1.508 3,933 10/8/2024
2.1.507 6,189 10/3/2024
2.1.506 101 10/3/2024
2.1.505 1,096 10/3/2024
2.1.504 1,920 10/3/2024
2.1.503 1,410 10/3/2024
2.1.502 5,716 10/2/2024
2.1.501 98 10/2/2024
2.1.500 1,811 10/2/2024
2.1.499 994 10/2/2024
2.1.498 4,170 10/1/2024
2.1.497 694 10/1/2024
2.1.496 109 10/1/2024
2.1.495 2,617 10/1/2024
2.1.494 103 10/1/2024
2.1.493 141 10/1/2024
2.1.492 5,418 9/29/2024
2.1.491 1,371 9/29/2024
2.1.490 102 9/29/2024
2.1.489 1,216 9/29/2024
2.1.488 99 9/29/2024
2.1.487 2,510 9/29/2024
2.1.486 5,225 9/27/2024
2.1.485 772 9/27/2024
2.1.484 3,125 9/27/2024
2.1.483 110 9/27/2024
2.1.482 443 9/27/2024
2.1.481 2,153 9/27/2024
2.1.480 3,152 9/26/2024
2.1.479 3,477 9/26/2024
2.1.478 2,350 9/26/2024
2.1.477 2,162 9/26/2024
2.1.476 3,800 9/26/2024
2.1.475 104 9/26/2024
2.1.474 5,597 9/23/2024
2.1.473 1,291 9/23/2024
2.1.472 946 9/23/2024
2.1.471 1,143 9/23/2024
2.1.470 99 9/23/2024
2.1.469 1,544 9/23/2024
2.1.468 97 9/23/2024
2.1.467 4,659 9/23/2024
2.1.466 103 9/23/2024
2.1.465 711 9/23/2024
2.1.464 112 9/23/2024
2.1.463 99 9/23/2024
2.1.462 882 9/23/2024
2.1.461 9,120 9/18/2024
2.1.460 250 9/17/2024
2.1.459 1,197 9/17/2024
2.1.458 1,709 9/17/2024
2.1.457 103 9/17/2024
2.1.456 1,800 9/17/2024
2.1.455 459 9/17/2024
2.1.454 3,270 9/17/2024
2.1.453 548 9/17/2024
2.1.452 192 9/17/2024
2.1.451 2,643 9/17/2024
2.1.450 7,447 9/16/2024
2.1.449 715 9/16/2024
2.1.448 5,012 9/12/2024
2.1.447 2,913 9/12/2024
2.1.446 1,305 9/11/2024
2.1.445 1,526 9/11/2024
2.1.443 3,712 9/11/2024
2.1.442 991 9/11/2024
2.1.441 955 9/11/2024
2.1.440 2,307 9/11/2024
2.1.439 8,083 9/10/2024
2.1.438 125 9/10/2024
2.1.437 1,148 9/10/2024
2.1.436 120 9/10/2024
2.1.434 2,915 9/10/2024
2.1.433 602 9/9/2024
2.1.432 2,005 9/9/2024
2.1.430 1,545 9/9/2024
2.1.428 141 9/9/2024
2.1.427 461 9/9/2024
2.1.426 13,239 9/7/2024
2.1.425 133 9/7/2024
2.1.424 5,001 9/6/2024
2.1.423 370 9/6/2024
2.1.422 2,204 9/6/2024
2.1.421 117 9/5/2024
2.1.420 129 9/5/2024
2.1.419 2,386 9/5/2024
2.1.418 1,151 9/5/2024
2.1.417 127 9/5/2024
2.1.416 1,147 9/5/2024
2.1.415 438 9/5/2024
2.1.414 121 9/5/2024
2.1.413 5,027 9/5/2024
2.1.412 199 9/5/2024
2.1.411 125 9/5/2024
2.1.410 2,257 9/4/2024
2.1.409 7,999 9/3/2024
2.1.408 110 9/3/2024
2.1.407 104 9/3/2024
2.1.406 4,008 9/3/2024
2.1.405 154 9/3/2024
2.1.404 2,482 9/3/2024
2.1.403 5,282 8/29/2024
2.1.402 2,548 8/29/2024
2.1.401 2,885 8/26/2024
2.1.400 112 8/26/2024
2.1.399 4,930 8/21/2024
2.1.398 610 8/21/2024
2.1.397 133 8/21/2024
2.1.396 2,550 8/21/2024
2.1.395 145 8/20/2024
2.1.394 134 8/20/2024
2.1.393 468 8/20/2024
2.1.392 2,954 8/20/2024
2.1.391 417 8/20/2024
2.1.390 118 8/20/2024
2.1.389 2,643 8/20/2024
2.1.388 120 8/20/2024
2.1.387 1,207 8/20/2024
2.1.386 2,894 8/19/2024
2.1.385 4,767 8/15/2024
2.1.384 2,112 8/15/2024
2.1.383 4,808 8/14/2024
2.1.382 157 8/13/2024
2.1.381 5,691 8/7/2024
2.1.380 276 8/6/2024
2.1.379 2,687 8/6/2024
2.1.378 4,924 8/1/2024
2.1.377 333 8/1/2024
2.1.376 100 8/1/2024
2.1.374 1,134 8/1/2024
2.1.373 5,792 7/25/2024
2.1.372 95 7/25/2024
2.1.371 722 7/25/2024
2.1.370 307 7/25/2024
2.1.369 357 7/25/2024
2.1.368 183 7/25/2024
2.1.367 383 7/24/2024
2.1.366 143 7/24/2024
2.1.365 206 7/24/2024
2.1.364 316 7/24/2024
2.1.363 8,456 7/20/2024
2.1.362 1,452 7/20/2024
2.1.361 4,999 7/14/2024
2.1.360 1,541 7/14/2024
2.1.359 104 7/14/2024
2.1.358 1,498 7/14/2024
2.1.357 4,314 7/10/2024
2.1.355 796 7/10/2024
2.1.354 1,182 7/10/2024
2.1.353 122 7/10/2024
2.1.352 1,903 7/10/2024
2.1.351 125 7/10/2024
2.1.350 110 7/10/2024
2.1.349 176 7/10/2024
2.1.348 108 7/10/2024
2.1.347 2,046 7/10/2024
2.1.346 124 7/10/2024
2.1.345 811 7/10/2024
2.1.344 110 7/10/2024
2.1.343 210 7/9/2024
2.1.342 99 7/9/2024
2.1.339 1,973 7/9/2024
2.1.338 486 7/9/2024
2.1.337 4,008 7/9/2024
2.1.336 1,069 7/9/2024
2.1.335 115 7/9/2024
2.1.334 2,571 7/9/2024
2.1.333 116 7/9/2024
2.1.332 8,123 7/9/2024
2.1.331 105 7/9/2024
2.1.330 2,501 7/9/2024
2.1.329 96 7/9/2024
2.1.328 1,062 7/9/2024
2.1.327 711 7/8/2024
2.1.326 961 7/8/2024
2.1.325 125 7/8/2024
2.1.324 122 7/8/2024
2.1.323 4,837 7/8/2024
2.1.322 1,617 7/8/2024
2.1.321 127 7/8/2024
2.1.320 2,273 7/7/2024
2.1.319 121 7/7/2024
2.1.318 130 7/7/2024
2.1.317 113 7/7/2024
2.1.316 1,150 7/7/2024
2.1.315 2,159 7/7/2024
2.1.314 1,848 7/7/2024
2.1.313 218 7/7/2024
2.1.312 3,382 7/5/2024
2.1.311 3,864 7/3/2024
2.1.310 3,033 7/3/2024
2.1.309 386 7/3/2024
2.1.308 3,898 7/2/2024
2.1.307 1,852 6/30/2024
2.1.306 2,241 6/28/2024
2.1.305 5,384 6/22/2024
2.1.304 4,845 6/15/2024
2.1.303 4,080 6/14/2024
2.1.302 5,870 6/1/2024
2.1.301 1,579 6/1/2024
2.1.300 579 6/1/2024
2.1.299 5,804 5/31/2024
2.1.298 3,686 5/29/2024
2.1.297 3,020 5/28/2024
2.1.296 2,453 5/27/2024
2.1.295 4,808 5/26/2024
2.1.294 2,007 5/26/2024
2.1.293 481 5/26/2024
2.1.292 2,494 5/25/2024
2.1.291 1,371 5/25/2024
2.1.290 128 5/25/2024
2.1.289 121 5/25/2024
2.1.288 675 5/25/2024
2.1.287 122 5/25/2024
2.1.286 402 5/25/2024
2.1.285 134 5/25/2024
2.1.284 123 5/25/2024
2.1.283 7,375 5/23/2024
2.1.282 525 5/23/2024
2.1.281 267 5/22/2024
2.1.280 3,618 5/22/2024
2.1.279 116 5/22/2024
2.1.278 130 5/22/2024
2.1.277 132 5/22/2024
2.1.276 2,108 5/22/2024
2.1.275 3,406 5/18/2024
2.1.274 1,885 5/18/2024
2.1.273 1,793 5/17/2024
2.1.272 111 5/17/2024
2.1.271 2,711 5/16/2024
2.1.270 434 5/15/2024
2.1.269 2,735 5/15/2024
2.1.268 4,433 5/12/2024
2.1.267 2,729 5/3/2024
2.1.266 1,127 4/30/2024
2.1.265 1,743 4/29/2024
2.1.264 1,894 4/29/2024
2.1.263 2,634 4/28/2024
2.1.262 1,471 4/28/2024
2.1.261 1,096 4/28/2024
2.1.260 1,743 4/28/2024
2.1.259 901 4/28/2024
2.1.258 114 4/28/2024
2.1.257 4,133 4/27/2024
2.1.256 127 4/27/2024
2.1.255 4,359 4/19/2024
2.1.254 4,054 4/18/2024
2.1.253 3,417 4/12/2024
2.1.252 1,138 4/12/2024
2.1.251 723 4/12/2024
2.1.250 856 4/12/2024
2.1.249 194 4/12/2024
2.1.248 110 4/12/2024
2.1.247 982 4/12/2024
2.1.246 301 4/12/2024
2.1.245 1,642 4/11/2024
2.1.244 3,700 4/10/2024
2.1.243 1,129 4/9/2024
2.1.242 3,153 4/2/2024
2.1.241 893 4/1/2024
2.1.240 2,070 3/29/2024
2.1.239 1,827 3/25/2024
2.1.238 292 3/25/2024
2.1.237 3,287 3/20/2024
2.1.236 2,129 3/19/2024
2.1.235 523 3/19/2024
2.1.234 2,332 3/18/2024
2.1.233 1,389 3/18/2024
2.1.232 1,370 3/15/2024
2.1.231 2,338 3/13/2024
2.1.230 1,092 3/13/2024
2.1.229 657 3/13/2024
2.1.228 757 3/13/2024
2.1.227 136 3/13/2024
2.1.226 537 3/13/2024
2.1.225 141 3/13/2024
2.1.224 148 3/13/2024
2.1.223 1,654 3/12/2024
2.1.222 2,817 3/11/2024
2.1.221 2,458 3/11/2024
2.1.220 1,615 3/10/2024
2.1.219 1,865 3/8/2024
2.1.218 1,053 3/8/2024
2.1.217 1,549 3/8/2024
2.1.216 2,067 3/6/2024
2.1.215 1,991 3/4/2024
2.1.214 1,406 3/4/2024
2.1.213 2,551 3/2/2024
2.1.212 1,205 3/2/2024
2.1.211 404 3/2/2024
2.1.210 348 3/2/2024
2.1.209 469 3/2/2024
2.1.208 3,411 2/29/2024
2.1.207 635 2/29/2024
2.1.206 335 2/29/2024
2.1.205 3,283 2/26/2024
2.1.204 1,478 2/25/2024
2.1.203 2,580 2/23/2024
2.1.202 1,886 2/22/2024
2.1.201 950 2/22/2024
2.1.200 430 2/21/2024
2.1.199 1,182 2/21/2024
2.1.198 291 2/21/2024
2.1.197 765 2/21/2024
2.1.196 131 2/21/2024
2.1.195 1,238 2/21/2024
2.1.194 406 2/21/2024
2.1.193 139 2/21/2024
2.1.192 138 2/21/2024
2.1.191 592 2/21/2024
2.1.190 118 2/21/2024
2.1.189 2,621 2/20/2024
2.1.188 717 2/20/2024
2.1.187 639 2/20/2024
2.1.186 750 2/20/2024
2.1.185 2,111 2/19/2024
2.1.184 1,862 2/17/2024
2.1.183 893 2/16/2024
2.1.182 856 2/16/2024
2.1.181 1,341 2/16/2024
2.1.180 124 2/16/2024
2.1.179 636 2/16/2024
2.1.178 134 2/16/2024
2.1.177 132 2/16/2024
2.1.176 552 2/16/2024
2.1.175 119 2/16/2024
2.1.174 3,279 2/13/2024
2.1.173 1,367 2/13/2024
2.1.172 1,079 2/13/2024
2.1.171 452 2/13/2024
2.1.170 625 2/13/2024
2.1.169 1,930 2/12/2024
2.1.168 509 2/11/2024
2.1.167 1,513 2/11/2024
2.1.166 853 2/11/2024
2.1.165 2,770 2/10/2024
2.1.164 544 2/9/2024
2.1.163 145 2/9/2024
2.1.162 1,553 2/9/2024
2.1.161 1,660 2/9/2024
2.1.160 385 2/8/2024
2.1.159 1,212 2/8/2024
2.1.158 847 2/8/2024
2.1.157 1,453 2/8/2024
2.1.156 128 2/8/2024
2.1.155 1,854 2/7/2024
2.1.154 440 2/7/2024
2.1.153 602 2/7/2024
2.1.152 1,261 2/7/2024
2.1.151 380 2/6/2024
2.1.150 136 2/6/2024
2.1.149 130 2/6/2024
2.1.148 2,764 2/5/2024
2.1.147 1,521 2/4/2024
2.1.146 2,077 2/2/2024
2.1.145 1,907 1/31/2024
2.1.144 2,126 1/29/2024
2.1.143 1,352 1/29/2024
2.1.142 345 1/29/2024
2.1.141 1,479 1/28/2024
2.1.140 456 1/28/2024
2.1.139 305 1/28/2024
2.1.138 543 1/28/2024
2.1.137 1,917 1/28/2024
2.1.136 921 1/28/2024
2.1.135 286 1/27/2024
2.1.134 926 1/27/2024
2.1.133 1,159 1/27/2024
2.1.132 1,177 1/27/2024
2.1.131 154 1/27/2024
2.1.130 696 1/27/2024
2.1.129 1,048 1/26/2024
2.1.128 219 1/26/2024
2.1.127 870 1/26/2024
2.1.126 1,116 1/26/2024
2.1.125 1,621 1/26/2024
2.1.124 877 1/25/2024
2.1.123 1,097 1/25/2024
2.1.122 452 1/25/2024
2.1.121 914 1/25/2024
2.1.120 519 1/25/2024
2.1.119 2,568 1/19/2024
2.1.118 2,212 1/15/2024
2.1.117 501 1/15/2024
2.1.116 1,209 1/15/2024
2.1.115 131 1/15/2024
2.1.114 562 1/15/2024
2.1.113 1,369 1/15/2024
2.1.112 2,540 1/14/2024
2.1.111 1,608 1/13/2024
2.1.110 1,834 1/12/2024
2.1.109 2,041 1/11/2024
2.1.108 2,636 1/7/2024
2.1.107 2,084 1/5/2024
2.1.106 486 1/5/2024
2.1.105 142 1/5/2024
2.1.104 147 1/5/2024
2.1.103 1,485 1/5/2024
2.1.102 147 1/5/2024
2.1.101 2,766 1/1/2024
2.1.100 2,214 12/28/2023
2.1.99 738 12/28/2023
2.1.98 498 12/28/2023
2.1.97 138 12/28/2023
2.1.96 134 12/28/2023
2.1.95 715 12/27/2023
2.1.94 145 12/27/2023
2.1.93 473 12/27/2023
2.1.92 140 12/27/2023
2.1.91 141 12/27/2023
2.1.90 2,217 12/25/2023
2.1.89 355 12/25/2023
2.1.88 779 12/25/2023
2.1.87 143 12/25/2023
2.1.86 637 12/25/2023
2.1.85 135 12/25/2023
2.1.84 573 12/25/2023
2.1.83 141 12/25/2023
2.1.82 1,660 12/24/2023
2.1.81 1,073 12/23/2023
2.1.80 871 12/23/2023
2.1.79 317 12/23/2023
2.1.78 558 12/23/2023
2.1.77 134 12/23/2023
2.1.76 125 12/23/2023
2.1.75 1,087 12/23/2023
2.1.74 128 12/23/2023
2.1.73 1,402 12/19/2023
2.1.72 222 12/19/2023
2.1.71 3,079 12/11/2023
2.1.70 724 12/10/2023
2.1.69 123 12/10/2023
2.1.68 490 12/10/2023
2.1.67 1,417 12/10/2023
2.1.66 371 12/9/2023
2.1.65 372 12/9/2023
2.1.64 296 12/9/2023
2.1.63 137 12/9/2023
2.1.62 268 12/9/2023
2.1.61 203 12/9/2023
2.1.60 138 12/9/2023
2.1.59 1,072 12/9/2023
2.1.58 132 12/9/2023
2.1.57 1,514 12/6/2023
2.1.56 391 12/6/2023
2.1.55 243 12/6/2023
2.1.54 272 12/6/2023
2.1.53 925 12/5/2023
2.1.52 378 12/5/2023
2.1.51 342 12/5/2023
2.1.50 383 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,007 12/4/2023
2.1.41 113 12/4/2023
2.1.40 1,169 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,046 11/20/2023
2.1.29 797 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 977 11/18/2023
2.1.21 378 11/18/2023
2.1.20 531 11/18/2023
2.1.19 131 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 516 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 333 11/17/2023
2.1.5 369 11/16/2023
2.0.101 2,071 11/15/2023
2.0.100 122 11/15/2023
2.0.99 131 11/15/2023
2.0.4 129 11/16/2023
2.0.3 133 11/16/2023
2.0.2 126 11/16/2023
2.0.1 121 11/16/2023
1.0.98 610 11/14/2023
1.0.97 749 11/13/2023
1.0.96 117 11/13/2023
1.0.95 570 11/10/2023
1.0.94 121 11/10/2023
1.0.93 934 11/9/2023
1.0.92 126 11/9/2023
1.0.91 1,043 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,295 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 648 10/16/2023
1.0.74 149 10/16/2023
1.0.73 697 10/13/2023
1.0.72 334 10/12/2023
1.0.71 1,732 9/20/2023
1.0.70 671 9/19/2023
1.0.69 679 9/18/2023
1.0.68 141 9/18/2023
1.0.67 885 9/14/2023
1.0.66 1,500 8/31/2023
1.0.65 147 8/31/2023
1.0.64 801 8/30/2023
1.0.63 156 8/30/2023
1.0.62 161 8/30/2023
1.0.61 836 8/28/2023
1.0.60 690 8/25/2023
1.0.59 149 8/25/2023
1.0.58 488 8/24/2023
1.0.57 1,443 8/21/2023
1.0.56 824 8/18/2023
1.0.55 744 8/17/2023
1.0.54 153 8/17/2023
1.0.53 1,895 8/10/2023
1.0.52 561 8/9/2023
1.0.51 669 8/8/2023
1.0.50 651 8/7/2023
1.0.49 177 8/7/2023
1.0.48 2,451 7/13/2023
1.0.47 883 7/11/2023
1.0.46 719 7/10/2023
1.0.45 684 7/7/2023
1.0.44 171 7/7/2023
1.0.43 2,106 6/30/2023
1.0.42 1,053 6/29/2023
1.0.41 594 6/28/2023
1.0.40 1,532 6/26/2023
1.0.39 778 6/23/2023
1.0.38 1,086 6/21/2023
1.0.37 1,444 6/15/2023
1.0.36 477 6/14/2023
1.0.35 1,795 6/9/2023
1.0.34 824 6/8/2023
1.0.33 1,625 6/7/2023
1.0.32 175 6/7/2023
1.0.31 1,218 6/6/2023
1.0.30 1,177 6/5/2023
1.0.29 1,351 6/2/2023
1.0.28 162 6/2/2023
1.0.27 1,247 6/1/2023
1.0.26 602 5/31/2023
1.0.25 486 5/31/2023
1.0.24 169 5/31/2023
1.0.23 1,465 5/30/2023
1.0.22 1,520 5/26/2023
1.0.21 678 5/25/2023
1.0.20 155 5/25/2023
1.0.19 833 5/24/2023
1.0.18 163 5/24/2023
1.0.17 452 5/23/2023
1.0.13 1,471 5/22/2023
1.0.12 1,192 5/18/2023
1.0.11 596 5/17/2023
1.0.10 1,555 5/1/2023
1.0.9 1,028 4/25/2023
1.0.8 479 4/24/2023
1.0.7 1,002 4/21/2023
1.0.6 1,962 4/13/2023
1.0.5 599 4/12/2023
1.0.4 1,021 4/8/2023
1.0.3 194 4/8/2023
1.0.2 593 4/8/2023
1.0.1 199 4/8/2023