Soenneker.Extensions.Enumerable 3.0.542

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 3.0.542
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.542
                    
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="3.0.542" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="3.0.542" />
                    
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 3.0.542
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.542"
                    
#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@3.0.542
                    
#: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=3.0.542
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.542
                    
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 net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (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 23,375 9/9/2025
3.0.565 18,612 9/3/2025
3.0.564 1,920 9/3/2025
3.0.563 158 9/3/2025
3.0.562 32,035 8/11/2025
3.0.561 4,210 8/11/2025
3.0.560 381 8/11/2025
3.0.559 22,036 8/5/2025
3.0.558 24,611 7/8/2025
3.0.557 29,778 6/27/2025
3.0.556 2,323 6/27/2025
3.0.555 244 6/27/2025
3.0.554 32,729 6/10/2025
3.0.553 23,568 5/27/2025
3.0.552 1,506 5/27/2025
3.0.551 1,270 5/27/2025
3.0.550 22,202 5/23/2025
3.0.549 2,472 5/23/2025
3.0.548 2,415 5/22/2025
3.0.547 21,350 5/14/2025
3.0.546 13,248 5/8/2025
3.0.545 1,981 5/7/2025
3.0.544 293 5/7/2025
3.0.543 18,541 5/5/2025
3.0.542 2,039 5/5/2025
3.0.541 3,722 5/5/2025
3.0.540 173 5/5/2025
3.0.539 26,565 4/8/2025
3.0.538 2,850 4/8/2025
3.0.537 601 4/8/2025
3.0.536 2,921 4/8/2025
3.0.535 205 4/8/2025
3.0.534 4,432 4/8/2025
3.0.533 736 4/8/2025
3.0.532 7,228 4/8/2025
3.0.531 8,470 4/8/2025
3.0.530 1,769 4/7/2025
3.0.529 4,344 4/7/2025
3.0.528 1,481 4/7/2025
3.0.527 3,587 4/7/2025
3.0.526 9,246 4/7/2025
3.0.525 2,769 4/7/2025
3.0.524 667 4/7/2025
3.0.523 10,775 4/7/2025
3.0.522 2,137 4/7/2025
3.0.521 3,729 4/6/2025
3.0.520 292 4/6/2025
3.0.519 1,770 4/6/2025
3.0.518 2,089 4/6/2025
3.0.517 2,526 4/6/2025
3.0.516 146 4/6/2025
3.0.515 434 4/6/2025
3.0.514 155 4/6/2025
3.0.513 538 4/5/2025
3.0.512 3,456 4/5/2025
3.0.511 1,719 4/5/2025
3.0.510 1,265 4/5/2025
3.0.509 200 4/5/2025
3.0.508 264 4/5/2025
3.0.507 309 4/5/2025
3.0.506 3,210 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,364 4/4/2025
3.0.503 42,856 4/4/2025
3.0.502 9,544 4/1/2025
3.0.501 5,235 4/1/2025
3.0.500 7,458 3/31/2025
3.0.499 3,276 3/31/2025
3.0.498 7,448 3/31/2025
3.0.497 9,122 3/29/2025
3.0.496 2,387 3/29/2025
3.0.495 7,554 3/27/2025
3.0.494 5,029 3/25/2025
3.0.493 2,000 3/25/2025
3.0.492 12,332 3/21/2025
3.0.491 12,286 3/18/2025
3.0.490 5,752 3/18/2025
3.0.489 8,707 3/15/2025
3.0.488 2,656 3/15/2025
3.0.487 9,844 3/12/2025
3.0.486 3,610 3/12/2025
3.0.485 595 3/12/2025
3.0.484 3,672 3/11/2025
3.0.483 420 3/11/2025
3.0.482 1,430 3/11/2025
3.0.481 2,790 3/11/2025
3.0.480 4,069 3/11/2025
3.0.479 3,577 3/11/2025
3.0.478 2,338 3/11/2025
3.0.477 14,388 3/7/2025
3.0.476 4,232 3/7/2025
3.0.475 8,657 3/2/2025
3.0.474 3,202 3/2/2025
3.0.473 779 3/2/2025
3.0.472 6,030 3/2/2025
3.0.471 5,610 3/1/2025
3.0.470 299 3/1/2025
3.0.469 5,295 3/1/2025
3.0.468 140 3/1/2025
3.0.467 1,983 3/1/2025
3.0.466 14,641 2/26/2025
3.0.465 1,297 2/25/2025
3.0.464 3,598 2/25/2025
3.0.463 2,352 2/25/2025
3.0.462 1,202 2/25/2025
3.0.461 13,694 2/23/2025
3.0.460 2,380 2/22/2025
3.0.459 10,870 2/22/2025
3.0.458 3,152 2/22/2025
3.0.457 3,895 2/22/2025
3.0.456 633 2/21/2025
3.0.455 6,069 2/21/2025
3.0.454 13,597 2/19/2025
3.0.453 5,573 2/18/2025
3.0.452 1,223 2/18/2025
3.0.451 490 2/18/2025
3.0.450 6,487 2/18/2025
3.0.449 137 2/18/2025
3.0.448 15,868 2/14/2025
3.0.447 1,613 2/14/2025
3.0.446 4,488 2/13/2025
3.0.445 5,463 2/13/2025
3.0.444 6,234 2/12/2025
3.0.443 1,945 2/12/2025
3.0.442 848 2/12/2025
3.0.441 2,453 2/12/2025
3.0.440 866 2/12/2025
3.0.439 566 2/11/2025
3.0.438 9,201 2/11/2025
3.0.437 3,132 2/11/2025
3.0.436 524 2/11/2025
3.0.435 2,996 2/10/2025
3.0.434 149 2/10/2025
3.0.433 2,038 2/10/2025
3.0.432 156 2/10/2025
3.0.431 16,316 2/9/2025
3.0.430 9,230 2/9/2025
3.0.429 455 2/9/2025
3.0.428 309 2/8/2025
3.0.427 264 2/8/2025
3.0.426 330 2/8/2025
3.0.425 9,927 2/8/2025
3.0.424 3,243 2/7/2025
3.0.423 2,267 2/7/2025
3.0.422 2,676 2/7/2025
3.0.421 141 2/7/2025
3.0.420 465 2/7/2025
3.0.419 153 2/7/2025
3.0.418 2,285 2/7/2025
3.0.417 144 2/7/2025
3.0.416 16,860 2/7/2025
3.0.415 8,452 2/5/2025
3.0.414 992 2/5/2025
3.0.413 1,406 2/5/2025
3.0.412 331 2/5/2025
3.0.411 2,949 2/5/2025
3.0.410 6,436 2/5/2025
3.0.409 14,212 1/28/2025
3.0.408 1,012 1/28/2025
3.0.407 319 1/28/2025
3.0.406 3,178 1/28/2025
3.0.405 6,689 1/27/2025
3.0.404 1,855 1/27/2025
3.0.403 135 1/27/2025
3.0.402 6,445 1/27/2025
3.0.401 139 1/27/2025
3.0.400 7,281 1/26/2025
3.0.399 1,515 1/26/2025
3.0.398 1,169 1/26/2025
3.0.397 651 1/26/2025
3.0.396 299 1/26/2025
3.0.395 3,224 1/25/2025
3.0.394 6,991 1/25/2025
3.0.393 5,220 1/25/2025
3.0.392 528 1/25/2025
3.0.391 12,873 1/24/2025
3.0.390 2,367 1/24/2025
3.0.389 4,239 1/24/2025
3.0.388 4,770 1/24/2025
3.0.387 1,076 1/23/2025
3.0.386 1,400 1/23/2025
3.0.385 176 1/23/2025
3.0.384 11,480 1/22/2025
3.0.383 1,471 1/21/2025
3.0.382 465 1/21/2025
3.0.381 1,392 1/21/2025
3.0.380 1,375 1/21/2025
3.0.379 1,548 1/21/2025
3.0.378 1,216 1/21/2025
3.0.377 1,643 1/21/2025
3.0.376 150 1/21/2025
3.0.375 7,423 1/21/2025
3.0.374 2,051 1/21/2025
3.0.373 1,738 1/21/2025
3.0.372 3,143 1/21/2025
3.0.371 236 1/20/2025
3.0.370 8,267 1/20/2025
3.0.369 326 1/20/2025
3.0.368 1,745 1/20/2025
3.0.367 135 1/20/2025
3.0.366 1,555 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,337 1/19/2025
3.0.363 7,794 1/19/2025
3.0.362 7,718 1/19/2025
3.0.361 2,587 1/19/2025
3.0.360 794 1/19/2025
3.0.359 4,335 1/18/2025
3.0.358 183 1/18/2025
3.0.357 4,222 1/18/2025
3.0.356 309 1/18/2025
3.0.355 1,262 1/18/2025
3.0.354 7,675 1/17/2025
3.0.353 173 1/17/2025
3.0.352 10,132 1/16/2025
3.0.351 5,439 1/16/2025
3.0.350 969 1/16/2025
3.0.349 6,193 1/15/2025
3.0.348 5,287 1/15/2025
3.0.347 4,448 1/15/2025
3.0.346 4,746 1/15/2025
3.0.345 2,853 1/15/2025
3.0.344 3,700 1/15/2025
3.0.343 1,033 1/15/2025
3.0.342 3,144 1/14/2025
3.0.341 549 1/14/2025
3.0.340 162 1/14/2025
3.0.339 4,404 1/14/2025
3.0.338 1,139 1/14/2025
3.0.337 132 1/14/2025
3.0.336 1,414 1/14/2025
3.0.335 458 1/14/2025
3.0.334 8,856 1/13/2025
3.0.333 1,941 1/13/2025
3.0.332 3,738 1/13/2025
3.0.331 7,570 1/11/2025
3.0.330 3,030 1/11/2025
3.0.329 3,320 1/10/2025
3.0.328 6,663 1/10/2025
3.0.327 154 1/10/2025
3.0.326 594 1/10/2025
3.0.325 145 1/10/2025
3.0.324 147 1/10/2025
3.0.323 10,824 1/3/2025
3.0.322 1,254 1/3/2025
3.0.321 1,567 1/3/2025
3.0.320 466 1/3/2025
3.0.319 1,737 1/3/2025
3.0.318 3,966 1/2/2025
3.0.317 161 1/2/2025
3.0.316 2,663 1/2/2025
3.0.315 165 1/2/2025
3.0.314 3,585 1/2/2025
3.0.313 168 1/2/2025
3.0.312 11,750 1/1/2025
3.0.311 159 1/1/2025
3.0.310 215 12/31/2024
3.0.309 169 12/31/2024
3.0.308 4,409 12/31/2024
3.0.307 159 12/31/2024
3.0.306 251 12/31/2024
3.0.305 826 12/31/2024
3.0.304 161 12/31/2024
3.0.303 1,286 12/31/2024
3.0.302 491 12/31/2024
3.0.301 7,545 12/31/2024
3.0.300 5,342 12/31/2024
3.0.299 1,141 12/31/2024
3.0.298 3,738 12/31/2024
3.0.297 3,054 12/31/2024
3.0.296 147 12/31/2024
3.0.295 161 12/31/2024
3.0.294 13,943 12/28/2024
3.0.293 2,342 12/28/2024
3.0.292 1,340 12/28/2024
3.0.291 1,632 12/27/2024
3.0.290 10,124 12/24/2024
3.0.289 2,190 12/24/2024
3.0.288 2,081 12/24/2024
3.0.287 2,972 12/24/2024
3.0.286 3,145 12/24/2024
3.0.285 2,563 12/24/2024
3.0.284 2,035 12/24/2024
3.0.283 1,616 12/23/2024
3.0.282 3,545 12/23/2024
3.0.281 4,150 12/23/2024
3.0.280 1,599 12/23/2024
3.0.279 4,600 12/23/2024
3.0.278 387 12/23/2024
3.0.277 4,321 12/22/2024
3.0.276 6,829 12/22/2024
3.0.275 6,762 12/22/2024
3.0.274 9,197 12/21/2024
3.0.273 588 12/21/2024
3.0.272 4,594 12/21/2024
3.0.271 5,900 12/21/2024
3.0.270 1,212 12/21/2024
3.0.269 7,023 12/20/2024
3.0.268 13,669 12/18/2024
3.0.267 196 12/18/2024
3.0.266 8,590 12/17/2024
3.0.265 7,457 12/17/2024
3.0.264 455 12/16/2024
3.0.263 1,322 12/16/2024
3.0.262 9,565 12/10/2024
3.0.261 2,731 12/9/2024
3.0.260 4,411 12/9/2024
3.0.259 3,018 12/9/2024
3.0.258 8,428 12/6/2024
3.0.257 1,597 12/6/2024
3.0.256 2,814 12/6/2024
3.0.255 8,422 12/6/2024
3.0.254 245 12/6/2024
3.0.253 417 12/6/2024
3.0.252 1,170 12/6/2024
3.0.251 6,768 12/6/2024
3.0.250 178 12/6/2024
3.0.249 154 12/6/2024
3.0.248 5,291 12/5/2024
3.0.247 5,167 12/5/2024
3.0.246 3,923 12/5/2024
3.0.245 4,541 12/5/2024
3.0.244 719 12/5/2024
3.0.243 579 12/5/2024
3.0.242 6,227 12/4/2024
3.0.241 572 12/4/2024
3.0.240 1,325 12/4/2024
3.0.239 4,126 12/4/2024
3.0.238 4,569 12/3/2024
3.0.237 3,349 12/3/2024
3.0.236 4,126 12/3/2024
3.0.235 3,967 12/3/2024
3.0.234 5,658 12/2/2024
3.0.233 4,546 12/2/2024
3.0.232 2,742 12/2/2024
3.0.231 541 12/2/2024
3.0.230 5,044 12/1/2024
3.0.229 1,051 12/1/2024
3.0.228 3,768 12/1/2024
3.0.227 4,851 12/1/2024
3.0.226 5,126 11/29/2024
3.0.225 8,832 11/21/2024
3.0.224 7,349 11/20/2024
3.0.223 775 11/20/2024
3.0.222 1,340 11/20/2024
3.0.221 685 11/19/2024
3.0.220 6,616 11/19/2024
3.0.219 2,709 11/19/2024
3.0.218 149 11/19/2024
3.0.217 4,435 11/19/2024
3.0.216 140 11/19/2024
3.0.215 12,560 11/14/2024
3.0.214 1,385 11/14/2024
3.0.213 4,803 11/14/2024
3.0.212 1,165 11/14/2024
3.0.211 676 11/14/2024
3.0.210 5,128 11/14/2024
3.0.209 147 11/14/2024
3.0.208 4,151 11/14/2024
3.0.207 239 11/14/2024
2.1.206 14,700 11/13/2024
2.1.205 5,825 11/13/2024
2.1.204 14,153 11/9/2024
2.1.203 978 11/9/2024
2.1.202 2,491 11/9/2024
2.1.201 1,504 11/8/2024
2.1.200 1,231 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,228 11/8/2024
2.1.197 323 11/8/2024
2.1.196 5,403 11/8/2024
2.1.195 7,003 11/8/2024
2.1.194 15,723 11/1/2024
2.1.192 11,221 10/29/2024
2.1.191 12,037 10/28/2024
2.1.190 7,610 10/26/2024
2.1.189 12,801 10/22/2024
2.1.188 1,706 10/22/2024
2.1.187 1,253 10/22/2024
2.1.186 10,124 10/17/2024
2.1.185 7,319 10/15/2024
2.1.184 2,766 10/14/2024
2.1.183 8,091 10/11/2024
2.1.182 1,097 10/11/2024
2.1.181 655 10/11/2024
2.1.180 13,042 10/9/2024
2.1.179 1,054 10/8/2024
2.1.178 6,479 10/8/2024
2.1.177 1,006 10/8/2024
2.1.176 15,040 10/3/2024
2.1.175 4,430 10/3/2024
2.1.174 10,725 10/2/2024
2.1.173 3,246 10/2/2024
2.1.172 7,947 10/1/2024
2.1.171 2,065 10/1/2024
2.1.170 3,199 10/1/2024
2.1.169 9,151 9/29/2024
2.1.168 2,631 9/29/2024
2.1.167 1,863 9/29/2024
2.1.166 11,106 9/27/2024
2.1.165 6,209 9/27/2024
2.1.164 146 9/27/2024
2.1.163 371 9/27/2024
2.1.162 146 9/27/2024
2.1.161 9,323 9/26/2024
2.1.160 8,845 9/26/2024
2.1.159 8,228 9/26/2024
2.1.158 8,400 9/23/2024
2.1.157 3,868 9/23/2024
2.1.156 2,295 9/23/2024
2.1.155 2,357 9/23/2024
2.1.154 7,706 9/23/2024
2.1.153 893 9/23/2024
2.1.152 1,085 9/23/2024
2.1.151 138 9/23/2024
2.1.150 2,706 9/23/2024
2.1.149 14,363 9/17/2024
2.1.148 149 9/17/2024
2.1.147 477 9/17/2024
2.1.146 5,715 9/17/2024
2.1.145 4,846 9/17/2024
2.1.144 6,521 9/17/2024
2.1.143 159 9/17/2024
2.1.142 593 9/17/2024
2.1.141 1,393 9/17/2024
2.1.140 15,629 9/16/2024
2.1.139 8,746 9/12/2024
2.1.138 6,005 9/11/2024
2.1.137 3,533 9/11/2024
2.1.136 6,775 9/11/2024
2.1.135 5,581 9/11/2024
2.1.134 12,863 9/10/2024
2.1.133 2,705 9/10/2024
2.1.132 4,258 9/9/2024
2.1.131 4,641 9/9/2024
2.1.130 2,805 9/9/2024
2.1.129 1,426 9/9/2024
2.1.128 147 9/9/2024
2.1.127 154 9/9/2024
2.1.126 156 9/9/2024
2.1.125 19,517 9/6/2024
2.1.124 7,598 9/6/2024
2.1.123 3,905 9/5/2024
2.1.122 2,350 9/5/2024
2.1.121 4,844 9/5/2024
2.1.120 2,558 9/5/2024
2.1.119 155 9/5/2024
2.1.118 1,976 9/5/2024
2.1.117 6,829 9/5/2024
2.1.116 1,598 9/4/2024
2.1.115 14,161 9/3/2024
2.1.114 1,375 9/3/2024
2.1.113 5,669 9/3/2024
2.1.112 11,035 8/29/2024
2.1.111 7,931 8/26/2024
2.1.110 7,859 8/21/2024
2.1.109 4,397 8/21/2024
2.1.108 512 8/20/2024
2.1.107 5,563 8/20/2024
2.1.106 157 8/20/2024
2.1.105 5,671 8/20/2024
2.1.104 3,443 8/20/2024
2.1.103 10,649 8/15/2024
2.1.102 9,525 8/13/2024
2.1.101 8,998 8/6/2024
2.1.100 10,836 8/1/2024
2.1.99 667 8/1/2024
2.1.98 10,392 7/25/2024
2.1.97 1,273 7/25/2024
2.1.96 1,157 7/25/2024
2.1.95 766 7/24/2024
2.1.94 274 7/24/2024
2.1.93 11,483 7/20/2024
2.1.92 9,483 7/14/2024
2.1.91 2,578 7/14/2024
2.1.90 8,116 7/10/2024
2.1.89 300 7/10/2024
2.1.88 2,517 7/10/2024
2.1.87 2,403 7/10/2024
2.1.86 298 7/10/2024
2.1.85 299 7/10/2024
2.1.83 2,500 7/10/2024
2.1.82 3,654 7/9/2024
2.1.80 938 7/9/2024
2.1.79 1,331 7/9/2024
2.1.78 8,933 7/9/2024
2.1.77 3,621 7/9/2024
2.1.76 14,764 7/9/2024
2.1.75 167 7/9/2024
2.1.74 185 7/8/2024
2.1.73 152 7/8/2024
2.1.72 2,818 7/8/2024
2.1.71 146 7/8/2024
2.1.70 8,252 7/8/2024
2.1.69 2,686 7/7/2024
2.1.68 3,047 7/7/2024
2.1.67 798 7/7/2024
2.1.66 1,594 7/7/2024
2.1.65 3,567 7/7/2024
2.1.64 3,194 7/7/2024
2.1.63 156 7/7/2024
2.1.62 4,294 7/5/2024
2.1.61 85,581 5/25/2024
2.1.60 162 5/25/2024
2.1.59 632 5/25/2024
2.1.58 16,441 5/22/2024
2.1.57 157 5/22/2024
2.1.56 13,424 5/17/2024
2.1.55 18,918 4/30/2024
2.1.54 18,882 4/28/2024
2.1.53 164 4/28/2024
2.1.52 781 4/27/2024
2.1.51 156 4/27/2024
2.1.50 29,412 4/12/2024
2.1.49 1,570 4/12/2024
2.1.48 174 4/12/2024
2.1.47 45,660 3/18/2024
2.1.46 10,241 3/13/2024
2.1.45 2,637 3/13/2024
2.1.44 70,767 2/21/2024
2.1.43 3,135 2/21/2024
2.1.42 162 2/21/2024
2.1.41 24,897 2/16/2024
2.1.40 746 2/16/2024
2.1.39 27,443 2/9/2024
2.1.38 21,409 2/6/2024
2.1.37 172 2/6/2024
2.1.36 71,173 1/15/2024
2.1.35 971 1/15/2024
2.1.34 29,148 1/5/2024
2.1.33 2,714 1/5/2024
2.1.32 14,872 12/27/2023
2.1.31 1,515 12/27/2023
2.1.30 1,259 12/27/2023
2.1.29 8,855 12/25/2023
2.1.28 1,626 12/25/2023
2.1.27 768 12/25/2023
2.1.26 11,902 12/23/2023
2.1.25 194 12/23/2023
2.1.24 871 12/23/2023
2.1.23 23,271 12/9/2023
2.1.22 1,499 12/9/2023
2.1.21 296 12/9/2023
2.1.20 2,239 12/9/2023
2.1.19 12,157 12/4/2023
2.1.18 944 12/4/2023
2.1.17 6,201 11/26/2023
2.1.16 6,040 11/23/2023
2.1.15 424 11/23/2023
2.1.14 1,109 11/23/2023
2.1.13 10,595 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,342 11/18/2023
2.1.10 3,830 11/18/2023
2.1.9 2,113 11/18/2023
2.1.8 4,096 11/17/2023
2.1.7 1,123 11/17/2023
2.1.6 1,972 11/17/2023
2.1.5 1,024 11/17/2023
2.1.4 758 11/16/2023
2.1.3 220 11/16/2023
2.0.52 1,405 11/15/2023
2.0.51 2,495 11/15/2023
2.0.2 167 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,425 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,427 11/9/2023
1.0.46 170 11/9/2023
1.0.45 5,734 11/6/2023
1.0.44 2,383 11/3/2023
1.0.43 1,954 11/2/2023
1.0.42 2,112 11/1/2023
1.0.41 8,227 10/18/2023
1.0.40 3,218 10/17/2023
1.0.39 1,377 10/16/2023
1.0.38 2,885 10/13/2023
1.0.37 204 10/13/2023
1.0.36 6,672 9/19/2023
1.0.35 2,250 9/18/2023
1.0.34 177 9/18/2023
1.0.33 8,334 8/30/2023
1.0.32 2,941 8/29/2023
1.0.31 4,520 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,485 8/17/2023
1.0.28 233 8/17/2023
1.0.27 8,217 8/7/2023
1.0.26 232 8/7/2023
1.0.25 8,178 7/10/2023
1.0.24 12,223 7/7/2023
1.0.23 230 7/7/2023
1.0.22 10,073 6/28/2023
1.0.21 47,345 5/24/2023
1.0.20 1,274 5/24/2023
1.0.19 482 5/23/2023
1.0.18 262 5/31/2023
1.0.17 2,906 5/23/2023
1.0.16 3,034 5/22/2023
1.0.15 6,388 5/17/2023
1.0.14 251 5/17/2023
1.0.13 5,923 4/28/2023
1.0.12 2,371 4/24/2023
1.0.11 1,063 4/21/2023
1.0.10 4,835 4/12/2023
1.0.9 1,188 4/11/2023
1.0.8 2,262 4/3/2023
1.0.7 303 4/3/2023
1.0.6 436 4/1/2023
1.0.5 2,117 3/23/2023
1.0.3 623 2/28/2023
1.0.2 529 2/16/2023