Soenneker.Extensions.Enumerable 3.0.519

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.519
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.519
                    
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.519" />
                    
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.519" />
                    
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.519
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.519"
                    
#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.519
                    
#: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.519
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.519
                    
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 28,015 9/9/2025
3.0.565 21,851 9/3/2025
3.0.564 2,218 9/3/2025
3.0.563 158 9/3/2025
3.0.562 37,248 8/11/2025
3.0.561 5,048 8/11/2025
3.0.560 413 8/11/2025
3.0.559 25,714 8/5/2025
3.0.558 27,224 7/8/2025
3.0.557 31,725 6/27/2025
3.0.556 2,514 6/27/2025
3.0.555 259 6/27/2025
3.0.554 34,728 6/10/2025
3.0.553 24,932 5/27/2025
3.0.552 1,631 5/27/2025
3.0.551 1,347 5/27/2025
3.0.550 23,656 5/23/2025
3.0.549 2,647 5/23/2025
3.0.548 2,612 5/22/2025
3.0.547 22,939 5/14/2025
3.0.546 14,068 5/8/2025
3.0.545 2,080 5/7/2025
3.0.544 300 5/7/2025
3.0.543 19,709 5/5/2025
3.0.542 2,187 5/5/2025
3.0.541 3,959 5/5/2025
3.0.540 174 5/5/2025
3.0.539 28,293 4/8/2025
3.0.538 2,992 4/8/2025
3.0.537 639 4/8/2025
3.0.536 3,122 4/8/2025
3.0.535 206 4/8/2025
3.0.534 4,841 4/8/2025
3.0.533 763 4/8/2025
3.0.532 7,600 4/8/2025
3.0.531 9,178 4/8/2025
3.0.530 1,920 4/7/2025
3.0.529 4,633 4/7/2025
3.0.528 1,567 4/7/2025
3.0.527 3,766 4/7/2025
3.0.526 10,058 4/7/2025
3.0.525 2,929 4/7/2025
3.0.524 718 4/7/2025
3.0.523 11,626 4/7/2025
3.0.522 2,351 4/7/2025
3.0.521 4,043 4/6/2025
3.0.520 303 4/6/2025
3.0.519 1,956 4/6/2025
3.0.518 2,263 4/6/2025
3.0.517 2,783 4/6/2025
3.0.516 146 4/6/2025
3.0.515 494 4/6/2025
3.0.514 155 4/6/2025
3.0.513 583 4/5/2025
3.0.512 3,756 4/5/2025
3.0.511 1,855 4/5/2025
3.0.510 1,405 4/5/2025
3.0.509 218 4/5/2025
3.0.508 275 4/5/2025
3.0.507 344 4/5/2025
3.0.506 3,398 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,796 4/4/2025
3.0.503 45,472 4/4/2025
3.0.502 10,252 4/1/2025
3.0.501 5,596 4/1/2025
3.0.500 8,025 3/31/2025
3.0.499 3,553 3/31/2025
3.0.498 8,012 3/31/2025
3.0.497 9,799 3/29/2025
3.0.496 2,582 3/29/2025
3.0.495 8,140 3/27/2025
3.0.494 5,315 3/25/2025
3.0.493 2,091 3/25/2025
3.0.492 13,202 3/21/2025
3.0.491 12,968 3/18/2025
3.0.490 6,148 3/18/2025
3.0.489 9,268 3/15/2025
3.0.488 2,893 3/15/2025
3.0.487 10,458 3/12/2025
3.0.486 3,853 3/12/2025
3.0.485 628 3/12/2025
3.0.484 3,906 3/11/2025
3.0.483 460 3/11/2025
3.0.482 1,539 3/11/2025
3.0.481 2,873 3/11/2025
3.0.480 4,380 3/11/2025
3.0.479 3,865 3/11/2025
3.0.478 2,480 3/11/2025
3.0.477 15,235 3/7/2025
3.0.476 4,537 3/7/2025
3.0.475 9,192 3/2/2025
3.0.474 3,383 3/2/2025
3.0.473 814 3/2/2025
3.0.472 6,507 3/2/2025
3.0.471 5,998 3/1/2025
3.0.470 309 3/1/2025
3.0.469 5,783 3/1/2025
3.0.468 140 3/1/2025
3.0.467 2,066 3/1/2025
3.0.466 15,624 2/26/2025
3.0.465 1,404 2/25/2025
3.0.464 3,917 2/25/2025
3.0.463 2,523 2/25/2025
3.0.462 1,297 2/25/2025
3.0.461 14,573 2/23/2025
3.0.460 2,587 2/22/2025
3.0.459 11,566 2/22/2025
3.0.458 3,402 2/22/2025
3.0.457 4,164 2/22/2025
3.0.456 687 2/21/2025
3.0.455 6,613 2/21/2025
3.0.454 14,429 2/19/2025
3.0.453 5,921 2/18/2025
3.0.452 1,289 2/18/2025
3.0.451 537 2/18/2025
3.0.450 7,087 2/18/2025
3.0.449 138 2/18/2025
3.0.448 16,766 2/14/2025
3.0.447 1,721 2/14/2025
3.0.446 4,824 2/13/2025
3.0.445 5,848 2/13/2025
3.0.444 6,576 2/12/2025
3.0.443 2,107 2/12/2025
3.0.442 912 2/12/2025
3.0.441 2,619 2/12/2025
3.0.440 904 2/12/2025
3.0.439 639 2/11/2025
3.0.438 9,783 2/11/2025
3.0.437 3,376 2/11/2025
3.0.436 542 2/11/2025
3.0.435 3,198 2/10/2025
3.0.434 150 2/10/2025
3.0.433 2,139 2/10/2025
3.0.432 156 2/10/2025
3.0.431 17,318 2/9/2025
3.0.430 9,818 2/9/2025
3.0.429 472 2/9/2025
3.0.428 329 2/8/2025
3.0.427 279 2/8/2025
3.0.426 337 2/8/2025
3.0.425 10,692 2/8/2025
3.0.424 3,443 2/7/2025
3.0.423 2,343 2/7/2025
3.0.422 2,904 2/7/2025
3.0.421 141 2/7/2025
3.0.420 474 2/7/2025
3.0.419 154 2/7/2025
3.0.418 2,411 2/7/2025
3.0.417 144 2/7/2025
3.0.416 17,928 2/7/2025
3.0.415 8,983 2/5/2025
3.0.414 1,048 2/5/2025
3.0.413 1,504 2/5/2025
3.0.412 335 2/5/2025
3.0.411 3,196 2/5/2025
3.0.410 6,807 2/5/2025
3.0.409 15,048 1/28/2025
3.0.408 1,079 1/28/2025
3.0.407 336 1/28/2025
3.0.406 3,485 1/28/2025
3.0.405 7,226 1/27/2025
3.0.404 1,956 1/27/2025
3.0.403 135 1/27/2025
3.0.402 7,095 1/27/2025
3.0.401 139 1/27/2025
3.0.400 7,862 1/26/2025
3.0.399 1,619 1/26/2025
3.0.398 1,241 1/26/2025
3.0.397 680 1/26/2025
3.0.396 312 1/26/2025
3.0.395 3,402 1/25/2025
3.0.394 7,600 1/25/2025
3.0.393 5,550 1/25/2025
3.0.392 608 1/25/2025
3.0.391 13,879 1/24/2025
3.0.390 2,614 1/24/2025
3.0.389 4,623 1/24/2025
3.0.388 5,208 1/24/2025
3.0.387 1,199 1/23/2025
3.0.386 1,480 1/23/2025
3.0.385 177 1/23/2025
3.0.384 12,355 1/22/2025
3.0.383 1,607 1/21/2025
3.0.382 477 1/21/2025
3.0.381 1,513 1/21/2025
3.0.380 1,525 1/21/2025
3.0.379 1,674 1/21/2025
3.0.378 1,258 1/21/2025
3.0.377 1,730 1/21/2025
3.0.376 151 1/21/2025
3.0.375 8,052 1/21/2025
3.0.374 2,216 1/21/2025
3.0.373 1,866 1/21/2025
3.0.372 3,480 1/21/2025
3.0.371 257 1/20/2025
3.0.370 8,907 1/20/2025
3.0.369 330 1/20/2025
3.0.368 1,861 1/20/2025
3.0.367 136 1/20/2025
3.0.366 1,613 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,561 1/19/2025
3.0.363 8,640 1/19/2025
3.0.362 8,350 1/19/2025
3.0.361 2,808 1/19/2025
3.0.360 840 1/19/2025
3.0.359 4,748 1/18/2025
3.0.358 189 1/18/2025
3.0.357 4,507 1/18/2025
3.0.356 313 1/18/2025
3.0.355 1,335 1/18/2025
3.0.354 8,299 1/17/2025
3.0.353 183 1/17/2025
3.0.352 10,836 1/16/2025
3.0.351 5,883 1/16/2025
3.0.350 1,027 1/16/2025
3.0.349 6,657 1/15/2025
3.0.348 5,831 1/15/2025
3.0.347 4,750 1/15/2025
3.0.346 5,164 1/15/2025
3.0.345 2,949 1/15/2025
3.0.344 4,070 1/15/2025
3.0.343 1,103 1/15/2025
3.0.342 3,356 1/14/2025
3.0.341 575 1/14/2025
3.0.340 171 1/14/2025
3.0.339 4,926 1/14/2025
3.0.338 1,298 1/14/2025
3.0.337 134 1/14/2025
3.0.336 1,435 1/14/2025
3.0.335 474 1/14/2025
3.0.334 9,647 1/13/2025
3.0.333 2,117 1/13/2025
3.0.332 4,002 1/13/2025
3.0.331 8,221 1/11/2025
3.0.330 3,388 1/11/2025
3.0.329 3,511 1/10/2025
3.0.328 7,180 1/10/2025
3.0.327 154 1/10/2025
3.0.326 706 1/10/2025
3.0.325 148 1/10/2025
3.0.324 147 1/10/2025
3.0.323 11,643 1/3/2025
3.0.322 1,310 1/3/2025
3.0.321 1,683 1/3/2025
3.0.320 520 1/3/2025
3.0.319 1,920 1/3/2025
3.0.318 4,248 1/2/2025
3.0.317 162 1/2/2025
3.0.316 2,942 1/2/2025
3.0.315 165 1/2/2025
3.0.314 3,998 1/2/2025
3.0.313 168 1/2/2025
3.0.312 12,644 1/1/2025
3.0.311 159 1/1/2025
3.0.310 227 12/31/2024
3.0.309 169 12/31/2024
3.0.308 4,673 12/31/2024
3.0.307 159 12/31/2024
3.0.306 251 12/31/2024
3.0.305 891 12/31/2024
3.0.304 162 12/31/2024
3.0.303 1,338 12/31/2024
3.0.302 509 12/31/2024
3.0.301 8,221 12/31/2024
3.0.300 5,951 12/31/2024
3.0.299 1,327 12/31/2024
3.0.298 4,204 12/31/2024
3.0.297 3,190 12/31/2024
3.0.296 148 12/31/2024
3.0.295 161 12/31/2024
3.0.294 14,973 12/28/2024
3.0.293 2,531 12/28/2024
3.0.292 1,458 12/28/2024
3.0.291 1,711 12/27/2024
3.0.290 10,937 12/24/2024
3.0.289 2,383 12/24/2024
3.0.288 2,224 12/24/2024
3.0.287 3,174 12/24/2024
3.0.286 3,369 12/24/2024
3.0.285 2,711 12/24/2024
3.0.284 2,167 12/24/2024
3.0.283 1,716 12/23/2024
3.0.282 3,807 12/23/2024
3.0.281 4,415 12/23/2024
3.0.280 1,728 12/23/2024
3.0.279 5,014 12/23/2024
3.0.278 417 12/23/2024
3.0.277 4,693 12/22/2024
3.0.276 7,389 12/22/2024
3.0.275 7,404 12/22/2024
3.0.274 10,013 12/21/2024
3.0.273 624 12/21/2024
3.0.272 4,880 12/21/2024
3.0.271 6,571 12/21/2024
3.0.270 1,321 12/21/2024
3.0.269 7,676 12/20/2024
3.0.268 14,906 12/18/2024
3.0.267 209 12/18/2024
3.0.266 9,112 12/17/2024
3.0.265 7,866 12/17/2024
3.0.264 508 12/16/2024
3.0.263 1,409 12/16/2024
3.0.262 10,256 12/10/2024
3.0.261 2,933 12/9/2024
3.0.260 4,752 12/9/2024
3.0.259 3,295 12/9/2024
3.0.258 9,070 12/6/2024
3.0.257 1,699 12/6/2024
3.0.256 3,007 12/6/2024
3.0.255 9,145 12/6/2024
3.0.254 251 12/6/2024
3.0.253 435 12/6/2024
3.0.252 1,215 12/6/2024
3.0.251 7,318 12/6/2024
3.0.250 179 12/6/2024
3.0.249 155 12/6/2024
3.0.248 5,726 12/5/2024
3.0.247 5,729 12/5/2024
3.0.246 4,242 12/5/2024
3.0.245 5,225 12/5/2024
3.0.244 779 12/5/2024
3.0.243 636 12/5/2024
3.0.242 6,574 12/4/2024
3.0.241 599 12/4/2024
3.0.240 1,454 12/4/2024
3.0.239 4,436 12/4/2024
3.0.238 4,911 12/3/2024
3.0.237 3,634 12/3/2024
3.0.236 4,244 12/3/2024
3.0.235 4,414 12/3/2024
3.0.234 6,083 12/2/2024
3.0.233 5,073 12/2/2024
3.0.232 3,043 12/2/2024
3.0.231 585 12/2/2024
3.0.230 5,495 12/1/2024
3.0.229 1,088 12/1/2024
3.0.228 4,068 12/1/2024
3.0.227 5,233 12/1/2024
3.0.226 5,525 11/29/2024
3.0.225 9,441 11/21/2024
3.0.224 7,908 11/20/2024
3.0.223 823 11/20/2024
3.0.222 1,425 11/20/2024
3.0.221 724 11/19/2024
3.0.220 6,931 11/19/2024
3.0.219 2,832 11/19/2024
3.0.218 150 11/19/2024
3.0.217 4,702 11/19/2024
3.0.216 142 11/19/2024
3.0.215 13,498 11/14/2024
3.0.214 1,490 11/14/2024
3.0.213 5,147 11/14/2024
3.0.212 1,235 11/14/2024
3.0.211 733 11/14/2024
3.0.210 5,501 11/14/2024
3.0.209 149 11/14/2024
3.0.208 4,545 11/14/2024
3.0.207 257 11/14/2024
2.1.206 15,603 11/13/2024
2.1.205 6,228 11/13/2024
2.1.204 15,090 11/9/2024
2.1.203 1,029 11/9/2024
2.1.202 2,751 11/9/2024
2.1.201 1,564 11/8/2024
2.1.200 1,276 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,375 11/8/2024
2.1.197 337 11/8/2024
2.1.196 5,712 11/8/2024
2.1.195 7,534 11/8/2024
2.1.194 16,918 11/1/2024
2.1.192 12,060 10/29/2024
2.1.191 12,960 10/28/2024
2.1.190 8,164 10/26/2024
2.1.189 13,563 10/22/2024
2.1.188 1,799 10/22/2024
2.1.187 1,321 10/22/2024
2.1.186 10,798 10/17/2024
2.1.185 7,842 10/15/2024
2.1.184 3,006 10/14/2024
2.1.183 8,622 10/11/2024
2.1.182 1,121 10/11/2024
2.1.181 716 10/11/2024
2.1.180 14,040 10/9/2024
2.1.179 1,111 10/8/2024
2.1.178 6,964 10/8/2024
2.1.177 1,053 10/8/2024
2.1.176 16,044 10/3/2024
2.1.175 4,763 10/3/2024
2.1.174 11,639 10/2/2024
2.1.173 3,550 10/2/2024
2.1.172 8,486 10/1/2024
2.1.171 2,172 10/1/2024
2.1.170 3,448 10/1/2024
2.1.169 9,834 9/29/2024
2.1.168 2,805 9/29/2024
2.1.167 2,069 9/29/2024
2.1.166 11,863 9/27/2024
2.1.165 6,636 9/27/2024
2.1.164 147 9/27/2024
2.1.163 396 9/27/2024
2.1.162 150 9/27/2024
2.1.161 9,986 9/26/2024
2.1.160 9,524 9/26/2024
2.1.159 8,831 9/26/2024
2.1.158 9,009 9/23/2024
2.1.157 4,131 9/23/2024
2.1.156 2,419 9/23/2024
2.1.155 2,471 9/23/2024
2.1.154 8,331 9/23/2024
2.1.153 967 9/23/2024
2.1.152 1,134 9/23/2024
2.1.151 139 9/23/2024
2.1.150 2,839 9/23/2024
2.1.149 15,338 9/17/2024
2.1.148 149 9/17/2024
2.1.147 523 9/17/2024
2.1.146 5,931 9/17/2024
2.1.145 5,139 9/17/2024
2.1.144 6,879 9/17/2024
2.1.143 159 9/17/2024
2.1.142 639 9/17/2024
2.1.141 1,457 9/17/2024
2.1.140 16,529 9/16/2024
2.1.139 9,311 9/12/2024
2.1.138 6,424 9/11/2024
2.1.137 3,757 9/11/2024
2.1.136 7,271 9/11/2024
2.1.135 5,871 9/11/2024
2.1.134 13,671 9/10/2024
2.1.133 2,844 9/10/2024
2.1.132 4,507 9/9/2024
2.1.131 4,797 9/9/2024
2.1.130 3,049 9/9/2024
2.1.129 1,515 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 20,593 9/6/2024
2.1.124 8,160 9/6/2024
2.1.123 4,202 9/5/2024
2.1.122 2,489 9/5/2024
2.1.121 5,117 9/5/2024
2.1.120 2,689 9/5/2024
2.1.119 156 9/5/2024
2.1.118 2,044 9/5/2024
2.1.117 7,369 9/5/2024
2.1.116 1,695 9/4/2024
2.1.115 15,143 9/3/2024
2.1.114 1,451 9/3/2024
2.1.113 6,250 9/3/2024
2.1.112 12,060 8/29/2024
2.1.111 8,504 8/26/2024
2.1.110 8,425 8/21/2024
2.1.109 4,801 8/21/2024
2.1.108 544 8/20/2024
2.1.107 6,058 8/20/2024
2.1.106 158 8/20/2024
2.1.105 6,077 8/20/2024
2.1.104 3,628 8/20/2024
2.1.103 11,538 8/15/2024
2.1.102 10,279 8/13/2024
2.1.101 9,684 8/6/2024
2.1.100 11,781 8/1/2024
2.1.99 731 8/1/2024
2.1.98 11,207 7/25/2024
2.1.97 1,382 7/25/2024
2.1.96 1,237 7/25/2024
2.1.95 832 7/24/2024
2.1.94 299 7/24/2024
2.1.93 12,364 7/20/2024
2.1.92 10,283 7/14/2024
2.1.91 2,837 7/14/2024
2.1.90 8,722 7/10/2024
2.1.89 304 7/10/2024
2.1.88 2,640 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,866 7/9/2024
2.1.80 1,054 7/9/2024
2.1.79 1,387 7/9/2024
2.1.78 9,637 7/9/2024
2.1.77 4,011 7/9/2024
2.1.76 15,225 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,076 7/8/2024
2.1.71 147 7/8/2024
2.1.70 8,835 7/8/2024
2.1.69 2,899 7/7/2024
2.1.68 3,328 7/7/2024
2.1.67 834 7/7/2024
2.1.66 1,723 7/7/2024
2.1.65 3,824 7/7/2024
2.1.64 3,407 7/7/2024
2.1.63 157 7/7/2024
2.1.62 4,673 7/5/2024
2.1.61 93,278 5/25/2024
2.1.60 162 5/25/2024
2.1.59 656 5/25/2024
2.1.58 17,812 5/22/2024
2.1.57 158 5/22/2024
2.1.56 14,490 5/17/2024
2.1.55 20,537 4/30/2024
2.1.54 20,256 4/28/2024
2.1.53 165 4/28/2024
2.1.52 867 4/27/2024
2.1.51 156 4/27/2024
2.1.50 31,534 4/12/2024
2.1.49 1,679 4/12/2024
2.1.48 174 4/12/2024
2.1.47 48,471 3/18/2024
2.1.46 10,934 3/13/2024
2.1.45 2,821 3/13/2024
2.1.44 75,501 2/21/2024
2.1.43 3,312 2/21/2024
2.1.42 163 2/21/2024
2.1.41 26,360 2/16/2024
2.1.40 790 2/16/2024
2.1.39 29,066 2/9/2024
2.1.38 22,593 2/6/2024
2.1.37 173 2/6/2024
2.1.36 75,049 1/15/2024
2.1.35 1,041 1/15/2024
2.1.34 30,476 1/5/2024
2.1.33 2,885 1/5/2024
2.1.32 15,539 12/27/2023
2.1.31 1,566 12/27/2023
2.1.30 1,275 12/27/2023
2.1.29 9,202 12/25/2023
2.1.28 1,682 12/25/2023
2.1.27 792 12/25/2023
2.1.26 12,378 12/23/2023
2.1.25 194 12/23/2023
2.1.24 914 12/23/2023
2.1.23 24,114 12/9/2023
2.1.22 1,518 12/9/2023
2.1.21 296 12/9/2023
2.1.20 2,302 12/9/2023
2.1.19 12,679 12/4/2023
2.1.18 964 12/4/2023
2.1.17 6,537 11/26/2023
2.1.16 6,236 11/23/2023
2.1.15 425 11/23/2023
2.1.14 1,129 11/23/2023
2.1.13 11,025 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,390 11/18/2023
2.1.10 3,958 11/18/2023
2.1.9 2,181 11/18/2023
2.1.8 4,234 11/17/2023
2.1.7 1,151 11/17/2023
2.1.6 2,030 11/17/2023
2.1.5 1,044 11/17/2023
2.1.4 779 11/16/2023
2.1.3 221 11/16/2023
2.0.52 1,451 11/15/2023
2.0.51 2,849 11/15/2023
2.0.2 168 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,622 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,468 11/9/2023
1.0.46 173 11/9/2023
1.0.45 5,904 11/6/2023
1.0.44 2,472 11/3/2023
1.0.43 1,984 11/2/2023
1.0.42 2,198 11/1/2023
1.0.41 8,469 10/18/2023
1.0.40 3,307 10/17/2023
1.0.39 1,406 10/16/2023
1.0.38 2,968 10/13/2023
1.0.37 205 10/13/2023
1.0.36 6,868 9/19/2023
1.0.35 2,321 9/18/2023
1.0.34 178 9/18/2023
1.0.33 8,502 8/30/2023
1.0.32 2,992 8/29/2023
1.0.31 4,618 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,581 8/17/2023
1.0.28 234 8/17/2023
1.0.27 8,397 8/7/2023
1.0.26 233 8/7/2023
1.0.25 8,325 7/10/2023
1.0.24 12,452 7/7/2023
1.0.23 230 7/7/2023
1.0.22 10,265 6/28/2023
1.0.21 48,231 5/24/2023
1.0.20 1,286 5/24/2023
1.0.19 483 5/23/2023
1.0.18 262 5/31/2023
1.0.17 2,976 5/23/2023
1.0.16 3,068 5/22/2023
1.0.15 6,538 5/17/2023
1.0.14 251 5/17/2023
1.0.13 6,045 4/28/2023
1.0.12 2,414 4/24/2023
1.0.11 1,065 4/21/2023
1.0.10 4,936 4/12/2023
1.0.9 1,205 4/11/2023
1.0.8 2,291 4/3/2023
1.0.7 303 4/3/2023
1.0.6 438 4/1/2023
1.0.5 2,144 3/23/2023
1.0.3 623 2/28/2023
1.0.2 530 2/16/2023