Soenneker.Utils.HttpClientCache 3.0.1212

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.HttpClientCache --version 3.0.1212                
NuGet\Install-Package Soenneker.Utils.HttpClientCache -Version 3.0.1212                
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.HttpClientCache" Version="3.0.1212" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.HttpClientCache --version 3.0.1212                
#r "nuget: Soenneker.Utils.HttpClientCache, 3.0.1212"                
#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.
// Install Soenneker.Utils.HttpClientCache as a Cake Addin
#addin nuget:?package=Soenneker.Utils.HttpClientCache&version=3.0.1212

// Install Soenneker.Utils.HttpClientCache as a Cake Tool
#tool nuget:?package=Soenneker.Utils.HttpClientCache&version=3.0.1212                

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.HttpClientCache

Providing thread-safe singleton HttpClients

Why?

'Long-lived' HttpClient static/singleton instances is the recommended use pattern in .NET. Avoid the unnecessary overhead of IHttpClientFactory, and definitely avoid creating a new HttpClient instance per request.

HttpClientCache provides a thread-safe singleton HttpClient instance per key via dependency injection. HttpClients are created lazily, and disposed on application shutdown (or manually if you want).

See Guidelines for using HttpClient

Installation

dotnet add package Soenneker.Utils.HttpClientCache

Usage

  1. Register IHttpClientCache within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddHttpClientCache();
}
  1. Inject IHttpClientCache via constructor, and retrieve a fresh HttpClient.

Example:

public class TestClass
{
    IHttpClientCache _httpClientCache;

    public TestClass(IHttpClientCache httpClientCache)
    {
        _httpClientCache = httpClientCache;
    }

    public async ValueTask<string> GetGoogleSource()
    {
        HttpClient httpClient = await _httpClientCache.Get(nameof(TestClass));

        var response = await httpClient.GetAsync("https://www.google.com");
        response.EnsureSuccessStatusCode();

        var responseString = await response.Content.ReadAsStringAsync();
        return responseString;
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (25)

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

Package Downloads
Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Validators.Email.Disposable.Online

A validation module checking for disposable email addresses via online sources

Soenneker.Queue.Client

A utility library for Azure Queue (Storage) client accessibility

Soenneker.Blob.Service

A utility library for Azure Blob storage service client operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1240 0 1/2/2025
3.0.1239 327 1/1/2025
3.0.1238 163 1/1/2025
3.0.1237 240 1/1/2025
3.0.1236 42 1/1/2025
3.0.1235 412 1/1/2025
3.0.1234 41 1/1/2025
3.0.1233 805 1/1/2025
3.0.1232 44 1/1/2025
3.0.1231 286 12/31/2024
3.0.1230 44 12/31/2024
3.0.1229 593 12/31/2024
3.0.1228 327 12/31/2024
3.0.1227 312 12/31/2024
3.0.1226 506 12/31/2024
3.0.1225 1,471 12/31/2024
3.0.1224 39 12/31/2024
3.0.1223 670 12/31/2024
3.0.1222 56 12/31/2024
3.0.1221 788 12/31/2024
3.0.1220 54 12/31/2024
3.0.1219 667 12/31/2024
3.0.1218 530 12/31/2024
3.0.1217 60 12/31/2024
3.0.1216 1,157 12/31/2024
3.0.1215 70 12/31/2024
3.0.1214 77 12/31/2024
3.0.1213 4,676 12/28/2024
3.0.1212 418 12/28/2024
3.0.1211 812 12/28/2024
3.0.1210 422 12/28/2024
3.0.1209 837 12/28/2024
3.0.1208 727 12/27/2024
3.0.1207 797 12/27/2024
3.0.1206 73 12/27/2024
3.0.1205 1,282 12/27/2024
3.0.1204 2,937 12/24/2024
3.0.1203 302 12/24/2024
3.0.1202 853 12/24/2024
3.0.1201 750 12/24/2024
3.0.1200 790 12/24/2024
3.0.1199 639 12/24/2024
3.0.1198 75 12/24/2024
3.0.1197 458 12/24/2024
3.0.1196 1,238 12/24/2024
3.0.1195 309 12/24/2024
3.0.1194 358 12/24/2024
3.0.1193 921 12/24/2024
3.0.1192 219 12/24/2024
3.0.1191 943 12/24/2024
3.0.1190 71 12/24/2024
3.0.1189 594 12/24/2024
3.0.1188 635 12/23/2024
3.0.1187 72 12/23/2024
3.0.1186 2,433 12/23/2024
3.0.1185 71 12/23/2024
3.0.1184 832 12/23/2024
3.0.1183 70 12/23/2024
3.0.1182 684 12/23/2024
3.0.1181 241 12/23/2024
3.0.1180 66 12/23/2024
3.0.1179 931 12/23/2024
3.0.1178 77 12/23/2024
3.0.1177 1,808 12/23/2024
3.0.1176 72 12/23/2024
3.0.1175 296 12/23/2024
3.0.1174 65 12/23/2024
3.0.1173 1,556 12/22/2024
3.0.1172 1,031 12/22/2024
3.0.1171 1,091 12/22/2024
3.0.1170 69 12/22/2024
3.0.1169 810 12/22/2024
3.0.1168 604 12/22/2024
3.0.1167 73 12/22/2024
3.0.1166 1,954 12/22/2024
3.0.1165 75 12/22/2024
3.0.1164 2,117 12/22/2024
3.0.1163 76 12/22/2024
3.0.1162 638 12/22/2024
3.0.1161 463 12/21/2024
3.0.1160 69 12/21/2024
3.0.1159 831 12/21/2024
3.0.1158 64 12/21/2024
3.0.1157 1,706 12/21/2024
3.0.1156 1,771 12/21/2024
3.0.1155 76 12/21/2024
3.0.1154 961 12/21/2024
3.0.1153 74 12/21/2024
3.0.1152 1,009 12/21/2024
3.0.1151 78 12/21/2024
3.0.1150 831 12/21/2024
3.0.1149 74 12/21/2024
3.0.1148 1,250 12/21/2024
3.0.1147 169 12/20/2024
3.0.1146 69 12/20/2024
3.0.1145 1,512 12/20/2024
3.0.1144 72 12/20/2024
3.0.1143 1,521 12/20/2024
3.0.1142 647 12/20/2024
3.0.1141 76 12/20/2024
3.0.1140 573 12/20/2024
3.0.1139 509 12/20/2024
3.0.1138 74 12/20/2024
3.0.1137 1,054 12/20/2024
3.0.1136 1,316 12/19/2024
3.0.1135 498 12/19/2024
3.0.1134 538 12/19/2024
3.0.1133 75 12/19/2024
3.0.1132 752 12/19/2024
3.0.1131 505 12/19/2024
3.0.1130 66 12/19/2024
3.0.1129 534 12/18/2024
3.0.1128 428 12/18/2024
3.0.1127 3,161 12/17/2024
3.0.1126 864 12/17/2024
3.0.1125 1,606 12/16/2024
3.0.1124 559 12/16/2024
3.0.1123 2,693 12/10/2024
3.0.1122 669 12/10/2024
3.0.1121 758 12/10/2024
3.0.1120 280 12/10/2024
3.0.1119 77 12/10/2024
3.0.1118 1,030 12/9/2024
3.0.1117 896 12/9/2024
3.0.1116 586 12/9/2024
3.0.1115 1,184 12/9/2024
3.0.1114 319 12/9/2024
3.0.1113 68 12/9/2024
3.0.1112 1,384 12/9/2024
3.0.1111 855 12/9/2024
3.0.1110 73 12/9/2024
3.0.1109 1,780 12/7/2024
3.0.1108 288 12/7/2024
3.0.1107 499 12/6/2024
3.0.1106 661 12/6/2024
3.0.1105 204 12/6/2024
3.0.1104 635 12/6/2024
3.0.1103 79 12/6/2024
3.0.1102 954 12/6/2024
3.0.1100 2,588 12/6/2024
3.0.1099 1,291 12/6/2024
3.0.1098 200 12/6/2024
3.0.1097 970 12/6/2024
3.0.1096 221 12/6/2024
3.0.1095 89 12/6/2024
3.0.1094 1,578 12/6/2024
3.0.1093 74 12/6/2024
3.0.1092 1,177 12/6/2024
3.0.1091 87 12/6/2024
3.0.1090 854 12/6/2024
3.0.1089 83 12/6/2024
3.0.1088 1,514 12/5/2024
3.0.1087 723 12/5/2024
3.0.1086 1,025 12/5/2024
3.0.1085 2,427 12/5/2024
3.0.1084 488 12/5/2024
3.0.1083 81 12/5/2024
3.0.1082 1,248 12/5/2024
3.0.1081 74 12/5/2024
3.0.1080 1,037 12/5/2024
3.0.1079 75 12/5/2024
3.0.1078 874 12/5/2024
3.0.1077 427 12/5/2024
3.0.1076 86 12/5/2024
3.0.1075 710 12/5/2024
3.0.1074 88 12/5/2024
3.0.1073 1,201 12/4/2024
3.0.1072 486 12/4/2024
3.0.1071 74 12/4/2024
3.0.1070 1,042 12/4/2024
3.0.1069 91 12/4/2024
3.0.1068 296 12/4/2024
3.0.1067 838 12/4/2024
3.0.1066 105 12/4/2024
3.0.1065 975 12/4/2024
3.0.1064 83 12/4/2024
3.0.1063 488 12/4/2024
3.0.1062 1,051 12/4/2024
3.0.1061 796 12/3/2024
3.0.1060 84 12/3/2024
3.0.1059 372 12/3/2024
3.0.1058 76 12/3/2024
3.0.1057 322 12/3/2024
3.0.1056 1,166 12/3/2024
3.0.1055 85 12/3/2024
3.0.1054 1,163 12/3/2024
3.0.1053 825 12/3/2024
3.0.1052 81 12/3/2024
3.0.1051 1,311 12/3/2024
3.0.1050 356 12/3/2024
3.0.1049 77 12/3/2024
3.0.1048 1,163 12/2/2024
3.0.1047 1,360 12/2/2024
3.0.1046 752 12/2/2024
3.0.1045 932 12/2/2024
3.0.1044 493 12/2/2024
3.0.1043 72 12/2/2024
3.0.1042 1,539 12/2/2024
3.0.1041 91 12/2/2024
3.0.1040 578 12/2/2024
3.0.1039 522 12/1/2024
3.0.1038 85 12/1/2024
3.0.1037 1,149 12/1/2024
3.0.1036 82 12/1/2024
3.0.1035 2,392 12/1/2024
3.0.1034 242 12/1/2024
3.0.1033 529 12/1/2024
3.0.1032 567 12/1/2024
3.0.1031 1,773 11/29/2024
3.0.1030 172 11/29/2024
3.0.1029 594 11/29/2024
3.0.1028 992 11/29/2024
3.0.1027 79 11/29/2024
3.0.1026 2,060 11/21/2024
3.0.1025 701 11/21/2024
3.0.1024 474 11/21/2024
3.0.1023 764 11/20/2024
3.0.1022 1,878 11/20/2024
3.0.1021 649 11/20/2024
3.0.1020 178 11/20/2024
3.0.1019 144 11/20/2024
3.0.1018 219 11/20/2024
3.0.1017 79 11/20/2024
3.0.1016 143 11/20/2024
3.0.1015 77 11/20/2024
3.0.1014 1,469 11/20/2024
3.0.1013 516 11/20/2024
3.0.1012 80 11/20/2024
3.0.1011 643 11/20/2024
3.0.1010 636 11/20/2024
3.0.1009 118 11/19/2024
3.0.1008 804 11/19/2024
3.0.1007 77 11/19/2024
3.0.1006 1,916 11/19/2024
3.0.1005 73 11/19/2024
3.0.1004 83 11/19/2024
3.0.1003 876 11/19/2024
3.0.1002 72 11/19/2024
3.0.1001 3,230 11/19/2024
3.0.1000 77 11/19/2024
3.0.999 3,138 11/15/2024
3.0.998 516 11/15/2024
3.0.997 722 11/14/2024
3.0.996 122 11/14/2024
3.0.995 74 11/14/2024
3.0.993 1,119 11/14/2024
3.0.992 81 11/14/2024
3.0.991 1,031 11/14/2024
3.0.990 109 11/14/2024
3.0.989 2,321 11/14/2024
3.0.988 85 11/14/2024
3.0.987 1,958 11/14/2024
3.0.986 90 11/14/2024
3.0.985 1,254 11/14/2024
3.0.984 328 11/14/2024
3.0.983 80 11/14/2024
3.0.982 754 11/14/2024
2.1.981 1,717 11/13/2024
2.1.980 2,093 11/13/2024
2.1.979 668 11/13/2024
2.1.978 754 11/13/2024
2.1.977 1,241 11/13/2024
2.1.976 79 11/13/2024
2.1.975 1,231 11/13/2024
2.1.974 90 11/13/2024
2.1.973 972 11/13/2024
2.1.972 330 11/12/2024
2.1.971 84 11/12/2024
2.1.970 1,825 11/12/2024
2.1.969 3,578 11/9/2024
2.1.968 822 11/9/2024
2.1.967 834 11/9/2024
2.1.966 90 11/9/2024
2.1.965 547 11/9/2024
2.1.964 106 11/9/2024
2.1.963 85 11/9/2024
2.1.962 989 11/8/2024
2.1.961 79 11/8/2024
2.1.960 245 11/8/2024
2.1.959 88 11/8/2024
2.1.958 91 11/8/2024
2.1.957 1,244 11/8/2024
2.1.956 3,235 11/8/2024
2.1.955 1,918 11/8/2024
2.1.954 81 11/8/2024
2.1.953 768 11/8/2024
2.1.952 4,128 11/6/2024
2.1.951 1,744 11/5/2024
2.1.950 1,443 11/1/2024
2.1.949 256 11/1/2024
2.1.948 1,212 11/1/2024
2.1.947 592 11/1/2024
2.1.946 2,469 10/29/2024
2.1.945 505 10/29/2024
2.1.944 77 10/29/2024
2.1.943 514 10/29/2024
2.1.942 617 10/29/2024
2.1.941 1,018 10/29/2024
2.1.939 1,628 10/29/2024
2.1.938 287 10/29/2024
2.1.937 76 10/29/2024
2.1.936 2,610 10/29/2024
2.1.935 74 10/29/2024
2.1.934 612 10/28/2024
2.1.933 1,226 10/28/2024
2.1.932 2,001 10/26/2024
2.1.931 234 10/26/2024
2.1.930 736 10/26/2024
2.1.929 960 10/26/2024
2.1.928 2,929 10/22/2024
2.1.927 643 10/22/2024
2.1.926 1,118 10/22/2024
2.1.925 503 10/22/2024
2.1.924 350 10/22/2024
2.1.923 795 10/22/2024
2.1.922 602 10/22/2024
2.1.921 71 10/22/2024
2.1.920 1,022 10/22/2024
2.1.919 2,055 10/18/2024
2.1.918 422 10/18/2024
2.1.917 683 10/17/2024
2.1.916 1,205 10/17/2024
2.1.915 78 10/17/2024
2.1.914 1,540 10/15/2024
2.1.913 525 10/15/2024
2.1.912 335 10/15/2024
2.1.911 774 10/15/2024
2.1.910 586 10/14/2024
2.1.909 82 10/14/2024
2.1.908 2,156 10/12/2024
2.1.907 451 10/12/2024
2.1.906 763 10/12/2024
2.1.905 753 10/11/2024
2.1.904 82 10/11/2024
2.1.903 1,242 10/11/2024
2.1.902 86 10/11/2024
2.1.901 1,966 10/9/2024
2.1.900 490 10/9/2024
2.1.899 1,190 10/9/2024
2.1.898 826 10/9/2024
2.1.897 805 10/9/2024
2.1.896 274 10/9/2024
2.1.895 86 10/9/2024
2.1.894 543 10/8/2024
2.1.893 863 10/8/2024
2.1.892 154 10/8/2024
2.1.891 1,107 10/8/2024
2.1.890 1,781 10/8/2024
2.1.889 89 10/8/2024
2.1.888 1,408 10/8/2024
2.1.887 1,450 10/4/2024
2.1.886 828 10/3/2024
2.1.885 926 10/3/2024
2.1.884 268 10/3/2024
2.1.883 604 10/3/2024
2.1.882 81 10/3/2024
2.1.881 959 10/3/2024
2.1.880 85 10/3/2024
2.1.879 534 10/3/2024
2.1.878 1,085 10/3/2024
2.1.877 403 10/3/2024
2.1.876 1,300 10/2/2024
2.1.875 647 10/2/2024
2.1.874 430 10/2/2024
2.1.873 971 10/2/2024
2.1.872 80 10/2/2024
2.1.871 89 10/2/2024
2.1.870 1,105 10/2/2024
2.1.869 538 10/2/2024
2.1.868 79 10/2/2024
2.1.867 342 10/2/2024
2.1.866 1,165 10/2/2024
2.1.865 108 10/2/2024
2.1.864 1,728 10/1/2024
2.1.863 735 10/1/2024
2.1.862 567 10/1/2024
2.1.861 904 10/1/2024
2.1.860 81 10/1/2024
2.1.859 658 10/1/2024
2.1.858 316 10/1/2024
2.1.857 82 10/1/2024
2.1.856 766 10/1/2024
2.1.855 85 10/1/2024
2.1.854 2,578 9/29/2024
2.1.853 268 9/29/2024
2.1.852 388 9/29/2024
2.1.851 699 9/29/2024
2.1.850 448 9/29/2024
2.1.849 809 9/29/2024
2.1.848 76 9/29/2024
2.1.847 549 9/29/2024
2.1.846 106 9/29/2024
2.1.845 987 9/29/2024
2.1.844 80 9/29/2024
2.1.843 2,153 9/27/2024
2.1.842 512 9/27/2024
2.1.841 636 9/27/2024
2.1.839 485 9/27/2024
2.1.838 89 9/27/2024
2.1.837 2,025 9/27/2024
2.1.836 831 9/27/2024
2.1.835 81 9/27/2024
2.1.834 1,106 9/27/2024
2.1.833 276 9/27/2024
2.1.832 98 9/27/2024
2.1.831 1,651 9/27/2024
2.1.830 437 9/27/2024
2.1.829 1,075 9/26/2024
2.1.828 1,230 9/26/2024
2.1.827 81 9/26/2024
2.1.826 1,341 9/26/2024
2.1.825 91 9/26/2024
2.1.824 615 9/26/2024
2.1.823 82 9/26/2024
2.1.822 372 9/26/2024
2.1.821 459 9/26/2024
2.1.820 1,150 9/26/2024
2.1.819 85 9/26/2024
2.1.818 1,471 9/26/2024
2.1.817 1,826 9/25/2024
2.1.816 1,547 9/23/2024
2.1.815 191 9/23/2024
2.1.814 418 9/23/2024
2.1.813 96 9/23/2024
2.1.812 670 9/23/2024
2.1.811 106 9/23/2024
2.1.810 636 9/23/2024
2.1.809 89 9/23/2024
2.1.808 675 9/23/2024
2.1.807 858 9/23/2024
2.1.806 94 9/23/2024
2.1.805 2,242 9/23/2024
2.1.804 1,048 9/23/2024
2.1.803 89 9/23/2024
2.1.802 1,183 9/23/2024
2.1.801 86 9/23/2024
2.1.800 1,180 9/23/2024
2.1.799 80 9/23/2024
2.1.798 612 9/23/2024
2.1.797 83 9/23/2024
2.1.796 3,119 9/18/2024
2.1.795 480 9/18/2024
2.1.794 742 9/18/2024
2.1.793 490 9/18/2024
2.1.792 579 9/18/2024
2.1.791 153 9/18/2024
2.1.790 422 9/17/2024
2.1.789 98 9/17/2024
2.1.788 595 9/17/2024
2.1.787 99 9/17/2024
2.1.786 652 9/17/2024
2.1.785 149 9/17/2024
2.1.784 1,185 9/17/2024
2.1.783 548 9/17/2024
2.1.782 838 9/17/2024
2.1.781 99 9/17/2024
2.1.780 121 9/17/2024
2.1.779 99 9/17/2024
2.1.778 1,159 9/17/2024
2.1.777 486 9/17/2024
2.1.776 511 9/17/2024
2.1.775 98 9/17/2024
2.1.774 1,266 9/17/2024
2.1.773 4,449 9/16/2024
2.1.772 608 9/16/2024
2.1.771 384 9/16/2024
2.1.770 680 9/16/2024
2.1.769 621 9/16/2024
2.1.768 1,970 9/12/2024
2.1.767 496 9/12/2024
2.1.766 584 9/12/2024
2.1.765 1,122 9/12/2024
2.1.764 665 9/12/2024
2.1.763 104 9/12/2024
2.1.762 1,145 9/11/2024
2.1.761 556 9/11/2024
2.1.760 903 9/11/2024
2.1.759 100 9/11/2024
2.1.757 2,084 9/11/2024
2.1.756 614 9/11/2024
2.1.754 297 9/11/2024
2.1.753 367 9/11/2024
2.1.752 372 9/11/2024
2.1.751 638 9/11/2024
2.1.750 110 9/11/2024
2.1.749 1,489 9/11/2024
2.1.748 3,337 9/10/2024
2.1.747 1,769 9/10/2024
2.1.746 308 9/10/2024
2.1.745 243 9/10/2024
2.1.744 574 9/10/2024
2.1.743 95 9/10/2024
2.1.742 643 9/10/2024
2.1.741 97 9/10/2024
2.1.740 812 9/10/2024
2.1.738 315 9/10/2024
2.1.737 1,227 9/9/2024
2.1.736 92 9/9/2024
2.1.734 1,277 9/9/2024
2.1.733 95 9/9/2024
2.1.730 2,043 9/9/2024
2.1.729 93 9/9/2024
2.1.728 1,744 9/9/2024
2.1.727 2,077 9/9/2024
2.1.726 2,737 9/7/2024
2.1.725 602 9/7/2024
2.1.724 717 9/7/2024
2.1.723 968 9/6/2024
2.1.722 1,537 9/6/2024
2.1.721 928 9/6/2024
2.1.720 195 9/6/2024
2.1.719 909 9/6/2024
2.1.718 120 9/6/2024
2.1.717 432 9/6/2024
2.1.716 1,470 9/5/2024
2.1.715 96 9/5/2024
2.1.714 678 9/5/2024
2.1.713 101 9/5/2024
2.1.712 972 9/5/2024
2.1.711 248 9/5/2024
2.1.710 101 9/5/2024
2.1.709 2,803 9/5/2024
2.1.708 728 9/5/2024
2.1.707 104 9/5/2024
2.1.706 790 9/5/2024
2.1.705 1,114 9/5/2024
2.1.704 678 9/4/2024
2.1.703 101 9/4/2024
2.1.702 599 9/4/2024
2.1.701 97 9/4/2024
2.1.700 2,582 9/4/2024
2.1.699 415 9/4/2024
2.1.698 837 9/4/2024
2.1.697 660 9/3/2024
2.1.696 299 9/3/2024
2.1.695 101 9/3/2024
2.1.694 1,549 9/3/2024
2.1.693 1,688 9/3/2024
2.1.692 388 9/3/2024
2.1.691 696 9/3/2024
2.1.690 94 9/3/2024
2.1.689 954 9/3/2024
2.1.688 90 9/3/2024
2.1.687 428 9/3/2024
2.1.686 2,820 8/30/2024
2.1.685 284 8/29/2024
2.1.684 554 8/29/2024
2.1.683 1,030 8/29/2024
2.1.682 605 8/29/2024
2.1.681 89 8/29/2024
2.1.680 1,526 8/26/2024
2.1.679 556 8/26/2024
2.1.678 466 8/26/2024
2.1.677 1,362 8/26/2024
2.1.676 111 8/26/2024
2.1.675 1,431 8/21/2024
2.1.674 986 8/21/2024
2.1.673 613 8/21/2024
2.1.672 711 8/21/2024
2.1.671 119 8/21/2024
2.1.670 493 8/21/2024
2.1.669 122 8/21/2024
2.1.668 1,366 8/20/2024
2.1.667 128 8/20/2024
2.1.666 1,255 8/20/2024
2.1.665 113 8/20/2024
2.1.664 337 8/20/2024
2.1.663 1,199 8/20/2024
2.1.662 106 8/20/2024
2.1.661 328 8/20/2024
2.1.660 107 8/20/2024
2.1.659 1,395 8/20/2024
2.1.658 1,645 8/20/2024
2.1.657 902 8/19/2024
2.1.656 115 8/19/2024
2.1.655 1,788 8/15/2024
2.1.654 487 8/15/2024
2.1.653 509 8/15/2024
2.1.652 613 8/15/2024
2.1.651 769 8/15/2024
2.1.650 935 8/15/2024
2.1.649 2,358 8/14/2024
2.1.648 114 8/14/2024
2.1.647 762 8/14/2024
2.1.646 446 8/14/2024
2.1.645 217 8/13/2024
2.1.644 2,351 8/7/2024
2.1.643 273 8/7/2024
2.1.642 648 8/7/2024
2.1.641 391 8/7/2024
2.1.640 1,405 8/6/2024
2.1.639 164 8/6/2024
2.1.638 83 8/6/2024
2.1.637 881 8/6/2024
2.1.636 1,276 8/1/2024
2.1.635 599 8/1/2024
2.1.634 452 8/1/2024
2.1.633 267 8/1/2024
2.1.632 75 8/1/2024
2.1.631 636 8/1/2024
2.1.630 75 8/1/2024
2.1.629 862 8/1/2024
2.1.628 2,347 7/25/2024
2.1.627 352 7/25/2024
2.1.626 579 7/25/2024
2.1.625 626 7/25/2024
2.1.624 75 7/25/2024
2.1.623 444 7/25/2024
2.1.622 231 7/25/2024
2.1.621 292 7/25/2024
2.1.620 518 7/25/2024
2.1.619 151 7/24/2024
2.1.618 473 7/24/2024
2.1.617 181 7/24/2024
2.1.616 313 7/24/2024
2.1.615 4,241 7/20/2024
2.1.614 79 7/20/2024
2.1.612 506 7/20/2024
2.1.611 647 7/20/2024
2.1.610 542 7/20/2024
2.1.609 2,093 7/14/2024
2.1.608 439 7/14/2024
2.1.607 431 7/14/2024
2.1.606 842 7/14/2024
2.1.605 464 7/14/2024
2.1.604 86 7/14/2024
2.1.603 1,100 7/14/2024
2.1.602 206 7/14/2024
2.1.601 78 7/14/2024
2.1.600 2,058 7/10/2024
2.1.599 225 7/10/2024
2.1.598 206 7/10/2024
2.1.597 197 7/10/2024
2.1.596 180 7/10/2024
2.1.594 383 7/10/2024
2.1.593 1,062 7/10/2024
2.1.592 80 7/10/2024
2.1.591 694 7/10/2024
2.1.590 112 7/10/2024
2.1.589 79 7/10/2024
2.1.588 1,568 7/10/2024
2.1.587 67 7/10/2024
2.1.586 580 7/10/2024
2.1.585 86 7/10/2024
2.1.584 83 7/10/2024
2.1.583 90 7/10/2024
2.1.581 280 7/10/2024
2.1.580 85 7/10/2024
2.1.579 1,135 7/9/2024
2.1.578 78 7/9/2024
2.1.576 972 7/9/2024
2.1.575 80 7/9/2024
2.1.574 165 7/9/2024
2.1.573 2,925 7/9/2024
2.1.572 83 7/9/2024
2.1.571 817 7/9/2024
2.1.570 1,387 7/9/2024
2.1.569 150 7/9/2024
2.1.568 1,081 7/9/2024
2.1.567 957 7/9/2024
2.1.566 83 7/9/2024
2.1.565 713 7/9/2024
2.1.564 88 7/9/2024
2.1.563 977 7/9/2024
2.1.562 86 7/9/2024
2.1.560 605 7/8/2024
2.1.559 1,408 7/8/2024
2.1.558 96 7/8/2024
2.1.557 899 7/8/2024
2.1.556 1,211 7/8/2024
2.1.555 207 7/8/2024
2.1.554 897 7/8/2024
2.1.553 219 7/8/2024
2.1.552 97 7/8/2024
2.1.551 1,034 7/8/2024
2.1.550 745 7/7/2024
2.1.549 84 7/7/2024
2.1.548 637 7/7/2024
2.1.547 96 7/7/2024
2.1.546 202 7/7/2024
2.1.545 95 7/7/2024
2.1.544 1,107 7/7/2024
2.1.543 92 7/7/2024
2.1.542 1,105 7/7/2024
2.1.541 559 7/7/2024
2.1.540 2,102 7/5/2024
2.1.539 1,108 7/4/2024
2.1.538 1,054 7/3/2024
2.1.537 666 7/3/2024
2.1.536 460 7/3/2024
2.1.535 313 7/3/2024
2.1.534 1,305 7/3/2024
2.1.533 128 7/3/2024
2.1.532 1,081 7/3/2024
2.1.531 81 7/3/2024
2.1.530 745 7/3/2024
2.1.529 1,295 7/2/2024
2.1.528 1,257 6/30/2024
2.1.527 1,227 6/28/2024
2.1.526 584 6/27/2024
2.1.525 663 6/27/2024
2.1.524 754 6/27/2024
2.1.523 1,222 6/22/2024
2.1.522 882 6/22/2024
2.1.521 755 6/22/2024
2.1.520 102 6/22/2024
2.1.519 1,404 6/16/2024
2.1.518 517 6/16/2024
2.1.517 516 6/15/2024
2.1.516 874 6/15/2024
2.1.515 435 6/15/2024
2.1.514 445 6/15/2024
2.1.513 97 6/15/2024
2.1.512 1,338 6/15/2024
2.1.511 95 6/15/2024
2.1.510 1,072 6/15/2024
2.1.509 917 6/15/2024
2.1.508 437 6/14/2024
2.1.507 91 6/14/2024
2.1.506 3,143 6/4/2024
2.1.505 1,228 6/2/2024
2.1.504 179 6/2/2024
2.1.503 307 6/2/2024
2.1.502 306 6/1/2024
2.1.501 362 6/1/2024
2.1.500 653 6/1/2024
2.1.499 96 6/1/2024
2.1.498 811 6/1/2024
2.1.497 233 6/1/2024
2.1.496 101 6/1/2024
2.1.495 903 6/1/2024
2.1.494 95 6/1/2024
2.1.493 2,158 5/31/2024
2.1.492 603 5/31/2024
2.1.491 401 5/31/2024
2.1.490 599 5/31/2024
2.1.489 362 5/31/2024
2.1.488 822 5/31/2024
2.1.487 1,291 5/29/2024
2.1.486 502 5/29/2024
2.1.485 710 5/29/2024
2.1.484 605 5/29/2024
2.1.483 98 5/29/2024
2.1.482 1,423 5/28/2024
2.1.481 414 5/28/2024
2.1.480 417 5/28/2024
2.1.479 452 5/28/2024
2.1.478 74 5/28/2024
2.1.477 982 5/28/2024
2.1.476 74 5/28/2024
2.1.475 346 5/28/2024
2.1.474 1,310 5/27/2024
2.1.473 1,284 5/27/2024
2.1.472 487 5/27/2024
2.1.471 534 5/27/2024
2.1.470 901 5/26/2024
2.1.469 83 5/26/2024
2.1.468 1,228 5/26/2024
2.1.467 150 5/26/2024
2.1.466 412 5/26/2024
2.1.465 673 5/26/2024
2.1.464 1,098 5/26/2024
2.1.463 83 5/26/2024
2.1.462 724 5/26/2024
2.1.461 88 5/26/2024
2.1.460 245 5/25/2024
2.1.459 352 5/25/2024
2.1.458 84 5/25/2024
2.1.457 1,134 5/25/2024
2.1.456 87 5/25/2024
2.1.455 1,124 5/25/2024
2.1.454 89 5/25/2024
2.1.453 1,451 5/25/2024
2.1.452 120 5/25/2024
2.1.451 567 5/25/2024
2.1.450 82 5/25/2024
2.1.449 475 5/25/2024
2.1.448 1,866 5/23/2024
2.1.447 590 5/23/2024
2.1.446 645 5/23/2024
2.1.445 69 5/23/2024
2.1.444 685 5/23/2024
2.1.443 92 5/23/2024
2.1.442 603 5/23/2024
2.1.441 86 5/23/2024
2.1.440 914 5/23/2024
2.1.439 95 5/23/2024
2.1.438 645 5/22/2024
2.1.437 900 5/22/2024
2.1.436 91 5/22/2024
2.1.435 649 5/22/2024
2.1.434 97 5/22/2024
2.1.433 94 5/22/2024
2.1.432 1,059 5/22/2024
2.1.431 715 5/22/2024
2.1.430 1,224 5/19/2024
2.1.429 479 5/18/2024
2.1.428 515 5/18/2024
2.1.427 574 5/18/2024
2.1.426 380 5/18/2024
2.1.425 113 5/18/2024
2.1.424 826 5/17/2024
2.1.423 109 5/17/2024
2.1.422 528 5/17/2024
2.1.421 1,430 5/17/2024
2.1.420 107 5/17/2024
2.1.419 920 5/16/2024
2.1.418 427 5/16/2024
2.1.417 760 5/16/2024
2.1.416 113 5/16/2024
2.1.415 758 5/15/2024
2.1.414 101 5/15/2024
2.1.413 806 5/15/2024
2.1.412 1,372 5/14/2024
2.1.411 113 5/14/2024
2.1.410 1,609 5/13/2024
2.1.409 615 5/13/2024
2.1.408 489 5/13/2024
2.1.407 377 5/13/2024
2.1.406 83 5/13/2024
2.1.405 1,854 5/3/2024
2.1.404 886 4/30/2024
2.1.403 193 4/30/2024
2.1.402 467 4/30/2024
2.1.401 528 4/30/2024
2.1.400 733 4/30/2024
2.1.399 656 4/30/2024
2.1.398 460 4/29/2024
2.1.397 346 4/29/2024
2.1.396 106 4/29/2024
2.1.395 1,500 4/29/2024
2.1.394 497 4/29/2024
2.1.393 1,059 4/29/2024
2.1.392 297 4/28/2024
2.1.391 105 4/28/2024
2.1.390 825 4/28/2024
2.1.389 120 4/28/2024
2.1.388 915 4/28/2024
2.1.387 596 4/28/2024
2.1.386 109 4/28/2024
2.1.385 924 4/28/2024
2.1.384 103 4/28/2024
2.1.383 634 4/28/2024
2.1.382 103 4/28/2024
2.1.381 1,554 4/28/2024
2.1.380 822 4/27/2024
2.1.379 111 4/27/2024
2.1.378 110 4/27/2024
2.1.377 2,075 4/20/2024
2.1.376 792 4/20/2024
2.1.375 697 4/19/2024
2.1.374 360 4/19/2024
2.1.373 101 4/19/2024
2.1.372 1,354 4/19/2024
2.1.371 697 4/19/2024
2.1.370 683 4/19/2024
2.1.369 474 4/19/2024
2.1.368 159 4/18/2024
2.1.367 107 4/18/2024
2.1.366 1,492 4/15/2024
2.1.365 580 4/14/2024
2.1.364 671 4/13/2024
2.1.363 765 4/12/2024
2.1.362 107 4/12/2024
2.1.361 604 4/12/2024
2.1.360 345 4/12/2024
2.1.359 590 4/12/2024
2.1.358 109 4/12/2024
2.1.357 941 4/12/2024
2.1.356 124 4/12/2024
2.1.355 999 4/12/2024
2.1.354 113 4/12/2024
2.1.353 398 4/11/2024
2.1.352 594 4/11/2024
2.1.351 103 4/11/2024
2.1.350 812 4/10/2024
2.1.349 107 4/10/2024
2.1.348 790 4/9/2024
2.1.347 103 4/9/2024
2.1.346 1,682 4/2/2024
2.1.345 286 4/2/2024
2.1.344 393 4/1/2024
2.1.343 162 4/1/2024
2.1.342 1,083 3/29/2024
2.1.341 109 3/29/2024
2.1.340 889 3/25/2024
2.1.339 96 3/25/2024
2.1.338 770 3/25/2024
2.1.337 1,073 3/20/2024
2.1.336 115 3/20/2024
2.1.335 1,209 3/19/2024
2.1.334 116 3/19/2024
2.1.333 428 3/19/2024
2.1.332 439 3/19/2024
2.1.331 738 3/18/2024
2.1.330 107 3/18/2024
2.1.329 718 3/18/2024
2.1.328 739 3/16/2024
2.1.327 432 3/15/2024
2.1.326 911 3/13/2024
2.1.325 517 3/13/2024
2.1.324 154 3/13/2024
2.1.323 138 3/13/2024
2.1.322 711 3/13/2024
2.1.321 120 3/13/2024
2.1.320 409 3/13/2024
2.1.319 109 3/13/2024
2.1.318 108 3/13/2024
2.1.317 422 3/12/2024
2.1.316 115 3/12/2024
2.1.315 487 3/12/2024
2.1.314 595 3/12/2024
2.1.313 642 3/12/2024
2.1.312 425 3/11/2024
2.1.311 869 3/11/2024
2.1.310 380 3/11/2024
2.1.309 677 3/10/2024
2.1.308 112 3/10/2024
2.1.307 871 3/8/2024
2.1.306 252 3/8/2024
2.1.305 557 3/8/2024
2.1.304 115 3/8/2024
2.1.303 577 3/8/2024
2.1.302 105 3/8/2024
2.1.301 1,021 3/6/2024
2.1.300 122 3/6/2024
2.1.299 901 3/4/2024
2.1.298 539 3/4/2024
2.1.297 440 3/4/2024
2.1.296 132 3/4/2024
2.1.295 1,167 3/3/2024
2.1.294 249 3/2/2024
2.1.293 597 3/2/2024
2.1.292 115 3/2/2024
2.1.291 1,947 2/29/2024
2.1.290 410 2/29/2024
2.1.289 106 2/29/2024
2.1.288 244 2/29/2024
2.1.287 105 2/29/2024
2.1.286 681 2/29/2024
2.1.285 1,211 2/26/2024
2.1.284 116 2/26/2024
2.1.283 524 2/25/2024
2.1.282 183 2/25/2024
2.1.281 800 2/23/2024
2.1.280 470 2/23/2024
2.1.279 458 2/22/2024
2.1.278 228 2/22/2024
2.1.277 330 2/22/2024
2.1.276 114 2/22/2024
2.1.275 230 2/21/2024
2.1.274 119 2/21/2024
2.1.273 522 2/21/2024
2.1.272 132 2/21/2024
2.1.271 118 2/21/2024
2.1.270 540 2/21/2024
2.1.269 312 2/21/2024
2.1.268 119 2/21/2024
2.1.267 262 2/21/2024
2.1.266 107 2/21/2024
2.1.265 288 2/21/2024
2.1.264 108 2/21/2024
2.1.263 398 2/21/2024
2.1.262 538 2/20/2024
2.1.261 323 2/20/2024
2.1.260 142 2/20/2024
2.1.259 225 2/20/2024
2.1.258 454 2/20/2024
2.1.257 251 2/20/2024
2.1.256 320 2/19/2024
2.1.255 469 2/19/2024
2.1.254 101 2/19/2024
2.1.253 718 2/17/2024
2.1.252 105 2/17/2024
2.1.251 305 2/17/2024
2.1.250 431 2/16/2024
2.1.249 99 2/16/2024
2.1.248 336 2/16/2024
2.1.247 303 2/16/2024
2.1.246 110 2/16/2024
2.1.245 375 2/16/2024
2.1.244 105 2/16/2024
2.1.243 109 2/16/2024
2.1.242 377 2/16/2024
2.1.241 115 2/16/2024
2.1.240 1,001 2/13/2024
2.1.239 118 2/13/2024
2.1.238 603 2/13/2024
2.1.237 440 2/13/2024
2.1.236 208 2/13/2024
2.1.235 104 2/13/2024
2.1.234 175 2/13/2024
2.1.233 449 2/13/2024
2.1.232 118 2/13/2024
2.1.231 562 2/12/2024
2.1.230 384 2/12/2024
2.1.229 136 2/11/2024
2.1.228 120 2/11/2024
2.1.227 549 2/11/2024
2.1.226 289 2/11/2024
2.1.225 350 2/11/2024
2.1.224 243 2/11/2024
2.1.223 904 2/10/2024
2.1.222 199 2/10/2024
2.1.221 278 2/9/2024
2.1.220 303 2/9/2024
2.1.219 488 2/9/2024
2.1.218 357 2/9/2024
2.1.217 458 2/9/2024
2.1.216 117 2/9/2024
2.1.215 327 2/8/2024
2.1.214 430 2/8/2024
2.1.213 124 2/8/2024
2.1.212 336 2/8/2024
2.1.211 171 2/8/2024
2.1.210 546 2/8/2024
2.1.209 147 2/8/2024
2.1.208 652 2/7/2024
2.1.207 145 2/7/2024
2.1.206 152 2/7/2024
2.1.205 432 2/7/2024
2.1.204 297 2/7/2024
2.1.203 112 2/7/2024
2.1.202 289 2/7/2024
2.1.201 123 2/7/2024
2.1.200 437 2/6/2024
2.1.199 120 2/6/2024
2.1.198 848 2/5/2024
2.1.197 113 2/5/2024
2.1.196 534 2/4/2024
2.1.195 187 2/4/2024
2.1.194 750 2/2/2024
2.1.193 116 2/2/2024
2.1.192 677 1/31/2024
2.1.191 120 1/31/2024
2.1.190 531 1/30/2024
2.1.189 459 1/29/2024
2.1.188 363 1/29/2024
2.1.187 109 1/29/2024
2.1.186 110 1/29/2024
2.1.185 423 1/29/2024
2.1.184 280 1/29/2024
2.1.183 99 1/29/2024
2.1.182 293 1/28/2024
2.1.181 115 1/28/2024
2.1.180 233 1/28/2024
2.1.179 418 1/28/2024
2.1.178 113 1/28/2024
2.1.177 236 1/28/2024
2.1.176 281 1/28/2024
2.1.175 108 1/28/2024
2.1.174 756 1/28/2024
2.1.173 172 1/27/2024
2.1.172 109 1/27/2024
2.1.171 491 1/27/2024
2.1.170 109 1/27/2024
2.1.169 212 1/27/2024
2.1.168 118 1/27/2024
2.1.167 458 1/27/2024
2.1.166 108 1/27/2024
2.1.165 478 1/27/2024
2.1.164 109 1/27/2024
2.1.163 215 1/27/2024
2.1.162 129 1/26/2024
2.1.161 101 1/26/2024
2.1.160 669 1/26/2024
2.1.159 118 1/26/2024
2.1.158 463 1/26/2024
2.1.157 101 1/26/2024
2.1.156 221 1/26/2024
2.1.155 216 1/26/2024
2.1.154 105 1/26/2024
2.1.153 174 1/26/2024
2.1.152 101 1/26/2024
2.1.151 623 1/25/2024
2.1.150 119 1/25/2024
2.1.149 316 1/25/2024
2.1.148 111 1/25/2024
2.1.147 617 1/25/2024
2.1.146 188 1/25/2024
2.1.145 113 1/25/2024
2.1.144 321 1/25/2024
2.1.143 745 1/19/2024
2.1.142 115 1/19/2024
2.1.141 635 1/15/2024
2.1.140 149 1/15/2024
2.1.139 131 1/15/2024
2.1.138 607 1/15/2024
2.1.137 133 1/15/2024
2.1.136 268 1/15/2024
2.1.135 134 1/15/2024
2.1.134 451 1/15/2024
2.1.133 266 1/15/2024
2.1.132 772 1/14/2024
2.1.131 112 1/14/2024
2.1.130 601 1/13/2024
2.1.129 113 1/13/2024
2.1.128 607 1/12/2024
2.1.127 140 1/12/2024
2.1.126 577 1/11/2024
2.1.125 416 1/11/2024
2.1.124 741 1/8/2024
2.1.123 309 1/7/2024
2.1.122 535 1/5/2024
2.1.121 278 1/5/2024
2.1.120 120 1/5/2024
2.1.119 439 1/5/2024
2.1.118 468 1/5/2024
2.1.117 128 1/5/2024
2.1.116 647 1/3/2024
2.1.115 158 1/3/2024
2.1.114 426 1/1/2024
2.1.113 176 1/1/2024
2.1.112 753 12/30/2023
2.1.111 292 12/28/2023
2.1.110 206 12/28/2023
2.1.109 264 12/28/2023
2.1.108 237 12/28/2023
2.1.107 146 12/28/2023
2.1.106 536 12/28/2023
2.1.105 203 12/27/2023
2.1.104 130 12/27/2023
2.1.103 157 12/27/2023
2.1.102 125 12/27/2023
2.1.101 692 12/25/2023
2.1.100 117 12/25/2023
2.1.99 258 12/25/2023
2.1.98 132 12/25/2023
2.1.97 426 12/25/2023
2.1.96 314 12/25/2023
2.1.95 180 12/25/2023
2.1.94 125 12/25/2023
2.1.93 156 12/25/2023
2.1.92 150 12/25/2023
2.1.91 639 12/24/2023
2.1.90 218 12/24/2023
2.1.89 384 12/23/2023
2.1.88 175 12/23/2023
2.1.87 128 12/23/2023
2.1.86 250 12/23/2023
2.1.85 129 12/23/2023
2.1.84 430 12/23/2023
2.1.83 127 12/23/2023
2.1.82 425 12/23/2023
2.1.81 131 12/23/2023
2.1.80 253 12/23/2023
2.1.79 536 12/19/2023
2.1.78 123 12/19/2023
2.1.77 213 12/19/2023
2.1.76 940 12/11/2023
2.1.75 264 12/11/2023
2.1.74 280 12/10/2023
2.1.73 214 12/10/2023
2.1.72 150 12/10/2023
2.1.71 508 12/10/2023
2.1.70 172 12/9/2023
2.1.69 252 12/9/2023
2.1.68 262 12/9/2023
2.1.67 155 12/9/2023
2.1.66 166 12/9/2023
2.1.65 214 12/9/2023
2.1.64 129 12/9/2023
2.1.63 344 12/9/2023
2.1.62 521 12/6/2023
2.1.61 215 12/6/2023
2.1.60 253 12/6/2023
2.1.59 167 12/6/2023
2.1.58 281 12/5/2023
2.1.57 266 12/5/2023
2.1.56 183 12/5/2023
2.1.55 213 12/5/2023
2.1.54 204 12/5/2023
2.1.53 152 12/5/2023
2.1.52 226 12/5/2023
2.1.51 158 12/4/2023
2.1.50 137 12/4/2023
2.1.49 423 12/4/2023
2.1.48 135 12/4/2023
2.1.47 133 12/4/2023
2.1.46 382 11/28/2023
2.1.45 162 11/27/2023
2.1.44 205 11/27/2023
2.1.43 146 11/26/2023
2.1.42 247 11/23/2023
2.1.41 136 11/23/2023
2.1.40 326 11/23/2023
2.1.39 282 11/23/2023
2.1.38 218 11/23/2023
2.1.37 150 11/23/2023
2.1.36 170 11/23/2023
2.1.35 425 11/22/2023
2.1.34 193 11/20/2023
2.1.33 211 11/20/2023
2.1.32 276 11/20/2023
2.1.31 140 11/20/2023
2.1.30 302 11/19/2023
2.1.29 129 11/19/2023
2.1.28 169 11/19/2023
2.1.27 146 11/19/2023
2.1.26 242 11/19/2023
2.1.25 141 11/19/2023
2.1.24 157 11/19/2023
2.1.23 133 11/19/2023
2.1.22 136 11/19/2023
2.1.21 319 11/18/2023
2.1.20 151 11/18/2023
2.1.19 155 11/18/2023
2.1.18 134 11/18/2023
2.1.17 131 11/18/2023
2.1.16 144 11/17/2023
2.1.15 134 11/17/2023
2.1.14 140 11/17/2023
2.1.13 148 11/17/2023
2.1.12 166 11/17/2023
2.1.11 121 11/17/2023
2.1.10 137 11/17/2023
2.1.9 141 11/17/2023
2.1.8 154 11/17/2023
2.1.7 144 11/17/2023
2.1.6 167 11/17/2023
2.1.5 143 11/17/2023
2.1.4 144 11/16/2023
2.1.3 140 11/16/2023
2.0.37 837 11/15/2023
2.0.36 138 11/15/2023
2.0.35 143 11/15/2023
2.0.34 139 11/15/2023
1.0.33 143 11/14/2023
1.0.32 133 11/14/2023
1.0.31 349 11/13/2023
1.0.30 134 11/13/2023
1.0.29 171 11/10/2023
1.0.28 135 11/10/2023
1.0.27 138 11/9/2023
1.0.26 133 11/9/2023
1.0.25 134 11/9/2023
1.0.24 135 11/7/2023
1.0.23 130 11/7/2023
1.0.22 128 11/6/2023
1.0.21 137 11/6/2023
1.0.20 156 11/3/2023
1.0.19 146 11/3/2023
1.0.18 155 11/2/2023
1.0.17 144 11/2/2023
1.0.16 153 11/1/2023
1.0.15 142 11/1/2023
1.0.14 182 10/26/2023
1.0.13 156 10/26/2023
1.0.12 172 10/19/2023
1.0.11 171 10/19/2023
1.0.10 172 10/18/2023
1.0.9 169 10/18/2023
1.0.8 166 10/17/2023
1.0.7 155 10/17/2023
1.0.6 188 10/16/2023
1.0.5 182 10/16/2023
1.0.4 182 10/13/2023
1.0.3 175 10/13/2023
1.0.2 174 10/12/2023
1.0.1 197 10/1/2023