Soenneker.Utils.SingletonDictionary 2.1.191

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.191
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 2.1.191
                    
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.191" />
                    
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.191" />
                    
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.191
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 2.1.191"
                    
#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.191
                    
#: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.191
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=2.1.191
                    
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.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

Soenneker.Utils.RateLimiting.Factory

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1108 12,866 9/30/2025
3.0.1107 44,064 9/9/2025
3.0.1106 26,964 9/3/2025
3.0.1105 413 9/3/2025
3.0.1104 2,644 9/3/2025
3.0.1103 35,426 8/14/2025
3.0.1102 9,078 8/11/2025
3.0.1101 3,654 8/11/2025
3.0.1100 904 8/11/2025
3.0.1099 159 8/11/2025
3.0.1098 27,068 8/6/2025
3.0.1097 5,817 8/5/2025
3.0.1096 34,313 7/9/2025
3.0.1095 35,034 6/28/2025
3.0.1094 2,040 6/28/2025
3.0.1093 2,848 6/27/2025
3.0.1092 3,661 6/27/2025
3.0.1091 38,493 6/10/2025
3.0.1090 26,620 5/27/2025
3.0.1089 1,454 5/27/2025
3.0.1088 1,498 5/27/2025
3.0.1087 3,680 5/27/2025
3.0.1086 22,294 5/23/2025
3.0.1085 1,976 5/23/2025
3.0.1084 1,972 5/23/2025
3.0.1083 1,881 5/23/2025
3.0.1082 357 5/22/2025
3.0.1081 15,345 5/18/2025
3.0.1079 2,341 5/18/2025
3.0.1078 2,283 5/18/2025
3.0.1077 6,549 5/14/2025
3.0.1076 14,220 5/8/2025
3.0.1075 424 5/8/2025
3.0.1074 908 5/8/2025
3.0.1073 1,698 5/7/2025
3.0.1072 19,854 5/5/2025
3.0.1071 1,322 5/5/2025
3.0.1070 2,468 5/5/2025
3.0.1069 1,129 5/5/2025
3.0.1068 307 5/5/2025
3.0.1067 203 5/5/2025
3.0.1066 27,952 4/9/2025
3.0.1065 378 4/9/2025
3.0.1064 1,651 4/8/2025
3.0.1063 3,526 4/8/2025
3.0.1062 4,738 4/8/2025
3.0.1061 266 4/8/2025
3.0.1060 227 4/8/2025
3.0.1059 255 4/8/2025
3.0.1058 211 4/8/2025
3.0.1057 1,387 4/8/2025
3.0.1056 405 4/8/2025
3.0.1055 10,656 4/8/2025
3.0.1054 1,044 4/8/2025
3.0.1053 5,303 4/7/2025
3.0.1052 1,114 4/7/2025
3.0.1051 214 4/7/2025
3.0.1050 906 4/7/2025
3.0.1049 215 4/7/2025
3.0.1048 11,219 4/7/2025
3.0.1047 217 4/7/2025
3.0.1046 15,796 4/7/2025
3.0.1045 218 4/7/2025
3.0.1044 2,136 4/7/2025
3.0.1043 219 4/7/2025
3.0.1042 2,587 4/7/2025
3.0.1041 1,497 4/6/2025
3.0.1040 401 4/6/2025
3.0.1039 223 4/6/2025
3.0.1038 1,799 4/6/2025
3.0.1037 224 4/6/2025
3.0.1036 588 4/6/2025
3.0.1035 1,872 4/6/2025
3.0.1034 189 4/6/2025
3.0.1033 3,363 4/6/2025
3.0.1032 165 4/6/2025
3.0.1031 217 4/6/2025
3.0.1030 172 4/6/2025
3.0.1029 2,606 4/5/2025
3.0.1028 261 4/5/2025
3.0.1027 1,924 4/5/2025
3.0.1026 1,613 4/5/2025
3.0.1025 1,712 4/5/2025
3.0.1024 977 4/5/2025
3.0.1023 864 4/5/2025
3.0.1022 163 4/5/2025
3.0.1021 2,089 4/4/2025
3.0.1020 11,059 4/4/2025
3.0.1019 37,815 4/4/2025
3.0.1018 11,313 4/1/2025
3.0.1017 4,376 4/1/2025
3.0.1016 220 4/1/2025
3.0.1015 9,186 4/1/2025
3.0.1014 3,951 3/31/2025
3.0.1013 524 3/31/2025
3.0.1012 6,398 3/31/2025
3.0.1011 11,615 3/29/2025
3.0.1010 1,779 3/29/2025
3.0.1009 2,387 3/29/2025
3.0.1008 157 3/29/2025
3.0.1007 7,405 3/27/2025
3.0.1006 6,269 3/25/2025
3.0.1005 733 3/25/2025
3.0.1004 5,030 3/25/2025
3.0.1003 10,311 3/21/2025
3.0.1002 4,344 3/21/2025
3.0.1001 11,136 3/18/2025
3.0.1000 5,746 3/18/2025
3.0.999 10,889 3/15/2025
3.0.998 3,086 3/15/2025
3.0.997 132 3/15/2025
3.0.996 10,277 3/12/2025
3.0.995 3,630 3/12/2025
3.0.994 229 3/12/2025
3.0.993 570 3/12/2025
3.0.992 210 3/12/2025
3.0.991 4,558 3/11/2025
3.0.990 221 3/11/2025
3.0.989 2,059 3/11/2025
3.0.988 222 3/11/2025
3.0.987 4,114 3/11/2025
3.0.986 234 3/11/2025
3.0.985 4,260 3/11/2025
3.0.984 215 3/11/2025
3.0.983 2,697 3/11/2025
3.0.982 205 3/11/2025
3.0.981 14,866 3/7/2025
3.0.980 4,313 3/7/2025
3.0.979 9,864 3/2/2025
3.0.978 1,702 3/2/2025
3.0.977 1,066 3/2/2025
3.0.976 151 3/2/2025
3.0.975 7,171 3/2/2025
3.0.974 158 3/2/2025
3.0.973 5,452 3/1/2025
3.0.972 141 3/1/2025
3.0.971 7,390 3/1/2025
3.0.970 188 3/1/2025
3.0.969 138 3/1/2025
3.0.968 667 3/1/2025
3.0.967 154 3/1/2025
3.0.966 10,010 3/1/2025
3.0.965 7,723 2/26/2025
3.0.964 1,340 2/26/2025
3.0.963 3,944 2/25/2025
3.0.962 144 2/25/2025
3.0.961 1,356 2/25/2025
3.0.960 124 2/25/2025
3.0.959 194 2/25/2025
3.0.958 3,095 2/25/2025
3.0.957 8,124 2/24/2025
3.0.956 7,558 2/23/2025
3.0.955 1,775 2/22/2025
3.0.954 141 2/22/2025
3.0.953 12,805 2/22/2025
3.0.952 3,696 2/22/2025
3.0.951 1,796 2/22/2025
3.0.950 1,244 2/22/2025
3.0.949 197 2/22/2025
3.0.948 158 2/22/2025
3.0.947 160 2/22/2025
3.0.946 7,815 2/21/2025
3.0.945 152 2/21/2025
3.0.944 9,388 2/21/2025
3.0.943 7,565 2/19/2025
3.0.942 2,609 2/19/2025
3.0.941 1,046 2/19/2025
3.0.940 159 2/19/2025
3.0.939 618 2/18/2025
3.0.938 160 2/18/2025
3.0.937 9,000 2/18/2025
3.0.936 160 2/18/2025
3.0.935 4,553 2/18/2025
3.0.934 10,887 2/16/2025
3.0.933 2,474 2/14/2025
3.0.932 1,288 2/14/2025
3.0.931 1,145 2/13/2025
3.0.930 4,020 2/13/2025
3.0.929 421 2/13/2025
3.0.928 6,140 2/13/2025
3.0.927 6,043 2/12/2025
3.0.926 2,374 2/12/2025
3.0.925 184 2/12/2025
3.0.924 159 2/12/2025
3.0.923 3,358 2/12/2025
3.0.922 498 2/12/2025
3.0.921 163 2/12/2025
3.0.920 253 2/12/2025
3.0.919 263 2/12/2025
3.0.918 159 2/12/2025
3.0.917 234 2/11/2025
3.0.916 5,685 2/11/2025
3.0.915 6,202 2/11/2025
3.0.914 3,746 2/11/2025
3.0.913 169 2/11/2025
3.0.912 594 2/11/2025
3.0.911 2,839 2/10/2025
3.0.910 175 2/10/2025
3.0.909 1,203 2/10/2025
3.0.908 174 2/10/2025
3.0.907 10,443 2/10/2025
3.0.906 167 2/10/2025
3.0.905 1,920 2/9/2025
3.0.904 9,358 2/9/2025
3.0.903 151 2/9/2025
3.0.902 12,241 2/8/2025
3.0.901 166 2/8/2025
3.0.900 2,824 2/7/2025
3.0.899 159 2/7/2025
3.0.898 2,672 2/7/2025
3.0.897 161 2/7/2025
3.0.896 985 2/7/2025
3.0.895 658 2/7/2025
3.0.894 172 2/7/2025
3.0.893 537 2/7/2025
3.0.892 159 2/7/2025
3.0.891 1,697 2/7/2025
3.0.890 151 2/7/2025
3.0.889 167 2/7/2025
3.0.888 17,649 2/7/2025
3.0.887 10,479 2/5/2025
3.0.886 978 2/5/2025
3.0.885 1,532 2/5/2025
3.0.884 444 2/5/2025
3.0.883 1,682 2/5/2025
3.0.882 1,050 2/5/2025
3.0.881 5,193 2/5/2025
3.0.880 146 2/5/2025
3.0.879 17,158 1/28/2025
3.0.878 1,113 1/28/2025
3.0.877 3,188 1/28/2025
3.0.876 350 1/28/2025
3.0.875 6,819 1/28/2025
3.0.874 1,101 1/27/2025
3.0.873 127 1/27/2025
3.0.872 273 1/27/2025
3.0.871 430 1/27/2025
3.0.870 146 1/27/2025
3.0.869 8,636 1/27/2025
3.0.868 7,727 1/26/2025
3.0.867 1,584 1/26/2025
3.0.866 272 1/26/2025
3.0.865 1,722 1/26/2025
3.0.864 2,242 1/25/2025
3.0.863 148 1/25/2025
3.0.862 9,772 1/25/2025
3.0.861 1,755 1/25/2025
3.0.860 484 1/25/2025
3.0.859 155 1/25/2025
3.0.858 3,281 1/25/2025
3.0.857 2,165 1/25/2025
3.0.856 11,060 1/24/2025
3.0.855 2,721 1/24/2025
3.0.854 132 1/24/2025
3.0.853 3,551 1/24/2025
3.0.852 516 1/24/2025
3.0.851 344 1/24/2025
3.0.850 5,477 1/24/2025
3.0.849 150 1/24/2025
3.0.848 824 1/23/2025
3.0.847 153 1/23/2025
3.0.846 964 1/23/2025
3.0.845 146 1/23/2025
3.0.844 13,379 1/22/2025
3.0.843 1,671 1/21/2025
3.0.842 1,609 1/21/2025
3.0.841 893 1/21/2025
3.0.840 138 1/21/2025
3.0.839 932 1/21/2025
3.0.838 1,160 1/21/2025
3.0.837 9,195 1/21/2025
3.0.836 921 1/21/2025
3.0.835 1,664 1/21/2025
3.0.834 153 1/21/2025
3.0.833 1,370 1/21/2025
3.0.832 146 1/21/2025
3.0.831 3,818 1/21/2025
3.0.830 138 1/21/2025
3.0.829 644 1/20/2025
3.0.828 4,793 1/20/2025
3.0.827 375 1/20/2025
3.0.826 3,451 1/20/2025
3.0.825 147 1/20/2025
3.0.824 1,833 1/20/2025
3.0.823 167 1/20/2025
3.0.822 162 1/20/2025
3.0.821 152 1/20/2025
3.0.820 587 1/20/2025
3.0.819 155 1/20/2025
3.0.818 150 1/20/2025
3.0.817 9,739 1/19/2025
3.0.816 158 1/19/2025
3.0.815 8,920 1/19/2025
3.0.814 2,734 1/19/2025
3.0.813 186 1/19/2025
3.0.812 623 1/19/2025
3.0.811 150 1/19/2025
3.0.810 3,267 1/19/2025
3.0.809 145 1/19/2025
3.0.808 5,557 1/18/2025
3.0.807 153 1/18/2025
3.0.806 11,859 1/17/2025
3.0.805 163 1/17/2025
3.0.804 1,052 1/17/2025
3.0.803 1,576 1/17/2025
3.0.802 7,269 1/16/2025
3.0.801 2,419 1/16/2025
3.0.800 3,685 1/16/2025
3.0.799 893 1/16/2025
3.0.798 2,022 1/16/2025
3.0.797 1,728 1/16/2025
3.0.796 138 1/16/2025
3.0.795 7,957 1/15/2025
3.0.794 146 1/15/2025
3.0.793 4,724 1/15/2025
3.0.792 142 1/15/2025
3.0.791 219 1/15/2025
3.0.790 5,694 1/15/2025
3.0.789 117 1/15/2025
3.0.788 5,005 1/15/2025
3.0.787 125 1/15/2025
3.0.786 858 1/15/2025
3.0.785 121 1/15/2025
3.0.784 2,907 1/15/2025
3.0.783 125 1/15/2025
3.0.782 425 1/14/2025
3.0.781 127 1/14/2025
3.0.780 136 1/14/2025
3.0.779 6,301 1/14/2025
3.0.778 1,017 1/14/2025
3.0.777 140 1/14/2025
3.0.776 1,839 1/14/2025
3.0.775 125 1/14/2025
3.0.774 9,745 1/13/2025
3.0.773 2,818 1/13/2025
3.0.772 2,416 1/13/2025
3.0.771 143 1/13/2025
3.0.770 9,270 1/11/2025
3.0.769 3,754 1/11/2025
3.0.768 168 1/11/2025
3.0.767 3,330 1/11/2025
3.0.766 166 1/11/2025
3.0.765 3,168 1/10/2025
3.0.764 3,548 1/10/2025
3.0.763 153 1/10/2025
3.0.762 1,423 1/10/2025
3.0.761 161 1/10/2025
3.0.760 150 1/10/2025
3.0.759 11,142 1/3/2025
3.0.758 737 1/3/2025
3.0.757 1,640 1/3/2025
3.0.756 188 1/3/2025
3.0.755 2,485 1/3/2025
3.0.754 157 1/3/2025
3.0.753 1,911 1/3/2025
3.0.752 1,811 1/2/2025
3.0.751 153 1/2/2025
3.0.750 3,041 1/2/2025
3.0.749 160 1/2/2025
3.0.748 5,100 1/2/2025
3.0.747 145 1/2/2025
3.0.746 166 1/2/2025
3.0.745 8,394 1/1/2025
3.0.744 1,744 1/1/2025
3.0.743 433 1/1/2025
3.0.742 175 1/1/2025
3.0.741 2,692 1/1/2025
3.0.740 158 1/1/2025
3.0.739 156 1/1/2025
3.0.738 169 1/1/2025
3.0.737 534 12/31/2024
3.0.736 169 12/31/2024
3.0.735 183 12/31/2024
3.0.734 1,056 12/31/2024
3.0.733 182 12/31/2024
3.0.732 8,142 12/31/2024
3.0.731 169 12/31/2024
3.0.730 7,861 12/31/2024
3.0.729 129 12/31/2024
3.0.728 4,345 12/31/2024
3.0.727 553 12/31/2024
3.0.726 160 12/31/2024
3.0.725 2,319 12/31/2024
3.0.724 158 12/31/2024
3.0.723 15,702 12/28/2024
3.0.722 2,002 12/28/2024
3.0.721 2,203 12/27/2024
3.0.720 170 12/27/2024
3.0.719 4,728 12/27/2024
3.0.718 8,767 12/24/2024
3.0.717 2,153 12/24/2024
3.0.716 1,562 12/24/2024
3.0.715 1,331 12/24/2024
3.0.714 2,342 12/24/2024
3.0.713 152 12/24/2024
3.0.712 3,859 12/24/2024
3.0.711 1,042 12/24/2024
3.0.710 143 12/24/2024
3.0.709 703 12/24/2024
3.0.708 1,653 12/24/2024
3.0.707 386 12/24/2024
3.0.706 181 12/24/2024
3.0.705 1,750 12/24/2024
3.0.704 161 12/24/2024
3.0.703 3,070 12/23/2024
3.0.702 5,004 12/23/2024
3.0.701 160 12/23/2024
3.0.700 1,162 12/23/2024
3.0.699 148 12/23/2024
3.0.698 3,378 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,560 12/23/2024
3.0.695 163 12/23/2024
3.0.694 750 12/22/2024
3.0.693 2,443 12/22/2024
3.0.692 7,063 12/22/2024
3.0.691 167 12/22/2024
3.0.690 2,787 12/22/2024
3.0.689 244 12/22/2024
3.0.688 776 12/22/2024
3.0.687 154 12/22/2024
3.0.686 430 12/22/2024
3.0.685 160 12/22/2024
3.0.684 11,907 12/22/2024
3.0.683 138 12/22/2024
3.0.682 1,896 12/21/2024
3.0.681 461 12/21/2024
3.0.680 144 12/21/2024
3.0.679 853 12/21/2024
3.0.678 1,366 12/21/2024
3.0.677 150 12/21/2024
3.0.676 6,805 12/21/2024
3.0.675 650 12/21/2024
3.0.674 154 12/21/2024
3.0.673 4,558 12/21/2024
3.0.672 1,188 12/21/2024
3.0.671 165 12/21/2024
3.0.670 2,698 12/20/2024
3.0.669 170 12/20/2024
3.0.668 161 12/20/2024
3.0.667 6,589 12/20/2024
3.0.666 1,964 12/20/2024
3.0.665 361 12/20/2024
3.0.664 6,188 12/19/2024
3.0.663 733 12/19/2024
3.0.662 3,619 12/18/2024
3.0.661 153 12/18/2024
3.0.660 11,256 12/17/2024
3.0.659 318 12/17/2024
3.0.658 1,113 12/16/2024
3.0.657 152 12/16/2024
3.0.656 225 12/16/2024
3.0.655 151 12/16/2024
3.0.654 11,148 12/10/2024
3.0.653 1,745 12/10/2024
3.0.652 648 12/9/2024
3.0.651 159 12/9/2024
3.0.650 4,676 12/9/2024
3.0.649 2,424 12/9/2024
3.0.648 144 12/9/2024
3.0.647 6,649 12/9/2024
3.0.646 4,951 12/6/2024
3.0.645 717 12/6/2024
3.0.644 149 12/6/2024
3.0.643 1,160 12/6/2024
3.0.641 6,835 12/6/2024
3.0.640 4,251 12/6/2024
3.0.639 9,468 12/6/2024
3.0.637 582 12/6/2024
3.0.636 4,374 12/5/2024
3.0.635 6,108 12/5/2024
3.0.634 5,022 12/5/2024
3.0.633 151 12/5/2024
3.0.632 3,361 12/5/2024
3.0.631 1,722 12/5/2024
3.0.630 162 12/5/2024
3.0.629 630 12/5/2024
3.0.628 157 12/5/2024
3.0.627 210 12/5/2024
3.0.626 156 12/5/2024
3.0.625 5,907 12/4/2024
3.0.624 145 12/4/2024
3.0.623 173 12/4/2024
3.0.622 174 12/4/2024
3.0.621 2,926 12/4/2024
3.0.620 523 12/4/2024
3.0.619 677 12/4/2024
3.0.618 5,972 12/3/2024
3.0.617 162 12/3/2024
3.0.616 1,942 12/3/2024
3.0.615 750 12/3/2024
3.0.614 164 12/3/2024
3.0.613 172 12/3/2024
3.0.612 6,972 12/3/2024
3.0.611 153 12/3/2024
3.0.610 5,904 12/3/2024
3.0.609 136 12/3/2024
3.0.608 5,431 12/2/2024
3.0.607 4,815 12/2/2024
3.0.606 2,892 12/2/2024
3.0.605 447 12/2/2024
3.0.604 164 12/2/2024
3.0.603 690 12/2/2024
3.0.602 6,071 12/1/2024
3.0.601 170 12/1/2024
3.0.600 3,334 12/1/2024
3.0.599 310 12/1/2024
3.0.598 6,135 12/1/2024
3.0.597 165 12/1/2024
3.0.596 6,293 11/29/2024
3.0.595 1,857 11/29/2024
3.0.594 9,419 11/21/2024
3.0.593 508 11/21/2024
3.0.592 7,950 11/20/2024
3.0.591 535 11/20/2024
3.0.590 169 11/20/2024
3.0.589 153 11/20/2024
3.0.588 684 11/20/2024
3.0.587 251 11/20/2024
3.0.586 153 11/20/2024
3.0.585 3,431 11/20/2024
3.0.584 4,733 11/19/2024
3.0.583 150 11/19/2024
3.0.582 1,056 11/19/2024
3.0.581 143 11/19/2024
3.0.580 4,163 11/19/2024
3.0.579 138 11/19/2024
3.0.578 2,203 11/19/2024
3.0.577 163 11/19/2024
3.0.576 14,728 11/14/2024
3.0.575 225 11/14/2024
3.0.574 895 11/14/2024
3.0.573 4,061 11/14/2024
3.0.572 1,251 11/14/2024
3.0.571 173 11/14/2024
3.0.570 166 11/14/2024
3.0.569 7,049 11/14/2024
3.0.568 165 11/14/2024
3.0.567 164 11/14/2024
3.0.566 6,127 11/14/2024
3.0.565 159 11/14/2024
3.0.564 154 11/14/2024
3.0.563 150 11/14/2024
2.1.562 13,920 11/13/2024
2.1.561 2,291 11/13/2024
2.1.560 5,195 11/13/2024
2.1.559 177 11/13/2024
2.1.558 2,217 11/12/2024
2.1.557 627 11/12/2024
2.1.556 13,659 11/9/2024
2.1.555 581 11/9/2024
2.1.554 178 11/9/2024
2.1.553 2,902 11/9/2024
2.1.552 159 11/9/2024
2.1.551 1,491 11/8/2024
2.1.550 161 11/8/2024
2.1.549 155 11/8/2024
2.1.548 169 11/8/2024
2.1.547 661 11/8/2024
2.1.546 3,174 11/8/2024
2.1.545 149 11/8/2024
2.1.544 9,177 11/8/2024
2.1.543 143 11/8/2024
2.1.542 19,948 11/1/2024
2.1.541 735 11/1/2024
2.1.540 11,714 10/29/2024
2.1.539 1,255 10/29/2024
2.1.538 4,673 10/29/2024
2.1.537 977 10/29/2024
2.1.536 9,311 10/28/2024
2.1.535 3,194 10/28/2024
2.1.534 6,470 10/26/2024
2.1.533 1,144 10/26/2024
2.1.532 13,729 10/22/2024
2.1.531 414 10/22/2024
2.1.530 882 10/22/2024
2.1.529 1,533 10/22/2024
2.1.528 161 10/22/2024
2.1.527 758 10/22/2024
2.1.526 11,207 10/18/2024
2.1.525 1,828 10/17/2024
2.1.524 7,089 10/15/2024
2.1.523 2,734 10/15/2024
2.1.522 159 10/14/2024
2.1.521 8,785 10/12/2024
2.1.520 1,100 10/11/2024
2.1.519 156 10/11/2024
2.1.518 776 10/11/2024
2.1.517 5,006 10/11/2024
2.1.516 10,974 10/9/2024
2.1.515 596 10/9/2024
2.1.514 142 10/9/2024
2.1.513 3,358 10/8/2024
2.1.512 221 10/8/2024
2.1.511 3,651 10/8/2024
2.1.510 215 10/8/2024
2.1.509 158 10/8/2024
2.1.508 6,681 10/8/2024
2.1.507 10,490 10/3/2024
2.1.506 162 10/3/2024
2.1.505 1,935 10/3/2024
2.1.504 3,354 10/3/2024
2.1.503 2,387 10/3/2024
2.1.502 10,010 10/2/2024
2.1.501 159 10/2/2024
2.1.500 3,131 10/2/2024
2.1.499 1,723 10/2/2024
2.1.498 7,044 10/1/2024
2.1.497 1,080 10/1/2024
2.1.496 170 10/1/2024
2.1.495 4,463 10/1/2024
2.1.494 171 10/1/2024
2.1.493 213 10/1/2024
2.1.492 9,228 9/29/2024
2.1.491 2,263 9/29/2024
2.1.490 163 9/29/2024
2.1.489 2,048 9/29/2024
2.1.488 161 9/29/2024
2.1.487 4,385 9/29/2024
2.1.486 8,623 9/27/2024
2.1.485 1,296 9/27/2024
2.1.484 5,199 9/27/2024
2.1.483 184 9/27/2024
2.1.482 706 9/27/2024
2.1.481 3,661 9/27/2024
2.1.480 5,370 9/26/2024
2.1.479 5,898 9/26/2024
2.1.478 4,001 9/26/2024
2.1.477 3,612 9/26/2024
2.1.476 6,291 9/26/2024
2.1.475 159 9/26/2024
2.1.474 9,420 9/23/2024
2.1.473 2,118 9/23/2024
2.1.472 1,539 9/23/2024
2.1.471 1,853 9/23/2024
2.1.470 161 9/23/2024
2.1.469 2,558 9/23/2024
2.1.468 142 9/23/2024
2.1.467 7,970 9/23/2024
2.1.466 166 9/23/2024
2.1.465 1,165 9/23/2024
2.1.464 179 9/23/2024
2.1.463 152 9/23/2024
2.1.462 1,504 9/23/2024
2.1.461 15,427 9/18/2024
2.1.460 388 9/17/2024
2.1.459 2,007 9/17/2024
2.1.458 2,705 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,948 9/17/2024
2.1.455 754 9/17/2024
2.1.454 5,307 9/17/2024
2.1.453 874 9/17/2024
2.1.452 305 9/17/2024
2.1.451 4,288 9/17/2024
2.1.450 12,451 9/16/2024
2.1.449 1,112 9/16/2024
2.1.448 7,992 9/12/2024
2.1.447 4,716 9/12/2024
2.1.446 2,094 9/11/2024
2.1.445 2,534 9/11/2024
2.1.443 5,762 9/11/2024
2.1.442 1,512 9/11/2024
2.1.441 1,431 9/11/2024
2.1.440 3,526 9/11/2024
2.1.439 12,710 9/10/2024
2.1.438 183 9/10/2024
2.1.437 1,835 9/10/2024
2.1.436 178 9/10/2024
2.1.434 4,548 9/10/2024
2.1.433 905 9/9/2024
2.1.432 2,814 9/9/2024
2.1.430 2,391 9/9/2024
2.1.428 185 9/9/2024
2.1.427 682 9/9/2024
2.1.426 20,940 9/7/2024
2.1.425 209 9/7/2024
2.1.424 8,013 9/6/2024
2.1.423 533 9/6/2024
2.1.422 3,546 9/6/2024
2.1.421 166 9/5/2024
2.1.420 185 9/5/2024
2.1.419 3,809 9/5/2024
2.1.418 1,755 9/5/2024
2.1.417 173 9/5/2024
2.1.416 1,749 9/5/2024
2.1.415 683 9/5/2024
2.1.414 170 9/5/2024
2.1.413 8,015 9/5/2024
2.1.412 279 9/5/2024
2.1.411 171 9/5/2024
2.1.410 3,559 9/4/2024
2.1.409 12,838 9/3/2024
2.1.408 166 9/3/2024
2.1.407 166 9/3/2024
2.1.406 6,468 9/3/2024
2.1.405 211 9/3/2024
2.1.404 4,057 9/3/2024
2.1.403 8,538 8/29/2024
2.1.402 4,209 8/29/2024
2.1.401 4,598 8/26/2024
2.1.400 156 8/26/2024
2.1.399 8,093 8/21/2024
2.1.398 966 8/21/2024
2.1.397 206 8/21/2024
2.1.396 4,239 8/21/2024
2.1.395 212 8/20/2024
2.1.394 202 8/20/2024
2.1.393 723 8/20/2024
2.1.392 4,931 8/20/2024
2.1.391 682 8/20/2024
2.1.390 169 8/20/2024
2.1.389 4,290 8/20/2024
2.1.388 183 8/20/2024
2.1.387 1,936 8/20/2024
2.1.386 4,735 8/19/2024
2.1.385 7,793 8/15/2024
2.1.384 3,354 8/15/2024
2.1.383 7,755 8/14/2024
2.1.382 205 8/13/2024
2.1.381 9,063 8/7/2024
2.1.380 477 8/6/2024
2.1.379 4,411 8/6/2024
2.1.378 8,334 8/1/2024
2.1.377 562 8/1/2024
2.1.376 156 8/1/2024
2.1.374 2,001 8/1/2024
2.1.373 9,973 7/25/2024
2.1.372 156 7/25/2024
2.1.371 1,290 7/25/2024
2.1.370 490 7/25/2024
2.1.369 588 7/25/2024
2.1.368 308 7/25/2024
2.1.367 649 7/24/2024
2.1.366 229 7/24/2024
2.1.365 347 7/24/2024
2.1.364 533 7/24/2024
2.1.363 14,088 7/20/2024
2.1.362 2,512 7/20/2024
2.1.361 8,463 7/14/2024
2.1.360 2,560 7/14/2024
2.1.359 164 7/14/2024
2.1.358 2,425 7/14/2024
2.1.357 7,173 7/10/2024
2.1.355 1,148 7/10/2024
2.1.354 1,948 7/10/2024
2.1.353 172 7/10/2024
2.1.352 2,811 7/10/2024
2.1.351 202 7/10/2024
2.1.350 162 7/10/2024
2.1.349 254 7/10/2024
2.1.348 159 7/10/2024
2.1.347 3,334 7/10/2024
2.1.346 183 7/10/2024
2.1.345 1,339 7/10/2024
2.1.344 165 7/10/2024
2.1.343 309 7/9/2024
2.1.342 141 7/9/2024
2.1.339 3,112 7/9/2024
2.1.338 712 7/9/2024
2.1.337 6,610 7/9/2024
2.1.336 1,852 7/9/2024
2.1.335 176 7/9/2024
2.1.334 4,275 7/9/2024
2.1.333 158 7/9/2024
2.1.332 11,818 7/9/2024
2.1.331 171 7/9/2024
2.1.330 4,144 7/9/2024
2.1.329 161 7/9/2024
2.1.328 1,737 7/9/2024
2.1.327 1,097 7/8/2024
2.1.326 1,641 7/8/2024
2.1.325 172 7/8/2024
2.1.324 186 7/8/2024
2.1.323 7,988 7/8/2024
2.1.322 2,736 7/8/2024
2.1.321 169 7/8/2024
2.1.320 3,883 7/7/2024
2.1.319 182 7/7/2024
2.1.318 194 7/7/2024
2.1.317 179 7/7/2024
2.1.316 1,864 7/7/2024
2.1.315 3,604 7/7/2024
2.1.314 3,036 7/7/2024
2.1.313 342 7/7/2024
2.1.312 5,649 7/5/2024
2.1.311 6,669 7/3/2024
2.1.310 5,157 7/3/2024
2.1.309 630 7/3/2024
2.1.308 6,724 7/2/2024
2.1.307 3,068 6/30/2024
2.1.306 3,734 6/28/2024
2.1.305 8,801 6/22/2024
2.1.304 7,973 6/15/2024
2.1.303 6,494 6/14/2024
2.1.302 9,459 6/1/2024
2.1.301 2,610 6/1/2024
2.1.300 936 6/1/2024
2.1.299 9,593 5/31/2024
2.1.298 5,987 5/29/2024
2.1.297 4,942 5/28/2024
2.1.296 3,954 5/27/2024
2.1.295 7,819 5/26/2024
2.1.294 3,259 5/26/2024
2.1.293 735 5/26/2024
2.1.292 4,049 5/25/2024
2.1.291 2,154 5/25/2024
2.1.290 193 5/25/2024
2.1.289 174 5/25/2024
2.1.288 1,096 5/25/2024
2.1.287 183 5/25/2024
2.1.286 600 5/25/2024
2.1.285 180 5/25/2024
2.1.284 187 5/25/2024
2.1.283 11,929 5/23/2024
2.1.282 857 5/23/2024
2.1.281 395 5/22/2024
2.1.280 5,867 5/22/2024
2.1.279 188 5/22/2024
2.1.278 191 5/22/2024
2.1.277 180 5/22/2024
2.1.276 3,508 5/22/2024
2.1.275 5,448 5/18/2024
2.1.274 3,021 5/18/2024
2.1.273 2,870 5/17/2024
2.1.272 177 5/17/2024
2.1.271 4,344 5/16/2024
2.1.270 662 5/15/2024
2.1.269 4,403 5/15/2024
2.1.268 7,286 5/12/2024
2.1.267 4,412 5/3/2024
2.1.266 1,882 4/30/2024
2.1.265 2,825 4/29/2024
2.1.264 3,030 4/29/2024
2.1.263 4,281 4/28/2024
2.1.262 2,401 4/28/2024
2.1.261 1,740 4/28/2024
2.1.260 2,727 4/28/2024
2.1.259 1,466 4/28/2024
2.1.258 171 4/28/2024
2.1.257 6,715 4/27/2024
2.1.256 191 4/27/2024
2.1.255 6,824 4/19/2024
2.1.254 6,542 4/18/2024
2.1.253 5,400 4/12/2024
2.1.252 1,778 4/12/2024
2.1.251 1,095 4/12/2024
2.1.250 1,349 4/12/2024
2.1.249 289 4/12/2024
2.1.248 166 4/12/2024
2.1.247 1,520 4/12/2024
2.1.246 461 4/12/2024
2.1.245 2,526 4/11/2024
2.1.244 6,013 4/10/2024
2.1.243 1,770 4/9/2024
2.1.242 4,965 4/2/2024
2.1.241 1,395 4/1/2024
2.1.240 3,288 3/29/2024
2.1.239 2,834 3/25/2024
2.1.238 441 3/25/2024
2.1.237 5,240 3/20/2024
2.1.236 3,252 3/19/2024
2.1.235 731 3/19/2024
2.1.234 3,760 3/18/2024
2.1.233 2,070 3/18/2024
2.1.232 2,048 3/15/2024
2.1.231 3,618 3/13/2024
2.1.230 1,619 3/13/2024
2.1.229 1,037 3/13/2024
2.1.228 1,116 3/13/2024
2.1.227 186 3/13/2024
2.1.226 770 3/13/2024
2.1.225 190 3/13/2024
2.1.224 194 3/13/2024
2.1.223 2,548 3/12/2024
2.1.222 4,315 3/11/2024
2.1.221 3,755 3/11/2024
2.1.220 2,522 3/10/2024
2.1.219 2,859 3/8/2024
2.1.218 1,593 3/8/2024
2.1.217 2,372 3/8/2024
2.1.216 3,182 3/6/2024
2.1.215 3,003 3/4/2024
2.1.214 2,148 3/4/2024
2.1.213 3,951 3/2/2024
2.1.212 1,806 3/2/2024
2.1.211 610 3/2/2024
2.1.210 514 3/2/2024
2.1.209 757 3/2/2024
2.1.208 5,152 2/29/2024
2.1.207 928 2/29/2024
2.1.206 520 2/29/2024
2.1.205 4,978 2/26/2024
2.1.204 2,214 2/25/2024
2.1.203 3,935 2/23/2024
2.1.202 2,801 2/22/2024
2.1.201 1,381 2/22/2024
2.1.200 647 2/21/2024
2.1.199 1,719 2/21/2024
2.1.198 416 2/21/2024
2.1.197 985 2/21/2024
2.1.196 181 2/21/2024
2.1.195 1,945 2/21/2024
2.1.194 602 2/21/2024
2.1.193 185 2/21/2024
2.1.192 209 2/21/2024
2.1.191 823 2/21/2024
2.1.190 177 2/21/2024
2.1.189 3,999 2/20/2024
2.1.188 983 2/20/2024
2.1.187 935 2/20/2024
2.1.186 1,206 2/20/2024
2.1.185 3,112 2/19/2024
2.1.184 2,783 2/17/2024
2.1.183 1,343 2/16/2024
2.1.182 1,222 2/16/2024
2.1.181 1,992 2/16/2024
2.1.180 191 2/16/2024
2.1.179 993 2/16/2024
2.1.178 193 2/16/2024
2.1.177 187 2/16/2024
2.1.176 792 2/16/2024
2.1.175 178 2/16/2024
2.1.174 4,856 2/13/2024
2.1.173 2,026 2/13/2024
2.1.172 1,624 2/13/2024
2.1.171 680 2/13/2024
2.1.170 914 2/13/2024
2.1.169 2,856 2/12/2024
2.1.168 669 2/11/2024
2.1.167 2,233 2/11/2024
2.1.166 1,210 2/11/2024
2.1.165 4,132 2/10/2024
2.1.164 778 2/9/2024
2.1.163 186 2/9/2024
2.1.162 2,297 2/9/2024
2.1.161 2,404 2/9/2024
2.1.160 592 2/8/2024
2.1.159 1,775 2/8/2024
2.1.158 1,161 2/8/2024
2.1.157 2,131 2/8/2024
2.1.156 172 2/8/2024
2.1.155 2,728 2/7/2024
2.1.154 639 2/7/2024
2.1.153 849 2/7/2024
2.1.152 1,874 2/7/2024
2.1.151 500 2/6/2024
2.1.150 181 2/6/2024
2.1.149 185 2/6/2024
2.1.148 4,069 2/5/2024
2.1.147 2,265 2/4/2024
2.1.146 3,046 2/2/2024
2.1.145 2,777 1/31/2024
2.1.144 3,043 1/29/2024
2.1.143 1,935 1/29/2024
2.1.142 516 1/29/2024
2.1.141 2,047 1/28/2024
2.1.140 671 1/28/2024
2.1.139 440 1/28/2024
2.1.138 754 1/28/2024
2.1.137 2,833 1/28/2024
2.1.136 1,471 1/28/2024
2.1.135 439 1/27/2024
2.1.134 1,316 1/27/2024
2.1.133 1,826 1/27/2024
2.1.132 1,759 1/27/2024
2.1.131 210 1/27/2024
2.1.130 945 1/27/2024
2.1.129 1,573 1/26/2024
2.1.128 353 1/26/2024
2.1.127 1,256 1/26/2024
2.1.126 1,659 1/26/2024
2.1.125 2,347 1/26/2024
2.1.124 1,336 1/25/2024
2.1.123 1,442 1/25/2024
2.1.122 649 1/25/2024
2.1.121 1,325 1/25/2024
2.1.120 721 1/25/2024
2.1.119 3,810 1/19/2024
2.1.118 3,108 1/15/2024
2.1.117 693 1/15/2024
2.1.116 1,860 1/15/2024
2.1.115 183 1/15/2024
2.1.114 799 1/15/2024
2.1.113 1,951 1/15/2024
2.1.112 3,560 1/14/2024
2.1.111 2,306 1/13/2024
2.1.110 2,483 1/12/2024
2.1.109 2,898 1/11/2024
2.1.108 3,701 1/7/2024
2.1.107 2,836 1/5/2024
2.1.106 709 1/5/2024
2.1.105 203 1/5/2024
2.1.104 189 1/5/2024
2.1.103 2,064 1/5/2024
2.1.102 196 1/5/2024
2.1.101 3,911 1/1/2024
2.1.100 3,115 12/28/2023
2.1.99 1,043 12/28/2023
2.1.98 715 12/28/2023
2.1.97 183 12/28/2023
2.1.96 193 12/28/2023
2.1.95 1,021 12/27/2023
2.1.94 203 12/27/2023
2.1.93 737 12/27/2023
2.1.92 197 12/27/2023
2.1.91 202 12/27/2023
2.1.90 3,303 12/25/2023
2.1.89 519 12/25/2023
2.1.88 1,213 12/25/2023
2.1.87 206 12/25/2023
2.1.86 991 12/25/2023
2.1.85 195 12/25/2023
2.1.84 847 12/25/2023
2.1.83 193 12/25/2023
2.1.82 2,477 12/24/2023
2.1.81 1,617 12/23/2023
2.1.80 1,329 12/23/2023
2.1.79 436 12/23/2023
2.1.78 872 12/23/2023
2.1.77 197 12/23/2023
2.1.76 182 12/23/2023
2.1.75 1,598 12/23/2023
2.1.74 186 12/23/2023
2.1.73 2,112 12/19/2023
2.1.72 316 12/19/2023
2.1.71 4,500 12/11/2023
2.1.70 1,061 12/10/2023
2.1.69 185 12/10/2023
2.1.68 642 12/10/2023
2.1.67 2,147 12/10/2023
2.1.66 550 12/9/2023
2.1.65 568 12/9/2023
2.1.64 417 12/9/2023
2.1.63 203 12/9/2023
2.1.62 365 12/9/2023
2.1.61 306 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,592 12/9/2023
2.1.58 196 12/9/2023
2.1.57 2,321 12/6/2023
2.1.56 598 12/6/2023
2.1.55 362 12/6/2023
2.1.54 421 12/6/2023
2.1.53 1,372 12/5/2023
2.1.52 566 12/5/2023
2.1.51 511 12/5/2023
2.1.50 578 12/5/2023
2.1.49 162 12/5/2023
2.1.48 492 12/5/2023
2.1.47 398 12/5/2023
2.1.46 166 12/4/2023
2.1.45 173 12/4/2023
2.1.44 487 12/4/2023
2.1.43 197 12/4/2023
2.1.42 1,597 12/4/2023
2.1.41 145 12/4/2023
2.1.40 1,804 11/27/2023
2.1.39 817 11/26/2023
2.1.38 332 11/26/2023
2.1.37 966 11/23/2023
2.1.36 1,066 11/23/2023
2.1.35 1,022 11/23/2023
2.1.34 175 11/23/2023
2.1.33 624 11/23/2023
2.1.32 186 11/23/2023
2.1.31 1,711 11/20/2023
2.1.30 1,782 11/20/2023
2.1.29 1,300 11/19/2023
2.1.28 389 11/19/2023
2.1.27 731 11/19/2023
2.1.26 754 11/19/2023
2.1.25 762 11/19/2023
2.1.24 163 11/19/2023
2.1.23 341 11/18/2023
2.1.22 1,558 11/18/2023
2.1.21 555 11/18/2023
2.1.20 839 11/18/2023
2.1.19 186 11/18/2023
2.1.18 463 11/18/2023
2.1.17 176 11/18/2023
2.1.16 963 11/17/2023
2.1.15 826 11/17/2023
2.1.14 166 11/17/2023
2.1.13 662 11/17/2023
2.1.12 460 11/17/2023
2.1.11 772 11/17/2023
2.1.10 172 11/17/2023
2.1.9 775 11/17/2023
2.1.8 180 11/17/2023
2.1.7 223 11/17/2023
2.1.6 503 11/17/2023
2.1.5 568 11/16/2023
2.0.101 3,518 11/15/2023
2.0.100 151 11/15/2023
2.0.99 180 11/15/2023
2.0.4 172 11/16/2023
2.0.3 188 11/16/2023
2.0.2 178 11/16/2023
2.0.1 172 11/16/2023
1.0.98 969 11/14/2023
1.0.97 1,130 11/13/2023
1.0.96 156 11/13/2023
1.0.95 778 11/10/2023
1.0.94 173 11/10/2023
1.0.93 1,412 11/9/2023
1.0.92 174 11/9/2023
1.0.91 1,552 11/7/2023
1.0.90 172 11/7/2023
1.0.89 736 11/6/2023
1.0.88 182 11/6/2023
1.0.87 852 11/3/2023
1.0.86 186 11/3/2023
1.0.85 1,296 11/2/2023
1.0.84 166 11/2/2023
1.0.83 859 11/1/2023
1.0.82 2,120 10/26/2023
1.0.81 1,903 10/19/2023
1.0.80 198 10/19/2023
1.0.79 1,150 10/18/2023
1.0.78 212 10/18/2023
1.0.77 1,053 10/17/2023
1.0.76 201 10/17/2023
1.0.75 946 10/16/2023
1.0.74 203 10/16/2023
1.0.73 1,022 10/13/2023
1.0.72 464 10/12/2023
1.0.71 2,481 9/20/2023
1.0.70 1,029 9/19/2023
1.0.69 1,014 9/18/2023
1.0.68 202 9/18/2023
1.0.67 1,321 9/14/2023
1.0.66 2,125 8/31/2023
1.0.65 201 8/31/2023
1.0.64 1,214 8/30/2023
1.0.63 229 8/30/2023
1.0.62 246 8/30/2023
1.0.61 1,234 8/28/2023
1.0.60 1,014 8/25/2023
1.0.59 203 8/25/2023
1.0.58 713 8/24/2023
1.0.57 2,120 8/21/2023
1.0.56 1,225 8/18/2023
1.0.55 1,085 8/17/2023
1.0.54 227 8/17/2023
1.0.53 2,756 8/10/2023
1.0.52 798 8/9/2023
1.0.51 970 8/8/2023
1.0.50 918 8/7/2023
1.0.49 248 8/7/2023
1.0.48 3,489 7/13/2023
1.0.47 1,263 7/11/2023
1.0.46 1,016 7/10/2023
1.0.45 964 7/7/2023
1.0.44 249 7/7/2023
1.0.43 2,951 6/30/2023
1.0.42 1,468 6/29/2023
1.0.41 812 6/28/2023
1.0.40 2,125 6/26/2023
1.0.39 1,126 6/23/2023
1.0.38 1,493 6/21/2023
1.0.37 2,025 6/15/2023
1.0.36 691 6/14/2023
1.0.35 2,451 6/9/2023
1.0.34 1,107 6/8/2023
1.0.33 2,124 6/7/2023
1.0.32 245 6/7/2023
1.0.31 1,569 6/6/2023
1.0.30 1,561 6/5/2023
1.0.29 1,733 6/2/2023
1.0.28 237 6/2/2023
1.0.27 1,586 6/1/2023
1.0.26 828 5/31/2023
1.0.25 660 5/31/2023
1.0.24 242 5/31/2023
1.0.23 1,950 5/30/2023
1.0.22 2,029 5/26/2023
1.0.21 922 5/25/2023
1.0.20 218 5/25/2023
1.0.19 1,096 5/24/2023
1.0.18 231 5/24/2023
1.0.17 644 5/23/2023
1.0.13 1,962 5/22/2023
1.0.12 1,589 5/18/2023
1.0.11 830 5/17/2023
1.0.10 1,965 5/1/2023
1.0.9 1,301 4/25/2023
1.0.8 609 4/24/2023
1.0.7 1,257 4/21/2023
1.0.6 2,517 4/13/2023
1.0.5 766 4/12/2023
1.0.4 1,310 4/8/2023
1.0.3 271 4/8/2023
1.0.2 772 4/8/2023
1.0.1 276 4/8/2023