Soenneker.Extensions.Enumerable 1.0.6

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

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.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.550 261 5/23/2025
3.0.549 424 5/23/2025
3.0.548 839 5/22/2025
3.0.547 13,273 5/14/2025
3.0.546 11,154 5/8/2025
3.0.545 1,715 5/7/2025
3.0.544 225 5/7/2025
3.0.543 16,202 5/5/2025
3.0.542 1,809 5/5/2025
3.0.541 3,326 5/5/2025
3.0.540 126 5/5/2025
3.0.539 23,392 4/8/2025
3.0.538 2,441 4/8/2025
3.0.537 520 4/8/2025
3.0.536 2,555 4/8/2025
3.0.535 149 4/8/2025
3.0.534 3,916 4/8/2025
3.0.533 633 4/8/2025
3.0.532 6,159 4/8/2025
3.0.531 7,300 4/8/2025
3.0.530 1,602 4/7/2025
3.0.529 3,654 4/7/2025
3.0.528 1,250 4/7/2025
3.0.527 3,061 4/7/2025
3.0.526 8,136 4/7/2025
3.0.525 2,392 4/7/2025
3.0.524 602 4/7/2025
3.0.523 9,261 4/7/2025
3.0.522 1,894 4/7/2025
3.0.521 3,269 4/6/2025
3.0.520 227 4/6/2025
3.0.519 1,480 4/6/2025
3.0.518 1,856 4/6/2025
3.0.517 2,212 4/6/2025
3.0.516 99 4/6/2025
3.0.515 369 4/6/2025
3.0.514 101 4/6/2025
3.0.513 473 4/5/2025
3.0.512 3,095 4/5/2025
3.0.511 1,443 4/5/2025
3.0.510 1,100 4/5/2025
3.0.509 153 4/5/2025
3.0.508 205 4/5/2025
3.0.507 254 4/5/2025
3.0.506 2,874 4/4/2025
3.0.505 115 4/4/2025
3.0.504 2,997 4/4/2025
3.0.503 37,209 4/4/2025
3.0.502 8,239 4/1/2025
3.0.501 4,512 4/1/2025
3.0.500 6,401 3/31/2025
3.0.499 2,816 3/31/2025
3.0.498 6,487 3/31/2025
3.0.497 7,813 3/29/2025
3.0.496 2,060 3/29/2025
3.0.495 6,473 3/27/2025
3.0.494 4,351 3/25/2025
3.0.493 1,733 3/25/2025
3.0.492 10,541 3/21/2025
3.0.491 10,725 3/18/2025
3.0.490 4,908 3/18/2025
3.0.489 7,331 3/15/2025
3.0.488 2,259 3/15/2025
3.0.487 8,326 3/12/2025
3.0.486 3,121 3/12/2025
3.0.485 494 3/12/2025
3.0.484 3,117 3/11/2025
3.0.483 372 3/11/2025
3.0.482 1,263 3/11/2025
3.0.481 2,329 3/11/2025
3.0.480 3,474 3/11/2025
3.0.479 3,179 3/11/2025
3.0.478 1,998 3/11/2025
3.0.477 12,293 3/7/2025
3.0.476 3,650 3/7/2025
3.0.475 7,395 3/2/2025
3.0.474 2,691 3/2/2025
3.0.473 660 3/2/2025
3.0.472 5,143 3/2/2025
3.0.471 4,706 3/1/2025
3.0.470 220 3/1/2025
3.0.469 4,463 3/1/2025
3.0.468 90 3/1/2025
3.0.467 1,639 3/1/2025
3.0.466 12,698 2/26/2025
3.0.465 1,107 2/25/2025
3.0.464 3,077 2/25/2025
3.0.463 2,001 2/25/2025
3.0.462 1,012 2/25/2025
3.0.461 11,628 2/23/2025
3.0.460 2,078 2/22/2025
3.0.459 9,256 2/22/2025
3.0.458 2,674 2/22/2025
3.0.457 3,244 2/22/2025
3.0.456 515 2/21/2025
3.0.455 5,219 2/21/2025
3.0.454 11,524 2/19/2025
3.0.453 4,829 2/18/2025
3.0.452 1,039 2/18/2025
3.0.451 413 2/18/2025
3.0.450 5,697 2/18/2025
3.0.449 95 2/18/2025
3.0.448 12,214 2/14/2025
3.0.447 1,367 2/14/2025
3.0.446 3,820 2/13/2025
3.0.445 4,683 2/13/2025
3.0.444 5,261 2/12/2025
3.0.443 1,668 2/12/2025
3.0.442 727 2/12/2025
3.0.441 2,109 2/12/2025
3.0.440 727 2/12/2025
3.0.439 492 2/11/2025
3.0.438 7,838 2/11/2025
3.0.437 2,645 2/11/2025
3.0.436 436 2/11/2025
3.0.435 2,581 2/10/2025
3.0.434 106 2/10/2025
3.0.433 1,740 2/10/2025
3.0.432 107 2/10/2025
3.0.431 13,753 2/9/2025
3.0.430 7,961 2/9/2025
3.0.429 347 2/9/2025
3.0.428 259 2/8/2025
3.0.427 206 2/8/2025
3.0.426 263 2/8/2025
3.0.425 8,276 2/8/2025
3.0.424 2,704 2/7/2025
3.0.423 1,915 2/7/2025
3.0.422 2,447 2/7/2025
3.0.421 94 2/7/2025
3.0.420 395 2/7/2025
3.0.419 101 2/7/2025
3.0.418 1,961 2/7/2025
3.0.417 100 2/7/2025
3.0.416 14,557 2/7/2025
3.0.415 7,146 2/5/2025
3.0.414 825 2/5/2025
3.0.413 1,155 2/5/2025
3.0.412 244 2/5/2025
3.0.411 2,514 2/5/2025
3.0.410 5,346 2/5/2025
3.0.409 12,270 1/28/2025
3.0.408 832 1/28/2025
3.0.407 254 1/28/2025
3.0.406 2,632 1/28/2025
3.0.405 5,494 1/27/2025
3.0.404 1,552 1/27/2025
3.0.403 89 1/27/2025
3.0.402 5,357 1/27/2025
3.0.401 89 1/27/2025
3.0.400 6,129 1/26/2025
3.0.399 1,284 1/26/2025
3.0.398 974 1/26/2025
3.0.397 528 1/26/2025
3.0.396 247 1/26/2025
3.0.395 2,722 1/25/2025
3.0.394 5,883 1/25/2025
3.0.393 4,282 1/25/2025
3.0.392 431 1/25/2025
3.0.391 10,768 1/24/2025
3.0.390 1,967 1/24/2025
3.0.389 3,474 1/24/2025
3.0.388 4,067 1/24/2025
3.0.387 929 1/23/2025
3.0.386 1,150 1/23/2025
3.0.385 139 1/23/2025
3.0.384 9,581 1/22/2025
3.0.383 1,229 1/21/2025
3.0.382 366 1/21/2025
3.0.381 1,187 1/21/2025
3.0.380 1,152 1/21/2025
3.0.379 1,328 1/21/2025
3.0.378 1,014 1/21/2025
3.0.377 1,350 1/21/2025
3.0.376 101 1/21/2025
3.0.375 6,175 1/21/2025
3.0.374 1,745 1/21/2025
3.0.373 1,498 1/21/2025
3.0.372 2,633 1/21/2025
3.0.371 182 1/20/2025
3.0.370 6,939 1/20/2025
3.0.369 250 1/20/2025
3.0.368 1,436 1/20/2025
3.0.367 94 1/20/2025
3.0.366 1,362 1/20/2025
3.0.365 107 1/20/2025
3.0.364 4,236 1/19/2025
3.0.363 6,616 1/19/2025
3.0.362 6,411 1/19/2025
3.0.361 2,173 1/19/2025
3.0.360 623 1/19/2025
3.0.359 3,624 1/18/2025
3.0.358 131 1/18/2025
3.0.357 3,539 1/18/2025
3.0.356 266 1/18/2025
3.0.355 1,007 1/18/2025
3.0.354 6,374 1/17/2025
3.0.353 129 1/17/2025
3.0.352 8,273 1/16/2025
3.0.351 4,556 1/16/2025
3.0.350 836 1/16/2025
3.0.349 5,135 1/15/2025
3.0.348 4,400 1/15/2025
3.0.347 3,718 1/15/2025
3.0.346 3,916 1/15/2025
3.0.345 2,295 1/15/2025
3.0.344 3,047 1/15/2025
3.0.343 794 1/15/2025
3.0.342 2,447 1/14/2025
3.0.341 412 1/14/2025
3.0.340 125 1/14/2025
3.0.339 3,463 1/14/2025
3.0.338 939 1/14/2025
3.0.337 79 1/14/2025
3.0.336 1,233 1/14/2025
3.0.335 348 1/14/2025
3.0.334 7,109 1/13/2025
3.0.333 1,576 1/13/2025
3.0.332 3,004 1/13/2025
3.0.331 6,067 1/11/2025
3.0.330 2,513 1/11/2025
3.0.329 2,774 1/10/2025
3.0.328 5,563 1/10/2025
3.0.327 110 1/10/2025
3.0.326 502 1/10/2025
3.0.325 100 1/10/2025
3.0.324 106 1/10/2025
3.0.323 8,977 1/3/2025
3.0.322 1,022 1/3/2025
3.0.321 1,305 1/3/2025
3.0.320 401 1/3/2025
3.0.319 1,475 1/3/2025
3.0.318 3,297 1/2/2025
3.0.317 115 1/2/2025
3.0.316 2,269 1/2/2025
3.0.315 117 1/2/2025
3.0.314 3,034 1/2/2025
3.0.313 116 1/2/2025
3.0.312 9,865 1/1/2025
3.0.311 114 1/1/2025
3.0.310 162 12/31/2024
3.0.309 119 12/31/2024
3.0.308 3,562 12/31/2024
3.0.307 112 12/31/2024
3.0.306 187 12/31/2024
3.0.305 682 12/31/2024
3.0.304 116 12/31/2024
3.0.303 1,073 12/31/2024
3.0.302 388 12/31/2024
3.0.301 6,418 12/31/2024
3.0.300 4,519 12/31/2024
3.0.299 1,033 12/31/2024
3.0.298 3,276 12/31/2024
3.0.297 2,488 12/31/2024
3.0.296 109 12/31/2024
3.0.295 113 12/31/2024
3.0.294 11,573 12/28/2024
3.0.293 1,948 12/28/2024
3.0.292 1,110 12/28/2024
3.0.291 1,338 12/27/2024
3.0.290 8,475 12/24/2024
3.0.289 1,836 12/24/2024
3.0.288 1,786 12/24/2024
3.0.287 2,512 12/24/2024
3.0.286 2,693 12/24/2024
3.0.285 2,130 12/24/2024
3.0.284 1,754 12/24/2024
3.0.283 1,391 12/23/2024
3.0.282 2,940 12/23/2024
3.0.281 3,369 12/23/2024
3.0.280 1,328 12/23/2024
3.0.279 3,787 12/23/2024
3.0.278 297 12/23/2024
3.0.277 3,617 12/22/2024
3.0.276 5,734 12/22/2024
3.0.275 5,760 12/22/2024
3.0.274 7,791 12/21/2024
3.0.273 453 12/21/2024
3.0.272 3,821 12/21/2024
3.0.271 4,952 12/21/2024
3.0.270 1,068 12/21/2024
3.0.269 5,920 12/20/2024
3.0.268 11,582 12/18/2024
3.0.267 156 12/18/2024
3.0.266 7,575 12/17/2024
3.0.265 6,136 12/17/2024
3.0.264 373 12/16/2024
3.0.263 1,113 12/16/2024
3.0.262 8,151 12/10/2024
3.0.261 2,265 12/9/2024
3.0.260 3,700 12/9/2024
3.0.259 2,514 12/9/2024
3.0.258 7,017 12/6/2024
3.0.257 1,326 12/6/2024
3.0.256 2,306 12/6/2024
3.0.255 7,136 12/6/2024
3.0.254 203 12/6/2024
3.0.253 338 12/6/2024
3.0.252 1,003 12/6/2024
3.0.251 5,661 12/6/2024
3.0.250 130 12/6/2024
3.0.249 124 12/6/2024
3.0.248 4,492 12/5/2024
3.0.247 4,488 12/5/2024
3.0.246 3,431 12/5/2024
3.0.245 4,086 12/5/2024
3.0.244 593 12/5/2024
3.0.243 514 12/5/2024
3.0.242 5,182 12/4/2024
3.0.241 476 12/4/2024
3.0.240 1,127 12/4/2024
3.0.239 3,608 12/4/2024
3.0.238 3,806 12/3/2024
3.0.237 2,855 12/3/2024
3.0.236 3,623 12/3/2024
3.0.235 3,419 12/3/2024
3.0.234 4,728 12/2/2024
3.0.233 3,888 12/2/2024
3.0.232 2,383 12/2/2024
3.0.231 432 12/2/2024
3.0.230 4,308 12/1/2024
3.0.229 698 12/1/2024
3.0.228 3,153 12/1/2024
3.0.227 4,089 12/1/2024
3.0.226 4,295 11/29/2024
3.0.225 7,390 11/21/2024
3.0.224 6,207 11/20/2024
3.0.223 670 11/20/2024
3.0.222 1,146 11/20/2024
3.0.221 571 11/19/2024
3.0.220 5,680 11/19/2024
3.0.219 2,320 11/19/2024
3.0.218 99 11/19/2024
3.0.217 3,826 11/19/2024
3.0.216 87 11/19/2024
3.0.215 10,607 11/14/2024
3.0.214 1,172 11/14/2024
3.0.213 4,103 11/14/2024
3.0.212 977 11/14/2024
3.0.211 572 11/14/2024
3.0.210 4,344 11/14/2024
3.0.209 105 11/14/2024
3.0.208 3,447 11/14/2024
3.0.207 195 11/14/2024
2.1.206 12,364 11/13/2024
2.1.205 4,967 11/13/2024
2.1.204 12,128 11/9/2024
2.1.203 852 11/9/2024
2.1.202 2,168 11/9/2024
2.1.201 1,276 11/8/2024
2.1.200 1,083 11/8/2024
2.1.199 105 11/8/2024
2.1.198 1,906 11/8/2024
2.1.197 257 11/8/2024
2.1.196 4,632 11/8/2024
2.1.195 6,037 11/8/2024
2.1.194 13,328 11/1/2024
2.1.192 9,652 10/29/2024
2.1.191 10,388 10/28/2024
2.1.190 6,610 10/26/2024
2.1.189 11,255 10/22/2024
2.1.188 1,484 10/22/2024
2.1.187 1,062 10/22/2024
2.1.186 8,551 10/17/2024
2.1.185 6,212 10/15/2024
2.1.184 2,361 10/14/2024
2.1.183 6,880 10/11/2024
2.1.182 948 10/11/2024
2.1.181 559 10/11/2024
2.1.180 11,015 10/9/2024
2.1.179 916 10/8/2024
2.1.178 5,525 10/8/2024
2.1.177 849 10/8/2024
2.1.176 12,253 10/3/2024
2.1.175 3,737 10/3/2024
2.1.174 9,079 10/2/2024
2.1.173 2,722 10/2/2024
2.1.172 6,663 10/1/2024
2.1.171 1,794 10/1/2024
2.1.170 2,742 10/1/2024
2.1.169 7,714 9/29/2024
2.1.168 2,221 9/29/2024
2.1.167 1,628 9/29/2024
2.1.166 9,495 9/27/2024
2.1.165 5,286 9/27/2024
2.1.164 99 9/27/2024
2.1.163 298 9/27/2024
2.1.162 98 9/27/2024
2.1.161 7,935 9/26/2024
2.1.160 7,584 9/26/2024
2.1.159 6,981 9/26/2024
2.1.158 7,168 9/23/2024
2.1.157 3,294 9/23/2024
2.1.156 1,937 9/23/2024
2.1.155 2,029 9/23/2024
2.1.154 6,557 9/23/2024
2.1.153 734 9/23/2024
2.1.152 885 9/23/2024
2.1.151 93 9/23/2024
2.1.150 2,370 9/23/2024
2.1.149 11,931 9/17/2024
2.1.148 101 9/17/2024
2.1.147 420 9/17/2024
2.1.146 4,835 9/17/2024
2.1.145 4,196 9/17/2024
2.1.144 5,488 9/17/2024
2.1.143 108 9/17/2024
2.1.142 525 9/17/2024
2.1.141 1,244 9/17/2024
2.1.140 13,397 9/16/2024
2.1.139 7,586 9/12/2024
2.1.138 5,141 9/11/2024
2.1.137 3,093 9/11/2024
2.1.136 5,983 9/11/2024
2.1.135 4,923 9/11/2024
2.1.134 11,192 9/10/2024
2.1.133 2,349 9/10/2024
2.1.132 3,746 9/9/2024
2.1.131 4,127 9/9/2024
2.1.130 2,617 9/9/2024
2.1.129 1,244 9/9/2024
2.1.128 101 9/9/2024
2.1.127 110 9/9/2024
2.1.126 97 9/9/2024
2.1.125 16,835 9/6/2024
2.1.124 6,568 9/6/2024
2.1.123 3,389 9/5/2024
2.1.122 2,043 9/5/2024
2.1.121 4,139 9/5/2024
2.1.120 2,241 9/5/2024
2.1.119 96 9/5/2024
2.1.118 1,640 9/5/2024
2.1.117 5,904 9/5/2024
2.1.116 1,408 9/4/2024
2.1.115 12,114 9/3/2024
2.1.114 1,204 9/3/2024
2.1.113 4,948 9/3/2024
2.1.112 9,577 8/29/2024
2.1.111 6,765 8/26/2024
2.1.110 6,727 8/21/2024
2.1.109 3,824 8/21/2024
2.1.108 443 8/20/2024
2.1.107 4,738 8/20/2024
2.1.106 107 8/20/2024
2.1.105 4,822 8/20/2024
2.1.104 2,940 8/20/2024
2.1.103 9,100 8/15/2024
2.1.102 8,221 8/13/2024
2.1.101 7,894 8/6/2024
2.1.100 9,208 8/1/2024
2.1.99 570 8/1/2024
2.1.98 8,702 7/25/2024
2.1.97 1,062 7/25/2024
2.1.96 988 7/25/2024
2.1.95 642 7/24/2024
2.1.94 214 7/24/2024
2.1.93 9,655 7/20/2024
2.1.92 8,250 7/14/2024
2.1.91 2,252 7/14/2024
2.1.90 6,846 7/10/2024
2.1.89 233 7/10/2024
2.1.88 2,173 7/10/2024
2.1.87 2,053 7/10/2024
2.1.86 226 7/10/2024
2.1.85 234 7/10/2024
2.1.83 2,131 7/10/2024
2.1.82 3,237 7/9/2024
2.1.80 845 7/9/2024
2.1.79 1,260 7/9/2024
2.1.78 7,730 7/9/2024
2.1.77 3,068 7/9/2024
2.1.76 11,626 7/9/2024
2.1.75 117 7/9/2024
2.1.74 134 7/8/2024
2.1.73 117 7/8/2024
2.1.72 2,516 7/8/2024
2.1.71 103 7/8/2024
2.1.70 6,955 7/8/2024
2.1.69 2,285 7/7/2024
2.1.68 2,584 7/7/2024
2.1.67 682 7/7/2024
2.1.66 1,336 7/7/2024
2.1.65 3,056 7/7/2024
2.1.64 2,715 7/7/2024
2.1.63 114 7/7/2024
2.1.62 3,634 7/5/2024
2.1.61 73,274 5/25/2024
2.1.60 113 5/25/2024
2.1.59 529 5/25/2024
2.1.58 14,002 5/22/2024
2.1.57 117 5/22/2024
2.1.56 11,498 5/17/2024
2.1.55 15,940 4/30/2024
2.1.54 15,940 4/28/2024
2.1.53 118 4/28/2024
2.1.52 679 4/27/2024
2.1.51 108 4/27/2024
2.1.50 25,073 4/12/2024
2.1.49 1,358 4/12/2024
2.1.48 123 4/12/2024
2.1.47 38,979 3/18/2024
2.1.46 8,783 3/13/2024
2.1.45 2,283 3/13/2024
2.1.44 61,225 2/21/2024
2.1.43 2,747 2/21/2024
2.1.42 121 2/21/2024
2.1.41 21,846 2/16/2024
2.1.40 651 2/16/2024
2.1.39 23,928 2/9/2024
2.1.38 18,951 2/6/2024
2.1.37 126 2/6/2024
2.1.36 62,796 1/15/2024
2.1.35 839 1/15/2024
2.1.34 26,166 1/5/2024
2.1.33 2,457 1/5/2024
2.1.32 13,382 12/27/2023
2.1.31 1,338 12/27/2023
2.1.30 1,094 12/27/2023
2.1.29 7,869 12/25/2023
2.1.28 1,395 12/25/2023
2.1.27 691 12/25/2023
2.1.26 10,570 12/23/2023
2.1.25 137 12/23/2023
2.1.24 816 12/23/2023
2.1.23 20,752 12/9/2023
2.1.22 1,346 12/9/2023
2.1.21 253 12/9/2023
2.1.20 1,931 12/9/2023
2.1.19 10,857 12/4/2023
2.1.18 828 12/4/2023
2.1.17 5,448 11/26/2023
2.1.16 5,406 11/23/2023
2.1.15 342 11/23/2023
2.1.14 956 11/23/2023
2.1.13 9,432 11/19/2023
2.1.12 138 11/19/2023
2.1.11 1,201 11/18/2023
2.1.10 3,416 11/18/2023
2.1.9 1,947 11/18/2023
2.1.8 3,684 11/17/2023
2.1.7 1,076 11/17/2023
2.1.6 1,707 11/17/2023
2.1.5 878 11/17/2023
2.1.4 649 11/16/2023
2.1.3 183 11/16/2023
2.0.52 1,248 11/15/2023
2.0.51 2,139 11/15/2023
2.0.2 134 11/16/2023
2.0.1 143 11/16/2023
1.0.50 4,115 11/11/2023
1.0.49 123 11/11/2023
1.0.48 109 11/11/2023
1.0.47 1,338 11/9/2023
1.0.46 129 11/9/2023
1.0.45 5,229 11/6/2023
1.0.44 2,231 11/3/2023
1.0.43 1,815 11/2/2023
1.0.42 1,891 11/1/2023
1.0.41 7,529 10/18/2023
1.0.40 3,011 10/17/2023
1.0.39 1,241 10/16/2023
1.0.38 2,681 10/13/2023
1.0.37 159 10/13/2023
1.0.36 6,169 9/19/2023
1.0.35 2,058 9/18/2023
1.0.34 133 9/18/2023
1.0.33 7,691 8/30/2023
1.0.32 2,712 8/29/2023
1.0.31 4,169 8/24/2023
1.0.30 146 8/24/2023
1.0.29 4,349 8/17/2023
1.0.28 169 8/17/2023
1.0.27 8,037 8/7/2023
1.0.26 171 8/7/2023
1.0.25 7,983 7/10/2023
1.0.24 10,379 7/7/2023
1.0.23 167 7/7/2023
1.0.22 9,324 6/28/2023
1.0.21 44,554 5/24/2023
1.0.20 1,138 5/24/2023
1.0.19 418 5/23/2023
1.0.18 198 5/31/2023
1.0.17 2,756 5/23/2023
1.0.16 2,948 5/22/2023
1.0.15 5,975 5/17/2023
1.0.14 188 5/17/2023
1.0.13 5,607 4/28/2023
1.0.12 2,219 4/24/2023
1.0.11 973 4/21/2023
1.0.10 4,493 4/12/2023
1.0.9 1,077 4/11/2023
1.0.8 2,036 4/3/2023
1.0.7 241 4/3/2023
1.0.6 375 4/1/2023
1.0.5 2,048 3/23/2023
1.0.3 553 2/28/2023
1.0.2 458 2/16/2023