Soenneker.Blazor.Utils.ResourceLoader 2.1.240

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

A Blazor JavaScript interop for dynamically loading scripts, styles, and modules

Overview

The ResourceLoader class is designed to manage the loading and initialization of scripts, styles, and JavaScript modules in a Blazor application. It provides methods to asynchronously load scripts and styles, wait for variables to be available, and manage the lifecycle of JavaScript modules.

It ensures that each resource is only loaded once (through this interop), even with multiple concurrent calls.

Table of Contents

Installation

dotnet add package Soenneker.Blazor.Utils.ResourceLoader

Usage

Loading Scripts

To load a script, use the LoadScript method. It injects the file into the DOM.

await resourceLoader.LoadScript("https://example.com/script.js");

LoadScriptAndWaitForVariable is also available. It waits for a specified JavaScript variable to be available:

await resourceLoader.LoadScriptAndWaitForVariable("https://example.com/script.js", "variableName");

Loading Styles

To load a style, use the LoadStyle method. It injects the file into the DOM.

await resourceLoader.LoadStyle("https://example.com/style.css");

Importing Modules

To import a JavaScript module, use the ImportModule method:

var module = await resourceLoader.ImportModule("moduleName");

You probably want ImportModuleAndWaitUntilAvailable, as that waits until the module is loaded, and accessible:

// 'ResourceLoader' is the name of the export class
var module = await resourceLoader.ImportModuleAndWaitUntilAvailable("Soenneker.Blazor.Utils.ResourceLoader/resourceloader.js", "ResourceLoader");

Waiting for Variables

To wait for a JavaScript variable to be available, use the WaitForVariable method:

await resourceLoader.WaitForVariable("variableName");

Disposing Modules

Be sure to dispose of a module after you're done interacting with it. To dispose of a JavaScript module, use the DisposeModule method:

await resourceLoader.DisposeModule("moduleName");
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 (28)

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

Package Downloads
Soenneker.Blazor.TomSelect

A Blazor interop library for the select user control library, Tom Select

Soenneker.Blazor.FilePond

A Blazor interop library for the file upload library FilePond

Soenneker.Blazor.Masonry

A lightweight, responsive **Blazor** component for Masonry (the cascading grid layout library) — perfect for image grids, cards, and dynamic content.

Soenneker.Blazor.Clarity

A small Blazor interop library that sets up Microsoft Clarity

Soenneker.Blazor.LogJson

A Blazor interop library that logs JSON (like HTTP requests/responses) within the browser

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1503 7,941 9/9/2025
3.0.1502 510 9/9/2025
3.0.1501 196 9/9/2025
3.0.1500 611 9/9/2025
3.0.1499 1,688 9/6/2025
3.0.1498 426 9/6/2025
3.0.1497 150 9/6/2025
3.0.1496 2,291 9/3/2025
3.0.1495 644 9/3/2025
3.0.1494 910 9/3/2025
3.0.1493 2,433 8/15/2025
3.0.1492 1,306 8/12/2025
3.0.1491 552 8/11/2025
3.0.1490 329 8/11/2025
3.0.1489 621 8/11/2025
3.0.1488 338 8/11/2025
3.0.1487 848 8/11/2025
3.0.1486 1,539 8/6/2025
3.0.1485 1,017 8/5/2025
3.0.1484 779 8/5/2025
3.0.1483 372 8/5/2025
3.0.1482 1,792 7/23/2025
3.0.1481 1,937 7/9/2025
3.0.1480 512 7/9/2025
3.0.1479 1,963 7/3/2025
3.0.1478 151 7/3/2025
3.0.1477 701 7/1/2025
3.0.1476 645 6/28/2025
3.0.1475 258 6/28/2025
3.0.1474 488 6/28/2025
3.0.1473 372 6/27/2025
3.0.1472 145 6/27/2025
3.0.1471 439 6/27/2025
3.0.1470 3,069 6/11/2025
3.0.1469 812 6/10/2025
3.0.1468 1,767 6/3/2025
3.0.1467 1,069 5/28/2025
3.0.1466 328 5/27/2025
3.0.1465 412 5/27/2025
3.0.1464 363 5/27/2025
3.0.1463 365 5/27/2025
3.0.1462 791 5/27/2025
3.0.1461 1,505 5/23/2025
3.0.1460 516 5/23/2025
3.0.1459 354 5/23/2025
3.0.1458 621 5/22/2025
3.0.1457 448 5/22/2025
3.0.1456 1,240 5/18/2025
3.0.1455 363 5/18/2025
3.0.1454 459 5/18/2025
3.0.1453 980 5/14/2025
3.0.1452 556 5/14/2025
3.0.1451 2,463 5/8/2025
3.0.1450 402 5/8/2025
3.0.1449 403 5/8/2025
3.0.1448 403 5/8/2025
3.0.1447 595 5/7/2025
3.0.1446 534 5/7/2025
3.0.1445 1,392 5/5/2025
3.0.1444 419 5/5/2025
3.0.1443 163 5/5/2025
3.0.1442 287 5/5/2025
3.0.1441 349 5/5/2025
3.0.1440 543 5/5/2025
3.0.1439 482 5/5/2025
3.0.1438 1,016 5/5/2025
3.0.1437 2,891 4/9/2025
3.0.1436 509 4/9/2025
3.0.1435 356 4/9/2025
3.0.1434 327 4/8/2025
3.0.1433 409 4/8/2025
3.0.1432 157 4/8/2025
3.0.1431 179 4/8/2025
3.0.1430 715 4/8/2025
3.0.1429 498 4/8/2025
3.0.1428 254 4/8/2025
3.0.1427 244 4/8/2025
3.0.1426 226 4/8/2025
3.0.1425 248 4/8/2025
3.0.1424 229 4/8/2025
3.0.1423 233 4/8/2025
3.0.1422 252 4/8/2025
3.0.1421 183 4/7/2025
3.0.1420 220 4/7/2025
3.0.1419 179 4/7/2025
3.0.1418 294 4/7/2025
3.0.1417 2,695 4/7/2025
3.0.1416 185 4/7/2025
3.0.1415 1,026 4/7/2025
3.0.1414 171 4/7/2025
3.0.1413 211 4/7/2025
3.0.1412 190 4/7/2025
3.0.1411 883 4/7/2025
3.0.1410 191 4/7/2025
3.0.1409 219 4/7/2025
3.0.1408 166 4/7/2025
3.0.1407 501 4/7/2025
3.0.1406 173 4/7/2025
3.0.1405 497 4/7/2025
3.0.1404 672 4/7/2025
3.0.1403 393 4/7/2025
3.0.1402 451 4/7/2025
3.0.1401 504 4/7/2025
3.0.1400 403 4/6/2025
3.0.1399 370 4/6/2025
3.0.1398 276 4/6/2025
3.0.1397 352 4/6/2025
3.0.1396 604 4/6/2025
3.0.1395 466 4/6/2025
3.0.1394 200 4/6/2025
3.0.1393 266 4/6/2025
3.0.1392 121 4/6/2025
3.0.1391 632 4/6/2025
3.0.1390 113 4/6/2025
3.0.1389 682 4/5/2025
3.0.1388 586 4/5/2025
3.0.1387 209 4/5/2025
3.0.1386 146 4/5/2025
3.0.1385 206 4/5/2025
3.0.1384 249 4/5/2025
3.0.1383 201 4/5/2025
3.0.1382 128 4/5/2025
3.0.1381 317 4/5/2025
3.0.1380 100 4/5/2025
3.0.1379 133 4/5/2025
3.0.1378 137 4/5/2025
3.0.1377 1,427 4/4/2025
3.0.1376 176 4/4/2025
3.0.1375 2,328 4/4/2025
3.0.1374 254 4/4/2025
3.0.1373 475 4/4/2025
3.0.1372 164 4/4/2025
3.0.1371 527 4/3/2025
3.0.1370 660 4/1/2025
3.0.1369 285 4/1/2025
3.0.1368 289 4/1/2025
3.0.1367 165 4/1/2025
3.0.1366 345 4/1/2025
3.0.1365 153 4/1/2025
3.0.1364 456 4/1/2025
3.0.1363 620 4/1/2025
3.0.1362 556 4/1/2025
3.0.1361 302 4/1/2025
3.0.1360 347 4/1/2025
3.0.1359 271 4/1/2025
3.0.1358 451 4/1/2025
3.0.1357 171 4/1/2025
3.0.1356 341 3/31/2025
3.0.1355 171 3/31/2025
3.0.1354 523 3/31/2025
3.0.1353 176 3/31/2025
3.0.1352 664 3/31/2025
3.0.1351 575 3/31/2025
3.0.1350 580 3/29/2025
3.0.1349 263 3/29/2025
3.0.1348 258 3/29/2025
3.0.1347 294 3/29/2025
3.0.1346 95 3/29/2025
3.0.1345 276 3/29/2025
3.0.1344 111 3/29/2025
3.0.1343 834 3/27/2025
3.0.1342 874 3/26/2025
3.0.1341 669 3/25/2025
3.0.1340 602 3/25/2025
3.0.1339 476 3/25/2025
3.0.1338 694 3/25/2025
3.0.1337 472 3/25/2025
3.0.1336 795 3/25/2025
3.0.1335 500 3/25/2025
3.0.1334 1,282 3/22/2025
3.0.1333 267 3/21/2025
3.0.1332 280 3/21/2025
3.0.1331 124 3/21/2025
3.0.1330 354 3/21/2025
3.0.1329 133 3/21/2025
3.0.1328 300 3/21/2025
3.0.1327 532 3/21/2025
3.0.1326 632 3/18/2025
3.0.1325 345 3/18/2025
3.0.1324 272 3/18/2025
3.0.1323 309 3/18/2025
3.0.1322 250 3/18/2025
3.0.1321 160 3/18/2025
3.0.1320 618 3/18/2025
3.0.1319 307 3/18/2025
3.0.1318 161 3/18/2025
3.0.1317 422 3/18/2025
3.0.1316 165 3/18/2025
3.0.1315 603 3/15/2025
3.0.1314 196 3/15/2025
3.0.1313 224 3/15/2025
3.0.1312 90 3/15/2025
3.0.1311 289 3/15/2025
3.0.1310 91 3/15/2025
3.0.1309 450 3/15/2025
3.0.1308 151 3/15/2025
3.0.1307 97 3/15/2025
3.0.1306 1,015 3/12/2025
3.0.1305 356 3/12/2025
3.0.1304 337 3/12/2025
3.0.1303 174 3/12/2025
3.0.1302 313 3/12/2025
3.0.1301 252 3/12/2025
3.0.1300 484 3/12/2025
3.0.1299 182 3/12/2025
3.0.1298 479 3/12/2025
3.0.1297 220 3/12/2025
3.0.1296 162 3/12/2025
3.0.1295 524 3/11/2025
3.0.1294 189 3/11/2025
3.0.1293 605 3/11/2025
3.0.1292 180 3/11/2025
3.0.1291 630 3/11/2025
3.0.1290 190 3/11/2025
3.0.1289 188 3/11/2025
3.0.1288 770 3/11/2025
3.0.1287 182 3/11/2025
3.0.1286 530 3/11/2025
3.0.1285 748 3/11/2025
3.0.1284 179 3/11/2025
3.0.1283 553 3/11/2025
3.0.1282 192 3/11/2025
3.0.1281 674 3/7/2025
3.0.1280 430 3/7/2025
3.0.1279 335 3/7/2025
3.0.1278 232 3/7/2025
3.0.1277 470 3/7/2025
3.0.1276 232 3/7/2025
3.0.1275 522 3/7/2025
3.0.1274 438 3/7/2025
3.0.1273 528 3/7/2025
3.0.1272 748 3/2/2025
3.0.1271 252 3/2/2025
3.0.1270 363 3/2/2025
3.0.1269 135 3/2/2025
3.0.1268 287 3/2/2025
3.0.1267 189 3/2/2025
3.0.1266 360 3/2/2025
3.0.1265 117 3/2/2025
3.0.1264 624 3/2/2025
3.0.1263 118 3/2/2025
3.0.1262 567 3/2/2025
3.0.1261 124 3/2/2025
3.0.1260 297 3/2/2025
3.0.1259 116 3/2/2025
3.0.1258 628 3/1/2025
3.0.1257 399 3/1/2025
3.0.1256 114 3/1/2025
3.0.1255 374 3/1/2025
3.0.1254 161 3/1/2025
3.0.1253 120 3/1/2025
3.0.1252 246 3/1/2025
3.0.1251 121 3/1/2025
3.0.1250 589 3/1/2025
3.0.1249 119 3/1/2025
3.0.1248 98 3/1/2025
3.0.1247 820 3/1/2025
3.0.1246 109 3/1/2025
3.0.1245 816 2/26/2025
3.0.1244 168 2/26/2025
3.0.1243 112 2/26/2025
3.0.1242 258 2/26/2025
3.0.1241 105 2/26/2025
3.0.1240 350 2/25/2025
3.0.1239 97 2/25/2025
3.0.1238 351 2/25/2025
3.0.1237 108 2/25/2025
3.0.1236 560 2/25/2025
3.0.1235 114 2/25/2025
3.0.1234 498 2/25/2025
3.0.1233 105 2/25/2025
3.0.1232 329 2/25/2025
3.0.1231 407 2/24/2025
3.0.1230 879 2/23/2025
3.0.1229 420 2/23/2025
3.0.1228 131 2/23/2025
3.0.1227 205 2/23/2025
3.0.1226 120 2/23/2025
3.0.1225 313 2/22/2025
3.0.1224 118 2/22/2025
3.0.1223 523 2/22/2025
3.0.1222 105 2/22/2025
3.0.1221 240 2/22/2025
3.0.1220 714 2/22/2025
3.0.1219 286 2/22/2025
3.0.1218 116 2/22/2025
3.0.1217 233 2/22/2025
3.0.1216 108 2/22/2025
3.0.1215 494 2/22/2025
3.0.1214 225 2/22/2025
3.0.1213 240 2/22/2025
3.0.1212 364 2/22/2025
3.0.1211 115 2/22/2025
3.0.1210 291 2/22/2025
3.0.1209 311 2/22/2025
3.0.1208 308 2/21/2025
3.0.1207 102 2/21/2025
3.0.1206 113 2/21/2025
3.0.1205 457 2/21/2025
3.0.1204 118 2/21/2025
3.0.1203 285 2/21/2025
3.0.1202 113 2/21/2025
3.0.1201 322 2/21/2025
3.0.1200 1,150 2/19/2025
3.0.1199 363 2/19/2025
3.0.1198 131 2/19/2025
3.0.1197 219 2/19/2025
3.0.1196 114 2/19/2025
3.0.1195 203 2/19/2025
3.0.1194 124 2/19/2025
3.0.1193 235 2/19/2025
3.0.1192 119 2/19/2025
3.0.1191 263 2/19/2025
3.0.1190 112 2/19/2025
3.0.1189 321 2/19/2025
3.0.1188 267 2/18/2025
3.0.1187 106 2/18/2025
3.0.1186 763 2/18/2025
3.0.1185 149 2/18/2025
3.0.1184 127 2/18/2025
3.0.1183 741 2/18/2025
3.0.1182 107 2/18/2025
3.0.1181 314 2/18/2025
3.0.1180 109 2/18/2025
3.0.1179 1,138 2/16/2025
3.0.1178 488 2/14/2025
3.0.1177 259 2/14/2025
3.0.1176 121 2/14/2025
3.0.1175 306 2/14/2025
3.0.1174 232 2/14/2025
3.0.1173 122 2/14/2025
3.0.1172 786 2/13/2025
3.0.1171 118 2/13/2025
3.0.1170 267 2/13/2025
3.0.1169 1,008 2/13/2025
3.0.1168 406 2/12/2025
3.0.1167 256 2/12/2025
3.0.1166 323 2/12/2025
3.0.1165 126 2/12/2025
3.0.1164 231 2/12/2025
3.0.1163 123 2/12/2025
3.0.1162 491 2/12/2025
3.0.1161 125 2/12/2025
3.0.1160 238 2/12/2025
3.0.1159 114 2/12/2025
3.0.1158 341 2/12/2025
3.0.1157 125 2/12/2025
3.0.1156 381 2/12/2025
3.0.1155 119 2/12/2025
3.0.1154 354 2/12/2025
3.0.1153 113 2/12/2025
3.0.1152 296 2/12/2025
3.0.1151 106 2/12/2025
3.0.1150 382 2/11/2025
3.0.1149 114 2/11/2025
3.0.1148 591 2/11/2025
3.0.1147 521 2/11/2025
3.0.1146 117 2/11/2025
3.0.1145 109 2/11/2025
3.0.1144 445 2/11/2025
3.0.1143 122 2/11/2025
3.0.1142 328 2/11/2025
3.0.1141 851 2/11/2025
3.0.1140 133 2/11/2025
3.0.1139 318 2/11/2025
3.0.1138 128 2/11/2025
3.0.1137 238 2/11/2025
3.0.1136 120 2/11/2025
3.0.1135 239 2/11/2025
3.0.1134 101 2/11/2025
3.0.1133 323 2/10/2025
3.0.1132 118 2/10/2025
3.0.1131 233 2/10/2025
3.0.1130 125 2/10/2025
3.0.1129 495 2/10/2025
3.0.1128 106 2/10/2025
3.0.1127 117 2/10/2025
3.0.1126 245 2/10/2025
3.0.1125 334 2/10/2025
3.0.1124 502 2/10/2025
3.0.1123 202 2/9/2025
3.0.1122 514 2/9/2025
3.0.1121 174 2/9/2025
3.0.1120 120 2/9/2025
3.0.1119 468 2/9/2025
3.0.1118 106 2/9/2025
3.0.1117 1,312 2/7/2025
3.0.1116 112 2/7/2025
3.0.1115 513 2/7/2025
3.0.1114 108 2/7/2025
3.0.1113 353 2/7/2025
3.0.1112 298 2/7/2025
3.0.1111 110 2/7/2025
3.0.1110 294 2/7/2025
3.0.1109 126 2/7/2025
3.0.1108 247 2/7/2025
3.0.1107 180 2/7/2025
3.0.1106 1,185 2/7/2025
3.0.1105 220 2/7/2025
3.0.1104 248 2/7/2025
3.0.1103 112 2/7/2025
3.0.1102 208 2/6/2025
3.0.1101 828 2/5/2025
3.0.1100 329 2/5/2025
3.0.1099 151 2/5/2025
3.0.1098 250 2/5/2025
3.0.1097 139 2/5/2025
3.0.1096 252 2/5/2025
3.0.1095 438 2/5/2025
3.0.1094 319 2/5/2025
3.0.1093 119 2/5/2025
3.0.1092 170 2/5/2025
3.0.1091 99 2/5/2025
3.0.1090 382 2/5/2025
3.0.1089 105 2/5/2025
3.0.1088 206 2/5/2025
3.0.1087 107 2/5/2025
3.0.1086 121 2/5/2025
3.0.1085 313 2/5/2025
3.0.1084 114 2/5/2025
3.0.1083 360 2/5/2025
3.0.1082 204 2/5/2025
3.0.1081 538 2/5/2025
3.0.1080 107 2/5/2025
3.0.1079 215 2/5/2025
3.0.1078 1,090 1/28/2025
3.0.1077 177 1/28/2025
3.0.1076 224 1/28/2025
3.0.1075 105 1/28/2025
3.0.1074 229 1/28/2025
3.0.1073 113 1/28/2025
3.0.1072 211 1/28/2025
3.0.1071 113 1/28/2025
3.0.1070 317 1/28/2025
3.0.1069 107 1/28/2025
3.0.1068 299 1/28/2025
3.0.1067 92 1/28/2025
3.0.1066 342 1/28/2025
3.0.1065 103 1/28/2025
3.0.1064 310 1/28/2025
3.0.1063 109 1/28/2025
3.0.1062 233 1/28/2025
3.0.1061 439 1/28/2025
3.0.1060 110 1/28/2025
3.0.1059 484 1/28/2025
3.0.1058 113 1/28/2025
3.0.1057 261 1/27/2025
3.0.1056 90 1/27/2025
3.0.1055 363 1/27/2025
3.0.1054 279 1/27/2025
3.0.1053 306 1/27/2025
3.0.1052 102 1/27/2025
3.0.1051 206 1/27/2025
3.0.1050 690 1/26/2025
3.0.1049 212 1/26/2025
3.0.1048 252 1/26/2025
3.0.1047 300 1/26/2025
3.0.1046 111 1/26/2025
3.0.1045 189 1/26/2025
3.0.1044 118 1/26/2025
3.0.1043 289 1/26/2025
3.0.1042 110 1/26/2025
3.0.1041 119 1/26/2025
3.0.1040 97 1/26/2025
3.0.1039 345 1/26/2025
3.0.1038 107 1/26/2025
3.0.1037 311 1/26/2025
3.0.1036 113 1/26/2025
3.0.1035 423 1/26/2025
3.0.1034 113 1/26/2025
3.0.1033 332 1/25/2025
3.0.1032 513 1/25/2025
3.0.1031 111 1/25/2025
3.0.1030 435 1/25/2025
3.0.1029 112 1/25/2025
3.0.1028 327 1/25/2025
3.0.1027 110 1/25/2025
3.0.1026 95 1/25/2025
3.0.1025 571 1/25/2025
3.0.1024 95 1/25/2025
3.0.1023 267 1/25/2025
3.0.1022 728 1/24/2025
3.0.1021 244 1/24/2025
3.0.1020 274 1/24/2025
3.0.1019 163 1/24/2025
3.0.1018 104 1/24/2025
3.0.1017 196 1/24/2025
3.0.1016 108 1/24/2025
3.0.1015 574 1/24/2025
3.0.1014 91 1/24/2025
3.0.1013 172 1/24/2025
3.0.1012 113 1/24/2025
3.0.1011 344 1/24/2025
3.0.1010 105 1/24/2025
3.0.1009 846 1/23/2025
3.0.1008 244 1/23/2025
3.0.1007 259 1/23/2025
3.0.1006 227 1/23/2025
3.0.1005 100 1/23/2025
3.0.1004 167 1/23/2025
3.0.1003 615 1/22/2025
3.0.1002 301 1/22/2025
3.0.1001 183 1/22/2025
3.0.1000 102 1/22/2025
3.0.999 114 1/22/2025
3.0.998 247 1/22/2025
3.0.997 553 1/21/2025
3.0.996 209 1/21/2025
3.0.995 116 1/21/2025
3.0.994 430 1/21/2025
3.0.993 443 1/21/2025
3.0.992 385 1/21/2025
3.0.991 109 1/21/2025
3.0.990 665 1/21/2025
3.0.989 107 1/21/2025
3.0.988 656 1/21/2025
3.0.987 161 1/20/2025
3.0.986 181 1/20/2025
3.0.985 108 1/20/2025
3.0.984 411 1/20/2025
3.0.983 89 1/20/2025
3.0.982 504 1/20/2025
3.0.981 108 1/20/2025
3.0.980 597 1/20/2025
3.0.979 110 1/20/2025
3.0.978 380 1/20/2025
3.0.977 105 1/20/2025
3.0.976 104 1/20/2025
3.0.975 365 1/19/2025
3.0.974 113 1/19/2025
3.0.973 582 1/19/2025
3.0.972 100 1/19/2025
3.0.971 301 1/19/2025
3.0.970 107 1/19/2025
3.0.969 576 1/19/2025
3.0.968 96 1/19/2025
3.0.967 284 1/19/2025
3.0.966 103 1/19/2025
3.0.965 99 1/19/2025
3.0.964 581 1/19/2025
3.0.963 104 1/19/2025
3.0.962 375 1/18/2025
3.0.961 116 1/18/2025
3.0.960 147 1/18/2025
3.0.959 214 1/18/2025
3.0.958 123 1/18/2025
3.0.957 442 1/18/2025
3.0.956 335 1/18/2025
3.0.955 152 1/18/2025
3.0.954 104 1/18/2025
3.0.953 351 1/17/2025
3.0.952 198 1/17/2025
3.0.951 105 1/17/2025
3.0.950 155 1/17/2025
3.0.949 131 1/17/2025
3.0.948 225 1/17/2025
3.0.947 107 1/17/2025
3.0.946 449 1/17/2025
3.0.945 124 1/17/2025
3.0.944 112 1/17/2025
3.0.943 625 1/17/2025
3.0.942 100 1/17/2025
3.0.941 418 1/16/2025
3.0.940 100 1/16/2025
3.0.939 268 1/16/2025
3.0.938 298 1/16/2025
3.0.937 340 1/16/2025
3.0.936 134 1/16/2025
3.0.935 150 1/16/2025
3.0.934 513 1/16/2025
3.0.933 104 1/16/2025
3.0.932 145 1/16/2025
3.0.931 220 1/16/2025
3.0.930 105 1/16/2025
3.0.929 326 1/16/2025
3.0.928 262 1/16/2025
3.0.927 211 1/16/2025
3.0.926 565 1/15/2025
3.0.925 109 1/15/2025
3.0.924 143 1/15/2025
3.0.923 102 1/15/2025
3.0.922 206 1/15/2025
3.0.921 348 1/15/2025
3.0.920 100 1/15/2025
3.0.919 189 1/15/2025
3.0.918 380 1/15/2025
3.0.917 266 1/15/2025
3.0.916 106 1/15/2025
3.0.915 329 1/15/2025
3.0.914 237 1/15/2025
3.0.913 116 1/15/2025
3.0.912 330 1/15/2025
3.0.911 89 1/15/2025
3.0.910 268 1/15/2025
3.0.909 79 1/15/2025
3.0.908 191 1/15/2025
3.0.907 62 1/15/2025
3.0.906 75 1/15/2025
3.0.905 379 1/14/2025
3.0.904 961 1/14/2025
3.0.903 67 1/14/2025
3.0.902 461 1/14/2025
3.0.901 88 1/14/2025
3.0.900 416 1/14/2025
3.0.899 219 1/14/2025
3.0.898 318 1/13/2025
3.0.897 218 1/13/2025
3.0.896 90 1/13/2025
3.0.895 303 1/13/2025
3.0.894 89 1/13/2025
3.0.893 246 1/13/2025
3.0.892 116 1/13/2025
3.0.891 95 1/13/2025
3.0.890 326 1/13/2025
3.0.889 96 1/13/2025
3.0.888 328 1/13/2025
3.0.887 94 1/13/2025
3.0.886 298 1/12/2025
3.0.885 457 1/12/2025
3.0.884 249 1/11/2025
3.0.883 98 1/11/2025
3.0.882 238 1/11/2025
3.0.881 109 1/11/2025
3.0.880 104 1/11/2025
3.0.879 306 1/11/2025
3.0.878 423 1/11/2025
3.0.877 97 1/11/2025
3.0.876 194 1/11/2025
3.0.875 99 1/11/2025
3.0.874 297 1/10/2025
3.0.873 98 1/10/2025
3.0.872 549 1/10/2025
3.0.871 115 1/10/2025
3.0.870 273 1/10/2025
3.0.869 100 1/10/2025
3.0.868 117 1/10/2025
3.0.867 805 1/8/2025
3.0.866 418 1/3/2025
3.0.865 362 1/3/2025
3.0.864 140 1/3/2025
3.0.863 349 1/3/2025
3.0.862 141 1/3/2025
3.0.861 353 1/3/2025
3.0.860 181 1/3/2025
3.0.859 126 1/3/2025
3.0.858 513 1/3/2025
3.0.857 173 1/3/2025
3.0.856 97 1/3/2025
3.0.855 354 1/2/2025
3.0.854 112 1/2/2025
3.0.853 314 1/2/2025
3.0.852 114 1/2/2025
3.0.851 116 1/2/2025
3.0.850 107 1/2/2025
3.0.849 409 1/2/2025
3.0.848 928 1/2/2025
3.0.847 109 1/2/2025
3.0.846 286 1/1/2025
3.0.845 115 1/1/2025
3.0.844 315 1/1/2025
3.0.843 121 1/1/2025
3.0.842 263 1/1/2025
3.0.841 273 1/1/2025
3.0.840 121 1/1/2025
3.0.839 421 1/1/2025
3.0.838 133 1/1/2025
3.0.837 126 1/1/2025
3.0.836 337 1/1/2025
3.0.835 146 1/1/2025
3.0.834 325 1/1/2025
3.0.833 114 1/1/2025
3.0.832 271 12/31/2024
3.0.831 111 12/31/2024
3.0.830 123 12/31/2024
3.0.829 190 12/31/2024
3.0.828 127 12/31/2024
3.0.827 113 12/31/2024
3.0.826 288 12/31/2024
3.0.825 271 12/31/2024
3.0.824 249 12/31/2024
3.0.823 210 12/31/2024
3.0.822 122 12/31/2024
3.0.821 678 12/31/2024
3.0.820 136 12/31/2024
3.0.819 720 12/31/2024
3.0.818 130 12/31/2024
3.0.817 185 12/31/2024
3.0.816 108 12/31/2024
3.0.815 564 12/31/2024
3.0.814 365 12/31/2024
3.0.813 92 12/31/2024
3.0.812 355 12/31/2024
3.0.811 117 12/31/2024
3.0.810 109 12/31/2024
3.0.809 114 12/31/2024
3.0.808 974 12/28/2024
3.0.807 211 12/28/2024
3.0.806 193 12/28/2024
3.0.805 106 12/28/2024
3.0.804 399 12/28/2024
3.0.803 114 12/28/2024
3.0.802 232 12/28/2024
3.0.801 106 12/28/2024
3.0.800 626 12/27/2024
3.0.799 199 12/27/2024
3.0.798 107 12/27/2024
3.0.797 721 12/25/2024
3.0.796 198 12/25/2024
3.0.795 221 12/25/2024
3.0.794 185 12/24/2024
3.0.793 364 12/24/2024
3.0.792 111 12/24/2024
3.0.791 181 12/24/2024
3.0.790 495 12/24/2024
3.0.789 108 12/24/2024
3.0.788 278 12/24/2024
3.0.787 108 12/24/2024
3.0.786 444 12/24/2024
3.0.785 101 12/24/2024
3.0.784 361 12/24/2024
3.0.783 107 12/24/2024
3.0.782 445 12/24/2024
3.0.781 196 12/24/2024
3.0.780 338 12/24/2024
3.0.779 109 12/24/2024
3.0.778 104 12/24/2024
3.0.777 114 12/24/2024
3.0.776 110 12/24/2024
3.0.775 359 12/24/2024
3.0.774 102 12/24/2024
3.0.773 305 12/23/2024
3.0.772 110 12/23/2024
3.0.771 305 12/23/2024
3.0.770 113 12/23/2024
3.0.769 152 12/23/2024
3.0.768 340 12/23/2024
3.0.767 111 12/23/2024
3.0.766 396 12/23/2024
3.0.765 113 12/23/2024
3.0.764 327 12/23/2024
3.0.763 218 12/23/2024
3.0.762 128 12/23/2024
3.0.761 554 12/23/2024
3.0.760 195 12/22/2024
3.0.759 111 12/22/2024
3.0.758 314 12/22/2024
3.0.757 145 12/22/2024
3.0.756 317 12/22/2024
3.0.755 117 12/22/2024
3.0.754 250 12/22/2024
3.0.753 377 12/22/2024
3.0.752 118 12/22/2024
3.0.751 332 12/22/2024
3.0.750 116 12/22/2024
3.0.749 519 12/22/2024
3.0.748 152 12/22/2024
3.0.747 117 12/22/2024
3.0.746 385 12/21/2024
3.0.745 198 12/21/2024
3.0.744 117 12/21/2024
3.0.743 214 12/21/2024
3.0.742 114 12/21/2024
3.0.741 233 12/21/2024
3.0.740 115 12/21/2024
3.0.739 174 12/21/2024
3.0.738 117 12/21/2024
3.0.737 491 12/21/2024
3.0.736 191 12/21/2024
3.0.735 113 12/21/2024
3.0.734 491 12/21/2024
3.0.733 118 12/21/2024
3.0.732 107 12/21/2024
3.0.731 259 12/20/2024
3.0.730 115 12/20/2024
3.0.729 247 12/20/2024
3.0.728 150 12/20/2024
3.0.727 208 12/20/2024
3.0.726 107 12/20/2024
3.0.725 203 12/20/2024
3.0.724 114 12/20/2024
3.0.723 392 12/20/2024
3.0.722 120 12/20/2024
3.0.721 421 12/19/2024
3.0.720 148 12/19/2024
3.0.719 113 12/19/2024
3.0.718 276 12/19/2024
3.0.717 248 12/19/2024
3.0.716 107 12/19/2024
3.0.715 342 12/19/2024
3.0.714 96 12/19/2024
3.0.713 266 12/18/2024
3.0.712 1,940 12/17/2024
3.0.711 241 12/17/2024
3.0.709 294 12/17/2024
3.0.708 275 12/17/2024
3.0.707 245 12/17/2024
3.0.706 266 12/16/2024
3.0.705 207 12/16/2024
3.0.704 131 12/16/2024
3.0.703 581 12/10/2024
3.0.702 254 12/10/2024
3.0.701 127 12/10/2024
3.0.700 238 12/10/2024
3.0.699 347 12/10/2024
3.0.698 180 12/9/2024
3.0.697 112 12/9/2024
3.0.696 376 12/9/2024
3.0.695 104 12/9/2024
3.0.694 550 12/9/2024
3.0.693 287 12/9/2024
3.0.692 109 12/9/2024
3.0.691 296 12/9/2024
3.0.690 113 12/9/2024
3.0.689 333 12/9/2024
3.0.688 555 12/7/2024
3.0.687 223 12/7/2024
3.0.686 239 12/6/2024
3.0.685 117 12/6/2024
3.0.684 251 12/6/2024
3.0.683 125 12/6/2024
3.0.682 160 12/6/2024
3.0.681 240 12/6/2024
3.0.680 340 12/6/2024
3.0.679 122 12/6/2024
3.0.678 288 12/6/2024
3.0.677 256 12/6/2024
3.0.676 117 12/6/2024
3.0.675 269 12/6/2024
3.0.674 113 12/6/2024
3.0.673 240 12/6/2024
3.0.672 289 12/6/2024
3.0.671 222 12/6/2024
3.0.670 355 12/6/2024
3.0.669 118 12/6/2024
3.0.668 342 12/6/2024
3.0.667 120 12/6/2024
3.0.666 385 12/6/2024
3.0.665 110 12/6/2024
3.0.664 154 12/6/2024
3.0.663 238 12/6/2024
3.0.662 108 12/6/2024
3.0.661 295 12/6/2024
3.0.660 121 12/6/2024
3.0.659 271 12/6/2024
3.0.658 253 12/5/2024
3.0.657 125 12/5/2024
3.0.656 336 12/5/2024
3.0.655 117 12/5/2024
3.0.654 362 12/5/2024
3.0.653 126 12/5/2024
3.0.652 1,144 12/5/2024
3.0.651 352 12/5/2024
3.0.650 380 12/5/2024
3.0.649 507 12/5/2024
3.0.648 520 12/4/2024
3.0.647 207 12/4/2024
3.0.646 498 12/4/2024
3.0.645 279 12/4/2024
3.0.644 454 12/4/2024
3.0.643 226 12/4/2024
3.0.642 342 12/3/2024
3.0.641 516 12/3/2024
3.0.640 110 12/3/2024
3.0.639 173 12/3/2024
3.0.638 112 12/3/2024
3.0.637 516 12/3/2024
3.0.636 111 12/3/2024
3.0.635 567 12/3/2024
3.0.634 242 12/3/2024
3.0.633 116 12/3/2024
3.0.632 198 12/2/2024
3.0.631 328 12/2/2024
3.0.630 200 12/2/2024
3.0.629 110 12/2/2024
3.0.628 311 12/2/2024
3.0.627 276 12/2/2024
3.0.626 126 12/2/2024
3.0.625 505 12/2/2024
3.0.624 183 12/2/2024
3.0.623 130 12/2/2024
3.0.622 344 12/2/2024
3.0.621 106 12/2/2024
3.0.620 256 12/1/2024
3.0.619 197 12/1/2024
3.0.618 122 12/1/2024
3.0.617 837 12/1/2024
3.0.616 185 12/1/2024
3.0.615 360 12/1/2024
3.0.614 467 11/29/2024
3.0.613 191 11/29/2024
3.0.612 274 11/29/2024
3.0.611 117 11/29/2024
3.0.610 197 11/29/2024
3.0.609 293 11/29/2024
3.0.608 123 11/29/2024
3.0.607 437 11/29/2024
3.0.606 522 11/21/2024
3.0.605 295 11/21/2024
3.0.604 201 11/21/2024
3.0.603 130 11/21/2024
3.0.602 273 11/21/2024
3.0.601 117 11/21/2024
3.0.600 804 11/20/2024
3.0.599 123 11/20/2024
3.0.598 373 11/20/2024
3.0.597 239 11/20/2024
3.0.596 194 11/20/2024
3.0.595 247 11/20/2024
3.0.594 418 11/20/2024
3.0.593 398 11/20/2024
3.0.592 123 11/20/2024
3.0.591 314 11/20/2024
3.0.590 388 11/19/2024
3.0.589 118 11/19/2024
3.0.588 255 11/19/2024
3.0.587 119 11/19/2024
3.0.586 105 11/19/2024
3.0.585 498 11/19/2024
3.0.584 417 11/19/2024
3.0.583 384 11/19/2024
3.0.582 308 11/19/2024
3.0.581 119 11/19/2024
3.0.580 123 11/19/2024
3.0.579 754 11/15/2024
3.0.578 156 11/15/2024
3.0.577 298 11/15/2024
3.0.576 112 11/15/2024
3.0.575 190 11/14/2024
3.0.574 113 11/14/2024
3.0.573 285 11/14/2024
3.0.572 124 11/14/2024
3.0.571 210 11/14/2024
3.0.570 124 11/14/2024
3.0.569 342 11/14/2024
3.0.568 126 11/14/2024
3.0.567 345 11/14/2024
3.0.566 374 11/14/2024
3.0.565 121 11/14/2024
3.0.564 296 11/14/2024
3.0.563 266 11/14/2024
3.0.561 572 11/14/2024
3.0.560 115 11/14/2024
3.0.559 364 11/14/2024
3.0.558 202 11/14/2024
3.0.557 125 11/14/2024
3.0.556 221 11/14/2024
3.0.555 125 11/14/2024
3.0.554 246 11/14/2024
3.0.553 123 11/14/2024
3.0.552 268 11/14/2024
2.1.551 2,351 11/13/2024
2.1.550 395 11/13/2024
2.1.549 439 11/13/2024
2.1.548 284 11/13/2024
2.1.547 478 11/13/2024
2.1.546 117 11/13/2024
2.1.545 313 11/13/2024
2.1.544 122 11/13/2024
2.1.543 883 11/12/2024
2.1.542 122 11/12/2024
2.1.541 1,321 11/9/2024
2.1.540 347 11/9/2024
2.1.539 117 11/9/2024
2.1.538 297 11/9/2024
2.1.537 114 11/9/2024
2.1.536 613 11/9/2024
2.1.535 104 11/9/2024
2.1.534 717 11/8/2024
2.1.533 121 11/8/2024
2.1.532 419 11/8/2024
2.1.531 242 11/8/2024
2.1.530 126 11/8/2024
2.1.529 402 11/8/2024
2.1.528 114 11/8/2024
2.1.527 753 11/8/2024
2.1.526 525 11/8/2024
2.1.525 130 11/8/2024
2.1.524 258 11/8/2024
2.1.523 964 11/6/2024
2.1.522 312 11/6/2024
2.1.521 639 11/1/2024
2.1.520 373 11/1/2024
2.1.519 332 11/1/2024
2.1.518 125 11/1/2024
2.1.517 486 11/1/2024
2.1.516 118 11/1/2024
2.1.515 334 11/1/2024
2.1.514 694 10/29/2024
2.1.513 218 10/29/2024
2.1.512 207 10/29/2024
2.1.511 112 10/29/2024
2.1.510 108 10/29/2024
2.1.509 608 10/29/2024
2.1.508 328 10/29/2024
2.1.507 105 10/29/2024
2.1.506 489 10/29/2024
2.1.505 114 10/29/2024
2.1.504 124 10/29/2024
2.1.503 284 10/29/2024
2.1.502 117 10/29/2024
2.1.501 768 10/29/2024
2.1.500 592 10/29/2024
2.1.499 120 10/29/2024
2.1.498 629 10/28/2024
2.1.497 101 10/28/2024
2.1.496 1,031 10/26/2024
2.1.495 193 10/26/2024
2.1.494 241 10/26/2024
2.1.493 111 10/26/2024
2.1.492 1,192 10/22/2024
2.1.491 304 10/22/2024
2.1.490 104 10/22/2024
2.1.489 367 10/22/2024
2.1.488 106 10/22/2024
2.1.487 592 10/22/2024
2.1.486 161 10/22/2024
2.1.485 499 10/22/2024
2.1.484 104 10/22/2024
2.1.483 547 10/22/2024
2.1.482 1,166 10/18/2024
2.1.481 489 10/17/2024
2.1.480 116 10/17/2024
2.1.479 392 10/17/2024
2.1.478 117 10/17/2024
2.1.477 1,165 10/15/2024
2.1.476 302 10/15/2024
2.1.475 389 10/15/2024
2.1.474 107 10/15/2024
2.1.473 722 10/14/2024
2.1.472 605 10/12/2024
2.1.471 226 10/12/2024
2.1.470 270 10/12/2024
2.1.469 123 10/12/2024
2.1.468 342 10/12/2024
2.1.467 138 10/12/2024
2.1.466 477 10/11/2024
2.1.465 121 10/11/2024
2.1.464 414 10/11/2024
2.1.463 126 10/11/2024
2.1.462 868 10/9/2024
2.1.461 237 10/9/2024
2.1.460 222 10/9/2024
2.1.459 118 10/9/2024
2.1.458 471 10/9/2024
2.1.457 131 10/9/2024
2.1.456 377 10/9/2024
2.1.455 127 10/9/2024
2.1.454 217 10/9/2024
2.1.453 239 10/9/2024
2.1.452 126 10/9/2024
2.1.451 694 10/8/2024
2.1.450 129 10/8/2024
2.1.449 631 10/8/2024
2.1.448 277 10/8/2024
2.1.447 130 10/8/2024
2.1.446 506 10/8/2024
2.1.445 138 10/8/2024
2.1.444 302 10/8/2024
2.1.443 171 10/8/2024
2.1.442 120 10/8/2024
2.1.441 631 10/8/2024
2.1.440 121 10/8/2024
2.1.439 720 10/3/2024
2.1.438 206 10/3/2024
2.1.437 365 10/3/2024
2.1.436 128 10/3/2024
2.1.435 350 10/3/2024
2.1.434 339 10/3/2024
2.1.433 124 10/3/2024
2.1.432 236 10/3/2024
2.1.431 226 10/3/2024
2.1.430 128 10/3/2024
2.1.429 423 10/3/2024
2.1.428 825 10/2/2024
2.1.427 140 10/2/2024
2.1.426 240 10/2/2024
2.1.425 131 10/2/2024
2.1.424 246 10/2/2024
2.1.423 345 10/2/2024
2.1.422 245 10/2/2024
2.1.421 139 10/2/2024
2.1.420 436 10/2/2024
2.1.419 120 10/2/2024
2.1.418 603 10/2/2024
2.1.417 131 10/2/2024
2.1.416 307 10/1/2024
2.1.415 530 10/1/2024
2.1.414 129 10/1/2024
2.1.413 245 10/1/2024
2.1.412 121 10/1/2024
2.1.411 446 10/1/2024
2.1.410 144 10/1/2024
2.1.409 507 10/1/2024
2.1.408 126 10/1/2024
2.1.407 541 9/29/2024
2.1.406 267 9/29/2024
2.1.405 176 9/29/2024
2.1.404 285 9/29/2024
2.1.403 116 9/29/2024
2.1.402 297 9/29/2024
2.1.401 294 9/29/2024
2.1.400 110 9/29/2024
2.1.399 455 9/29/2024
2.1.398 130 9/29/2024
2.1.397 654 9/27/2024
2.1.396 263 9/27/2024
2.1.395 310 9/27/2024
2.1.394 113 9/27/2024
2.1.393 253 9/27/2024
2.1.392 108 9/27/2024
2.1.391 429 9/27/2024
2.1.390 303 9/27/2024
2.1.389 121 9/27/2024
2.1.388 557 9/27/2024
2.1.387 119 9/27/2024
2.1.386 259 9/27/2024
2.1.385 188 9/27/2024
2.1.384 124 9/27/2024
2.1.383 671 9/27/2024
2.1.382 225 9/27/2024
2.1.381 268 9/26/2024
2.1.380 131 9/26/2024
2.1.379 296 9/26/2024
2.1.378 320 9/26/2024
2.1.377 140 9/26/2024
2.1.376 407 9/26/2024
2.1.375 228 9/26/2024
2.1.374 239 9/26/2024
2.1.373 135 9/26/2024
2.1.372 573 9/26/2024
2.1.371 133 9/26/2024
2.1.370 326 9/26/2024
2.1.369 325 9/26/2024
2.1.368 215 9/26/2024
2.1.367 211 9/26/2024
2.1.366 136 9/26/2024
2.1.365 261 9/26/2024
2.1.364 822 9/24/2024
2.1.363 237 9/23/2024
2.1.362 137 9/23/2024
2.1.361 94 9/23/2024
2.1.360 231 9/23/2024
2.1.359 269 9/23/2024
2.1.358 104 9/23/2024
2.1.357 365 9/23/2024
2.1.356 238 9/23/2024
2.1.355 122 9/23/2024
2.1.354 221 9/23/2024
2.1.353 546 9/23/2024
2.1.352 110 9/23/2024
2.1.351 106 9/23/2024
2.1.350 561 9/23/2024
2.1.349 116 9/23/2024
2.1.348 314 9/23/2024
2.1.347 224 9/23/2024
2.1.346 548 9/23/2024
2.1.345 113 9/23/2024
2.1.344 150 9/23/2024
2.1.343 409 9/23/2024
2.1.342 117 9/23/2024
2.1.341 290 9/23/2024
2.1.340 115 9/23/2024
2.1.339 201 9/23/2024
2.1.338 99 9/23/2024
2.1.337 1,352 9/18/2024
2.1.336 100 9/18/2024
2.1.335 233 9/18/2024
2.1.334 183 9/18/2024
2.1.333 116 9/18/2024
2.1.332 386 9/18/2024
2.1.331 290 9/18/2024
2.1.330 135 9/18/2024
2.1.329 267 9/18/2024
2.1.328 122 9/18/2024
2.1.327 293 9/18/2024
2.1.326 123 9/18/2024
2.1.325 149 9/17/2024
2.1.324 146 9/17/2024
2.1.323 132 9/17/2024
2.1.322 248 9/17/2024
2.1.321 275 9/17/2024
2.1.320 129 9/17/2024
2.1.319 302 9/17/2024
2.1.318 142 9/17/2024
2.1.317 129 9/17/2024
2.1.316 296 9/17/2024
2.1.315 147 9/17/2024
2.1.314 320 9/17/2024
2.1.313 144 9/17/2024
2.1.312 301 9/17/2024
2.1.311 140 9/17/2024
2.1.310 331 9/17/2024
2.1.309 201 9/17/2024
2.1.308 232 9/17/2024
2.1.307 730 9/17/2024
2.1.306 138 9/17/2024
2.1.305 415 9/16/2024
2.1.304 343 9/16/2024
2.1.303 251 9/16/2024
2.1.302 243 9/16/2024
2.1.301 113 9/16/2024
2.1.300 298 9/16/2024
2.1.299 1,048 9/12/2024
2.1.298 290 9/12/2024
2.1.297 135 9/12/2024
2.1.296 340 9/12/2024
2.1.295 115 9/12/2024
2.1.294 443 9/12/2024
2.1.293 142 9/12/2024
2.1.292 272 9/12/2024
2.1.291 292 9/12/2024
2.1.290 153 9/12/2024
2.1.289 335 9/12/2024
2.1.288 154 9/12/2024
2.1.287 303 9/11/2024
2.1.286 132 9/11/2024
2.1.285 271 9/11/2024
2.1.284 146 9/11/2024
2.1.282 516 9/11/2024
2.1.281 140 9/11/2024
2.1.280 410 9/11/2024
2.1.279 133 9/11/2024
2.1.278 435 9/11/2024
2.1.277 448 9/11/2024
2.1.276 139 9/11/2024
2.1.275 291 9/11/2024
2.1.274 646 9/11/2024
2.1.273 241 9/10/2024
2.1.272 133 9/10/2024
2.1.271 237 9/10/2024
2.1.270 541 9/10/2024
2.1.269 156 9/10/2024
2.1.268 305 9/10/2024
2.1.267 139 9/10/2024
2.1.266 428 9/10/2024
2.1.265 358 9/10/2024
2.1.263 390 9/10/2024
2.1.262 207 9/10/2024
2.1.261 136 9/9/2024
2.1.260 419 9/9/2024
2.1.259 351 9/9/2024
2.1.258 348 9/9/2024
2.1.257 484 9/9/2024
2.1.255 327 9/9/2024
2.1.254 131 9/9/2024
2.1.253 321 9/9/2024
2.1.252 117 9/9/2024
2.1.251 846 9/7/2024
2.1.250 364 9/7/2024
2.1.249 133 9/7/2024
2.1.248 143 9/7/2024
2.1.247 371 9/7/2024
2.1.246 132 9/7/2024
2.1.245 448 9/6/2024
2.1.244 202 9/6/2024
2.1.243 139 9/6/2024
2.1.242 335 9/6/2024
2.1.241 142 9/6/2024
2.1.240 457 9/6/2024
2.1.239 180 9/6/2024
2.1.238 219 9/6/2024
2.1.237 129 9/6/2024
2.1.236 477 9/5/2024
2.1.235 172 9/5/2024
2.1.234 142 9/5/2024
2.1.233 279 9/5/2024
2.1.232 118 9/5/2024
2.1.231 422 9/5/2024
2.1.230 111 9/5/2024
2.1.229 256 9/5/2024
2.1.228 145 9/5/2024
2.1.227 141 9/5/2024
2.1.226 817 9/5/2024
2.1.225 142 9/5/2024
2.1.224 244 9/5/2024
2.1.223 146 9/5/2024
2.1.222 813 9/4/2024
2.1.221 142 9/4/2024
2.1.220 444 9/4/2024
2.1.219 289 9/4/2024
2.1.218 153 9/4/2024
2.1.217 209 9/4/2024
2.1.216 251 9/3/2024
2.1.215 154 9/3/2024
2.1.214 373 9/3/2024
2.1.213 119 9/3/2024
2.1.212 380 9/3/2024
2.1.211 130 9/3/2024
2.1.210 385 9/3/2024
2.1.209 133 9/3/2024
2.1.207 436 9/3/2024
2.1.206 769 8/29/2024
2.1.205 145 8/29/2024
2.1.204 235 8/29/2024
2.1.203 129 8/29/2024
2.1.202 395 8/29/2024
2.1.201 554 8/26/2024
2.1.200 249 8/26/2024
2.1.199 249 8/26/2024
2.1.197 204 8/26/2024
2.1.196 574 8/26/2024
2.1.195 146 8/26/2024
2.1.194 499 8/21/2024
2.1.193 272 8/21/2024
2.1.192 164 8/21/2024
2.1.191 343 8/21/2024
2.1.190 159 8/21/2024
2.1.189 436 8/21/2024
2.1.188 128 8/21/2024
2.1.187 354 8/21/2024
2.1.186 133 8/21/2024
2.1.185 407 8/20/2024
2.1.184 146 8/20/2024
2.1.183 473 8/20/2024
2.1.182 148 8/20/2024
2.1.181 415 8/20/2024
2.1.180 137 8/20/2024
2.1.179 362 8/20/2024
2.1.178 599 8/20/2024
2.1.177 281 8/19/2024
2.1.176 147 8/19/2024
2.1.175 495 8/15/2024
2.1.174 220 8/15/2024
2.1.173 202 8/15/2024
2.1.172 134 8/15/2024
2.1.171 253 8/15/2024
2.1.170 227 8/15/2024
2.1.169 349 8/15/2024
2.1.168 129 8/15/2024
2.1.167 434 8/15/2024
2.1.166 525 8/14/2024
2.1.165 323 8/14/2024
2.1.164 162 8/14/2024
2.1.163 308 8/14/2024
2.1.162 147 8/14/2024
2.1.161 267 8/13/2024
2.1.160 485 8/13/2024
2.1.159 526 8/7/2024
2.1.158 225 8/7/2024
2.1.157 200 8/7/2024
2.1.156 226 8/7/2024
2.1.155 125 8/7/2024
2.1.154 243 8/7/2024
2.1.153 111 8/7/2024
2.1.152 261 8/6/2024
2.1.151 112 8/6/2024
2.1.150 225 8/6/2024
2.1.149 754 8/1/2024
2.1.148 289 8/1/2024
2.1.147 126 8/1/2024
2.1.146 270 8/1/2024
2.1.145 117 8/1/2024
2.1.144 186 8/1/2024
2.1.143 128 8/1/2024
2.1.142 374 8/1/2024
2.1.141 132 8/1/2024
2.1.140 149 8/1/2024
2.1.139 113 8/1/2024
2.1.138 215 8/1/2024
2.1.137 680 7/25/2024
2.1.136 289 7/25/2024
2.1.135 154 7/25/2024
2.1.134 155 7/25/2024
2.1.133 178 7/25/2024
2.1.132 90 7/25/2024
2.1.131 190 7/25/2024
2.1.130 86 7/25/2024
2.1.129 177 7/25/2024
2.1.128 105 7/25/2024
2.1.127 202 7/25/2024
2.1.126 150 7/25/2024
2.1.125 110 7/25/2024
2.1.124 210 7/25/2024
2.1.123 199 7/25/2024
2.1.122 102 7/25/2024
2.1.121 220 7/24/2024
2.1.120 185 7/24/2024
2.1.119 189 7/24/2024
2.1.118 1,220 7/20/2024
2.1.117 166 7/20/2024
2.1.116 150 7/20/2024
2.1.115 146 7/20/2024
2.1.114 130 7/20/2024
2.1.113 218 7/20/2024
2.1.112 144 7/20/2024
2.1.111 222 7/20/2024
2.1.110 693 7/17/2024
2.1.109 220 7/17/2024
2.1.108 200 7/17/2024
2.1.107 354 7/14/2024
2.1.106 128 7/14/2024
2.1.105 291 7/14/2024
2.1.104 309 7/14/2024
2.1.103 125 7/14/2024
2.1.102 115 7/14/2024
2.1.101 408 7/14/2024
2.1.100 136 7/14/2024
2.1.99 300 7/14/2024
2.1.98 509 7/11/2024
2.1.97 284 7/10/2024
2.1.96 152 7/10/2024
2.1.95 368 7/10/2024
2.1.94 416 7/10/2024
2.1.93 137 7/10/2024
2.1.92 161 7/10/2024
2.1.91 195 7/10/2024
2.1.90 210 7/10/2024
2.1.89 181 7/10/2024
2.1.88 102 7/10/2024
2.1.87 226 7/10/2024
2.1.86 113 7/10/2024
2.1.85 197 7/10/2024
2.1.84 134 7/10/2024
2.1.83 152 7/10/2024
2.1.82 127 7/10/2024
2.1.81 175 7/10/2024
2.1.80 137 7/10/2024
2.1.79 218 7/10/2024
2.1.78 127 7/10/2024
2.1.77 216 7/9/2024
2.1.75 179 7/9/2024
2.1.74 114 7/9/2024
2.1.73 239 7/9/2024
2.1.72 118 7/9/2024
2.1.71 973 7/9/2024
2.1.70 109 7/9/2024
2.1.69 10,287 7/9/2024
2.1.68 259 7/9/2024
2.1.67 129 7/9/2024
2.1.66 442 7/9/2024
2.1.65 129 7/9/2024
2.1.64 460 7/9/2024
2.1.63 222 7/9/2024
2.1.62 146 7/9/2024
2.1.61 151 7/8/2024
2.1.60 552 7/8/2024
2.1.59 149 7/8/2024
2.1.58 116 7/8/2024
2.1.57 240 7/8/2024
2.1.56 359 7/8/2024
2.1.55 358 7/8/2024
2.1.54 178 7/8/2024
2.1.53 290 7/8/2024
2.1.52 146 7/8/2024
2.1.51 419 7/8/2024
2.1.50 127 7/8/2024
2.1.49 279 7/7/2024
2.1.48 283 7/7/2024
2.1.47 131 7/7/2024
2.1.46 196 7/7/2024
2.1.45 218 7/7/2024
2.1.44 142 7/7/2024
2.1.43 496 7/7/2024
2.1.42 229 7/7/2024
2.1.41 509 7/5/2024
2.1.40 364 7/4/2024
2.1.39 361 7/3/2024
2.1.38 254 7/3/2024
2.1.37 225 7/3/2024
2.1.36 234 7/3/2024
2.1.35 217 7/3/2024
2.1.34 280 7/3/2024
2.1.33 139 7/3/2024
2.1.32 268 7/3/2024
2.1.31 143 7/3/2024
2.1.30 222 7/3/2024
2.1.29 469 7/3/2024
2.1.28 136 7/3/2024
2.1.27 360 7/3/2024
2.1.26 249 7/3/2024
2.1.25 127 7/3/2024
2.1.24 508 7/3/2024
2.1.23 355 6/30/2024
2.1.22 257 6/30/2024
2.1.21 144 6/30/2024
2.1.20 139 6/30/2024
2.1.19 137 6/30/2024
2.1.18 130 6/30/2024
2.1.17 201 6/30/2024
2.1.16 210 6/30/2024
2.1.15 228 6/29/2024
2.1.14 133 6/29/2024
2.1.13 153 6/29/2024
2.1.12 146 6/29/2024
2.1.11 140 6/29/2024
2.1.10 138 6/29/2024
2.1.9 152 6/29/2024
2.1.8 251 6/28/2024
2.1.7 526 6/27/2024
2.1.6 418 6/27/2024
2.1.5 387 6/24/2024
2.1.4 158 6/24/2024
2.1.3 147 6/24/2024
2.1.2 146 6/24/2024
2.1.1 157 6/24/2024