Soenneker.Utils.SingletonDictionary 4.0.1113

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 4.0.1113
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 4.0.1113
                    
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="4.0.1113" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="4.0.1113" />
                    
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 4.0.1113
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 4.0.1113"
                    
#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@4.0.1113
                    
#: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=4.0.1113
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=4.0.1113
                    
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 net10.0 is compatible.  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 (10)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.SingletonDictionary:

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1114 0 11/3/2025
4.0.1113 4,134 10/30/2025
4.0.1112 817 10/30/2025
4.0.1111 208 10/30/2025
4.0.1110 2,265 10/29/2025
3.0.1109 27,833 10/16/2025
3.0.1108 35,251 9/30/2025
3.0.1107 45,179 9/9/2025
3.0.1106 29,625 9/3/2025
3.0.1105 430 9/3/2025
3.0.1104 2,986 9/3/2025
3.0.1103 38,727 8/14/2025
3.0.1102 10,019 8/11/2025
3.0.1101 4,047 8/11/2025
3.0.1100 1,025 8/11/2025
3.0.1099 168 8/11/2025
3.0.1098 29,703 8/6/2025
3.0.1097 6,482 8/5/2025
3.0.1096 35,271 7/9/2025
3.0.1095 35,210 6/28/2025
3.0.1094 2,058 6/28/2025
3.0.1093 2,887 6/27/2025
3.0.1092 3,702 6/27/2025
3.0.1091 38,786 6/10/2025
3.0.1090 26,801 5/27/2025
3.0.1089 1,477 5/27/2025
3.0.1088 1,541 5/27/2025
3.0.1087 3,727 5/27/2025
3.0.1086 22,442 5/23/2025
3.0.1085 2,000 5/23/2025
3.0.1084 1,987 5/23/2025
3.0.1083 1,901 5/23/2025
3.0.1082 375 5/22/2025
3.0.1081 15,446 5/18/2025
3.0.1079 2,366 5/18/2025
3.0.1078 2,321 5/18/2025
3.0.1077 6,602 5/14/2025
3.0.1076 14,337 5/8/2025
3.0.1075 439 5/8/2025
3.0.1074 920 5/8/2025
3.0.1073 1,718 5/7/2025
3.0.1072 19,969 5/5/2025
3.0.1071 1,357 5/5/2025
3.0.1070 2,494 5/5/2025
3.0.1069 1,140 5/5/2025
3.0.1068 331 5/5/2025
3.0.1067 219 5/5/2025
3.0.1066 28,196 4/9/2025
3.0.1065 398 4/9/2025
3.0.1064 1,673 4/8/2025
3.0.1063 3,554 4/8/2025
3.0.1062 4,770 4/8/2025
3.0.1061 282 4/8/2025
3.0.1060 241 4/8/2025
3.0.1059 266 4/8/2025
3.0.1058 226 4/8/2025
3.0.1057 1,406 4/8/2025
3.0.1056 422 4/8/2025
3.0.1055 10,733 4/8/2025
3.0.1054 1,057 4/8/2025
3.0.1053 5,331 4/7/2025
3.0.1052 1,134 4/7/2025
3.0.1051 231 4/7/2025
3.0.1050 918 4/7/2025
3.0.1049 227 4/7/2025
3.0.1048 11,307 4/7/2025
3.0.1047 230 4/7/2025
3.0.1046 15,939 4/7/2025
3.0.1045 235 4/7/2025
3.0.1044 2,165 4/7/2025
3.0.1043 231 4/7/2025
3.0.1042 2,619 4/7/2025
3.0.1041 1,530 4/6/2025
3.0.1040 415 4/6/2025
3.0.1039 236 4/6/2025
3.0.1038 1,824 4/6/2025
3.0.1037 240 4/6/2025
3.0.1036 603 4/6/2025
3.0.1035 1,890 4/6/2025
3.0.1034 200 4/6/2025
3.0.1033 3,421 4/6/2025
3.0.1032 177 4/6/2025
3.0.1031 227 4/6/2025
3.0.1030 184 4/6/2025
3.0.1029 2,622 4/5/2025
3.0.1028 274 4/5/2025
3.0.1027 1,957 4/5/2025
3.0.1026 1,647 4/5/2025
3.0.1025 1,743 4/5/2025
3.0.1024 988 4/5/2025
3.0.1023 875 4/5/2025
3.0.1022 176 4/5/2025
3.0.1021 2,122 4/4/2025
3.0.1020 11,190 4/4/2025
3.0.1019 38,070 4/4/2025
3.0.1018 11,456 4/1/2025
3.0.1017 4,427 4/1/2025
3.0.1016 238 4/1/2025
3.0.1015 9,286 4/1/2025
3.0.1014 3,994 3/31/2025
3.0.1013 544 3/31/2025
3.0.1012 6,486 3/31/2025
3.0.1011 11,709 3/29/2025
3.0.1010 1,794 3/29/2025
3.0.1009 2,431 3/29/2025
3.0.1008 175 3/29/2025
3.0.1007 7,482 3/27/2025
3.0.1006 6,324 3/25/2025
3.0.1005 749 3/25/2025
3.0.1004 5,082 3/25/2025
3.0.1003 10,407 3/21/2025
3.0.1002 4,388 3/21/2025
3.0.1001 11,212 3/18/2025
3.0.1000 5,802 3/18/2025
3.0.999 10,974 3/15/2025
3.0.998 3,127 3/15/2025
3.0.997 148 3/15/2025
3.0.996 10,378 3/12/2025
3.0.995 3,666 3/12/2025
3.0.994 239 3/12/2025
3.0.993 585 3/12/2025
3.0.992 225 3/12/2025
3.0.991 4,597 3/11/2025
3.0.990 233 3/11/2025
3.0.989 2,084 3/11/2025
3.0.988 238 3/11/2025
3.0.987 4,147 3/11/2025
3.0.986 252 3/11/2025
3.0.985 4,290 3/11/2025
3.0.984 229 3/11/2025
3.0.983 2,727 3/11/2025
3.0.982 213 3/11/2025
3.0.981 14,989 3/7/2025
3.0.980 4,349 3/7/2025
3.0.979 9,971 3/2/2025
3.0.978 1,725 3/2/2025
3.0.977 1,083 3/2/2025
3.0.976 157 3/2/2025
3.0.975 7,217 3/2/2025
3.0.974 172 3/2/2025
3.0.973 5,505 3/1/2025
3.0.972 152 3/1/2025
3.0.971 7,452 3/1/2025
3.0.970 201 3/1/2025
3.0.969 147 3/1/2025
3.0.968 682 3/1/2025
3.0.967 169 3/1/2025
3.0.966 10,074 3/1/2025
3.0.965 7,813 2/26/2025
3.0.964 1,357 2/26/2025
3.0.963 3,963 2/25/2025
3.0.962 160 2/25/2025
3.0.961 1,395 2/25/2025
3.0.960 133 2/25/2025
3.0.959 208 2/25/2025
3.0.958 3,119 2/25/2025
3.0.957 8,184 2/24/2025
3.0.956 7,631 2/23/2025
3.0.955 1,804 2/22/2025
3.0.954 148 2/22/2025
3.0.953 12,898 2/22/2025
3.0.952 3,744 2/22/2025
3.0.951 1,824 2/22/2025
3.0.950 1,271 2/22/2025
3.0.949 206 2/22/2025
3.0.948 166 2/22/2025
3.0.947 173 2/22/2025
3.0.946 7,864 2/21/2025
3.0.945 165 2/21/2025
3.0.944 9,481 2/21/2025
3.0.943 7,634 2/19/2025
3.0.942 2,639 2/19/2025
3.0.941 1,072 2/19/2025
3.0.940 173 2/19/2025
3.0.939 626 2/18/2025
3.0.938 173 2/18/2025
3.0.937 9,076 2/18/2025
3.0.936 177 2/18/2025
3.0.935 4,639 2/18/2025
3.0.934 10,958 2/16/2025
3.0.933 2,502 2/14/2025
3.0.932 1,306 2/14/2025
3.0.931 1,175 2/13/2025
3.0.930 4,040 2/13/2025
3.0.929 443 2/13/2025
3.0.928 6,193 2/13/2025
3.0.927 6,093 2/12/2025
3.0.926 2,396 2/12/2025
3.0.925 195 2/12/2025
3.0.924 167 2/12/2025
3.0.923 3,412 2/12/2025
3.0.922 520 2/12/2025
3.0.921 182 2/12/2025
3.0.920 262 2/12/2025
3.0.919 276 2/12/2025
3.0.918 172 2/12/2025
3.0.917 250 2/11/2025
3.0.916 5,721 2/11/2025
3.0.915 6,251 2/11/2025
3.0.914 3,797 2/11/2025
3.0.913 186 2/11/2025
3.0.912 611 2/11/2025
3.0.911 2,904 2/10/2025
3.0.910 190 2/10/2025
3.0.909 1,251 2/10/2025
3.0.908 185 2/10/2025
3.0.907 10,538 2/10/2025
3.0.906 180 2/10/2025
3.0.905 1,951 2/9/2025
3.0.904 9,439 2/9/2025
3.0.903 163 2/9/2025
3.0.902 12,314 2/8/2025
3.0.901 184 2/8/2025
3.0.900 2,854 2/7/2025
3.0.899 175 2/7/2025
3.0.898 2,703 2/7/2025
3.0.897 173 2/7/2025
3.0.896 1,028 2/7/2025
3.0.895 679 2/7/2025
3.0.894 185 2/7/2025
3.0.893 555 2/7/2025
3.0.892 173 2/7/2025
3.0.891 1,725 2/7/2025
3.0.890 165 2/7/2025
3.0.889 179 2/7/2025
3.0.888 17,762 2/7/2025
3.0.887 10,563 2/5/2025
3.0.886 996 2/5/2025
3.0.885 1,544 2/5/2025
3.0.884 455 2/5/2025
3.0.883 1,700 2/5/2025
3.0.882 1,094 2/5/2025
3.0.881 5,260 2/5/2025
3.0.880 153 2/5/2025
3.0.879 17,287 1/28/2025
3.0.878 1,127 1/28/2025
3.0.877 3,213 1/28/2025
3.0.876 369 1/28/2025
3.0.875 6,898 1/28/2025
3.0.874 1,113 1/27/2025
3.0.873 133 1/27/2025
3.0.872 286 1/27/2025
3.0.871 443 1/27/2025
3.0.870 157 1/27/2025
3.0.869 8,720 1/27/2025
3.0.868 7,807 1/26/2025
3.0.867 1,601 1/26/2025
3.0.866 286 1/26/2025
3.0.865 1,742 1/26/2025
3.0.864 2,265 1/25/2025
3.0.863 164 1/25/2025
3.0.862 9,850 1/25/2025
3.0.861 1,775 1/25/2025
3.0.860 494 1/25/2025
3.0.859 171 1/25/2025
3.0.858 3,300 1/25/2025
3.0.857 2,203 1/25/2025
3.0.856 11,164 1/24/2025
3.0.855 2,754 1/24/2025
3.0.854 146 1/24/2025
3.0.853 3,592 1/24/2025
3.0.852 534 1/24/2025
3.0.851 366 1/24/2025
3.0.850 5,541 1/24/2025
3.0.849 162 1/24/2025
3.0.848 859 1/23/2025
3.0.847 170 1/23/2025
3.0.846 993 1/23/2025
3.0.845 159 1/23/2025
3.0.844 13,520 1/22/2025
3.0.843 1,698 1/21/2025
3.0.842 1,637 1/21/2025
3.0.841 911 1/21/2025
3.0.840 145 1/21/2025
3.0.839 945 1/21/2025
3.0.838 1,179 1/21/2025
3.0.837 9,261 1/21/2025
3.0.836 948 1/21/2025
3.0.835 1,685 1/21/2025
3.0.834 169 1/21/2025
3.0.833 1,386 1/21/2025
3.0.832 159 1/21/2025
3.0.831 3,861 1/21/2025
3.0.830 152 1/21/2025
3.0.829 664 1/20/2025
3.0.828 4,846 1/20/2025
3.0.827 394 1/20/2025
3.0.826 3,499 1/20/2025
3.0.825 160 1/20/2025
3.0.824 1,861 1/20/2025
3.0.823 181 1/20/2025
3.0.822 183 1/20/2025
3.0.821 164 1/20/2025
3.0.820 616 1/20/2025
3.0.819 167 1/20/2025
3.0.818 163 1/20/2025
3.0.817 9,829 1/19/2025
3.0.816 172 1/19/2025
3.0.815 8,993 1/19/2025
3.0.814 2,779 1/19/2025
3.0.813 209 1/19/2025
3.0.812 633 1/19/2025
3.0.811 161 1/19/2025
3.0.810 3,327 1/19/2025
3.0.809 158 1/19/2025
3.0.808 5,640 1/18/2025
3.0.807 170 1/18/2025
3.0.806 11,947 1/17/2025
3.0.805 178 1/17/2025
3.0.804 1,082 1/17/2025
3.0.803 1,589 1/17/2025
3.0.802 7,347 1/16/2025
3.0.801 2,444 1/16/2025
3.0.800 3,720 1/16/2025
3.0.799 917 1/16/2025
3.0.798 2,046 1/16/2025
3.0.797 1,755 1/16/2025
3.0.796 152 1/16/2025
3.0.795 8,026 1/15/2025
3.0.794 154 1/15/2025
3.0.793 4,768 1/15/2025
3.0.792 157 1/15/2025
3.0.791 238 1/15/2025
3.0.790 5,790 1/15/2025
3.0.789 131 1/15/2025
3.0.788 5,063 1/15/2025
3.0.787 138 1/15/2025
3.0.786 876 1/15/2025
3.0.785 135 1/15/2025
3.0.784 2,930 1/15/2025
3.0.783 139 1/15/2025
3.0.782 439 1/14/2025
3.0.781 138 1/14/2025
3.0.780 151 1/14/2025
3.0.779 6,359 1/14/2025
3.0.778 1,040 1/14/2025
3.0.777 156 1/14/2025
3.0.776 1,859 1/14/2025
3.0.775 133 1/14/2025
3.0.774 9,836 1/13/2025
3.0.773 2,837 1/13/2025
3.0.772 2,452 1/13/2025
3.0.771 158 1/13/2025
3.0.770 9,341 1/11/2025
3.0.769 3,783 1/11/2025
3.0.768 178 1/11/2025
3.0.767 3,355 1/11/2025
3.0.766 182 1/11/2025
3.0.765 3,230 1/10/2025
3.0.764 3,586 1/10/2025
3.0.763 161 1/10/2025
3.0.762 1,451 1/10/2025
3.0.761 175 1/10/2025
3.0.760 161 1/10/2025
3.0.759 11,227 1/3/2025
3.0.758 753 1/3/2025
3.0.757 1,672 1/3/2025
3.0.756 202 1/3/2025
3.0.755 2,527 1/3/2025
3.0.754 172 1/3/2025
3.0.753 1,926 1/3/2025
3.0.752 1,854 1/2/2025
3.0.751 166 1/2/2025
3.0.750 3,086 1/2/2025
3.0.749 166 1/2/2025
3.0.748 5,144 1/2/2025
3.0.747 152 1/2/2025
3.0.746 178 1/2/2025
3.0.745 8,458 1/1/2025
3.0.744 1,783 1/1/2025
3.0.743 448 1/1/2025
3.0.742 192 1/1/2025
3.0.741 2,725 1/1/2025
3.0.740 173 1/1/2025
3.0.739 164 1/1/2025
3.0.738 178 1/1/2025
3.0.737 543 12/31/2024
3.0.736 180 12/31/2024
3.0.735 194 12/31/2024
3.0.734 1,071 12/31/2024
3.0.733 194 12/31/2024
3.0.732 8,237 12/31/2024
3.0.731 180 12/31/2024
3.0.730 7,929 12/31/2024
3.0.729 135 12/31/2024
3.0.728 4,366 12/31/2024
3.0.727 569 12/31/2024
3.0.726 171 12/31/2024
3.0.725 2,332 12/31/2024
3.0.724 171 12/31/2024
3.0.723 15,793 12/28/2024
3.0.722 2,035 12/28/2024
3.0.721 2,223 12/27/2024
3.0.720 185 12/27/2024
3.0.719 4,769 12/27/2024
3.0.718 8,842 12/24/2024
3.0.717 2,174 12/24/2024
3.0.716 1,575 12/24/2024
3.0.715 1,350 12/24/2024
3.0.714 2,352 12/24/2024
3.0.713 164 12/24/2024
3.0.712 3,883 12/24/2024
3.0.711 1,059 12/24/2024
3.0.710 158 12/24/2024
3.0.709 715 12/24/2024
3.0.708 1,673 12/24/2024
3.0.707 395 12/24/2024
3.0.706 194 12/24/2024
3.0.705 1,777 12/24/2024
3.0.704 176 12/24/2024
3.0.703 3,108 12/23/2024
3.0.702 5,068 12/23/2024
3.0.701 177 12/23/2024
3.0.700 1,175 12/23/2024
3.0.699 160 12/23/2024
3.0.698 3,415 12/23/2024
3.0.697 157 12/23/2024
3.0.696 2,581 12/23/2024
3.0.695 177 12/23/2024
3.0.694 769 12/22/2024
3.0.693 2,477 12/22/2024
3.0.692 7,141 12/22/2024
3.0.691 181 12/22/2024
3.0.690 2,817 12/22/2024
3.0.689 254 12/22/2024
3.0.688 794 12/22/2024
3.0.687 164 12/22/2024
3.0.686 441 12/22/2024
3.0.685 170 12/22/2024
3.0.684 11,972 12/22/2024
3.0.683 150 12/22/2024
3.0.682 1,924 12/21/2024
3.0.681 478 12/21/2024
3.0.680 158 12/21/2024
3.0.679 880 12/21/2024
3.0.678 1,394 12/21/2024
3.0.677 168 12/21/2024
3.0.676 6,858 12/21/2024
3.0.675 677 12/21/2024
3.0.674 170 12/21/2024
3.0.673 4,603 12/21/2024
3.0.672 1,204 12/21/2024
3.0.671 178 12/21/2024
3.0.670 2,723 12/20/2024
3.0.669 188 12/20/2024
3.0.668 173 12/20/2024
3.0.667 6,679 12/20/2024
3.0.666 1,988 12/20/2024
3.0.665 381 12/20/2024
3.0.664 6,240 12/19/2024
3.0.663 742 12/19/2024
3.0.662 3,653 12/18/2024
3.0.661 166 12/18/2024
3.0.660 11,327 12/17/2024
3.0.659 336 12/17/2024
3.0.658 1,128 12/16/2024
3.0.657 168 12/16/2024
3.0.656 241 12/16/2024
3.0.655 164 12/16/2024
3.0.654 11,232 12/10/2024
3.0.653 1,765 12/10/2024
3.0.652 667 12/9/2024
3.0.651 172 12/9/2024
3.0.650 4,724 12/9/2024
3.0.649 2,463 12/9/2024
3.0.648 153 12/9/2024
3.0.647 6,725 12/9/2024
3.0.646 5,001 12/6/2024
3.0.645 739 12/6/2024
3.0.644 161 12/6/2024
3.0.643 1,180 12/6/2024
3.0.641 6,931 12/6/2024
3.0.640 4,287 12/6/2024
3.0.639 9,529 12/6/2024
3.0.637 591 12/6/2024
3.0.636 4,417 12/5/2024
3.0.635 6,177 12/5/2024
3.0.634 5,071 12/5/2024
3.0.633 168 12/5/2024
3.0.632 3,413 12/5/2024
3.0.631 1,737 12/5/2024
3.0.630 172 12/5/2024
3.0.629 648 12/5/2024
3.0.628 167 12/5/2024
3.0.627 221 12/5/2024
3.0.626 170 12/5/2024
3.0.625 5,969 12/4/2024
3.0.624 162 12/4/2024
3.0.623 185 12/4/2024
3.0.622 185 12/4/2024
3.0.621 2,957 12/4/2024
3.0.620 544 12/4/2024
3.0.619 705 12/4/2024
3.0.618 6,031 12/3/2024
3.0.617 173 12/3/2024
3.0.616 1,957 12/3/2024
3.0.615 773 12/3/2024
3.0.614 177 12/3/2024
3.0.613 187 12/3/2024
3.0.612 7,000 12/3/2024
3.0.611 168 12/3/2024
3.0.610 5,941 12/3/2024
3.0.609 152 12/3/2024
3.0.608 5,507 12/2/2024
3.0.607 4,886 12/2/2024
3.0.606 2,916 12/2/2024
3.0.605 466 12/2/2024
3.0.604 175 12/2/2024
3.0.603 706 12/2/2024
3.0.602 6,123 12/1/2024
3.0.601 180 12/1/2024
3.0.600 3,408 12/1/2024
3.0.599 322 12/1/2024
3.0.598 6,176 12/1/2024
3.0.597 180 12/1/2024
3.0.596 6,387 11/29/2024
3.0.595 1,878 11/29/2024
3.0.594 10,134 11/21/2024
3.0.593 532 11/21/2024
3.0.592 8,003 11/20/2024
3.0.591 554 11/20/2024
3.0.590 188 11/20/2024
3.0.589 161 11/20/2024
3.0.588 701 11/20/2024
3.0.587 264 11/20/2024
3.0.586 166 11/20/2024
3.0.585 3,462 11/20/2024
3.0.584 4,778 11/19/2024
3.0.583 160 11/19/2024
3.0.582 1,074 11/19/2024
3.0.581 149 11/19/2024
3.0.580 4,176 11/19/2024
3.0.579 145 11/19/2024
3.0.578 2,231 11/19/2024
3.0.577 177 11/19/2024
3.0.576 14,850 11/14/2024
3.0.575 238 11/14/2024
3.0.574 910 11/14/2024
3.0.573 4,098 11/14/2024
3.0.572 1,266 11/14/2024
3.0.571 188 11/14/2024
3.0.570 178 11/14/2024
3.0.569 7,125 11/14/2024
3.0.568 175 11/14/2024
3.0.567 174 11/14/2024
3.0.566 6,197 11/14/2024
3.0.565 172 11/14/2024
3.0.564 163 11/14/2024
3.0.563 160 11/14/2024
2.1.562 14,243 11/13/2024
2.1.561 2,353 11/13/2024
2.1.560 5,259 11/13/2024
2.1.559 191 11/13/2024
2.1.558 2,241 11/12/2024
2.1.557 633 11/12/2024
2.1.556 13,740 11/9/2024
2.1.555 606 11/9/2024
2.1.554 193 11/9/2024
2.1.553 2,936 11/9/2024
2.1.552 176 11/9/2024
2.1.551 1,504 11/8/2024
2.1.550 175 11/8/2024
2.1.549 172 11/8/2024
2.1.548 186 11/8/2024
2.1.547 689 11/8/2024
2.1.546 3,228 11/8/2024
2.1.545 156 11/8/2024
2.1.544 9,233 11/8/2024
2.1.543 152 11/8/2024
2.1.542 20,107 11/1/2024
2.1.541 754 11/1/2024
2.1.540 11,805 10/29/2024
2.1.539 1,279 10/29/2024
2.1.538 4,719 10/29/2024
2.1.537 1,006 10/29/2024
2.1.536 9,357 10/28/2024
2.1.535 3,224 10/28/2024
2.1.534 6,531 10/26/2024
2.1.533 1,189 10/26/2024
2.1.532 13,810 10/22/2024
2.1.531 425 10/22/2024
2.1.530 896 10/22/2024
2.1.529 1,564 10/22/2024
2.1.528 175 10/22/2024
2.1.527 771 10/22/2024
2.1.526 11,281 10/18/2024
2.1.525 1,857 10/17/2024
2.1.524 7,193 10/15/2024
2.1.523 2,788 10/15/2024
2.1.522 176 10/14/2024
2.1.521 8,878 10/12/2024
2.1.520 1,130 10/11/2024
2.1.519 170 10/11/2024
2.1.518 793 10/11/2024
2.1.517 5,059 10/11/2024
2.1.516 11,075 10/9/2024
2.1.515 616 10/9/2024
2.1.514 151 10/9/2024
2.1.513 3,389 10/8/2024
2.1.512 236 10/8/2024
2.1.511 3,689 10/8/2024
2.1.510 222 10/8/2024
2.1.509 173 10/8/2024
2.1.508 6,748 10/8/2024
2.1.507 10,580 10/3/2024
2.1.506 177 10/3/2024
2.1.505 1,964 10/3/2024
2.1.504 3,388 10/3/2024
2.1.503 2,424 10/3/2024
2.1.502 10,068 10/2/2024
2.1.501 172 10/2/2024
2.1.500 3,153 10/2/2024
2.1.499 1,739 10/2/2024
2.1.498 7,103 10/1/2024
2.1.497 1,105 10/1/2024
2.1.496 183 10/1/2024
2.1.495 4,495 10/1/2024
2.1.494 183 10/1/2024
2.1.493 229 10/1/2024
2.1.492 9,326 9/29/2024
2.1.491 2,289 9/29/2024
2.1.490 181 9/29/2024
2.1.489 2,069 9/29/2024
2.1.488 177 9/29/2024
2.1.487 4,417 9/29/2024
2.1.486 8,708 9/27/2024
2.1.485 1,314 9/27/2024
2.1.484 5,248 9/27/2024
2.1.483 196 9/27/2024
2.1.482 740 9/27/2024
2.1.481 3,689 9/27/2024
2.1.480 5,424 9/26/2024
2.1.479 5,962 9/26/2024
2.1.478 4,058 9/26/2024
2.1.477 3,657 9/26/2024
2.1.476 6,345 9/26/2024
2.1.475 179 9/26/2024
2.1.474 9,479 9/23/2024
2.1.473 2,147 9/23/2024
2.1.472 1,560 9/23/2024
2.1.471 1,863 9/23/2024
2.1.470 175 9/23/2024
2.1.469 2,578 9/23/2024
2.1.468 150 9/23/2024
2.1.467 8,006 9/23/2024
2.1.466 175 9/23/2024
2.1.465 1,190 9/23/2024
2.1.464 196 9/23/2024
2.1.463 167 9/23/2024
2.1.462 1,525 9/23/2024
2.1.461 15,567 9/18/2024
2.1.460 405 9/17/2024
2.1.459 2,022 9/17/2024
2.1.458 2,727 9/17/2024
2.1.457 171 9/17/2024
2.1.456 2,966 9/17/2024
2.1.455 767 9/17/2024
2.1.454 5,329 9/17/2024
2.1.453 891 9/17/2024
2.1.452 316 9/17/2024
2.1.451 4,328 9/17/2024
2.1.450 12,540 9/16/2024
2.1.449 1,135 9/16/2024
2.1.448 8,066 9/12/2024
2.1.447 4,766 9/12/2024
2.1.446 2,116 9/11/2024
2.1.445 2,565 9/11/2024
2.1.443 5,805 9/11/2024
2.1.442 1,528 9/11/2024
2.1.441 1,451 9/11/2024
2.1.440 3,560 9/11/2024
2.1.439 12,812 9/10/2024
2.1.438 193 9/10/2024
2.1.437 1,854 9/10/2024
2.1.436 194 9/10/2024
2.1.434 4,611 9/10/2024
2.1.433 916 9/9/2024
2.1.432 2,849 9/9/2024
2.1.430 2,423 9/9/2024
2.1.428 194 9/9/2024
2.1.427 698 9/9/2024
2.1.426 21,049 9/7/2024
2.1.425 225 9/7/2024
2.1.424 8,076 9/6/2024
2.1.423 545 9/6/2024
2.1.422 3,573 9/6/2024
2.1.421 178 9/5/2024
2.1.420 195 9/5/2024
2.1.419 3,832 9/5/2024
2.1.418 1,776 9/5/2024
2.1.417 182 9/5/2024
2.1.416 1,782 9/5/2024
2.1.415 697 9/5/2024
2.1.414 176 9/5/2024
2.1.413 8,081 9/5/2024
2.1.412 294 9/5/2024
2.1.411 183 9/5/2024
2.1.410 3,582 9/4/2024
2.1.409 12,954 9/3/2024
2.1.408 178 9/3/2024
2.1.407 178 9/3/2024
2.1.406 6,527 9/3/2024
2.1.405 220 9/3/2024
2.1.404 4,099 9/3/2024
2.1.403 8,594 8/29/2024
2.1.402 4,231 8/29/2024
2.1.401 4,636 8/26/2024
2.1.400 162 8/26/2024
2.1.399 8,181 8/21/2024
2.1.398 991 8/21/2024
2.1.397 221 8/21/2024
2.1.396 4,318 8/21/2024
2.1.395 225 8/20/2024
2.1.394 218 8/20/2024
2.1.393 742 8/20/2024
2.1.392 5,001 8/20/2024
2.1.391 700 8/20/2024
2.1.390 180 8/20/2024
2.1.389 4,338 8/20/2024
2.1.388 200 8/20/2024
2.1.387 1,958 8/20/2024
2.1.386 4,797 8/19/2024
2.1.385 7,871 8/15/2024
2.1.384 3,388 8/15/2024
2.1.383 7,801 8/14/2024
2.1.382 214 8/13/2024
2.1.381 9,168 8/7/2024
2.1.380 492 8/6/2024
2.1.379 4,461 8/6/2024
2.1.378 8,431 8/1/2024
2.1.377 572 8/1/2024
2.1.376 170 8/1/2024
2.1.374 2,039 8/1/2024
2.1.373 10,117 7/25/2024
2.1.372 171 7/25/2024
2.1.371 1,311 7/25/2024
2.1.370 508 7/25/2024
2.1.369 609 7/25/2024
2.1.368 324 7/25/2024
2.1.367 670 7/24/2024
2.1.366 243 7/24/2024
2.1.365 365 7/24/2024
2.1.364 563 7/24/2024
2.1.363 14,317 7/20/2024
2.1.362 2,547 7/20/2024
2.1.361 8,562 7/14/2024
2.1.360 2,596 7/14/2024
2.1.359 181 7/14/2024
2.1.358 2,465 7/14/2024
2.1.357 7,285 7/10/2024
2.1.355 1,165 7/10/2024
2.1.354 1,977 7/10/2024
2.1.353 183 7/10/2024
2.1.352 2,830 7/10/2024
2.1.351 218 7/10/2024
2.1.350 179 7/10/2024
2.1.349 263 7/10/2024
2.1.348 177 7/10/2024
2.1.347 3,381 7/10/2024
2.1.346 197 7/10/2024
2.1.345 1,357 7/10/2024
2.1.344 186 7/10/2024
2.1.343 324 7/9/2024
2.1.342 161 7/9/2024
2.1.339 3,165 7/9/2024
2.1.338 718 7/9/2024
2.1.337 6,708 7/9/2024
2.1.336 1,864 7/9/2024
2.1.335 190 7/9/2024
2.1.334 4,330 7/9/2024
2.1.333 166 7/9/2024
2.1.332 12,552 7/9/2024
2.1.331 189 7/9/2024
2.1.330 4,200 7/9/2024
2.1.329 175 7/9/2024
2.1.328 1,759 7/9/2024
2.1.327 1,103 7/8/2024
2.1.326 1,670 7/8/2024
2.1.325 180 7/8/2024
2.1.324 197 7/8/2024
2.1.323 8,103 7/8/2024
2.1.322 2,767 7/8/2024
2.1.321 178 7/8/2024
2.1.320 3,955 7/7/2024
2.1.319 202 7/7/2024
2.1.318 202 7/7/2024
2.1.317 188 7/7/2024
2.1.316 1,890 7/7/2024
2.1.315 3,665 7/7/2024
2.1.314 3,075 7/7/2024
2.1.313 365 7/7/2024
2.1.312 5,703 7/5/2024
2.1.311 6,745 7/3/2024
2.1.310 5,204 7/3/2024
2.1.309 643 7/3/2024
2.1.308 6,811 7/2/2024
2.1.307 3,100 6/30/2024
2.1.306 3,794 6/28/2024
2.1.305 8,910 6/22/2024
2.1.304 8,059 6/15/2024
2.1.303 6,563 6/14/2024
2.1.302 9,552 6/1/2024
2.1.301 2,639 6/1/2024
2.1.300 960 6/1/2024
2.1.299 9,666 5/31/2024
2.1.298 6,079 5/29/2024
2.1.297 4,985 5/28/2024
2.1.296 4,006 5/27/2024
2.1.295 7,907 5/26/2024
2.1.294 3,319 5/26/2024
2.1.293 759 5/26/2024
2.1.292 4,085 5/25/2024
2.1.291 2,181 5/25/2024
2.1.290 206 5/25/2024
2.1.289 189 5/25/2024
2.1.288 1,119 5/25/2024
2.1.287 198 5/25/2024
2.1.286 620 5/25/2024
2.1.285 190 5/25/2024
2.1.284 202 5/25/2024
2.1.283 12,087 5/23/2024
2.1.282 876 5/23/2024
2.1.281 418 5/22/2024
2.1.280 5,969 5/22/2024
2.1.279 205 5/22/2024
2.1.278 203 5/22/2024
2.1.277 187 5/22/2024
2.1.276 3,562 5/22/2024
2.1.275 5,538 5/18/2024
2.1.274 3,080 5/18/2024
2.1.273 2,906 5/17/2024
2.1.272 189 5/17/2024
2.1.271 4,413 5/16/2024
2.1.270 676 5/15/2024
2.1.269 4,453 5/15/2024
2.1.268 7,398 5/12/2024
2.1.267 4,475 5/3/2024
2.1.266 1,935 4/30/2024
2.1.265 2,865 4/29/2024
2.1.264 3,074 4/29/2024
2.1.263 4,341 4/28/2024
2.1.262 2,435 4/28/2024
2.1.261 1,762 4/28/2024
2.1.260 2,750 4/28/2024
2.1.259 1,501 4/28/2024
2.1.258 184 4/28/2024
2.1.257 6,847 4/27/2024
2.1.256 203 4/27/2024
2.1.255 6,899 4/19/2024
2.1.254 6,635 4/18/2024
2.1.253 5,444 4/12/2024
2.1.252 1,806 4/12/2024
2.1.251 1,124 4/12/2024
2.1.250 1,370 4/12/2024
2.1.249 305 4/12/2024
2.1.248 176 4/12/2024
2.1.247 1,559 4/12/2024
2.1.246 493 4/12/2024
2.1.245 2,544 4/11/2024
2.1.244 6,113 4/10/2024
2.1.243 1,799 4/9/2024
2.1.242 5,027 4/2/2024
2.1.241 1,418 4/1/2024
2.1.240 3,331 3/29/2024
2.1.239 2,884 3/25/2024
2.1.238 455 3/25/2024
2.1.237 5,290 3/20/2024
2.1.236 3,284 3/19/2024
2.1.235 740 3/19/2024
2.1.234 3,807 3/18/2024
2.1.233 2,107 3/18/2024
2.1.232 2,075 3/15/2024
2.1.231 3,648 3/13/2024
2.1.230 1,645 3/13/2024
2.1.229 1,062 3/13/2024
2.1.228 1,144 3/13/2024
2.1.227 201 3/13/2024
2.1.226 790 3/13/2024
2.1.225 199 3/13/2024
2.1.224 202 3/13/2024
2.1.223 2,591 3/12/2024
2.1.222 4,379 3/11/2024
2.1.221 3,787 3/11/2024
2.1.220 2,556 3/10/2024
2.1.219 2,896 3/8/2024
2.1.218 1,628 3/8/2024
2.1.217 2,403 3/8/2024
2.1.216 3,210 3/6/2024
2.1.215 3,033 3/4/2024
2.1.214 2,175 3/4/2024
2.1.213 3,994 3/2/2024
2.1.212 1,829 3/2/2024
2.1.211 624 3/2/2024
2.1.210 529 3/2/2024
2.1.209 772 3/2/2024
2.1.208 5,209 2/29/2024
2.1.207 950 2/29/2024
2.1.206 538 2/29/2024
2.1.205 5,019 2/26/2024
2.1.204 2,228 2/25/2024
2.1.203 3,984 2/23/2024
2.1.202 2,823 2/22/2024
2.1.201 1,396 2/22/2024
2.1.200 663 2/21/2024
2.1.199 1,740 2/21/2024
2.1.198 429 2/21/2024
2.1.197 1,013 2/21/2024
2.1.196 195 2/21/2024
2.1.195 1,980 2/21/2024
2.1.194 612 2/21/2024
2.1.193 193 2/21/2024
2.1.192 223 2/21/2024
2.1.191 841 2/21/2024
2.1.190 188 2/21/2024
2.1.189 4,050 2/20/2024
2.1.188 995 2/20/2024
2.1.187 946 2/20/2024
2.1.186 1,225 2/20/2024
2.1.185 3,148 2/19/2024
2.1.184 2,820 2/17/2024
2.1.183 1,375 2/16/2024
2.1.182 1,254 2/16/2024
2.1.181 2,035 2/16/2024
2.1.180 204 2/16/2024
2.1.179 1,016 2/16/2024
2.1.178 206 2/16/2024
2.1.177 199 2/16/2024
2.1.176 811 2/16/2024
2.1.175 191 2/16/2024
2.1.174 4,893 2/13/2024
2.1.173 2,038 2/13/2024
2.1.172 1,641 2/13/2024
2.1.171 696 2/13/2024
2.1.170 931 2/13/2024
2.1.169 2,888 2/12/2024
2.1.168 680 2/11/2024
2.1.167 2,249 2/11/2024
2.1.166 1,232 2/11/2024
2.1.165 4,167 2/10/2024
2.1.164 793 2/9/2024
2.1.163 195 2/9/2024
2.1.162 2,320 2/9/2024
2.1.161 2,421 2/9/2024
2.1.160 615 2/8/2024
2.1.159 1,802 2/8/2024
2.1.158 1,180 2/8/2024
2.1.157 2,167 2/8/2024
2.1.156 180 2/8/2024
2.1.155 2,762 2/7/2024
2.1.154 654 2/7/2024
2.1.153 867 2/7/2024
2.1.152 1,903 2/7/2024
2.1.151 515 2/6/2024
2.1.150 188 2/6/2024
2.1.149 195 2/6/2024
2.1.148 4,108 2/5/2024
2.1.147 2,286 2/4/2024
2.1.146 3,089 2/2/2024
2.1.145 2,796 1/31/2024
2.1.144 3,076 1/29/2024
2.1.143 1,951 1/29/2024
2.1.142 531 1/29/2024
2.1.141 2,062 1/28/2024
2.1.140 685 1/28/2024
2.1.139 459 1/28/2024
2.1.138 777 1/28/2024
2.1.137 2,872 1/28/2024
2.1.136 1,501 1/28/2024
2.1.135 464 1/27/2024
2.1.134 1,332 1/27/2024
2.1.133 1,836 1/27/2024
2.1.132 1,777 1/27/2024
2.1.131 219 1/27/2024
2.1.130 964 1/27/2024
2.1.129 1,598 1/26/2024
2.1.128 366 1/26/2024
2.1.127 1,271 1/26/2024
2.1.126 1,685 1/26/2024
2.1.125 2,371 1/26/2024
2.1.124 1,351 1/25/2024
2.1.123 1,463 1/25/2024
2.1.122 658 1/25/2024
2.1.121 1,338 1/25/2024
2.1.120 735 1/25/2024
2.1.119 3,835 1/19/2024
2.1.118 3,131 1/15/2024
2.1.117 710 1/15/2024
2.1.116 1,880 1/15/2024
2.1.115 198 1/15/2024
2.1.114 810 1/15/2024
2.1.113 1,967 1/15/2024
2.1.112 3,594 1/14/2024
2.1.111 2,329 1/13/2024
2.1.110 2,515 1/12/2024
2.1.109 2,911 1/11/2024
2.1.108 3,738 1/7/2024
2.1.107 2,870 1/5/2024
2.1.106 725 1/5/2024
2.1.105 220 1/5/2024
2.1.104 198 1/5/2024
2.1.103 2,086 1/5/2024
2.1.102 206 1/5/2024
2.1.101 3,938 1/1/2024
2.1.100 3,152 12/28/2023
2.1.99 1,064 12/28/2023
2.1.98 729 12/28/2023
2.1.97 192 12/28/2023
2.1.96 208 12/28/2023
2.1.95 1,038 12/27/2023
2.1.94 214 12/27/2023
2.1.93 758 12/27/2023
2.1.92 209 12/27/2023
2.1.91 213 12/27/2023
2.1.90 3,330 12/25/2023
2.1.89 536 12/25/2023
2.1.88 1,238 12/25/2023
2.1.87 218 12/25/2023
2.1.86 1,010 12/25/2023
2.1.85 208 12/25/2023
2.1.84 863 12/25/2023
2.1.83 206 12/25/2023
2.1.82 2,507 12/24/2023
2.1.81 1,632 12/23/2023
2.1.80 1,354 12/23/2023
2.1.79 443 12/23/2023
2.1.78 883 12/23/2023
2.1.77 210 12/23/2023
2.1.76 191 12/23/2023
2.1.75 1,625 12/23/2023
2.1.74 200 12/23/2023
2.1.73 2,144 12/19/2023
2.1.72 328 12/19/2023
2.1.71 4,536 12/11/2023
2.1.70 1,083 12/10/2023
2.1.69 200 12/10/2023
2.1.68 658 12/10/2023
2.1.67 2,207 12/10/2023
2.1.66 568 12/9/2023
2.1.65 579 12/9/2023
2.1.64 429 12/9/2023
2.1.63 216 12/9/2023
2.1.62 382 12/9/2023
2.1.61 322 12/9/2023
2.1.60 174 12/9/2023
2.1.59 1,626 12/9/2023
2.1.58 211 12/9/2023
2.1.57 2,349 12/6/2023
2.1.56 604 12/6/2023
2.1.55 374 12/6/2023
2.1.54 427 12/6/2023
2.1.53 1,411 12/5/2023
2.1.52 578 12/5/2023
2.1.51 526 12/5/2023
2.1.50 588 12/5/2023
2.1.49 171 12/5/2023
2.1.48 511 12/5/2023
2.1.47 411 12/5/2023
2.1.46 172 12/4/2023
2.1.45 180 12/4/2023
2.1.44 509 12/4/2023
2.1.43 204 12/4/2023
2.1.42 1,606 12/4/2023
2.1.41 149 12/4/2023
2.1.40 1,850 11/27/2023
2.1.39 838 11/26/2023
2.1.38 345 11/26/2023
2.1.37 986 11/23/2023
2.1.36 1,075 11/23/2023
2.1.35 1,036 11/23/2023
2.1.34 192 11/23/2023
2.1.33 635 11/23/2023
2.1.32 201 11/23/2023
2.1.31 1,752 11/20/2023
2.1.30 1,811 11/20/2023
2.1.29 1,323 11/19/2023
2.1.28 404 11/19/2023
2.1.27 751 11/19/2023
2.1.26 765 11/19/2023
2.1.25 788 11/19/2023
2.1.24 170 11/19/2023
2.1.23 347 11/18/2023
2.1.22 1,582 11/18/2023
2.1.21 563 11/18/2023
2.1.20 854 11/18/2023
2.1.19 196 11/18/2023
2.1.18 474 11/18/2023
2.1.17 187 11/18/2023
2.1.16 973 11/17/2023
2.1.15 842 11/17/2023
2.1.14 177 11/17/2023
2.1.13 686 11/17/2023
2.1.12 472 11/17/2023
2.1.11 791 11/17/2023
2.1.10 185 11/17/2023
2.1.9 783 11/17/2023
2.1.8 191 11/17/2023
2.1.7 237 11/17/2023
2.1.6 522 11/17/2023
2.1.5 585 11/16/2023
2.0.101 3,568 11/15/2023
2.0.100 160 11/15/2023
2.0.99 195 11/15/2023
2.0.4 183 11/16/2023
2.0.3 204 11/16/2023
2.0.2 189 11/16/2023
2.0.1 185 11/16/2023
1.0.98 985 11/14/2023
1.0.97 1,150 11/13/2023
1.0.96 160 11/13/2023
1.0.95 796 11/10/2023
1.0.94 184 11/10/2023
1.0.93 1,437 11/9/2023
1.0.92 184 11/9/2023
1.0.91 1,569 11/7/2023
1.0.90 181 11/7/2023
1.0.89 753 11/6/2023
1.0.88 193 11/6/2023
1.0.87 868 11/3/2023
1.0.86 195 11/3/2023
1.0.85 1,322 11/2/2023
1.0.84 174 11/2/2023
1.0.83 872 11/1/2023
1.0.82 2,143 10/26/2023
1.0.81 1,922 10/19/2023
1.0.80 207 10/19/2023
1.0.79 1,170 10/18/2023
1.0.78 224 10/18/2023
1.0.77 1,087 10/17/2023
1.0.76 212 10/17/2023
1.0.75 962 10/16/2023
1.0.74 216 10/16/2023
1.0.73 1,036 10/13/2023
1.0.72 483 10/12/2023
1.0.71 2,520 9/20/2023
1.0.70 1,047 9/19/2023
1.0.69 1,033 9/18/2023
1.0.68 213 9/18/2023
1.0.67 1,360 9/14/2023
1.0.66 2,141 8/31/2023
1.0.65 210 8/31/2023
1.0.64 1,229 8/30/2023
1.0.63 239 8/30/2023
1.0.62 257 8/30/2023
1.0.61 1,259 8/28/2023
1.0.60 1,042 8/25/2023
1.0.59 207 8/25/2023
1.0.58 731 8/24/2023
1.0.57 2,160 8/21/2023
1.0.56 1,246 8/18/2023
1.0.55 1,092 8/17/2023
1.0.54 236 8/17/2023
1.0.53 2,780 8/10/2023
1.0.52 817 8/9/2023
1.0.51 987 8/8/2023
1.0.50 929 8/7/2023
1.0.49 258 8/7/2023
1.0.48 3,534 7/13/2023
1.0.47 1,280 7/11/2023
1.0.46 1,035 7/10/2023
1.0.45 976 7/7/2023
1.0.44 262 7/7/2023
1.0.43 2,999 6/30/2023
1.0.42 1,490 6/29/2023
1.0.41 830 6/28/2023
1.0.40 2,154 6/26/2023
1.0.39 1,148 6/23/2023
1.0.38 1,515 6/21/2023
1.0.37 2,055 6/15/2023
1.0.36 706 6/14/2023
1.0.35 2,480 6/9/2023
1.0.34 1,120 6/8/2023
1.0.33 2,164 6/7/2023
1.0.32 258 6/7/2023
1.0.31 1,594 6/6/2023
1.0.30 1,583 6/5/2023
1.0.29 1,756 6/2/2023
1.0.28 252 6/2/2023
1.0.27 1,605 6/1/2023
1.0.26 840 5/31/2023
1.0.25 671 5/31/2023
1.0.24 261 5/31/2023
1.0.23 1,973 5/30/2023
1.0.22 2,054 5/26/2023
1.0.21 933 5/25/2023
1.0.20 239 5/25/2023
1.0.19 1,114 5/24/2023
1.0.18 242 5/24/2023
1.0.17 668 5/23/2023
1.0.13 1,991 5/22/2023
1.0.12 1,620 5/18/2023
1.0.11 841 5/17/2023
1.0.10 1,997 5/1/2023
1.0.9 1,334 4/25/2023
1.0.8 626 4/24/2023
1.0.7 1,282 4/21/2023
1.0.6 2,535 4/13/2023
1.0.5 788 4/12/2023
1.0.4 1,326 4/8/2023
1.0.3 286 4/8/2023
1.0.2 791 4/8/2023
1.0.1 292 4/8/2023