Soenneker.Utils.SingletonDictionary 3.0.1107

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1107
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1107
                    
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.1107" />
                    
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.1107" />
                    
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.1107
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1107"
                    
#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.1107
                    
#: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.1107
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1107
                    
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.1107 15,424 9/9/2025
3.0.1106 15,581 9/3/2025
3.0.1105 266 9/3/2025
3.0.1104 1,494 9/3/2025
3.0.1103 21,039 8/14/2025
3.0.1102 5,010 8/11/2025
3.0.1101 1,987 8/11/2025
3.0.1100 542 8/11/2025
3.0.1099 126 8/11/2025
3.0.1098 15,414 8/6/2025
3.0.1097 3,541 8/5/2025
3.0.1096 20,608 7/9/2025
3.0.1095 24,542 6/28/2025
3.0.1094 1,299 6/28/2025
3.0.1093 1,887 6/27/2025
3.0.1092 2,389 6/27/2025
3.0.1091 25,939 6/10/2025
3.0.1090 18,203 5/27/2025
3.0.1089 961 5/27/2025
3.0.1088 1,011 5/27/2025
3.0.1087 2,427 5/27/2025
3.0.1086 14,728 5/23/2025
3.0.1085 1,319 5/23/2025
3.0.1084 1,304 5/23/2025
3.0.1083 1,311 5/23/2025
3.0.1082 271 5/22/2025
3.0.1081 10,228 5/18/2025
3.0.1079 1,545 5/18/2025
3.0.1078 1,469 5/18/2025
3.0.1077 4,409 5/14/2025
3.0.1076 9,774 5/8/2025
3.0.1075 307 5/8/2025
3.0.1074 639 5/8/2025
3.0.1073 1,152 5/7/2025
3.0.1072 13,621 5/5/2025
3.0.1071 927 5/5/2025
3.0.1070 1,623 5/5/2025
3.0.1069 769 5/5/2025
3.0.1068 255 5/5/2025
3.0.1067 176 5/5/2025
3.0.1066 19,077 4/9/2025
3.0.1065 310 4/9/2025
3.0.1064 1,145 4/8/2025
3.0.1063 2,354 4/8/2025
3.0.1062 3,197 4/8/2025
3.0.1061 224 4/8/2025
3.0.1060 199 4/8/2025
3.0.1059 222 4/8/2025
3.0.1058 191 4/8/2025
3.0.1057 902 4/8/2025
3.0.1056 329 4/8/2025
3.0.1055 6,794 4/8/2025
3.0.1054 725 4/8/2025
3.0.1053 3,516 4/7/2025
3.0.1052 737 4/7/2025
3.0.1051 197 4/7/2025
3.0.1050 622 4/7/2025
3.0.1049 201 4/7/2025
3.0.1048 7,248 4/7/2025
3.0.1047 200 4/7/2025
3.0.1046 9,903 4/7/2025
3.0.1045 192 4/7/2025
3.0.1044 1,455 4/7/2025
3.0.1043 193 4/7/2025
3.0.1042 1,751 4/7/2025
3.0.1041 1,004 4/6/2025
3.0.1040 324 4/6/2025
3.0.1039 197 4/6/2025
3.0.1038 1,246 4/6/2025
3.0.1037 197 4/6/2025
3.0.1036 429 4/6/2025
3.0.1035 1,261 4/6/2025
3.0.1034 172 4/6/2025
3.0.1033 2,188 4/6/2025
3.0.1032 139 4/6/2025
3.0.1031 174 4/6/2025
3.0.1030 143 4/6/2025
3.0.1029 1,699 4/5/2025
3.0.1028 198 4/5/2025
3.0.1027 1,306 4/5/2025
3.0.1026 1,263 4/5/2025
3.0.1025 1,149 4/5/2025
3.0.1024 676 4/5/2025
3.0.1023 586 4/5/2025
3.0.1022 140 4/5/2025
3.0.1021 1,391 4/4/2025
3.0.1020 7,128 4/4/2025
3.0.1019 25,173 4/4/2025
3.0.1018 7,129 4/1/2025
3.0.1017 2,763 4/1/2025
3.0.1016 194 4/1/2025
3.0.1015 5,761 4/1/2025
3.0.1014 2,539 3/31/2025
3.0.1013 391 3/31/2025
3.0.1012 4,146 3/31/2025
3.0.1011 7,233 3/29/2025
3.0.1010 1,137 3/29/2025
3.0.1009 1,513 3/29/2025
3.0.1008 130 3/29/2025
3.0.1007 4,628 3/27/2025
3.0.1006 4,111 3/25/2025
3.0.1005 631 3/25/2025
3.0.1004 3,285 3/25/2025
3.0.1003 6,551 3/21/2025
3.0.1002 2,714 3/21/2025
3.0.1001 7,738 3/18/2025
3.0.1000 3,653 3/18/2025
3.0.999 6,824 3/15/2025
3.0.998 1,937 3/15/2025
3.0.997 105 3/15/2025
3.0.996 6,513 3/12/2025
3.0.995 2,300 3/12/2025
3.0.994 196 3/12/2025
3.0.993 449 3/12/2025
3.0.992 183 3/12/2025
3.0.991 2,889 3/11/2025
3.0.990 196 3/11/2025
3.0.989 1,342 3/11/2025
3.0.988 197 3/11/2025
3.0.987 2,785 3/11/2025
3.0.986 201 3/11/2025
3.0.985 2,804 3/11/2025
3.0.984 184 3/11/2025
3.0.983 1,759 3/11/2025
3.0.982 183 3/11/2025
3.0.981 9,504 3/7/2025
3.0.980 2,780 3/7/2025
3.0.979 6,596 3/2/2025
3.0.978 1,118 3/2/2025
3.0.977 689 3/2/2025
3.0.976 128 3/2/2025
3.0.975 4,628 3/2/2025
3.0.974 134 3/2/2025
3.0.973 3,416 3/1/2025
3.0.972 117 3/1/2025
3.0.971 4,663 3/1/2025
3.0.970 142 3/1/2025
3.0.969 116 3/1/2025
3.0.968 473 3/1/2025
3.0.967 125 3/1/2025
3.0.966 6,109 3/1/2025
3.0.965 5,083 2/26/2025
3.0.964 897 2/26/2025
3.0.963 2,473 2/25/2025
3.0.962 128 2/25/2025
3.0.961 940 2/25/2025
3.0.960 112 2/25/2025
3.0.959 152 2/25/2025
3.0.958 1,963 2/25/2025
3.0.957 5,158 2/24/2025
3.0.956 4,843 2/23/2025
3.0.955 1,155 2/22/2025
3.0.954 118 2/22/2025
3.0.953 8,136 2/22/2025
3.0.952 2,352 2/22/2025
3.0.951 1,161 2/22/2025
3.0.950 814 2/22/2025
3.0.949 157 2/22/2025
3.0.948 130 2/22/2025
3.0.947 132 2/22/2025
3.0.946 4,885 2/21/2025
3.0.945 127 2/21/2025
3.0.944 5,895 2/21/2025
3.0.943 4,895 2/19/2025
3.0.942 1,714 2/19/2025
3.0.941 744 2/19/2025
3.0.940 133 2/19/2025
3.0.939 419 2/18/2025
3.0.938 133 2/18/2025
3.0.937 5,774 2/18/2025
3.0.936 124 2/18/2025
3.0.935 3,018 2/18/2025
3.0.934 7,164 2/16/2025
3.0.933 1,639 2/14/2025
3.0.932 867 2/14/2025
3.0.931 762 2/13/2025
3.0.930 2,537 2/13/2025
3.0.929 325 2/13/2025
3.0.928 3,945 2/13/2025
3.0.927 4,061 2/12/2025
3.0.926 1,567 2/12/2025
3.0.925 163 2/12/2025
3.0.924 134 2/12/2025
3.0.923 2,120 2/12/2025
3.0.922 372 2/12/2025
3.0.921 151 2/12/2025
3.0.920 200 2/12/2025
3.0.919 208 2/12/2025
3.0.918 133 2/12/2025
3.0.917 186 2/11/2025
3.0.916 3,580 2/11/2025
3.0.915 4,074 2/11/2025
3.0.914 2,390 2/11/2025
3.0.913 144 2/11/2025
3.0.912 415 2/11/2025
3.0.911 1,892 2/10/2025
3.0.910 151 2/10/2025
3.0.909 853 2/10/2025
3.0.908 147 2/10/2025
3.0.907 6,672 2/10/2025
3.0.906 143 2/10/2025
3.0.905 1,278 2/9/2025
3.0.904 5,918 2/9/2025
3.0.903 135 2/9/2025
3.0.902 7,714 2/8/2025
3.0.901 141 2/8/2025
3.0.900 1,840 2/7/2025
3.0.899 133 2/7/2025
3.0.898 1,681 2/7/2025
3.0.897 134 2/7/2025
3.0.896 676 2/7/2025
3.0.895 444 2/7/2025
3.0.894 145 2/7/2025
3.0.893 356 2/7/2025
3.0.892 132 2/7/2025
3.0.891 1,132 2/7/2025
3.0.890 126 2/7/2025
3.0.889 139 2/7/2025
3.0.888 11,209 2/7/2025
3.0.887 6,594 2/5/2025
3.0.886 647 2/5/2025
3.0.885 976 2/5/2025
3.0.884 301 2/5/2025
3.0.883 1,075 2/5/2025
3.0.882 700 2/5/2025
3.0.881 3,194 2/5/2025
3.0.880 124 2/5/2025
3.0.879 11,374 1/28/2025
3.0.878 722 1/28/2025
3.0.877 1,881 1/28/2025
3.0.876 242 1/28/2025
3.0.875 3,996 1/28/2025
3.0.874 669 1/27/2025
3.0.873 105 1/27/2025
3.0.872 203 1/27/2025
3.0.871 305 1/27/2025
3.0.870 119 1/27/2025
3.0.869 5,038 1/27/2025
3.0.868 4,673 1/26/2025
3.0.867 1,010 1/26/2025
3.0.866 202 1/26/2025
3.0.865 1,120 1/26/2025
3.0.864 1,400 1/25/2025
3.0.863 122 1/25/2025
3.0.862 5,930 1/25/2025
3.0.861 1,042 1/25/2025
3.0.860 316 1/25/2025
3.0.859 130 1/25/2025
3.0.858 2,036 1/25/2025
3.0.857 1,337 1/25/2025
3.0.856 6,836 1/24/2025
3.0.855 1,605 1/24/2025
3.0.854 109 1/24/2025
3.0.853 2,067 1/24/2025
3.0.852 362 1/24/2025
3.0.851 242 1/24/2025
3.0.850 3,235 1/24/2025
3.0.849 121 1/24/2025
3.0.848 515 1/23/2025
3.0.847 127 1/23/2025
3.0.846 595 1/23/2025
3.0.845 117 1/23/2025
3.0.844 8,151 1/22/2025
3.0.843 1,045 1/21/2025
3.0.842 1,020 1/21/2025
3.0.841 603 1/21/2025
3.0.840 116 1/21/2025
3.0.839 616 1/21/2025
3.0.838 802 1/21/2025
3.0.837 5,687 1/21/2025
3.0.836 570 1/21/2025
3.0.835 1,086 1/21/2025
3.0.834 128 1/21/2025
3.0.833 853 1/21/2025
3.0.832 121 1/21/2025
3.0.831 2,250 1/21/2025
3.0.830 112 1/21/2025
3.0.829 429 1/20/2025
3.0.828 2,871 1/20/2025
3.0.827 279 1/20/2025
3.0.826 2,170 1/20/2025
3.0.825 125 1/20/2025
3.0.824 1,121 1/20/2025
3.0.823 131 1/20/2025
3.0.822 136 1/20/2025
3.0.821 127 1/20/2025
3.0.820 381 1/20/2025
3.0.819 130 1/20/2025
3.0.818 125 1/20/2025
3.0.817 5,768 1/19/2025
3.0.816 129 1/19/2025
3.0.815 5,434 1/19/2025
3.0.814 1,664 1/19/2025
3.0.813 148 1/19/2025
3.0.812 404 1/19/2025
3.0.811 119 1/19/2025
3.0.810 1,982 1/19/2025
3.0.809 118 1/19/2025
3.0.808 3,379 1/18/2025
3.0.807 128 1/18/2025
3.0.806 7,417 1/17/2025
3.0.805 134 1/17/2025
3.0.804 659 1/17/2025
3.0.803 984 1/17/2025
3.0.802 4,288 1/16/2025
3.0.801 1,545 1/16/2025
3.0.800 2,169 1/16/2025
3.0.799 563 1/16/2025
3.0.798 1,279 1/16/2025
3.0.797 1,094 1/16/2025
3.0.796 115 1/16/2025
3.0.795 4,664 1/15/2025
3.0.794 118 1/15/2025
3.0.793 2,901 1/15/2025
3.0.792 116 1/15/2025
3.0.791 163 1/15/2025
3.0.790 3,396 1/15/2025
3.0.789 105 1/15/2025
3.0.788 2,839 1/15/2025
3.0.787 99 1/15/2025
3.0.786 458 1/15/2025
3.0.785 96 1/15/2025
3.0.784 1,735 1/15/2025
3.0.783 96 1/15/2025
3.0.782 257 1/14/2025
3.0.781 107 1/14/2025
3.0.780 111 1/14/2025
3.0.779 3,269 1/14/2025
3.0.778 571 1/14/2025
3.0.777 111 1/14/2025
3.0.776 1,293 1/14/2025
3.0.775 102 1/14/2025
3.0.774 5,441 1/13/2025
3.0.773 1,737 1/13/2025
3.0.772 1,415 1/13/2025
3.0.771 116 1/13/2025
3.0.770 5,347 1/11/2025
3.0.769 2,132 1/11/2025
3.0.768 141 1/11/2025
3.0.767 2,250 1/11/2025
3.0.766 127 1/11/2025
3.0.765 1,787 1/10/2025
3.0.764 1,973 1/10/2025
3.0.763 122 1/10/2025
3.0.762 887 1/10/2025
3.0.761 135 1/10/2025
3.0.760 123 1/10/2025
3.0.759 6,702 1/3/2025
3.0.758 505 1/3/2025
3.0.757 1,074 1/3/2025
3.0.756 158 1/3/2025
3.0.755 1,541 1/3/2025
3.0.754 132 1/3/2025
3.0.753 1,166 1/3/2025
3.0.752 1,155 1/2/2025
3.0.751 129 1/2/2025
3.0.750 1,824 1/2/2025
3.0.749 133 1/2/2025
3.0.748 3,070 1/2/2025
3.0.747 123 1/2/2025
3.0.746 140 1/2/2025
3.0.745 5,062 1/1/2025
3.0.744 1,097 1/1/2025
3.0.743 298 1/1/2025
3.0.742 149 1/1/2025
3.0.741 1,639 1/1/2025
3.0.740 134 1/1/2025
3.0.739 134 1/1/2025
3.0.738 144 1/1/2025
3.0.737 336 12/31/2024
3.0.736 145 12/31/2024
3.0.735 150 12/31/2024
3.0.734 682 12/31/2024
3.0.733 151 12/31/2024
3.0.732 4,879 12/31/2024
3.0.731 144 12/31/2024
3.0.730 4,596 12/31/2024
3.0.729 117 12/31/2024
3.0.728 2,742 12/31/2024
3.0.727 375 12/31/2024
3.0.726 133 12/31/2024
3.0.725 1,560 12/31/2024
3.0.724 130 12/31/2024
3.0.723 9,526 12/28/2024
3.0.722 1,230 12/28/2024
3.0.721 1,360 12/27/2024
3.0.720 144 12/27/2024
3.0.719 2,913 12/27/2024
3.0.718 5,314 12/24/2024
3.0.717 1,372 12/24/2024
3.0.716 990 12/24/2024
3.0.715 898 12/24/2024
3.0.714 1,469 12/24/2024
3.0.713 125 12/24/2024
3.0.712 2,462 12/24/2024
3.0.711 675 12/24/2024
3.0.710 126 12/24/2024
3.0.709 510 12/24/2024
3.0.708 1,056 12/24/2024
3.0.707 289 12/24/2024
3.0.706 155 12/24/2024
3.0.705 1,127 12/24/2024
3.0.704 134 12/24/2024
3.0.703 1,936 12/23/2024
3.0.702 3,081 12/23/2024
3.0.701 133 12/23/2024
3.0.700 745 12/23/2024
3.0.699 130 12/23/2024
3.0.698 1,956 12/23/2024
3.0.697 133 12/23/2024
3.0.696 1,541 12/23/2024
3.0.695 137 12/23/2024
3.0.694 476 12/22/2024
3.0.693 1,599 12/22/2024
3.0.692 4,241 12/22/2024
3.0.691 140 12/22/2024
3.0.690 1,698 12/22/2024
3.0.689 177 12/22/2024
3.0.688 495 12/22/2024
3.0.687 126 12/22/2024
3.0.686 287 12/22/2024
3.0.685 132 12/22/2024
3.0.684 7,282 12/22/2024
3.0.683 123 12/22/2024
3.0.682 1,130 12/21/2024
3.0.681 295 12/21/2024
3.0.680 127 12/21/2024
3.0.679 517 12/21/2024
3.0.678 878 12/21/2024
3.0.677 127 12/21/2024
3.0.676 3,985 12/21/2024
3.0.675 425 12/21/2024
3.0.674 130 12/21/2024
3.0.673 2,734 12/21/2024
3.0.672 714 12/21/2024
3.0.671 138 12/21/2024
3.0.670 1,751 12/20/2024
3.0.669 139 12/20/2024
3.0.668 135 12/20/2024
3.0.667 4,025 12/20/2024
3.0.666 1,219 12/20/2024
3.0.665 247 12/20/2024
3.0.664 3,769 12/19/2024
3.0.663 468 12/19/2024
3.0.662 2,212 12/18/2024
3.0.661 127 12/18/2024
3.0.660 6,895 12/17/2024
3.0.659 242 12/17/2024
3.0.658 755 12/16/2024
3.0.657 135 12/16/2024
3.0.656 172 12/16/2024
3.0.655 122 12/16/2024
3.0.654 6,951 12/10/2024
3.0.653 1,101 12/10/2024
3.0.652 407 12/9/2024
3.0.651 130 12/9/2024
3.0.650 2,858 12/9/2024
3.0.649 1,492 12/9/2024
3.0.648 127 12/9/2024
3.0.647 3,968 12/9/2024
3.0.646 2,990 12/6/2024
3.0.645 474 12/6/2024
3.0.644 135 12/6/2024
3.0.643 746 12/6/2024
3.0.641 4,134 12/6/2024
3.0.640 2,682 12/6/2024
3.0.639 5,663 12/6/2024
3.0.637 423 12/6/2024
3.0.636 2,694 12/5/2024
3.0.635 3,731 12/5/2024
3.0.634 3,293 12/5/2024
3.0.633 128 12/5/2024
3.0.632 1,806 12/5/2024
3.0.631 1,104 12/5/2024
3.0.630 138 12/5/2024
3.0.629 410 12/5/2024
3.0.628 129 12/5/2024
3.0.627 174 12/5/2024
3.0.626 130 12/5/2024
3.0.625 3,552 12/4/2024
3.0.624 132 12/4/2024
3.0.623 147 12/4/2024
3.0.622 147 12/4/2024
3.0.621 1,826 12/4/2024
3.0.620 327 12/4/2024
3.0.619 461 12/4/2024
3.0.618 3,532 12/3/2024
3.0.617 136 12/3/2024
3.0.616 1,191 12/3/2024
3.0.615 510 12/3/2024
3.0.614 147 12/3/2024
3.0.613 145 12/3/2024
3.0.612 4,340 12/3/2024
3.0.611 128 12/3/2024
3.0.610 3,472 12/3/2024
3.0.609 124 12/3/2024
3.0.608 3,268 12/2/2024
3.0.607 2,834 12/2/2024
3.0.606 1,695 12/2/2024
3.0.605 310 12/2/2024
3.0.604 136 12/2/2024
3.0.603 427 12/2/2024
3.0.602 3,644 12/1/2024
3.0.601 136 12/1/2024
3.0.600 1,988 12/1/2024
3.0.599 229 12/1/2024
3.0.598 3,680 12/1/2024
3.0.597 139 12/1/2024
3.0.596 3,776 11/29/2024
3.0.595 1,128 11/29/2024
3.0.594 6,296 11/21/2024
3.0.593 340 11/21/2024
3.0.592 4,788 11/20/2024
3.0.591 379 11/20/2024
3.0.590 143 11/20/2024
3.0.589 131 11/20/2024
3.0.588 492 11/20/2024
3.0.587 203 11/20/2024
3.0.586 127 11/20/2024
3.0.585 2,111 11/20/2024
3.0.584 2,945 11/19/2024
3.0.583 132 11/19/2024
3.0.582 713 11/19/2024
3.0.581 120 11/19/2024
3.0.580 2,864 11/19/2024
3.0.579 116 11/19/2024
3.0.578 1,382 11/19/2024
3.0.577 140 11/19/2024
3.0.576 8,974 11/14/2024
3.0.575 175 11/14/2024
3.0.574 575 11/14/2024
3.0.573 2,511 11/14/2024
3.0.572 789 11/14/2024
3.0.571 146 11/14/2024
3.0.570 142 11/14/2024
3.0.569 4,420 11/14/2024
3.0.568 138 11/14/2024
3.0.567 138 11/14/2024
3.0.566 3,719 11/14/2024
3.0.565 136 11/14/2024
3.0.564 138 11/14/2024
3.0.563 134 11/14/2024
2.1.562 9,160 11/13/2024
2.1.561 1,527 11/13/2024
2.1.560 3,196 11/13/2024
2.1.559 148 11/13/2024
2.1.558 1,424 11/12/2024
2.1.557 419 11/12/2024
2.1.556 8,808 11/9/2024
2.1.555 405 11/9/2024
2.1.554 146 11/9/2024
2.1.553 1,864 11/9/2024
2.1.552 133 11/9/2024
2.1.551 1,026 11/8/2024
2.1.550 137 11/8/2024
2.1.549 142 11/8/2024
2.1.548 139 11/8/2024
2.1.547 453 11/8/2024
2.1.546 2,093 11/8/2024
2.1.545 127 11/8/2024
2.1.544 5,782 11/8/2024
2.1.543 121 11/8/2024
2.1.542 12,264 11/1/2024
2.1.541 513 11/1/2024
2.1.540 7,157 10/29/2024
2.1.539 832 10/29/2024
2.1.538 3,018 10/29/2024
2.1.537 667 10/29/2024
2.1.536 5,874 10/28/2024
2.1.535 1,963 10/28/2024
2.1.534 4,182 10/26/2024
2.1.533 768 10/26/2024
2.1.532 9,673 10/22/2024
2.1.531 294 10/22/2024
2.1.530 579 10/22/2024
2.1.529 944 10/22/2024
2.1.528 133 10/22/2024
2.1.527 522 10/22/2024
2.1.526 6,883 10/18/2024
2.1.525 1,177 10/17/2024
2.1.524 4,372 10/15/2024
2.1.523 1,677 10/15/2024
2.1.522 131 10/14/2024
2.1.521 5,417 10/12/2024
2.1.520 731 10/11/2024
2.1.519 128 10/11/2024
2.1.518 568 10/11/2024
2.1.517 3,071 10/11/2024
2.1.516 6,758 10/9/2024
2.1.515 428 10/9/2024
2.1.514 120 10/9/2024
2.1.513 2,055 10/8/2024
2.1.512 186 10/8/2024
2.1.511 2,361 10/8/2024
2.1.510 166 10/8/2024
2.1.509 123 10/8/2024
2.1.508 4,207 10/8/2024
2.1.507 6,557 10/3/2024
2.1.506 135 10/3/2024
2.1.505 1,236 10/3/2024
2.1.504 2,044 10/3/2024
2.1.503 1,506 10/3/2024
2.1.502 6,085 10/2/2024
2.1.501 129 10/2/2024
2.1.500 1,862 10/2/2024
2.1.499 1,122 10/2/2024
2.1.498 4,429 10/1/2024
2.1.497 758 10/1/2024
2.1.496 144 10/1/2024
2.1.495 2,784 10/1/2024
2.1.494 137 10/1/2024
2.1.493 175 10/1/2024
2.1.492 5,764 9/29/2024
2.1.491 1,461 9/29/2024
2.1.490 134 9/29/2024
2.1.489 1,301 9/29/2024
2.1.488 145 9/29/2024
2.1.487 2,717 9/29/2024
2.1.486 5,498 9/27/2024
2.1.485 862 9/27/2024
2.1.484 3,296 9/27/2024
2.1.483 147 9/27/2024
2.1.482 490 9/27/2024
2.1.481 2,236 9/27/2024
2.1.480 3,418 9/26/2024
2.1.479 3,664 9/26/2024
2.1.478 2,463 9/26/2024
2.1.477 2,338 9/26/2024
2.1.476 4,036 9/26/2024
2.1.475 133 9/26/2024
2.1.474 5,899 9/23/2024
2.1.473 1,411 9/23/2024
2.1.472 1,038 9/23/2024
2.1.471 1,227 9/23/2024
2.1.470 145 9/23/2024
2.1.469 1,642 9/23/2024
2.1.468 119 9/23/2024
2.1.467 4,988 9/23/2024
2.1.466 138 9/23/2024
2.1.465 789 9/23/2024
2.1.464 154 9/23/2024
2.1.463 125 9/23/2024
2.1.462 1,000 9/23/2024
2.1.461 9,846 9/18/2024
2.1.460 280 9/17/2024
2.1.459 1,349 9/17/2024
2.1.458 1,813 9/17/2024
2.1.457 145 9/17/2024
2.1.456 1,933 9/17/2024
2.1.455 503 9/17/2024
2.1.454 3,455 9/17/2024
2.1.453 614 9/17/2024
2.1.452 229 9/17/2024
2.1.451 2,802 9/17/2024
2.1.450 7,966 9/16/2024
2.1.449 760 9/16/2024
2.1.448 5,331 9/12/2024
2.1.447 3,045 9/12/2024
2.1.446 1,372 9/11/2024
2.1.445 1,712 9/11/2024
2.1.443 3,898 9/11/2024
2.1.442 1,078 9/11/2024
2.1.441 1,004 9/11/2024
2.1.440 2,445 9/11/2024
2.1.439 8,398 9/10/2024
2.1.438 157 9/10/2024
2.1.437 1,267 9/10/2024
2.1.436 151 9/10/2024
2.1.434 3,111 9/10/2024
2.1.433 667 9/9/2024
2.1.432 2,090 9/9/2024
2.1.430 1,631 9/9/2024
2.1.428 163 9/9/2024
2.1.427 499 9/9/2024
2.1.426 13,920 9/7/2024
2.1.425 176 9/7/2024
2.1.424 5,195 9/6/2024
2.1.423 396 9/6/2024
2.1.422 2,398 9/6/2024
2.1.421 152 9/5/2024
2.1.420 161 9/5/2024
2.1.419 2,506 9/5/2024
2.1.418 1,256 9/5/2024
2.1.417 151 9/5/2024
2.1.416 1,183 9/5/2024
2.1.415 515 9/5/2024
2.1.414 148 9/5/2024
2.1.413 5,276 9/5/2024
2.1.412 229 9/5/2024
2.1.411 158 9/5/2024
2.1.410 2,390 9/4/2024
2.1.409 8,431 9/3/2024
2.1.408 139 9/3/2024
2.1.407 142 9/3/2024
2.1.406 4,232 9/3/2024
2.1.405 176 9/3/2024
2.1.404 2,619 9/3/2024
2.1.403 5,570 8/29/2024
2.1.402 2,676 8/29/2024
2.1.401 3,035 8/26/2024
2.1.400 134 8/26/2024
2.1.399 5,278 8/21/2024
2.1.398 666 8/21/2024
2.1.397 175 8/21/2024
2.1.396 2,731 8/21/2024
2.1.395 180 8/20/2024
2.1.394 177 8/20/2024
2.1.393 519 8/20/2024
2.1.392 3,080 8/20/2024
2.1.391 453 8/20/2024
2.1.390 153 8/20/2024
2.1.389 2,889 8/20/2024
2.1.388 158 8/20/2024
2.1.387 1,267 8/20/2024
2.1.386 3,049 8/19/2024
2.1.385 5,141 8/15/2024
2.1.384 2,267 8/15/2024
2.1.383 5,011 8/14/2024
2.1.382 177 8/13/2024
2.1.381 6,023 8/7/2024
2.1.380 309 8/6/2024
2.1.379 2,825 8/6/2024
2.1.378 5,279 8/1/2024
2.1.377 371 8/1/2024
2.1.376 131 8/1/2024
2.1.374 1,280 8/1/2024
2.1.373 6,132 7/25/2024
2.1.372 124 7/25/2024
2.1.371 815 7/25/2024
2.1.370 340 7/25/2024
2.1.369 408 7/25/2024
2.1.368 210 7/25/2024
2.1.367 444 7/24/2024
2.1.366 187 7/24/2024
2.1.365 267 7/24/2024
2.1.364 351 7/24/2024
2.1.363 9,095 7/20/2024
2.1.362 1,557 7/20/2024
2.1.361 5,353 7/14/2024
2.1.360 1,622 7/14/2024
2.1.359 139 7/14/2024
2.1.358 1,591 7/14/2024
2.1.357 4,655 7/10/2024
2.1.355 872 7/10/2024
2.1.354 1,341 7/10/2024
2.1.353 149 7/10/2024
2.1.352 1,983 7/10/2024
2.1.351 158 7/10/2024
2.1.350 136 7/10/2024
2.1.349 199 7/10/2024
2.1.348 143 7/10/2024
2.1.347 2,180 7/10/2024
2.1.346 161 7/10/2024
2.1.345 925 7/10/2024
2.1.344 138 7/10/2024
2.1.343 243 7/9/2024
2.1.342 124 7/9/2024
2.1.339 2,154 7/9/2024
2.1.338 509 7/9/2024
2.1.337 4,205 7/9/2024
2.1.336 1,167 7/9/2024
2.1.335 152 7/9/2024
2.1.334 2,710 7/9/2024
2.1.333 136 7/9/2024
2.1.332 10,728 7/9/2024
2.1.331 145 7/9/2024
2.1.330 2,603 7/9/2024
2.1.329 131 7/9/2024
2.1.328 1,129 7/9/2024
2.1.327 732 7/8/2024
2.1.326 1,107 7/8/2024
2.1.325 150 7/8/2024
2.1.324 157 7/8/2024
2.1.323 5,178 7/8/2024
2.1.322 1,776 7/8/2024
2.1.321 147 7/8/2024
2.1.320 2,510 7/7/2024
2.1.319 156 7/7/2024
2.1.318 170 7/7/2024
2.1.317 153 7/7/2024
2.1.316 1,183 7/7/2024
2.1.315 2,336 7/7/2024
2.1.314 2,002 7/7/2024
2.1.313 268 7/7/2024
2.1.312 3,590 7/5/2024
2.1.311 4,090 7/3/2024
2.1.310 3,249 7/3/2024
2.1.309 420 7/3/2024
2.1.308 4,215 7/2/2024
2.1.307 1,959 6/30/2024
2.1.306 2,381 6/28/2024
2.1.305 5,690 6/22/2024
2.1.304 5,019 6/15/2024
2.1.303 4,277 6/14/2024
2.1.302 6,050 6/1/2024
2.1.301 1,670 6/1/2024
2.1.300 637 6/1/2024
2.1.299 6,024 5/31/2024
2.1.298 3,821 5/29/2024
2.1.297 3,148 5/28/2024
2.1.296 2,534 5/27/2024
2.1.295 5,041 5/26/2024
2.1.294 2,120 5/26/2024
2.1.293 546 5/26/2024
2.1.292 2,624 5/25/2024
2.1.291 1,446 5/25/2024
2.1.290 164 5/25/2024
2.1.289 161 5/25/2024
2.1.288 728 5/25/2024
2.1.287 155 5/25/2024
2.1.286 460 5/25/2024
2.1.285 158 5/25/2024
2.1.284 153 5/25/2024
2.1.283 7,705 5/23/2024
2.1.282 569 5/23/2024
2.1.281 314 5/22/2024
2.1.280 3,781 5/22/2024
2.1.279 158 5/22/2024
2.1.278 166 5/22/2024
2.1.277 158 5/22/2024
2.1.276 2,205 5/22/2024
2.1.275 3,561 5/18/2024
2.1.274 1,967 5/18/2024
2.1.273 1,874 5/17/2024
2.1.272 151 5/17/2024
2.1.271 2,836 5/16/2024
2.1.270 471 5/15/2024
2.1.269 2,857 5/15/2024
2.1.268 4,618 5/12/2024
2.1.267 2,859 5/3/2024
2.1.266 1,187 4/30/2024
2.1.265 1,840 4/29/2024
2.1.264 1,995 4/29/2024
2.1.263 2,773 4/28/2024
2.1.262 1,539 4/28/2024
2.1.261 1,168 4/28/2024
2.1.260 1,819 4/28/2024
2.1.259 981 4/28/2024
2.1.258 146 4/28/2024
2.1.257 4,301 4/27/2024
2.1.256 163 4/27/2024
2.1.255 4,521 4/19/2024
2.1.254 4,250 4/18/2024
2.1.253 3,526 4/12/2024
2.1.252 1,205 4/12/2024
2.1.251 770 4/12/2024
2.1.250 893 4/12/2024
2.1.249 240 4/12/2024
2.1.248 140 4/12/2024
2.1.247 1,019 4/12/2024
2.1.246 356 4/12/2024
2.1.245 1,684 4/11/2024
2.1.244 3,802 4/10/2024
2.1.243 1,185 4/9/2024
2.1.242 3,227 4/2/2024
2.1.241 955 4/1/2024
2.1.240 2,140 3/29/2024
2.1.239 1,896 3/25/2024
2.1.238 326 3/25/2024
2.1.237 3,406 3/20/2024
2.1.236 2,187 3/19/2024
2.1.235 548 3/19/2024
2.1.234 2,442 3/18/2024
2.1.233 1,440 3/18/2024
2.1.232 1,412 3/15/2024
2.1.231 2,434 3/13/2024
2.1.230 1,164 3/13/2024
2.1.229 699 3/13/2024
2.1.228 796 3/13/2024
2.1.227 170 3/13/2024
2.1.226 561 3/13/2024
2.1.225 166 3/13/2024
2.1.224 170 3/13/2024
2.1.223 1,721 3/12/2024
2.1.222 2,895 3/11/2024
2.1.221 2,554 3/11/2024
2.1.220 1,670 3/10/2024
2.1.219 1,967 3/8/2024
2.1.218 1,093 3/8/2024
2.1.217 1,599 3/8/2024
2.1.216 2,143 3/6/2024
2.1.215 2,078 3/4/2024
2.1.214 1,447 3/4/2024
2.1.213 2,655 3/2/2024
2.1.212 1,261 3/2/2024
2.1.211 442 3/2/2024
2.1.210 383 3/2/2024
2.1.209 511 3/2/2024
2.1.208 3,492 2/29/2024
2.1.207 665 2/29/2024
2.1.206 367 2/29/2024
2.1.205 3,422 2/26/2024
2.1.204 1,525 2/25/2024
2.1.203 2,685 2/23/2024
2.1.202 1,974 2/22/2024
2.1.201 992 2/22/2024
2.1.200 485 2/21/2024
2.1.199 1,216 2/21/2024
2.1.198 333 2/21/2024
2.1.197 814 2/21/2024
2.1.196 155 2/21/2024
2.1.195 1,299 2/21/2024
2.1.194 457 2/21/2024
2.1.193 163 2/21/2024
2.1.192 171 2/21/2024
2.1.191 621 2/21/2024
2.1.190 148 2/21/2024
2.1.189 2,705 2/20/2024
2.1.188 748 2/20/2024
2.1.187 683 2/20/2024
2.1.186 824 2/20/2024
2.1.185 2,197 2/19/2024
2.1.184 1,933 2/17/2024
2.1.183 959 2/16/2024
2.1.182 902 2/16/2024
2.1.181 1,383 2/16/2024
2.1.180 164 2/16/2024
2.1.179 686 2/16/2024
2.1.178 167 2/16/2024
2.1.177 162 2/16/2024
2.1.176 608 2/16/2024
2.1.175 149 2/16/2024
2.1.174 3,386 2/13/2024
2.1.173 1,415 2/13/2024
2.1.172 1,138 2/13/2024
2.1.171 484 2/13/2024
2.1.170 674 2/13/2024
2.1.169 1,999 2/12/2024
2.1.168 550 2/11/2024
2.1.167 1,594 2/11/2024
2.1.166 928 2/11/2024
2.1.165 2,888 2/10/2024
2.1.164 569 2/9/2024
2.1.163 164 2/9/2024
2.1.162 1,631 2/9/2024
2.1.161 1,701 2/9/2024
2.1.160 431 2/8/2024
2.1.159 1,277 2/8/2024
2.1.158 890 2/8/2024
2.1.157 1,524 2/8/2024
2.1.156 150 2/8/2024
2.1.155 1,927 2/7/2024
2.1.154 482 2/7/2024
2.1.153 643 2/7/2024
2.1.152 1,311 2/7/2024
2.1.151 406 2/6/2024
2.1.150 159 2/6/2024
2.1.149 160 2/6/2024
2.1.148 2,830 2/5/2024
2.1.147 1,581 2/4/2024
2.1.146 2,152 2/2/2024
2.1.145 1,981 1/31/2024
2.1.144 2,204 1/29/2024
2.1.143 1,431 1/29/2024
2.1.142 379 1/29/2024
2.1.141 1,544 1/28/2024
2.1.140 528 1/28/2024
2.1.139 340 1/28/2024
2.1.138 588 1/28/2024
2.1.137 1,986 1/28/2024
2.1.136 970 1/28/2024
2.1.135 333 1/27/2024
2.1.134 977 1/27/2024
2.1.133 1,191 1/27/2024
2.1.132 1,242 1/27/2024
2.1.131 176 1/27/2024
2.1.130 740 1/27/2024
2.1.129 1,113 1/26/2024
2.1.128 256 1/26/2024
2.1.127 913 1/26/2024
2.1.126 1,185 1/26/2024
2.1.125 1,685 1/26/2024
2.1.124 921 1/25/2024
2.1.123 1,159 1/25/2024
2.1.122 488 1/25/2024
2.1.121 950 1/25/2024
2.1.120 558 1/25/2024
2.1.119 2,657 1/19/2024
2.1.118 2,299 1/15/2024
2.1.117 535 1/15/2024
2.1.116 1,293 1/15/2024
2.1.115 158 1/15/2024
2.1.114 597 1/15/2024
2.1.113 1,416 1/15/2024
2.1.112 2,615 1/14/2024
2.1.111 1,669 1/13/2024
2.1.110 1,880 1/12/2024
2.1.109 2,115 1/11/2024
2.1.108 2,714 1/7/2024
2.1.107 2,153 1/5/2024
2.1.106 544 1/5/2024
2.1.105 174 1/5/2024
2.1.104 167 1/5/2024
2.1.103 1,534 1/5/2024
2.1.102 171 1/5/2024
2.1.101 2,852 1/1/2024
2.1.100 2,309 12/28/2023
2.1.99 786 12/28/2023
2.1.98 536 12/28/2023
2.1.97 161 12/28/2023
2.1.96 162 12/28/2023
2.1.95 742 12/27/2023
2.1.94 179 12/27/2023
2.1.93 539 12/27/2023
2.1.92 169 12/27/2023
2.1.91 174 12/27/2023
2.1.90 2,277 12/25/2023
2.1.89 388 12/25/2023
2.1.88 839 12/25/2023
2.1.87 180 12/25/2023
2.1.86 693 12/25/2023
2.1.85 170 12/25/2023
2.1.84 613 12/25/2023
2.1.83 170 12/25/2023
2.1.82 1,730 12/24/2023
2.1.81 1,160 12/23/2023
2.1.80 923 12/23/2023
2.1.79 335 12/23/2023
2.1.78 596 12/23/2023
2.1.77 169 12/23/2023
2.1.76 156 12/23/2023
2.1.75 1,146 12/23/2023
2.1.74 158 12/23/2023
2.1.73 1,457 12/19/2023
2.1.72 244 12/19/2023
2.1.71 3,210 12/11/2023
2.1.70 774 12/10/2023
2.1.69 155 12/10/2023
2.1.68 525 12/10/2023
2.1.67 1,507 12/10/2023
2.1.66 410 12/9/2023
2.1.65 402 12/9/2023
2.1.64 319 12/9/2023
2.1.63 176 12/9/2023
2.1.62 297 12/9/2023
2.1.61 236 12/9/2023
2.1.60 156 12/9/2023
2.1.59 1,126 12/9/2023
2.1.58 168 12/9/2023
2.1.57 1,584 12/6/2023
2.1.56 429 12/6/2023
2.1.55 268 12/6/2023
2.1.54 300 12/6/2023
2.1.53 975 12/5/2023
2.1.52 401 12/5/2023
2.1.51 364 12/5/2023
2.1.50 397 12/5/2023
2.1.49 142 12/5/2023
2.1.48 375 12/5/2023
2.1.47 295 12/5/2023
2.1.46 145 12/4/2023
2.1.45 155 12/4/2023
2.1.44 383 12/4/2023
2.1.43 170 12/4/2023
2.1.42 1,043 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,216 11/27/2023
2.1.39 566 11/26/2023
2.1.38 250 11/26/2023
2.1.37 657 11/23/2023
2.1.36 730 11/23/2023
2.1.35 687 11/23/2023
2.1.34 153 11/23/2023
2.1.33 433 11/23/2023
2.1.32 164 11/23/2023
2.1.31 1,131 11/20/2023
2.1.30 1,126 11/20/2023
2.1.29 851 11/19/2023
2.1.28 287 11/19/2023
2.1.27 519 11/19/2023
2.1.26 524 11/19/2023
2.1.25 528 11/19/2023
2.1.24 140 11/19/2023
2.1.23 232 11/18/2023
2.1.22 1,041 11/18/2023
2.1.21 407 11/18/2023
2.1.20 569 11/18/2023
2.1.19 159 11/18/2023
2.1.18 329 11/18/2023
2.1.17 153 11/18/2023
2.1.16 643 11/17/2023
2.1.15 547 11/17/2023
2.1.14 152 11/17/2023
2.1.13 478 11/17/2023
2.1.12 327 11/17/2023
2.1.11 523 11/17/2023
2.1.10 149 11/17/2023
2.1.9 536 11/17/2023
2.1.8 157 11/17/2023
2.1.7 176 11/17/2023
2.1.6 382 11/17/2023
2.1.5 404 11/16/2023
2.0.101 2,125 11/15/2023
2.0.100 149 11/15/2023
2.0.99 156 11/15/2023
2.0.4 148 11/16/2023
2.0.3 160 11/16/2023
2.0.2 153 11/16/2023
2.0.1 149 11/16/2023
1.0.98 646 11/14/2023
1.0.97 789 11/13/2023
1.0.96 136 11/13/2023
1.0.95 613 11/10/2023
1.0.94 149 11/10/2023
1.0.93 973 11/9/2023
1.0.92 151 11/9/2023
1.0.91 1,089 11/7/2023
1.0.90 146 11/7/2023
1.0.89 528 11/6/2023
1.0.88 159 11/6/2023
1.0.87 659 11/3/2023
1.0.86 165 11/3/2023
1.0.85 916 11/2/2023
1.0.84 146 11/2/2023
1.0.83 648 11/1/2023
1.0.82 1,541 10/26/2023
1.0.81 1,365 10/19/2023
1.0.80 173 10/19/2023
1.0.79 848 10/18/2023
1.0.78 191 10/18/2023
1.0.77 777 10/17/2023
1.0.76 176 10/17/2023
1.0.75 708 10/16/2023
1.0.74 180 10/16/2023
1.0.73 758 10/13/2023
1.0.72 389 10/12/2023
1.0.71 1,815 9/20/2023
1.0.70 722 9/19/2023
1.0.69 720 9/18/2023
1.0.68 175 9/18/2023
1.0.67 964 9/14/2023
1.0.66 1,572 8/31/2023
1.0.65 181 8/31/2023
1.0.64 876 8/30/2023
1.0.63 204 8/30/2023
1.0.62 218 8/30/2023
1.0.61 914 8/28/2023
1.0.60 774 8/25/2023
1.0.59 183 8/25/2023
1.0.58 540 8/24/2023
1.0.57 1,540 8/21/2023
1.0.56 891 8/18/2023
1.0.55 817 8/17/2023
1.0.54 198 8/17/2023
1.0.53 2,005 8/10/2023
1.0.52 619 8/9/2023
1.0.51 742 8/8/2023
1.0.50 724 8/7/2023
1.0.49 226 8/7/2023
1.0.48 2,589 7/13/2023
1.0.47 961 7/11/2023
1.0.46 790 7/10/2023
1.0.45 766 7/7/2023
1.0.44 222 7/7/2023
1.0.43 2,216 6/30/2023
1.0.42 1,151 6/29/2023
1.0.41 660 6/28/2023
1.0.40 1,657 6/26/2023
1.0.39 848 6/23/2023
1.0.38 1,154 6/21/2023
1.0.37 1,569 6/15/2023
1.0.36 534 6/14/2023
1.0.35 1,934 6/9/2023
1.0.34 894 6/8/2023
1.0.33 1,711 6/7/2023
1.0.32 219 6/7/2023
1.0.31 1,298 6/6/2023
1.0.30 1,256 6/5/2023
1.0.29 1,444 6/2/2023
1.0.28 209 6/2/2023
1.0.27 1,323 6/1/2023
1.0.26 661 5/31/2023
1.0.25 541 5/31/2023
1.0.24 218 5/31/2023
1.0.23 1,573 5/30/2023
1.0.22 1,628 5/26/2023
1.0.21 763 5/25/2023
1.0.20 201 5/25/2023
1.0.19 916 5/24/2023
1.0.18 210 5/24/2023
1.0.17 510 5/23/2023
1.0.13 1,550 5/22/2023
1.0.12 1,282 5/18/2023
1.0.11 664 5/17/2023
1.0.10 1,651 5/1/2023
1.0.9 1,099 4/25/2023
1.0.8 540 4/24/2023
1.0.7 1,073 4/21/2023
1.0.6 2,047 4/13/2023
1.0.5 672 4/12/2023
1.0.4 1,089 4/8/2023
1.0.3 247 4/8/2023
1.0.2 670 4/8/2023
1.0.1 250 4/8/2023