Soenneker.Utils.RateLimiting.Factory 2.1.64

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

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

Installation

dotnet add package Soenneker.Utils.RateLimiting.Factory

Usage

  1. Register IRateLimitingFactory within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddRateLimitingFactoryAsSingleton();
}
  1. Inject IRateLimitingFactory, and retrieve a RateLimitingFactory.

Example:

public class TestClass
{
    IRateLimitingFactory _factory;

    public TestClass(IRateLimitingFactory factory)
    {
        _factory = factory;
    }

    public async ValueTask ExecuteTasks()
    {
        RateLimitingExecutor rateLimitingExecutor = await _factory.Get("test", TimeSpan.FromSeconds(2));

        for (int i = 0; i < 5; i++)
        {
            await rateLimitingExecutor.Execute(async ct =>
            {
                Logger.LogInformation($"Executing Task {i + 1} at {DateTime.Now:HH:mm:ss}");

                await Task.Delay(100, ct); // Simulate some work
            });
        }
    }
}

Console Output

Executing Task 1 at 14:00:00
Executing Task 2 at 14:00:02
Executing Task 3 at 14:00:04
Executing Task 4 at 14:00:06
Executing Task 5 at 14:00:08
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.Utils.RateLimiting.Factory:

Package Downloads
Soenneker.Validators.Yahoo.Exists

A validation module checking for Yahoo account existence

Soenneker.Validators.Gmail.Exists

A validation module checking for Gmail account existence

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.799 0 4/1/2025
3.0.798 0 4/1/2025
3.0.797 0 3/31/2025
3.0.796 0 3/31/2025
3.0.795 20 3/31/2025
3.0.794 14 3/31/2025
3.0.793 32 3/31/2025
3.0.792 43 3/31/2025
3.0.791 61 3/29/2025
3.0.790 56 3/29/2025
3.0.789 55 3/29/2025
3.0.788 45 3/29/2025
3.0.787 49 3/29/2025
3.0.786 124 3/27/2025
3.0.785 467 3/26/2025
3.0.784 459 3/25/2025
3.0.783 438 3/25/2025
3.0.782 459 3/25/2025
3.0.781 438 3/25/2025
3.0.780 449 3/25/2025
3.0.779 441 3/25/2025
3.0.778 215 3/21/2025
3.0.777 115 3/21/2025
3.0.776 95 3/21/2025
3.0.775 127 3/21/2025
3.0.774 105 3/21/2025
3.0.773 201 3/20/2025
3.0.772 235 3/18/2025
3.0.771 181 3/18/2025
3.0.770 126 3/18/2025
3.0.769 139 3/18/2025
3.0.768 186 3/18/2025
3.0.767 159 3/18/2025
3.0.766 131 3/15/2025
3.0.765 76 3/15/2025
3.0.764 73 3/15/2025
3.0.763 48 3/15/2025
3.0.762 86 3/15/2025
3.0.761 287 3/12/2025
3.0.760 162 3/12/2025
3.0.759 163 3/12/2025
3.0.758 145 3/12/2025
3.0.757 217 3/12/2025
3.0.756 149 3/12/2025
3.0.755 138 3/12/2025
3.0.754 143 3/12/2025
3.0.753 217 3/12/2025
3.0.752 145 3/12/2025
3.0.751 143 3/12/2025
3.0.750 178 3/11/2025
3.0.749 139 3/11/2025
3.0.748 198 3/11/2025
3.0.747 154 3/11/2025
3.0.746 160 3/11/2025
3.0.745 151 3/11/2025
3.0.744 164 3/11/2025
3.0.743 156 3/11/2025
3.0.742 222 3/11/2025
3.0.741 153 3/11/2025
3.0.740 163 3/11/2025
3.0.739 286 3/11/2025
3.0.738 146 3/11/2025
3.0.737 315 3/7/2025
3.0.736 210 3/7/2025
3.0.735 193 3/7/2025
3.0.734 266 3/7/2025
3.0.733 229 3/7/2025
3.0.732 208 3/7/2025
3.0.731 248 3/2/2025
3.0.730 118 3/2/2025
3.0.729 117 3/2/2025
3.0.728 101 3/2/2025
3.0.727 74 3/2/2025
3.0.726 84 3/2/2025
3.0.725 78 3/2/2025
3.0.724 125 3/2/2025
3.0.723 76 3/2/2025
3.0.722 119 3/2/2025
3.0.721 70 3/2/2025
3.0.720 90 3/2/2025
3.0.719 81 3/2/2025
3.0.718 182 3/1/2025
3.0.717 83 3/1/2025
3.0.716 82 3/1/2025
3.0.715 173 3/1/2025
3.0.714 76 3/1/2025
3.0.713 75 3/1/2025
3.0.712 264 3/1/2025
3.0.711 83 3/1/2025
3.0.710 81 3/1/2025
3.0.709 70 3/1/2025
3.0.708 85 3/1/2025
3.0.707 70 3/1/2025
3.0.706 168 3/1/2025
3.0.705 74 3/1/2025
3.0.704 71 3/1/2025
3.0.703 268 2/26/2025
3.0.702 80 2/26/2025
3.0.701 110 2/25/2025
3.0.700 71 2/25/2025
3.0.699 156 2/25/2025
3.0.698 79 2/25/2025
3.0.697 177 2/25/2025
3.0.696 80 2/25/2025
3.0.695 75 2/25/2025
3.0.694 131 2/25/2025
3.0.693 77 2/25/2025
3.0.692 84 2/24/2025
3.0.691 80 2/24/2025
3.0.690 80 2/24/2025
3.0.689 293 2/23/2025
3.0.688 132 2/23/2025
3.0.687 120 2/23/2025
3.0.686 79 2/23/2025
3.0.685 99 2/23/2025
3.0.684 74 2/23/2025
3.0.683 80 2/22/2025
3.0.682 188 2/22/2025
3.0.681 146 2/22/2025
3.0.680 97 2/22/2025
3.0.679 116 2/22/2025
3.0.678 87 2/22/2025
3.0.677 103 2/22/2025
3.0.676 120 2/22/2025
3.0.675 84 2/22/2025
3.0.674 168 2/22/2025
3.0.673 96 2/22/2025
3.0.672 79 2/22/2025
3.0.671 127 2/21/2025
3.0.670 80 2/21/2025
3.0.669 86 2/21/2025
3.0.668 85 2/21/2025
3.0.667 82 2/21/2025
3.0.666 244 2/21/2025
3.0.665 88 2/21/2025
3.0.664 82 2/21/2025
3.0.663 270 2/19/2025
3.0.662 96 2/19/2025
3.0.661 102 2/19/2025
3.0.660 86 2/19/2025
3.0.659 101 2/19/2025
3.0.658 89 2/19/2025
3.0.657 112 2/19/2025
3.0.656 90 2/19/2025
3.0.655 235 2/18/2025
3.0.654 86 2/18/2025
3.0.653 148 2/18/2025
3.0.652 85 2/18/2025
3.0.651 92 2/18/2025
3.0.650 84 2/18/2025
3.0.649 81 2/18/2025
3.0.648 208 2/18/2025
3.0.647 89 2/18/2025
3.0.646 192 2/16/2025
3.0.645 143 2/14/2025
3.0.644 107 2/14/2025
3.0.643 92 2/14/2025
3.0.642 119 2/14/2025
3.0.641 95 2/14/2025
3.0.640 95 2/14/2025
3.0.639 87 2/14/2025
3.0.638 170 2/13/2025
3.0.637 90 2/13/2025
3.0.636 275 2/12/2025
3.0.635 99 2/12/2025
3.0.634 90 2/12/2025
3.0.633 93 2/12/2025
3.0.632 164 2/12/2025
3.0.631 84 2/12/2025
3.0.630 95 2/12/2025
3.0.629 133 2/12/2025
3.0.628 80 2/12/2025
3.0.627 92 2/12/2025
3.0.626 85 2/12/2025
3.0.625 87 2/12/2025
3.0.624 145 2/11/2025
3.0.623 83 2/11/2025
3.0.622 80 2/11/2025
3.0.621 291 2/11/2025
3.0.620 84 2/11/2025
3.0.619 90 2/11/2025
3.0.618 88 2/11/2025
3.0.617 82 2/11/2025
3.0.616 82 2/11/2025
3.0.615 196 2/11/2025
3.0.614 86 2/11/2025
3.0.613 84 2/11/2025
3.0.612 155 2/11/2025
3.0.611 93 2/11/2025
3.0.610 118 2/11/2025
3.0.609 81 2/11/2025
3.0.608 87 2/11/2025
3.0.607 119 2/11/2025
3.0.606 87 2/11/2025
3.0.605 91 2/11/2025
3.0.604 87 2/10/2025
3.0.603 94 2/10/2025
3.0.602 92 2/10/2025
3.0.601 176 2/10/2025
3.0.600 79 2/10/2025
3.0.599 81 2/10/2025
3.0.598 160 2/10/2025
3.0.597 89 2/10/2025
3.0.596 83 2/10/2025
3.0.595 152 2/10/2025
3.0.594 179 2/9/2025
3.0.593 106 2/9/2025
3.0.592 80 2/9/2025
3.0.591 75 2/9/2025
3.0.590 84 2/9/2025
3.0.589 81 2/9/2025
3.0.588 89 2/9/2025
3.0.587 285 2/8/2025
3.0.586 85 2/8/2025
3.0.585 91 2/8/2025
3.0.584 84 2/8/2025
3.0.583 78 2/8/2025
3.0.582 105 2/7/2025
3.0.581 81 2/7/2025
3.0.580 82 2/7/2025
3.0.579 211 2/7/2025
3.0.578 75 2/7/2025
3.0.577 84 2/7/2025
3.0.576 90 2/7/2025
3.0.575 79 2/7/2025
3.0.574 82 2/7/2025
3.0.573 83 2/7/2025
3.0.572 82 2/7/2025
3.0.571 88 2/7/2025
3.0.570 79 2/7/2025
3.0.569 85 2/7/2025
3.0.568 75 2/7/2025
3.0.567 268 2/7/2025
3.0.566 129 2/7/2025
3.0.565 80 2/6/2025
3.0.564 189 2/5/2025
3.0.563 122 2/5/2025
3.0.562 106 2/5/2025
3.0.561 120 2/5/2025
3.0.560 106 2/5/2025
3.0.559 90 2/5/2025
3.0.558 192 2/5/2025
3.0.557 85 2/5/2025
3.0.556 111 2/5/2025
3.0.555 78 2/5/2025
3.0.554 92 2/5/2025
3.0.553 84 2/5/2025
3.0.552 84 2/5/2025
3.0.551 165 2/5/2025
3.0.550 188 2/5/2025
3.0.549 218 1/28/2025
3.0.548 90 1/28/2025
3.0.547 81 1/28/2025
3.0.546 79 1/28/2025
3.0.545 82 1/28/2025
3.0.544 78 1/28/2025
3.0.543 134 1/28/2025
3.0.542 76 1/28/2025
3.0.541 100 1/28/2025
3.0.540 94 1/28/2025
3.0.539 202 1/28/2025
3.0.538 79 1/27/2025
3.0.537 70 1/27/2025
3.0.536 71 1/27/2025
3.0.535 69 1/27/2025
3.0.534 73 1/27/2025
3.0.533 110 1/27/2025
3.0.532 72 1/27/2025
3.0.531 77 1/27/2025
3.0.530 72 1/27/2025
3.0.529 75 1/27/2025
3.0.528 208 1/26/2025
3.0.527 117 1/26/2025
3.0.526 81 1/26/2025
3.0.525 84 1/26/2025
3.0.524 81 1/26/2025
3.0.523 150 1/26/2025
3.0.522 85 1/25/2025
3.0.521 80 1/25/2025
3.0.520 176 1/25/2025
3.0.519 77 1/25/2025
3.0.518 79 1/25/2025
3.0.517 137 1/25/2025
3.0.516 77 1/25/2025
3.0.515 103 1/25/2025
3.0.514 165 1/25/2025
3.0.513 71 1/25/2025
3.0.512 163 1/24/2025
3.0.511 120 1/24/2025
3.0.510 104 1/24/2025
3.0.509 74 1/24/2025
3.0.508 101 1/24/2025
3.0.507 92 1/24/2025
3.0.506 75 1/24/2025
3.0.505 136 1/24/2025
3.0.504 78 1/24/2025
3.0.503 134 1/24/2025
3.0.502 75 1/24/2025
3.0.501 71 1/24/2025
3.0.500 74 1/24/2025
3.0.499 78 1/24/2025
3.0.498 75 1/24/2025
3.0.497 72 1/24/2025
3.0.496 70 1/24/2025
3.0.495 186 1/24/2025
3.0.494 72 1/24/2025
3.0.493 72 1/24/2025
3.0.492 71 1/24/2025
3.0.491 101 1/23/2025
3.0.490 115 1/23/2025
3.0.489 75 1/23/2025
3.0.488 194 1/22/2025
3.0.487 127 1/22/2025
3.0.486 85 1/21/2025
3.0.485 68 1/21/2025
3.0.484 131 1/21/2025
3.0.483 70 1/21/2025
3.0.482 80 1/21/2025
3.0.481 78 1/21/2025
3.0.480 76 1/21/2025
3.0.479 123 1/21/2025
3.0.478 73 1/21/2025
3.0.477 75 1/21/2025
3.0.476 200 1/21/2025
3.0.475 75 1/21/2025
3.0.474 76 1/21/2025
3.0.473 81 1/21/2025
3.0.472 77 1/21/2025
3.0.471 73 1/21/2025
3.0.470 214 1/21/2025
3.0.469 79 1/21/2025
3.0.468 126 1/20/2025
3.0.467 71 1/20/2025
3.0.466 137 1/20/2025
3.0.465 72 1/20/2025
3.0.464 156 1/20/2025
3.0.463 131 1/20/2025
3.0.462 76 1/20/2025
3.0.461 109 1/20/2025
3.0.460 68 1/20/2025
3.0.459 201 1/20/2025
3.0.458 75 1/20/2025
3.0.457 76 1/20/2025
3.0.456 69 1/20/2025
3.0.455 71 1/20/2025
3.0.454 180 1/19/2025
3.0.453 68 1/19/2025
3.0.452 76 1/19/2025
3.0.451 68 1/19/2025
3.0.450 145 1/19/2025
3.0.449 68 1/19/2025
3.0.448 71 1/19/2025
3.0.447 212 1/19/2025
3.0.446 67 1/19/2025
3.0.445 123 1/18/2025
3.0.444 146 1/18/2025
3.0.443 67 1/18/2025
3.0.442 165 1/18/2025
3.0.441 162 1/17/2025
3.0.440 123 1/17/2025
3.0.439 70 1/17/2025
3.0.438 74 1/17/2025
3.0.437 77 1/17/2025
3.0.436 150 1/17/2025
3.0.435 70 1/17/2025
3.0.434 96 1/17/2025
3.0.433 79 1/16/2025
3.0.432 141 1/16/2025
3.0.431 73 1/16/2025
3.0.430 90 1/16/2025
3.0.429 153 1/16/2025
3.0.428 94 1/16/2025
3.0.427 97 1/16/2025
3.0.426 67 1/16/2025
3.0.425 80 1/16/2025
3.0.424 134 1/16/2025
3.0.423 70 1/16/2025
3.0.422 160 1/16/2025
3.0.421 77 1/15/2025
3.0.420 140 1/15/2025
3.0.419 128 1/15/2025
3.0.418 76 1/15/2025
3.0.417 69 1/15/2025
3.0.416 113 1/15/2025
3.0.415 61 1/15/2025
3.0.414 229 1/15/2025
3.0.413 56 1/15/2025
3.0.412 86 1/15/2025
3.0.411 57 1/15/2025
3.0.410 45 1/15/2025
3.0.409 41 1/15/2025
3.0.408 39 1/15/2025
3.0.407 95 1/14/2025
3.0.406 54 1/14/2025
3.0.405 57 1/14/2025
3.0.404 63 1/14/2025
3.0.403 53 1/14/2025
3.0.402 115 1/14/2025
3.0.401 55 1/14/2025
3.0.400 156 1/14/2025
3.0.399 53 1/14/2025
3.0.398 127 1/13/2025
3.0.397 64 1/13/2025
3.0.396 58 1/13/2025
3.0.395 110 1/13/2025
3.0.394 66 1/13/2025
3.0.393 87 1/13/2025
3.0.392 63 1/13/2025
3.0.391 153 1/13/2025
3.0.390 63 1/13/2025
3.0.389 139 1/11/2025
3.0.388 68 1/11/2025
3.0.387 72 1/11/2025
3.0.386 101 1/11/2025
3.0.385 112 1/11/2025
3.0.384 72 1/11/2025
3.0.383 79 1/11/2025
3.0.382 75 1/11/2025
3.0.381 106 1/11/2025
3.0.380 74 1/11/2025
3.0.379 138 1/10/2025
3.0.378 79 1/10/2025
3.0.377 125 1/10/2025
3.0.376 76 1/10/2025
3.0.375 117 1/10/2025
3.0.374 74 1/10/2025
3.0.373 97 1/10/2025
3.0.372 73 1/10/2025
3.0.371 455 1/3/2025
3.0.370 167 1/3/2025
3.0.369 116 1/3/2025
3.0.368 97 1/3/2025
3.0.367 114 1/3/2025
3.0.366 103 1/3/2025
3.0.365 153 1/3/2025
3.0.364 106 1/3/2025
3.0.363 96 1/3/2025
3.0.362 82 1/3/2025
3.0.361 95 1/3/2025
3.0.360 84 1/3/2025
3.0.359 151 1/2/2025
3.0.358 83 1/2/2025
3.0.357 154 1/2/2025
3.0.356 87 1/2/2025
3.0.355 259 1/2/2025
3.0.354 84 1/2/2025
3.0.353 87 1/2/2025
3.0.352 185 1/1/2025
3.0.351 94 1/1/2025
3.0.350 91 1/1/2025
3.0.349 135 1/1/2025
3.0.348 88 1/1/2025
3.0.347 100 1/1/2025
3.0.346 87 1/1/2025
3.0.345 160 1/1/2025
3.0.344 97 1/1/2025
3.0.343 89 1/1/2025
3.0.342 98 1/1/2025
3.0.341 127 1/1/2025
3.0.340 97 1/1/2025
3.0.339 102 12/31/2024
3.0.338 93 12/31/2024
3.0.337 89 12/31/2024
3.0.336 186 12/31/2024
3.0.335 99 12/31/2024
3.0.334 100 12/31/2024
3.0.333 254 12/31/2024
3.0.332 108 12/31/2024
3.0.331 109 12/31/2024
3.0.330 103 12/31/2024
3.0.329 223 12/31/2024
3.0.328 77 12/31/2024
3.0.327 74 12/31/2024
3.0.326 136 12/31/2024
3.0.325 78 12/31/2024
3.0.324 84 12/31/2024
3.0.323 83 12/31/2024
3.0.322 84 12/31/2024
3.0.321 211 12/30/2024
3.0.320 155 12/28/2024
3.0.319 135 12/28/2024
3.0.318 87 12/28/2024
3.0.317 87 12/28/2024
3.0.316 100 12/28/2024
3.0.315 125 12/28/2024
3.0.314 78 12/28/2024
3.0.313 90 12/27/2024
3.0.312 86 12/27/2024
3.0.311 154 12/27/2024
3.0.310 84 12/27/2024
3.0.309 274 12/24/2024
3.0.308 138 12/24/2024
3.0.307 85 12/24/2024
3.0.306 80 12/24/2024
3.0.305 154 12/24/2024
3.0.304 102 12/24/2024
3.0.303 113 12/24/2024
3.0.302 86 12/24/2024
3.0.301 83 12/24/2024
3.0.300 163 12/24/2024
3.0.299 161 12/24/2024
3.0.298 110 12/24/2024
3.0.297 79 12/24/2024
3.0.296 86 12/24/2024
3.0.295 85 12/24/2024
3.0.294 117 12/24/2024
3.0.293 83 12/24/2024
3.0.292 118 12/23/2024
3.0.291 75 12/23/2024
3.0.290 95 12/23/2024
3.0.289 83 12/23/2024
3.0.288 144 12/23/2024
3.0.287 186 12/23/2024
3.0.286 82 12/23/2024
3.0.285 138 12/23/2024
3.0.284 86 12/23/2024
3.0.283 85 12/23/2024
3.0.282 114 12/23/2024
3.0.281 83 12/23/2024
3.0.280 200 12/23/2024
3.0.279 84 12/23/2024
3.0.278 119 12/22/2024
3.0.277 80 12/22/2024
3.0.276 87 12/22/2024
3.0.275 161 12/22/2024
3.0.274 95 12/22/2024
3.0.273 86 12/22/2024
3.0.272 93 12/22/2024
3.0.271 203 12/22/2024
3.0.270 86 12/22/2024
3.0.269 137 12/22/2024
3.0.268 180 12/22/2024
3.0.267 88 12/22/2024
3.0.266 116 12/22/2024
3.0.265 113 12/21/2024
3.0.264 99 12/21/2024
3.0.263 107 12/21/2024
3.0.262 87 12/21/2024
3.0.261 227 12/21/2024
3.0.260 87 12/21/2024
3.0.259 121 12/21/2024
3.0.258 86 12/21/2024
3.0.257 164 12/21/2024
3.0.256 91 12/21/2024
3.0.255 84 12/21/2024
3.0.254 206 12/21/2024
3.0.253 89 12/21/2024
3.0.252 83 12/21/2024
3.0.251 126 12/20/2024
3.0.250 83 12/20/2024
3.0.249 148 12/20/2024
3.0.248 89 12/20/2024
3.0.247 85 12/20/2024
3.0.246 164 12/20/2024
3.0.245 151 12/20/2024
3.0.244 85 12/20/2024
3.0.243 90 12/20/2024
3.0.242 89 12/20/2024
3.0.241 149 12/20/2024
3.0.240 95 12/20/2024
3.0.239 94 12/20/2024
3.0.238 168 12/19/2024
3.0.237 87 12/19/2024
3.0.236 121 12/19/2024
3.0.235 107 12/19/2024
3.0.234 86 12/19/2024
3.0.233 88 12/19/2024
3.0.232 132 12/19/2024
3.0.231 81 12/19/2024
3.0.230 118 12/18/2024
3.0.229 85 12/18/2024
3.0.228 89 12/18/2024
3.0.227 176 12/17/2024
3.0.225 119 12/17/2024
3.0.224 152 12/17/2024
3.0.223 108 12/16/2024
3.0.222 86 12/16/2024
3.0.221 88 12/16/2024
3.0.220 94 12/16/2024
3.0.219 277 12/10/2024
3.0.218 78 12/10/2024
3.0.217 106 12/10/2024
3.0.216 92 12/10/2024
3.0.215 129 12/10/2024
3.0.214 85 12/10/2024
3.0.213 99 12/9/2024
3.0.212 97 12/9/2024
3.0.211 130 12/9/2024
3.0.210 172 12/9/2024
3.0.209 89 12/9/2024
3.0.208 96 12/9/2024
3.0.207 81 12/9/2024
3.0.206 85 12/9/2024
3.0.205 138 12/9/2024
3.0.204 83 12/9/2024
3.0.203 208 12/7/2024
3.0.202 98 12/7/2024
3.0.201 91 12/7/2024
3.0.200 87 12/6/2024
3.0.199 83 12/6/2024
3.0.198 98 12/6/2024
3.0.197 91 12/6/2024
3.0.196 92 12/6/2024
3.0.195 93 12/6/2024
3.0.194 94 12/6/2024
3.0.193 87 12/6/2024
3.0.192 94 12/6/2024
3.0.191 101 12/6/2024
3.0.190 95 12/6/2024
3.0.189 100 12/6/2024
3.0.188 97 12/6/2024
3.0.187 112 12/6/2024
3.0.184 105 12/6/2024
3.0.183 93 12/6/2024
3.0.182 89 12/6/2024
3.0.181 104 12/5/2024
3.0.180 100 12/5/2024
3.0.179 93 12/5/2024
3.0.178 646 12/5/2024
3.0.177 104 12/5/2024
3.0.176 94 12/5/2024
3.0.175 117 12/5/2024
3.0.174 82 12/5/2024
3.0.173 112 12/5/2024
3.0.172 133 12/5/2024
3.0.171 88 12/5/2024
3.0.170 122 12/5/2024
3.0.169 96 12/5/2024
3.0.168 100 12/5/2024
3.0.167 92 12/4/2024
3.0.166 92 12/4/2024
3.0.165 141 12/4/2024
3.0.164 93 12/4/2024
3.0.163 179 12/4/2024
3.0.162 128 12/4/2024
3.0.161 99 12/4/2024
3.0.160 127 12/4/2024
3.0.159 90 12/4/2024
3.0.158 148 12/4/2024
3.0.157 91 12/4/2024
3.0.156 94 12/4/2024
3.0.155 166 12/4/2024
3.0.154 92 12/3/2024
3.0.153 85 12/3/2024
3.0.152 128 12/3/2024
3.0.151 81 12/3/2024
3.0.150 117 12/3/2024
3.0.149 86 12/3/2024
3.0.148 90 12/3/2024
3.0.147 87 12/3/2024
3.0.146 132 12/3/2024
3.0.145 82 12/3/2024
3.0.144 94 12/3/2024
3.0.143 138 12/3/2024
3.0.142 87 12/3/2024
3.0.141 328 12/2/2024
3.0.140 94 12/2/2024
3.0.139 89 12/2/2024
3.0.138 81 12/2/2024
3.0.137 137 12/2/2024
3.0.136 95 12/2/2024
3.0.135 92 12/2/2024
3.0.134 143 12/2/2024
3.0.133 85 12/2/2024
3.0.132 147 12/2/2024
3.0.131 85 12/2/2024
3.0.130 189 12/2/2024
3.0.129 87 12/2/2024
3.0.128 88 12/1/2024
3.0.127 89 12/1/2024
3.0.126 130 12/1/2024
3.0.125 92 12/1/2024
3.0.124 184 12/1/2024
3.0.123 101 12/1/2024
3.0.122 95 12/1/2024
3.0.121 94 12/1/2024
3.0.120 175 11/29/2024
3.0.119 112 11/29/2024
3.0.118 87 11/29/2024
3.0.117 127 11/29/2024
3.0.116 83 11/29/2024
3.0.115 120 11/29/2024
3.0.114 103 11/29/2024
3.0.113 168 11/21/2024
3.0.112 107 11/21/2024
3.0.111 85 11/21/2024
3.0.110 91 11/21/2024
3.0.109 117 11/21/2024
3.0.108 95 11/21/2024
3.0.107 190 11/20/2024
3.0.106 101 11/20/2024
3.0.105 91 11/20/2024
3.0.104 110 11/20/2024
3.0.103 89 11/20/2024
3.0.102 85 11/20/2024
3.0.101 93 11/20/2024
3.0.100 90 11/19/2024
3.0.99 90 11/19/2024
3.0.98 86 11/19/2024
3.0.97 352 11/19/2024
3.0.96 216 11/19/2024
3.0.95 80 11/19/2024
3.0.94 80 11/19/2024
3.0.93 155 11/19/2024
3.0.92 81 11/19/2024
3.0.91 110 11/19/2024
3.0.90 88 11/19/2024
3.0.89 238 11/15/2024
3.0.88 115 11/15/2024
3.0.87 83 11/15/2024
3.0.86 92 11/14/2024
3.0.85 83 11/14/2024
3.0.84 129 11/14/2024
3.0.83 85 11/14/2024
3.0.82 94 11/14/2024
3.0.81 88 11/14/2024
3.0.80 139 11/14/2024
3.0.79 135 11/14/2024
3.0.78 97 11/14/2024
3.0.77 87 11/14/2024
3.0.76 181 11/14/2024
3.0.75 100 11/14/2024
3.0.74 141 11/14/2024
3.0.73 174 11/14/2024
3.0.72 96 11/14/2024
3.0.71 151 11/14/2024
3.0.70 90 11/14/2024
3.0.69 116 11/14/2024
3.0.68 103 11/14/2024
3.0.67 187 11/14/2024
3.0.66 95 11/14/2024
3.0.65 95 11/14/2024
2.1.64 275 11/13/2024
2.1.63 111 11/13/2024
2.1.62 126 11/13/2024
2.1.61 91 11/13/2024
2.1.60 92 11/13/2024
2.1.59 229 11/13/2024
2.1.58 95 11/13/2024
2.1.57 95 11/13/2024
2.1.56 132 11/12/2024
2.1.55 91 11/12/2024
2.1.54 612 11/9/2024
2.1.53 125 11/9/2024
2.1.52 99 11/9/2024
2.1.51 149 11/9/2024
2.1.50 101 11/9/2024
2.1.49 100 11/9/2024
2.1.48 101 11/9/2024
2.1.47 232 11/9/2024
2.1.46 217 11/8/2024
2.1.45 102 11/8/2024
2.1.44 108 11/8/2024
2.1.43 127 11/8/2024
2.1.42 106 11/8/2024
2.1.41 218 11/8/2024
2.1.40 102 11/8/2024
2.1.39 101 11/8/2024
2.1.38 190 11/8/2024
2.1.37 95 11/8/2024
2.1.36 255 11/6/2024
2.1.35 145 11/6/2024
2.1.34 280 11/1/2024
2.1.33 131 11/1/2024
2.1.32 100 11/1/2024
2.1.31 130 11/1/2024
2.1.30 162 11/1/2024
2.1.29 160 11/1/2024
2.1.28 106 11/1/2024
2.1.26 225 10/29/2024
2.1.25 91 10/29/2024
2.1.24 90 10/29/2024
2.1.23 102 10/29/2024
2.1.22 97 10/29/2024
2.1.21 90 10/29/2024
2.1.20 228 10/29/2024
2.1.19 197 10/29/2024
2.1.18 130 10/29/2024
2.1.17 96 10/29/2024
2.1.16 87 10/29/2024
2.1.15 218 10/28/2024
2.1.14 99 10/28/2024
2.1.13 95 10/28/2024
2.1.12 320 10/26/2024
2.1.11 99 10/26/2024
2.1.10 98 10/26/2024
2.1.9 92 10/26/2024
2.1.8 99 10/26/2024
2.1.7 95 10/26/2024
2.1.6 218 10/22/2024
2.1.5 95 10/22/2024
2.1.4 92 10/22/2024
2.1.3 96 10/22/2024
2.1.2 98 10/22/2024
2.1.1 100 10/22/2024