Soenneker.Extensions.Enumerable 3.0.503

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.503
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.503
                    
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.503" />
                    
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.503" />
                    
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.503
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.503"
                    
#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.
#addin nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.503
                    
Install Soenneker.Extensions.Enumerable as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.503
                    
Install Soenneker.Extensions.Enumerable 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.Utils.Process

A utility library implementing useful process operations

Soenneker.Swashbuckle.Authentication

A middleware implementing basic authentication and RBAC support for Swashbuckle (Swagger)

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.554 5,192 6/10/2025
3.0.553 19,025 5/27/2025
3.0.552 1,347 5/27/2025
3.0.551 1,110 5/27/2025
3.0.550 19,435 5/23/2025
3.0.549 2,141 5/23/2025
3.0.548 2,146 5/22/2025
3.0.547 18,360 5/14/2025
3.0.546 11,464 5/8/2025
3.0.545 1,722 5/7/2025
3.0.544 232 5/7/2025
3.0.543 16,503 5/5/2025
3.0.542 1,818 5/5/2025
3.0.541 3,335 5/5/2025
3.0.540 133 5/5/2025
3.0.539 23,439 4/8/2025
3.0.538 2,447 4/8/2025
3.0.537 525 4/8/2025
3.0.536 2,562 4/8/2025
3.0.535 155 4/8/2025
3.0.534 3,923 4/8/2025
3.0.533 638 4/8/2025
3.0.532 6,164 4/8/2025
3.0.531 7,306 4/8/2025
3.0.530 1,607 4/7/2025
3.0.529 3,660 4/7/2025
3.0.528 1,255 4/7/2025
3.0.527 3,066 4/7/2025
3.0.526 8,143 4/7/2025
3.0.525 2,397 4/7/2025
3.0.524 607 4/7/2025
3.0.523 9,270 4/7/2025
3.0.522 1,900 4/7/2025
3.0.521 3,275 4/6/2025
3.0.520 232 4/6/2025
3.0.519 1,487 4/6/2025
3.0.518 1,863 4/6/2025
3.0.517 2,217 4/6/2025
3.0.516 104 4/6/2025
3.0.515 374 4/6/2025
3.0.514 107 4/6/2025
3.0.513 478 4/5/2025
3.0.512 3,102 4/5/2025
3.0.511 1,448 4/5/2025
3.0.510 1,105 4/5/2025
3.0.509 158 4/5/2025
3.0.508 210 4/5/2025
3.0.507 259 4/5/2025
3.0.506 2,879 4/4/2025
3.0.505 120 4/4/2025
3.0.504 3,004 4/4/2025
3.0.503 37,219 4/4/2025
3.0.502 8,244 4/1/2025
3.0.501 4,522 4/1/2025
3.0.500 6,412 3/31/2025
3.0.499 2,821 3/31/2025
3.0.498 6,493 3/31/2025
3.0.497 7,819 3/29/2025
3.0.496 2,065 3/29/2025
3.0.495 6,480 3/27/2025
3.0.494 4,356 3/25/2025
3.0.493 1,739 3/25/2025
3.0.492 10,553 3/21/2025
3.0.491 10,737 3/18/2025
3.0.490 4,915 3/18/2025
3.0.489 7,341 3/15/2025
3.0.488 2,265 3/15/2025
3.0.487 8,338 3/12/2025
3.0.486 3,126 3/12/2025
3.0.485 500 3/12/2025
3.0.484 3,126 3/11/2025
3.0.483 378 3/11/2025
3.0.482 1,268 3/11/2025
3.0.481 2,334 3/11/2025
3.0.480 3,479 3/11/2025
3.0.479 3,184 3/11/2025
3.0.478 2,003 3/11/2025
3.0.477 12,304 3/7/2025
3.0.476 3,657 3/7/2025
3.0.475 7,406 3/2/2025
3.0.474 2,696 3/2/2025
3.0.473 665 3/2/2025
3.0.472 5,150 3/2/2025
3.0.471 4,711 3/1/2025
3.0.470 225 3/1/2025
3.0.469 4,469 3/1/2025
3.0.468 95 3/1/2025
3.0.467 1,644 3/1/2025
3.0.466 12,703 2/26/2025
3.0.465 1,112 2/25/2025
3.0.464 3,082 2/25/2025
3.0.463 2,006 2/25/2025
3.0.462 1,017 2/25/2025
3.0.461 11,637 2/23/2025
3.0.460 2,083 2/22/2025
3.0.459 9,266 2/22/2025
3.0.458 2,679 2/22/2025
3.0.457 3,249 2/22/2025
3.0.456 520 2/21/2025
3.0.455 5,225 2/21/2025
3.0.454 11,533 2/19/2025
3.0.453 4,834 2/18/2025
3.0.452 1,046 2/18/2025
3.0.451 419 2/18/2025
3.0.450 5,704 2/18/2025
3.0.449 100 2/18/2025
3.0.448 12,288 2/14/2025
3.0.447 1,373 2/14/2025
3.0.446 3,826 2/13/2025
3.0.445 4,697 2/13/2025
3.0.444 5,321 2/12/2025
3.0.443 1,674 2/12/2025
3.0.442 732 2/12/2025
3.0.441 2,116 2/12/2025
3.0.440 732 2/12/2025
3.0.439 500 2/11/2025
3.0.438 7,844 2/11/2025
3.0.437 2,652 2/11/2025
3.0.436 443 2/11/2025
3.0.435 2,588 2/10/2025
3.0.434 111 2/10/2025
3.0.433 1,747 2/10/2025
3.0.432 113 2/10/2025
3.0.431 13,764 2/9/2025
3.0.430 7,969 2/9/2025
3.0.429 353 2/9/2025
3.0.428 264 2/8/2025
3.0.427 211 2/8/2025
3.0.426 268 2/8/2025
3.0.425 8,281 2/8/2025
3.0.424 2,713 2/7/2025
3.0.423 1,920 2/7/2025
3.0.422 2,452 2/7/2025
3.0.421 102 2/7/2025
3.0.420 400 2/7/2025
3.0.419 106 2/7/2025
3.0.418 1,966 2/7/2025
3.0.417 105 2/7/2025
3.0.416 14,568 2/7/2025
3.0.415 7,151 2/5/2025
3.0.414 835 2/5/2025
3.0.413 1,161 2/5/2025
3.0.412 249 2/5/2025
3.0.411 2,533 2/5/2025
3.0.410 5,353 2/5/2025
3.0.409 12,277 1/28/2025
3.0.408 837 1/28/2025
3.0.407 259 1/28/2025
3.0.406 2,637 1/28/2025
3.0.405 5,499 1/27/2025
3.0.404 1,557 1/27/2025
3.0.403 94 1/27/2025
3.0.402 5,362 1/27/2025
3.0.401 94 1/27/2025
3.0.400 6,136 1/26/2025
3.0.399 1,290 1/26/2025
3.0.398 982 1/26/2025
3.0.397 533 1/26/2025
3.0.396 252 1/26/2025
3.0.395 2,730 1/25/2025
3.0.394 5,890 1/25/2025
3.0.393 4,287 1/25/2025
3.0.392 437 1/25/2025
3.0.391 10,773 1/24/2025
3.0.390 1,972 1/24/2025
3.0.389 3,479 1/24/2025
3.0.388 4,072 1/24/2025
3.0.387 934 1/23/2025
3.0.386 1,157 1/23/2025
3.0.385 144 1/23/2025
3.0.384 9,587 1/22/2025
3.0.383 1,234 1/21/2025
3.0.382 371 1/21/2025
3.0.381 1,193 1/21/2025
3.0.380 1,157 1/21/2025
3.0.379 1,333 1/21/2025
3.0.378 1,022 1/21/2025
3.0.377 1,359 1/21/2025
3.0.376 106 1/21/2025
3.0.375 6,180 1/21/2025
3.0.374 1,752 1/21/2025
3.0.373 1,507 1/21/2025
3.0.372 2,639 1/21/2025
3.0.371 187 1/20/2025
3.0.370 6,948 1/20/2025
3.0.369 255 1/20/2025
3.0.368 1,441 1/20/2025
3.0.367 100 1/20/2025
3.0.366 1,369 1/20/2025
3.0.365 112 1/20/2025
3.0.364 4,241 1/19/2025
3.0.363 6,623 1/19/2025
3.0.362 6,420 1/19/2025
3.0.361 2,180 1/19/2025
3.0.360 628 1/19/2025
3.0.359 3,629 1/18/2025
3.0.358 136 1/18/2025
3.0.357 3,545 1/18/2025
3.0.356 272 1/18/2025
3.0.355 1,012 1/18/2025
3.0.354 6,383 1/17/2025
3.0.353 134 1/17/2025
3.0.352 8,284 1/16/2025
3.0.351 4,561 1/16/2025
3.0.350 842 1/16/2025
3.0.349 5,142 1/15/2025
3.0.348 4,407 1/15/2025
3.0.347 3,723 1/15/2025
3.0.346 3,924 1/15/2025
3.0.345 2,301 1/15/2025
3.0.344 3,052 1/15/2025
3.0.343 801 1/15/2025
3.0.342 2,452 1/14/2025
3.0.341 418 1/14/2025
3.0.340 130 1/14/2025
3.0.339 3,469 1/14/2025
3.0.338 944 1/14/2025
3.0.337 84 1/14/2025
3.0.336 1,238 1/14/2025
3.0.335 353 1/14/2025
3.0.334 7,116 1/13/2025
3.0.333 1,583 1/13/2025
3.0.332 3,009 1/13/2025
3.0.331 6,077 1/11/2025
3.0.330 2,518 1/11/2025
3.0.329 2,779 1/10/2025
3.0.328 5,568 1/10/2025
3.0.327 116 1/10/2025
3.0.326 508 1/10/2025
3.0.325 105 1/10/2025
3.0.324 111 1/10/2025
3.0.323 8,982 1/3/2025
3.0.322 1,030 1/3/2025
3.0.321 1,310 1/3/2025
3.0.320 408 1/3/2025
3.0.319 1,480 1/3/2025
3.0.318 3,302 1/2/2025
3.0.317 120 1/2/2025
3.0.316 2,277 1/2/2025
3.0.315 122 1/2/2025
3.0.314 3,041 1/2/2025
3.0.313 122 1/2/2025
3.0.312 9,876 1/1/2025
3.0.311 119 1/1/2025
3.0.310 167 12/31/2024
3.0.309 126 12/31/2024
3.0.308 3,570 12/31/2024
3.0.307 117 12/31/2024
3.0.306 192 12/31/2024
3.0.305 687 12/31/2024
3.0.304 121 12/31/2024
3.0.303 1,078 12/31/2024
3.0.302 393 12/31/2024
3.0.301 6,425 12/31/2024
3.0.300 4,524 12/31/2024
3.0.299 1,040 12/31/2024
3.0.298 3,282 12/31/2024
3.0.297 2,494 12/31/2024
3.0.296 115 12/31/2024
3.0.295 119 12/31/2024
3.0.294 11,582 12/28/2024
3.0.293 1,953 12/28/2024
3.0.292 1,115 12/28/2024
3.0.291 1,344 12/27/2024
3.0.290 8,480 12/24/2024
3.0.289 1,841 12/24/2024
3.0.288 1,793 12/24/2024
3.0.287 2,517 12/24/2024
3.0.286 2,698 12/24/2024
3.0.285 2,135 12/24/2024
3.0.284 1,761 12/24/2024
3.0.283 1,396 12/23/2024
3.0.282 2,945 12/23/2024
3.0.281 3,379 12/23/2024
3.0.280 1,333 12/23/2024
3.0.279 3,793 12/23/2024
3.0.278 304 12/23/2024
3.0.277 3,622 12/22/2024
3.0.276 5,740 12/22/2024
3.0.275 5,765 12/22/2024
3.0.274 7,796 12/21/2024
3.0.273 458 12/21/2024
3.0.272 3,826 12/21/2024
3.0.271 4,957 12/21/2024
3.0.270 1,073 12/21/2024
3.0.269 5,925 12/20/2024
3.0.268 11,587 12/18/2024
3.0.267 161 12/18/2024
3.0.266 7,582 12/17/2024
3.0.265 6,141 12/17/2024
3.0.264 379 12/16/2024
3.0.263 1,123 12/16/2024
3.0.262 8,158 12/10/2024
3.0.261 2,270 12/9/2024
3.0.260 3,705 12/9/2024
3.0.259 2,519 12/9/2024
3.0.258 7,022 12/6/2024
3.0.257 1,331 12/6/2024
3.0.256 2,313 12/6/2024
3.0.255 7,144 12/6/2024
3.0.254 208 12/6/2024
3.0.253 343 12/6/2024
3.0.252 1,009 12/6/2024
3.0.251 5,666 12/6/2024
3.0.250 135 12/6/2024
3.0.249 129 12/6/2024
3.0.248 4,497 12/5/2024
3.0.247 4,496 12/5/2024
3.0.246 3,436 12/5/2024
3.0.245 4,094 12/5/2024
3.0.244 598 12/5/2024
3.0.243 519 12/5/2024
3.0.242 5,192 12/4/2024
3.0.241 481 12/4/2024
3.0.240 1,132 12/4/2024
3.0.239 3,613 12/4/2024
3.0.238 3,812 12/3/2024
3.0.237 2,861 12/3/2024
3.0.236 3,628 12/3/2024
3.0.235 3,424 12/3/2024
3.0.234 4,734 12/2/2024
3.0.233 3,894 12/2/2024
3.0.232 2,388 12/2/2024
3.0.231 437 12/2/2024
3.0.230 4,316 12/1/2024
3.0.229 711 12/1/2024
3.0.228 3,162 12/1/2024
3.0.227 4,094 12/1/2024
3.0.226 4,302 11/29/2024
3.0.225 7,433 11/21/2024
3.0.224 6,216 11/20/2024
3.0.223 675 11/20/2024
3.0.222 1,155 11/20/2024
3.0.221 578 11/19/2024
3.0.220 5,685 11/19/2024
3.0.219 2,326 11/19/2024
3.0.218 105 11/19/2024
3.0.217 3,833 11/19/2024
3.0.216 93 11/19/2024
3.0.215 10,612 11/14/2024
3.0.214 1,178 11/14/2024
3.0.213 4,109 11/14/2024
3.0.212 983 11/14/2024
3.0.211 578 11/14/2024
3.0.210 4,352 11/14/2024
3.0.209 111 11/14/2024
3.0.208 3,453 11/14/2024
3.0.207 201 11/14/2024
2.1.206 12,418 11/13/2024
2.1.205 4,974 11/13/2024
2.1.204 12,136 11/9/2024
2.1.203 857 11/9/2024
2.1.202 2,173 11/9/2024
2.1.201 1,281 11/8/2024
2.1.200 1,088 11/8/2024
2.1.199 110 11/8/2024
2.1.198 1,911 11/8/2024
2.1.197 262 11/8/2024
2.1.196 4,637 11/8/2024
2.1.195 6,048 11/8/2024
2.1.194 13,341 11/1/2024
2.1.192 9,660 10/29/2024
2.1.191 10,398 10/28/2024
2.1.190 6,615 10/26/2024
2.1.189 11,394 10/22/2024
2.1.188 1,494 10/22/2024
2.1.187 1,067 10/22/2024
2.1.186 8,556 10/17/2024
2.1.185 6,217 10/15/2024
2.1.184 2,367 10/14/2024
2.1.183 6,886 10/11/2024
2.1.182 956 10/11/2024
2.1.181 566 10/11/2024
2.1.180 11,030 10/9/2024
2.1.179 922 10/8/2024
2.1.178 5,531 10/8/2024
2.1.177 854 10/8/2024
2.1.176 12,326 10/3/2024
2.1.175 3,742 10/3/2024
2.1.174 9,093 10/2/2024
2.1.173 2,727 10/2/2024
2.1.172 6,669 10/1/2024
2.1.171 1,803 10/1/2024
2.1.170 2,747 10/1/2024
2.1.169 7,725 9/29/2024
2.1.168 2,226 9/29/2024
2.1.167 1,634 9/29/2024
2.1.166 9,500 9/27/2024
2.1.165 5,295 9/27/2024
2.1.164 104 9/27/2024
2.1.163 303 9/27/2024
2.1.162 104 9/27/2024
2.1.161 7,943 9/26/2024
2.1.160 7,592 9/26/2024
2.1.159 6,986 9/26/2024
2.1.158 7,173 9/23/2024
2.1.157 3,299 9/23/2024
2.1.156 1,944 9/23/2024
2.1.155 2,034 9/23/2024
2.1.154 6,562 9/23/2024
2.1.153 739 9/23/2024
2.1.152 890 9/23/2024
2.1.151 99 9/23/2024
2.1.150 2,378 9/23/2024
2.1.149 11,984 9/17/2024
2.1.148 106 9/17/2024
2.1.147 425 9/17/2024
2.1.146 4,841 9/17/2024
2.1.145 4,204 9/17/2024
2.1.144 5,499 9/17/2024
2.1.143 113 9/17/2024
2.1.142 530 9/17/2024
2.1.141 1,249 9/17/2024
2.1.140 13,412 9/16/2024
2.1.139 7,594 9/12/2024
2.1.138 5,152 9/11/2024
2.1.137 3,098 9/11/2024
2.1.136 5,988 9/11/2024
2.1.135 4,934 9/11/2024
2.1.134 11,200 9/10/2024
2.1.133 2,355 9/10/2024
2.1.132 3,751 9/9/2024
2.1.131 4,133 9/9/2024
2.1.130 2,623 9/9/2024
2.1.129 1,250 9/9/2024
2.1.128 106 9/9/2024
2.1.127 115 9/9/2024
2.1.126 102 9/9/2024
2.1.125 16,846 9/6/2024
2.1.124 6,576 9/6/2024
2.1.123 3,402 9/5/2024
2.1.122 2,048 9/5/2024
2.1.121 4,144 9/5/2024
2.1.120 2,247 9/5/2024
2.1.119 105 9/5/2024
2.1.118 1,646 9/5/2024
2.1.117 5,909 9/5/2024
2.1.116 1,413 9/4/2024
2.1.115 12,122 9/3/2024
2.1.114 1,214 9/3/2024
2.1.113 4,954 9/3/2024
2.1.112 9,582 8/29/2024
2.1.111 6,771 8/26/2024
2.1.110 6,736 8/21/2024
2.1.109 3,829 8/21/2024
2.1.108 448 8/20/2024
2.1.107 4,752 8/20/2024
2.1.106 114 8/20/2024
2.1.105 4,830 8/20/2024
2.1.104 2,945 8/20/2024
2.1.103 9,108 8/15/2024
2.1.102 8,226 8/13/2024
2.1.101 7,899 8/6/2024
2.1.100 9,218 8/1/2024
2.1.99 575 8/1/2024
2.1.98 8,709 7/25/2024
2.1.97 1,070 7/25/2024
2.1.96 995 7/25/2024
2.1.95 648 7/24/2024
2.1.94 220 7/24/2024
2.1.93 9,701 7/20/2024
2.1.92 8,263 7/14/2024
2.1.91 2,258 7/14/2024
2.1.90 6,851 7/10/2024
2.1.89 239 7/10/2024
2.1.88 2,178 7/10/2024
2.1.87 2,058 7/10/2024
2.1.86 231 7/10/2024
2.1.85 239 7/10/2024
2.1.83 2,136 7/10/2024
2.1.82 3,243 7/9/2024
2.1.80 850 7/9/2024
2.1.79 1,265 7/9/2024
2.1.78 7,735 7/9/2024
2.1.77 3,079 7/9/2024
2.1.76 12,003 7/9/2024
2.1.75 124 7/9/2024
2.1.74 140 7/8/2024
2.1.73 122 7/8/2024
2.1.72 2,524 7/8/2024
2.1.71 108 7/8/2024
2.1.70 6,967 7/8/2024
2.1.69 2,293 7/7/2024
2.1.68 2,595 7/7/2024
2.1.67 687 7/7/2024
2.1.66 1,341 7/7/2024
2.1.65 3,066 7/7/2024
2.1.64 2,731 7/7/2024
2.1.63 119 7/7/2024
2.1.62 3,644 7/5/2024
2.1.61 73,292 5/25/2024
2.1.60 118 5/25/2024
2.1.59 534 5/25/2024
2.1.58 14,013 5/22/2024
2.1.57 122 5/22/2024
2.1.56 11,503 5/17/2024
2.1.55 15,956 4/30/2024
2.1.54 15,963 4/28/2024
2.1.53 123 4/28/2024
2.1.52 684 4/27/2024
2.1.51 113 4/27/2024
2.1.50 25,088 4/12/2024
2.1.49 1,363 4/12/2024
2.1.48 128 4/12/2024
2.1.47 39,097 3/18/2024
2.1.46 8,794 3/13/2024
2.1.45 2,291 3/13/2024
2.1.44 61,283 2/21/2024
2.1.43 2,752 2/21/2024
2.1.42 126 2/21/2024
2.1.41 21,866 2/16/2024
2.1.40 656 2/16/2024
2.1.39 23,949 2/9/2024
2.1.38 18,977 2/6/2024
2.1.37 131 2/6/2024
2.1.36 62,846 1/15/2024
2.1.35 847 1/15/2024
2.1.34 26,180 1/5/2024
2.1.33 2,462 1/5/2024
2.1.32 13,392 12/27/2023
2.1.31 1,345 12/27/2023
2.1.30 1,099 12/27/2023
2.1.29 7,874 12/25/2023
2.1.28 1,404 12/25/2023
2.1.27 696 12/25/2023
2.1.26 10,576 12/23/2023
2.1.25 145 12/23/2023
2.1.24 821 12/23/2023
2.1.23 20,772 12/9/2023
2.1.22 1,351 12/9/2023
2.1.21 258 12/9/2023
2.1.20 1,936 12/9/2023
2.1.19 10,869 12/4/2023
2.1.18 832 12/4/2023
2.1.17 5,460 11/26/2023
2.1.16 5,412 11/23/2023
2.1.15 346 11/23/2023
2.1.14 959 11/23/2023
2.1.13 9,457 11/19/2023
2.1.12 142 11/19/2023
2.1.11 1,204 11/18/2023
2.1.10 3,421 11/18/2023
2.1.9 1,951 11/18/2023
2.1.8 3,687 11/17/2023
2.1.7 1,083 11/17/2023
2.1.6 1,715 11/17/2023
2.1.5 881 11/17/2023
2.1.4 655 11/16/2023
2.1.3 187 11/16/2023
2.0.52 1,251 11/15/2023
2.0.51 2,142 11/15/2023
2.0.2 138 11/16/2023
2.0.1 146 11/16/2023
1.0.50 4,118 11/11/2023
1.0.49 126 11/11/2023
1.0.48 112 11/11/2023
1.0.47 1,341 11/9/2023
1.0.46 132 11/9/2023
1.0.45 5,236 11/6/2023
1.0.44 2,238 11/3/2023
1.0.43 1,818 11/2/2023
1.0.42 1,894 11/1/2023
1.0.41 7,532 10/18/2023
1.0.40 3,015 10/17/2023
1.0.39 1,244 10/16/2023
1.0.38 2,689 10/13/2023
1.0.37 163 10/13/2023
1.0.36 6,172 9/19/2023
1.0.35 2,065 9/18/2023
1.0.34 136 9/18/2023
1.0.33 7,702 8/30/2023
1.0.32 2,715 8/29/2023
1.0.31 4,176 8/24/2023
1.0.30 149 8/24/2023
1.0.29 4,352 8/17/2023
1.0.28 174 8/17/2023
1.0.27 8,044 8/7/2023
1.0.26 174 8/7/2023
1.0.25 7,990 7/10/2023
1.0.24 10,390 7/7/2023
1.0.23 170 7/7/2023
1.0.22 9,340 6/28/2023
1.0.21 44,569 5/24/2023
1.0.20 1,141 5/24/2023
1.0.19 421 5/23/2023
1.0.18 201 5/31/2023
1.0.17 2,759 5/23/2023
1.0.16 2,951 5/22/2023
1.0.15 5,978 5/17/2023
1.0.14 191 5/17/2023
1.0.13 5,614 4/28/2023
1.0.12 2,224 4/24/2023
1.0.11 976 4/21/2023
1.0.10 4,497 4/12/2023
1.0.9 1,080 4/11/2023
1.0.8 2,039 4/3/2023
1.0.7 244 4/3/2023
1.0.6 379 4/1/2023
1.0.5 2,052 3/23/2023
1.0.3 556 2/28/2023
1.0.2 462 2/16/2023