Soenneker.Extensions.Enumerable 3.0.558

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.558
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.558
                    
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.558" />
                    
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.558" />
                    
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.558
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.558"
                    
#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.558
                    
#: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.558
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.558
                    
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 (14)

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.558 7,928 7/8/2025
3.0.557 26,320 6/27/2025
3.0.556 2,115 6/27/2025
3.0.555 210 6/27/2025
3.0.554 28,894 6/10/2025
3.0.553 21,133 5/27/2025
3.0.552 1,361 5/27/2025
3.0.551 1,123 5/27/2025
3.0.550 19,506 5/23/2025
3.0.549 2,155 5/23/2025
3.0.548 2,158 5/22/2025
3.0.547 18,628 5/14/2025
3.0.546 11,664 5/8/2025
3.0.545 1,729 5/7/2025
3.0.544 247 5/7/2025
3.0.543 16,519 5/5/2025
3.0.542 1,831 5/5/2025
3.0.541 3,355 5/5/2025
3.0.540 141 5/5/2025
3.0.539 23,502 4/8/2025
3.0.538 2,462 4/8/2025
3.0.537 539 4/8/2025
3.0.536 2,575 4/8/2025
3.0.535 170 4/8/2025
3.0.534 3,944 4/8/2025
3.0.533 652 4/8/2025
3.0.532 6,177 4/8/2025
3.0.531 7,327 4/8/2025
3.0.530 1,622 4/7/2025
3.0.529 3,677 4/7/2025
3.0.528 1,270 4/7/2025
3.0.527 3,084 4/7/2025
3.0.526 8,157 4/7/2025
3.0.525 2,408 4/7/2025
3.0.524 620 4/7/2025
3.0.523 9,295 4/7/2025
3.0.522 1,913 4/7/2025
3.0.521 3,294 4/6/2025
3.0.520 250 4/6/2025
3.0.519 1,508 4/6/2025
3.0.518 1,876 4/6/2025
3.0.517 2,227 4/6/2025
3.0.516 114 4/6/2025
3.0.515 385 4/6/2025
3.0.514 118 4/6/2025
3.0.513 488 4/5/2025
3.0.512 3,116 4/5/2025
3.0.511 1,462 4/5/2025
3.0.510 1,121 4/5/2025
3.0.509 174 4/5/2025
3.0.508 225 4/5/2025
3.0.507 270 4/5/2025
3.0.506 2,892 4/4/2025
3.0.505 131 4/4/2025
3.0.504 3,021 4/4/2025
3.0.503 37,239 4/4/2025
3.0.502 8,254 4/1/2025
3.0.501 4,532 4/1/2025
3.0.500 6,434 3/31/2025
3.0.499 2,834 3/31/2025
3.0.498 6,510 3/31/2025
3.0.497 7,833 3/29/2025
3.0.496 2,084 3/29/2025
3.0.495 6,493 3/27/2025
3.0.494 4,374 3/25/2025
3.0.493 1,751 3/25/2025
3.0.492 10,580 3/21/2025
3.0.491 10,747 3/18/2025
3.0.490 4,924 3/18/2025
3.0.489 7,357 3/15/2025
3.0.488 2,290 3/15/2025
3.0.487 8,349 3/12/2025
3.0.486 3,142 3/12/2025
3.0.485 514 3/12/2025
3.0.484 3,142 3/11/2025
3.0.483 391 3/11/2025
3.0.482 1,278 3/11/2025
3.0.481 2,348 3/11/2025
3.0.480 3,489 3/11/2025
3.0.479 3,197 3/11/2025
3.0.478 2,019 3/11/2025
3.0.477 12,325 3/7/2025
3.0.476 3,668 3/7/2025
3.0.475 7,425 3/2/2025
3.0.474 2,705 3/2/2025
3.0.473 674 3/2/2025
3.0.472 5,168 3/2/2025
3.0.471 4,733 3/1/2025
3.0.470 242 3/1/2025
3.0.469 4,479 3/1/2025
3.0.468 109 3/1/2025
3.0.467 1,663 3/1/2025
3.0.466 12,721 2/26/2025
3.0.465 1,126 2/25/2025
3.0.464 3,093 2/25/2025
3.0.463 2,021 2/25/2025
3.0.462 1,028 2/25/2025
3.0.461 11,652 2/23/2025
3.0.460 2,096 2/22/2025
3.0.459 9,289 2/22/2025
3.0.458 2,695 2/22/2025
3.0.457 3,262 2/22/2025
3.0.456 536 2/21/2025
3.0.455 5,239 2/21/2025
3.0.454 11,551 2/19/2025
3.0.453 4,854 2/18/2025
3.0.452 1,061 2/18/2025
3.0.451 428 2/18/2025
3.0.450 5,715 2/18/2025
3.0.449 113 2/18/2025
3.0.448 12,752 2/14/2025
3.0.447 1,390 2/14/2025
3.0.446 3,842 2/13/2025
3.0.445 4,707 2/13/2025
3.0.444 5,392 2/12/2025
3.0.443 1,687 2/12/2025
3.0.442 741 2/12/2025
3.0.441 2,132 2/12/2025
3.0.440 744 2/12/2025
3.0.439 512 2/11/2025
3.0.438 7,864 2/11/2025
3.0.437 2,659 2/11/2025
3.0.436 455 2/11/2025
3.0.435 2,598 2/10/2025
3.0.434 122 2/10/2025
3.0.433 1,763 2/10/2025
3.0.432 127 2/10/2025
3.0.431 13,782 2/9/2025
3.0.430 7,984 2/9/2025
3.0.429 363 2/9/2025
3.0.428 273 2/8/2025
3.0.427 223 2/8/2025
3.0.426 282 2/8/2025
3.0.425 8,291 2/8/2025
3.0.424 2,726 2/7/2025
3.0.423 1,928 2/7/2025
3.0.422 2,463 2/7/2025
3.0.421 121 2/7/2025
3.0.420 414 2/7/2025
3.0.419 118 2/7/2025
3.0.418 1,980 2/7/2025
3.0.417 116 2/7/2025
3.0.416 14,589 2/7/2025
3.0.415 7,161 2/5/2025
3.0.414 846 2/5/2025
3.0.413 1,176 2/5/2025
3.0.412 262 2/5/2025
3.0.411 2,545 2/5/2025
3.0.410 5,366 2/5/2025
3.0.409 12,301 1/28/2025
3.0.408 851 1/28/2025
3.0.407 269 1/28/2025
3.0.406 2,648 1/28/2025
3.0.405 5,515 1/27/2025
3.0.404 1,570 1/27/2025
3.0.403 109 1/27/2025
3.0.402 5,384 1/27/2025
3.0.401 107 1/27/2025
3.0.400 6,149 1/26/2025
3.0.399 1,300 1/26/2025
3.0.398 996 1/26/2025
3.0.397 548 1/26/2025
3.0.396 265 1/26/2025
3.0.395 2,752 1/25/2025
3.0.394 5,911 1/25/2025
3.0.393 4,300 1/25/2025
3.0.392 451 1/25/2025
3.0.391 10,787 1/24/2025
3.0.390 1,987 1/24/2025
3.0.389 3,494 1/24/2025
3.0.388 4,081 1/24/2025
3.0.387 947 1/23/2025
3.0.386 1,168 1/23/2025
3.0.385 156 1/23/2025
3.0.384 9,604 1/22/2025
3.0.383 1,250 1/21/2025
3.0.382 386 1/21/2025
3.0.381 1,209 1/21/2025
3.0.380 1,171 1/21/2025
3.0.379 1,344 1/21/2025
3.0.378 1,032 1/21/2025
3.0.377 1,378 1/21/2025
3.0.376 117 1/21/2025
3.0.375 6,196 1/21/2025
3.0.374 1,764 1/21/2025
3.0.373 1,520 1/21/2025
3.0.372 2,656 1/21/2025
3.0.371 198 1/20/2025
3.0.370 6,961 1/20/2025
3.0.369 268 1/20/2025
3.0.368 1,455 1/20/2025
3.0.367 111 1/20/2025
3.0.366 1,377 1/20/2025
3.0.365 129 1/20/2025
3.0.364 4,252 1/19/2025
3.0.363 6,644 1/19/2025
3.0.362 6,439 1/19/2025
3.0.361 2,192 1/19/2025
3.0.360 639 1/19/2025
3.0.359 3,644 1/18/2025
3.0.358 151 1/18/2025
3.0.357 3,557 1/18/2025
3.0.356 280 1/18/2025
3.0.355 1,025 1/18/2025
3.0.354 6,401 1/17/2025
3.0.353 143 1/17/2025
3.0.352 8,298 1/16/2025
3.0.351 4,572 1/16/2025
3.0.350 855 1/16/2025
3.0.349 5,158 1/15/2025
3.0.348 4,421 1/15/2025
3.0.347 3,737 1/15/2025
3.0.346 3,937 1/15/2025
3.0.345 2,315 1/15/2025
3.0.344 3,063 1/15/2025
3.0.343 813 1/15/2025
3.0.342 2,459 1/14/2025
3.0.341 426 1/14/2025
3.0.340 141 1/14/2025
3.0.339 3,477 1/14/2025
3.0.338 956 1/14/2025
3.0.337 98 1/14/2025
3.0.336 1,251 1/14/2025
3.0.335 365 1/14/2025
3.0.334 7,136 1/13/2025
3.0.333 1,602 1/13/2025
3.0.332 3,027 1/13/2025
3.0.331 6,090 1/11/2025
3.0.330 2,533 1/11/2025
3.0.329 2,796 1/10/2025
3.0.328 5,585 1/10/2025
3.0.327 126 1/10/2025
3.0.326 524 1/10/2025
3.0.325 116 1/10/2025
3.0.324 122 1/10/2025
3.0.323 8,999 1/3/2025
3.0.322 1,048 1/3/2025
3.0.321 1,320 1/3/2025
3.0.320 425 1/3/2025
3.0.319 1,491 1/3/2025
3.0.318 3,313 1/2/2025
3.0.317 130 1/2/2025
3.0.316 2,296 1/2/2025
3.0.315 137 1/2/2025
3.0.314 3,053 1/2/2025
3.0.313 139 1/2/2025
3.0.312 9,894 1/1/2025
3.0.311 130 1/1/2025
3.0.310 178 12/31/2024
3.0.309 140 12/31/2024
3.0.308 3,586 12/31/2024
3.0.307 130 12/31/2024
3.0.306 203 12/31/2024
3.0.305 702 12/31/2024
3.0.304 135 12/31/2024
3.0.303 1,097 12/31/2024
3.0.302 407 12/31/2024
3.0.301 6,440 12/31/2024
3.0.300 4,540 12/31/2024
3.0.299 1,050 12/31/2024
3.0.298 3,296 12/31/2024
3.0.297 2,505 12/31/2024
3.0.296 124 12/31/2024
3.0.295 133 12/31/2024
3.0.294 11,594 12/28/2024
3.0.293 1,964 12/28/2024
3.0.292 1,125 12/28/2024
3.0.291 1,357 12/27/2024
3.0.290 8,491 12/24/2024
3.0.289 1,854 12/24/2024
3.0.288 1,799 12/24/2024
3.0.287 2,528 12/24/2024
3.0.286 2,719 12/24/2024
3.0.285 2,148 12/24/2024
3.0.284 1,777 12/24/2024
3.0.283 1,406 12/23/2024
3.0.282 2,963 12/23/2024
3.0.281 3,393 12/23/2024
3.0.280 1,347 12/23/2024
3.0.279 3,807 12/23/2024
3.0.278 319 12/23/2024
3.0.277 3,640 12/22/2024
3.0.276 5,758 12/22/2024
3.0.275 5,780 12/22/2024
3.0.274 7,809 12/21/2024
3.0.273 469 12/21/2024
3.0.272 3,835 12/21/2024
3.0.271 4,968 12/21/2024
3.0.270 1,085 12/21/2024
3.0.269 5,939 12/20/2024
3.0.268 11,604 12/18/2024
3.0.267 174 12/18/2024
3.0.266 7,597 12/17/2024
3.0.265 6,156 12/17/2024
3.0.264 394 12/16/2024
3.0.263 1,137 12/16/2024
3.0.262 8,170 12/10/2024
3.0.261 2,282 12/9/2024
3.0.260 3,721 12/9/2024
3.0.259 2,534 12/9/2024
3.0.258 7,046 12/6/2024
3.0.257 1,345 12/6/2024
3.0.256 2,327 12/6/2024
3.0.255 7,157 12/6/2024
3.0.254 218 12/6/2024
3.0.253 355 12/6/2024
3.0.252 1,021 12/6/2024
3.0.251 5,678 12/6/2024
3.0.250 146 12/6/2024
3.0.249 135 12/6/2024
3.0.248 4,512 12/5/2024
3.0.247 4,506 12/5/2024
3.0.246 3,448 12/5/2024
3.0.245 4,111 12/5/2024
3.0.244 611 12/5/2024
3.0.243 530 12/5/2024
3.0.242 5,212 12/4/2024
3.0.241 492 12/4/2024
3.0.240 1,145 12/4/2024
3.0.239 3,626 12/4/2024
3.0.238 3,825 12/3/2024
3.0.237 2,874 12/3/2024
3.0.236 3,639 12/3/2024
3.0.235 3,436 12/3/2024
3.0.234 4,744 12/2/2024
3.0.233 3,906 12/2/2024
3.0.232 2,403 12/2/2024
3.0.231 448 12/2/2024
3.0.230 4,327 12/1/2024
3.0.229 1,008 12/1/2024
3.0.228 3,174 12/1/2024
3.0.227 4,107 12/1/2024
3.0.226 4,315 11/29/2024
3.0.225 7,579 11/21/2024
3.0.224 6,232 11/20/2024
3.0.223 687 11/20/2024
3.0.222 1,170 11/20/2024
3.0.221 591 11/19/2024
3.0.220 5,698 11/19/2024
3.0.219 2,339 11/19/2024
3.0.218 117 11/19/2024
3.0.217 3,845 11/19/2024
3.0.216 111 11/19/2024
3.0.215 10,636 11/14/2024
3.0.214 1,188 11/14/2024
3.0.213 4,122 11/14/2024
3.0.212 997 11/14/2024
3.0.211 596 11/14/2024
3.0.210 4,369 11/14/2024
3.0.209 116 11/14/2024
3.0.208 3,469 11/14/2024
3.0.207 209 11/14/2024
2.1.206 12,532 11/13/2024
2.1.205 5,012 11/13/2024
2.1.204 12,148 11/9/2024
2.1.203 865 11/9/2024
2.1.202 2,187 11/9/2024
2.1.201 1,294 11/8/2024
2.1.200 1,097 11/8/2024
2.1.199 121 11/8/2024
2.1.198 1,928 11/8/2024
2.1.197 274 11/8/2024
2.1.196 4,646 11/8/2024
2.1.195 6,064 11/8/2024
2.1.194 13,369 11/1/2024
2.1.192 9,669 10/29/2024
2.1.191 10,411 10/28/2024
2.1.190 6,629 10/26/2024
2.1.189 11,451 10/22/2024
2.1.188 1,508 10/22/2024
2.1.187 1,082 10/22/2024
2.1.186 8,569 10/17/2024
2.1.185 6,227 10/15/2024
2.1.184 2,371 10/14/2024
2.1.183 6,902 10/11/2024
2.1.182 966 10/11/2024
2.1.181 580 10/11/2024
2.1.180 11,092 10/9/2024
2.1.179 932 10/8/2024
2.1.178 5,547 10/8/2024
2.1.177 867 10/8/2024
2.1.176 12,458 10/3/2024
2.1.175 3,752 10/3/2024
2.1.174 9,106 10/2/2024
2.1.173 2,739 10/2/2024
2.1.172 6,695 10/1/2024
2.1.171 1,818 10/1/2024
2.1.170 2,760 10/1/2024
2.1.169 7,750 9/29/2024
2.1.168 2,236 9/29/2024
2.1.167 1,646 9/29/2024
2.1.166 9,511 9/27/2024
2.1.165 5,303 9/27/2024
2.1.164 119 9/27/2024
2.1.163 315 9/27/2024
2.1.162 119 9/27/2024
2.1.161 7,954 9/26/2024
2.1.160 7,604 9/26/2024
2.1.159 7,005 9/26/2024
2.1.158 7,191 9/23/2024
2.1.157 3,326 9/23/2024
2.1.156 1,967 9/23/2024
2.1.155 2,043 9/23/2024
2.1.154 6,581 9/23/2024
2.1.153 749 9/23/2024
2.1.152 904 9/23/2024
2.1.151 108 9/23/2024
2.1.150 2,389 9/23/2024
2.1.149 12,089 9/17/2024
2.1.148 114 9/17/2024
2.1.147 436 9/17/2024
2.1.146 4,851 9/17/2024
2.1.145 4,223 9/17/2024
2.1.144 5,509 9/17/2024
2.1.143 126 9/17/2024
2.1.142 535 9/17/2024
2.1.141 1,262 9/17/2024
2.1.140 13,440 9/16/2024
2.1.139 7,623 9/12/2024
2.1.138 5,161 9/11/2024
2.1.137 3,111 9/11/2024
2.1.136 6,003 9/11/2024
2.1.135 4,946 9/11/2024
2.1.134 11,217 9/10/2024
2.1.133 2,367 9/10/2024
2.1.132 3,763 9/9/2024
2.1.131 4,144 9/9/2024
2.1.130 2,632 9/9/2024
2.1.129 1,261 9/9/2024
2.1.128 117 9/9/2024
2.1.127 124 9/9/2024
2.1.126 121 9/9/2024
2.1.125 16,859 9/6/2024
2.1.124 6,592 9/6/2024
2.1.123 3,418 9/5/2024
2.1.122 2,060 9/5/2024
2.1.121 4,155 9/5/2024
2.1.120 2,268 9/5/2024
2.1.119 117 9/5/2024
2.1.118 1,660 9/5/2024
2.1.117 5,934 9/5/2024
2.1.116 1,420 9/4/2024
2.1.115 12,132 9/3/2024
2.1.114 1,229 9/3/2024
2.1.113 4,968 9/3/2024
2.1.112 9,600 8/29/2024
2.1.111 6,793 8/26/2024
2.1.110 6,747 8/21/2024
2.1.109 3,840 8/21/2024
2.1.108 461 8/20/2024
2.1.107 4,761 8/20/2024
2.1.106 129 8/20/2024
2.1.105 4,845 8/20/2024
2.1.104 2,960 8/20/2024
2.1.103 9,122 8/15/2024
2.1.102 8,242 8/13/2024
2.1.101 7,911 8/6/2024
2.1.100 9,240 8/1/2024
2.1.99 587 8/1/2024
2.1.98 8,724 7/25/2024
2.1.97 1,084 7/25/2024
2.1.96 1,004 7/25/2024
2.1.95 659 7/24/2024
2.1.94 232 7/24/2024
2.1.93 9,748 7/20/2024
2.1.92 8,274 7/14/2024
2.1.91 2,262 7/14/2024
2.1.90 6,868 7/10/2024
2.1.89 247 7/10/2024
2.1.88 2,191 7/10/2024
2.1.87 2,066 7/10/2024
2.1.86 240 7/10/2024
2.1.85 251 7/10/2024
2.1.83 2,141 7/10/2024
2.1.82 3,252 7/9/2024
2.1.80 857 7/9/2024
2.1.79 1,272 7/9/2024
2.1.78 7,758 7/9/2024
2.1.77 3,094 7/9/2024
2.1.76 12,659 7/9/2024
2.1.75 137 7/9/2024
2.1.74 155 7/8/2024
2.1.73 134 7/8/2024
2.1.72 2,536 7/8/2024
2.1.71 115 7/8/2024
2.1.70 6,985 7/8/2024
2.1.69 2,308 7/7/2024
2.1.68 2,611 7/7/2024
2.1.67 694 7/7/2024
2.1.66 1,356 7/7/2024
2.1.65 3,080 7/7/2024
2.1.64 2,744 7/7/2024
2.1.63 126 7/7/2024
2.1.62 3,656 7/5/2024
2.1.61 73,352 5/25/2024
2.1.60 129 5/25/2024
2.1.59 547 5/25/2024
2.1.58 14,039 5/22/2024
2.1.57 132 5/22/2024
2.1.56 11,539 5/17/2024
2.1.55 15,975 4/30/2024
2.1.54 15,994 4/28/2024
2.1.53 132 4/28/2024
2.1.52 694 4/27/2024
2.1.51 123 4/27/2024
2.1.50 25,131 4/12/2024
2.1.49 1,379 4/12/2024
2.1.48 137 4/12/2024
2.1.47 39,347 3/18/2024
2.1.46 8,816 3/13/2024
2.1.45 2,301 3/13/2024
2.1.44 61,360 2/21/2024
2.1.43 2,760 2/21/2024
2.1.42 133 2/21/2024
2.1.41 21,902 2/16/2024
2.1.40 669 2/16/2024
2.1.39 23,981 2/9/2024
2.1.38 19,005 2/6/2024
2.1.37 140 2/6/2024
2.1.36 62,939 1/15/2024
2.1.35 857 1/15/2024
2.1.34 26,207 1/5/2024
2.1.33 2,472 1/5/2024
2.1.32 13,428 12/27/2023
2.1.31 1,361 12/27/2023
2.1.30 1,107 12/27/2023
2.1.29 7,903 12/25/2023
2.1.28 1,452 12/25/2023
2.1.27 707 12/25/2023
2.1.26 10,592 12/23/2023
2.1.25 157 12/23/2023
2.1.24 829 12/23/2023
2.1.23 20,797 12/9/2023
2.1.22 1,363 12/9/2023
2.1.21 268 12/9/2023
2.1.20 1,950 12/9/2023
2.1.19 10,889 12/4/2023
2.1.18 838 12/4/2023
2.1.17 5,475 11/26/2023
2.1.16 5,437 11/23/2023
2.1.15 355 11/23/2023
2.1.14 974 11/23/2023
2.1.13 9,470 11/19/2023
2.1.12 149 11/19/2023
2.1.11 1,212 11/18/2023
2.1.10 3,442 11/18/2023
2.1.9 1,962 11/18/2023
2.1.8 3,702 11/17/2023
2.1.7 1,093 11/17/2023
2.1.6 1,726 11/17/2023
2.1.5 896 11/17/2023
2.1.4 668 11/16/2023
2.1.3 200 11/16/2023
2.0.52 1,261 11/15/2023
2.0.51 2,155 11/15/2023
2.0.2 146 11/16/2023
2.0.1 157 11/16/2023
1.0.50 4,126 11/11/2023
1.0.49 138 11/11/2023
1.0.48 123 11/11/2023
1.0.47 1,355 11/9/2023
1.0.46 146 11/9/2023
1.0.45 5,247 11/6/2023
1.0.44 2,243 11/3/2023
1.0.43 1,828 11/2/2023
1.0.42 1,902 11/1/2023
1.0.41 7,565 10/18/2023
1.0.40 3,037 10/17/2023
1.0.39 1,257 10/16/2023
1.0.38 2,706 10/13/2023
1.0.37 182 10/13/2023
1.0.36 6,186 9/19/2023
1.0.35 2,085 9/18/2023
1.0.34 154 9/18/2023
1.0.33 7,722 8/30/2023
1.0.32 2,732 8/29/2023
1.0.31 4,195 8/24/2023
1.0.30 165 8/24/2023
1.0.29 4,369 8/17/2023
1.0.28 196 8/17/2023
1.0.27 8,065 8/7/2023
1.0.26 194 8/7/2023
1.0.25 8,015 7/10/2023
1.0.24 10,421 7/7/2023
1.0.23 190 7/7/2023
1.0.22 9,368 6/28/2023
1.0.21 44,610 5/24/2023
1.0.20 1,157 5/24/2023
1.0.19 439 5/23/2023
1.0.18 216 5/31/2023
1.0.17 2,786 5/23/2023
1.0.16 2,971 5/22/2023
1.0.15 5,996 5/17/2023
1.0.14 211 5/17/2023
1.0.13 5,634 4/28/2023
1.0.12 2,241 4/24/2023
1.0.11 1,000 4/21/2023
1.0.10 4,516 4/12/2023
1.0.9 1,098 4/11/2023
1.0.8 2,060 4/3/2023
1.0.7 264 4/3/2023
1.0.6 396 4/1/2023
1.0.5 2,068 3/23/2023
1.0.3 576 2/28/2023
1.0.2 482 2/16/2023