Soenneker.Utils.SingletonDictionary 3.0.1010

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

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

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

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

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET 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.1095 0 6/28/2025
3.0.1094 0 6/28/2025
3.0.1093 7 6/27/2025
3.0.1092 16 6/27/2025
3.0.1091 10,375 6/10/2025
3.0.1090 17,075 5/27/2025
3.0.1089 878 5/27/2025
3.0.1088 953 5/27/2025
3.0.1087 2,275 5/27/2025
3.0.1086 13,776 5/23/2025
3.0.1085 1,244 5/23/2025
3.0.1084 1,201 5/23/2025
3.0.1083 1,221 5/23/2025
3.0.1082 244 5/22/2025
3.0.1081 9,409 5/18/2025
3.0.1079 1,409 5/18/2025
3.0.1078 1,361 5/18/2025
3.0.1077 3,974 5/14/2025
3.0.1076 8,976 5/8/2025
3.0.1075 279 5/8/2025
3.0.1074 582 5/8/2025
3.0.1073 1,087 5/7/2025
3.0.1072 12,964 5/5/2025
3.0.1071 855 5/5/2025
3.0.1070 1,549 5/5/2025
3.0.1069 718 5/5/2025
3.0.1068 228 5/5/2025
3.0.1067 141 5/5/2025
3.0.1066 18,054 4/9/2025
3.0.1065 266 4/9/2025
3.0.1064 1,062 4/8/2025
3.0.1063 2,196 4/8/2025
3.0.1062 3,010 4/8/2025
3.0.1061 196 4/8/2025
3.0.1060 169 4/8/2025
3.0.1059 194 4/8/2025
3.0.1058 157 4/8/2025
3.0.1057 862 4/8/2025
3.0.1056 289 4/8/2025
3.0.1055 6,400 4/8/2025
3.0.1054 657 4/8/2025
3.0.1053 3,280 4/7/2025
3.0.1052 714 4/7/2025
3.0.1051 168 4/7/2025
3.0.1050 596 4/7/2025
3.0.1049 167 4/7/2025
3.0.1048 6,775 4/7/2025
3.0.1047 173 4/7/2025
3.0.1046 9,330 4/7/2025
3.0.1045 163 4/7/2025
3.0.1044 1,381 4/7/2025
3.0.1043 165 4/7/2025
3.0.1042 1,626 4/7/2025
3.0.1041 936 4/6/2025
3.0.1040 295 4/6/2025
3.0.1039 166 4/6/2025
3.0.1038 1,062 4/6/2025
3.0.1037 165 4/6/2025
3.0.1036 403 4/6/2025
3.0.1035 1,187 4/6/2025
3.0.1034 147 4/6/2025
3.0.1033 2,053 4/6/2025
3.0.1032 108 4/6/2025
3.0.1031 156 4/6/2025
3.0.1030 118 4/6/2025
3.0.1029 1,609 4/5/2025
3.0.1028 180 4/5/2025
3.0.1027 1,154 4/5/2025
3.0.1026 1,211 4/5/2025
3.0.1025 1,052 4/5/2025
3.0.1024 643 4/5/2025
3.0.1023 546 4/5/2025
3.0.1022 114 4/5/2025
3.0.1021 1,276 4/4/2025
3.0.1020 6,958 4/4/2025
3.0.1019 23,320 4/4/2025
3.0.1018 6,636 4/1/2025
3.0.1017 2,615 4/1/2025
3.0.1016 166 4/1/2025
3.0.1015 5,388 4/1/2025
3.0.1014 2,337 3/31/2025
3.0.1013 367 3/31/2025
3.0.1012 3,895 3/31/2025
3.0.1011 6,716 3/29/2025
3.0.1010 1,056 3/29/2025
3.0.1009 1,395 3/29/2025
3.0.1008 101 3/29/2025
3.0.1007 4,303 3/27/2025
3.0.1006 3,823 3/25/2025
3.0.1005 596 3/25/2025
3.0.1004 3,079 3/25/2025
3.0.1003 6,019 3/21/2025
3.0.1002 2,532 3/21/2025
3.0.1001 7,276 3/18/2025
3.0.1000 3,374 3/18/2025
3.0.999 6,316 3/15/2025
3.0.998 1,766 3/15/2025
3.0.997 75 3/15/2025
3.0.996 6,026 3/12/2025
3.0.995 2,147 3/12/2025
3.0.994 169 3/12/2025
3.0.993 392 3/12/2025
3.0.992 154 3/12/2025
3.0.991 2,680 3/11/2025
3.0.990 163 3/11/2025
3.0.989 1,265 3/11/2025
3.0.988 169 3/11/2025
3.0.987 2,551 3/11/2025
3.0.986 171 3/11/2025
3.0.985 2,637 3/11/2025
3.0.984 158 3/11/2025
3.0.983 1,612 3/11/2025
3.0.982 166 3/11/2025
3.0.981 8,842 3/7/2025
3.0.980 2,587 3/7/2025
3.0.979 6,138 3/2/2025
3.0.978 1,034 3/2/2025
3.0.977 639 3/2/2025
3.0.976 111 3/2/2025
3.0.975 4,300 3/2/2025
3.0.974 104 3/2/2025
3.0.973 3,162 3/1/2025
3.0.972 95 3/1/2025
3.0.971 4,261 3/1/2025
3.0.970 119 3/1/2025
3.0.969 99 3/1/2025
3.0.968 400 3/1/2025
3.0.967 98 3/1/2025
3.0.966 5,781 3/1/2025
3.0.965 4,749 2/26/2025
3.0.964 813 2/26/2025
3.0.963 2,311 2/25/2025
3.0.962 95 2/25/2025
3.0.961 840 2/25/2025
3.0.960 94 2/25/2025
3.0.959 123 2/25/2025
3.0.958 1,822 2/25/2025
3.0.957 4,811 2/24/2025
3.0.956 4,459 2/23/2025
3.0.955 1,073 2/22/2025
3.0.954 101 2/22/2025
3.0.953 7,526 2/22/2025
3.0.952 2,184 2/22/2025
3.0.951 1,042 2/22/2025
3.0.950 758 2/22/2025
3.0.949 138 2/22/2025
3.0.948 112 2/22/2025
3.0.947 101 2/22/2025
3.0.946 4,603 2/21/2025
3.0.945 99 2/21/2025
3.0.944 5,471 2/21/2025
3.0.943 4,525 2/19/2025
3.0.942 1,604 2/19/2025
3.0.941 714 2/19/2025
3.0.940 104 2/19/2025
3.0.939 396 2/18/2025
3.0.938 105 2/18/2025
3.0.937 5,430 2/18/2025
3.0.936 103 2/18/2025
3.0.935 2,796 2/18/2025
3.0.934 6,608 2/16/2025
3.0.933 1,518 2/14/2025
3.0.932 803 2/14/2025
3.0.931 702 2/13/2025
3.0.930 2,366 2/13/2025
3.0.929 274 2/13/2025
3.0.928 3,665 2/13/2025
3.0.927 3,782 2/12/2025
3.0.926 1,449 2/12/2025
3.0.925 145 2/12/2025
3.0.924 104 2/12/2025
3.0.923 1,995 2/12/2025
3.0.922 344 2/12/2025
3.0.921 115 2/12/2025
3.0.920 181 2/12/2025
3.0.919 184 2/12/2025
3.0.918 109 2/12/2025
3.0.917 162 2/11/2025
3.0.916 3,373 2/11/2025
3.0.915 3,650 2/11/2025
3.0.914 2,171 2/11/2025
3.0.913 118 2/11/2025
3.0.912 392 2/11/2025
3.0.911 1,718 2/10/2025
3.0.910 114 2/10/2025
3.0.909 776 2/10/2025
3.0.908 112 2/10/2025
3.0.907 6,294 2/10/2025
3.0.906 113 2/10/2025
3.0.905 1,152 2/9/2025
3.0.904 5,586 2/9/2025
3.0.903 105 2/9/2025
3.0.902 7,093 2/8/2025
3.0.901 112 2/8/2025
3.0.900 1,670 2/7/2025
3.0.899 104 2/7/2025
3.0.898 1,572 2/7/2025
3.0.897 111 2/7/2025
3.0.896 637 2/7/2025
3.0.895 413 2/7/2025
3.0.894 119 2/7/2025
3.0.893 326 2/7/2025
3.0.892 102 2/7/2025
3.0.891 1,025 2/7/2025
3.0.890 101 2/7/2025
3.0.889 113 2/7/2025
3.0.888 10,550 2/7/2025
3.0.887 6,157 2/5/2025
3.0.886 596 2/5/2025
3.0.885 885 2/5/2025
3.0.884 283 2/5/2025
3.0.883 977 2/5/2025
3.0.882 649 2/5/2025
3.0.881 2,903 2/5/2025
3.0.880 109 2/5/2025
3.0.879 10,723 1/28/2025
3.0.878 632 1/28/2025
3.0.877 1,728 1/28/2025
3.0.876 218 1/28/2025
3.0.875 3,638 1/28/2025
3.0.874 620 1/27/2025
3.0.873 90 1/27/2025
3.0.872 183 1/27/2025
3.0.871 263 1/27/2025
3.0.870 95 1/27/2025
3.0.869 4,690 1/27/2025
3.0.868 4,352 1/26/2025
3.0.867 918 1/26/2025
3.0.866 175 1/26/2025
3.0.865 1,000 1/26/2025
3.0.864 1,304 1/25/2025
3.0.863 101 1/25/2025
3.0.862 5,505 1/25/2025
3.0.861 947 1/25/2025
3.0.860 291 1/25/2025
3.0.859 101 1/25/2025
3.0.858 1,785 1/25/2025
3.0.857 1,249 1/25/2025
3.0.856 6,372 1/24/2025
3.0.855 1,463 1/24/2025
3.0.854 89 1/24/2025
3.0.853 1,906 1/24/2025
3.0.852 311 1/24/2025
3.0.851 204 1/24/2025
3.0.850 2,997 1/24/2025
3.0.849 98 1/24/2025
3.0.848 475 1/23/2025
3.0.847 99 1/23/2025
3.0.846 555 1/23/2025
3.0.845 95 1/23/2025
3.0.844 7,547 1/22/2025
3.0.843 962 1/21/2025
3.0.842 940 1/21/2025
3.0.841 555 1/21/2025
3.0.840 99 1/21/2025
3.0.839 580 1/21/2025
3.0.838 724 1/21/2025
3.0.837 5,214 1/21/2025
3.0.836 524 1/21/2025
3.0.835 984 1/21/2025
3.0.834 108 1/21/2025
3.0.833 782 1/21/2025
3.0.832 97 1/21/2025
3.0.831 2,069 1/21/2025
3.0.830 88 1/21/2025
3.0.829 377 1/20/2025
3.0.828 2,681 1/20/2025
3.0.827 229 1/20/2025
3.0.826 1,961 1/20/2025
3.0.825 98 1/20/2025
3.0.824 1,042 1/20/2025
3.0.823 97 1/20/2025
3.0.822 113 1/20/2025
3.0.821 97 1/20/2025
3.0.820 344 1/20/2025
3.0.819 99 1/20/2025
3.0.818 100 1/20/2025
3.0.817 5,378 1/19/2025
3.0.816 105 1/19/2025
3.0.815 4,977 1/19/2025
3.0.814 1,544 1/19/2025
3.0.813 115 1/19/2025
3.0.812 368 1/19/2025
3.0.811 96 1/19/2025
3.0.810 1,802 1/19/2025
3.0.809 92 1/19/2025
3.0.808 3,092 1/18/2025
3.0.807 98 1/18/2025
3.0.806 6,873 1/17/2025
3.0.805 107 1/17/2025
3.0.804 576 1/17/2025
3.0.803 895 1/17/2025
3.0.802 3,989 1/16/2025
3.0.801 1,387 1/16/2025
3.0.800 1,999 1/16/2025
3.0.799 529 1/16/2025
3.0.798 1,153 1/16/2025
3.0.797 986 1/16/2025
3.0.796 90 1/16/2025
3.0.795 4,378 1/15/2025
3.0.794 90 1/15/2025
3.0.793 2,693 1/15/2025
3.0.792 93 1/15/2025
3.0.791 136 1/15/2025
3.0.790 3,174 1/15/2025
3.0.789 83 1/15/2025
3.0.788 2,666 1/15/2025
3.0.787 69 1/15/2025
3.0.786 428 1/15/2025
3.0.785 66 1/15/2025
3.0.784 1,546 1/15/2025
3.0.783 69 1/15/2025
3.0.782 211 1/14/2025
3.0.781 82 1/14/2025
3.0.780 88 1/14/2025
3.0.779 2,942 1/14/2025
3.0.778 513 1/14/2025
3.0.777 84 1/14/2025
3.0.776 1,177 1/14/2025
3.0.775 86 1/14/2025
3.0.774 4,960 1/13/2025
3.0.773 1,531 1/13/2025
3.0.772 1,294 1/13/2025
3.0.771 89 1/13/2025
3.0.770 4,831 1/11/2025
3.0.769 1,945 1/11/2025
3.0.768 120 1/11/2025
3.0.767 2,059 1/11/2025
3.0.766 100 1/11/2025
3.0.765 1,660 1/10/2025
3.0.764 1,798 1/10/2025
3.0.763 102 1/10/2025
3.0.762 756 1/10/2025
3.0.761 101 1/10/2025
3.0.760 95 1/10/2025
3.0.759 6,245 1/3/2025
3.0.758 463 1/3/2025
3.0.757 977 1/3/2025
3.0.756 125 1/3/2025
3.0.755 1,414 1/3/2025
3.0.754 107 1/3/2025
3.0.753 1,054 1/3/2025
3.0.752 1,018 1/2/2025
3.0.751 107 1/2/2025
3.0.750 1,701 1/2/2025
3.0.749 119 1/2/2025
3.0.748 2,826 1/2/2025
3.0.747 107 1/2/2025
3.0.746 109 1/2/2025
3.0.745 4,650 1/1/2025
3.0.744 999 1/1/2025
3.0.743 272 1/1/2025
3.0.742 120 1/1/2025
3.0.741 1,462 1/1/2025
3.0.740 112 1/1/2025
3.0.739 118 1/1/2025
3.0.738 119 1/1/2025
3.0.737 316 12/31/2024
3.0.736 120 12/31/2024
3.0.735 125 12/31/2024
3.0.734 613 12/31/2024
3.0.733 129 12/31/2024
3.0.732 4,551 12/31/2024
3.0.731 121 12/31/2024
3.0.730 4,352 12/31/2024
3.0.729 100 12/31/2024
3.0.728 2,572 12/31/2024
3.0.727 334 12/31/2024
3.0.726 107 12/31/2024
3.0.725 1,319 12/31/2024
3.0.724 108 12/31/2024
3.0.723 8,857 12/28/2024
3.0.722 1,123 12/28/2024
3.0.721 1,222 12/27/2024
3.0.720 117 12/27/2024
3.0.719 2,682 12/27/2024
3.0.718 4,885 12/24/2024
3.0.717 1,244 12/24/2024
3.0.716 939 12/24/2024
3.0.715 803 12/24/2024
3.0.714 1,375 12/24/2024
3.0.713 96 12/24/2024
3.0.712 2,252 12/24/2024
3.0.711 642 12/24/2024
3.0.710 103 12/24/2024
3.0.709 458 12/24/2024
3.0.708 971 12/24/2024
3.0.707 254 12/24/2024
3.0.706 129 12/24/2024
3.0.705 1,050 12/24/2024
3.0.704 104 12/24/2024
3.0.703 1,787 12/23/2024
3.0.702 2,748 12/23/2024
3.0.701 110 12/23/2024
3.0.700 671 12/23/2024
3.0.699 104 12/23/2024
3.0.698 1,832 12/23/2024
3.0.697 104 12/23/2024
3.0.696 1,446 12/23/2024
3.0.695 113 12/23/2024
3.0.694 442 12/22/2024
3.0.693 1,391 12/22/2024
3.0.692 3,992 12/22/2024
3.0.691 112 12/22/2024
3.0.690 1,551 12/22/2024
3.0.689 160 12/22/2024
3.0.688 468 12/22/2024
3.0.687 100 12/22/2024
3.0.686 263 12/22/2024
3.0.685 108 12/22/2024
3.0.684 6,761 12/22/2024
3.0.683 103 12/22/2024
3.0.682 1,066 12/21/2024
3.0.681 269 12/21/2024
3.0.680 106 12/21/2024
3.0.679 491 12/21/2024
3.0.678 774 12/21/2024
3.0.677 102 12/21/2024
3.0.676 3,778 12/21/2024
3.0.675 386 12/21/2024
3.0.674 103 12/21/2024
3.0.673 2,531 12/21/2024
3.0.672 680 12/21/2024
3.0.671 110 12/21/2024
3.0.670 1,581 12/20/2024
3.0.669 117 12/20/2024
3.0.668 108 12/20/2024
3.0.667 3,692 12/20/2024
3.0.666 1,138 12/20/2024
3.0.665 222 12/20/2024
3.0.664 3,449 12/19/2024
3.0.663 424 12/19/2024
3.0.662 2,018 12/18/2024
3.0.661 107 12/18/2024
3.0.660 6,577 12/17/2024
3.0.659 213 12/17/2024
3.0.658 690 12/16/2024
3.0.657 114 12/16/2024
3.0.656 141 12/16/2024
3.0.655 100 12/16/2024
3.0.654 6,475 12/10/2024
3.0.653 998 12/10/2024
3.0.652 383 12/9/2024
3.0.651 106 12/9/2024
3.0.650 2,669 12/9/2024
3.0.649 1,368 12/9/2024
3.0.648 100 12/9/2024
3.0.647 3,626 12/9/2024
3.0.646 2,732 12/6/2024
3.0.645 425 12/6/2024
3.0.644 109 12/6/2024
3.0.643 688 12/6/2024
3.0.641 3,877 12/6/2024
3.0.640 2,448 12/6/2024
3.0.639 5,276 12/6/2024
3.0.637 374 12/6/2024
3.0.636 2,523 12/5/2024
3.0.635 3,566 12/5/2024
3.0.634 3,170 12/5/2024
3.0.633 106 12/5/2024
3.0.632 1,744 12/5/2024
3.0.631 1,031 12/5/2024
3.0.630 111 12/5/2024
3.0.629 379 12/5/2024
3.0.628 103 12/5/2024
3.0.627 150 12/5/2024
3.0.626 105 12/5/2024
3.0.625 3,358 12/4/2024
3.0.624 103 12/4/2024
3.0.623 116 12/4/2024
3.0.622 114 12/4/2024
3.0.621 1,715 12/4/2024
3.0.620 301 12/4/2024
3.0.619 412 12/4/2024
3.0.618 3,372 12/3/2024
3.0.617 112 12/3/2024
3.0.616 1,123 12/3/2024
3.0.615 441 12/3/2024
3.0.614 119 12/3/2024
3.0.613 120 12/3/2024
3.0.612 4,034 12/3/2024
3.0.611 105 12/3/2024
3.0.610 3,291 12/3/2024
3.0.609 97 12/3/2024
3.0.608 3,071 12/2/2024
3.0.607 2,655 12/2/2024
3.0.606 1,623 12/2/2024
3.0.605 279 12/2/2024
3.0.604 111 12/2/2024
3.0.603 402 12/2/2024
3.0.602 3,452 12/1/2024
3.0.601 111 12/1/2024
3.0.600 1,887 12/1/2024
3.0.599 201 12/1/2024
3.0.598 3,457 12/1/2024
3.0.597 116 12/1/2024
3.0.596 3,564 11/29/2024
3.0.595 1,051 11/29/2024
3.0.594 5,764 11/21/2024
3.0.593 300 11/21/2024
3.0.592 4,525 11/20/2024
3.0.591 346 11/20/2024
3.0.590 115 11/20/2024
3.0.589 113 11/20/2024
3.0.588 427 11/20/2024
3.0.587 158 11/20/2024
3.0.586 104 11/20/2024
3.0.585 2,029 11/20/2024
3.0.584 2,758 11/19/2024
3.0.583 103 11/19/2024
3.0.582 639 11/19/2024
3.0.581 104 11/19/2024
3.0.580 2,676 11/19/2024
3.0.579 100 11/19/2024
3.0.578 1,316 11/19/2024
3.0.577 112 11/19/2024
3.0.576 8,518 11/14/2024
3.0.575 140 11/14/2024
3.0.574 513 11/14/2024
3.0.573 2,379 11/14/2024
3.0.572 726 11/14/2024
3.0.571 118 11/14/2024
3.0.570 117 11/14/2024
3.0.569 4,151 11/14/2024
3.0.568 116 11/14/2024
3.0.567 111 11/14/2024
3.0.566 3,488 11/14/2024
3.0.565 112 11/14/2024
3.0.564 110 11/14/2024
3.0.563 111 11/14/2024
2.1.562 8,476 11/13/2024
2.1.561 1,379 11/13/2024
2.1.560 3,060 11/13/2024
2.1.559 118 11/13/2024
2.1.558 1,336 11/12/2024
2.1.557 401 11/12/2024
2.1.556 8,250 11/9/2024
2.1.555 365 11/9/2024
2.1.554 115 11/9/2024
2.1.553 1,737 11/9/2024
2.1.552 109 11/9/2024
2.1.551 963 11/8/2024
2.1.550 113 11/8/2024
2.1.549 111 11/8/2024
2.1.548 113 11/8/2024
2.1.547 425 11/8/2024
2.1.546 1,898 11/8/2024
2.1.545 107 11/8/2024
2.1.544 5,465 11/8/2024
2.1.543 107 11/8/2024
2.1.542 11,657 11/1/2024
2.1.541 463 11/1/2024
2.1.540 6,782 10/29/2024
2.1.539 744 10/29/2024
2.1.538 2,837 10/29/2024
2.1.537 630 10/29/2024
2.1.536 5,564 10/28/2024
2.1.535 1,857 10/28/2024
2.1.534 4,014 10/26/2024
2.1.533 705 10/26/2024
2.1.532 9,302 10/22/2024
2.1.531 255 10/22/2024
2.1.530 552 10/22/2024
2.1.529 883 10/22/2024
2.1.528 101 10/22/2024
2.1.527 497 10/22/2024
2.1.526 6,504 10/18/2024
2.1.525 1,091 10/17/2024
2.1.524 4,157 10/15/2024
2.1.523 1,600 10/15/2024
2.1.522 102 10/14/2024
2.1.521 5,130 10/12/2024
2.1.520 653 10/11/2024
2.1.519 105 10/11/2024
2.1.518 480 10/11/2024
2.1.517 2,940 10/11/2024
2.1.516 6,415 10/9/2024
2.1.515 384 10/9/2024
2.1.514 103 10/9/2024
2.1.513 1,980 10/8/2024
2.1.512 152 10/8/2024
2.1.511 2,224 10/8/2024
2.1.510 149 10/8/2024
2.1.509 102 10/8/2024
2.1.508 3,941 10/8/2024
2.1.507 6,230 10/3/2024
2.1.506 110 10/3/2024
2.1.505 1,104 10/3/2024
2.1.504 1,929 10/3/2024
2.1.503 1,421 10/3/2024
2.1.502 5,730 10/2/2024
2.1.501 106 10/2/2024
2.1.500 1,819 10/2/2024
2.1.499 1,007 10/2/2024
2.1.498 4,176 10/1/2024
2.1.497 710 10/1/2024
2.1.496 118 10/1/2024
2.1.495 2,625 10/1/2024
2.1.494 110 10/1/2024
2.1.493 152 10/1/2024
2.1.492 5,433 9/29/2024
2.1.491 1,386 9/29/2024
2.1.490 109 9/29/2024
2.1.489 1,225 9/29/2024
2.1.488 115 9/29/2024
2.1.487 2,517 9/29/2024
2.1.486 5,233 9/27/2024
2.1.485 780 9/27/2024
2.1.484 3,135 9/27/2024
2.1.483 120 9/27/2024
2.1.482 450 9/27/2024
2.1.481 2,159 9/27/2024
2.1.480 3,168 9/26/2024
2.1.479 3,485 9/26/2024
2.1.478 2,356 9/26/2024
2.1.477 2,167 9/26/2024
2.1.476 3,809 9/26/2024
2.1.475 109 9/26/2024
2.1.474 5,610 9/23/2024
2.1.473 1,296 9/23/2024
2.1.472 956 9/23/2024
2.1.471 1,148 9/23/2024
2.1.470 111 9/23/2024
2.1.469 1,550 9/23/2024
2.1.468 104 9/23/2024
2.1.467 4,667 9/23/2024
2.1.466 112 9/23/2024
2.1.465 727 9/23/2024
2.1.464 123 9/23/2024
2.1.463 104 9/23/2024
2.1.462 891 9/23/2024
2.1.461 9,258 9/18/2024
2.1.460 257 9/17/2024
2.1.459 1,207 9/17/2024
2.1.458 1,717 9/17/2024
2.1.457 115 9/17/2024
2.1.456 1,807 9/17/2024
2.1.455 466 9/17/2024
2.1.454 3,287 9/17/2024
2.1.453 562 9/17/2024
2.1.452 205 9/17/2024
2.1.451 2,659 9/17/2024
2.1.450 7,456 9/16/2024
2.1.449 723 9/16/2024
2.1.448 5,038 9/12/2024
2.1.447 2,924 9/12/2024
2.1.446 1,320 9/11/2024
2.1.445 1,537 9/11/2024
2.1.443 3,724 9/11/2024
2.1.442 1,007 9/11/2024
2.1.441 965 9/11/2024
2.1.440 2,315 9/11/2024
2.1.439 8,091 9/10/2024
2.1.438 133 9/10/2024
2.1.437 1,155 9/10/2024
2.1.436 128 9/10/2024
2.1.434 2,924 9/10/2024
2.1.433 608 9/9/2024
2.1.432 2,015 9/9/2024
2.1.430 1,555 9/9/2024
2.1.428 148 9/9/2024
2.1.427 473 9/9/2024
2.1.426 13,252 9/7/2024
2.1.425 141 9/7/2024
2.1.424 5,014 9/6/2024
2.1.423 380 9/6/2024
2.1.422 2,214 9/6/2024
2.1.421 130 9/5/2024
2.1.420 136 9/5/2024
2.1.419 2,395 9/5/2024
2.1.418 1,162 9/5/2024
2.1.417 137 9/5/2024
2.1.416 1,154 9/5/2024
2.1.415 445 9/5/2024
2.1.414 132 9/5/2024
2.1.413 5,044 9/5/2024
2.1.412 207 9/5/2024
2.1.411 134 9/5/2024
2.1.410 2,272 9/4/2024
2.1.409 8,016 9/3/2024
2.1.408 118 9/3/2024
2.1.407 113 9/3/2024
2.1.406 4,016 9/3/2024
2.1.405 160 9/3/2024
2.1.404 2,488 9/3/2024
2.1.403 5,290 8/29/2024
2.1.402 2,553 8/29/2024
2.1.401 2,892 8/26/2024
2.1.400 118 8/26/2024
2.1.399 4,945 8/21/2024
2.1.398 617 8/21/2024
2.1.397 145 8/21/2024
2.1.396 2,559 8/21/2024
2.1.395 154 8/20/2024
2.1.394 151 8/20/2024
2.1.393 486 8/20/2024
2.1.392 2,965 8/20/2024
2.1.391 428 8/20/2024
2.1.390 126 8/20/2024
2.1.389 2,657 8/20/2024
2.1.388 131 8/20/2024
2.1.387 1,212 8/20/2024
2.1.386 2,903 8/19/2024
2.1.385 4,779 8/15/2024
2.1.384 2,119 8/15/2024
2.1.383 4,817 8/14/2024
2.1.382 162 8/13/2024
2.1.381 5,702 8/7/2024
2.1.380 283 8/6/2024
2.1.379 2,692 8/6/2024
2.1.378 4,933 8/1/2024
2.1.377 343 8/1/2024
2.1.376 109 8/1/2024
2.1.374 1,145 8/1/2024
2.1.373 5,802 7/25/2024
2.1.372 103 7/25/2024
2.1.371 734 7/25/2024
2.1.370 318 7/25/2024
2.1.369 366 7/25/2024
2.1.368 189 7/25/2024
2.1.367 393 7/24/2024
2.1.366 161 7/24/2024
2.1.365 214 7/24/2024
2.1.364 323 7/24/2024
2.1.363 8,525 7/20/2024
2.1.362 1,461 7/20/2024
2.1.361 5,020 7/14/2024
2.1.360 1,556 7/14/2024
2.1.359 110 7/14/2024
2.1.358 1,504 7/14/2024
2.1.357 4,326 7/10/2024
2.1.355 803 7/10/2024
2.1.354 1,192 7/10/2024
2.1.353 127 7/10/2024
2.1.352 1,910 7/10/2024
2.1.351 135 7/10/2024
2.1.350 117 7/10/2024
2.1.349 184 7/10/2024
2.1.348 117 7/10/2024
2.1.347 2,055 7/10/2024
2.1.346 132 7/10/2024
2.1.345 816 7/10/2024
2.1.344 118 7/10/2024
2.1.343 219 7/9/2024
2.1.342 104 7/9/2024
2.1.339 1,980 7/9/2024
2.1.338 495 7/9/2024
2.1.337 4,015 7/9/2024
2.1.336 1,076 7/9/2024
2.1.335 125 7/9/2024
2.1.334 2,589 7/9/2024
2.1.333 121 7/9/2024
2.1.332 8,800 7/9/2024
2.1.331 115 7/9/2024
2.1.330 2,506 7/9/2024
2.1.329 108 7/9/2024
2.1.328 1,071 7/9/2024
2.1.327 717 7/8/2024
2.1.326 969 7/8/2024
2.1.325 132 7/8/2024
2.1.324 131 7/8/2024
2.1.323 4,849 7/8/2024
2.1.322 1,630 7/8/2024
2.1.321 132 7/8/2024
2.1.320 2,283 7/7/2024
2.1.319 133 7/7/2024
2.1.318 144 7/7/2024
2.1.317 127 7/7/2024
2.1.316 1,155 7/7/2024
2.1.315 2,172 7/7/2024
2.1.314 1,868 7/7/2024
2.1.313 228 7/7/2024
2.1.312 3,394 7/5/2024
2.1.311 3,877 7/3/2024
2.1.310 3,042 7/3/2024
2.1.309 397 7/3/2024
2.1.308 3,906 7/2/2024
2.1.307 1,864 6/30/2024
2.1.306 2,251 6/28/2024
2.1.305 5,393 6/22/2024
2.1.304 4,863 6/15/2024
2.1.303 4,087 6/14/2024
2.1.302 5,877 6/1/2024
2.1.301 1,593 6/1/2024
2.1.300 587 6/1/2024
2.1.299 5,812 5/31/2024
2.1.298 3,696 5/29/2024
2.1.297 3,026 5/28/2024
2.1.296 2,461 5/27/2024
2.1.295 4,819 5/26/2024
2.1.294 2,013 5/26/2024
2.1.293 486 5/26/2024
2.1.292 2,499 5/25/2024
2.1.291 1,381 5/25/2024
2.1.290 140 5/25/2024
2.1.289 133 5/25/2024
2.1.288 689 5/25/2024
2.1.287 131 5/25/2024
2.1.286 410 5/25/2024
2.1.285 141 5/25/2024
2.1.284 129 5/25/2024
2.1.283 7,394 5/23/2024
2.1.282 532 5/23/2024
2.1.281 280 5/22/2024
2.1.280 3,631 5/22/2024
2.1.279 126 5/22/2024
2.1.278 140 5/22/2024
2.1.277 143 5/22/2024
2.1.276 2,120 5/22/2024
2.1.275 3,417 5/18/2024
2.1.274 1,893 5/18/2024
2.1.273 1,806 5/17/2024
2.1.272 123 5/17/2024
2.1.271 2,720 5/16/2024
2.1.270 440 5/15/2024
2.1.269 2,741 5/15/2024
2.1.268 4,443 5/12/2024
2.1.267 2,740 5/3/2024
2.1.266 1,147 4/30/2024
2.1.265 1,756 4/29/2024
2.1.264 1,911 4/29/2024
2.1.263 2,645 4/28/2024
2.1.262 1,480 4/28/2024
2.1.261 1,104 4/28/2024
2.1.260 1,751 4/28/2024
2.1.259 908 4/28/2024
2.1.258 123 4/28/2024
2.1.257 4,143 4/27/2024
2.1.256 139 4/27/2024
2.1.255 4,367 4/19/2024
2.1.254 4,064 4/18/2024
2.1.253 3,425 4/12/2024
2.1.252 1,148 4/12/2024
2.1.251 728 4/12/2024
2.1.250 865 4/12/2024
2.1.249 209 4/12/2024
2.1.248 116 4/12/2024
2.1.247 989 4/12/2024
2.1.246 315 4/12/2024
2.1.245 1,651 4/11/2024
2.1.244 3,713 4/10/2024
2.1.243 1,140 4/9/2024
2.1.242 3,158 4/2/2024
2.1.241 908 4/1/2024
2.1.240 2,081 3/29/2024
2.1.239 1,844 3/25/2024
2.1.238 305 3/25/2024
2.1.237 3,305 3/20/2024
2.1.236 2,134 3/19/2024
2.1.235 528 3/19/2024
2.1.234 2,345 3/18/2024
2.1.233 1,403 3/18/2024
2.1.232 1,381 3/15/2024
2.1.231 2,344 3/13/2024
2.1.230 1,105 3/13/2024
2.1.229 664 3/13/2024
2.1.228 770 3/13/2024
2.1.227 144 3/13/2024
2.1.226 542 3/13/2024
2.1.225 152 3/13/2024
2.1.224 155 3/13/2024
2.1.223 1,660 3/12/2024
2.1.222 2,828 3/11/2024
2.1.221 2,473 3/11/2024
2.1.220 1,629 3/10/2024
2.1.219 1,880 3/8/2024
2.1.218 1,064 3/8/2024
2.1.217 1,558 3/8/2024
2.1.216 2,079 3/6/2024
2.1.215 1,998 3/4/2024
2.1.214 1,415 3/4/2024
2.1.213 2,558 3/2/2024
2.1.212 1,218 3/2/2024
2.1.211 413 3/2/2024
2.1.210 360 3/2/2024
2.1.209 479 3/2/2024
2.1.208 3,425 2/29/2024
2.1.207 643 2/29/2024
2.1.206 346 2/29/2024
2.1.205 3,298 2/26/2024
2.1.204 1,487 2/25/2024
2.1.203 2,591 2/23/2024
2.1.202 1,899 2/22/2024
2.1.201 964 2/22/2024
2.1.200 440 2/21/2024
2.1.199 1,190 2/21/2024
2.1.198 303 2/21/2024
2.1.197 771 2/21/2024
2.1.196 136 2/21/2024
2.1.195 1,249 2/21/2024
2.1.194 416 2/21/2024
2.1.193 148 2/21/2024
2.1.192 145 2/21/2024
2.1.191 597 2/21/2024
2.1.190 126 2/21/2024
2.1.189 2,630 2/20/2024
2.1.188 725 2/20/2024
2.1.187 649 2/20/2024
2.1.186 761 2/20/2024
2.1.185 2,117 2/19/2024
2.1.184 1,875 2/17/2024
2.1.183 903 2/16/2024
2.1.182 864 2/16/2024
2.1.181 1,357 2/16/2024
2.1.180 136 2/16/2024
2.1.179 646 2/16/2024
2.1.178 146 2/16/2024
2.1.177 138 2/16/2024
2.1.176 559 2/16/2024
2.1.175 126 2/16/2024
2.1.174 3,292 2/13/2024
2.1.173 1,385 2/13/2024
2.1.172 1,093 2/13/2024
2.1.171 461 2/13/2024
2.1.170 632 2/13/2024
2.1.169 1,939 2/12/2024
2.1.168 514 2/11/2024
2.1.167 1,528 2/11/2024
2.1.166 863 2/11/2024
2.1.165 2,788 2/10/2024
2.1.164 549 2/9/2024
2.1.163 150 2/9/2024
2.1.162 1,563 2/9/2024
2.1.161 1,666 2/9/2024
2.1.160 401 2/8/2024
2.1.159 1,228 2/8/2024
2.1.158 865 2/8/2024
2.1.157 1,472 2/8/2024
2.1.156 135 2/8/2024
2.1.155 1,869 2/7/2024
2.1.154 446 2/7/2024
2.1.153 610 2/7/2024
2.1.152 1,269 2/7/2024
2.1.151 387 2/6/2024
2.1.150 144 2/6/2024
2.1.149 137 2/6/2024
2.1.148 2,774 2/5/2024
2.1.147 1,529 2/4/2024
2.1.146 2,087 2/2/2024
2.1.145 1,913 1/31/2024
2.1.144 2,145 1/29/2024
2.1.143 1,362 1/29/2024
2.1.142 352 1/29/2024
2.1.141 1,490 1/28/2024
2.1.140 464 1/28/2024
2.1.139 314 1/28/2024
2.1.138 553 1/28/2024
2.1.137 1,926 1/28/2024
2.1.136 930 1/28/2024
2.1.135 295 1/27/2024
2.1.134 932 1/27/2024
2.1.133 1,169 1/27/2024
2.1.132 1,182 1/27/2024
2.1.131 160 1/27/2024
2.1.130 702 1/27/2024
2.1.129 1,061 1/26/2024
2.1.128 230 1/26/2024
2.1.127 879 1/26/2024
2.1.126 1,125 1/26/2024
2.1.125 1,632 1/26/2024
2.1.124 891 1/25/2024
2.1.123 1,109 1/25/2024
2.1.122 462 1/25/2024
2.1.121 920 1/25/2024
2.1.120 529 1/25/2024
2.1.119 2,582 1/19/2024
2.1.118 2,221 1/15/2024
2.1.117 509 1/15/2024
2.1.116 1,236 1/15/2024
2.1.115 137 1/15/2024
2.1.114 573 1/15/2024
2.1.113 1,376 1/15/2024
2.1.112 2,548 1/14/2024
2.1.111 1,622 1/13/2024
2.1.110 1,844 1/12/2024
2.1.109 2,047 1/11/2024
2.1.108 2,644 1/7/2024
2.1.107 2,092 1/5/2024
2.1.106 501 1/5/2024
2.1.105 151 1/5/2024
2.1.104 153 1/5/2024
2.1.103 1,493 1/5/2024
2.1.102 154 1/5/2024
2.1.101 2,778 1/1/2024
2.1.100 2,224 12/28/2023
2.1.99 747 12/28/2023
2.1.98 507 12/28/2023
2.1.97 147 12/28/2023
2.1.96 141 12/28/2023
2.1.95 720 12/27/2023
2.1.94 154 12/27/2023
2.1.93 482 12/27/2023
2.1.92 150 12/27/2023
2.1.91 156 12/27/2023
2.1.90 2,229 12/25/2023
2.1.89 361 12/25/2023
2.1.88 789 12/25/2023
2.1.87 153 12/25/2023
2.1.86 645 12/25/2023
2.1.85 148 12/25/2023
2.1.84 584 12/25/2023
2.1.83 146 12/25/2023
2.1.82 1,672 12/24/2023
2.1.81 1,083 12/23/2023
2.1.80 880 12/23/2023
2.1.79 322 12/23/2023
2.1.78 568 12/23/2023
2.1.77 145 12/23/2023
2.1.76 131 12/23/2023
2.1.75 1,094 12/23/2023
2.1.74 134 12/23/2023
2.1.73 1,416 12/19/2023
2.1.72 230 12/19/2023
2.1.71 3,092 12/11/2023
2.1.70 734 12/10/2023
2.1.69 132 12/10/2023
2.1.68 501 12/10/2023
2.1.67 1,425 12/10/2023
2.1.66 382 12/9/2023
2.1.65 381 12/9/2023
2.1.64 301 12/9/2023
2.1.63 148 12/9/2023
2.1.62 277 12/9/2023
2.1.61 211 12/9/2023
2.1.60 143 12/9/2023
2.1.59 1,077 12/9/2023
2.1.58 141 12/9/2023
2.1.57 1,534 12/6/2023
2.1.56 403 12/6/2023
2.1.55 247 12/6/2023
2.1.54 277 12/6/2023
2.1.53 932 12/5/2023
2.1.52 383 12/5/2023
2.1.51 345 12/5/2023
2.1.50 386 12/5/2023
2.1.49 133 12/5/2023
2.1.48 343 12/5/2023
2.1.47 280 12/5/2023
2.1.46 136 12/4/2023
2.1.45 138 12/4/2023
2.1.44 340 12/4/2023
2.1.43 148 12/4/2023
2.1.42 1,021 12/4/2023
2.1.41 117 12/4/2023
2.1.40 1,173 11/27/2023
2.1.39 526 11/26/2023
2.1.38 226 11/26/2023
2.1.37 632 11/23/2023
2.1.36 690 11/23/2023
2.1.35 646 11/23/2023
2.1.34 135 11/23/2023
2.1.33 406 11/23/2023
2.1.32 141 11/23/2023
2.1.31 1,084 11/20/2023
2.1.30 1,060 11/20/2023
2.1.29 810 11/19/2023
2.1.28 266 11/19/2023
2.1.27 460 11/19/2023
2.1.26 509 11/19/2023
2.1.25 504 11/19/2023
2.1.24 126 11/19/2023
2.1.23 223 11/18/2023
2.1.22 986 11/18/2023
2.1.21 381 11/18/2023
2.1.20 536 11/18/2023
2.1.19 139 11/18/2023
2.1.18 309 11/18/2023
2.1.17 131 11/18/2023
2.1.16 605 11/17/2023
2.1.15 522 11/17/2023
2.1.14 132 11/17/2023
2.1.13 425 11/17/2023
2.1.12 306 11/17/2023
2.1.11 501 11/17/2023
2.1.10 131 11/17/2023
2.1.9 511 11/17/2023
2.1.8 136 11/17/2023
2.1.7 154 11/17/2023
2.1.6 341 11/17/2023
2.1.5 377 11/16/2023
2.0.101 2,080 11/15/2023
2.0.100 127 11/15/2023
2.0.99 139 11/15/2023
2.0.4 132 11/16/2023
2.0.3 139 11/16/2023
2.0.2 134 11/16/2023
2.0.1 130 11/16/2023
1.0.98 616 11/14/2023
1.0.97 752 11/13/2023
1.0.96 120 11/13/2023
1.0.95 575 11/10/2023
1.0.94 129 11/10/2023
1.0.93 942 11/9/2023
1.0.92 129 11/9/2023
1.0.91 1,047 11/7/2023
1.0.90 124 11/7/2023
1.0.89 513 11/6/2023
1.0.88 136 11/6/2023
1.0.87 600 11/3/2023
1.0.86 138 11/3/2023
1.0.85 892 11/2/2023
1.0.84 126 11/2/2023
1.0.83 606 11/1/2023
1.0.82 1,460 10/26/2023
1.0.81 1,303 10/19/2023
1.0.80 146 10/19/2023
1.0.79 785 10/18/2023
1.0.78 164 10/18/2023
1.0.77 734 10/17/2023
1.0.76 153 10/17/2023
1.0.75 665 10/16/2023
1.0.74 156 10/16/2023
1.0.73 705 10/13/2023
1.0.72 342 10/12/2023
1.0.71 1,742 9/20/2023
1.0.70 683 9/19/2023
1.0.69 684 9/18/2023
1.0.68 148 9/18/2023
1.0.67 898 9/14/2023
1.0.66 1,505 8/31/2023
1.0.65 154 8/31/2023
1.0.64 812 8/30/2023
1.0.63 160 8/30/2023
1.0.62 170 8/30/2023
1.0.61 841 8/28/2023
1.0.60 696 8/25/2023
1.0.59 154 8/25/2023
1.0.58 498 8/24/2023
1.0.57 1,456 8/21/2023
1.0.56 831 8/18/2023
1.0.55 753 8/17/2023
1.0.54 163 8/17/2023
1.0.53 1,900 8/10/2023
1.0.52 568 8/9/2023
1.0.51 679 8/8/2023
1.0.50 662 8/7/2023
1.0.49 185 8/7/2023
1.0.48 2,468 7/13/2023
1.0.47 895 7/11/2023
1.0.46 727 7/10/2023
1.0.45 698 7/7/2023
1.0.44 178 7/7/2023
1.0.43 2,113 6/30/2023
1.0.42 1,067 6/29/2023
1.0.41 604 6/28/2023
1.0.40 1,543 6/26/2023
1.0.39 793 6/23/2023
1.0.38 1,091 6/21/2023
1.0.37 1,455 6/15/2023
1.0.36 487 6/14/2023
1.0.35 1,804 6/9/2023
1.0.34 831 6/8/2023
1.0.33 1,631 6/7/2023
1.0.32 182 6/7/2023
1.0.31 1,226 6/6/2023
1.0.30 1,187 6/5/2023
1.0.29 1,372 6/2/2023
1.0.28 169 6/2/2023
1.0.27 1,254 6/1/2023
1.0.26 613 5/31/2023
1.0.25 494 5/31/2023
1.0.24 177 5/31/2023
1.0.23 1,475 5/30/2023
1.0.22 1,535 5/26/2023
1.0.21 689 5/25/2023
1.0.20 162 5/25/2023
1.0.19 844 5/24/2023
1.0.18 173 5/24/2023
1.0.17 463 5/23/2023
1.0.13 1,479 5/22/2023
1.0.12 1,200 5/18/2023
1.0.11 605 5/17/2023
1.0.10 1,564 5/1/2023
1.0.9 1,036 4/25/2023
1.0.8 493 4/24/2023
1.0.7 1,010 4/21/2023
1.0.6 1,968 4/13/2023
1.0.5 613 4/12/2023
1.0.4 1,033 4/8/2023
1.0.3 203 4/8/2023
1.0.2 605 4/8/2023
1.0.1 206 4/8/2023