Soenneker.Extensions.Enumerable 3.0.566

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.566
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.566
                    
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.566" />
                    
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.566" />
                    
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.566
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.566"
                    
#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.566
                    
#: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.566
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.566
                    
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 2,704 9/9/2025
3.0.565 13,743 9/3/2025
3.0.564 1,542 9/3/2025
3.0.563 134 9/3/2025
3.0.562 27,377 8/11/2025
3.0.561 3,496 8/11/2025
3.0.560 276 8/11/2025
3.0.559 18,687 8/5/2025
3.0.558 18,165 7/8/2025
3.0.557 26,808 6/27/2025
3.0.556 2,126 6/27/2025
3.0.555 220 6/27/2025
3.0.554 29,180 6/10/2025
3.0.553 21,148 5/27/2025
3.0.552 1,372 5/27/2025
3.0.551 1,138 5/27/2025
3.0.550 19,633 5/23/2025
3.0.549 2,172 5/23/2025
3.0.548 2,173 5/22/2025
3.0.547 18,803 5/14/2025
3.0.546 11,820 5/8/2025
3.0.545 1,742 5/7/2025
3.0.544 263 5/7/2025
3.0.543 16,547 5/5/2025
3.0.542 1,842 5/5/2025
3.0.541 3,373 5/5/2025
3.0.540 155 5/5/2025
3.0.539 23,597 4/8/2025
3.0.538 2,478 4/8/2025
3.0.537 554 4/8/2025
3.0.536 2,588 4/8/2025
3.0.535 183 4/8/2025
3.0.534 3,958 4/8/2025
3.0.533 663 4/8/2025
3.0.532 6,195 4/8/2025
3.0.531 7,344 4/8/2025
3.0.530 1,634 4/7/2025
3.0.529 3,690 4/7/2025
3.0.528 1,283 4/7/2025
3.0.527 3,095 4/7/2025
3.0.526 8,172 4/7/2025
3.0.525 2,424 4/7/2025
3.0.524 631 4/7/2025
3.0.523 9,322 4/7/2025
3.0.522 1,927 4/7/2025
3.0.521 3,309 4/6/2025
3.0.520 267 4/6/2025
3.0.519 1,520 4/6/2025
3.0.518 1,893 4/6/2025
3.0.517 2,237 4/6/2025
3.0.516 123 4/6/2025
3.0.515 403 4/6/2025
3.0.514 134 4/6/2025
3.0.513 499 4/5/2025
3.0.512 3,129 4/5/2025
3.0.511 1,473 4/5/2025
3.0.510 1,133 4/5/2025
3.0.509 185 4/5/2025
3.0.508 237 4/5/2025
3.0.507 282 4/5/2025
3.0.506 2,907 4/4/2025
3.0.505 147 4/4/2025
3.0.504 3,037 4/4/2025
3.0.503 37,255 4/4/2025
3.0.502 8,270 4/1/2025
3.0.501 4,549 4/1/2025
3.0.500 6,459 3/31/2025
3.0.499 2,848 3/31/2025
3.0.498 6,522 3/31/2025
3.0.497 7,844 3/29/2025
3.0.496 2,097 3/29/2025
3.0.495 6,509 3/27/2025
3.0.494 4,388 3/25/2025
3.0.493 1,761 3/25/2025
3.0.492 10,622 3/21/2025
3.0.491 10,766 3/18/2025
3.0.490 4,936 3/18/2025
3.0.489 7,382 3/15/2025
3.0.488 2,309 3/15/2025
3.0.487 8,374 3/12/2025
3.0.486 3,155 3/12/2025
3.0.485 528 3/12/2025
3.0.484 3,156 3/11/2025
3.0.483 400 3/11/2025
3.0.482 1,293 3/11/2025
3.0.481 2,358 3/11/2025
3.0.480 3,504 3/11/2025
3.0.479 3,214 3/11/2025
3.0.478 2,035 3/11/2025
3.0.477 12,340 3/7/2025
3.0.476 3,678 3/7/2025
3.0.475 7,443 3/2/2025
3.0.474 2,719 3/2/2025
3.0.473 685 3/2/2025
3.0.472 5,178 3/2/2025
3.0.471 4,743 3/1/2025
3.0.470 254 3/1/2025
3.0.469 4,494 3/1/2025
3.0.468 124 3/1/2025
3.0.467 1,676 3/1/2025
3.0.466 12,741 2/26/2025
3.0.465 1,136 2/25/2025
3.0.464 3,105 2/25/2025
3.0.463 2,035 2/25/2025
3.0.462 1,039 2/25/2025
3.0.461 11,669 2/23/2025
3.0.460 2,110 2/22/2025
3.0.459 9,302 2/22/2025
3.0.458 2,708 2/22/2025
3.0.457 3,274 2/22/2025
3.0.456 548 2/21/2025
3.0.455 5,254 2/21/2025
3.0.454 11,568 2/19/2025
3.0.453 4,869 2/18/2025
3.0.452 1,073 2/18/2025
3.0.451 441 2/18/2025
3.0.450 5,730 2/18/2025
3.0.449 122 2/18/2025
3.0.448 13,530 2/14/2025
3.0.447 1,403 2/14/2025
3.0.446 3,856 2/13/2025
3.0.445 4,722 2/13/2025
3.0.444 5,442 2/12/2025
3.0.443 1,700 2/12/2025
3.0.442 750 2/12/2025
3.0.441 2,144 2/12/2025
3.0.440 760 2/12/2025
3.0.439 524 2/11/2025
3.0.438 7,878 2/11/2025
3.0.437 2,679 2/11/2025
3.0.436 467 2/11/2025
3.0.435 2,613 2/10/2025
3.0.434 133 2/10/2025
3.0.433 1,777 2/10/2025
3.0.432 140 2/10/2025
3.0.431 13,805 2/9/2025
3.0.430 7,998 2/9/2025
3.0.429 376 2/9/2025
3.0.428 288 2/8/2025
3.0.427 237 2/8/2025
3.0.426 299 2/8/2025
3.0.425 8,305 2/8/2025
3.0.424 2,738 2/7/2025
3.0.423 1,943 2/7/2025
3.0.422 2,479 2/7/2025
3.0.421 132 2/7/2025
3.0.420 430 2/7/2025
3.0.419 131 2/7/2025
3.0.418 1,997 2/7/2025
3.0.417 130 2/7/2025
3.0.416 14,605 2/7/2025
3.0.415 7,173 2/5/2025
3.0.414 857 2/5/2025
3.0.413 1,185 2/5/2025
3.0.412 274 2/5/2025
3.0.411 2,556 2/5/2025
3.0.410 5,376 2/5/2025
3.0.409 12,314 1/28/2025
3.0.408 865 1/28/2025
3.0.407 286 1/28/2025
3.0.406 2,662 1/28/2025
3.0.405 5,528 1/27/2025
3.0.404 1,580 1/27/2025
3.0.403 120 1/27/2025
3.0.402 5,393 1/27/2025
3.0.401 118 1/27/2025
3.0.400 6,166 1/26/2025
3.0.399 1,312 1/26/2025
3.0.398 1,009 1/26/2025
3.0.397 556 1/26/2025
3.0.396 273 1/26/2025
3.0.395 2,760 1/25/2025
3.0.394 5,923 1/25/2025
3.0.393 4,315 1/25/2025
3.0.392 463 1/25/2025
3.0.391 10,803 1/24/2025
3.0.390 2,004 1/24/2025
3.0.389 3,511 1/24/2025
3.0.388 4,093 1/24/2025
3.0.387 960 1/23/2025
3.0.386 1,180 1/23/2025
3.0.385 168 1/23/2025
3.0.384 9,620 1/22/2025
3.0.383 1,261 1/21/2025
3.0.382 395 1/21/2025
3.0.381 1,219 1/21/2025
3.0.380 1,186 1/21/2025
3.0.379 1,358 1/21/2025
3.0.378 1,043 1/21/2025
3.0.377 1,388 1/21/2025
3.0.376 134 1/21/2025
3.0.375 6,210 1/21/2025
3.0.374 1,779 1/21/2025
3.0.373 1,535 1/21/2025
3.0.372 2,671 1/21/2025
3.0.371 214 1/20/2025
3.0.370 6,974 1/20/2025
3.0.369 276 1/20/2025
3.0.368 1,467 1/20/2025
3.0.367 119 1/20/2025
3.0.366 1,385 1/20/2025
3.0.365 143 1/20/2025
3.0.364 4,269 1/19/2025
3.0.363 6,657 1/19/2025
3.0.362 6,453 1/19/2025
3.0.361 2,205 1/19/2025
3.0.360 650 1/19/2025
3.0.359 3,658 1/18/2025
3.0.358 165 1/18/2025
3.0.357 3,571 1/18/2025
3.0.356 289 1/18/2025
3.0.355 1,040 1/18/2025
3.0.354 6,415 1/17/2025
3.0.353 157 1/17/2025
3.0.352 8,308 1/16/2025
3.0.351 4,585 1/16/2025
3.0.350 866 1/16/2025
3.0.349 5,170 1/15/2025
3.0.348 4,429 1/15/2025
3.0.347 3,749 1/15/2025
3.0.346 3,949 1/15/2025
3.0.345 2,324 1/15/2025
3.0.344 3,075 1/15/2025
3.0.343 825 1/15/2025
3.0.342 2,469 1/14/2025
3.0.341 437 1/14/2025
3.0.340 156 1/14/2025
3.0.339 3,490 1/14/2025
3.0.338 968 1/14/2025
3.0.337 112 1/14/2025
3.0.336 1,264 1/14/2025
3.0.335 377 1/14/2025
3.0.334 7,152 1/13/2025
3.0.333 1,611 1/13/2025
3.0.332 3,037 1/13/2025
3.0.331 6,107 1/11/2025
3.0.330 2,547 1/11/2025
3.0.329 2,809 1/10/2025
3.0.328 5,598 1/10/2025
3.0.327 137 1/10/2025
3.0.326 537 1/10/2025
3.0.325 129 1/10/2025
3.0.324 130 1/10/2025
3.0.323 9,014 1/3/2025
3.0.322 1,067 1/3/2025
3.0.321 1,337 1/3/2025
3.0.320 435 1/3/2025
3.0.319 1,504 1/3/2025
3.0.318 3,325 1/2/2025
3.0.317 141 1/2/2025
3.0.316 2,305 1/2/2025
3.0.315 148 1/2/2025
3.0.314 3,067 1/2/2025
3.0.313 152 1/2/2025
3.0.312 9,913 1/1/2025
3.0.311 142 1/1/2025
3.0.310 189 12/31/2024
3.0.309 153 12/31/2024
3.0.308 3,600 12/31/2024
3.0.307 140 12/31/2024
3.0.306 217 12/31/2024
3.0.305 712 12/31/2024
3.0.304 145 12/31/2024
3.0.303 1,106 12/31/2024
3.0.302 419 12/31/2024
3.0.301 6,449 12/31/2024
3.0.300 4,557 12/31/2024
3.0.299 1,061 12/31/2024
3.0.298 3,307 12/31/2024
3.0.297 2,515 12/31/2024
3.0.296 138 12/31/2024
3.0.295 145 12/31/2024
3.0.294 11,611 12/28/2024
3.0.293 1,973 12/28/2024
3.0.292 1,137 12/28/2024
3.0.291 1,369 12/27/2024
3.0.290 8,507 12/24/2024
3.0.289 1,866 12/24/2024
3.0.288 1,809 12/24/2024
3.0.287 2,544 12/24/2024
3.0.286 2,728 12/24/2024
3.0.285 2,163 12/24/2024
3.0.284 1,789 12/24/2024
3.0.283 1,416 12/23/2024
3.0.282 2,975 12/23/2024
3.0.281 3,410 12/23/2024
3.0.280 1,359 12/23/2024
3.0.279 3,819 12/23/2024
3.0.278 331 12/23/2024
3.0.277 3,653 12/22/2024
3.0.276 5,772 12/22/2024
3.0.275 5,795 12/22/2024
3.0.274 7,827 12/21/2024
3.0.273 485 12/21/2024
3.0.272 3,850 12/21/2024
3.0.271 4,981 12/21/2024
3.0.270 1,096 12/21/2024
3.0.269 5,949 12/20/2024
3.0.268 11,618 12/18/2024
3.0.267 186 12/18/2024
3.0.266 7,608 12/17/2024
3.0.265 6,170 12/17/2024
3.0.264 406 12/16/2024
3.0.263 1,153 12/16/2024
3.0.262 8,183 12/10/2024
3.0.261 2,298 12/9/2024
3.0.260 3,733 12/9/2024
3.0.259 2,544 12/9/2024
3.0.258 7,059 12/6/2024
3.0.257 1,354 12/6/2024
3.0.256 2,344 12/6/2024
3.0.255 7,173 12/6/2024
3.0.254 228 12/6/2024
3.0.253 369 12/6/2024
3.0.252 1,035 12/6/2024
3.0.251 5,694 12/6/2024
3.0.250 160 12/6/2024
3.0.249 148 12/6/2024
3.0.248 4,522 12/5/2024
3.0.247 4,518 12/5/2024
3.0.246 3,458 12/5/2024
3.0.245 4,124 12/5/2024
3.0.244 625 12/5/2024
3.0.243 538 12/5/2024
3.0.242 5,222 12/4/2024
3.0.241 505 12/4/2024
3.0.240 1,155 12/4/2024
3.0.239 3,636 12/4/2024
3.0.238 3,839 12/3/2024
3.0.237 2,887 12/3/2024
3.0.236 3,653 12/3/2024
3.0.235 3,446 12/3/2024
3.0.234 4,758 12/2/2024
3.0.233 3,923 12/2/2024
3.0.232 2,414 12/2/2024
3.0.231 463 12/2/2024
3.0.230 4,345 12/1/2024
3.0.229 1,026 12/1/2024
3.0.228 3,187 12/1/2024
3.0.227 4,123 12/1/2024
3.0.226 4,331 11/29/2024
3.0.225 7,752 11/21/2024
3.0.224 6,246 11/20/2024
3.0.223 700 11/20/2024
3.0.222 1,180 11/20/2024
3.0.221 601 11/19/2024
3.0.220 5,713 11/19/2024
3.0.219 2,351 11/19/2024
3.0.218 130 11/19/2024
3.0.217 3,860 11/19/2024
3.0.216 124 11/19/2024
3.0.215 10,651 11/14/2024
3.0.214 1,201 11/14/2024
3.0.213 4,139 11/14/2024
3.0.212 1,012 11/14/2024
3.0.211 615 11/14/2024
3.0.210 4,387 11/14/2024
3.0.209 126 11/14/2024
3.0.208 3,483 11/14/2024
3.0.207 219 11/14/2024
2.1.206 12,700 11/13/2024
2.1.205 5,053 11/13/2024
2.1.204 12,164 11/9/2024
2.1.203 879 11/9/2024
2.1.202 2,200 11/9/2024
2.1.201 1,306 11/8/2024
2.1.200 1,110 11/8/2024
2.1.199 135 11/8/2024
2.1.198 1,954 11/8/2024
2.1.197 285 11/8/2024
2.1.196 4,663 11/8/2024
2.1.195 6,076 11/8/2024
2.1.194 13,392 11/1/2024
2.1.192 9,690 10/29/2024
2.1.191 10,426 10/28/2024
2.1.190 6,641 10/26/2024
2.1.189 11,481 10/22/2024
2.1.188 1,517 10/22/2024
2.1.187 1,095 10/22/2024
2.1.186 8,585 10/17/2024
2.1.185 6,240 10/15/2024
2.1.184 2,383 10/14/2024
2.1.183 6,923 10/11/2024
2.1.182 977 10/11/2024
2.1.181 591 10/11/2024
2.1.180 11,129 10/9/2024
2.1.179 948 10/8/2024
2.1.178 5,557 10/8/2024
2.1.177 877 10/8/2024
2.1.176 12,668 10/3/2024
2.1.175 3,765 10/3/2024
2.1.174 9,117 10/2/2024
2.1.173 2,755 10/2/2024
2.1.172 6,708 10/1/2024
2.1.171 1,832 10/1/2024
2.1.170 2,771 10/1/2024
2.1.169 7,780 9/29/2024
2.1.168 2,250 9/29/2024
2.1.167 1,659 9/29/2024
2.1.166 9,530 9/27/2024
2.1.165 5,316 9/27/2024
2.1.164 129 9/27/2024
2.1.163 325 9/27/2024
2.1.162 130 9/27/2024
2.1.161 7,971 9/26/2024
2.1.160 7,614 9/26/2024
2.1.159 7,024 9/26/2024
2.1.158 7,212 9/23/2024
2.1.157 3,340 9/23/2024
2.1.156 1,981 9/23/2024
2.1.155 2,058 9/23/2024
2.1.154 6,596 9/23/2024
2.1.153 759 9/23/2024
2.1.152 920 9/23/2024
2.1.151 118 9/23/2024
2.1.150 2,399 9/23/2024
2.1.149 12,205 9/17/2024
2.1.148 129 9/17/2024
2.1.147 446 9/17/2024
2.1.146 4,870 9/17/2024
2.1.145 4,235 9/17/2024
2.1.144 5,522 9/17/2024
2.1.143 141 9/17/2024
2.1.142 544 9/17/2024
2.1.141 1,274 9/17/2024
2.1.140 13,507 9/16/2024
2.1.139 7,679 9/12/2024
2.1.138 5,173 9/11/2024
2.1.137 3,123 9/11/2024
2.1.136 6,013 9/11/2024
2.1.135 4,957 9/11/2024
2.1.134 11,231 9/10/2024
2.1.133 2,381 9/10/2024
2.1.132 3,777 9/9/2024
2.1.131 4,159 9/9/2024
2.1.130 2,643 9/9/2024
2.1.129 1,274 9/9/2024
2.1.128 130 9/9/2024
2.1.127 137 9/9/2024
2.1.126 136 9/9/2024
2.1.125 16,877 9/6/2024
2.1.124 6,607 9/6/2024
2.1.123 3,434 9/5/2024
2.1.122 2,068 9/5/2024
2.1.121 4,170 9/5/2024
2.1.120 2,286 9/5/2024
2.1.119 136 9/5/2024
2.1.118 1,675 9/5/2024
2.1.117 5,951 9/5/2024
2.1.116 1,433 9/4/2024
2.1.115 12,157 9/3/2024
2.1.114 1,245 9/3/2024
2.1.113 4,985 9/3/2024
2.1.112 9,620 8/29/2024
2.1.111 6,808 8/26/2024
2.1.110 6,767 8/21/2024
2.1.109 3,857 8/21/2024
2.1.108 473 8/20/2024
2.1.107 4,778 8/20/2024
2.1.106 139 8/20/2024
2.1.105 4,862 8/20/2024
2.1.104 2,973 8/20/2024
2.1.103 9,134 8/15/2024
2.1.102 8,255 8/13/2024
2.1.101 7,925 8/6/2024
2.1.100 9,257 8/1/2024
2.1.99 597 8/1/2024
2.1.98 8,741 7/25/2024
2.1.97 1,097 7/25/2024
2.1.96 1,016 7/25/2024
2.1.95 671 7/24/2024
2.1.94 244 7/24/2024
2.1.93 9,812 7/20/2024
2.1.92 8,292 7/14/2024
2.1.91 2,275 7/14/2024
2.1.90 6,884 7/10/2024
2.1.89 261 7/10/2024
2.1.88 2,202 7/10/2024
2.1.87 2,076 7/10/2024
2.1.86 256 7/10/2024
2.1.85 264 7/10/2024
2.1.83 2,155 7/10/2024
2.1.82 3,265 7/9/2024
2.1.80 869 7/9/2024
2.1.79 1,284 7/9/2024
2.1.78 7,770 7/9/2024
2.1.77 3,106 7/9/2024
2.1.76 13,511 7/9/2024
2.1.75 150 7/9/2024
2.1.74 166 7/8/2024
2.1.73 143 7/8/2024
2.1.72 2,548 7/8/2024
2.1.71 126 7/8/2024
2.1.70 6,994 7/8/2024
2.1.69 2,318 7/7/2024
2.1.68 2,623 7/7/2024
2.1.67 704 7/7/2024
2.1.66 1,368 7/7/2024
2.1.65 3,090 7/7/2024
2.1.64 2,755 7/7/2024
2.1.63 139 7/7/2024
2.1.62 3,668 7/5/2024
2.1.61 73,437 5/25/2024
2.1.60 144 5/25/2024
2.1.59 559 5/25/2024
2.1.58 14,058 5/22/2024
2.1.57 145 5/22/2024
2.1.56 11,551 5/17/2024
2.1.55 15,996 4/30/2024
2.1.54 16,025 4/28/2024
2.1.53 144 4/28/2024
2.1.52 709 4/27/2024
2.1.51 137 4/27/2024
2.1.50 25,151 4/12/2024
2.1.49 1,398 4/12/2024
2.1.48 152 4/12/2024
2.1.47 39,602 3/18/2024
2.1.46 8,837 3/13/2024
2.1.45 2,314 3/13/2024
2.1.44 61,413 2/21/2024
2.1.43 2,771 2/21/2024
2.1.42 144 2/21/2024
2.1.41 21,931 2/16/2024
2.1.40 677 2/16/2024
2.1.39 24,013 2/9/2024
2.1.38 19,021 2/6/2024
2.1.37 155 2/6/2024
2.1.36 63,013 1/15/2024
2.1.35 868 1/15/2024
2.1.34 26,231 1/5/2024
2.1.33 2,485 1/5/2024
2.1.32 13,447 12/27/2023
2.1.31 1,375 12/27/2023
2.1.30 1,117 12/27/2023
2.1.29 7,915 12/25/2023
2.1.28 1,462 12/25/2023
2.1.27 721 12/25/2023
2.1.26 10,612 12/23/2023
2.1.25 170 12/23/2023
2.1.24 841 12/23/2023
2.1.23 20,827 12/9/2023
2.1.22 1,378 12/9/2023
2.1.21 278 12/9/2023
2.1.20 1,961 12/9/2023
2.1.19 10,913 12/4/2023
2.1.18 850 12/4/2023
2.1.17 5,496 11/26/2023
2.1.16 5,450 11/23/2023
2.1.15 363 11/23/2023
2.1.14 985 11/23/2023
2.1.13 9,482 11/19/2023
2.1.12 161 11/19/2023
2.1.11 1,219 11/18/2023
2.1.10 3,453 11/18/2023
2.1.9 1,970 11/18/2023
2.1.8 3,715 11/17/2023
2.1.7 1,103 11/17/2023
2.1.6 1,739 11/17/2023
2.1.5 906 11/17/2023
2.1.4 680 11/16/2023
2.1.3 207 11/16/2023
2.0.52 1,276 11/15/2023
2.0.51 2,165 11/15/2023
2.0.2 156 11/16/2023
2.0.1 167 11/16/2023
1.0.50 4,139 11/11/2023
1.0.49 148 11/11/2023
1.0.48 133 11/11/2023
1.0.47 1,364 11/9/2023
1.0.46 154 11/9/2023
1.0.45 5,260 11/6/2023
1.0.44 2,257 11/3/2023
1.0.43 1,839 11/2/2023
1.0.42 1,917 11/1/2023
1.0.41 7,582 10/18/2023
1.0.40 3,051 10/17/2023
1.0.39 1,267 10/16/2023
1.0.38 2,723 10/13/2023
1.0.37 193 10/13/2023
1.0.36 6,203 9/19/2023
1.0.35 2,103 9/18/2023
1.0.34 164 9/18/2023
1.0.33 7,740 8/30/2023
1.0.32 2,759 8/29/2023
1.0.31 4,216 8/24/2023
1.0.30 186 8/24/2023
1.0.29 4,393 8/17/2023
1.0.28 215 8/17/2023
1.0.27 8,084 8/7/2023
1.0.26 215 8/7/2023
1.0.25 8,036 7/10/2023
1.0.24 10,437 7/7/2023
1.0.23 211 7/7/2023
1.0.22 9,394 6/28/2023
1.0.21 44,658 5/24/2023
1.0.20 1,179 5/24/2023
1.0.19 463 5/23/2023
1.0.18 239 5/31/2023
1.0.17 2,809 5/23/2023
1.0.16 2,994 5/22/2023
1.0.15 6,018 5/17/2023
1.0.14 233 5/17/2023
1.0.13 5,653 4/28/2023
1.0.12 2,261 4/24/2023
1.0.11 1,021 4/21/2023
1.0.10 4,537 4/12/2023
1.0.9 1,121 4/11/2023
1.0.8 2,086 4/3/2023
1.0.7 283 4/3/2023
1.0.6 418 4/1/2023
1.0.5 2,090 3/23/2023
1.0.3 599 2/28/2023
1.0.2 510 2/16/2023