Soenneker.Utils.SingletonDictionary 3.0.1074

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.1074
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1074
                    
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.1074" />
                    
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.1074" />
                    
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.1074
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1074"
                    
#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.1074
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1074
                    
Install Soenneker.Utils.SingletonDictionary 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.1091 10,345 6/10/2025
3.0.1090 17,074 5/27/2025
3.0.1089 878 5/27/2025
3.0.1088 950 5/27/2025
3.0.1087 2,275 5/27/2025
3.0.1086 13,771 5/23/2025
3.0.1085 1,243 5/23/2025
3.0.1084 1,200 5/23/2025
3.0.1083 1,220 5/23/2025
3.0.1082 242 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,970 5/14/2025
3.0.1076 8,972 5/8/2025
3.0.1075 278 5/8/2025
3.0.1074 576 5/8/2025
3.0.1073 1,086 5/7/2025
3.0.1072 12,962 5/5/2025
3.0.1071 854 5/5/2025
3.0.1070 1,548 5/5/2025
3.0.1069 715 5/5/2025
3.0.1068 228 5/5/2025
3.0.1067 140 5/5/2025
3.0.1066 18,053 4/9/2025
3.0.1065 266 4/9/2025
3.0.1064 1,061 4/8/2025
3.0.1063 2,195 4/8/2025
3.0.1062 3,009 4/8/2025
3.0.1061 196 4/8/2025
3.0.1060 167 4/8/2025
3.0.1059 193 4/8/2025
3.0.1058 156 4/8/2025
3.0.1057 862 4/8/2025
3.0.1056 286 4/8/2025
3.0.1055 6,399 4/8/2025
3.0.1054 656 4/8/2025
3.0.1053 3,279 4/7/2025
3.0.1052 713 4/7/2025
3.0.1051 165 4/7/2025
3.0.1050 595 4/7/2025
3.0.1049 166 4/7/2025
3.0.1048 6,774 4/7/2025
3.0.1047 171 4/7/2025
3.0.1046 9,329 4/7/2025
3.0.1045 162 4/7/2025
3.0.1044 1,378 4/7/2025
3.0.1043 163 4/7/2025
3.0.1042 1,623 4/7/2025
3.0.1041 935 4/6/2025
3.0.1040 292 4/6/2025
3.0.1039 165 4/6/2025
3.0.1038 1,061 4/6/2025
3.0.1037 163 4/6/2025
3.0.1036 402 4/6/2025
3.0.1035 1,184 4/6/2025
3.0.1034 145 4/6/2025
3.0.1033 2,052 4/6/2025
3.0.1032 106 4/6/2025
3.0.1031 155 4/6/2025
3.0.1030 116 4/6/2025
3.0.1029 1,608 4/5/2025
3.0.1028 178 4/5/2025
3.0.1027 1,153 4/5/2025
3.0.1026 1,210 4/5/2025
3.0.1025 1,051 4/5/2025
3.0.1024 639 4/5/2025
3.0.1023 543 4/5/2025
3.0.1022 114 4/5/2025
3.0.1021 1,275 4/4/2025
3.0.1020 6,957 4/4/2025
3.0.1019 23,319 4/4/2025
3.0.1018 6,635 4/1/2025
3.0.1017 2,614 4/1/2025
3.0.1016 162 4/1/2025
3.0.1015 5,386 4/1/2025
3.0.1014 2,334 3/31/2025
3.0.1013 367 3/31/2025
3.0.1012 3,892 3/31/2025
3.0.1011 6,716 3/29/2025
3.0.1010 1,053 3/29/2025
3.0.1009 1,395 3/29/2025
3.0.1008 100 3/29/2025
3.0.1007 4,300 3/27/2025
3.0.1006 3,823 3/25/2025
3.0.1005 595 3/25/2025
3.0.1004 3,078 3/25/2025
3.0.1003 6,017 3/21/2025
3.0.1002 2,532 3/21/2025
3.0.1001 7,274 3/18/2025
3.0.1000 3,374 3/18/2025
3.0.999 6,316 3/15/2025
3.0.998 1,763 3/15/2025
3.0.997 72 3/15/2025
3.0.996 6,024 3/12/2025
3.0.995 2,144 3/12/2025
3.0.994 168 3/12/2025
3.0.993 388 3/12/2025
3.0.992 153 3/12/2025
3.0.991 2,679 3/11/2025
3.0.990 162 3/11/2025
3.0.989 1,263 3/11/2025
3.0.988 167 3/11/2025
3.0.987 2,548 3/11/2025
3.0.986 169 3/11/2025
3.0.985 2,634 3/11/2025
3.0.984 157 3/11/2025
3.0.983 1,610 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,137 3/2/2025
3.0.978 1,030 3/2/2025
3.0.977 639 3/2/2025
3.0.976 110 3/2/2025
3.0.975 4,299 3/2/2025
3.0.974 104 3/2/2025
3.0.973 3,159 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 98 3/1/2025
3.0.968 399 3/1/2025
3.0.967 97 3/1/2025
3.0.966 5,780 3/1/2025
3.0.965 4,749 2/26/2025
3.0.964 813 2/26/2025
3.0.963 2,310 2/25/2025
3.0.962 92 2/25/2025
3.0.961 840 2/25/2025
3.0.960 93 2/25/2025
3.0.959 121 2/25/2025
3.0.958 1,820 2/25/2025
3.0.957 4,810 2/24/2025
3.0.956 4,456 2/23/2025
3.0.955 1,072 2/22/2025
3.0.954 98 2/22/2025
3.0.953 7,526 2/22/2025
3.0.952 2,182 2/22/2025
3.0.951 1,040 2/22/2025
3.0.950 758 2/22/2025
3.0.949 138 2/22/2025
3.0.948 111 2/22/2025
3.0.947 98 2/22/2025
3.0.946 4,602 2/21/2025
3.0.945 99 2/21/2025
3.0.944 5,470 2/21/2025
3.0.943 4,523 2/19/2025
3.0.942 1,603 2/19/2025
3.0.941 714 2/19/2025
3.0.940 102 2/19/2025
3.0.939 396 2/18/2025
3.0.938 104 2/18/2025
3.0.937 5,430 2/18/2025
3.0.936 101 2/18/2025
3.0.935 2,795 2/18/2025
3.0.934 6,608 2/16/2025
3.0.933 1,517 2/14/2025
3.0.932 802 2/14/2025
3.0.931 701 2/13/2025
3.0.930 2,366 2/13/2025
3.0.929 273 2/13/2025
3.0.928 3,663 2/13/2025
3.0.927 3,781 2/12/2025
3.0.926 1,449 2/12/2025
3.0.925 145 2/12/2025
3.0.924 102 2/12/2025
3.0.923 1,993 2/12/2025
3.0.922 341 2/12/2025
3.0.921 114 2/12/2025
3.0.920 181 2/12/2025
3.0.919 184 2/12/2025
3.0.918 108 2/12/2025
3.0.917 162 2/11/2025
3.0.916 3,372 2/11/2025
3.0.915 3,649 2/11/2025
3.0.914 2,167 2/11/2025
3.0.913 114 2/11/2025
3.0.912 391 2/11/2025
3.0.911 1,714 2/10/2025
3.0.910 112 2/10/2025
3.0.909 776 2/10/2025
3.0.908 111 2/10/2025
3.0.907 6,293 2/10/2025
3.0.906 110 2/10/2025
3.0.905 1,152 2/9/2025
3.0.904 5,586 2/9/2025
3.0.903 104 2/9/2025
3.0.902 7,090 2/8/2025
3.0.901 112 2/8/2025
3.0.900 1,669 2/7/2025
3.0.899 100 2/7/2025
3.0.898 1,571 2/7/2025
3.0.897 109 2/7/2025
3.0.896 632 2/7/2025
3.0.895 410 2/7/2025
3.0.894 115 2/7/2025
3.0.893 323 2/7/2025
3.0.892 101 2/7/2025
3.0.891 1,025 2/7/2025
3.0.890 101 2/7/2025
3.0.889 111 2/7/2025
3.0.888 10,550 2/7/2025
3.0.887 6,154 2/5/2025
3.0.886 594 2/5/2025
3.0.885 885 2/5/2025
3.0.884 283 2/5/2025
3.0.883 976 2/5/2025
3.0.882 649 2/5/2025
3.0.881 2,903 2/5/2025
3.0.880 108 2/5/2025
3.0.879 10,720 1/28/2025
3.0.878 631 1/28/2025
3.0.877 1,728 1/28/2025
3.0.876 218 1/28/2025
3.0.875 3,637 1/28/2025
3.0.874 619 1/27/2025
3.0.873 90 1/27/2025
3.0.872 179 1/27/2025
3.0.871 262 1/27/2025
3.0.870 94 1/27/2025
3.0.869 4,690 1/27/2025
3.0.868 4,351 1/26/2025
3.0.867 917 1/26/2025
3.0.866 173 1/26/2025
3.0.865 998 1/26/2025
3.0.864 1,303 1/25/2025
3.0.863 100 1/25/2025
3.0.862 5,504 1/25/2025
3.0.861 945 1/25/2025
3.0.860 290 1/25/2025
3.0.859 99 1/25/2025
3.0.858 1,781 1/25/2025
3.0.857 1,247 1/25/2025
3.0.856 6,371 1/24/2025
3.0.855 1,461 1/24/2025
3.0.854 88 1/24/2025
3.0.853 1,903 1/24/2025
3.0.852 310 1/24/2025
3.0.851 202 1/24/2025
3.0.850 2,997 1/24/2025
3.0.849 96 1/24/2025
3.0.848 475 1/23/2025
3.0.847 99 1/23/2025
3.0.846 554 1/23/2025
3.0.845 93 1/23/2025
3.0.844 7,546 1/22/2025
3.0.843 960 1/21/2025
3.0.842 938 1/21/2025
3.0.841 554 1/21/2025
3.0.840 97 1/21/2025
3.0.839 579 1/21/2025
3.0.838 718 1/21/2025
3.0.837 5,213 1/21/2025
3.0.836 524 1/21/2025
3.0.835 983 1/21/2025
3.0.834 106 1/21/2025
3.0.833 780 1/21/2025
3.0.832 96 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,679 1/20/2025
3.0.827 227 1/20/2025
3.0.826 1,957 1/20/2025
3.0.825 98 1/20/2025
3.0.824 1,041 1/20/2025
3.0.823 97 1/20/2025
3.0.822 110 1/20/2025
3.0.821 95 1/20/2025
3.0.820 343 1/20/2025
3.0.819 98 1/20/2025
3.0.818 97 1/20/2025
3.0.817 5,376 1/19/2025
3.0.816 103 1/19/2025
3.0.815 4,977 1/19/2025
3.0.814 1,543 1/19/2025
3.0.813 113 1/19/2025
3.0.812 367 1/19/2025
3.0.811 91 1/19/2025
3.0.810 1,800 1/19/2025
3.0.809 92 1/19/2025
3.0.808 3,092 1/18/2025
3.0.807 97 1/18/2025
3.0.806 6,873 1/17/2025
3.0.805 107 1/17/2025
3.0.804 575 1/17/2025
3.0.803 893 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,152 1/16/2025
3.0.797 986 1/16/2025
3.0.796 89 1/16/2025
3.0.795 4,377 1/15/2025
3.0.794 89 1/15/2025
3.0.793 2,692 1/15/2025
3.0.792 92 1/15/2025
3.0.791 134 1/15/2025
3.0.790 3,172 1/15/2025
3.0.789 82 1/15/2025
3.0.788 2,662 1/15/2025
3.0.787 67 1/15/2025
3.0.786 427 1/15/2025
3.0.785 65 1/15/2025
3.0.784 1,543 1/15/2025
3.0.783 68 1/15/2025
3.0.782 208 1/14/2025
3.0.781 80 1/14/2025
3.0.780 87 1/14/2025
3.0.779 2,942 1/14/2025
3.0.778 512 1/14/2025
3.0.777 83 1/14/2025
3.0.776 1,175 1/14/2025
3.0.775 84 1/14/2025
3.0.774 4,959 1/13/2025
3.0.773 1,528 1/13/2025
3.0.772 1,293 1/13/2025
3.0.771 86 1/13/2025
3.0.770 4,830 1/11/2025
3.0.769 1,945 1/11/2025
3.0.768 117 1/11/2025
3.0.767 2,057 1/11/2025
3.0.766 100 1/11/2025
3.0.765 1,659 1/10/2025
3.0.764 1,798 1/10/2025
3.0.763 101 1/10/2025
3.0.762 755 1/10/2025
3.0.761 100 1/10/2025
3.0.760 95 1/10/2025
3.0.759 6,243 1/3/2025
3.0.758 461 1/3/2025
3.0.757 977 1/3/2025
3.0.756 125 1/3/2025
3.0.755 1,413 1/3/2025
3.0.754 106 1/3/2025
3.0.753 1,052 1/3/2025
3.0.752 1,016 1/2/2025
3.0.751 105 1/2/2025
3.0.750 1,699 1/2/2025
3.0.749 119 1/2/2025
3.0.748 2,825 1/2/2025
3.0.747 104 1/2/2025
3.0.746 109 1/2/2025
3.0.745 4,649 1/1/2025
3.0.744 994 1/1/2025
3.0.743 271 1/1/2025
3.0.742 119 1/1/2025
3.0.741 1,461 1/1/2025
3.0.740 111 1/1/2025
3.0.739 117 1/1/2025
3.0.738 118 1/1/2025
3.0.737 316 12/31/2024
3.0.736 118 12/31/2024
3.0.735 125 12/31/2024
3.0.734 612 12/31/2024
3.0.733 127 12/31/2024
3.0.732 4,549 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,570 12/31/2024
3.0.727 333 12/31/2024
3.0.726 106 12/31/2024
3.0.725 1,319 12/31/2024
3.0.724 107 12/31/2024
3.0.723 8,856 12/28/2024
3.0.722 1,122 12/28/2024
3.0.721 1,221 12/27/2024
3.0.720 114 12/27/2024
3.0.719 2,680 12/27/2024
3.0.718 4,885 12/24/2024
3.0.717 1,243 12/24/2024
3.0.716 937 12/24/2024
3.0.715 803 12/24/2024
3.0.714 1,375 12/24/2024
3.0.713 95 12/24/2024
3.0.712 2,249 12/24/2024
3.0.711 642 12/24/2024
3.0.710 102 12/24/2024
3.0.709 457 12/24/2024
3.0.708 971 12/24/2024
3.0.707 253 12/24/2024
3.0.706 126 12/24/2024
3.0.705 1,049 12/24/2024
3.0.704 103 12/24/2024
3.0.703 1,785 12/23/2024
3.0.702 2,746 12/23/2024
3.0.701 107 12/23/2024
3.0.700 668 12/23/2024
3.0.699 103 12/23/2024
3.0.698 1,831 12/23/2024
3.0.697 103 12/23/2024
3.0.696 1,446 12/23/2024
3.0.695 112 12/23/2024
3.0.694 440 12/22/2024
3.0.693 1,390 12/22/2024
3.0.692 3,992 12/22/2024
3.0.691 110 12/22/2024
3.0.690 1,551 12/22/2024
3.0.689 159 12/22/2024
3.0.688 468 12/22/2024
3.0.687 100 12/22/2024
3.0.686 262 12/22/2024
3.0.685 104 12/22/2024
3.0.684 6,758 12/22/2024
3.0.683 100 12/22/2024
3.0.682 1,065 12/21/2024
3.0.681 267 12/21/2024
3.0.680 106 12/21/2024
3.0.679 488 12/21/2024
3.0.678 771 12/21/2024
3.0.677 101 12/21/2024
3.0.676 3,774 12/21/2024
3.0.675 385 12/21/2024
3.0.674 101 12/21/2024
3.0.673 2,530 12/21/2024
3.0.672 680 12/21/2024
3.0.671 107 12/21/2024
3.0.670 1,577 12/20/2024
3.0.669 115 12/20/2024
3.0.668 104 12/20/2024
3.0.667 3,689 12/20/2024
3.0.666 1,138 12/20/2024
3.0.665 219 12/20/2024
3.0.664 3,445 12/19/2024
3.0.663 424 12/19/2024
3.0.662 2,015 12/18/2024
3.0.661 107 12/18/2024
3.0.660 6,577 12/17/2024
3.0.659 212 12/17/2024
3.0.658 689 12/16/2024
3.0.657 113 12/16/2024
3.0.656 140 12/16/2024
3.0.655 99 12/16/2024
3.0.654 6,474 12/10/2024
3.0.653 998 12/10/2024
3.0.652 382 12/9/2024
3.0.651 104 12/9/2024
3.0.650 2,668 12/9/2024
3.0.649 1,368 12/9/2024
3.0.648 100 12/9/2024
3.0.647 3,625 12/9/2024
3.0.646 2,731 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,876 12/6/2024
3.0.640 2,444 12/6/2024
3.0.639 5,274 12/6/2024
3.0.637 374 12/6/2024
3.0.636 2,522 12/5/2024
3.0.635 3,566 12/5/2024
3.0.634 3,170 12/5/2024
3.0.633 105 12/5/2024
3.0.632 1,741 12/5/2024
3.0.631 1,031 12/5/2024
3.0.630 109 12/5/2024
3.0.629 379 12/5/2024
3.0.628 103 12/5/2024
3.0.627 149 12/5/2024
3.0.626 104 12/5/2024
3.0.625 3,358 12/4/2024
3.0.624 102 12/4/2024
3.0.623 115 12/4/2024
3.0.622 111 12/4/2024
3.0.621 1,714 12/4/2024
3.0.620 300 12/4/2024
3.0.619 412 12/4/2024
3.0.618 3,368 12/3/2024
3.0.617 110 12/3/2024
3.0.616 1,123 12/3/2024
3.0.615 441 12/3/2024
3.0.614 118 12/3/2024
3.0.613 119 12/3/2024
3.0.612 4,033 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,622 12/2/2024
3.0.605 276 12/2/2024
3.0.604 110 12/2/2024
3.0.603 399 12/2/2024
3.0.602 3,450 12/1/2024
3.0.601 110 12/1/2024
3.0.600 1,883 12/1/2024
3.0.599 198 12/1/2024
3.0.598 3,456 12/1/2024
3.0.597 114 12/1/2024
3.0.596 3,564 11/29/2024
3.0.595 1,050 11/29/2024
3.0.594 5,763 11/21/2024
3.0.593 297 11/21/2024
3.0.592 4,522 11/20/2024
3.0.591 342 11/20/2024
3.0.590 113 11/20/2024
3.0.589 113 11/20/2024
3.0.588 424 11/20/2024
3.0.587 156 11/20/2024
3.0.586 101 11/20/2024
3.0.585 2,028 11/20/2024
3.0.584 2,757 11/19/2024
3.0.583 102 11/19/2024
3.0.582 639 11/19/2024
3.0.581 102 11/19/2024
3.0.580 2,676 11/19/2024
3.0.579 99 11/19/2024
3.0.578 1,315 11/19/2024
3.0.577 110 11/19/2024
3.0.576 8,518 11/14/2024
3.0.575 137 11/14/2024
3.0.574 510 11/14/2024
3.0.573 2,377 11/14/2024
3.0.572 723 11/14/2024
3.0.571 117 11/14/2024
3.0.570 115 11/14/2024
3.0.569 4,149 11/14/2024
3.0.568 115 11/14/2024
3.0.567 111 11/14/2024
3.0.566 3,488 11/14/2024
3.0.565 111 11/14/2024
3.0.564 110 11/14/2024
3.0.563 110 11/14/2024
2.1.562 8,470 11/13/2024
2.1.561 1,377 11/13/2024
2.1.560 3,059 11/13/2024
2.1.559 116 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 364 11/9/2024
2.1.554 112 11/9/2024
2.1.553 1,736 11/9/2024
2.1.552 108 11/9/2024
2.1.551 962 11/8/2024
2.1.550 112 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 106 11/8/2024
2.1.544 5,465 11/8/2024
2.1.543 105 11/8/2024
2.1.542 11,656 11/1/2024
2.1.541 462 11/1/2024
2.1.540 6,780 10/29/2024
2.1.539 741 10/29/2024
2.1.538 2,837 10/29/2024
2.1.537 629 10/29/2024
2.1.536 5,563 10/28/2024
2.1.535 1,857 10/28/2024
2.1.534 4,012 10/26/2024
2.1.533 705 10/26/2024
2.1.532 9,299 10/22/2024
2.1.531 255 10/22/2024
2.1.530 550 10/22/2024
2.1.529 882 10/22/2024
2.1.528 100 10/22/2024
2.1.527 495 10/22/2024
2.1.526 6,504 10/18/2024
2.1.525 1,090 10/17/2024
2.1.524 4,155 10/15/2024
2.1.523 1,599 10/15/2024
2.1.522 102 10/14/2024
2.1.521 5,130 10/12/2024
2.1.520 652 10/11/2024
2.1.519 105 10/11/2024
2.1.518 478 10/11/2024
2.1.517 2,939 10/11/2024
2.1.516 6,408 10/9/2024
2.1.515 383 10/9/2024
2.1.514 102 10/9/2024
2.1.513 1,979 10/8/2024
2.1.512 151 10/8/2024
2.1.511 2,224 10/8/2024
2.1.510 148 10/8/2024
2.1.509 100 10/8/2024
2.1.508 3,941 10/8/2024
2.1.507 6,227 10/3/2024
2.1.506 108 10/3/2024
2.1.505 1,104 10/3/2024
2.1.504 1,928 10/3/2024
2.1.503 1,420 10/3/2024
2.1.502 5,729 10/2/2024
2.1.501 105 10/2/2024
2.1.500 1,818 10/2/2024
2.1.499 1,007 10/2/2024
2.1.498 4,176 10/1/2024
2.1.497 709 10/1/2024
2.1.496 118 10/1/2024
2.1.495 2,624 10/1/2024
2.1.494 110 10/1/2024
2.1.493 150 10/1/2024
2.1.492 5,432 9/29/2024
2.1.491 1,385 9/29/2024
2.1.490 109 9/29/2024
2.1.489 1,224 9/29/2024
2.1.488 114 9/29/2024
2.1.487 2,516 9/29/2024
2.1.486 5,232 9/27/2024
2.1.485 780 9/27/2024
2.1.484 3,133 9/27/2024
2.1.483 119 9/27/2024
2.1.482 449 9/27/2024
2.1.481 2,158 9/27/2024
2.1.480 3,166 9/26/2024
2.1.479 3,484 9/26/2024
2.1.478 2,356 9/26/2024
2.1.477 2,167 9/26/2024
2.1.476 3,807 9/26/2024
2.1.475 109 9/26/2024
2.1.474 5,608 9/23/2024
2.1.473 1,296 9/23/2024
2.1.472 953 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 111 9/23/2024
2.1.465 723 9/23/2024
2.1.464 121 9/23/2024
2.1.463 104 9/23/2024
2.1.462 891 9/23/2024
2.1.461 9,246 9/18/2024
2.1.460 257 9/17/2024
2.1.459 1,207 9/17/2024
2.1.458 1,716 9/17/2024
2.1.457 111 9/17/2024
2.1.456 1,806 9/17/2024
2.1.455 465 9/17/2024
2.1.454 3,285 9/17/2024
2.1.453 560 9/17/2024
2.1.452 204 9/17/2024
2.1.451 2,658 9/17/2024
2.1.450 7,456 9/16/2024
2.1.449 721 9/16/2024
2.1.448 5,035 9/12/2024
2.1.447 2,923 9/12/2024
2.1.446 1,319 9/11/2024
2.1.445 1,537 9/11/2024
2.1.443 3,720 9/11/2024
2.1.442 1,005 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,014 9/9/2024
2.1.430 1,553 9/9/2024
2.1.428 147 9/9/2024
2.1.427 471 9/9/2024
2.1.426 13,251 9/7/2024
2.1.425 138 9/7/2024
2.1.424 5,014 9/6/2024
2.1.423 378 9/6/2024
2.1.422 2,213 9/6/2024
2.1.421 126 9/5/2024
2.1.420 135 9/5/2024
2.1.419 2,394 9/5/2024
2.1.418 1,159 9/5/2024
2.1.417 136 9/5/2024
2.1.416 1,153 9/5/2024
2.1.415 444 9/5/2024
2.1.414 130 9/5/2024
2.1.413 5,044 9/5/2024
2.1.412 206 9/5/2024
2.1.411 133 9/5/2024
2.1.410 2,270 9/4/2024
2.1.409 8,015 9/3/2024
2.1.408 116 9/3/2024
2.1.407 112 9/3/2024
2.1.406 4,016 9/3/2024
2.1.405 160 9/3/2024
2.1.404 2,487 9/3/2024
2.1.403 5,288 8/29/2024
2.1.402 2,553 8/29/2024
2.1.401 2,892 8/26/2024
2.1.400 117 8/26/2024
2.1.399 4,945 8/21/2024
2.1.398 617 8/21/2024
2.1.397 140 8/21/2024
2.1.396 2,558 8/21/2024
2.1.395 154 8/20/2024
2.1.394 149 8/20/2024
2.1.393 485 8/20/2024
2.1.392 2,965 8/20/2024
2.1.391 427 8/20/2024
2.1.390 125 8/20/2024
2.1.389 2,657 8/20/2024
2.1.388 128 8/20/2024
2.1.387 1,212 8/20/2024
2.1.386 2,903 8/19/2024
2.1.385 4,778 8/15/2024
2.1.384 2,119 8/15/2024
2.1.383 4,816 8/14/2024
2.1.382 162 8/13/2024
2.1.381 5,699 8/7/2024
2.1.380 282 8/6/2024
2.1.379 2,692 8/6/2024
2.1.378 4,933 8/1/2024
2.1.377 342 8/1/2024
2.1.376 109 8/1/2024
2.1.374 1,143 8/1/2024
2.1.373 5,801 7/25/2024
2.1.372 103 7/25/2024
2.1.371 734 7/25/2024
2.1.370 317 7/25/2024
2.1.369 365 7/25/2024
2.1.368 189 7/25/2024
2.1.367 392 7/24/2024
2.1.366 154 7/24/2024
2.1.365 213 7/24/2024
2.1.364 321 7/24/2024
2.1.363 8,524 7/20/2024
2.1.362 1,459 7/20/2024
2.1.361 5,018 7/14/2024
2.1.360 1,555 7/14/2024
2.1.359 110 7/14/2024
2.1.358 1,504 7/14/2024
2.1.357 4,324 7/10/2024
2.1.355 803 7/10/2024
2.1.354 1,189 7/10/2024
2.1.353 127 7/10/2024
2.1.352 1,910 7/10/2024
2.1.351 134 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,053 7/10/2024
2.1.346 132 7/10/2024
2.1.345 816 7/10/2024
2.1.344 117 7/10/2024
2.1.343 218 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,014 7/9/2024
2.1.336 1,075 7/9/2024
2.1.335 125 7/9/2024
2.1.334 2,587 7/9/2024
2.1.333 121 7/9/2024
2.1.332 8,795 7/9/2024
2.1.331 113 7/9/2024
2.1.330 2,506 7/9/2024
2.1.329 106 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 131 7/8/2024
2.1.324 130 7/8/2024
2.1.323 4,849 7/8/2024
2.1.322 1,629 7/8/2024
2.1.321 132 7/8/2024
2.1.320 2,282 7/7/2024
2.1.319 133 7/7/2024
2.1.318 141 7/7/2024
2.1.317 123 7/7/2024
2.1.316 1,155 7/7/2024
2.1.315 2,171 7/7/2024
2.1.314 1,867 7/7/2024
2.1.313 226 7/7/2024
2.1.312 3,392 7/5/2024
2.1.311 3,874 7/3/2024
2.1.310 3,038 7/3/2024
2.1.309 395 7/3/2024
2.1.308 3,905 7/2/2024
2.1.307 1,862 6/30/2024
2.1.306 2,250 6/28/2024
2.1.305 5,392 6/22/2024
2.1.304 4,861 6/15/2024
2.1.303 4,085 6/14/2024
2.1.302 5,877 6/1/2024
2.1.301 1,588 6/1/2024
2.1.300 586 6/1/2024
2.1.299 5,811 5/31/2024
2.1.298 3,694 5/29/2024
2.1.297 3,026 5/28/2024
2.1.296 2,461 5/27/2024
2.1.295 4,816 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,380 5/25/2024
2.1.290 139 5/25/2024
2.1.289 131 5/25/2024
2.1.288 688 5/25/2024
2.1.287 130 5/25/2024
2.1.286 409 5/25/2024
2.1.285 141 5/25/2024
2.1.284 129 5/25/2024
2.1.283 7,393 5/23/2024
2.1.282 532 5/23/2024
2.1.281 277 5/22/2024
2.1.280 3,631 5/22/2024
2.1.279 123 5/22/2024
2.1.278 139 5/22/2024
2.1.277 141 5/22/2024
2.1.276 2,119 5/22/2024
2.1.275 3,416 5/18/2024
2.1.274 1,893 5/18/2024
2.1.273 1,805 5/17/2024
2.1.272 122 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,442 5/12/2024
2.1.267 2,739 5/3/2024
2.1.266 1,144 4/30/2024
2.1.265 1,754 4/29/2024
2.1.264 1,909 4/29/2024
2.1.263 2,645 4/28/2024
2.1.262 1,480 4/28/2024
2.1.261 1,103 4/28/2024
2.1.260 1,750 4/28/2024
2.1.259 908 4/28/2024
2.1.258 122 4/28/2024
2.1.257 4,142 4/27/2024
2.1.256 135 4/27/2024
2.1.255 4,365 4/19/2024
2.1.254 4,062 4/18/2024
2.1.253 3,425 4/12/2024
2.1.252 1,146 4/12/2024
2.1.251 728 4/12/2024
2.1.250 865 4/12/2024
2.1.249 206 4/12/2024
2.1.248 116 4/12/2024
2.1.247 988 4/12/2024
2.1.246 313 4/12/2024
2.1.245 1,649 4/11/2024
2.1.244 3,711 4/10/2024
2.1.243 1,139 4/9/2024
2.1.242 3,158 4/2/2024
2.1.241 908 4/1/2024
2.1.240 2,080 3/29/2024
2.1.239 1,840 3/25/2024
2.1.238 304 3/25/2024
2.1.237 3,303 3/20/2024
2.1.236 2,134 3/19/2024
2.1.235 528 3/19/2024
2.1.234 2,341 3/18/2024
2.1.233 1,401 3/18/2024
2.1.232 1,381 3/15/2024
2.1.231 2,344 3/13/2024
2.1.230 1,103 3/13/2024
2.1.229 662 3/13/2024
2.1.228 769 3/13/2024
2.1.227 141 3/13/2024
2.1.226 542 3/13/2024
2.1.225 150 3/13/2024
2.1.224 154 3/13/2024
2.1.223 1,660 3/12/2024
2.1.222 2,828 3/11/2024
2.1.221 2,470 3/11/2024
2.1.220 1,628 3/10/2024
2.1.219 1,879 3/8/2024
2.1.218 1,063 3/8/2024
2.1.217 1,556 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,216 3/2/2024
2.1.211 413 3/2/2024
2.1.210 358 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 344 2/29/2024
2.1.205 3,297 2/26/2024
2.1.204 1,487 2/25/2024
2.1.203 2,589 2/23/2024
2.1.202 1,897 2/22/2024
2.1.201 962 2/22/2024
2.1.200 440 2/21/2024
2.1.199 1,189 2/21/2024
2.1.198 299 2/21/2024
2.1.197 770 2/21/2024
2.1.196 136 2/21/2024
2.1.195 1,248 2/21/2024
2.1.194 413 2/21/2024
2.1.193 147 2/21/2024
2.1.192 145 2/21/2024
2.1.191 597 2/21/2024
2.1.190 125 2/21/2024
2.1.189 2,629 2/20/2024
2.1.188 724 2/20/2024
2.1.187 646 2/20/2024
2.1.186 758 2/20/2024
2.1.185 2,117 2/19/2024
2.1.184 1,875 2/17/2024
2.1.183 900 2/16/2024
2.1.182 862 2/16/2024
2.1.181 1,356 2/16/2024
2.1.180 135 2/16/2024
2.1.179 645 2/16/2024
2.1.178 143 2/16/2024
2.1.177 138 2/16/2024
2.1.176 559 2/16/2024
2.1.175 125 2/16/2024
2.1.174 3,290 2/13/2024
2.1.173 1,385 2/13/2024
2.1.172 1,092 2/13/2024
2.1.171 461 2/13/2024
2.1.170 630 2/13/2024
2.1.169 1,938 2/12/2024
2.1.168 514 2/11/2024
2.1.167 1,526 2/11/2024
2.1.166 863 2/11/2024
2.1.165 2,782 2/10/2024
2.1.164 549 2/9/2024
2.1.163 150 2/9/2024
2.1.162 1,561 2/9/2024
2.1.161 1,665 2/9/2024
2.1.160 398 2/8/2024
2.1.159 1,225 2/8/2024
2.1.158 858 2/8/2024
2.1.157 1,469 2/8/2024
2.1.156 135 2/8/2024
2.1.155 1,867 2/7/2024
2.1.154 446 2/7/2024
2.1.153 608 2/7/2024
2.1.152 1,268 2/7/2024
2.1.151 387 2/6/2024
2.1.150 142 2/6/2024
2.1.149 137 2/6/2024
2.1.148 2,772 2/5/2024
2.1.147 1,528 2/4/2024
2.1.146 2,087 2/2/2024
2.1.145 1,913 1/31/2024
2.1.144 2,144 1/29/2024
2.1.143 1,361 1/29/2024
2.1.142 351 1/29/2024
2.1.141 1,489 1/28/2024
2.1.140 461 1/28/2024
2.1.139 313 1/28/2024
2.1.138 553 1/28/2024
2.1.137 1,924 1/28/2024
2.1.136 930 1/28/2024
2.1.135 294 1/27/2024
2.1.134 932 1/27/2024
2.1.133 1,165 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,059 1/26/2024
2.1.128 228 1/26/2024
2.1.127 877 1/26/2024
2.1.126 1,125 1/26/2024
2.1.125 1,630 1/26/2024
2.1.124 890 1/25/2024
2.1.123 1,108 1/25/2024
2.1.122 462 1/25/2024
2.1.121 919 1/25/2024
2.1.120 528 1/25/2024
2.1.119 2,580 1/19/2024
2.1.118 2,219 1/15/2024
2.1.117 508 1/15/2024
2.1.116 1,235 1/15/2024
2.1.115 137 1/15/2024
2.1.114 572 1/15/2024
2.1.113 1,376 1/15/2024
2.1.112 2,547 1/14/2024
2.1.111 1,621 1/13/2024
2.1.110 1,840 1/12/2024
2.1.109 2,047 1/11/2024
2.1.108 2,644 1/7/2024
2.1.107 2,090 1/5/2024
2.1.106 497 1/5/2024
2.1.105 151 1/5/2024
2.1.104 153 1/5/2024
2.1.103 1,491 1/5/2024
2.1.102 153 1/5/2024
2.1.101 2,776 1/1/2024
2.1.100 2,223 12/28/2023
2.1.99 747 12/28/2023
2.1.98 507 12/28/2023
2.1.97 146 12/28/2023
2.1.96 140 12/28/2023
2.1.95 720 12/27/2023
2.1.94 153 12/27/2023
2.1.93 481 12/27/2023
2.1.92 149 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 787 12/25/2023
2.1.87 152 12/25/2023
2.1.86 645 12/25/2023
2.1.85 144 12/25/2023
2.1.84 581 12/25/2023
2.1.83 146 12/25/2023
2.1.82 1,670 12/24/2023
2.1.81 1,080 12/23/2023
2.1.80 879 12/23/2023
2.1.79 322 12/23/2023
2.1.78 564 12/23/2023
2.1.77 141 12/23/2023
2.1.76 131 12/23/2023
2.1.75 1,094 12/23/2023
2.1.74 133 12/23/2023
2.1.73 1,416 12/19/2023
2.1.72 229 12/19/2023
2.1.71 3,091 12/11/2023
2.1.70 732 12/10/2023
2.1.69 131 12/10/2023
2.1.68 500 12/10/2023
2.1.67 1,424 12/10/2023
2.1.66 382 12/9/2023
2.1.65 379 12/9/2023
2.1.64 301 12/9/2023
2.1.63 147 12/9/2023
2.1.62 276 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 139 12/9/2023
2.1.57 1,532 12/6/2023
2.1.56 402 12/6/2023
2.1.55 246 12/6/2023
2.1.54 276 12/6/2023
2.1.53 932 12/5/2023
2.1.52 382 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 279 12/5/2023
2.1.46 134 12/4/2023
2.1.45 137 12/4/2023
2.1.44 336 12/4/2023
2.1.43 147 12/4/2023
2.1.42 1,016 12/4/2023
2.1.41 116 12/4/2023
2.1.40 1,173 11/27/2023
2.1.39 526 11/26/2023
2.1.38 223 11/26/2023
2.1.37 631 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,059 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 503 11/19/2023
2.1.24 126 11/19/2023
2.1.23 222 11/18/2023
2.1.22 985 11/18/2023
2.1.21 381 11/18/2023
2.1.20 534 11/18/2023
2.1.19 137 11/18/2023
2.1.18 308 11/18/2023
2.1.17 130 11/18/2023
2.1.16 604 11/17/2023
2.1.15 521 11/17/2023
2.1.14 130 11/17/2023
2.1.13 425 11/17/2023
2.1.12 303 11/17/2023
2.1.11 500 11/17/2023
2.1.10 130 11/17/2023
2.1.9 511 11/17/2023
2.1.8 136 11/17/2023
2.1.7 152 11/17/2023
2.1.6 340 11/17/2023
2.1.5 376 11/16/2023
2.0.101 2,078 11/15/2023
2.0.100 126 11/15/2023
2.0.99 137 11/15/2023
2.0.4 132 11/16/2023
2.0.3 139 11/16/2023
2.0.2 132 11/16/2023
2.0.1 127 11/16/2023
1.0.98 614 11/14/2023
1.0.97 752 11/13/2023
1.0.96 120 11/13/2023
1.0.95 573 11/10/2023
1.0.94 125 11/10/2023
1.0.93 940 11/9/2023
1.0.92 129 11/9/2023
1.0.91 1,047 11/7/2023
1.0.90 123 11/7/2023
1.0.89 511 11/6/2023
1.0.88 134 11/6/2023
1.0.87 600 11/3/2023
1.0.86 136 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,459 10/26/2023
1.0.81 1,302 10/19/2023
1.0.80 145 10/19/2023
1.0.79 784 10/18/2023
1.0.78 163 10/18/2023
1.0.77 734 10/17/2023
1.0.76 151 10/17/2023
1.0.75 662 10/16/2023
1.0.74 154 10/16/2023
1.0.73 702 10/13/2023
1.0.72 340 10/12/2023
1.0.71 1,739 9/20/2023
1.0.70 681 9/19/2023
1.0.69 683 9/18/2023
1.0.68 147 9/18/2023
1.0.67 898 9/14/2023
1.0.66 1,505 8/31/2023
1.0.65 153 8/31/2023
1.0.64 810 8/30/2023
1.0.63 160 8/30/2023
1.0.62 167 8/30/2023
1.0.61 840 8/28/2023
1.0.60 696 8/25/2023
1.0.59 153 8/25/2023
1.0.58 494 8/24/2023
1.0.57 1,456 8/21/2023
1.0.56 830 8/18/2023
1.0.55 752 8/17/2023
1.0.54 160 8/17/2023
1.0.53 1,899 8/10/2023
1.0.52 565 8/9/2023
1.0.51 675 8/8/2023
1.0.50 660 8/7/2023
1.0.49 182 8/7/2023
1.0.48 2,463 7/13/2023
1.0.47 891 7/11/2023
1.0.46 725 7/10/2023
1.0.45 696 7/7/2023
1.0.44 176 7/7/2023
1.0.43 2,111 6/30/2023
1.0.42 1,064 6/29/2023
1.0.41 600 6/28/2023
1.0.40 1,537 6/26/2023
1.0.39 788 6/23/2023
1.0.38 1,090 6/21/2023
1.0.37 1,451 6/15/2023
1.0.36 483 6/14/2023
1.0.35 1,802 6/9/2023
1.0.34 830 6/8/2023
1.0.33 1,629 6/7/2023
1.0.32 180 6/7/2023
1.0.31 1,222 6/6/2023
1.0.30 1,183 6/5/2023
1.0.29 1,370 6/2/2023
1.0.28 167 6/2/2023
1.0.27 1,252 6/1/2023
1.0.26 609 5/31/2023
1.0.25 493 5/31/2023
1.0.24 176 5/31/2023
1.0.23 1,472 5/30/2023
1.0.22 1,527 5/26/2023
1.0.21 684 5/25/2023
1.0.20 159 5/25/2023
1.0.19 841 5/24/2023
1.0.18 170 5/24/2023
1.0.17 460 5/23/2023
1.0.13 1,477 5/22/2023
1.0.12 1,198 5/18/2023
1.0.11 603 5/17/2023
1.0.10 1,562 5/1/2023
1.0.9 1,034 4/25/2023
1.0.8 490 4/24/2023
1.0.7 1,007 4/21/2023
1.0.6 1,966 4/13/2023
1.0.5 607 4/12/2023
1.0.4 1,032 4/8/2023
1.0.3 201 4/8/2023
1.0.2 604 4/8/2023
1.0.1 206 4/8/2023