Soenneker.Utils.MemoryStream 3.0.1183

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.MemoryStream --version 3.0.1183
                    
NuGet\Install-Package Soenneker.Utils.MemoryStream -Version 3.0.1183
                    
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.MemoryStream" Version="3.0.1183" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.MemoryStream" Version="3.0.1183" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.MemoryStream" />
                    
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.MemoryStream --version 3.0.1183
                    
#r "nuget: Soenneker.Utils.MemoryStream, 3.0.1183"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Utils.MemoryStream@3.0.1183
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.MemoryStream&version=3.0.1183
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.MemoryStream&version=3.0.1183
                    
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.MemoryStream

An easy modern MemoryStream utility

A library for management and simple access of RecyclableMemoryStreamManager

Installation

dotnet add package Soenneker.Utils.MemoryStream

Usage

  1. Register the interop within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddMemoryStreamUtil();
}
  1. Inject IMemoryStreamUtil wherever you need MemoryStream services

  2. Retrieve a fresh MemoryStream from

Example:

public class TestClass{

    IMemoryStreamUtil _memoryStreamUtil;

    public TestClass(IMemoryStreamUtil memoryStreamUtil)
    {
        _memoryStreamUtil = memoryStreamUtil;
    }

    public async ValueTask<MemoryStream> ReadFileIntoMemoryStream(string path)
    {
        MemoryStream memoryStream = await _memoryStreamUtil.Get(); // .GetSync() is also available

        FileStream fileStream = File.OpenRead(path);

        await fileStream.CopyToAsync(memoryStream);
    
        return memoryStream;
    }
}
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 (7)

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

Package Downloads
Soenneker.Utils.File

A utility library encapsulating asynchronous file IO operations

Soenneker.Cosmos.Serializer

A fast, lightweight JSON (de)serializer for Azure Cosmos DB

Soenneker.Blob.Download

A utility library for Azure Blob download operations

Soenneker.Blob.Upload

A utility library for Azure Blob upload operations

Soenneker.Zelos.Database

A lightweight, thread-safe asynchronous JSON-based document database

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1282 276 9/16/2025
3.0.1281 2,873 9/9/2025
3.0.1280 1,001 9/9/2025
3.0.1279 918 9/3/2025
3.0.1278 400 9/3/2025
3.0.1277 140 9/3/2025
3.0.1276 2,304 9/3/2025
3.0.1275 137 9/3/2025
3.0.1274 3,799 8/16/2025
3.0.1273 3,588 8/11/2025
3.0.1272 327 8/11/2025
3.0.1271 123 8/11/2025
3.0.1270 152 8/11/2025
3.0.1269 130 8/11/2025
3.0.1268 124 8/11/2025
3.0.1267 1,079 8/11/2025
3.0.1266 4,113 8/5/2025
3.0.1265 423 8/5/2025
3.0.1264 511 7/29/2025
3.0.1263 3,802 7/9/2025
3.0.1262 814 7/8/2025
3.0.1261 4,137 7/2/2025
3.0.1260 1,165 7/1/2025
3.0.1259 1,895 6/28/2025
3.0.1258 1,147 6/28/2025
3.0.1257 77 6/28/2025
3.0.1256 106 6/27/2025
3.0.1255 76 6/27/2025
3.0.1254 612 6/27/2025
3.0.1253 3,005 6/24/2025
3.0.1252 3,084 6/11/2025
3.0.1251 1,759 6/10/2025
3.0.1250 408 6/10/2025
3.0.1249 2,949 6/2/2025
3.0.1248 1,887 5/27/2025
3.0.1247 159 5/27/2025
3.0.1246 515 5/27/2025
3.0.1245 164 5/27/2025
3.0.1244 290 5/27/2025
3.0.1243 2,827 5/25/2025
3.0.1242 1,716 5/23/2025
3.0.1241 470 5/23/2025
3.0.1240 146 5/23/2025
3.0.1239 901 5/22/2025
3.0.1238 163 5/22/2025
3.0.1237 546 5/22/2025
3.0.1236 3,739 5/14/2025
3.0.1235 348 5/13/2025
3.0.1234 2,770 5/8/2025
3.0.1233 612 5/8/2025
3.0.1232 159 5/8/2025
3.0.1231 683 5/7/2025
3.0.1230 174 5/7/2025
3.0.1229 331 5/7/2025
3.0.1228 2,730 5/5/2025
3.0.1227 1,099 5/5/2025
3.0.1226 453 5/5/2025
3.0.1225 162 5/5/2025
3.0.1224 317 5/5/2025
3.0.1223 157 5/5/2025
3.0.1222 413 5/5/2025
3.0.1221 154 5/5/2025
3.0.1220 3,954 4/27/2025
3.0.1219 849 4/26/2025
3.0.1218 2,058 4/9/2025
3.0.1217 767 4/9/2025
3.0.1216 195 4/9/2025
3.0.1215 715 4/8/2025
3.0.1214 289 4/8/2025
3.0.1213 977 4/8/2025
3.0.1212 690 4/8/2025
3.0.1211 547 4/8/2025
3.0.1210 1,059 4/8/2025
3.0.1209 2,172 4/8/2025
3.0.1208 970 4/8/2025
3.0.1207 2,083 4/7/2025
3.0.1206 1,437 4/7/2025
3.0.1205 2,561 4/7/2025
3.0.1204 859 4/7/2025
3.0.1203 473 4/7/2025
3.0.1202 900 4/6/2025
3.0.1201 176 4/6/2025
3.0.1200 342 4/6/2025
3.0.1199 554 4/6/2025
3.0.1198 150 4/6/2025
3.0.1197 782 4/6/2025
3.0.1196 140 4/6/2025
3.0.1195 729 4/6/2025
3.0.1194 118 4/6/2025
3.0.1193 122 4/6/2025
3.0.1192 1,069 4/5/2025
3.0.1191 431 4/5/2025
3.0.1190 570 4/5/2025
3.0.1189 111 4/5/2025
3.0.1188 117 4/4/2025
3.0.1187 615 4/4/2025
3.0.1186 11,023 4/1/2025
3.0.1185 634 4/1/2025
3.0.1184 2,764 3/31/2025
3.0.1183 1,281 3/31/2025
3.0.1182 1,980 3/29/2025
3.0.1181 452 3/29/2025
3.0.1180 3,194 3/25/2025
3.0.1179 2,753 3/21/2025
3.0.1178 4,360 3/15/2025
3.0.1177 2,413 3/12/2025
3.0.1176 721 3/11/2025
3.0.1175 653 3/11/2025
3.0.1174 596 3/11/2025
3.0.1173 1,031 3/11/2025
3.0.1172 191 3/11/2025
3.0.1171 1,450 3/11/2025
3.0.1170 184 3/11/2025
3.0.1169 5,767 3/2/2025
3.0.1168 317 3/2/2025
3.0.1167 1,174 3/1/2025
3.0.1166 699 3/1/2025
3.0.1165 660 3/1/2025
3.0.1164 234 3/1/2025
3.0.1163 134 3/1/2025
3.0.1162 1,039 3/1/2025
3.0.1161 120 3/1/2025
3.0.1160 427 3/1/2025
3.0.1159 113 3/1/2025
3.0.1158 716 3/1/2025
3.0.1157 116 3/1/2025
3.0.1156 3,370 2/25/2025
3.0.1155 700 2/25/2025
3.0.1154 717 2/25/2025
3.0.1153 1,085 2/24/2025
3.0.1152 111 2/24/2025
3.0.1151 2,321 2/23/2025
3.0.1150 3,698 2/22/2025
3.0.1149 147 2/22/2025
3.0.1148 901 2/22/2025
3.0.1147 846 2/21/2025
3.0.1146 1,586 2/21/2025
3.0.1145 2,906 2/19/2025
3.0.1144 1,121 2/18/2025
3.0.1143 1,147 2/18/2025
3.0.1142 1,170 2/18/2025
3.0.1141 123 2/18/2025
3.0.1140 2,727 2/14/2025
3.0.1139 983 2/13/2025
3.0.1138 2,241 2/12/2025
3.0.1137 504 2/12/2025
3.0.1136 378 2/12/2025
3.0.1135 262 2/11/2025
3.0.1134 131 2/11/2025
3.0.1133 384 2/11/2025
3.0.1132 387 2/11/2025
3.0.1131 130 2/11/2025
3.0.1130 1,680 2/11/2025
3.0.1129 142 2/11/2025
3.0.1128 1,095 2/11/2025
3.0.1127 587 2/11/2025
3.0.1126 134 2/11/2025
3.0.1125 1,193 2/10/2025
3.0.1124 364 2/10/2025
3.0.1123 404 2/10/2025
3.0.1122 500 2/10/2025
3.0.1121 128 2/10/2025
3.0.1120 680 2/10/2025
3.0.1119 709 2/9/2025
3.0.1118 780 2/9/2025
3.0.1117 906 2/8/2025
3.0.1116 309 2/8/2025
3.0.1115 607 2/7/2025
3.0.1114 136 2/7/2025
3.0.1113 223 2/7/2025
3.0.1112 676 2/7/2025
3.0.1111 1,694 2/7/2025
3.0.1110 121 2/7/2025
3.0.1109 506 2/7/2025
3.0.1108 254 2/7/2025
3.0.1107 139 2/7/2025
3.0.1106 130 2/7/2025
3.0.1105 127 2/7/2025
3.0.1104 122 2/7/2025
3.0.1103 4,027 2/5/2025
3.0.1102 281 2/5/2025
3.0.1101 685 2/5/2025
3.0.1100 145 2/5/2025
3.0.1099 679 2/5/2025
3.0.1098 517 2/5/2025
3.0.1097 13,876 1/28/2025
3.0.1096 1,076 1/28/2025
3.0.1095 4,750 1/27/2025
3.0.1094 120 1/27/2025
3.0.1093 2,258 1/27/2025
3.0.1092 5,744 1/26/2025
3.0.1091 180 1/26/2025
3.0.1090 1,722 1/25/2025
3.0.1089 121 1/25/2025
3.0.1088 1,460 1/25/2025
3.0.1087 2,053 1/25/2025
3.0.1086 490 1/25/2025
3.0.1085 5,653 1/24/2025
3.0.1084 5,499 1/24/2025
3.0.1083 2,501 1/24/2025
3.0.1082 2,649 1/24/2025
3.0.1081 112 1/24/2025
3.0.1080 413 1/24/2025
3.0.1079 122 1/24/2025
3.0.1078 2,983 1/23/2025
3.0.1077 662 1/23/2025
3.0.1076 5,517 1/21/2025
3.0.1075 1,220 1/21/2025
3.0.1074 1,263 1/21/2025
3.0.1073 648 1/21/2025
3.0.1072 1,600 1/21/2025
3.0.1071 3,574 1/21/2025
3.0.1070 3,032 1/21/2025
3.0.1069 140 1/21/2025
3.0.1068 227 1/20/2025
3.0.1067 228 1/20/2025
3.0.1066 115 1/20/2025
3.0.1065 440 1/20/2025
3.0.1064 2,850 1/20/2025
3.0.1063 123 1/20/2025
3.0.1062 3,180 1/20/2025
3.0.1061 117 1/20/2025
3.0.1060 1,144 1/20/2025
3.0.1059 6,856 1/19/2025
3.0.1058 872 1/19/2025
3.0.1057 247 1/19/2025
3.0.1056 257 1/18/2025
3.0.1055 947 1/18/2025
3.0.1054 226 1/18/2025
3.0.1053 3,089 1/18/2025
3.0.1052 673 1/17/2025
3.0.1051 608 1/17/2025
3.0.1050 808 1/17/2025
3.0.1049 394 1/17/2025
3.0.1048 209 1/16/2025
3.0.1047 12,151 1/16/2025
3.0.1046 1,610 1/16/2025
3.0.1045 2,232 1/16/2025
3.0.1044 2,080 1/16/2025
3.0.1043 497 1/16/2025
3.0.1042 337 1/15/2025
3.0.1041 3,469 1/15/2025
3.0.1040 381 1/15/2025
3.0.1039 617 1/15/2025
3.0.1038 3,008 1/15/2025
3.0.1037 113 1/15/2025
3.0.1036 271 1/15/2025
3.0.1035 702 1/15/2025
3.0.1034 592 1/15/2025
3.0.1033 98 1/15/2025
3.0.1032 1,520 1/15/2025
3.0.1031 86 1/15/2025
3.0.1030 644 1/14/2025
3.0.1029 204 1/14/2025
3.0.1028 111 1/14/2025
3.0.1027 1,931 1/14/2025
3.0.1026 8,288 1/13/2025
3.0.1025 2,885 1/13/2025
3.0.1024 207 1/12/2025
3.0.1023 4,455 1/11/2025
3.0.1022 980 1/11/2025
3.0.1021 735 1/11/2025
3.0.1020 191 1/10/2025
3.0.1019 128 1/10/2025
3.0.1018 2,720 1/10/2025
3.0.1017 265 1/10/2025
3.0.1016 119 1/10/2025
3.0.1015 1,650 1/10/2025
3.0.1014 116 1/10/2025
3.0.1013 4,602 1/8/2025
3.0.1012 2,116 1/3/2025
3.0.1011 1,076 1/3/2025
3.0.1010 2,510 1/2/2025
3.0.1009 131 1/2/2025
3.0.1008 149 1/2/2025
3.0.1007 1,403 1/2/2025
3.0.1006 139 1/2/2025
3.0.1005 141 1/2/2025
3.0.1004 737 1/1/2025
3.0.1003 234 1/1/2025
3.0.1002 229 1/1/2025
3.0.1001 251 1/1/2025
3.0.1000 130 1/1/2025
3.0.999 5,032 12/31/2024
3.0.998 133 12/31/2024
3.0.997 695 12/31/2024
3.0.995 3,754 12/31/2024
3.0.994 947 12/31/2024
3.0.993 3,808 12/31/2024
3.0.992 296 12/31/2024
3.0.991 496 12/31/2024
3.0.990 3,629 12/31/2024
3.0.989 121 12/31/2024
3.0.988 128 12/31/2024
3.0.987 118 12/31/2024
3.0.986 2,739 12/31/2024
3.0.985 6,754 12/28/2024
3.0.984 1,630 12/27/2024
3.0.983 6,507 12/24/2024
3.0.982 376 12/24/2024
3.0.981 363 12/24/2024
3.0.980 644 12/24/2024
3.0.979 1,427 12/24/2024
3.0.978 117 12/24/2024
3.0.977 361 12/24/2024
3.0.976 203 12/24/2024
3.0.975 442 12/23/2024
3.0.974 446 12/23/2024
3.0.973 198 12/23/2024
3.0.972 369 12/23/2024
3.0.971 364 12/23/2024
3.0.970 514 12/22/2024
3.0.969 9,047 12/22/2024
3.0.968 5,441 12/22/2024
3.0.967 1,095 12/22/2024
3.0.966 122 12/22/2024
3.0.965 4,705 12/22/2024
3.0.964 121 12/22/2024
3.0.963 552 12/21/2024
3.0.962 123 12/21/2024
3.0.961 130 12/21/2024
3.0.960 1,578 12/21/2024
3.0.959 124 12/21/2024
3.0.958 2,699 12/21/2024
3.0.957 1,628 12/21/2024
3.0.956 126 12/21/2024
3.0.955 1,261 12/21/2024
3.0.954 1,800 12/21/2024
3.0.953 130 12/21/2024
3.0.952 259 12/21/2024
3.0.951 573 12/20/2024
3.0.950 126 12/20/2024
3.0.949 175 12/20/2024
3.0.948 125 12/20/2024
3.0.947 2,040 12/20/2024
3.0.946 1,532 12/20/2024
3.0.945 1,172 12/20/2024
3.0.944 4,375 12/20/2024
3.0.943 196 12/19/2024
3.0.942 125 12/19/2024
3.0.941 121 12/19/2024
3.0.939 6,588 12/17/2024
3.0.937 295 12/17/2024
3.0.936 133 12/17/2024
3.0.935 909 12/17/2024
3.0.934 314 12/17/2024
3.0.933 120 12/17/2024
3.0.932 158 12/16/2024
3.0.931 129 12/16/2024
3.0.930 921 12/16/2024
3.0.929 5,127 12/10/2024
3.0.928 127 12/10/2024
3.0.927 1,253 12/9/2024
3.0.926 124 12/9/2024
3.0.925 2,432 12/9/2024
3.0.924 374 12/9/2024
3.0.923 421 12/9/2024
3.0.922 131 12/9/2024
3.0.921 5,846 12/6/2024
3.0.920 123 12/6/2024
3.0.919 771 12/6/2024
3.0.918 2,087 12/6/2024
3.0.917 2,630 12/6/2024
3.0.916 1,109 12/6/2024
3.0.914 1,937 12/6/2024
3.0.913 130 12/6/2024
3.0.912 135 12/6/2024
3.0.911 4,724 12/5/2024
3.0.910 128 12/5/2024
3.0.909 236 12/5/2024
3.0.908 139 12/5/2024
3.0.907 3,754 12/5/2024
3.0.906 1,821 12/5/2024
3.0.905 222 12/5/2024
3.0.904 129 12/5/2024
3.0.903 916 12/5/2024
3.0.902 137 12/5/2024
3.0.901 2,454 12/4/2024
3.0.900 131 12/4/2024
3.0.899 126 12/4/2024
3.0.898 1,806 12/4/2024
3.0.897 135 12/4/2024
3.0.896 140 12/4/2024
3.0.895 1,457 12/4/2024
3.0.894 135 12/4/2024
3.0.893 127 12/4/2024
3.0.892 868 12/4/2024
3.0.891 1,941 12/4/2024
3.0.890 2,220 12/3/2024
3.0.889 132 12/3/2024
3.0.888 122 12/3/2024
3.0.887 1,022 12/3/2024
3.0.886 138 12/3/2024
3.0.885 1,483 12/3/2024
3.0.884 131 12/3/2024
3.0.883 2,594 12/3/2024
3.0.882 317 12/3/2024
3.0.881 127 12/3/2024
3.0.880 1,185 12/3/2024
3.0.879 116 12/3/2024
3.0.878 123 12/3/2024
3.0.877 2,385 12/2/2024
3.0.876 819 12/2/2024
3.0.875 120 12/2/2024
3.0.874 2,741 12/2/2024
3.0.873 127 12/2/2024
3.0.872 499 12/1/2024
3.0.871 139 12/1/2024
3.0.870 131 12/1/2024
3.0.869 2,573 12/1/2024
3.0.868 140 12/1/2024
3.0.867 126 12/1/2024
3.0.866 4,029 12/1/2024
3.0.865 771 12/1/2024
3.0.864 2,768 11/29/2024
3.0.863 373 11/29/2024
3.0.862 4,362 11/20/2024
3.0.861 132 11/20/2024
3.0.860 3,884 11/20/2024
3.0.859 303 11/20/2024
3.0.858 139 11/20/2024
3.0.857 137 11/20/2024
3.0.856 379 11/20/2024
3.0.855 316 11/20/2024
3.0.854 382 11/20/2024
3.0.853 374 11/19/2024
3.0.852 131 11/19/2024
3.0.851 124 11/19/2024
3.0.850 788 11/19/2024
3.0.849 117 11/19/2024
3.0.848 2,840 11/19/2024
3.0.847 595 11/19/2024
3.0.846 118 11/19/2024
3.0.845 2,513 11/19/2024
3.0.844 117 11/19/2024
3.0.843 113 11/19/2024
3.0.842 7,291 11/14/2024
3.0.841 183 11/14/2024
3.0.840 1,007 11/14/2024
3.0.839 932 11/14/2024
3.0.838 128 11/14/2024
3.0.837 843 11/14/2024
3.0.836 127 11/14/2024
3.0.835 2,662 11/14/2024
3.0.834 140 11/14/2024
3.0.833 130 11/14/2024
3.0.832 693 11/14/2024
3.0.831 124 11/14/2024
3.0.830 133 11/14/2024
3.0.829 149 11/14/2024
3.0.828 134 11/14/2024
3.0.827 136 11/14/2024
2.1.826 1,956 11/13/2024
2.1.825 9,044 11/13/2024
2.1.824 128 11/13/2024
2.1.823 1,134 11/13/2024
2.1.822 147 11/13/2024
2.1.821 1,197 11/12/2024
2.1.820 139 11/12/2024
2.1.819 990 11/12/2024
2.1.818 7,001 11/9/2024
2.1.817 448 11/9/2024
2.1.816 142 11/9/2024
2.1.815 134 11/9/2024
2.1.814 1,305 11/9/2024
2.1.813 752 11/8/2024
2.1.812 126 11/8/2024
2.1.811 1,140 11/8/2024
2.1.810 132 11/8/2024
2.1.809 168 11/8/2024
2.1.808 128 11/8/2024
2.1.807 279 11/8/2024
2.1.806 3,128 11/8/2024
2.1.805 132 11/8/2024
2.1.804 3,558 11/8/2024
2.1.803 129 11/8/2024
2.1.802 11,487 11/1/2024
2.1.801 613 10/31/2024
2.1.800 4,565 10/29/2024
2.1.799 412 10/29/2024
2.1.798 921 10/29/2024
2.1.797 167 10/29/2024
2.1.796 1,668 10/29/2024
2.1.795 123 10/29/2024
2.1.794 6,168 10/28/2024
2.1.793 132 10/28/2024
2.1.792 2,169 10/28/2024
2.1.791 4,335 10/26/2024
2.1.790 122 10/26/2024
2.1.789 4,409 10/22/2024
2.1.788 932 10/22/2024
2.1.787 646 10/22/2024
2.1.786 136 10/22/2024
2.1.785 133 10/22/2024
2.1.784 2,570 10/22/2024
2.1.783 5,319 10/17/2024
2.1.782 2,054 10/17/2024
2.1.781 3,313 10/15/2024
2.1.780 496 10/14/2024
2.1.779 129 10/14/2024
2.1.778 5,327 10/11/2024
2.1.777 2,020 10/11/2024
2.1.776 129 10/11/2024
2.1.775 1,584 10/11/2024
2.1.774 5,734 10/9/2024
2.1.773 1,788 10/9/2024
2.1.772 482 10/8/2024
2.1.771 139 10/8/2024
2.1.770 1,547 10/8/2024
2.1.769 140 10/8/2024
2.1.768 4,398 10/8/2024
2.1.767 439 10/8/2024
2.1.766 7,831 10/3/2024
2.1.765 129 10/3/2024
2.1.764 1,604 10/3/2024
2.1.763 646 10/3/2024
2.1.762 141 10/3/2024
2.1.761 6,066 10/2/2024
2.1.760 494 10/2/2024
2.1.759 1,715 10/2/2024
2.1.758 143 10/2/2024
2.1.757 3,785 10/1/2024
2.1.756 3,885 10/1/2024
2.1.755 123 10/1/2024
2.1.754 595 10/1/2024
2.1.753 3,308 10/1/2024
2.1.752 299 10/1/2024
2.1.751 455 9/30/2024
2.1.750 2,673 9/30/2024
2.1.749 2,925 9/29/2024
2.1.748 1,784 9/29/2024
2.1.747 123 9/29/2024
2.1.746 526 9/29/2024
2.1.745 1,117 9/29/2024
2.1.744 133 9/29/2024
2.1.743 4,799 9/27/2024
2.1.742 563 9/27/2024
2.1.741 2,288 9/27/2024
2.1.740 133 9/27/2024
2.1.739 359 9/27/2024
2.1.738 572 9/27/2024
2.1.737 151 9/27/2024
2.1.736 130 9/27/2024
2.1.735 4,559 9/27/2024
2.1.734 3,703 9/26/2024
2.1.733 402 9/26/2024
2.1.732 6,005 9/26/2024
2.1.731 174 9/26/2024
2.1.730 1,431 9/26/2024
2.1.729 2,178 9/26/2024
2.1.728 7,020 9/23/2024
2.1.727 506 9/23/2024
2.1.726 808 9/23/2024
2.1.725 987 9/23/2024
2.1.724 1,091 9/23/2024
2.1.723 143 9/23/2024
2.1.722 3,575 9/23/2024
2.1.721 128 9/23/2024
2.1.720 3,109 9/23/2024
2.1.719 137 9/23/2024
2.1.718 789 9/23/2024
2.1.717 136 9/23/2024
2.1.716 130 9/23/2024
2.1.715 903 9/23/2024
2.1.714 130 9/23/2024
2.1.713 133 9/23/2024
2.1.712 2,805 9/23/2024
2.1.711 129 9/23/2024
2.1.710 6,534 9/18/2024
2.1.709 995 9/17/2024
2.1.708 797 9/17/2024
2.1.707 137 9/17/2024
2.1.706 456 9/17/2024
2.1.705 1,044 9/17/2024
2.1.704 258 9/17/2024
2.1.703 2,043 9/17/2024
2.1.702 143 9/17/2024
2.1.701 2,790 9/17/2024
2.1.700 2,006 9/17/2024
2.1.699 1,179 9/17/2024
2.1.698 1,938 9/17/2024
2.1.697 10,209 9/16/2024
2.1.696 138 9/16/2024
2.1.695 4,203 9/12/2024
2.1.694 145 9/12/2024
2.1.693 1,032 9/11/2024
2.1.692 229 9/11/2024
2.1.690 5,418 9/11/2024
2.1.689 357 9/11/2024
2.1.688 1,705 9/11/2024
2.1.687 3,318 9/11/2024
2.1.686 7,957 9/10/2024
2.1.685 415 9/10/2024
2.1.684 663 9/10/2024
2.1.683 455 9/10/2024
2.1.682 130 9/10/2024
2.1.681 641 9/9/2024
2.1.680 141 9/9/2024
2.1.679 359 9/9/2024
2.1.678 3,447 9/9/2024
2.1.677 130 9/9/2024
2.1.676 794 9/9/2024
2.1.675 168 9/9/2024
2.1.674 576 9/9/2024
2.1.673 3,671 9/9/2024
2.1.672 133 9/9/2024
2.1.671 270 9/9/2024
2.1.670 136 9/9/2024
2.1.669 134 9/9/2024
2.1.668 10,616 9/7/2024
2.1.667 1,845 9/6/2024
2.1.666 4,736 9/6/2024
2.1.665 141 9/6/2024
2.1.664 1,882 9/5/2024
2.1.663 1,133 9/5/2024
2.1.662 123 9/5/2024
2.1.661 134 9/5/2024
2.1.660 2,131 9/5/2024
2.1.659 2,392 9/5/2024
2.1.658 146 9/5/2024
2.1.657 136 9/5/2024
2.1.656 601 9/5/2024
2.1.655 147 9/5/2024
2.1.654 154 9/5/2024
2.1.653 4,518 9/5/2024
2.1.652 152 9/5/2024
2.1.651 3,633 9/4/2024
2.1.650 3,846 9/4/2024
2.1.649 4,142 9/3/2024
2.1.648 147 9/3/2024
2.1.647 3,061 9/3/2024
2.1.646 133 9/3/2024
2.1.645 2,220 9/3/2024
2.1.644 1,461 9/3/2024
2.1.643 121 9/3/2024
2.1.642 4,746 8/29/2024
2.1.641 134 8/29/2024
2.1.640 4,587 8/26/2024
2.1.639 1,165 8/26/2024
2.1.638 4,251 8/21/2024
2.1.637 266 8/21/2024
2.1.636 1,518 8/21/2024
2.1.635 162 8/21/2024
2.1.634 1,027 8/20/2024
2.1.633 146 8/20/2024
2.1.632 172 8/20/2024
2.1.631 2,111 8/20/2024
2.1.630 1,184 8/20/2024
2.1.629 148 8/20/2024
2.1.628 127 8/20/2024
2.1.627 155 8/20/2024
2.1.626 2,412 8/20/2024
2.1.625 150 8/20/2024
2.1.624 4,428 8/20/2024
2.1.623 2,200 8/19/2024
2.1.622 4,786 8/15/2024
2.1.621 685 8/15/2024
2.1.620 6,007 8/13/2024
2.1.619 624 8/13/2024
2.1.618 4,885 8/7/2024
2.1.617 438 8/6/2024
2.1.616 2,956 8/6/2024
2.1.615 106 8/6/2024
2.1.614 3,625 8/1/2024
2.1.613 510 8/1/2024
2.1.611 358 8/1/2024
2.1.610 321 8/1/2024
2.1.609 6,689 7/25/2024
2.1.608 295 7/25/2024
2.1.607 528 7/25/2024
2.1.606 140 7/25/2024
2.1.605 712 7/25/2024
2.1.604 119 7/25/2024
2.1.603 186 7/24/2024
2.1.602 426 7/24/2024
2.1.601 253 7/24/2024
2.1.600 1,072 7/24/2024
2.1.599 2,524 7/24/2024
2.1.598 1,866 7/20/2024
2.1.597 4,079 7/20/2024
2.1.596 5,801 7/14/2024
2.1.595 127 7/14/2024
2.1.594 2,917 7/14/2024
2.1.593 116 7/14/2024
2.1.592 494 7/14/2024
2.1.591 3,897 7/10/2024
2.1.590 299 7/10/2024
2.1.589 654 7/10/2024
2.1.588 122 7/10/2024
2.1.587 2,142 7/10/2024
2.1.586 101 7/10/2024
2.1.585 97 7/10/2024
2.1.584 93 7/10/2024
2.1.583 1,056 7/10/2024
2.1.582 105 7/10/2024
2.1.581 178 7/10/2024
2.1.580 120 7/10/2024
2.1.579 121 7/10/2024
2.1.578 985 7/10/2024
2.1.577 122 7/10/2024
2.1.576 890 7/10/2024
2.1.575 125 7/10/2024
2.1.574 120 7/10/2024
2.1.573 555 7/9/2024
2.1.572 123 7/9/2024
2.1.569 831 7/9/2024
2.1.568 112 7/9/2024
2.1.567 740 7/9/2024
2.1.566 118 7/9/2024
2.1.565 4,799 7/9/2024
2.1.564 123 7/9/2024
2.1.563 134 7/9/2024
2.1.562 4,910 7/9/2024
2.1.561 116 7/9/2024
2.1.560 121 7/9/2024
2.1.559 1,440 7/9/2024
2.1.558 408 7/9/2024
2.1.557 145 7/9/2024
2.1.556 2,671 7/8/2024
2.1.555 126 7/8/2024
2.1.554 114 7/8/2024
2.1.553 546 7/8/2024
2.1.552 115 7/8/2024
2.1.551 106 7/8/2024
2.1.550 5,343 7/8/2024
2.1.549 126 7/8/2024
2.1.548 200 7/8/2024
2.1.547 2,271 7/7/2024
2.1.546 1,741 7/7/2024
2.1.545 122 7/7/2024
2.1.544 577 7/7/2024
2.1.543 117 7/7/2024
2.1.542 1,051 7/7/2024
2.1.541 315 7/7/2024
2.1.540 126 7/7/2024
2.1.539 129 7/7/2024
2.1.538 1,596 7/7/2024
2.1.537 5,969 7/4/2024
2.1.536 996 7/3/2024
2.1.535 1,721 7/3/2024
2.1.534 2,087 7/3/2024
2.1.533 129 7/3/2024
2.1.532 693 7/3/2024
2.1.531 2,574 7/3/2024
2.1.530 704 7/3/2024
2.1.529 2,274 6/30/2024
2.1.528 1,546 6/28/2024
2.1.527 5,095 6/22/2024
2.1.526 147 6/22/2024
2.1.525 6,203 6/15/2024
2.1.524 125 6/15/2024
2.1.523 2,154 6/15/2024
2.1.522 3,530 6/14/2024
2.1.521 138 6/14/2024
2.1.520 1,739 6/14/2024
2.1.519 2,248 6/12/2024
2.1.518 4,401 6/1/2024
2.1.517 541 6/1/2024
2.1.516 896 6/1/2024
2.1.515 485 6/1/2024
2.1.514 141 6/1/2024
2.1.513 1,660 6/1/2024
2.1.512 4,410 5/31/2024
2.1.511 140 5/31/2024
2.1.510 3,909 5/29/2024
2.1.509 130 5/29/2024
2.1.508 4,683 5/28/2024
2.1.507 113 5/28/2024
2.1.506 2,759 5/27/2024
2.1.505 116 5/27/2024
2.1.504 114 5/27/2024
2.1.503 1,286 5/27/2024
2.1.502 3,281 5/26/2024
2.1.501 114 5/26/2024
2.1.500 4,691 5/26/2024
2.1.499 123 5/26/2024
2.1.498 1,238 5/26/2024
2.1.497 256 5/25/2024
2.1.496 123 5/25/2024
2.1.495 1,282 5/25/2024
2.1.494 125 5/25/2024
2.1.493 122 5/25/2024
2.1.492 127 5/25/2024
2.1.491 1,952 5/25/2024
2.1.490 124 5/25/2024
2.1.489 125 5/25/2024
2.1.488 1,143 5/25/2024
2.1.487 109 5/25/2024
2.1.486 132 5/25/2024
2.1.485 1,012 5/25/2024
2.1.484 129 5/25/2024
2.1.483 124 5/25/2024
2.1.482 6,252 5/23/2024
2.1.481 506 5/23/2024
2.1.480 1,688 5/23/2024
2.1.479 128 5/23/2024
2.1.478 1,279 5/23/2024
2.1.477 118 5/23/2024
2.1.476 133 5/22/2024
2.1.475 126 5/22/2024
2.1.474 126 5/22/2024
2.1.473 1,769 5/22/2024
2.1.472 127 5/22/2024
2.1.471 119 5/22/2024
2.1.470 1,019 5/22/2024
2.1.469 130 5/22/2024
2.1.468 4,046 5/22/2024
2.1.467 3,606 5/18/2024
2.1.466 173 5/18/2024
2.1.465 1,031 5/17/2024
2.1.464 145 5/17/2024
2.1.463 1,754 5/17/2024
2.1.462 152 5/17/2024
2.1.461 152 5/17/2024
2.1.460 3,277 5/16/2024
2.1.459 233 5/16/2024
2.1.458 138 5/16/2024
2.1.457 1,591 5/15/2024
2.1.456 1,243 5/15/2024
2.1.455 145 5/15/2024
2.1.454 5,202 5/13/2024
2.1.453 118 5/13/2024
2.1.452 3,289 5/3/2024
2.1.451 2,973 4/30/2024
2.1.450 422 4/29/2024
2.1.449 1,624 4/29/2024
2.1.448 139 4/29/2024
2.1.447 3,343 4/29/2024
2.1.446 149 4/28/2024
2.1.445 143 4/28/2024
2.1.444 514 4/28/2024
2.1.443 152 4/28/2024
2.1.442 1,701 4/28/2024
2.1.441 135 4/28/2024
2.1.440 132 4/28/2024
2.1.439 3,363 4/28/2024
2.1.438 139 4/28/2024
2.1.437 1,705 4/28/2024
2.1.436 152 4/28/2024
2.1.435 149 4/28/2024
2.1.434 492 4/28/2024
2.1.433 139 4/28/2024
2.1.432 137 4/28/2024
2.1.431 2,634 4/27/2024
2.1.430 155 4/27/2024
2.1.429 6,308 4/19/2024
2.1.428 147 4/19/2024
2.1.427 3,545 4/19/2024
2.1.426 922 4/18/2024
2.1.425 3,765 4/15/2024
2.1.424 2,473 4/12/2024
2.1.423 1,841 4/12/2024
2.1.422 1,525 4/12/2024
2.1.421 136 4/12/2024
2.1.420 1,999 4/12/2024
2.1.419 155 4/12/2024
2.1.418 740 4/12/2024
2.1.417 634 4/11/2024
2.1.416 9,121 4/10/2024
2.1.415 142 4/10/2024
2.1.414 2,198 4/9/2024
2.1.413 3,606 4/2/2024
2.1.412 161 4/2/2024
2.1.411 369 4/1/2024
2.1.410 145 4/1/2024
2.1.409 268 4/1/2024
2.1.408 5,729 3/29/2024
2.1.407 1,251 3/29/2024
2.1.406 3,089 3/25/2024
2.1.405 163 3/25/2024
2.1.404 846 3/25/2024
2.1.403 1,476 3/25/2024
2.1.402 3,754 3/20/2024
2.1.401 150 3/20/2024
2.1.400 3,719 3/19/2024
2.1.399 163 3/19/2024
2.1.398 1,722 3/19/2024
2.1.397 172 3/19/2024
2.1.396 1,350 3/19/2024
2.1.395 1,458 3/18/2024
2.1.394 991 3/18/2024
2.1.393 4,182 3/15/2024
2.1.392 157 3/15/2024
2.1.391 3,644 3/13/2024
2.1.390 596 3/13/2024
2.1.389 467 3/13/2024
2.1.388 154 3/13/2024
2.1.387 1,592 3/13/2024
2.1.386 373 3/13/2024
2.1.385 171 3/13/2024
2.1.384 158 3/13/2024
2.1.383 2,863 3/13/2024
2.1.382 161 3/13/2024
2.1.381 242 3/12/2024
2.1.380 160 3/12/2024
2.1.379 2,811 3/12/2024
2.1.378 151 3/12/2024
2.1.377 4,062 3/11/2024
2.1.376 388 3/11/2024
2.1.375 3,371 3/11/2024
2.1.374 232 3/11/2024
2.1.373 2,897 3/10/2024
2.1.372 1,420 3/10/2024
2.1.371 3,312 3/8/2024
2.1.370 170 3/8/2024
2.1.369 1,865 3/8/2024
2.1.368 1,366 3/8/2024
2.1.367 154 3/8/2024
2.1.366 2,070 3/8/2024
2.1.365 2,087 3/6/2024
2.1.364 425 3/6/2024
2.1.363 3,594 3/4/2024
2.1.362 163 3/4/2024
2.1.361 1,766 3/4/2024
2.1.360 160 3/4/2024
2.1.359 2,328 3/3/2024
2.1.358 2,200 3/3/2024
2.1.357 240 3/2/2024
2.1.356 161 3/2/2024
2.1.355 1,943 3/2/2024
2.1.354 168 3/2/2024
2.1.353 14,203 2/25/2024
2.1.352 1,256 2/25/2024
2.1.351 158 2/25/2024
2.1.350 476 2/25/2024
2.1.349 1,881 2/25/2024
2.1.348 1,750 2/23/2024
2.1.347 574 2/23/2024
2.1.346 3,766 2/22/2024
2.1.345 154 2/22/2024
2.1.344 819 2/22/2024
2.1.343 231 2/22/2024
2.1.342 159 2/22/2024
2.1.341 2,220 2/21/2024
2.1.340 154 2/21/2024
2.1.339 2,008 2/21/2024
2.1.338 164 2/21/2024
2.1.337 155 2/21/2024
2.1.336 167 2/21/2024
2.1.335 1,952 2/21/2024
2.1.334 753 2/21/2024
2.1.333 150 2/21/2024
2.1.332 142 2/21/2024
2.1.331 1,763 2/21/2024
2.1.330 1,967 2/21/2024
2.1.329 150 2/21/2024
2.1.328 149 2/21/2024
2.1.327 162 2/21/2024
2.1.326 2,590 2/20/2024
2.1.325 145 2/20/2024
2.1.324 2,181 2/20/2024
2.1.323 157 2/20/2024
2.1.322 2,025 2/20/2024
2.1.321 150 2/20/2024
2.1.320 150 2/20/2024
2.1.319 924 2/20/2024
2.1.318 336 2/19/2024
2.1.317 3,344 2/19/2024
2.1.316 146 2/19/2024
2.1.315 2,266 2/19/2024
2.1.314 2,514 2/17/2024
2.1.313 151 2/17/2024
2.1.312 1,473 2/17/2024
2.1.311 150 2/17/2024
2.1.310 326 2/17/2024
2.1.309 889 2/16/2024
2.1.308 147 2/16/2024
2.1.307 134 2/16/2024
2.1.306 190 2/16/2024
2.1.305 148 2/16/2024
2.1.304 2,133 2/16/2024
2.1.303 150 2/16/2024
2.1.302 2,691 2/16/2024
2.1.301 153 2/16/2024
2.1.300 152 2/16/2024
2.1.299 287 2/16/2024
2.1.298 161 2/16/2024
2.1.297 1,323 2/16/2024
2.1.296 148 2/16/2024
2.1.295 3,680 2/14/2024
2.1.294 1,569 2/13/2024
2.1.293 146 2/13/2024
2.1.292 1,480 2/13/2024
2.1.291 1,774 2/13/2024
2.1.290 1,000 2/13/2024
2.1.289 152 2/13/2024
2.1.288 1,935 2/13/2024
2.1.287 1,230 2/13/2024
2.1.286 162 2/13/2024
2.1.285 3,233 2/12/2024
2.1.284 155 2/12/2024
2.1.283 1,854 2/11/2024
2.1.282 2,115 2/11/2024
2.1.281 160 2/11/2024
2.1.280 1,999 2/11/2024
2.1.279 1,385 2/11/2024
2.1.278 3,614 2/10/2024
2.1.277 384 2/10/2024
2.1.276 153 2/10/2024
2.1.275 1,199 2/9/2024
2.1.274 2,989 2/9/2024
2.1.273 154 2/9/2024
2.1.272 2,350 2/9/2024
2.1.271 681 2/9/2024
2.1.270 176 2/8/2024
2.1.269 151 2/8/2024
2.1.268 3,344 2/8/2024
2.1.267 159 2/8/2024
2.1.266 617 2/8/2024
2.1.265 7,788 2/8/2024
2.1.264 1,448 2/8/2024
2.1.263 164 2/8/2024
2.1.262 4,181 2/7/2024
2.1.261 159 2/7/2024
2.1.260 910 2/7/2024
2.1.259 2,027 2/7/2024
2.1.258 635 2/7/2024
2.1.257 169 2/7/2024
2.1.256 166 2/7/2024
2.1.255 278 2/7/2024
2.1.254 155 2/7/2024
2.1.253 145 2/7/2024
2.1.252 668 2/6/2024
2.1.251 156 2/6/2024
2.1.250 1,021 2/6/2024
2.1.249 154 2/6/2024
2.1.248 163 2/6/2024
2.1.247 166 2/6/2024
2.1.246 6,263 2/5/2024
2.1.245 246 2/5/2024
2.1.244 1,629 2/4/2024
2.1.243 1,899 2/4/2024
2.1.242 712 2/4/2024
2.1.241 3,389 2/2/2024
2.1.240 153 2/2/2024
2.1.239 4,430 1/31/2024
2.1.238 156 1/31/2024
2.1.237 4,585 1/29/2024
2.1.236 142 1/29/2024
2.1.235 2,057 1/29/2024
2.1.234 143 1/29/2024
2.1.233 1,072 1/29/2024
2.1.232 148 1/29/2024
2.1.231 1,735 1/28/2024
2.1.230 1,963 1/28/2024
2.1.229 153 1/28/2024
2.1.228 1,280 1/28/2024
2.1.227 1,996 1/28/2024
2.1.226 149 1/28/2024
2.1.225 2,042 1/28/2024
2.1.224 147 1/28/2024
2.1.223 476 1/28/2024
2.1.222 1,849 1/27/2024
2.1.221 155 1/27/2024
2.1.220 421 1/27/2024
2.1.219 3,240 1/27/2024
2.1.218 1,003 1/27/2024
2.1.217 142 1/27/2024
2.1.216 675 1/27/2024
2.1.215 142 1/27/2024
2.1.214 4,017 1/27/2024
2.1.213 1,960 1/27/2024
2.1.212 156 1/27/2024
2.1.211 1,180 1/26/2024
2.1.210 153 1/26/2024
2.1.209 1,121 1/26/2024
2.1.208 141 1/26/2024
2.1.207 842 1/26/2024
2.1.206 522 1/26/2024
2.1.205 3,321 1/26/2024
2.1.204 143 1/26/2024
2.1.203 2,117 1/26/2024
2.1.202 144 1/26/2024
2.1.201 2,499 1/25/2024
2.1.200 138 1/25/2024
2.1.199 1,895 1/25/2024
2.1.198 312 1/25/2024
2.1.197 150 1/25/2024
2.1.196 4,677 1/25/2024
2.1.195 140 1/25/2024
2.1.194 4,755 1/19/2024
2.1.193 149 1/19/2024
2.1.192 4,083 1/16/2024
2.1.191 1,791 1/15/2024
2.1.190 163 1/15/2024
2.1.189 378 1/15/2024
2.1.188 153 1/15/2024
2.1.187 152 1/15/2024
2.1.186 2,201 1/15/2024
2.1.185 173 1/15/2024
2.1.184 1,970 1/15/2024
2.1.183 162 1/15/2024
2.1.182 157 1/15/2024
2.1.181 3,655 1/15/2024
2.1.180 171 1/15/2024
2.1.179 3,502 1/14/2024
2.1.178 170 1/14/2024
2.1.177 4,707 1/13/2024
2.1.176 177 1/13/2024
2.1.175 3,351 1/12/2024
2.1.174 155 1/12/2024
2.1.173 3,952 1/11/2024
2.1.172 562 1/11/2024
2.1.171 4,968 1/7/2024
2.1.170 171 1/7/2024
2.1.169 1,277 1/7/2024
2.1.168 3,149 1/5/2024
2.1.167 1,586 1/5/2024
2.1.166 159 1/5/2024
2.1.165 138 1/5/2024
2.1.164 154 1/5/2024
2.1.163 1,857 1/5/2024
2.1.162 155 1/5/2024
2.1.161 161 1/5/2024
2.1.160 154 1/5/2024
2.1.159 5,314 1/3/2024
2.1.158 2,955 1/1/2024
2.1.157 178 1/1/2024
2.1.156 1,624 1/1/2024
2.1.155 2,426 12/28/2023
2.1.154 757 12/28/2023
2.1.153 185 12/28/2023
2.1.152 259 12/28/2023
2.1.151 170 12/28/2023
2.1.150 184 12/28/2023
2.1.149 2,953 12/28/2023
2.1.148 176 12/28/2023
2.1.147 891 12/28/2023
2.1.146 170 12/28/2023
2.1.145 170 12/28/2023
2.1.144 855 12/27/2023
2.1.143 183 12/27/2023
2.1.142 2,340 12/27/2023
2.1.141 185 12/27/2023
2.1.140 4,692 12/25/2023
2.1.139 176 12/25/2023
2.1.138 1,683 12/25/2023
2.1.137 2,229 12/25/2023
2.1.136 163 12/25/2023
2.1.135 159 12/25/2023
2.1.134 1,696 12/25/2023
2.1.133 176 12/25/2023
2.1.132 166 12/25/2023
2.1.131 266 12/25/2023
2.1.130 191 12/25/2023
2.1.129 5,077 12/24/2023
2.1.128 1,606 12/24/2023
2.1.127 561 12/24/2023
2.1.126 2,232 12/23/2023
2.1.125 1,573 12/23/2023
2.1.124 660 12/23/2023
2.1.123 173 12/23/2023
2.1.122 159 12/23/2023
2.1.121 392 12/23/2023
2.1.120 166 12/23/2023
2.1.119 163 12/23/2023
2.1.118 166 12/23/2023
2.1.117 969 12/23/2023
2.1.116 170 12/23/2023
2.1.115 1,530 12/23/2023
2.1.114 171 12/23/2023
2.1.113 6,935 12/19/2023
2.1.112 148 12/19/2023
2.1.111 907 12/19/2023
2.1.110 164 12/19/2023
2.1.109 1,525 12/19/2023
2.1.108 392 12/18/2023
2.1.107 2,580 12/13/2023
2.1.106 978 12/12/2023
2.1.105 1,152 12/11/2023
2.1.104 1,335 12/11/2023
2.1.103 377 12/11/2023
2.1.102 529 12/11/2023
2.1.101 325 12/10/2023
2.1.100 147 12/10/2023
2.1.99 181 12/10/2023
2.1.98 190 12/10/2023
2.1.97 4,743 12/10/2023
2.1.96 3,318 12/10/2023
2.1.95 1,062 12/9/2023
2.1.94 1,076 12/9/2023
2.1.93 1,612 12/9/2023
2.1.92 193 12/9/2023
2.1.91 190 12/9/2023
2.1.90 156 12/9/2023
2.1.89 158 12/9/2023
2.1.88 1,311 12/9/2023
2.1.87 171 12/9/2023
2.1.86 3,456 12/9/2023
2.1.85 173 12/9/2023
2.1.84 5,242 12/6/2023
2.1.83 684 12/6/2023
2.1.82 990 12/6/2023
2.1.81 168 12/6/2023
2.1.80 2,307 12/6/2023
2.1.79 687 12/5/2023
2.1.78 1,264 12/5/2023
2.1.77 748 12/5/2023
2.1.76 1,268 12/5/2023
2.1.75 1,413 12/5/2023
2.1.74 392 12/5/2023
2.1.73 267 12/4/2023
2.1.72 186 12/4/2023
2.1.71 160 12/4/2023
2.1.70 3,762 12/4/2023
2.1.69 176 12/4/2023
2.1.68 866 12/4/2023
2.1.67 178 12/4/2023
2.1.66 3,972 12/4/2023
2.1.65 2,285 11/27/2023
2.1.64 618 11/27/2023
2.1.63 2,527 11/23/2023
2.1.62 158 11/23/2023
2.1.61 640 11/23/2023
2.1.60 711 11/23/2023
2.1.59 167 11/23/2023
2.1.58 1,569 11/23/2023
2.1.57 171 11/23/2023
2.1.56 172 11/23/2023
2.1.55 161 11/23/2023
2.1.54 1,590 11/23/2023
2.1.53 176 11/23/2023
2.1.52 4,330 11/20/2023
2.1.51 161 11/20/2023
2.1.50 2,760 11/20/2023
2.1.49 162 11/20/2023
2.1.48 160 11/20/2023
2.1.47 1,992 11/20/2023
2.1.46 2,181 11/19/2023
2.1.45 153 11/19/2023
2.1.44 1,864 11/19/2023
2.1.43 304 11/19/2023
2.1.42 150 11/19/2023
2.1.41 165 11/19/2023
2.1.40 169 11/19/2023
2.1.39 3,407 11/19/2023
2.1.38 143 11/19/2023
2.1.37 3,670 11/18/2023
2.1.36 156 11/18/2023
2.1.35 175 11/18/2023
2.1.34 2,944 11/18/2023
2.1.33 168 11/18/2023
2.1.32 170 11/18/2023
2.1.31 547 11/18/2023
2.1.30 161 11/18/2023
2.1.29 148 11/18/2023
2.1.28 166 11/18/2023
2.1.27 1,423 11/17/2023
2.1.26 151 11/17/2023
2.1.25 1,712 11/17/2023
2.1.24 162 11/17/2023
2.1.23 170 11/17/2023
2.1.22 331 11/17/2023
2.1.21 159 11/17/2023
2.1.20 167 11/17/2023
2.1.19 3,234 11/17/2023
2.1.18 157 11/17/2023
2.1.17 1,380 11/17/2023
2.1.16 171 11/17/2023
2.1.15 1,361 11/17/2023
2.1.14 164 11/17/2023
2.1.13 155 11/17/2023
2.1.12 885 11/17/2023
2.1.11 161 11/17/2023
2.1.10 132 11/17/2023
2.1.9 2,570 11/17/2023
2.1.8 572 11/17/2023
2.1.7 158 11/17/2023
2.1.6 1,167 11/16/2023
2.1.5 163 11/16/2023
2.0.196 2,326 11/15/2023
2.0.195 171 11/15/2023
2.0.194 166 11/15/2023
2.0.193 174 11/15/2023
2.0.4 157 11/16/2023
2.0.3 155 11/16/2023
2.0.2 159 11/16/2023
2.0.1 164 11/16/2023
1.0.192 1,766 11/14/2023
1.0.191 166 11/14/2023
1.0.190 4,703 11/13/2023
1.0.189 163 11/13/2023
1.0.188 1,141 11/10/2023
1.0.187 143 11/10/2023
1.0.186 130 11/10/2023
1.0.185 2,355 11/9/2023
1.0.184 162 11/9/2023
1.0.183 139 11/9/2023
1.0.182 169 11/9/2023
1.0.181 3,940 11/8/2023
1.0.180 1,403 11/7/2023
1.0.179 174 11/7/2023
1.0.178 2,181 11/6/2023
1.0.177 152 11/6/2023
1.0.176 178 11/6/2023
1.0.175 2,088 11/3/2023
1.0.174 149 11/3/2023
1.0.173 172 11/3/2023
1.0.172 2,594 11/2/2023
1.0.171 170 11/2/2023
1.0.170 175 11/2/2023
1.0.169 1,953 11/1/2023
1.0.168 166 11/1/2023
1.0.167 7,927 10/27/2023
1.0.166 2,007 10/26/2023
1.0.165 3,914 10/20/2023
1.0.164 2,364 10/19/2023
1.0.163 151 10/19/2023
1.0.162 1,852 10/18/2023
1.0.161 185 10/18/2023
1.0.160 174 10/18/2023
1.0.159 2,267 10/17/2023
1.0.158 181 10/17/2023
1.0.157 192 10/17/2023
1.0.156 3,065 10/16/2023
1.0.155 188 10/16/2023
1.0.154 185 10/16/2023
1.0.153 3,063 10/13/2023
1.0.152 194 10/13/2023
1.0.151 179 10/13/2023
1.0.150 1,977 10/12/2023
1.0.149 6,564 9/20/2023
1.0.148 1,645 9/19/2023
1.0.147 175 9/19/2023
1.0.146 178 9/19/2023
1.0.145 4,353 9/18/2023
1.0.144 191 9/18/2023
1.0.143 163 9/18/2023
1.0.142 2,263 9/15/2023
1.0.141 2,240 9/14/2023
1.0.140 3,821 9/1/2023
1.0.139 2,829 8/31/2023
1.0.138 194 8/31/2023
1.0.137 2,124 8/30/2023
1.0.136 222 8/30/2023
1.0.135 216 8/30/2023
1.0.134 1,774 8/29/2023
1.0.133 225 8/29/2023
1.0.132 3,944 8/28/2023
1.0.131 213 8/28/2023
1.0.130 2,602 8/25/2023
1.0.129 234 8/25/2023
1.0.128 208 8/25/2023
1.0.127 3,616 8/24/2023
1.0.126 229 8/24/2023
1.0.125 3,848 8/22/2023
1.0.124 1,800 8/21/2023
1.0.123 226 8/21/2023
1.0.122 2,003 8/18/2023
1.0.121 213 8/18/2023
1.0.120 203 8/18/2023
1.0.119 2,718 8/17/2023
1.0.118 191 8/17/2023
1.0.117 224 8/17/2023
1.0.116 193 8/17/2023
1.0.115 7,823 8/11/2023
1.0.114 2,432 8/10/2023
1.0.113 225 8/10/2023
1.0.112 3,271 8/9/2023
1.0.111 244 8/9/2023
1.0.110 1,521 8/8/2023
1.0.109 263 8/8/2023
1.0.108 236 8/8/2023
1.0.107 3,803 8/7/2023
1.0.106 238 8/7/2023
1.0.105 226 8/7/2023
1.0.104 241 8/7/2023
1.0.103 7,399 7/14/2023
1.0.102 2,513 7/13/2023
1.0.101 2,501 7/12/2023
1.0.100 2,287 7/11/2023
1.0.99 243 7/11/2023
1.0.98 3,155 7/10/2023
1.0.97 247 7/10/2023
1.0.96 232 7/10/2023
1.0.95 2,716 7/7/2023
1.0.94 254 7/7/2023
1.0.93 249 7/7/2023
1.0.92 6,384 7/3/2023
1.0.91 2,794 6/30/2023
1.0.90 2,851 6/29/2023
1.0.89 260 6/29/2023
1.0.88 249 6/29/2023
1.0.87 2,426 6/28/2023
1.0.86 247 6/28/2023
1.0.85 254 6/28/2023
1.0.84 4,702 6/27/2023
1.0.83 240 6/27/2023
1.0.82 3,415 6/26/2023
1.0.81 258 6/26/2023
1.0.80 4,393 6/23/2023
1.0.79 3,100 6/22/2023
1.0.78 2,400 6/21/2023
1.0.77 3,863 6/19/2023
1.0.76 3,617 6/15/2023
1.0.75 241 6/15/2023
1.0.74 2,166 6/14/2023
1.0.73 6,385 6/12/2023
1.0.72 2,188 6/9/2023
1.0.71 258 6/9/2023
1.0.70 3,613 6/8/2023
1.0.69 243 6/8/2023
1.0.68 239 6/8/2023
1.0.67 4,609 6/7/2023
1.0.66 263 6/7/2023
1.0.65 245 6/7/2023
1.0.64 244 6/7/2023
1.0.63 2,682 6/6/2023
1.0.62 265 6/6/2023
1.0.61 259 6/6/2023
1.0.60 20,724 5/30/2023
1.0.59 256 5/30/2023
1.0.58 258 5/30/2023
1.0.57 4,868 5/29/2023
1.0.56 253 5/29/2023
1.0.55 265 5/29/2023
1.0.54 4,043 5/26/2023
1.0.53 260 5/26/2023
1.0.52 276 5/26/2023
1.0.51 6,483 5/25/2023
1.0.50 255 5/25/2023
1.0.49 250 5/25/2023
1.0.48 2,927 5/24/2023
1.0.46 260 5/24/2023
1.0.45 259 5/24/2023
1.0.43 3,648 5/23/2023
1.0.42 5,653 5/22/2023
1.0.41 273 5/22/2023
1.0.40 5,668 5/18/2023
1.0.39 3,795 5/17/2023
1.0.38 240 5/17/2023
1.0.37 316 5/17/2023
1.0.36 10,783 4/25/2023
1.0.35 1,398 4/24/2023
1.0.34 2,003 4/21/2023
1.0.33 296 4/21/2023
1.0.32 1,816 4/20/2023
1.0.31 2,429 4/19/2023
1.0.30 1,130 4/18/2023
1.0.29 1,761 4/17/2023
1.0.28 1,300 4/14/2023
1.0.27 1,293 4/13/2023
1.0.26 1,306 4/12/2023
1.0.25 1,612 4/11/2023
1.0.24 361 4/11/2023
1.0.23 1,765 4/10/2023
1.0.22 2,549 4/4/2023
1.0.21 280 4/4/2023
1.0.20 1,056 4/3/2023
1.0.19 311 4/3/2023
1.0.18 322 4/3/2023
1.0.17 321 4/3/2023
1.0.16 298 4/3/2023
1.0.15 306 4/3/2023
1.0.14 315 4/3/2023
1.0.13 301 4/3/2023
1.0.12 301 4/3/2023
1.0.11 2,153 3/23/2023
1.0.10 634 3/13/2023
1.0.9 400 3/12/2023
1.0.8 331 3/11/2023
1.0.7 323 3/10/2023
1.0.5 503 2/22/2023
1.0.4 554 2/19/2023
1.0.3 529 2/18/2023
1.0.1 464 2/12/2023