Soenneker.Extensions.Enumerable 2.1.161

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

A collection of helpful enumerable extension methods

Installation

dotnet add package Soenneker.Extensions.Enumerable

Usage

IEnumerable should have IsNullOrEmpty() too

var populatedList = new List<string>{"foo", "bar", "foo"};

populatedList.IsNullOrEmpty() // false

populatedList.Populated() // true
populatedList.None() // false

One call checking for null and contains any elements

List<string>? nullList = null;

nullList.IsNullOrEmpty() // true
nullList.Populated() // false

Duplicate handling

var containsDuplicates = populatedList.ContainsDuplicates(); // true

var deduped = populatedList.RemoveDuplicates(); // {"foo", "bar"}

Recursive flattening

public class Node 
{
    public string Name {get; set;}
    public List<Node> Children {get; set;}
}

void Example()
{
    var node = new Node(){ Name = "Node1" };
    node.Children = new List()
    {
        new Node() 
        {
            Name = "Node2"
        }
    }

    List<Node>? children = node.Children.ToFlattenedFromRecursive(c => c.Children);

    // Results in flattened List:
    // { Node1, Node2 }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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 (15)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.Enumerable:

Package Downloads
Soenneker.Utils.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Utils.String

A utility library for useful String operations

Soenneker.Swashbuckle.Authentication

A middleware implementing basic authentication and RBAC support for Swashbuckle (Swagger)

Soenneker.Utils.Network

A utility library of helpful network related operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.566 46,626 9/9/2025
3.0.565 26,609 9/3/2025
3.0.564 2,796 9/3/2025
3.0.563 160 9/3/2025
3.0.562 45,258 8/11/2025
3.0.561 6,247 8/11/2025
3.0.560 494 8/11/2025
3.0.559 31,240 8/5/2025
3.0.558 33,526 7/8/2025
3.0.557 37,213 6/27/2025
3.0.556 3,055 6/27/2025
3.0.555 304 6/27/2025
3.0.554 41,477 6/10/2025
3.0.553 29,687 5/27/2025
3.0.552 1,978 5/27/2025
3.0.551 1,629 5/27/2025
3.0.550 28,535 5/23/2025
3.0.549 3,211 5/23/2025
3.0.548 3,135 5/22/2025
3.0.547 27,547 5/14/2025
3.0.546 16,610 5/8/2025
3.0.545 2,506 5/7/2025
3.0.544 325 5/7/2025
3.0.543 23,389 5/5/2025
3.0.542 2,671 5/5/2025
3.0.541 4,822 5/5/2025
3.0.540 185 5/5/2025
3.0.539 33,646 4/8/2025
3.0.538 3,586 4/8/2025
3.0.537 747 4/8/2025
3.0.536 3,743 4/8/2025
3.0.535 217 4/8/2025
3.0.534 5,877 4/8/2025
3.0.533 887 4/8/2025
3.0.532 9,267 4/8/2025
3.0.531 11,353 4/8/2025
3.0.530 2,388 4/7/2025
3.0.529 5,645 4/7/2025
3.0.528 1,893 4/7/2025
3.0.527 4,591 4/7/2025
3.0.526 12,546 4/7/2025
3.0.525 3,552 4/7/2025
3.0.524 863 4/7/2025
3.0.523 14,341 4/7/2025
3.0.522 2,819 4/7/2025
3.0.521 4,798 4/6/2025
3.0.520 339 4/6/2025
3.0.519 2,257 4/6/2025
3.0.518 2,778 4/6/2025
3.0.517 3,321 4/6/2025
3.0.516 157 4/6/2025
3.0.515 585 4/6/2025
3.0.514 167 4/6/2025
3.0.513 711 4/5/2025
3.0.512 4,556 4/5/2025
3.0.511 2,223 4/5/2025
3.0.510 1,708 4/5/2025
3.0.509 244 4/5/2025
3.0.508 313 4/5/2025
3.0.507 404 4/5/2025
3.0.506 4,080 4/4/2025
3.0.505 183 4/4/2025
3.0.504 4,560 4/4/2025
3.0.503 54,687 4/4/2025
3.0.502 12,648 4/1/2025
3.0.501 6,968 4/1/2025
3.0.500 9,909 3/31/2025
3.0.499 4,382 3/31/2025
3.0.498 9,924 3/31/2025
3.0.497 12,144 3/29/2025
3.0.496 3,223 3/29/2025
3.0.495 10,069 3/27/2025
3.0.494 6,414 3/25/2025
3.0.493 2,470 3/25/2025
3.0.492 16,385 3/21/2025
3.0.491 15,549 3/18/2025
3.0.490 7,616 3/18/2025
3.0.489 11,427 3/15/2025
3.0.488 3,623 3/15/2025
3.0.487 12,846 3/12/2025
3.0.486 4,732 3/12/2025
3.0.485 709 3/12/2025
3.0.484 4,766 3/11/2025
3.0.483 532 3/11/2025
3.0.482 1,862 3/11/2025
3.0.481 3,485 3/11/2025
3.0.480 5,406 3/11/2025
3.0.479 4,610 3/11/2025
3.0.478 3,045 3/11/2025
3.0.477 18,555 3/7/2025
3.0.476 5,572 3/7/2025
3.0.475 11,087 3/2/2025
3.0.474 4,168 3/2/2025
3.0.473 1,014 3/2/2025
3.0.472 8,018 3/2/2025
3.0.471 7,473 3/1/2025
3.0.470 352 3/1/2025
3.0.469 7,183 3/1/2025
3.0.468 154 3/1/2025
3.0.467 2,603 3/1/2025
3.0.466 19,162 2/26/2025
3.0.465 1,705 2/25/2025
3.0.464 4,817 2/25/2025
3.0.463 3,087 2/25/2025
3.0.462 1,578 2/25/2025
3.0.461 17,833 2/23/2025
3.0.460 3,188 2/22/2025
3.0.459 14,209 2/22/2025
3.0.458 4,151 2/22/2025
3.0.457 5,097 2/22/2025
3.0.456 834 2/21/2025
3.0.455 8,174 2/21/2025
3.0.454 17,720 2/19/2025
3.0.453 7,159 2/18/2025
3.0.452 1,551 2/18/2025
3.0.451 643 2/18/2025
3.0.450 8,722 2/18/2025
3.0.449 151 2/18/2025
3.0.448 20,022 2/14/2025
3.0.447 2,083 2/14/2025
3.0.446 5,904 2/13/2025
3.0.445 7,164 2/13/2025
3.0.444 7,855 2/12/2025
3.0.443 2,500 2/12/2025
3.0.442 1,096 2/12/2025
3.0.441 3,206 2/12/2025
3.0.440 1,045 2/12/2025
3.0.439 761 2/11/2025
3.0.438 12,042 2/11/2025
3.0.437 4,104 2/11/2025
3.0.436 659 2/11/2025
3.0.435 3,911 2/10/2025
3.0.434 162 2/10/2025
3.0.433 2,585 2/10/2025
3.0.432 158 2/10/2025
3.0.431 21,065 2/9/2025
3.0.430 12,039 2/9/2025
3.0.429 562 2/9/2025
3.0.428 416 2/8/2025
3.0.427 323 2/8/2025
3.0.426 410 2/8/2025
3.0.425 12,908 2/8/2025
3.0.424 4,205 2/7/2025
3.0.423 2,912 2/7/2025
3.0.422 3,495 2/7/2025
3.0.421 153 2/7/2025
3.0.420 567 2/7/2025
3.0.419 165 2/7/2025
3.0.418 2,995 2/7/2025
3.0.417 156 2/7/2025
3.0.416 21,906 2/7/2025
3.0.415 11,021 2/5/2025
3.0.414 1,257 2/5/2025
3.0.413 1,802 2/5/2025
3.0.412 357 2/5/2025
3.0.411 3,885 2/5/2025
3.0.410 8,447 2/5/2025
3.0.409 18,107 1/28/2025
3.0.408 1,317 1/28/2025
3.0.407 391 1/28/2025
3.0.406 4,313 1/28/2025
3.0.405 9,143 1/27/2025
3.0.404 2,399 1/27/2025
3.0.403 146 1/27/2025
3.0.402 8,953 1/27/2025
3.0.401 151 1/27/2025
3.0.400 9,807 1/26/2025
3.0.399 1,999 1/26/2025
3.0.398 1,534 1/26/2025
3.0.397 813 1/26/2025
3.0.396 371 1/26/2025
3.0.395 4,213 1/25/2025
3.0.394 9,375 1/25/2025
3.0.393 6,877 1/25/2025
3.0.392 720 1/25/2025
3.0.391 17,289 1/24/2025
3.0.390 3,247 1/24/2025
3.0.389 5,748 1/24/2025
3.0.388 6,591 1/24/2025
3.0.387 1,524 1/23/2025
3.0.386 1,813 1/23/2025
3.0.385 204 1/23/2025
3.0.384 15,386 1/22/2025
3.0.383 1,949 1/21/2025
3.0.382 550 1/21/2025
3.0.381 1,844 1/21/2025
3.0.380 1,822 1/21/2025
3.0.379 2,002 1/21/2025
3.0.378 1,519 1/21/2025
3.0.377 2,064 1/21/2025
3.0.376 161 1/21/2025
3.0.375 9,852 1/21/2025
3.0.374 2,717 1/21/2025
3.0.373 2,176 1/21/2025
3.0.372 4,345 1/21/2025
3.0.371 300 1/20/2025
3.0.370 11,083 1/20/2025
3.0.369 372 1/20/2025
3.0.368 2,306 1/20/2025
3.0.367 146 1/20/2025
3.0.366 2,033 1/20/2025
3.0.365 160 1/20/2025
3.0.364 6,751 1/19/2025
3.0.363 10,620 1/19/2025
3.0.362 10,377 1/19/2025
3.0.361 3,527 1/19/2025
3.0.360 992 1/19/2025
3.0.359 5,951 1/18/2025
3.0.358 201 1/18/2025
3.0.357 5,649 1/18/2025
3.0.356 393 1/18/2025
3.0.355 1,636 1/18/2025
3.0.354 10,425 1/17/2025
3.0.353 198 1/17/2025
3.0.352 13,553 1/16/2025
3.0.351 7,359 1/16/2025
3.0.350 1,309 1/16/2025
3.0.349 8,266 1/15/2025
3.0.348 7,226 1/15/2025
3.0.347 5,940 1/15/2025
3.0.346 6,366 1/15/2025
3.0.345 3,602 1/15/2025
3.0.344 5,103 1/15/2025
3.0.343 1,444 1/15/2025
3.0.342 4,241 1/14/2025
3.0.341 729 1/14/2025
3.0.340 197 1/14/2025
3.0.339 6,471 1/14/2025
3.0.338 1,676 1/14/2025
3.0.337 144 1/14/2025
3.0.336 1,694 1/14/2025
3.0.335 574 1/14/2025
3.0.334 12,277 1/13/2025
3.0.333 2,617 1/13/2025
3.0.332 5,017 1/13/2025
3.0.331 10,462 1/11/2025
3.0.330 4,304 1/11/2025
3.0.329 4,208 1/10/2025
3.0.328 8,948 1/10/2025
3.0.327 165 1/10/2025
3.0.326 836 1/10/2025
3.0.325 159 1/10/2025
3.0.324 158 1/10/2025
3.0.323 14,568 1/3/2025
3.0.322 1,546 1/3/2025
3.0.321 2,000 1/3/2025
3.0.320 639 1/3/2025
3.0.319 2,301 1/3/2025
3.0.318 5,285 1/2/2025
3.0.317 174 1/2/2025
3.0.316 3,612 1/2/2025
3.0.315 175 1/2/2025
3.0.314 4,958 1/2/2025
3.0.313 181 1/2/2025
3.0.312 15,706 1/1/2025
3.0.311 171 1/1/2025
3.0.310 249 12/31/2024
3.0.309 183 12/31/2024
3.0.308 5,639 12/31/2024
3.0.307 171 12/31/2024
3.0.306 271 12/31/2024
3.0.305 1,000 12/31/2024
3.0.304 174 12/31/2024
3.0.303 1,613 12/31/2024
3.0.302 603 12/31/2024
3.0.301 10,362 12/31/2024
3.0.300 7,397 12/31/2024
3.0.299 1,559 12/31/2024
3.0.298 5,148 12/31/2024
3.0.297 3,865 12/31/2024
3.0.296 150 12/31/2024
3.0.295 162 12/31/2024
3.0.294 18,447 12/28/2024
3.0.293 3,092 12/28/2024
3.0.292 1,799 12/28/2024
3.0.291 2,102 12/27/2024
3.0.290 13,503 12/24/2024
3.0.289 2,884 12/24/2024
3.0.288 2,709 12/24/2024
3.0.287 3,833 12/24/2024
3.0.286 4,047 12/24/2024
3.0.285 3,292 12/24/2024
3.0.284 2,630 12/24/2024
3.0.283 2,068 12/23/2024
3.0.282 4,649 12/23/2024
3.0.281 5,233 12/23/2024
3.0.280 2,112 12/23/2024
3.0.279 6,136 12/23/2024
3.0.278 466 12/23/2024
3.0.277 5,711 12/22/2024
3.0.276 9,071 12/22/2024
3.0.275 9,135 12/22/2024
3.0.274 12,379 12/21/2024
3.0.273 702 12/21/2024
3.0.272 5,833 12/21/2024
3.0.271 8,095 12/21/2024
3.0.270 1,571 12/21/2024
3.0.269 9,366 12/20/2024
3.0.268 18,401 12/18/2024
3.0.267 237 12/18/2024
3.0.266 11,358 12/17/2024
3.0.265 9,521 12/17/2024
3.0.264 566 12/16/2024
3.0.263 1,645 12/16/2024
3.0.262 12,615 12/10/2024
3.0.261 3,519 12/9/2024
3.0.260 5,810 12/9/2024
3.0.259 3,987 12/9/2024
3.0.258 11,228 12/6/2024
3.0.257 1,998 12/6/2024
3.0.256 3,504 12/6/2024
3.0.255 11,145 12/6/2024
3.0.254 281 12/6/2024
3.0.253 490 12/6/2024
3.0.252 1,412 12/6/2024
3.0.251 9,000 12/6/2024
3.0.250 181 12/6/2024
3.0.249 166 12/6/2024
3.0.248 6,886 12/5/2024
3.0.247 6,941 12/5/2024
3.0.246 5,084 12/5/2024
3.0.245 6,610 12/5/2024
3.0.244 906 12/5/2024
3.0.243 755 12/5/2024
3.0.242 7,862 12/4/2024
3.0.241 684 12/4/2024
3.0.240 1,739 12/4/2024
3.0.239 5,510 12/4/2024
3.0.238 5,988 12/3/2024
3.0.237 4,432 12/3/2024
3.0.236 5,430 12/3/2024
3.0.235 5,485 12/3/2024
3.0.234 7,485 12/2/2024
3.0.233 6,255 12/2/2024
3.0.232 3,732 12/2/2024
3.0.231 703 12/2/2024
3.0.230 6,771 12/1/2024
3.0.229 1,145 12/1/2024
3.0.228 4,894 12/1/2024
3.0.227 6,433 12/1/2024
3.0.226 6,858 11/29/2024
3.0.225 11,396 11/21/2024
3.0.224 9,666 11/20/2024
3.0.223 963 11/20/2024
3.0.222 1,704 11/20/2024
3.0.221 847 11/19/2024
3.0.220 8,263 11/19/2024
3.0.219 3,341 11/19/2024
3.0.218 163 11/19/2024
3.0.217 5,595 11/19/2024
3.0.216 152 11/19/2024
3.0.215 16,545 11/14/2024
3.0.214 1,798 11/14/2024
3.0.213 6,229 11/14/2024
3.0.212 1,406 11/14/2024
3.0.211 854 11/14/2024
3.0.210 6,711 11/14/2024
3.0.209 161 11/14/2024
3.0.208 5,590 11/14/2024
3.0.207 293 11/14/2024
2.1.206 18,730 11/13/2024
2.1.205 7,581 11/13/2024
2.1.204 18,216 11/9/2024
2.1.203 1,198 11/9/2024
2.1.202 3,300 11/9/2024
2.1.201 1,833 11/8/2024
2.1.200 1,506 11/8/2024
2.1.199 154 11/8/2024
2.1.198 2,742 11/8/2024
2.1.197 376 11/8/2024
2.1.196 6,641 11/8/2024
2.1.195 8,963 11/8/2024
2.1.194 20,532 11/1/2024
2.1.192 14,623 10/29/2024
2.1.191 15,520 10/28/2024
2.1.190 9,802 10/26/2024
2.1.189 15,736 10/22/2024
2.1.188 2,148 10/22/2024
2.1.187 1,605 10/22/2024
2.1.186 13,118 10/17/2024
2.1.185 9,468 10/15/2024
2.1.184 3,606 10/14/2024
2.1.183 10,491 10/11/2024
2.1.182 1,368 10/11/2024
2.1.181 823 10/11/2024
2.1.180 17,046 10/9/2024
2.1.179 1,360 10/8/2024
2.1.178 8,326 10/8/2024
2.1.177 1,258 10/8/2024
2.1.176 19,189 10/3/2024
2.1.175 5,757 10/3/2024
2.1.174 14,149 10/2/2024
2.1.173 4,280 10/2/2024
2.1.172 10,160 10/1/2024
2.1.171 2,533 10/1/2024
2.1.170 4,173 10/1/2024
2.1.169 11,863 9/29/2024
2.1.168 3,273 9/29/2024
2.1.167 2,492 9/29/2024
2.1.166 14,181 9/27/2024
2.1.165 7,958 9/27/2024
2.1.164 159 9/27/2024
2.1.163 455 9/27/2024
2.1.162 165 9/27/2024
2.1.161 11,949 9/26/2024
2.1.160 11,571 9/26/2024
2.1.159 10,562 9/26/2024
2.1.158 10,817 9/23/2024
2.1.157 4,892 9/23/2024
2.1.156 2,853 9/23/2024
2.1.155 2,879 9/23/2024
2.1.154 9,919 9/23/2024
2.1.153 1,099 9/23/2024
2.1.152 1,324 9/23/2024
2.1.151 150 9/23/2024
2.1.150 3,244 9/23/2024
2.1.149 18,248 9/17/2024
2.1.148 161 9/17/2024
2.1.147 605 9/17/2024
2.1.146 6,965 9/17/2024
2.1.145 6,032 9/17/2024
2.1.144 7,990 9/17/2024
2.1.143 170 9/17/2024
2.1.142 743 9/17/2024
2.1.141 1,717 9/17/2024
2.1.140 19,217 9/16/2024
2.1.139 10,889 9/12/2024
2.1.138 7,549 9/11/2024
2.1.137 4,461 9/11/2024
2.1.136 8,419 9/11/2024
2.1.135 6,886 9/11/2024
2.1.134 15,915 9/10/2024
2.1.133 3,256 9/10/2024
2.1.132 5,302 9/9/2024
2.1.131 5,432 9/9/2024
2.1.130 3,492 9/9/2024
2.1.129 1,755 9/9/2024
2.1.128 160 9/9/2024
2.1.127 154 9/9/2024
2.1.126 169 9/9/2024
2.1.125 24,258 9/6/2024
2.1.124 9,548 9/6/2024
2.1.123 4,943 9/5/2024
2.1.122 2,893 9/5/2024
2.1.121 5,984 9/5/2024
2.1.120 3,126 9/5/2024
2.1.119 169 9/5/2024
2.1.118 2,308 9/5/2024
2.1.117 8,601 9/5/2024
2.1.116 1,952 9/4/2024
2.1.115 17,786 9/3/2024
2.1.114 1,703 9/3/2024
2.1.113 7,421 9/3/2024
2.1.112 14,283 8/29/2024
2.1.111 10,043 8/26/2024
2.1.110 10,027 8/21/2024
2.1.109 5,741 8/21/2024
2.1.108 627 8/20/2024
2.1.107 7,140 8/20/2024
2.1.106 169 8/20/2024
2.1.105 7,116 8/20/2024
2.1.104 4,220 8/20/2024
2.1.103 13,564 8/15/2024
2.1.102 11,943 8/13/2024
2.1.101 11,504 8/6/2024
2.1.100 14,238 8/1/2024
2.1.99 878 8/1/2024
2.1.98 13,466 7/25/2024
2.1.97 1,678 7/25/2024
2.1.96 1,545 7/25/2024
2.1.95 1,013 7/24/2024
2.1.94 344 7/24/2024
2.1.93 14,824 7/20/2024
2.1.92 12,240 7/14/2024
2.1.91 3,412 7/14/2024
2.1.90 10,390 7/10/2024
2.1.89 324 7/10/2024
2.1.88 3,076 7/10/2024
2.1.87 2,866 7/10/2024
2.1.86 339 7/10/2024
2.1.85 345 7/10/2024
2.1.83 3,251 7/10/2024
2.1.82 4,563 7/9/2024
2.1.80 1,267 7/9/2024
2.1.79 1,530 7/9/2024
2.1.78 11,850 7/9/2024
2.1.77 4,723 7/9/2024
2.1.76 16,641 7/9/2024
2.1.75 177 7/9/2024
2.1.74 195 7/8/2024
2.1.73 164 7/8/2024
2.1.72 3,656 7/8/2024
2.1.71 160 7/8/2024
2.1.70 10,633 7/8/2024
2.1.69 3,493 7/7/2024
2.1.68 4,073 7/7/2024
2.1.67 953 7/7/2024
2.1.66 2,049 7/7/2024
2.1.65 4,579 7/7/2024
2.1.64 4,019 7/7/2024
2.1.63 170 7/7/2024
2.1.62 5,691 7/5/2024
2.1.61 111,782 5/25/2024
2.1.60 173 5/25/2024
2.1.59 742 5/25/2024
2.1.58 21,174 5/22/2024
2.1.57 172 5/22/2024
2.1.56 17,270 5/17/2024
2.1.55 24,335 4/30/2024
2.1.54 23,997 4/28/2024
2.1.53 166 4/28/2024
2.1.52 1,049 4/27/2024
2.1.51 167 4/27/2024
2.1.50 37,228 4/12/2024
2.1.49 2,026 4/12/2024
2.1.48 188 4/12/2024
2.1.47 56,676 3/18/2024
2.1.46 12,809 3/13/2024
2.1.45 3,278 3/13/2024
2.1.44 87,933 2/21/2024
2.1.43 3,844 2/21/2024
2.1.42 174 2/21/2024
2.1.41 30,455 2/16/2024
2.1.40 878 2/16/2024
2.1.39 33,403 2/9/2024
2.1.38 26,091 2/6/2024
2.1.37 187 2/6/2024
2.1.36 85,783 1/15/2024
2.1.35 1,190 1/15/2024
2.1.34 34,372 1/5/2024
2.1.33 3,207 1/5/2024
2.1.32 17,638 12/27/2023
2.1.31 1,720 12/27/2023
2.1.30 1,464 12/27/2023
2.1.29 10,609 12/25/2023
2.1.28 1,922 12/25/2023
2.1.27 843 12/25/2023
2.1.26 14,255 12/23/2023
2.1.25 207 12/23/2023
2.1.24 1,024 12/23/2023
2.1.23 27,481 12/9/2023
2.1.22 1,657 12/9/2023
2.1.21 340 12/9/2023
2.1.20 2,611 12/9/2023
2.1.19 14,468 12/4/2023
2.1.18 1,075 12/4/2023
2.1.17 7,556 11/26/2023
2.1.16 7,046 11/23/2023
2.1.15 496 11/23/2023
2.1.14 1,331 11/23/2023
2.1.13 12,680 11/19/2023
2.1.12 179 11/19/2023
2.1.11 1,600 11/18/2023
2.1.10 4,541 11/18/2023
2.1.9 2,466 11/18/2023
2.1.8 4,849 11/17/2023
2.1.7 1,283 11/17/2023
2.1.6 2,393 11/17/2023
2.1.5 1,228 11/17/2023
2.1.4 889 11/16/2023
2.1.3 260 11/16/2023
2.0.52 1,686 11/15/2023
2.0.51 3,459 11/15/2023
2.0.2 180 11/16/2023
2.0.1 199 11/16/2023
1.0.50 5,254 11/11/2023
1.0.49 182 11/11/2023
1.0.48 163 11/11/2023
1.0.47 1,625 11/9/2023
1.0.46 185 11/9/2023
1.0.45 6,643 11/6/2023
1.0.44 2,738 11/3/2023
1.0.43 2,221 11/2/2023
1.0.42 2,449 11/1/2023
1.0.41 9,483 10/18/2023
1.0.40 3,657 10/17/2023
1.0.39 1,589 10/16/2023
1.0.38 3,280 10/13/2023
1.0.37 221 10/13/2023
1.0.36 7,768 9/19/2023
1.0.35 2,551 9/18/2023
1.0.34 189 9/18/2023
1.0.33 9,542 8/30/2023
1.0.32 3,311 8/29/2023
1.0.31 5,150 8/24/2023
1.0.30 216 8/24/2023
1.0.29 4,981 8/17/2023
1.0.28 247 8/17/2023
1.0.27 9,111 8/7/2023
1.0.26 245 8/7/2023
1.0.25 9,156 7/10/2023
1.0.24 14,177 7/7/2023
1.0.23 242 7/7/2023
1.0.22 11,358 6/28/2023
1.0.21 52,723 5/24/2023
1.0.20 1,392 5/24/2023
1.0.19 524 5/23/2023
1.0.18 276 5/31/2023
1.0.17 3,169 5/23/2023
1.0.16 3,265 5/22/2023
1.0.15 7,130 5/17/2023
1.0.14 264 5/17/2023
1.0.13 6,562 4/28/2023
1.0.12 2,582 4/24/2023
1.0.11 1,129 4/21/2023
1.0.10 5,393 4/12/2023
1.0.9 1,307 4/11/2023
1.0.8 2,510 4/3/2023
1.0.7 318 4/3/2023
1.0.6 467 4/1/2023
1.0.5 2,235 3/23/2023
1.0.3 653 2/28/2023
1.0.2 563 2/16/2023