Soenneker.Utils.SingletonDictionary 3.0.1105

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

A utility library that holds Azure Service senders

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.SignalR.Web.Clients

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

GitHub repositories

This package is not used by any popular GitHub repositories.

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