Soenneker.Extensions.Enumerable 1.0.40

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 1.0.40
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 1.0.40
                    
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="1.0.40" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="1.0.40" />
                    
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 1.0.40
                    
#r "nuget: Soenneker.Extensions.Enumerable, 1.0.40"
                    
#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@1.0.40
                    
#: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=1.0.40
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=1.0.40
                    
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

Install-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 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 was computed.  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 29,913 9/9/2025
3.0.565 22,263 9/3/2025
3.0.564 2,250 9/3/2025
3.0.563 159 9/3/2025
3.0.562 37,982 8/11/2025
3.0.561 5,121 8/11/2025
3.0.560 413 8/11/2025
3.0.559 26,172 8/5/2025
3.0.558 27,781 7/8/2025
3.0.557 32,188 6/27/2025
3.0.556 2,568 6/27/2025
3.0.555 265 6/27/2025
3.0.554 35,308 6/10/2025
3.0.553 25,343 5/27/2025
3.0.552 1,666 5/27/2025
3.0.551 1,362 5/27/2025
3.0.550 23,988 5/23/2025
3.0.549 2,677 5/23/2025
3.0.548 2,662 5/22/2025
3.0.547 23,198 5/14/2025
3.0.546 14,229 5/8/2025
3.0.545 2,103 5/7/2025
3.0.544 301 5/7/2025
3.0.543 19,948 5/5/2025
3.0.542 2,222 5/5/2025
3.0.541 4,030 5/5/2025
3.0.540 174 5/5/2025
3.0.539 28,645 4/8/2025
3.0.538 3,019 4/8/2025
3.0.537 661 4/8/2025
3.0.536 3,174 4/8/2025
3.0.535 206 4/8/2025
3.0.534 4,911 4/8/2025
3.0.533 765 4/8/2025
3.0.532 7,693 4/8/2025
3.0.531 9,303 4/8/2025
3.0.530 1,950 4/7/2025
3.0.529 4,711 4/7/2025
3.0.528 1,578 4/7/2025
3.0.527 3,824 4/7/2025
3.0.526 10,292 4/7/2025
3.0.525 2,958 4/7/2025
3.0.524 739 4/7/2025
3.0.523 11,837 4/7/2025
3.0.522 2,401 4/7/2025
3.0.521 4,110 4/6/2025
3.0.520 310 4/6/2025
3.0.519 1,977 4/6/2025
3.0.518 2,314 4/6/2025
3.0.517 2,850 4/6/2025
3.0.516 146 4/6/2025
3.0.515 504 4/6/2025
3.0.514 155 4/6/2025
3.0.513 615 4/5/2025
3.0.512 3,819 4/5/2025
3.0.511 1,886 4/5/2025
3.0.510 1,435 4/5/2025
3.0.509 218 4/5/2025
3.0.508 282 4/5/2025
3.0.507 344 4/5/2025
3.0.506 3,524 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,823 4/4/2025
3.0.503 46,046 4/4/2025
3.0.502 10,425 4/1/2025
3.0.501 5,692 4/1/2025
3.0.500 8,107 3/31/2025
3.0.499 3,624 3/31/2025
3.0.498 8,149 3/31/2025
3.0.497 9,918 3/29/2025
3.0.496 2,620 3/29/2025
3.0.495 8,259 3/27/2025
3.0.494 5,373 3/25/2025
3.0.493 2,100 3/25/2025
3.0.492 13,439 3/21/2025
3.0.491 13,134 3/18/2025
3.0.490 6,244 3/18/2025
3.0.489 9,366 3/15/2025
3.0.488 2,958 3/15/2025
3.0.487 10,587 3/12/2025
3.0.486 3,898 3/12/2025
3.0.485 637 3/12/2025
3.0.484 3,964 3/11/2025
3.0.483 474 3/11/2025
3.0.482 1,557 3/11/2025
3.0.481 2,889 3/11/2025
3.0.480 4,433 3/11/2025
3.0.479 3,936 3/11/2025
3.0.478 2,527 3/11/2025
3.0.477 15,395 3/7/2025
3.0.476 4,607 3/7/2025
3.0.475 9,290 3/2/2025
3.0.474 3,434 3/2/2025
3.0.473 839 3/2/2025
3.0.472 6,622 3/2/2025
3.0.471 6,107 3/1/2025
3.0.470 315 3/1/2025
3.0.469 5,888 3/1/2025
3.0.468 141 3/1/2025
3.0.467 2,098 3/1/2025
3.0.466 15,846 2/26/2025
3.0.465 1,425 2/25/2025
3.0.464 3,964 2/25/2025
3.0.463 2,547 2/25/2025
3.0.462 1,325 2/25/2025
3.0.461 14,770 2/23/2025
3.0.460 2,618 2/22/2025
3.0.459 11,777 2/22/2025
3.0.458 3,452 2/22/2025
3.0.457 4,212 2/22/2025
3.0.456 691 2/21/2025
3.0.455 6,742 2/21/2025
3.0.454 14,631 2/19/2025
3.0.453 6,011 2/18/2025
3.0.452 1,311 2/18/2025
3.0.451 550 2/18/2025
3.0.450 7,244 2/18/2025
3.0.449 138 2/18/2025
3.0.448 16,950 2/14/2025
3.0.447 1,743 2/14/2025
3.0.446 4,919 2/13/2025
3.0.445 5,928 2/13/2025
3.0.444 6,649 2/12/2025
3.0.443 2,140 2/12/2025
3.0.442 918 2/12/2025
3.0.441 2,686 2/12/2025
3.0.440 907 2/12/2025
3.0.439 645 2/11/2025
3.0.438 9,989 2/11/2025
3.0.437 3,432 2/11/2025
3.0.436 545 2/11/2025
3.0.435 3,247 2/10/2025
3.0.434 151 2/10/2025
3.0.433 2,151 2/10/2025
3.0.432 156 2/10/2025
3.0.431 17,532 2/9/2025
3.0.430 9,996 2/9/2025
3.0.429 478 2/9/2025
3.0.428 341 2/8/2025
3.0.427 288 2/8/2025
3.0.426 362 2/8/2025
3.0.425 10,835 2/8/2025
3.0.424 3,530 2/7/2025
3.0.423 2,393 2/7/2025
3.0.422 2,934 2/7/2025
3.0.421 141 2/7/2025
3.0.420 495 2/7/2025
3.0.419 154 2/7/2025
3.0.418 2,487 2/7/2025
3.0.417 145 2/7/2025
3.0.416 18,201 2/7/2025
3.0.415 9,114 2/5/2025
3.0.414 1,066 2/5/2025
3.0.413 1,533 2/5/2025
3.0.412 335 2/5/2025
3.0.411 3,229 2/5/2025
3.0.410 6,956 2/5/2025
3.0.409 15,316 1/28/2025
3.0.408 1,103 1/28/2025
3.0.407 341 1/28/2025
3.0.406 3,544 1/28/2025
3.0.405 7,348 1/27/2025
3.0.404 1,998 1/27/2025
3.0.403 135 1/27/2025
3.0.402 7,257 1/27/2025
3.0.401 140 1/27/2025
3.0.400 7,963 1/26/2025
3.0.399 1,648 1/26/2025
3.0.398 1,260 1/26/2025
3.0.397 693 1/26/2025
3.0.396 313 1/26/2025
3.0.395 3,466 1/25/2025
3.0.394 7,705 1/25/2025
3.0.393 5,630 1/25/2025
3.0.392 617 1/25/2025
3.0.391 14,160 1/24/2025
3.0.390 2,667 1/24/2025
3.0.389 4,692 1/24/2025
3.0.388 5,354 1/24/2025
3.0.387 1,208 1/23/2025
3.0.386 1,486 1/23/2025
3.0.385 192 1/23/2025
3.0.384 12,533 1/22/2025
3.0.383 1,637 1/21/2025
3.0.382 480 1/21/2025
3.0.381 1,547 1/21/2025
3.0.380 1,543 1/21/2025
3.0.379 1,715 1/21/2025
3.0.378 1,273 1/21/2025
3.0.377 1,742 1/21/2025
3.0.376 151 1/21/2025
3.0.375 8,177 1/21/2025
3.0.374 2,266 1/21/2025
3.0.373 1,893 1/21/2025
3.0.372 3,560 1/21/2025
3.0.371 269 1/20/2025
3.0.370 9,162 1/20/2025
3.0.369 345 1/20/2025
3.0.368 1,907 1/20/2025
3.0.367 136 1/20/2025
3.0.366 1,633 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,612 1/19/2025
3.0.363 8,763 1/19/2025
3.0.362 8,473 1/19/2025
3.0.361 2,841 1/19/2025
3.0.360 854 1/19/2025
3.0.359 4,837 1/18/2025
3.0.358 189 1/18/2025
3.0.357 4,578 1/18/2025
3.0.356 326 1/18/2025
3.0.355 1,345 1/18/2025
3.0.354 8,479 1/17/2025
3.0.353 183 1/17/2025
3.0.352 10,988 1/16/2025
3.0.351 5,985 1/16/2025
3.0.350 1,050 1/16/2025
3.0.349 6,735 1/15/2025
3.0.348 5,948 1/15/2025
3.0.347 4,861 1/15/2025
3.0.346 5,239 1/15/2025
3.0.345 2,982 1/15/2025
3.0.344 4,140 1/15/2025
3.0.343 1,121 1/15/2025
3.0.342 3,429 1/14/2025
3.0.341 587 1/14/2025
3.0.340 178 1/14/2025
3.0.339 5,048 1/14/2025
3.0.338 1,330 1/14/2025
3.0.337 134 1/14/2025
3.0.336 1,467 1/14/2025
3.0.335 474 1/14/2025
3.0.334 9,776 1/13/2025
3.0.333 2,170 1/13/2025
3.0.332 4,076 1/13/2025
3.0.331 8,360 1/11/2025
3.0.330 3,461 1/11/2025
3.0.329 3,587 1/10/2025
3.0.328 7,281 1/10/2025
3.0.327 154 1/10/2025
3.0.326 721 1/10/2025
3.0.325 148 1/10/2025
3.0.324 147 1/10/2025
3.0.323 11,821 1/3/2025
3.0.322 1,319 1/3/2025
3.0.321 1,706 1/3/2025
3.0.320 529 1/3/2025
3.0.319 1,969 1/3/2025
3.0.318 4,296 1/2/2025
3.0.317 163 1/2/2025
3.0.316 2,991 1/2/2025
3.0.315 165 1/2/2025
3.0.314 4,072 1/2/2025
3.0.313 168 1/2/2025
3.0.312 12,871 1/1/2025
3.0.311 160 1/1/2025
3.0.310 227 12/31/2024
3.0.309 169 12/31/2024
3.0.308 4,733 12/31/2024
3.0.307 160 12/31/2024
3.0.306 254 12/31/2024
3.0.305 903 12/31/2024
3.0.304 162 12/31/2024
3.0.303 1,365 12/31/2024
3.0.302 509 12/31/2024
3.0.301 8,385 12/31/2024
3.0.300 6,049 12/31/2024
3.0.299 1,336 12/31/2024
3.0.298 4,246 12/31/2024
3.0.297 3,220 12/31/2024
3.0.296 148 12/31/2024
3.0.295 162 12/31/2024
3.0.294 15,219 12/28/2024
3.0.293 2,561 12/28/2024
3.0.292 1,476 12/28/2024
3.0.291 1,747 12/27/2024
3.0.290 11,125 12/24/2024
3.0.289 2,422 12/24/2024
3.0.288 2,250 12/24/2024
3.0.287 3,237 12/24/2024
3.0.286 3,447 12/24/2024
3.0.285 2,743 12/24/2024
3.0.284 2,226 12/24/2024
3.0.283 1,745 12/23/2024
3.0.282 3,865 12/23/2024
3.0.281 4,487 12/23/2024
3.0.280 1,762 12/23/2024
3.0.279 5,074 12/23/2024
3.0.278 418 12/23/2024
3.0.277 4,711 12/22/2024
3.0.276 7,525 12/22/2024
3.0.275 7,459 12/22/2024
3.0.274 10,261 12/21/2024
3.0.273 625 12/21/2024
3.0.272 4,895 12/21/2024
3.0.271 6,668 12/21/2024
3.0.270 1,337 12/21/2024
3.0.269 7,814 12/20/2024
3.0.268 15,108 12/18/2024
3.0.267 210 12/18/2024
3.0.266 9,334 12/17/2024
3.0.265 7,899 12/17/2024
3.0.264 508 12/16/2024
3.0.263 1,429 12/16/2024
3.0.262 10,430 12/10/2024
3.0.261 2,969 12/9/2024
3.0.260 4,860 12/9/2024
3.0.259 3,337 12/9/2024
3.0.258 9,247 12/6/2024
3.0.257 1,720 12/6/2024
3.0.256 3,036 12/6/2024
3.0.255 9,354 12/6/2024
3.0.254 254 12/6/2024
3.0.253 446 12/6/2024
3.0.252 1,228 12/6/2024
3.0.251 7,488 12/6/2024
3.0.250 179 12/6/2024
3.0.249 155 12/6/2024
3.0.248 5,798 12/5/2024
3.0.247 5,803 12/5/2024
3.0.246 4,332 12/5/2024
3.0.245 5,363 12/5/2024
3.0.244 790 12/5/2024
3.0.243 641 12/5/2024
3.0.242 6,707 12/4/2024
3.0.241 612 12/4/2024
3.0.240 1,475 12/4/2024
3.0.239 4,526 12/4/2024
3.0.238 5,021 12/3/2024
3.0.237 3,708 12/3/2024
3.0.236 4,494 12/3/2024
3.0.235 4,540 12/3/2024
3.0.234 6,193 12/2/2024
3.0.233 5,138 12/2/2024
3.0.232 3,100 12/2/2024
3.0.231 597 12/2/2024
3.0.230 5,639 12/1/2024
3.0.229 1,097 12/1/2024
3.0.228 4,126 12/1/2024
3.0.227 5,314 12/1/2024
3.0.226 5,620 11/29/2024
3.0.225 9,645 11/21/2024
3.0.224 8,016 11/20/2024
3.0.223 838 11/20/2024
3.0.222 1,440 11/20/2024
3.0.221 737 11/19/2024
3.0.220 7,116 11/19/2024
3.0.219 2,858 11/19/2024
3.0.218 150 11/19/2024
3.0.217 4,781 11/19/2024
3.0.216 142 11/19/2024
3.0.215 13,722 11/14/2024
3.0.214 1,517 11/14/2024
3.0.213 5,240 11/14/2024
3.0.212 1,247 11/14/2024
3.0.211 739 11/14/2024
3.0.210 5,628 11/14/2024
3.0.209 149 11/14/2024
3.0.208 4,630 11/14/2024
3.0.207 269 11/14/2024
2.1.206 15,822 11/13/2024
2.1.205 6,362 11/13/2024
2.1.204 15,350 11/9/2024
2.1.203 1,049 11/9/2024
2.1.202 2,822 11/9/2024
2.1.201 1,607 11/8/2024
2.1.200 1,308 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,414 11/8/2024
2.1.197 345 11/8/2024
2.1.196 5,771 11/8/2024
2.1.195 7,665 11/8/2024
2.1.194 17,206 11/1/2024
2.1.192 12,243 10/29/2024
2.1.191 13,098 10/28/2024
2.1.190 8,287 10/26/2024
2.1.189 13,728 10/22/2024
2.1.188 1,866 10/22/2024
2.1.187 1,373 10/22/2024
2.1.186 10,986 10/17/2024
2.1.185 7,975 10/15/2024
2.1.184 3,051 10/14/2024
2.1.183 8,754 10/11/2024
2.1.182 1,149 10/11/2024
2.1.181 716 10/11/2024
2.1.180 14,288 10/9/2024
2.1.179 1,151 10/8/2024
2.1.178 7,059 10/8/2024
2.1.177 1,062 10/8/2024
2.1.176 16,259 10/3/2024
2.1.175 4,845 10/3/2024
2.1.174 11,765 10/2/2024
2.1.173 3,586 10/2/2024
2.1.172 8,554 10/1/2024
2.1.171 2,210 10/1/2024
2.1.170 3,503 10/1/2024
2.1.169 9,892 9/29/2024
2.1.168 2,853 9/29/2024
2.1.167 2,117 9/29/2024
2.1.166 11,984 9/27/2024
2.1.165 6,743 9/27/2024
2.1.164 147 9/27/2024
2.1.163 397 9/27/2024
2.1.162 150 9/27/2024
2.1.161 10,081 9/26/2024
2.1.160 9,645 9/26/2024
2.1.159 8,944 9/26/2024
2.1.158 9,081 9/23/2024
2.1.157 4,210 9/23/2024
2.1.156 2,459 9/23/2024
2.1.155 2,512 9/23/2024
2.1.154 8,404 9/23/2024
2.1.153 979 9/23/2024
2.1.152 1,138 9/23/2024
2.1.151 139 9/23/2024
2.1.150 2,873 9/23/2024
2.1.149 15,471 9/17/2024
2.1.148 150 9/17/2024
2.1.147 523 9/17/2024
2.1.146 6,024 9/17/2024
2.1.145 5,191 9/17/2024
2.1.144 6,965 9/17/2024
2.1.143 160 9/17/2024
2.1.142 651 9/17/2024
2.1.141 1,477 9/17/2024
2.1.140 16,646 9/16/2024
2.1.139 9,423 9/12/2024
2.1.138 6,503 9/11/2024
2.1.137 3,825 9/11/2024
2.1.136 7,362 9/11/2024
2.1.135 5,933 9/11/2024
2.1.134 13,762 9/10/2024
2.1.133 2,864 9/10/2024
2.1.132 4,597 9/9/2024
2.1.131 4,856 9/9/2024
2.1.130 3,063 9/9/2024
2.1.129 1,528 9/9/2024
2.1.128 147 9/9/2024
2.1.127 154 9/9/2024
2.1.126 157 9/9/2024
2.1.125 20,778 9/6/2024
2.1.124 8,242 9/6/2024
2.1.123 4,261 9/5/2024
2.1.122 2,520 9/5/2024
2.1.121 5,177 9/5/2024
2.1.120 2,740 9/5/2024
2.1.119 156 9/5/2024
2.1.118 2,056 9/5/2024
2.1.117 7,439 9/5/2024
2.1.116 1,707 9/4/2024
2.1.115 15,280 9/3/2024
2.1.114 1,479 9/3/2024
2.1.113 6,306 9/3/2024
2.1.112 12,199 8/29/2024
2.1.111 8,581 8/26/2024
2.1.110 8,531 8/21/2024
2.1.109 4,881 8/21/2024
2.1.108 560 8/20/2024
2.1.107 6,117 8/20/2024
2.1.106 158 8/20/2024
2.1.105 6,155 8/20/2024
2.1.104 3,660 8/20/2024
2.1.103 11,664 8/15/2024
2.1.102 10,369 8/13/2024
2.1.101 9,819 8/6/2024
2.1.100 11,961 8/1/2024
2.1.99 742 8/1/2024
2.1.98 11,357 7/25/2024
2.1.97 1,414 7/25/2024
2.1.96 1,247 7/25/2024
2.1.95 844 7/24/2024
2.1.94 299 7/24/2024
2.1.93 12,601 7/20/2024
2.1.92 10,410 7/14/2024
2.1.91 2,886 7/14/2024
2.1.90 8,850 7/10/2024
2.1.89 304 7/10/2024
2.1.88 2,687 7/10/2024
2.1.87 2,531 7/10/2024
2.1.86 313 7/10/2024
2.1.85 315 7/10/2024
2.1.83 2,754 7/10/2024
2.1.82 3,958 7/9/2024
2.1.80 1,079 7/9/2024
2.1.79 1,412 7/9/2024
2.1.78 9,852 7/9/2024
2.1.77 4,039 7/9/2024
2.1.76 15,303 7/9/2024
2.1.75 167 7/9/2024
2.1.74 185 7/8/2024
2.1.73 153 7/8/2024
2.1.72 3,124 7/8/2024
2.1.71 148 7/8/2024
2.1.70 8,955 7/8/2024
2.1.69 2,958 7/7/2024
2.1.68 3,361 7/7/2024
2.1.67 859 7/7/2024
2.1.66 1,739 7/7/2024
2.1.65 3,882 7/7/2024
2.1.64 3,438 7/7/2024
2.1.63 157 7/7/2024
2.1.62 4,709 7/5/2024
2.1.61 94,695 5/25/2024
2.1.60 162 5/25/2024
2.1.59 673 5/25/2024
2.1.58 18,055 5/22/2024
2.1.57 159 5/22/2024
2.1.56 14,676 5/17/2024
2.1.55 20,729 4/30/2024
2.1.54 20,452 4/28/2024
2.1.53 165 4/28/2024
2.1.52 888 4/27/2024
2.1.51 157 4/27/2024
2.1.50 31,812 4/12/2024
2.1.49 1,690 4/12/2024
2.1.48 175 4/12/2024
2.1.47 48,888 3/18/2024
2.1.46 11,013 3/13/2024
2.1.45 2,838 3/13/2024
2.1.44 75,945 2/21/2024
2.1.43 3,328 2/21/2024
2.1.42 163 2/21/2024
2.1.41 26,566 2/16/2024
2.1.40 791 2/16/2024
2.1.39 29,243 2/9/2024
2.1.38 22,777 2/6/2024
2.1.37 173 2/6/2024
2.1.36 75,601 1/15/2024
2.1.35 1,053 1/15/2024
2.1.34 30,624 1/5/2024
2.1.33 2,904 1/5/2024
2.1.32 15,656 12/27/2023
2.1.31 1,566 12/27/2023
2.1.30 1,298 12/27/2023
2.1.29 9,286 12/25/2023
2.1.28 1,717 12/25/2023
2.1.27 793 12/25/2023
2.1.26 12,478 12/23/2023
2.1.25 194 12/23/2023
2.1.24 942 12/23/2023
2.1.23 24,248 12/9/2023
2.1.22 1,534 12/9/2023
2.1.21 306 12/9/2023
2.1.20 2,303 12/9/2023
2.1.19 12,759 12/4/2023
2.1.18 968 12/4/2023
2.1.17 6,577 11/26/2023
2.1.16 6,276 11/23/2023
2.1.15 425 11/23/2023
2.1.14 1,156 11/23/2023
2.1.13 11,089 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,420 11/18/2023
2.1.10 3,979 11/18/2023
2.1.9 2,193 11/18/2023
2.1.8 4,281 11/17/2023
2.1.7 1,164 11/17/2023
2.1.6 2,079 11/17/2023
2.1.5 1,068 11/17/2023
2.1.4 796 11/16/2023
2.1.3 221 11/16/2023
2.0.52 1,483 11/15/2023
2.0.51 2,861 11/15/2023
2.0.2 168 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,684 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,488 11/9/2023
1.0.46 173 11/9/2023
1.0.45 5,955 11/6/2023
1.0.44 2,496 11/3/2023
1.0.43 2,008 11/2/2023
1.0.42 2,219 11/1/2023
1.0.41 8,549 10/18/2023
1.0.40 3,319 10/17/2023
1.0.39 1,420 10/16/2023
1.0.38 2,993 10/13/2023
1.0.37 206 10/13/2023
1.0.36 6,959 9/19/2023
1.0.35 2,340 9/18/2023
1.0.34 179 9/18/2023
1.0.33 8,570 8/30/2023
1.0.32 3,013 8/29/2023
1.0.31 4,678 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,615 8/17/2023
1.0.28 235 8/17/2023
1.0.27 8,480 8/7/2023
1.0.26 234 8/7/2023
1.0.25 8,491 7/10/2023
1.0.24 12,462 7/7/2023
1.0.23 231 7/7/2023
1.0.22 10,355 6/28/2023
1.0.21 48,604 5/24/2023
1.0.20 1,288 5/24/2023
1.0.19 512 5/23/2023
1.0.18 263 5/31/2023
1.0.17 2,991 5/23/2023
1.0.16 3,076 5/22/2023
1.0.15 6,594 5/17/2023
1.0.14 252 5/17/2023
1.0.13 6,073 4/28/2023
1.0.12 2,436 4/24/2023
1.0.11 1,087 4/21/2023
1.0.10 5,033 4/12/2023
1.0.9 1,216 4/11/2023
1.0.8 2,322 4/3/2023
1.0.7 305 4/3/2023
1.0.6 444 4/1/2023
1.0.5 2,166 3/23/2023
1.0.3 625 2/28/2023
1.0.2 531 2/16/2023