Soenneker.Utils.SingletonDictionary 3.0.1092

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

A flexible singleton dictionary with double-check async locking, sync/async disposal, and external initialization


Features

  • ✅ Async and sync initialization patterns
  • ✅ Optional cancellation support
  • ✅ Async and sync access methods
  • ✅ Fully disposable (sync and async)
  • ✅ Thread-safe with AsyncLock from Nito.AsyncEx

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

✨ Example Usage

Here’s an example using SingletonDictionary to manage singleton HttpClient instances keyed by configuration (e.g. timeout):

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    public HttpRequester()
    {
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            var client = new HttpClient(socketsHandler)
            {
                Timeout = TimeSpan.FromSeconds((int)args[0])
            };

            return client;
        });
    }

    public async ValueTask Get()
    {
        var client = await _clients.Get("100", 100);
        await client.GetAsync("https://google.com");
    }

    public async ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(this);
        await _clients.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        _clients.Dispose();
    }
}

🔍 Internals

SingletonDictionary<T> is backed by a ConcurrentDictionary<string, T> and supports:

  • Multiple constructor overloads for async/sync factory functions
  • Internal double-checked locking on access
  • Deferred/lazy factory execution
  • Proper disposal of values (both sync and async interfaces)
  • Safe mutation via SetInitialization before first use

Example constructor overloads include:

new SingletonDictionary<T>(Func<string, object[], ValueTask<T>> factory);
new SingletonDictionary<T>(Func<object[], T> factory);
new SingletonDictionary<T>(Func<string, CancellationToken, object[], ValueTask<T>> factory);
// And more...

You can also initialize manually:

var dict = new SingletonDictionary<MyService>();
dict.SetInitialization((args) => new MyService(args));

🛡️ Thread Safety

This library uses AsyncLock for safe concurrent access in async contexts, and synchronously via Lock() for blocking methods. This avoids race conditions and guarantees safe singleton creation.

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.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.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.1108 2,717 9/30/2025
3.0.1107 35,669 9/9/2025
3.0.1106 22,902 9/3/2025
3.0.1105 365 9/3/2025
3.0.1104 2,236 9/3/2025
3.0.1103 30,129 8/14/2025
3.0.1102 7,561 8/11/2025
3.0.1101 3,080 8/11/2025
3.0.1100 799 8/11/2025
3.0.1099 149 8/11/2025
3.0.1098 22,872 8/6/2025
3.0.1097 4,908 8/5/2025
3.0.1096 28,642 7/9/2025
3.0.1095 30,592 6/28/2025
3.0.1094 1,690 6/28/2025
3.0.1093 2,439 6/27/2025
3.0.1092 3,039 6/27/2025
3.0.1091 33,113 6/10/2025
3.0.1090 23,059 5/27/2025
3.0.1089 1,236 5/27/2025
3.0.1088 1,288 5/27/2025
3.0.1087 3,133 5/27/2025
3.0.1086 19,201 5/23/2025
3.0.1085 1,687 5/23/2025
3.0.1084 1,660 5/23/2025
3.0.1083 1,615 5/23/2025
3.0.1082 321 5/22/2025
3.0.1081 13,262 5/18/2025
3.0.1079 2,006 5/18/2025
3.0.1078 1,949 5/18/2025
3.0.1077 5,652 5/14/2025
3.0.1076 12,305 5/8/2025
3.0.1075 374 5/8/2025
3.0.1074 803 5/8/2025
3.0.1073 1,448 5/7/2025
3.0.1072 17,187 5/5/2025
3.0.1071 1,157 5/5/2025
3.0.1070 2,117 5/5/2025
3.0.1069 983 5/5/2025
3.0.1068 281 5/5/2025
3.0.1067 192 5/5/2025
3.0.1066 24,196 4/9/2025
3.0.1065 353 4/9/2025
3.0.1064 1,430 4/8/2025
3.0.1063 3,004 4/8/2025
3.0.1062 4,060 4/8/2025
3.0.1061 249 4/8/2025
3.0.1060 213 4/8/2025
3.0.1059 243 4/8/2025
3.0.1058 195 4/8/2025
3.0.1057 1,217 4/8/2025
3.0.1056 384 4/8/2025
3.0.1055 9,112 4/8/2025
3.0.1054 904 4/8/2025
3.0.1053 4,559 4/7/2025
3.0.1052 986 4/7/2025
3.0.1051 203 4/7/2025
3.0.1050 774 4/7/2025
3.0.1049 205 4/7/2025
3.0.1048 9,584 4/7/2025
3.0.1047 206 4/7/2025
3.0.1046 13,216 4/7/2025
3.0.1045 207 4/7/2025
3.0.1044 1,840 4/7/2025
3.0.1043 206 4/7/2025
3.0.1042 2,177 4/7/2025
3.0.1041 1,272 4/6/2025
3.0.1040 356 4/6/2025
3.0.1039 211 4/6/2025
3.0.1038 1,503 4/6/2025
3.0.1037 210 4/6/2025
3.0.1036 496 4/6/2025
3.0.1035 1,616 4/6/2025
3.0.1034 177 4/6/2025
3.0.1033 2,827 4/6/2025
3.0.1032 154 4/6/2025
3.0.1031 195 4/6/2025
3.0.1030 159 4/6/2025
3.0.1029 2,187 4/5/2025
3.0.1028 228 4/5/2025
3.0.1027 1,648 4/5/2025
3.0.1026 1,469 4/5/2025
3.0.1025 1,445 4/5/2025
3.0.1024 828 4/5/2025
3.0.1023 716 4/5/2025
3.0.1022 153 4/5/2025
3.0.1021 1,789 4/4/2025
3.0.1020 9,654 4/4/2025
3.0.1019 32,576 4/4/2025
3.0.1018 9,552 4/1/2025
3.0.1017 3,717 4/1/2025
3.0.1016 209 4/1/2025
3.0.1015 7,784 4/1/2025
3.0.1014 3,343 3/31/2025
3.0.1013 463 3/31/2025
3.0.1012 5,432 3/31/2025
3.0.1011 9,765 3/29/2025
3.0.1010 1,498 3/29/2025
3.0.1009 2,028 3/29/2025
3.0.1008 145 3/29/2025
3.0.1007 6,258 3/27/2025
3.0.1006 5,335 3/25/2025
3.0.1005 694 3/25/2025
3.0.1004 4,281 3/25/2025
3.0.1003 8,785 3/21/2025
3.0.1002 3,653 3/21/2025
3.0.1001 9,753 3/18/2025
3.0.1000 4,847 3/18/2025
3.0.999 9,251 3/15/2025
3.0.998 2,622 3/15/2025
3.0.997 122 3/15/2025
3.0.996 8,738 3/12/2025
3.0.995 3,078 3/12/2025
3.0.994 211 3/12/2025
3.0.993 517 3/12/2025
3.0.992 198 3/12/2025
3.0.991 3,840 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,729 3/11/2025
3.0.988 212 3/11/2025
3.0.987 3,652 3/11/2025
3.0.986 216 3/11/2025
3.0.985 3,571 3/11/2025
3.0.984 202 3/11/2025
3.0.983 2,274 3/11/2025
3.0.982 195 3/11/2025
3.0.981 12,691 3/7/2025
3.0.980 3,687 3/7/2025
3.0.979 8,574 3/2/2025
3.0.978 1,486 3/2/2025
3.0.977 941 3/2/2025
3.0.976 140 3/2/2025
3.0.975 6,146 3/2/2025
3.0.974 147 3/2/2025
3.0.973 4,575 3/1/2025
3.0.972 130 3/1/2025
3.0.971 6,297 3/1/2025
3.0.970 161 3/1/2025
3.0.969 128 3/1/2025
3.0.968 598 3/1/2025
3.0.967 139 3/1/2025
3.0.966 8,412 3/1/2025
3.0.965 6,691 2/26/2025
3.0.964 1,137 2/26/2025
3.0.963 3,384 2/25/2025
3.0.962 143 2/25/2025
3.0.961 1,196 2/25/2025
3.0.960 124 2/25/2025
3.0.959 169 2/25/2025
3.0.958 2,662 2/25/2025
3.0.957 6,906 2/24/2025
3.0.956 6,439 2/23/2025
3.0.955 1,518 2/22/2025
3.0.954 130 2/22/2025
3.0.953 10,960 2/22/2025
3.0.952 3,112 2/22/2025
3.0.951 1,517 2/22/2025
3.0.950 1,088 2/22/2025
3.0.949 177 2/22/2025
3.0.948 145 2/22/2025
3.0.947 148 2/22/2025
3.0.946 6,652 2/21/2025
3.0.945 141 2/21/2025
3.0.944 8,021 2/21/2025
3.0.943 6,413 2/19/2025
3.0.942 2,201 2/19/2025
3.0.941 949 2/19/2025
3.0.940 147 2/19/2025
3.0.939 521 2/18/2025
3.0.938 147 2/18/2025
3.0.937 7,617 2/18/2025
3.0.936 140 2/18/2025
3.0.935 3,912 2/18/2025
3.0.934 9,362 2/16/2025
3.0.933 2,093 2/14/2025
3.0.932 1,088 2/14/2025
3.0.931 982 2/13/2025
3.0.930 3,363 2/13/2025
3.0.929 398 2/13/2025
3.0.928 5,209 2/13/2025
3.0.927 5,197 2/12/2025
3.0.926 1,985 2/12/2025
3.0.925 168 2/12/2025
3.0.924 146 2/12/2025
3.0.923 2,778 2/12/2025
3.0.922 427 2/12/2025
3.0.921 153 2/12/2025
3.0.920 227 2/12/2025
3.0.919 220 2/12/2025
3.0.918 146 2/12/2025
3.0.917 205 2/11/2025
3.0.916 4,754 2/11/2025
3.0.915 5,340 2/11/2025
3.0.914 3,110 2/11/2025
3.0.913 157 2/11/2025
3.0.912 503 2/11/2025
3.0.911 2,452 2/10/2025
3.0.910 165 2/10/2025
3.0.909 1,071 2/10/2025
3.0.908 162 2/10/2025
3.0.907 8,923 2/10/2025
3.0.906 157 2/10/2025
3.0.905 1,637 2/9/2025
3.0.904 8,103 2/9/2025
3.0.903 141 2/9/2025
3.0.902 10,298 2/8/2025
3.0.901 156 2/8/2025
3.0.900 2,387 2/7/2025
3.0.899 149 2/7/2025
3.0.898 2,284 2/7/2025
3.0.897 150 2/7/2025
3.0.896 854 2/7/2025
3.0.895 571 2/7/2025
3.0.894 159 2/7/2025
3.0.893 469 2/7/2025
3.0.892 145 2/7/2025
3.0.891 1,477 2/7/2025
3.0.890 140 2/7/2025
3.0.889 155 2/7/2025
3.0.888 15,069 2/7/2025
3.0.887 8,939 2/5/2025
3.0.886 863 2/5/2025
3.0.885 1,279 2/5/2025
3.0.884 375 2/5/2025
3.0.883 1,401 2/5/2025
3.0.882 896 2/5/2025
3.0.881 4,353 2/5/2025
3.0.880 136 2/5/2025
3.0.879 14,770 1/28/2025
3.0.878 936 1/28/2025
3.0.877 2,667 1/28/2025
3.0.876 298 1/28/2025
3.0.875 5,712 1/28/2025
3.0.874 896 1/27/2025
3.0.873 117 1/27/2025
3.0.872 242 1/27/2025
3.0.871 390 1/27/2025
3.0.870 133 1/27/2025
3.0.869 7,115 1/27/2025
3.0.868 6,469 1/26/2025
3.0.867 1,338 1/26/2025
3.0.866 238 1/26/2025
3.0.865 1,487 1/26/2025
3.0.864 1,897 1/25/2025
3.0.863 135 1/25/2025
3.0.862 8,174 1/25/2025
3.0.861 1,455 1/25/2025
3.0.860 404 1/25/2025
3.0.859 145 1/25/2025
3.0.858 2,748 1/25/2025
3.0.857 1,795 1/25/2025
3.0.856 9,257 1/24/2025
3.0.855 2,219 1/24/2025
3.0.854 122 1/24/2025
3.0.853 2,935 1/24/2025
3.0.852 454 1/24/2025
3.0.851 312 1/24/2025
3.0.850 4,497 1/24/2025
3.0.849 137 1/24/2025
3.0.848 699 1/23/2025
3.0.847 141 1/23/2025
3.0.846 851 1/23/2025
3.0.845 135 1/23/2025
3.0.844 11,216 1/22/2025
3.0.843 1,370 1/21/2025
3.0.842 1,327 1/21/2025
3.0.841 766 1/21/2025
3.0.840 128 1/21/2025
3.0.839 784 1/21/2025
3.0.838 1,000 1/21/2025
3.0.837 7,619 1/21/2025
3.0.836 868 1/21/2025
3.0.835 1,411 1/21/2025
3.0.834 142 1/21/2025
3.0.833 1,122 1/21/2025
3.0.832 133 1/21/2025
3.0.831 3,178 1/21/2025
3.0.830 125 1/21/2025
3.0.829 575 1/20/2025
3.0.828 4,034 1/20/2025
3.0.827 341 1/20/2025
3.0.826 2,900 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,559 1/20/2025
3.0.823 144 1/20/2025
3.0.822 148 1/20/2025
3.0.821 141 1/20/2025
3.0.820 484 1/20/2025
3.0.819 145 1/20/2025
3.0.818 138 1/20/2025
3.0.817 7,911 1/19/2025
3.0.816 143 1/19/2025
3.0.815 7,469 1/19/2025
3.0.814 2,311 1/19/2025
3.0.813 169 1/19/2025
3.0.812 552 1/19/2025
3.0.811 135 1/19/2025
3.0.810 2,688 1/19/2025
3.0.809 134 1/19/2025
3.0.808 4,637 1/18/2025
3.0.807 141 1/18/2025
3.0.806 10,099 1/17/2025
3.0.805 150 1/17/2025
3.0.804 912 1/17/2025
3.0.803 1,373 1/17/2025
3.0.802 5,973 1/16/2025
3.0.801 2,039 1/16/2025
3.0.800 2,958 1/16/2025
3.0.799 743 1/16/2025
3.0.798 1,776 1/16/2025
3.0.797 1,428 1/16/2025
3.0.796 128 1/16/2025
3.0.795 6,621 1/15/2025
3.0.794 134 1/15/2025
3.0.793 3,995 1/15/2025
3.0.792 130 1/15/2025
3.0.791 193 1/15/2025
3.0.790 4,809 1/15/2025
3.0.789 117 1/15/2025
3.0.788 4,075 1/15/2025
3.0.787 114 1/15/2025
3.0.786 728 1/15/2025
3.0.785 110 1/15/2025
3.0.784 2,417 1/15/2025
3.0.783 112 1/15/2025
3.0.782 360 1/14/2025
3.0.781 125 1/14/2025
3.0.780 126 1/14/2025
3.0.779 4,998 1/14/2025
3.0.778 809 1/14/2025
3.0.777 126 1/14/2025
3.0.776 1,585 1/14/2025
3.0.775 114 1/14/2025
3.0.774 8,006 1/13/2025
3.0.773 2,312 1/13/2025
3.0.772 1,983 1/13/2025
3.0.771 131 1/13/2025
3.0.770 7,654 1/11/2025
3.0.769 3,045 1/11/2025
3.0.768 156 1/11/2025
3.0.767 2,844 1/11/2025
3.0.766 142 1/11/2025
3.0.765 2,605 1/10/2025
3.0.764 2,811 1/10/2025
3.0.763 135 1/10/2025
3.0.762 1,161 1/10/2025
3.0.761 150 1/10/2025
3.0.760 137 1/10/2025
3.0.759 9,398 1/3/2025
3.0.758 632 1/3/2025
3.0.757 1,384 1/3/2025
3.0.756 172 1/3/2025
3.0.755 2,047 1/3/2025
3.0.754 145 1/3/2025
3.0.753 1,567 1/3/2025
3.0.752 1,514 1/2/2025
3.0.751 141 1/2/2025
3.0.750 2,568 1/2/2025
3.0.749 145 1/2/2025
3.0.748 4,179 1/2/2025
3.0.747 135 1/2/2025
3.0.746 155 1/2/2025
3.0.745 7,023 1/1/2025
3.0.744 1,475 1/1/2025
3.0.743 365 1/1/2025
3.0.742 164 1/1/2025
3.0.741 2,205 1/1/2025
3.0.740 148 1/1/2025
3.0.739 146 1/1/2025
3.0.738 158 1/1/2025
3.0.737 434 12/31/2024
3.0.736 159 12/31/2024
3.0.735 169 12/31/2024
3.0.734 904 12/31/2024
3.0.733 169 12/31/2024
3.0.732 6,797 12/31/2024
3.0.731 159 12/31/2024
3.0.730 6,540 12/31/2024
3.0.729 129 12/31/2024
3.0.728 3,645 12/31/2024
3.0.727 481 12/31/2024
3.0.726 148 12/31/2024
3.0.725 1,918 12/31/2024
3.0.724 145 12/31/2024
3.0.723 13,049 12/28/2024
3.0.722 1,644 12/28/2024
3.0.721 1,835 12/27/2024
3.0.720 159 12/27/2024
3.0.719 3,886 12/27/2024
3.0.718 7,386 12/24/2024
3.0.717 1,801 12/24/2024
3.0.716 1,329 12/24/2024
3.0.715 1,119 12/24/2024
3.0.714 1,969 12/24/2024
3.0.713 140 12/24/2024
3.0.712 3,187 12/24/2024
3.0.711 905 12/24/2024
3.0.710 142 12/24/2024
3.0.709 623 12/24/2024
3.0.708 1,368 12/24/2024
3.0.707 345 12/24/2024
3.0.706 175 12/24/2024
3.0.705 1,507 12/24/2024
3.0.704 150 12/24/2024
3.0.703 2,572 12/23/2024
3.0.702 4,100 12/23/2024
3.0.701 148 12/23/2024
3.0.700 984 12/23/2024
3.0.699 146 12/23/2024
3.0.698 2,758 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,168 12/23/2024
3.0.695 153 12/23/2024
3.0.694 610 12/22/2024
3.0.693 2,080 12/22/2024
3.0.692 5,793 12/22/2024
3.0.691 157 12/22/2024
3.0.690 2,332 12/22/2024
3.0.689 213 12/22/2024
3.0.688 636 12/22/2024
3.0.687 141 12/22/2024
3.0.686 355 12/22/2024
3.0.685 148 12/22/2024
3.0.684 9,918 12/22/2024
3.0.683 137 12/22/2024
3.0.682 1,552 12/21/2024
3.0.681 378 12/21/2024
3.0.680 143 12/21/2024
3.0.679 712 12/21/2024
3.0.678 1,178 12/21/2024
3.0.677 140 12/21/2024
3.0.676 5,587 12/21/2024
3.0.675 553 12/21/2024
3.0.674 144 12/21/2024
3.0.673 3,674 12/21/2024
3.0.672 997 12/21/2024
3.0.671 153 12/21/2024
3.0.670 2,225 12/20/2024
3.0.669 153 12/20/2024
3.0.668 149 12/20/2024
3.0.667 5,538 12/20/2024
3.0.666 1,638 12/20/2024
3.0.665 304 12/20/2024
3.0.664 5,058 12/19/2024
3.0.663 609 12/19/2024
3.0.662 2,984 12/18/2024
3.0.661 142 12/18/2024
3.0.660 9,351 12/17/2024
3.0.659 287 12/17/2024
3.0.658 955 12/16/2024
3.0.657 151 12/16/2024
3.0.656 203 12/16/2024
3.0.655 139 12/16/2024
3.0.654 9,270 12/10/2024
3.0.653 1,466 12/10/2024
3.0.652 530 12/9/2024
3.0.651 147 12/9/2024
3.0.650 3,904 12/9/2024
3.0.649 2,022 12/9/2024
3.0.648 142 12/9/2024
3.0.647 5,455 12/9/2024
3.0.646 4,111 12/6/2024
3.0.645 616 12/6/2024
3.0.644 148 12/6/2024
3.0.643 998 12/6/2024
3.0.641 5,645 12/6/2024
3.0.640 3,631 12/6/2024
3.0.639 7,851 12/6/2024
3.0.637 505 12/6/2024
3.0.636 3,703 12/5/2024
3.0.635 5,040 12/5/2024
3.0.634 4,256 12/5/2024
3.0.633 141 12/5/2024
3.0.632 2,623 12/5/2024
3.0.631 1,457 12/5/2024
3.0.630 151 12/5/2024
3.0.629 524 12/5/2024
3.0.628 145 12/5/2024
3.0.627 196 12/5/2024
3.0.626 146 12/5/2024
3.0.625 4,924 12/4/2024
3.0.624 145 12/4/2024
3.0.623 161 12/4/2024
3.0.622 164 12/4/2024
3.0.621 2,430 12/4/2024
3.0.620 420 12/4/2024
3.0.619 604 12/4/2024
3.0.618 4,999 12/3/2024
3.0.617 150 12/3/2024
3.0.616 1,618 12/3/2024
3.0.615 686 12/3/2024
3.0.614 162 12/3/2024
3.0.613 162 12/3/2024
3.0.612 5,642 12/3/2024
3.0.611 142 12/3/2024
3.0.610 4,829 12/3/2024
3.0.609 136 12/3/2024
3.0.608 4,530 12/2/2024
3.0.607 4,058 12/2/2024
3.0.606 2,341 12/2/2024
3.0.605 379 12/2/2024
3.0.604 153 12/2/2024
3.0.603 562 12/2/2024
3.0.602 5,016 12/1/2024
3.0.601 154 12/1/2024
3.0.600 2,748 12/1/2024
3.0.599 260 12/1/2024
3.0.598 5,118 12/1/2024
3.0.597 155 12/1/2024
3.0.596 5,313 11/29/2024
3.0.595 1,591 11/29/2024
3.0.594 8,103 11/21/2024
3.0.593 435 11/21/2024
3.0.592 6,618 11/20/2024
3.0.591 476 11/20/2024
3.0.590 157 11/20/2024
3.0.589 143 11/20/2024
3.0.588 611 11/20/2024
3.0.587 231 11/20/2024
3.0.586 143 11/20/2024
3.0.585 2,813 11/20/2024
3.0.584 3,970 11/19/2024
3.0.583 149 11/19/2024
3.0.582 905 11/19/2024
3.0.581 133 11/19/2024
3.0.580 3,643 11/19/2024
3.0.579 128 11/19/2024
3.0.578 1,828 11/19/2024
3.0.577 153 11/19/2024
3.0.576 12,396 11/14/2024
3.0.575 210 11/14/2024
3.0.574 741 11/14/2024
3.0.573 3,408 11/14/2024
3.0.572 1,050 11/14/2024
3.0.571 161 11/14/2024
3.0.570 155 11/14/2024
3.0.569 5,962 11/14/2024
3.0.568 154 11/14/2024
3.0.567 153 11/14/2024
3.0.566 5,164 11/14/2024
3.0.565 149 11/14/2024
3.0.564 151 11/14/2024
3.0.563 148 11/14/2024
2.1.562 11,906 11/13/2024
2.1.561 1,947 11/13/2024
2.1.560 4,373 11/13/2024
2.1.559 164 11/13/2024
2.1.558 1,916 11/12/2024
2.1.557 520 11/12/2024
2.1.556 11,637 11/9/2024
2.1.555 514 11/9/2024
2.1.554 161 11/9/2024
2.1.553 2,431 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,273 11/8/2024
2.1.550 150 11/8/2024
2.1.549 154 11/8/2024
2.1.548 155 11/8/2024
2.1.547 547 11/8/2024
2.1.546 2,691 11/8/2024
2.1.545 139 11/8/2024
2.1.544 7,706 11/8/2024
2.1.543 133 11/8/2024
2.1.542 16,852 11/1/2024
2.1.541 635 11/1/2024
2.1.540 9,734 10/29/2024
2.1.539 1,044 10/29/2024
2.1.538 3,934 10/29/2024
2.1.537 863 10/29/2024
2.1.536 7,830 10/28/2024
2.1.535 2,669 10/28/2024
2.1.534 5,490 10/26/2024
2.1.533 1,001 10/26/2024
2.1.532 11,956 10/22/2024
2.1.531 372 10/22/2024
2.1.530 736 10/22/2024
2.1.529 1,274 10/22/2024
2.1.528 146 10/22/2024
2.1.527 655 10/22/2024
2.1.526 9,363 10/18/2024
2.1.525 1,530 10/17/2024
2.1.524 5,971 10/15/2024
2.1.523 2,257 10/15/2024
2.1.522 147 10/14/2024
2.1.521 7,330 10/12/2024
2.1.520 956 10/11/2024
2.1.519 145 10/11/2024
2.1.518 670 10/11/2024
2.1.517 4,188 10/11/2024
2.1.516 9,221 10/9/2024
2.1.515 526 10/9/2024
2.1.514 132 10/9/2024
2.1.513 2,761 10/8/2024
2.1.512 206 10/8/2024
2.1.511 3,117 10/8/2024
2.1.510 189 10/8/2024
2.1.509 137 10/8/2024
2.1.508 5,669 10/8/2024
2.1.507 8,811 10/3/2024
2.1.506 150 10/3/2024
2.1.505 1,610 10/3/2024
2.1.504 2,788 10/3/2024
2.1.503 2,033 10/3/2024
2.1.502 8,372 10/2/2024
2.1.501 143 10/2/2024
2.1.500 2,588 10/2/2024
2.1.499 1,438 10/2/2024
2.1.498 5,982 10/1/2024
2.1.497 979 10/1/2024
2.1.496 160 10/1/2024
2.1.495 3,732 10/1/2024
2.1.494 151 10/1/2024
2.1.493 191 10/1/2024
2.1.492 7,836 9/29/2024
2.1.491 1,933 9/29/2024
2.1.490 150 9/29/2024
2.1.489 1,715 9/29/2024
2.1.488 158 9/29/2024
2.1.487 3,679 9/29/2024
2.1.486 7,309 9/27/2024
2.1.485 1,084 9/27/2024
2.1.484 4,361 9/27/2024
2.1.483 162 9/27/2024
2.1.482 598 9/27/2024
2.1.481 3,043 9/27/2024
2.1.480 4,629 9/26/2024
2.1.479 4,971 9/26/2024
2.1.478 3,318 9/26/2024
2.1.477 3,022 9/26/2024
2.1.476 5,344 9/26/2024
2.1.475 146 9/26/2024
2.1.474 8,016 9/23/2024
2.1.473 1,796 9/23/2024
2.1.472 1,359 9/23/2024
2.1.471 1,615 9/23/2024
2.1.470 160 9/23/2024
2.1.469 2,152 9/23/2024
2.1.468 132 9/23/2024
2.1.467 6,701 9/23/2024
2.1.466 154 9/23/2024
2.1.465 1,070 9/23/2024
2.1.464 167 9/23/2024
2.1.463 139 9/23/2024
2.1.462 1,265 9/23/2024
2.1.461 13,193 9/18/2024
2.1.460 325 9/17/2024
2.1.459 1,701 9/17/2024
2.1.458 2,334 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,525 9/17/2024
2.1.455 623 9/17/2024
2.1.454 4,530 9/17/2024
2.1.453 789 9/17/2024
2.1.452 261 9/17/2024
2.1.451 3,638 9/17/2024
2.1.450 10,473 9/16/2024
2.1.449 982 9/16/2024
2.1.448 6,856 9/12/2024
2.1.447 4,046 9/12/2024
2.1.446 1,785 9/11/2024
2.1.445 2,158 9/11/2024
2.1.443 4,881 9/11/2024
2.1.442 1,308 9/11/2024
2.1.441 1,248 9/11/2024
2.1.440 3,127 9/11/2024
2.1.439 10,932 9/10/2024
2.1.438 173 9/10/2024
2.1.437 1,517 9/10/2024
2.1.436 166 9/10/2024
2.1.434 3,937 9/10/2024
2.1.433 779 9/9/2024
2.1.432 2,503 9/9/2024
2.1.430 2,019 9/9/2024
2.1.428 175 9/9/2024
2.1.427 580 9/9/2024
2.1.426 18,155 9/7/2024
2.1.425 188 9/7/2024
2.1.424 6,799 9/6/2024
2.1.423 479 9/6/2024
2.1.422 3,064 9/6/2024
2.1.421 165 9/5/2024
2.1.420 175 9/5/2024
2.1.419 3,284 9/5/2024
2.1.418 1,557 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,488 9/5/2024
2.1.415 596 9/5/2024
2.1.414 160 9/5/2024
2.1.413 6,864 9/5/2024
2.1.412 263 9/5/2024
2.1.411 170 9/5/2024
2.1.410 3,079 9/4/2024
2.1.409 11,025 9/3/2024
2.1.408 154 9/3/2024
2.1.407 156 9/3/2024
2.1.406 5,438 9/3/2024
2.1.405 199 9/3/2024
2.1.404 3,472 9/3/2024
2.1.403 7,227 8/29/2024
2.1.402 3,532 8/29/2024
2.1.401 3,929 8/26/2024
2.1.400 146 8/26/2024
2.1.399 6,926 8/21/2024
2.1.398 831 8/21/2024
2.1.397 189 8/21/2024
2.1.396 3,571 8/21/2024
2.1.395 196 8/20/2024
2.1.394 192 8/20/2024
2.1.393 644 8/20/2024
2.1.392 4,184 8/20/2024
2.1.391 571 8/20/2024
2.1.390 166 8/20/2024
2.1.389 3,693 8/20/2024
2.1.388 170 8/20/2024
2.1.387 1,706 8/20/2024
2.1.386 4,062 8/19/2024
2.1.385 6,690 8/15/2024
2.1.384 2,830 8/15/2024
2.1.383 6,610 8/14/2024
2.1.382 191 8/13/2024
2.1.381 7,782 8/7/2024
2.1.380 390 8/6/2024
2.1.379 3,766 8/6/2024
2.1.378 7,058 8/1/2024
2.1.377 472 8/1/2024
2.1.376 145 8/1/2024
2.1.374 1,683 8/1/2024
2.1.373 8,389 7/25/2024
2.1.372 141 7/25/2024
2.1.371 1,083 7/25/2024
2.1.370 441 7/25/2024
2.1.369 525 7/25/2024
2.1.368 260 7/25/2024
2.1.367 575 7/24/2024
2.1.366 209 7/24/2024
2.1.365 320 7/24/2024
2.1.364 466 7/24/2024
2.1.363 12,042 7/20/2024
2.1.362 2,088 7/20/2024
2.1.361 7,163 7/14/2024
2.1.360 2,168 7/14/2024
2.1.359 154 7/14/2024
2.1.358 2,121 7/14/2024
2.1.357 6,158 7/10/2024
2.1.355 1,014 7/10/2024
2.1.354 1,645 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,466 7/10/2024
2.1.351 182 7/10/2024
2.1.350 151 7/10/2024
2.1.349 227 7/10/2024
2.1.348 157 7/10/2024
2.1.347 2,797 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,192 7/10/2024
2.1.344 153 7/10/2024
2.1.343 283 7/9/2024
2.1.342 140 7/9/2024
2.1.339 2,746 7/9/2024
2.1.338 604 7/9/2024
2.1.337 5,773 7/9/2024
2.1.336 1,530 7/9/2024
2.1.335 164 7/9/2024
2.1.334 3,548 7/9/2024
2.1.333 148 7/9/2024
2.1.332 11,233 7/9/2024
2.1.331 161 7/9/2024
2.1.330 3,483 7/9/2024
2.1.329 148 7/9/2024
2.1.328 1,464 7/9/2024
2.1.327 912 7/8/2024
2.1.326 1,374 7/8/2024
2.1.325 162 7/8/2024
2.1.324 174 7/8/2024
2.1.323 6,953 7/8/2024
2.1.322 2,250 7/8/2024
2.1.321 159 7/8/2024
2.1.320 3,335 7/7/2024
2.1.319 170 7/7/2024
2.1.318 183 7/7/2024
2.1.317 167 7/7/2024
2.1.316 1,642 7/7/2024
2.1.315 3,052 7/7/2024
2.1.314 2,608 7/7/2024
2.1.313 320 7/7/2024
2.1.312 4,833 7/5/2024
2.1.311 5,580 7/3/2024
2.1.310 4,347 7/3/2024
2.1.309 569 7/3/2024
2.1.308 5,694 7/2/2024
2.1.307 2,597 6/30/2024
2.1.306 3,170 6/28/2024
2.1.305 7,507 6/22/2024
2.1.304 6,815 6/15/2024
2.1.303 5,639 6/14/2024
2.1.302 8,112 6/1/2024
2.1.301 2,252 6/1/2024
2.1.300 799 6/1/2024
2.1.299 8,204 5/31/2024
2.1.298 5,138 5/29/2024
2.1.297 4,250 5/28/2024
2.1.296 3,439 5/27/2024
2.1.295 6,776 5/26/2024
2.1.294 2,849 5/26/2024
2.1.293 677 5/26/2024
2.1.292 3,546 5/25/2024
2.1.291 1,869 5/25/2024
2.1.290 181 5/25/2024
2.1.289 174 5/25/2024
2.1.288 988 5/25/2024
2.1.287 170 5/25/2024
2.1.286 534 5/25/2024
2.1.285 170 5/25/2024
2.1.284 167 5/25/2024
2.1.283 10,437 5/23/2024
2.1.282 728 5/23/2024
2.1.281 371 5/22/2024
2.1.280 5,097 5/22/2024
2.1.279 175 5/22/2024
2.1.278 181 5/22/2024
2.1.277 170 5/22/2024
2.1.276 3,011 5/22/2024
2.1.275 4,773 5/18/2024
2.1.274 2,604 5/18/2024
2.1.273 2,559 5/17/2024
2.1.272 166 5/17/2024
2.1.271 3,739 5/16/2024
2.1.270 590 5/15/2024
2.1.269 3,858 5/15/2024
2.1.268 6,291 5/12/2024
2.1.267 3,857 5/3/2024
2.1.266 1,609 4/30/2024
2.1.265 2,479 4/29/2024
2.1.264 2,641 4/29/2024
2.1.263 3,730 4/28/2024
2.1.262 2,079 4/28/2024
2.1.261 1,532 4/28/2024
2.1.260 2,358 4/28/2024
2.1.259 1,331 4/28/2024
2.1.258 159 4/28/2024
2.1.257 5,809 4/27/2024
2.1.256 179 4/27/2024
2.1.255 5,980 4/19/2024
2.1.254 5,706 4/18/2024
2.1.253 4,715 4/12/2024
2.1.252 1,585 4/12/2024
2.1.251 969 4/12/2024
2.1.250 1,184 4/12/2024
2.1.249 273 4/12/2024
2.1.248 154 4/12/2024
2.1.247 1,365 4/12/2024
2.1.246 434 4/12/2024
2.1.245 2,127 4/11/2024
2.1.244 5,373 4/10/2024
2.1.243 1,519 4/9/2024
2.1.242 4,370 4/2/2024
2.1.241 1,224 4/1/2024
2.1.240 2,886 3/29/2024
2.1.239 2,469 3/25/2024
2.1.238 383 3/25/2024
2.1.237 4,543 3/20/2024
2.1.236 2,800 3/19/2024
2.1.235 649 3/19/2024
2.1.234 3,318 3/18/2024
2.1.233 1,809 3/18/2024
2.1.232 1,795 3/15/2024
2.1.231 3,159 3/13/2024
2.1.230 1,418 3/13/2024
2.1.229 942 3/13/2024
2.1.228 993 3/13/2024
2.1.227 185 3/13/2024
2.1.226 697 3/13/2024
2.1.225 180 3/13/2024
2.1.224 184 3/13/2024
2.1.223 2,226 3/12/2024
2.1.222 3,792 3/11/2024
2.1.221 3,317 3/11/2024
2.1.220 2,161 3/10/2024
2.1.219 2,542 3/8/2024
2.1.218 1,379 3/8/2024
2.1.217 2,052 3/8/2024
2.1.216 2,834 3/6/2024
2.1.215 2,657 3/4/2024
2.1.214 1,889 3/4/2024
2.1.213 3,481 3/2/2024
2.1.212 1,607 3/2/2024
2.1.211 525 3/2/2024
2.1.210 447 3/2/2024
2.1.209 688 3/2/2024
2.1.208 4,499 2/29/2024
2.1.207 819 2/29/2024
2.1.206 469 2/29/2024
2.1.205 4,395 2/26/2024
2.1.204 1,948 2/25/2024
2.1.203 3,446 2/23/2024
2.1.202 2,460 2/22/2024
2.1.201 1,209 2/22/2024
2.1.200 576 2/21/2024
2.1.199 1,503 2/21/2024
2.1.198 376 2/21/2024
2.1.197 910 2/21/2024
2.1.196 169 2/21/2024
2.1.195 1,713 2/21/2024
2.1.194 531 2/21/2024
2.1.193 175 2/21/2024
2.1.192 188 2/21/2024
2.1.191 709 2/21/2024
2.1.190 163 2/21/2024
2.1.189 3,531 2/20/2024
2.1.188 859 2/20/2024
2.1.187 805 2/20/2024
2.1.186 1,084 2/20/2024
2.1.185 2,772 2/19/2024
2.1.184 2,468 2/17/2024
2.1.183 1,178 2/16/2024
2.1.182 1,064 2/16/2024
2.1.181 1,798 2/16/2024
2.1.180 179 2/16/2024
2.1.179 866 2/16/2024
2.1.178 181 2/16/2024
2.1.177 176 2/16/2024
2.1.176 702 2/16/2024
2.1.175 165 2/16/2024
2.1.174 4,387 2/13/2024
2.1.173 1,776 2/13/2024
2.1.172 1,419 2/13/2024
2.1.171 611 2/13/2024
2.1.170 815 2/13/2024
2.1.169 2,527 2/12/2024
2.1.168 613 2/11/2024
2.1.167 2,018 2/11/2024
2.1.166 1,101 2/11/2024
2.1.165 3,657 2/10/2024
2.1.164 676 2/9/2024
2.1.163 176 2/9/2024
2.1.162 2,090 2/9/2024
2.1.161 2,117 2/9/2024
2.1.160 528 2/8/2024
2.1.159 1,610 2/8/2024
2.1.158 1,026 2/8/2024
2.1.157 1,906 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,449 2/7/2024
2.1.154 583 2/7/2024
2.1.153 749 2/7/2024
2.1.152 1,693 2/7/2024
2.1.151 453 2/6/2024
2.1.150 171 2/6/2024
2.1.149 173 2/6/2024
2.1.148 3,605 2/5/2024
2.1.147 2,016 2/4/2024
2.1.146 2,749 2/2/2024
2.1.145 2,457 1/31/2024
2.1.144 2,726 1/29/2024
2.1.143 1,738 1/29/2024
2.1.142 453 1/29/2024
2.1.141 1,853 1/28/2024
2.1.140 624 1/28/2024
2.1.139 391 1/28/2024
2.1.138 663 1/28/2024
2.1.137 2,578 1/28/2024
2.1.136 1,234 1/28/2024
2.1.135 394 1/27/2024
2.1.134 1,164 1/27/2024
2.1.133 1,650 1/27/2024
2.1.132 1,589 1/27/2024
2.1.131 196 1/27/2024
2.1.130 838 1/27/2024
2.1.129 1,421 1/26/2024
2.1.128 300 1/26/2024
2.1.127 1,110 1/26/2024
2.1.126 1,503 1/26/2024
2.1.125 2,109 1/26/2024
2.1.124 1,186 1/25/2024
2.1.123 1,305 1/25/2024
2.1.122 580 1/25/2024
2.1.121 1,126 1/25/2024
2.1.120 633 1/25/2024
2.1.119 3,463 1/19/2024
2.1.118 2,808 1/15/2024
2.1.117 615 1/15/2024
2.1.116 1,650 1/15/2024
2.1.115 172 1/15/2024
2.1.114 699 1/15/2024
2.1.113 1,763 1/15/2024
2.1.112 3,234 1/14/2024
2.1.111 2,073 1/13/2024
2.1.110 2,242 1/12/2024
2.1.109 2,641 1/11/2024
2.1.108 3,308 1/7/2024
2.1.107 2,587 1/5/2024
2.1.106 646 1/5/2024
2.1.105 192 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,792 1/5/2024
2.1.102 186 1/5/2024
2.1.101 3,568 1/1/2024
2.1.100 2,819 12/28/2023
2.1.99 953 12/28/2023
2.1.98 661 12/28/2023
2.1.97 173 12/28/2023
2.1.96 178 12/28/2023
2.1.95 880 12/27/2023
2.1.94 193 12/27/2023
2.1.93 684 12/27/2023
2.1.92 185 12/27/2023
2.1.91 190 12/27/2023
2.1.90 3,004 12/25/2023
2.1.89 452 12/25/2023
2.1.88 1,112 12/25/2023
2.1.87 193 12/25/2023
2.1.86 839 12/25/2023
2.1.85 182 12/25/2023
2.1.84 796 12/25/2023
2.1.83 183 12/25/2023
2.1.82 2,247 12/24/2023
2.1.81 1,491 12/23/2023
2.1.80 1,219 12/23/2023
2.1.79 385 12/23/2023
2.1.78 737 12/23/2023
2.1.77 185 12/23/2023
2.1.76 170 12/23/2023
2.1.75 1,462 12/23/2023
2.1.74 175 12/23/2023
2.1.73 1,895 12/19/2023
2.1.72 278 12/19/2023
2.1.71 4,128 12/11/2023
2.1.70 989 12/10/2023
2.1.69 173 12/10/2023
2.1.68 589 12/10/2023
2.1.67 1,944 12/10/2023
2.1.66 504 12/9/2023
2.1.65 476 12/9/2023
2.1.64 366 12/9/2023
2.1.63 191 12/9/2023
2.1.62 332 12/9/2023
2.1.61 271 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,485 12/9/2023
2.1.58 183 12/9/2023
2.1.57 2,082 12/6/2023
2.1.56 539 12/6/2023
2.1.55 335 12/6/2023
2.1.54 358 12/6/2023
2.1.53 1,257 12/5/2023
2.1.52 502 12/5/2023
2.1.51 445 12/5/2023
2.1.50 509 12/5/2023
2.1.49 152 12/5/2023
2.1.48 456 12/5/2023
2.1.47 349 12/5/2023
2.1.46 156 12/4/2023
2.1.45 169 12/4/2023
2.1.44 438 12/4/2023
2.1.43 184 12/4/2023
2.1.42 1,392 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,664 11/27/2023
2.1.39 732 11/26/2023
2.1.38 302 11/26/2023
2.1.37 881 11/23/2023
2.1.36 967 11/23/2023
2.1.35 870 11/23/2023
2.1.34 165 11/23/2023
2.1.33 585 11/23/2023
2.1.32 175 11/23/2023
2.1.31 1,475 11/20/2023
2.1.30 1,571 11/20/2023
2.1.29 1,179 11/19/2023
2.1.28 365 11/19/2023
2.1.27 645 11/19/2023
2.1.26 688 11/19/2023
2.1.25 696 11/19/2023
2.1.24 153 11/19/2023
2.1.23 285 11/18/2023
2.1.22 1,416 11/18/2023
2.1.21 519 11/18/2023
2.1.20 746 11/18/2023
2.1.19 175 11/18/2023
2.1.18 441 11/18/2023
2.1.17 164 11/18/2023
2.1.16 857 11/17/2023
2.1.15 746 11/17/2023
2.1.14 164 11/17/2023
2.1.13 607 11/17/2023
2.1.12 399 11/17/2023
2.1.11 695 11/17/2023
2.1.10 160 11/17/2023
2.1.9 729 11/17/2023
2.1.8 168 11/17/2023
2.1.7 199 11/17/2023
2.1.6 450 11/17/2023
2.1.5 541 11/16/2023
2.0.101 2,954 11/15/2023
2.0.100 151 11/15/2023
2.0.99 168 11/15/2023
2.0.4 161 11/16/2023
2.0.3 174 11/16/2023
2.0.2 166 11/16/2023
2.0.1 161 11/16/2023
1.0.98 854 11/14/2023
1.0.97 991 11/13/2023
1.0.96 146 11/13/2023
1.0.95 701 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,304 11/9/2023
1.0.92 163 11/9/2023
1.0.91 1,401 11/7/2023
1.0.90 161 11/7/2023
1.0.89 642 11/6/2023
1.0.88 171 11/6/2023
1.0.87 773 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,193 11/2/2023
1.0.84 156 11/2/2023
1.0.83 770 11/1/2023
1.0.82 1,977 10/26/2023
1.0.81 1,782 10/19/2023
1.0.80 179 10/19/2023
1.0.79 1,054 10/18/2023
1.0.78 202 10/18/2023
1.0.77 977 10/17/2023
1.0.76 191 10/17/2023
1.0.75 859 10/16/2023
1.0.74 193 10/16/2023
1.0.73 939 10/13/2023
1.0.72 457 10/12/2023
1.0.71 2,269 9/20/2023
1.0.70 940 9/19/2023
1.0.69 917 9/18/2023
1.0.68 188 9/18/2023
1.0.67 1,216 9/14/2023
1.0.66 1,983 8/31/2023
1.0.65 191 8/31/2023
1.0.64 1,097 8/30/2023
1.0.63 217 8/30/2023
1.0.62 233 8/30/2023
1.0.61 1,119 8/28/2023
1.0.60 924 8/25/2023
1.0.59 193 8/25/2023
1.0.58 644 8/24/2023
1.0.57 2,005 8/21/2023
1.0.56 1,136 8/18/2023
1.0.55 1,004 8/17/2023
1.0.54 212 8/17/2023
1.0.53 2,565 8/10/2023
1.0.52 721 8/9/2023
1.0.51 881 8/8/2023
1.0.50 821 8/7/2023
1.0.49 238 8/7/2023
1.0.48 3,309 7/13/2023
1.0.47 1,154 7/11/2023
1.0.46 911 7/10/2023
1.0.45 866 7/7/2023
1.0.44 236 7/7/2023
1.0.43 2,803 6/30/2023
1.0.42 1,378 6/29/2023
1.0.41 748 6/28/2023
1.0.40 1,978 6/26/2023
1.0.39 1,056 6/23/2023
1.0.38 1,397 6/21/2023
1.0.37 1,916 6/15/2023
1.0.36 598 6/14/2023
1.0.35 2,338 6/9/2023
1.0.34 1,011 6/8/2023
1.0.33 2,035 6/7/2023
1.0.32 234 6/7/2023
1.0.31 1,479 6/6/2023
1.0.30 1,445 6/5/2023
1.0.29 1,655 6/2/2023
1.0.28 227 6/2/2023
1.0.27 1,501 6/1/2023
1.0.26 766 5/31/2023
1.0.25 590 5/31/2023
1.0.24 230 5/31/2023
1.0.23 1,820 5/30/2023
1.0.22 1,868 5/26/2023
1.0.21 862 5/25/2023
1.0.20 204 5/25/2023
1.0.19 1,017 5/24/2023
1.0.18 221 5/24/2023
1.0.17 582 5/23/2023
1.0.13 1,777 5/22/2023
1.0.12 1,490 5/18/2023
1.0.11 760 5/17/2023
1.0.10 1,849 5/1/2023
1.0.9 1,204 4/25/2023
1.0.8 566 4/24/2023
1.0.7 1,191 4/21/2023
1.0.6 2,334 4/13/2023
1.0.5 737 4/12/2023
1.0.4 1,206 4/8/2023
1.0.3 260 4/8/2023
1.0.2 751 4/8/2023
1.0.1 265 4/8/2023