Soenneker.Utils.RateLimiting.Factory 3.0.873

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