Soenneker.Utils.SingletonDictionary 2.1.235

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.235
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 2.1.235
                    
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.235" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="2.1.235" />
                    
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 2.1.235
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 2.1.235"
                    
#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.
#:package Soenneker.Utils.SingletonDictionary@2.1.235
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=2.1.235
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=2.1.235
                    
Install 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 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.  net9.0 was computed.  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.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.SignalR.Web.Clients

Providing async thread-safe resilient and dependable SignalR web client singletons

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1106 5,979 9/3/2025
3.0.1105 212 9/3/2025
3.0.1104 1,133 9/3/2025
3.0.1103 18,731 8/14/2025
3.0.1102 4,689 8/11/2025
3.0.1101 1,891 8/11/2025
3.0.1100 496 8/11/2025
3.0.1099 123 8/11/2025
3.0.1098 14,472 8/6/2025
3.0.1097 3,233 8/5/2025
3.0.1096 15,825 7/9/2025
3.0.1095 23,209 6/28/2025
3.0.1094 1,251 6/28/2025
3.0.1093 1,798 6/27/2025
3.0.1092 2,279 6/27/2025
3.0.1091 24,523 6/10/2025
3.0.1090 17,331 5/27/2025
3.0.1089 899 5/27/2025
3.0.1088 969 5/27/2025
3.0.1087 2,295 5/27/2025
3.0.1086 13,940 5/23/2025
3.0.1085 1,266 5/23/2025
3.0.1084 1,221 5/23/2025
3.0.1083 1,245 5/23/2025
3.0.1082 264 5/22/2025
3.0.1081 9,598 5/18/2025
3.0.1079 1,432 5/18/2025
3.0.1078 1,381 5/18/2025
3.0.1077 4,152 5/14/2025
3.0.1076 9,292 5/8/2025
3.0.1075 298 5/8/2025
3.0.1074 606 5/8/2025
3.0.1073 1,101 5/7/2025
3.0.1072 12,989 5/5/2025
3.0.1071 871 5/5/2025
3.0.1070 1,562 5/5/2025
3.0.1069 732 5/5/2025
3.0.1068 246 5/5/2025
3.0.1067 164 5/5/2025
3.0.1066 18,179 4/9/2025
3.0.1065 290 4/9/2025
3.0.1064 1,079 4/8/2025
3.0.1063 2,214 4/8/2025
3.0.1062 3,024 4/8/2025
3.0.1061 210 4/8/2025
3.0.1060 190 4/8/2025
3.0.1059 211 4/8/2025
3.0.1058 179 4/8/2025
3.0.1057 884 4/8/2025
3.0.1056 307 4/8/2025
3.0.1055 6,419 4/8/2025
3.0.1054 674 4/8/2025
3.0.1053 3,306 4/7/2025
3.0.1052 727 4/7/2025
3.0.1051 187 4/7/2025
3.0.1050 614 4/7/2025
3.0.1049 194 4/7/2025
3.0.1048 6,794 4/7/2025
3.0.1047 194 4/7/2025
3.0.1046 9,360 4/7/2025
3.0.1045 183 4/7/2025
3.0.1044 1,398 4/7/2025
3.0.1043 186 4/7/2025
3.0.1042 1,644 4/7/2025
3.0.1041 958 4/6/2025
3.0.1040 312 4/6/2025
3.0.1039 187 4/6/2025
3.0.1038 1,088 4/6/2025
3.0.1037 186 4/6/2025
3.0.1036 424 4/6/2025
3.0.1035 1,207 4/6/2025
3.0.1034 165 4/6/2025
3.0.1033 2,073 4/6/2025
3.0.1032 133 4/6/2025
3.0.1031 170 4/6/2025
3.0.1030 136 4/6/2025
3.0.1029 1,631 4/5/2025
3.0.1028 194 4/5/2025
3.0.1027 1,174 4/5/2025
3.0.1026 1,233 4/5/2025
3.0.1025 1,077 4/5/2025
3.0.1024 656 4/5/2025
3.0.1023 567 4/5/2025
3.0.1022 133 4/5/2025
3.0.1021 1,296 4/4/2025
3.0.1020 6,974 4/4/2025
3.0.1019 23,348 4/4/2025
3.0.1018 6,659 4/1/2025
3.0.1017 2,637 4/1/2025
3.0.1016 187 4/1/2025
3.0.1015 5,428 4/1/2025
3.0.1014 2,358 3/31/2025
3.0.1013 386 3/31/2025
3.0.1012 3,913 3/31/2025
3.0.1011 6,741 3/29/2025
3.0.1010 1,077 3/29/2025
3.0.1009 1,420 3/29/2025
3.0.1008 123 3/29/2025
3.0.1007 4,325 3/27/2025
3.0.1006 3,847 3/25/2025
3.0.1005 614 3/25/2025
3.0.1004 3,108 3/25/2025
3.0.1003 6,084 3/21/2025
3.0.1002 2,562 3/21/2025
3.0.1001 7,301 3/18/2025
3.0.1000 3,395 3/18/2025
3.0.999 6,339 3/15/2025
3.0.998 1,799 3/15/2025
3.0.997 98 3/15/2025
3.0.996 6,053 3/12/2025
3.0.995 2,165 3/12/2025
3.0.994 188 3/12/2025
3.0.993 413 3/12/2025
3.0.992 178 3/12/2025
3.0.991 2,707 3/11/2025
3.0.990 184 3/11/2025
3.0.989 1,286 3/11/2025
3.0.988 190 3/11/2025
3.0.987 2,571 3/11/2025
3.0.986 193 3/11/2025
3.0.985 2,656 3/11/2025
3.0.984 175 3/11/2025
3.0.983 1,633 3/11/2025
3.0.982 179 3/11/2025
3.0.981 8,867 3/7/2025
3.0.980 2,604 3/7/2025
3.0.979 6,162 3/2/2025
3.0.978 1,048 3/2/2025
3.0.977 658 3/2/2025
3.0.976 125 3/2/2025
3.0.975 4,331 3/2/2025
3.0.974 125 3/2/2025
3.0.973 3,184 3/1/2025
3.0.972 113 3/1/2025
3.0.971 4,276 3/1/2025
3.0.970 138 3/1/2025
3.0.969 113 3/1/2025
3.0.968 419 3/1/2025
3.0.967 119 3/1/2025
3.0.966 5,800 3/1/2025
3.0.965 4,771 2/26/2025
3.0.964 833 2/26/2025
3.0.963 2,326 2/25/2025
3.0.962 121 2/25/2025
3.0.961 860 2/25/2025
3.0.960 109 2/25/2025
3.0.959 147 2/25/2025
3.0.958 1,836 2/25/2025
3.0.957 4,834 2/24/2025
3.0.956 4,477 2/23/2025
3.0.955 1,092 2/22/2025
3.0.954 115 2/22/2025
3.0.953 7,550 2/22/2025
3.0.952 2,206 2/22/2025
3.0.951 1,062 2/22/2025
3.0.950 778 2/22/2025
3.0.949 154 2/22/2025
3.0.948 127 2/22/2025
3.0.947 124 2/22/2025
3.0.946 4,630 2/21/2025
3.0.945 120 2/21/2025
3.0.944 5,496 2/21/2025
3.0.943 4,551 2/19/2025
3.0.942 1,626 2/19/2025
3.0.941 734 2/19/2025
3.0.940 128 2/19/2025
3.0.939 413 2/18/2025
3.0.938 128 2/18/2025
3.0.937 5,451 2/18/2025
3.0.936 121 2/18/2025
3.0.935 2,814 2/18/2025
3.0.934 6,799 2/16/2025
3.0.933 1,537 2/14/2025
3.0.932 820 2/14/2025
3.0.931 723 2/13/2025
3.0.930 2,388 2/13/2025
3.0.929 296 2/13/2025
3.0.928 3,689 2/13/2025
3.0.927 3,885 2/12/2025
3.0.926 1,461 2/12/2025
3.0.925 160 2/12/2025
3.0.924 128 2/12/2025
3.0.923 2,011 2/12/2025
3.0.922 365 2/12/2025
3.0.921 138 2/12/2025
3.0.920 197 2/12/2025
3.0.919 205 2/12/2025
3.0.918 125 2/12/2025
3.0.917 178 2/11/2025
3.0.916 3,391 2/11/2025
3.0.915 3,681 2/11/2025
3.0.914 2,200 2/11/2025
3.0.913 139 2/11/2025
3.0.912 409 2/11/2025
3.0.911 1,739 2/10/2025
3.0.910 140 2/10/2025
3.0.909 798 2/10/2025
3.0.908 137 2/10/2025
3.0.907 6,324 2/10/2025
3.0.906 133 2/10/2025
3.0.905 1,177 2/9/2025
3.0.904 5,605 2/9/2025
3.0.903 127 2/9/2025
3.0.902 7,117 2/8/2025
3.0.901 134 2/8/2025
3.0.900 1,698 2/7/2025
3.0.899 124 2/7/2025
3.0.898 1,594 2/7/2025
3.0.897 128 2/7/2025
3.0.896 658 2/7/2025
3.0.895 435 2/7/2025
3.0.894 137 2/7/2025
3.0.893 350 2/7/2025
3.0.892 124 2/7/2025
3.0.891 1,048 2/7/2025
3.0.890 119 2/7/2025
3.0.889 133 2/7/2025
3.0.888 10,579 2/7/2025
3.0.887 6,179 2/5/2025
3.0.886 616 2/5/2025
3.0.885 899 2/5/2025
3.0.884 299 2/5/2025
3.0.883 995 2/5/2025
3.0.882 669 2/5/2025
3.0.881 2,924 2/5/2025
3.0.880 122 2/5/2025
3.0.879 10,749 1/28/2025
3.0.878 653 1/28/2025
3.0.877 1,748 1/28/2025
3.0.876 237 1/28/2025
3.0.875 3,665 1/28/2025
3.0.874 636 1/27/2025
3.0.873 103 1/27/2025
3.0.872 199 1/27/2025
3.0.871 279 1/27/2025
3.0.870 113 1/27/2025
3.0.869 4,713 1/27/2025
3.0.868 4,384 1/26/2025
3.0.867 942 1/26/2025
3.0.866 193 1/26/2025
3.0.865 1,023 1/26/2025
3.0.864 1,327 1/25/2025
3.0.863 118 1/25/2025
3.0.862 5,529 1/25/2025
3.0.861 967 1/25/2025
3.0.860 309 1/25/2025
3.0.859 124 1/25/2025
3.0.858 1,809 1/25/2025
3.0.857 1,269 1/25/2025
3.0.856 6,396 1/24/2025
3.0.855 1,485 1/24/2025
3.0.854 105 1/24/2025
3.0.853 1,932 1/24/2025
3.0.852 332 1/24/2025
3.0.851 227 1/24/2025
3.0.850 3,019 1/24/2025
3.0.849 115 1/24/2025
3.0.848 494 1/23/2025
3.0.847 119 1/23/2025
3.0.846 579 1/23/2025
3.0.845 111 1/23/2025
3.0.844 7,573 1/22/2025
3.0.843 978 1/21/2025
3.0.842 962 1/21/2025
3.0.841 578 1/21/2025
3.0.840 114 1/21/2025
3.0.839 601 1/21/2025
3.0.838 748 1/21/2025
3.0.837 5,231 1/21/2025
3.0.836 543 1/21/2025
3.0.835 1,006 1/21/2025
3.0.834 124 1/21/2025
3.0.833 802 1/21/2025
3.0.832 118 1/21/2025
3.0.831 2,094 1/21/2025
3.0.830 108 1/21/2025
3.0.829 398 1/20/2025
3.0.828 2,702 1/20/2025
3.0.827 251 1/20/2025
3.0.826 1,979 1/20/2025
3.0.825 119 1/20/2025
3.0.824 1,060 1/20/2025
3.0.823 122 1/20/2025
3.0.822 133 1/20/2025
3.0.821 122 1/20/2025
3.0.820 367 1/20/2025
3.0.819 125 1/20/2025
3.0.818 120 1/20/2025
3.0.817 5,405 1/19/2025
3.0.816 124 1/19/2025
3.0.815 4,999 1/19/2025
3.0.814 1,563 1/19/2025
3.0.813 136 1/19/2025
3.0.812 385 1/19/2025
3.0.811 115 1/19/2025
3.0.810 1,824 1/19/2025
3.0.809 113 1/19/2025
3.0.808 3,113 1/18/2025
3.0.807 120 1/18/2025
3.0.806 6,897 1/17/2025
3.0.805 126 1/17/2025
3.0.804 598 1/17/2025
3.0.803 920 1/17/2025
3.0.802 4,008 1/16/2025
3.0.801 1,408 1/16/2025
3.0.800 2,017 1/16/2025
3.0.799 543 1/16/2025
3.0.798 1,176 1/16/2025
3.0.797 1,002 1/16/2025
3.0.796 109 1/16/2025
3.0.795 4,398 1/15/2025
3.0.794 110 1/15/2025
3.0.793 2,713 1/15/2025
3.0.792 112 1/15/2025
3.0.791 157 1/15/2025
3.0.790 3,195 1/15/2025
3.0.789 103 1/15/2025
3.0.788 2,686 1/15/2025
3.0.787 93 1/15/2025
3.0.786 452 1/15/2025
3.0.785 87 1/15/2025
3.0.784 1,560 1/15/2025
3.0.783 88 1/15/2025
3.0.782 234 1/14/2025
3.0.781 102 1/14/2025
3.0.780 105 1/14/2025
3.0.779 2,966 1/14/2025
3.0.778 535 1/14/2025
3.0.777 108 1/14/2025
3.0.776 1,197 1/14/2025
3.0.775 100 1/14/2025
3.0.774 4,983 1/13/2025
3.0.773 1,555 1/13/2025
3.0.772 1,316 1/13/2025
3.0.771 111 1/13/2025
3.0.770 4,852 1/11/2025
3.0.769 1,962 1/11/2025
3.0.768 136 1/11/2025
3.0.767 2,079 1/11/2025
3.0.766 121 1/11/2025
3.0.765 1,677 1/10/2025
3.0.764 1,823 1/10/2025
3.0.763 118 1/10/2025
3.0.762 778 1/10/2025
3.0.761 128 1/10/2025
3.0.760 115 1/10/2025
3.0.759 6,271 1/3/2025
3.0.758 481 1/3/2025
3.0.757 999 1/3/2025
3.0.756 151 1/3/2025
3.0.755 1,437 1/3/2025
3.0.754 126 1/3/2025
3.0.753 1,074 1/3/2025
3.0.752 1,042 1/2/2025
3.0.751 125 1/2/2025
3.0.750 1,718 1/2/2025
3.0.749 131 1/2/2025
3.0.748 2,846 1/2/2025
3.0.747 121 1/2/2025
3.0.746 132 1/2/2025
3.0.745 4,668 1/1/2025
3.0.744 1,020 1/1/2025
3.0.743 293 1/1/2025
3.0.742 139 1/1/2025
3.0.741 1,487 1/1/2025
3.0.740 131 1/1/2025
3.0.739 132 1/1/2025
3.0.738 139 1/1/2025
3.0.737 334 12/31/2024
3.0.736 141 12/31/2024
3.0.735 142 12/31/2024
3.0.734 633 12/31/2024
3.0.733 148 12/31/2024
3.0.732 4,574 12/31/2024
3.0.731 140 12/31/2024
3.0.730 4,380 12/31/2024
3.0.729 115 12/31/2024
3.0.728 2,588 12/31/2024
3.0.727 348 12/31/2024
3.0.726 128 12/31/2024
3.0.725 1,332 12/31/2024
3.0.724 123 12/31/2024
3.0.723 8,881 12/28/2024
3.0.722 1,141 12/28/2024
3.0.721 1,250 12/27/2024
3.0.720 138 12/27/2024
3.0.719 2,704 12/27/2024
3.0.718 4,909 12/24/2024
3.0.717 1,270 12/24/2024
3.0.716 953 12/24/2024
3.0.715 821 12/24/2024
3.0.714 1,392 12/24/2024
3.0.713 120 12/24/2024
3.0.712 2,278 12/24/2024
3.0.711 661 12/24/2024
3.0.710 121 12/24/2024
3.0.709 476 12/24/2024
3.0.708 989 12/24/2024
3.0.707 279 12/24/2024
3.0.706 149 12/24/2024
3.0.705 1,068 12/24/2024
3.0.704 130 12/24/2024
3.0.703 1,810 12/23/2024
3.0.702 2,767 12/23/2024
3.0.701 130 12/23/2024
3.0.700 697 12/23/2024
3.0.699 124 12/23/2024
3.0.698 1,855 12/23/2024
3.0.697 128 12/23/2024
3.0.696 1,465 12/23/2024
3.0.695 133 12/23/2024
3.0.694 462 12/22/2024
3.0.693 1,412 12/22/2024
3.0.692 4,012 12/22/2024
3.0.691 133 12/22/2024
3.0.690 1,571 12/22/2024
3.0.689 175 12/22/2024
3.0.688 491 12/22/2024
3.0.687 120 12/22/2024
3.0.686 282 12/22/2024
3.0.685 128 12/22/2024
3.0.684 6,788 12/22/2024
3.0.683 120 12/22/2024
3.0.682 1,086 12/21/2024
3.0.681 291 12/21/2024
3.0.680 123 12/21/2024
3.0.679 513 12/21/2024
3.0.678 798 12/21/2024
3.0.677 122 12/21/2024
3.0.676 3,805 12/21/2024
3.0.675 411 12/21/2024
3.0.674 123 12/21/2024
3.0.673 2,553 12/21/2024
3.0.672 694 12/21/2024
3.0.671 132 12/21/2024
3.0.670 1,599 12/20/2024
3.0.669 134 12/20/2024
3.0.668 130 12/20/2024
3.0.667 3,710 12/20/2024
3.0.666 1,152 12/20/2024
3.0.665 241 12/20/2024
3.0.664 3,472 12/19/2024
3.0.663 439 12/19/2024
3.0.662 2,045 12/18/2024
3.0.661 124 12/18/2024
3.0.660 6,596 12/17/2024
3.0.659 236 12/17/2024
3.0.658 710 12/16/2024
3.0.657 131 12/16/2024
3.0.656 165 12/16/2024
3.0.655 119 12/16/2024
3.0.654 6,505 12/10/2024
3.0.653 1,015 12/10/2024
3.0.652 402 12/9/2024
3.0.651 126 12/9/2024
3.0.650 2,691 12/9/2024
3.0.649 1,391 12/9/2024
3.0.648 122 12/9/2024
3.0.647 3,649 12/9/2024
3.0.646 2,761 12/6/2024
3.0.645 446 12/6/2024
3.0.644 128 12/6/2024
3.0.643 703 12/6/2024
3.0.641 3,901 12/6/2024
3.0.640 2,468 12/6/2024
3.0.639 5,292 12/6/2024
3.0.637 393 12/6/2024
3.0.636 2,546 12/5/2024
3.0.635 3,585 12/5/2024
3.0.634 3,190 12/5/2024
3.0.633 124 12/5/2024
3.0.632 1,765 12/5/2024
3.0.631 1,050 12/5/2024
3.0.630 133 12/5/2024
3.0.629 402 12/5/2024
3.0.628 125 12/5/2024
3.0.627 169 12/5/2024
3.0.626 125 12/5/2024
3.0.625 3,382 12/4/2024
3.0.624 126 12/4/2024
3.0.623 141 12/4/2024
3.0.622 139 12/4/2024
3.0.621 1,736 12/4/2024
3.0.620 324 12/4/2024
3.0.619 428 12/4/2024
3.0.618 3,397 12/3/2024
3.0.617 132 12/3/2024
3.0.616 1,141 12/3/2024
3.0.615 463 12/3/2024
3.0.614 140 12/3/2024
3.0.613 140 12/3/2024
3.0.612 4,054 12/3/2024
3.0.611 122 12/3/2024
3.0.610 3,312 12/3/2024
3.0.609 120 12/3/2024
3.0.608 3,095 12/2/2024
3.0.607 2,681 12/2/2024
3.0.606 1,641 12/2/2024
3.0.605 301 12/2/2024
3.0.604 132 12/2/2024
3.0.603 420 12/2/2024
3.0.602 3,475 12/1/2024
3.0.601 129 12/1/2024
3.0.600 1,914 12/1/2024
3.0.599 222 12/1/2024
3.0.598 3,477 12/1/2024
3.0.597 133 12/1/2024
3.0.596 3,579 11/29/2024
3.0.595 1,067 11/29/2024
3.0.594 6,052 11/21/2024
3.0.593 322 11/21/2024
3.0.592 4,548 11/20/2024
3.0.591 366 11/20/2024
3.0.590 136 11/20/2024
3.0.589 129 11/20/2024
3.0.588 450 11/20/2024
3.0.587 186 11/20/2024
3.0.586 122 11/20/2024
3.0.585 2,050 11/20/2024
3.0.584 2,780 11/19/2024
3.0.583 129 11/19/2024
3.0.582 659 11/19/2024
3.0.581 118 11/19/2024
3.0.580 2,692 11/19/2024
3.0.579 113 11/19/2024
3.0.578 1,337 11/19/2024
3.0.577 135 11/19/2024
3.0.576 8,547 11/14/2024
3.0.575 166 11/14/2024
3.0.574 535 11/14/2024
3.0.573 2,397 11/14/2024
3.0.572 749 11/14/2024
3.0.571 142 11/14/2024
3.0.570 136 11/14/2024
3.0.569 4,174 11/14/2024
3.0.568 133 11/14/2024
3.0.567 131 11/14/2024
3.0.566 3,501 11/14/2024
3.0.565 131 11/14/2024
3.0.564 133 11/14/2024
3.0.563 130 11/14/2024
2.1.562 8,651 11/13/2024
2.1.561 1,441 11/13/2024
2.1.560 3,082 11/13/2024
2.1.559 142 11/13/2024
2.1.558 1,353 11/12/2024
2.1.557 417 11/12/2024
2.1.556 8,272 11/9/2024
2.1.555 388 11/9/2024
2.1.554 136 11/9/2024
2.1.553 1,757 11/9/2024
2.1.552 127 11/9/2024
2.1.551 989 11/8/2024
2.1.550 134 11/8/2024
2.1.549 135 11/8/2024
2.1.548 132 11/8/2024
2.1.547 449 11/8/2024
2.1.546 1,923 11/8/2024
2.1.545 125 11/8/2024
2.1.544 5,493 11/8/2024
2.1.543 119 11/8/2024
2.1.542 11,697 11/1/2024
2.1.541 488 11/1/2024
2.1.540 6,810 10/29/2024
2.1.539 769 10/29/2024
2.1.538 2,855 10/29/2024
2.1.537 650 10/29/2024
2.1.536 5,581 10/28/2024
2.1.535 1,876 10/28/2024
2.1.534 4,034 10/26/2024
2.1.533 723 10/26/2024
2.1.532 9,370 10/22/2024
2.1.531 278 10/22/2024
2.1.530 571 10/22/2024
2.1.529 906 10/22/2024
2.1.528 127 10/22/2024
2.1.527 519 10/22/2024
2.1.526 6,529 10/18/2024
2.1.525 1,109 10/17/2024
2.1.524 4,172 10/15/2024
2.1.523 1,621 10/15/2024
2.1.522 123 10/14/2024
2.1.521 5,161 10/12/2024
2.1.520 672 10/11/2024
2.1.519 124 10/11/2024
2.1.518 499 10/11/2024
2.1.517 2,965 10/11/2024
2.1.516 6,490 10/9/2024
2.1.515 403 10/9/2024
2.1.514 117 10/9/2024
2.1.513 1,999 10/8/2024
2.1.512 172 10/8/2024
2.1.511 2,250 10/8/2024
2.1.510 164 10/8/2024
2.1.509 120 10/8/2024
2.1.508 3,963 10/8/2024
2.1.507 6,257 10/3/2024
2.1.506 129 10/3/2024
2.1.505 1,124 10/3/2024
2.1.504 1,953 10/3/2024
2.1.503 1,448 10/3/2024
2.1.502 5,754 10/2/2024
2.1.501 126 10/2/2024
2.1.500 1,840 10/2/2024
2.1.499 1,031 10/2/2024
2.1.498 4,203 10/1/2024
2.1.497 730 10/1/2024
2.1.496 140 10/1/2024
2.1.495 2,649 10/1/2024
2.1.494 130 10/1/2024
2.1.493 170 10/1/2024
2.1.492 5,478 9/29/2024
2.1.491 1,406 9/29/2024
2.1.490 129 9/29/2024
2.1.489 1,248 9/29/2024
2.1.488 136 9/29/2024
2.1.487 2,537 9/29/2024
2.1.486 5,260 9/27/2024
2.1.485 796 9/27/2024
2.1.484 3,153 9/27/2024
2.1.483 142 9/27/2024
2.1.482 475 9/27/2024
2.1.481 2,177 9/27/2024
2.1.480 3,190 9/26/2024
2.1.479 3,499 9/26/2024
2.1.478 2,375 9/26/2024
2.1.477 2,189 9/26/2024
2.1.476 3,840 9/26/2024
2.1.475 127 9/26/2024
2.1.474 5,639 9/23/2024
2.1.473 1,322 9/23/2024
2.1.472 987 9/23/2024
2.1.471 1,178 9/23/2024
2.1.470 136 9/23/2024
2.1.469 1,572 9/23/2024
2.1.468 117 9/23/2024
2.1.467 4,693 9/23/2024
2.1.466 133 9/23/2024
2.1.465 748 9/23/2024
2.1.464 148 9/23/2024
2.1.463 121 9/23/2024
2.1.462 904 9/23/2024
2.1.461 9,418 9/18/2024
2.1.460 273 9/17/2024
2.1.459 1,237 9/17/2024
2.1.458 1,737 9/17/2024
2.1.457 139 9/17/2024
2.1.456 1,831 9/17/2024
2.1.455 497 9/17/2024
2.1.454 3,312 9/17/2024
2.1.453 583 9/17/2024
2.1.452 225 9/17/2024
2.1.451 2,682 9/17/2024
2.1.450 7,473 9/16/2024
2.1.449 740 9/16/2024
2.1.448 5,108 9/12/2024
2.1.447 2,941 9/12/2024
2.1.446 1,346 9/11/2024
2.1.445 1,558 9/11/2024
2.1.443 3,743 9/11/2024
2.1.442 1,025 9/11/2024
2.1.441 987 9/11/2024
2.1.440 2,340 9/11/2024
2.1.439 8,108 9/10/2024
2.1.438 153 9/10/2024
2.1.437 1,176 9/10/2024
2.1.436 145 9/10/2024
2.1.434 2,951 9/10/2024
2.1.433 629 9/9/2024
2.1.432 2,029 9/9/2024
2.1.430 1,574 9/9/2024
2.1.428 161 9/9/2024
2.1.427 493 9/9/2024
2.1.426 13,280 9/7/2024
2.1.425 167 9/7/2024
2.1.424 5,040 9/6/2024
2.1.423 394 9/6/2024
2.1.422 2,241 9/6/2024
2.1.421 149 9/5/2024
2.1.420 156 9/5/2024
2.1.419 2,418 9/5/2024
2.1.418 1,179 9/5/2024
2.1.417 149 9/5/2024
2.1.416 1,177 9/5/2024
2.1.415 468 9/5/2024
2.1.414 145 9/5/2024
2.1.413 5,075 9/5/2024
2.1.412 223 9/5/2024
2.1.411 156 9/5/2024
2.1.410 2,292 9/4/2024
2.1.409 8,039 9/3/2024
2.1.408 135 9/3/2024
2.1.407 135 9/3/2024
2.1.406 4,042 9/3/2024
2.1.405 174 9/3/2024
2.1.404 2,520 9/3/2024
2.1.403 5,319 8/29/2024
2.1.402 2,581 8/29/2024
2.1.401 2,906 8/26/2024
2.1.400 132 8/26/2024
2.1.399 4,970 8/21/2024
2.1.398 638 8/21/2024
2.1.397 169 8/21/2024
2.1.396 2,577 8/21/2024
2.1.395 174 8/20/2024
2.1.394 172 8/20/2024
2.1.393 509 8/20/2024
2.1.392 2,988 8/20/2024
2.1.391 447 8/20/2024
2.1.390 148 8/20/2024
2.1.389 2,676 8/20/2024
2.1.388 151 8/20/2024
2.1.387 1,234 8/20/2024
2.1.386 2,919 8/19/2024
2.1.385 4,804 8/15/2024
2.1.384 2,145 8/15/2024
2.1.383 4,838 8/14/2024
2.1.382 175 8/13/2024
2.1.381 5,722 8/7/2024
2.1.380 306 8/6/2024
2.1.379 2,722 8/6/2024
2.1.378 4,949 8/1/2024
2.1.377 360 8/1/2024
2.1.376 124 8/1/2024
2.1.374 1,169 8/1/2024
2.1.373 5,829 7/25/2024
2.1.372 119 7/25/2024
2.1.371 753 7/25/2024
2.1.370 334 7/25/2024
2.1.369 385 7/25/2024
2.1.368 204 7/25/2024
2.1.367 412 7/24/2024
2.1.366 181 7/24/2024
2.1.365 232 7/24/2024
2.1.364 342 7/24/2024
2.1.363 8,628 7/20/2024
2.1.362 1,483 7/20/2024
2.1.361 5,043 7/14/2024
2.1.360 1,581 7/14/2024
2.1.359 132 7/14/2024
2.1.358 1,523 7/14/2024
2.1.357 4,346 7/10/2024
2.1.355 819 7/10/2024
2.1.354 1,214 7/10/2024
2.1.353 146 7/10/2024
2.1.352 1,927 7/10/2024
2.1.351 155 7/10/2024
2.1.350 131 7/10/2024
2.1.349 197 7/10/2024
2.1.348 138 7/10/2024
2.1.347 2,073 7/10/2024
2.1.346 154 7/10/2024
2.1.345 836 7/10/2024
2.1.344 133 7/10/2024
2.1.343 239 7/9/2024
2.1.342 119 7/9/2024
2.1.339 2,000 7/9/2024
2.1.338 507 7/9/2024
2.1.337 4,041 7/9/2024
2.1.336 1,088 7/9/2024
2.1.335 147 7/9/2024
2.1.334 2,603 7/9/2024
2.1.333 134 7/9/2024
2.1.332 10,067 7/9/2024
2.1.331 140 7/9/2024
2.1.330 2,530 7/9/2024
2.1.329 124 7/9/2024
2.1.328 1,092 7/9/2024
2.1.327 730 7/8/2024
2.1.326 992 7/8/2024
2.1.325 148 7/8/2024
2.1.324 150 7/8/2024
2.1.323 4,876 7/8/2024
2.1.322 1,651 7/8/2024
2.1.321 145 7/8/2024
2.1.320 2,308 7/7/2024
2.1.319 149 7/7/2024
2.1.318 165 7/7/2024
2.1.317 150 7/7/2024
2.1.316 1,173 7/7/2024
2.1.315 2,195 7/7/2024
2.1.314 1,890 7/7/2024
2.1.313 247 7/7/2024
2.1.312 3,418 7/5/2024
2.1.311 3,900 7/3/2024
2.1.310 3,062 7/3/2024
2.1.309 417 7/3/2024
2.1.308 3,925 7/2/2024
2.1.307 1,884 6/30/2024
2.1.306 2,266 6/28/2024
2.1.305 5,421 6/22/2024
2.1.304 4,889 6/15/2024
2.1.303 4,111 6/14/2024
2.1.302 5,898 6/1/2024
2.1.301 1,616 6/1/2024
2.1.300 609 6/1/2024
2.1.299 5,836 5/31/2024
2.1.298 3,723 5/29/2024
2.1.297 3,047 5/28/2024
2.1.296 2,483 5/27/2024
2.1.295 4,842 5/26/2024
2.1.294 2,041 5/26/2024
2.1.293 505 5/26/2024
2.1.292 2,518 5/25/2024
2.1.291 1,404 5/25/2024
2.1.290 159 5/25/2024
2.1.289 156 5/25/2024
2.1.288 714 5/25/2024
2.1.287 150 5/25/2024
2.1.286 433 5/25/2024
2.1.285 156 5/25/2024
2.1.284 147 5/25/2024
2.1.283 7,430 5/23/2024
2.1.282 548 5/23/2024
2.1.281 300 5/22/2024
2.1.280 3,653 5/22/2024
2.1.279 149 5/22/2024
2.1.278 160 5/22/2024
2.1.277 156 5/22/2024
2.1.276 2,144 5/22/2024
2.1.275 3,435 5/18/2024
2.1.274 1,910 5/18/2024
2.1.273 1,830 5/17/2024
2.1.272 141 5/17/2024
2.1.271 2,732 5/16/2024
2.1.270 462 5/15/2024
2.1.269 2,757 5/15/2024
2.1.268 4,458 5/12/2024
2.1.267 2,762 5/3/2024
2.1.266 1,163 4/30/2024
2.1.265 1,788 4/29/2024
2.1.264 1,940 4/29/2024
2.1.263 2,670 4/28/2024
2.1.262 1,504 4/28/2024
2.1.261 1,120 4/28/2024
2.1.260 1,763 4/28/2024
2.1.259 934 4/28/2024
2.1.258 140 4/28/2024
2.1.257 4,163 4/27/2024
2.1.256 156 4/27/2024
2.1.255 4,386 4/19/2024
2.1.254 4,092 4/18/2024
2.1.253 3,447 4/12/2024
2.1.252 1,169 4/12/2024
2.1.251 749 4/12/2024
2.1.250 887 4/12/2024
2.1.249 235 4/12/2024
2.1.248 133 4/12/2024
2.1.247 1,011 4/12/2024
2.1.246 333 4/12/2024
2.1.245 1,672 4/11/2024
2.1.244 3,746 4/10/2024
2.1.243 1,166 4/9/2024
2.1.242 3,182 4/2/2024
2.1.241 931 4/1/2024
2.1.240 2,105 3/29/2024
2.1.239 1,864 3/25/2024
2.1.238 321 3/25/2024
2.1.237 3,329 3/20/2024
2.1.236 2,157 3/19/2024
2.1.235 542 3/19/2024
2.1.234 2,367 3/18/2024
2.1.233 1,430 3/18/2024
2.1.232 1,405 3/15/2024
2.1.231 2,365 3/13/2024
2.1.230 1,128 3/13/2024
2.1.229 683 3/13/2024
2.1.228 788 3/13/2024
2.1.227 165 3/13/2024
2.1.226 558 3/13/2024
2.1.225 164 3/13/2024
2.1.224 168 3/13/2024
2.1.223 1,677 3/12/2024
2.1.222 2,849 3/11/2024
2.1.221 2,497 3/11/2024
2.1.220 1,651 3/10/2024
2.1.219 1,906 3/8/2024
2.1.218 1,087 3/8/2024
2.1.217 1,582 3/8/2024
2.1.216 2,095 3/6/2024
2.1.215 2,021 3/4/2024
2.1.214 1,433 3/4/2024
2.1.213 2,578 3/2/2024
2.1.212 1,239 3/2/2024
2.1.211 438 3/2/2024
2.1.210 378 3/2/2024
2.1.209 505 3/2/2024
2.1.208 3,445 2/29/2024
2.1.207 660 2/29/2024
2.1.206 364 2/29/2024
2.1.205 3,335 2/26/2024
2.1.204 1,508 2/25/2024
2.1.203 2,619 2/23/2024
2.1.202 1,919 2/22/2024
2.1.201 986 2/22/2024
2.1.200 460 2/21/2024
2.1.199 1,208 2/21/2024
2.1.198 327 2/21/2024
2.1.197 788 2/21/2024
2.1.196 153 2/21/2024
2.1.195 1,270 2/21/2024
2.1.194 438 2/21/2024
2.1.193 161 2/21/2024
2.1.192 167 2/21/2024
2.1.191 616 2/21/2024
2.1.190 144 2/21/2024
2.1.189 2,660 2/20/2024
2.1.188 739 2/20/2024
2.1.187 667 2/20/2024
2.1.186 788 2/20/2024
2.1.185 2,143 2/19/2024
2.1.184 1,896 2/17/2024
2.1.183 922 2/16/2024
2.1.182 882 2/16/2024
2.1.181 1,374 2/16/2024
2.1.180 153 2/16/2024
2.1.179 667 2/16/2024
2.1.178 163 2/16/2024
2.1.177 155 2/16/2024
2.1.176 579 2/16/2024
2.1.175 143 2/16/2024
2.1.174 3,313 2/13/2024
2.1.173 1,397 2/13/2024
2.1.172 1,114 2/13/2024
2.1.171 480 2/13/2024
2.1.170 647 2/13/2024
2.1.169 1,957 2/12/2024
2.1.168 537 2/11/2024
2.1.167 1,551 2/11/2024
2.1.166 884 2/11/2024
2.1.165 2,823 2/10/2024
2.1.164 565 2/9/2024
2.1.163 162 2/9/2024
2.1.162 1,585 2/9/2024
2.1.161 1,688 2/9/2024
2.1.160 420 2/8/2024
2.1.159 1,249 2/8/2024
2.1.158 883 2/8/2024
2.1.157 1,492 2/8/2024
2.1.156 147 2/8/2024
2.1.155 1,890 2/7/2024
2.1.154 459 2/7/2024
2.1.153 628 2/7/2024
2.1.152 1,293 2/7/2024
2.1.151 400 2/6/2024
2.1.150 157 2/6/2024
2.1.149 154 2/6/2024
2.1.148 2,790 2/5/2024
2.1.147 1,551 2/4/2024
2.1.146 2,106 2/2/2024
2.1.145 1,935 1/31/2024
2.1.144 2,167 1/29/2024
2.1.143 1,388 1/29/2024
2.1.142 369 1/29/2024
2.1.141 1,512 1/28/2024
2.1.140 494 1/28/2024
2.1.139 333 1/28/2024
2.1.138 575 1/28/2024
2.1.137 1,948 1/28/2024
2.1.136 952 1/28/2024
2.1.135 315 1/27/2024
2.1.134 948 1/27/2024
2.1.133 1,187 1/27/2024
2.1.132 1,202 1/27/2024
2.1.131 173 1/27/2024
2.1.130 724 1/27/2024
2.1.129 1,087 1/26/2024
2.1.128 249 1/26/2024
2.1.127 895 1/26/2024
2.1.126 1,150 1/26/2024
2.1.125 1,654 1/26/2024
2.1.124 903 1/25/2024
2.1.123 1,136 1/25/2024
2.1.122 480 1/25/2024
2.1.121 944 1/25/2024
2.1.120 544 1/25/2024
2.1.119 2,602 1/19/2024
2.1.118 2,233 1/15/2024
2.1.117 526 1/15/2024
2.1.116 1,262 1/15/2024
2.1.115 155 1/15/2024
2.1.114 590 1/15/2024
2.1.113 1,390 1/15/2024
2.1.112 2,565 1/14/2024
2.1.111 1,640 1/13/2024
2.1.110 1,862 1/12/2024
2.1.109 2,062 1/11/2024
2.1.108 2,668 1/7/2024
2.1.107 2,111 1/5/2024
2.1.106 517 1/5/2024
2.1.105 166 1/5/2024
2.1.104 165 1/5/2024
2.1.103 1,512 1/5/2024
2.1.102 166 1/5/2024
2.1.101 2,811 1/1/2024
2.1.100 2,242 12/28/2023
2.1.99 763 12/28/2023
2.1.98 528 12/28/2023
2.1.97 158 12/28/2023
2.1.96 157 12/28/2023
2.1.95 734 12/27/2023
2.1.94 170 12/27/2023
2.1.93 502 12/27/2023
2.1.92 166 12/27/2023
2.1.91 170 12/27/2023
2.1.90 2,251 12/25/2023
2.1.89 377 12/25/2023
2.1.88 809 12/25/2023
2.1.87 174 12/25/2023
2.1.86 686 12/25/2023
2.1.85 165 12/25/2023
2.1.84 604 12/25/2023
2.1.83 164 12/25/2023
2.1.82 1,692 12/24/2023
2.1.81 1,106 12/23/2023
2.1.80 898 12/23/2023
2.1.79 333 12/23/2023
2.1.78 589 12/23/2023
2.1.77 163 12/23/2023
2.1.76 151 12/23/2023
2.1.75 1,113 12/23/2023
2.1.74 152 12/23/2023
2.1.73 1,435 12/19/2023
2.1.72 242 12/19/2023
2.1.71 3,116 12/11/2023
2.1.70 749 12/10/2023
2.1.69 150 12/10/2023
2.1.68 519 12/10/2023
2.1.67 1,446 12/10/2023
2.1.66 404 12/9/2023
2.1.65 398 12/9/2023
2.1.64 315 12/9/2023
2.1.63 171 12/9/2023
2.1.62 293 12/9/2023
2.1.61 230 12/9/2023
2.1.60 154 12/9/2023
2.1.59 1,092 12/9/2023
2.1.58 161 12/9/2023
2.1.57 1,554 12/6/2023
2.1.56 423 12/6/2023
2.1.55 265 12/6/2023
2.1.54 293 12/6/2023
2.1.53 948 12/5/2023
2.1.52 398 12/5/2023
2.1.51 356 12/5/2023
2.1.50 397 12/5/2023
2.1.49 142 12/5/2023
2.1.48 360 12/5/2023
2.1.47 292 12/5/2023
2.1.46 145 12/4/2023
2.1.45 153 12/4/2023
2.1.44 355 12/4/2023
2.1.43 166 12/4/2023
2.1.42 1,039 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,189 11/27/2023
2.1.39 549 11/26/2023
2.1.38 244 11/26/2023
2.1.37 649 11/23/2023
2.1.36 707 11/23/2023
2.1.35 664 11/23/2023
2.1.34 152 11/23/2023
2.1.33 427 11/23/2023
2.1.32 158 11/23/2023
2.1.31 1,097 11/20/2023
2.1.30 1,079 11/20/2023
2.1.29 824 11/19/2023
2.1.28 283 11/19/2023
2.1.27 471 11/19/2023
2.1.26 524 11/19/2023
2.1.25 521 11/19/2023
2.1.24 139 11/19/2023
2.1.23 232 11/18/2023
2.1.22 1,003 11/18/2023
2.1.21 392 11/18/2023
2.1.20 553 11/18/2023
2.1.19 155 11/18/2023
2.1.18 325 11/18/2023
2.1.17 148 11/18/2023
2.1.16 626 11/17/2023
2.1.15 542 11/17/2023
2.1.14 149 11/17/2023
2.1.13 441 11/17/2023
2.1.12 324 11/17/2023
2.1.11 510 11/17/2023
2.1.10 148 11/17/2023
2.1.9 526 11/17/2023
2.1.8 153 11/17/2023
2.1.7 170 11/17/2023
2.1.6 362 11/17/2023
2.1.5 399 11/16/2023
2.0.101 2,092 11/15/2023
2.0.100 146 11/15/2023
2.0.99 154 11/15/2023
2.0.4 147 11/16/2023
2.0.3 157 11/16/2023
2.0.2 152 11/16/2023
2.0.1 147 11/16/2023
1.0.98 633 11/14/2023
1.0.97 765 11/13/2023
1.0.96 136 11/13/2023
1.0.95 591 11/10/2023
1.0.94 144 11/10/2023
1.0.93 959 11/9/2023
1.0.92 150 11/9/2023
1.0.91 1,057 11/7/2023
1.0.90 141 11/7/2023
1.0.89 523 11/6/2023
1.0.88 159 11/6/2023
1.0.87 619 11/3/2023
1.0.86 161 11/3/2023
1.0.85 908 11/2/2023
1.0.84 143 11/2/2023
1.0.83 624 11/1/2023
1.0.82 1,487 10/26/2023
1.0.81 1,329 10/19/2023
1.0.80 170 10/19/2023
1.0.79 811 10/18/2023
1.0.78 188 10/18/2023
1.0.77 757 10/17/2023
1.0.76 174 10/17/2023
1.0.75 692 10/16/2023
1.0.74 178 10/16/2023
1.0.73 723 10/13/2023
1.0.72 365 10/12/2023
1.0.71 1,766 9/20/2023
1.0.70 711 9/19/2023
1.0.69 706 9/18/2023
1.0.68 173 9/18/2023
1.0.67 918 9/14/2023
1.0.66 1,530 8/31/2023
1.0.65 179 8/31/2023
1.0.64 852 8/30/2023
1.0.63 194 8/30/2023
1.0.62 211 8/30/2023
1.0.61 876 8/28/2023
1.0.60 726 8/25/2023
1.0.59 180 8/25/2023
1.0.58 530 8/24/2023
1.0.57 1,490 8/21/2023
1.0.56 861 8/18/2023
1.0.55 782 8/17/2023
1.0.54 191 8/17/2023
1.0.53 1,930 8/10/2023
1.0.52 599 8/9/2023
1.0.51 712 8/8/2023
1.0.50 693 8/7/2023
1.0.49 216 8/7/2023
1.0.48 2,512 7/13/2023
1.0.47 928 7/11/2023
1.0.46 760 7/10/2023
1.0.45 732 7/7/2023
1.0.44 213 7/7/2023
1.0.43 2,146 6/30/2023
1.0.42 1,105 6/29/2023
1.0.41 640 6/28/2023
1.0.40 1,584 6/26/2023
1.0.39 834 6/23/2023
1.0.38 1,127 6/21/2023
1.0.37 1,493 6/15/2023
1.0.36 523 6/14/2023
1.0.35 1,844 6/9/2023
1.0.34 871 6/8/2023
1.0.33 1,661 6/7/2023
1.0.32 212 6/7/2023
1.0.31 1,264 6/6/2023
1.0.30 1,221 6/5/2023
1.0.29 1,412 6/2/2023
1.0.28 200 6/2/2023
1.0.27 1,288 6/1/2023
1.0.26 641 5/31/2023
1.0.25 527 5/31/2023
1.0.24 210 5/31/2023
1.0.23 1,509 5/30/2023
1.0.22 1,574 5/26/2023
1.0.21 733 5/25/2023
1.0.20 194 5/25/2023
1.0.19 879 5/24/2023
1.0.18 204 5/24/2023
1.0.17 499 5/23/2023
1.0.13 1,510 5/22/2023
1.0.12 1,237 5/18/2023
1.0.11 643 5/17/2023
1.0.10 1,597 5/1/2023
1.0.9 1,067 4/25/2023
1.0.8 533 4/24/2023
1.0.7 1,045 4/21/2023
1.0.6 2,000 4/13/2023
1.0.5 648 4/12/2023
1.0.4 1,070 4/8/2023
1.0.3 237 4/8/2023
1.0.2 643 4/8/2023
1.0.1 242 4/8/2023