Soenneker.Extensions.String 2.1.177

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Extensions.String --version 2.1.177
                    
NuGet\Install-Package Soenneker.Extensions.String -Version 2.1.177
                    
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.String" Version="2.1.177" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.String" Version="2.1.177" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Extensions.String" />
                    
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.String --version 2.1.177
                    
#r "nuget: Soenneker.Extensions.String, 2.1.177"
                    
#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.String@2.1.177
                    
#: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.String&version=2.1.177
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.String&version=2.1.177
                    
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.String

A collection of useful string extension methods

Installation

dotnet add package Soenneker.Extensions.String

Usage

Truncate()

string longString = "This is a long string that needs to be truncated";
string truncatedString = longString.Truncate(10);
// truncatedString = "This is a ..."

IsAlphaNumeric()

string alphanumeric = "abc123";
bool isAlphanumeric = alphanumeric.IsAlphaNumeric();
// isAlphanumeric = true

string nonAlphanumeric = "abc123!";
bool isNonAlphanumeric = nonAlphanumeric.IsAlphaNumeric();
// isNonAlphanumeric = false

Slugify()

string test = "this string&is%bad#for\\urls"

test.Slugify() // "this-string-is-bad-for-urls"

ToDouble()

string numericString = "3.14";
double? doubleValue = numericString.ToDouble();
// doubleValue = 3.14

string nonNumericString = "abc";
double? nonDoubleValue = nonNumericString.ToDouble();
// nonDoubleValue = null

RemoveNonDigits()

string stringWithNonDigits = "abc123xyz456";
string digitsOnly = stringWithNonDigits.RemoveNonDigits();
// digitsOnly = "123456"

Shuffle()

string originalString = "hello";
string shuffledString = originalString.Shuffle();
// shuffledString = "olhel"

... and more

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 (65)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.String:

Package Downloads
Soenneker.Extensions.Configuration

A collection of helpful IConfiguration extension methods

Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Extensions.Type

An extension library for useful Type operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.557 38,981 9/16/2025
3.0.556 30,927 9/9/2025
3.0.555 30,072 9/3/2025
3.0.554 11,239 9/3/2025
3.0.553 173 9/3/2025
3.0.552 690 9/3/2025
3.0.551 189 9/3/2025
3.0.550 1,807 9/3/2025
3.0.549 39,931 8/16/2025
3.0.548 28,193 8/11/2025
3.0.547 2,202 8/11/2025
3.0.546 165 8/11/2025
3.0.545 3,677 8/11/2025
3.0.544 155 8/11/2025
3.0.543 256 8/11/2025
3.0.542 31,867 8/10/2025
3.0.541 21,691 8/5/2025
3.0.540 14,647 7/29/2025
3.0.539 31,092 7/8/2025
3.0.538 47,581 6/28/2025
3.0.537 5,676 6/27/2025
3.0.536 103 6/27/2025
3.0.535 7,520 6/27/2025
3.0.534 109 6/27/2025
3.0.533 369 6/27/2025
3.0.532 25,598 6/24/2025
3.0.531 21,167 6/11/2025
3.0.530 13,734 6/10/2025
3.0.529 25,279 6/2/2025
3.0.528 14,889 5/27/2025
3.0.527 2,886 5/27/2025
3.0.526 190 5/27/2025
3.0.525 4,109 5/27/2025
3.0.524 194 5/27/2025
3.0.523 203 5/27/2025
3.0.522 5,147 5/27/2025
3.0.521 23,886 5/25/2025
3.0.520 14,148 5/23/2025
3.0.519 4,701 5/23/2025
3.0.518 190 5/23/2025
3.0.517 181 5/23/2025
3.0.516 3,054 5/22/2025
3.0.515 197 5/22/2025
3.0.514 5,244 5/22/2025
3.0.513 37,105 5/14/2025
3.0.512 22,411 5/8/2025
3.0.511 5,392 5/8/2025
3.0.510 210 5/8/2025
3.0.509 1,221 5/8/2025
3.0.508 313 5/7/2025
3.0.507 203 5/7/2025
3.0.506 4,533 5/7/2025
3.0.505 25,482 5/5/2025
3.0.504 3,838 5/5/2025
3.0.503 302 5/5/2025
3.0.502 211 5/5/2025
3.0.501 6,382 5/5/2025
3.0.500 1,391 5/5/2025
3.0.499 213 5/5/2025
3.0.498 302 5/5/2025
3.0.497 199 5/5/2025
3.0.496 410 5/5/2025
3.0.495 10,691 5/5/2025
3.0.494 190 5/5/2025
3.0.493 34,136 4/27/2025
3.0.492 156 4/27/2025
3.0.491 7,277 4/26/2025
3.0.490 15,089 4/8/2025
3.0.489 3,139 4/8/2025
3.0.488 218 4/8/2025
3.0.487 220 4/8/2025
3.0.486 4,083 4/8/2025
3.0.485 322 4/8/2025
3.0.484 1,357 4/8/2025
3.0.483 3,461 4/8/2025
3.0.482 37,330 4/8/2025
3.0.481 682 4/8/2025
3.0.480 73,004 4/6/2025
3.0.479 9,990 4/6/2025
3.0.478 3,947 4/6/2025
3.0.477 4,579 4/6/2025
3.0.476 3,615 4/6/2025
3.0.475 201 4/6/2025
3.0.474 204 4/6/2025
3.0.473 10,252 4/6/2025
3.0.472 188 4/6/2025
3.0.471 201 4/6/2025
3.0.470 4,603 4/5/2025
3.0.469 165 4/5/2025
3.0.468 42,508 4/4/2025
3.0.467 155 4/4/2025
3.0.466 261 4/4/2025
3.0.465 10,785 4/4/2025
3.0.464 198,133 3/11/2025
3.0.463 15,220 3/11/2025
3.0.462 222 3/11/2025
3.0.461 11,289 3/11/2025
3.0.460 225 3/11/2025
3.0.459 73,344 3/1/2025
3.0.458 8,507 3/1/2025
3.0.457 151 3/1/2025
3.0.456 6,043 3/1/2025
3.0.455 176 3/1/2025
3.0.454 164 3/1/2025
3.0.453 3,144 3/1/2025
3.0.452 175 3/1/2025
3.0.451 159 3/1/2025
3.0.450 177 3/1/2025
3.0.449 166 3/1/2025
3.0.448 50,307 2/24/2025
3.0.447 1,860 2/24/2025
3.0.446 48,892 2/21/2025
3.0.445 36,485 2/18/2025
3.0.444 2,195 2/18/2025
3.0.443 185 2/18/2025
3.0.442 171 2/18/2025
3.0.441 38,005 2/13/2025
3.0.440 28,275 2/11/2025
3.0.439 5,061 2/11/2025
3.0.438 9,947 2/11/2025
3.0.437 7,685 2/11/2025
3.0.436 5,059 2/10/2025
3.0.435 195 2/10/2025
3.0.434 4,137 2/10/2025
3.0.433 13,968 2/10/2025
3.0.432 7,763 2/10/2025
3.0.431 365 2/10/2025
3.0.430 161 2/10/2025
3.0.429 21,150 2/10/2025
3.0.428 165 2/10/2025
3.0.427 35,462 2/8/2025
3.0.426 3,339 2/7/2025
3.0.425 165 2/7/2025
3.0.424 11,338 2/7/2025
3.0.423 4,374 2/7/2025
3.0.422 3,275 2/7/2025
3.0.421 160 2/7/2025
3.0.420 158 2/7/2025
3.0.419 3,462 2/7/2025
3.0.418 183 2/7/2025
3.0.417 165 2/7/2025
3.0.416 163 2/7/2025
3.0.415 6,238 2/7/2025
3.0.414 207 2/7/2025
3.0.413 159 2/7/2025
3.0.412 86,824 1/27/2025
3.0.411 3,725 1/27/2025
3.0.410 218 1/27/2025
3.0.409 7,688 1/27/2025
3.0.408 1,640 1/27/2025
3.0.407 170 1/27/2025
3.0.406 163 1/27/2025
3.0.405 33,294 1/25/2025
3.0.404 27,252 1/24/2025
3.0.403 26,826 1/24/2025
3.0.402 669 1/24/2025
3.0.401 8,070 1/23/2025
3.0.400 173 1/23/2025
3.0.398 10,239 1/23/2025
3.0.397 30,088 1/21/2025
3.0.396 175 1/21/2025
3.0.395 231 1/21/2025
3.0.394 25,890 1/20/2025
3.0.393 5,682 1/20/2025
3.0.392 2,508 1/20/2025
3.0.391 173 1/20/2025
3.0.390 13,988 1/20/2025
3.0.389 164 1/20/2025
3.0.388 5,806 1/20/2025
3.0.387 169 1/20/2025
3.0.386 163 1/20/2025
3.0.385 11,232 1/20/2025
3.0.384 166 1/20/2025
3.0.383 165 1/20/2025
3.0.382 160 1/20/2025
3.0.381 37,658 1/19/2025
3.0.380 463 1/19/2025
3.0.379 146 1/19/2025
3.0.378 22,115 1/18/2025
3.0.377 20,734 1/16/2025
3.0.376 24,505 1/16/2025
3.0.375 19,716 1/16/2025
3.0.374 17,378 1/15/2025
3.0.373 6,405 1/15/2025
3.0.372 5,111 1/15/2025
3.0.371 9,086 1/15/2025
3.0.370 8,240 1/15/2025
3.0.369 5,012 1/14/2025
3.0.368 1,510 1/14/2025
3.0.367 1,173 1/14/2025
3.0.366 338 1/14/2025
3.0.365 155 1/14/2025
3.0.364 5,686 1/14/2025
3.0.363 3,328 1/14/2025
3.0.362 159 1/14/2025
3.0.361 7,384 1/14/2025
3.0.360 32,162 1/12/2025
3.0.359 22,286 1/10/2025
3.0.358 6,571 1/10/2025
3.0.357 168 1/10/2025
3.0.356 159 1/10/2025
3.0.355 5,586 1/10/2025
3.0.354 181 1/10/2025
3.0.353 197 1/10/2025
3.0.352 158 1/10/2025
3.0.351 34,388 1/2/2025
3.0.350 219 1/2/2025
3.0.349 169 1/2/2025
3.0.348 8,415 1/2/2025
3.0.347 190 1/2/2025
3.0.346 199 1/2/2025
3.0.345 2,503 1/2/2025
3.0.344 22,952 1/1/2025
3.0.343 207 1/1/2025
3.0.342 210 1/1/2025
3.0.341 645 12/31/2024
3.0.340 188 12/31/2024
3.0.339 182 12/31/2024
3.0.338 2,977 12/31/2024
3.0.337 204 12/31/2024
3.0.336 191 12/31/2024
3.0.335 227 12/31/2024
3.0.334 11,011 12/31/2024
3.0.333 29,446 12/31/2024
3.0.332 165 12/31/2024
3.0.331 187 12/31/2024
3.0.330 13,101 12/31/2024
3.0.329 193 12/31/2024
3.0.328 186 12/31/2024
3.0.327 5,916 12/31/2024
3.0.326 54,337 12/24/2024
3.0.325 161 12/24/2024
3.0.324 168 12/24/2024
3.0.323 8,832 12/24/2024
3.0.322 187 12/24/2024
3.0.321 183 12/24/2024
3.0.320 2,070 12/24/2024
3.0.319 54,122 12/22/2024
3.0.318 600 12/22/2024
3.0.317 188 12/22/2024
3.0.316 10,066 12/21/2024
3.0.315 166 12/21/2024
3.0.314 1,348 12/21/2024
3.0.313 12,916 12/21/2024
3.0.312 174 12/21/2024
3.0.311 3,739 12/21/2024
3.0.310 6,825 12/21/2024
3.0.309 194 12/21/2024
3.0.308 10,231 12/21/2024
3.0.307 185 12/21/2024
3.0.306 887 12/21/2024
3.0.305 7,118 12/21/2024
3.0.304 177 12/21/2024
3.0.303 8,666 12/20/2024
3.0.302 5,029 12/20/2024
3.0.301 183 12/20/2024
3.0.300 18,774 12/19/2024
3.0.299 1,923 12/19/2024
3.0.298 881 12/18/2024
3.0.297 174 12/18/2024
3.0.296 357 12/18/2024
3.0.295 33,905 12/17/2024
3.0.294 4,872 12/17/2024
3.0.293 209 12/17/2024
3.0.292 498 12/16/2024
3.0.291 186 12/16/2024
3.0.290 159 12/16/2024
3.0.289 183 12/16/2024
3.0.288 76,197 12/5/2024
3.0.287 32,466 12/4/2024
3.0.286 10,778 12/4/2024
3.0.285 7,195 12/4/2024
3.0.284 4,804 12/4/2024
3.0.283 9,506 12/4/2024
3.0.282 293 12/4/2024
3.0.281 19,798 12/3/2024
3.0.280 201 12/3/2024
3.0.279 8,309 12/3/2024
3.0.278 5,577 12/2/2024
3.0.277 185 12/2/2024
3.0.276 7,824 12/2/2024
3.0.275 18,836 12/1/2024
3.0.274 7,938 12/1/2024
3.0.273 211 12/1/2024
3.0.272 202 12/1/2024
3.0.271 54,408 11/19/2024
3.0.270 193 11/19/2024
3.0.269 7,322 11/19/2024
3.0.268 208 11/19/2024
3.0.267 186 11/19/2024
3.0.266 18,085 11/19/2024
3.0.265 5,166 11/19/2024
3.0.264 37,519 11/14/2024
3.0.263 194 11/14/2024
3.0.262 4,257 11/14/2024
3.0.261 182 11/14/2024
3.0.260 188 11/14/2024
3.0.259 2,310 11/13/2024
3.0.258 200 11/13/2024
2.1.257 68,555 11/8/2024
2.1.256 18,955 11/8/2024
2.1.255 171 11/8/2024
2.1.254 163 11/8/2024
2.1.253 63,806 10/28/2024
2.1.252 152,557 10/1/2024
2.1.251 22,608 9/30/2024
2.1.250 39,832 9/27/2024
2.1.249 172 9/27/2024
2.1.248 165 9/27/2024
2.1.247 3,828 9/27/2024
2.1.246 166 9/27/2024
2.1.245 165 9/27/2024
2.1.244 157 9/27/2024
2.1.243 72,564 9/23/2024
2.1.242 1,076 9/23/2024
2.1.241 4,473 9/23/2024
2.1.240 174 9/23/2024
2.1.239 1,866 9/23/2024
2.1.238 186 9/23/2024
2.1.237 9,698 9/22/2024
2.1.236 37,168 9/17/2024
2.1.235 333 9/17/2024
2.1.234 182 9/17/2024
2.1.233 275 9/17/2024
2.1.232 197 9/17/2024
2.1.231 5,267 9/17/2024
2.1.230 207 9/17/2024
2.1.229 64,692 9/11/2024
2.1.228 21,590 9/11/2024
2.1.227 30,233 9/9/2024
2.1.226 11,882 9/9/2024
2.1.225 7,193 9/9/2024
2.1.224 10,084 9/9/2024
2.1.223 11,342 9/9/2024
2.1.222 181 9/9/2024
2.1.221 206 9/9/2024
2.1.220 46,651 9/5/2024
2.1.219 9,517 9/5/2024
2.1.218 194 9/5/2024
2.1.217 200 9/5/2024
2.1.216 1,529 9/5/2024
2.1.215 210 9/5/2024
2.1.214 5,176 9/5/2024
2.1.213 26,411 9/4/2024
2.1.212 65,718 8/20/2024
2.1.211 7,084 8/20/2024
2.1.210 192 8/20/2024
2.1.209 180 8/20/2024
2.1.208 6,583 8/20/2024
2.1.207 197 8/20/2024
2.1.206 205 8/20/2024
2.1.205 96,934 7/24/2024
2.1.204 7,623 7/24/2024
2.1.203 152 7/24/2024
2.1.202 36,833 7/13/2024
2.1.201 193 7/13/2024
2.1.200 20,450 7/10/2024
2.1.199 5,493 7/10/2024
2.1.198 234 7/10/2024
2.1.196 5,781 7/9/2024
2.1.194 4,381 7/9/2024
2.1.193 25,360 7/9/2024
2.1.192 8,221 7/9/2024
2.1.191 866 7/9/2024
2.1.190 191 7/9/2024
2.1.189 10,851 7/9/2024
2.1.188 3,765 7/8/2024
2.1.187 170 7/8/2024
2.1.186 190 7/8/2024
2.1.185 172 7/8/2024
2.1.184 172 7/8/2024
2.1.183 6,699 7/8/2024
2.1.182 188 7/8/2024
2.1.181 178 7/8/2024
2.1.180 741 7/8/2024
2.1.179 32,909 7/7/2024
2.1.178 4,050 7/7/2024
2.1.177 30,127 7/3/2024
2.1.176 49,509 6/14/2024
2.1.174 57,542 5/27/2024
2.1.173 3,653 5/27/2024
2.1.172 155 5/27/2024
2.1.171 27,201 5/25/2024
2.1.170 9,356 5/25/2024
2.1.169 192 5/25/2024
2.1.168 174 5/25/2024
2.1.167 5,810 5/25/2024
2.1.166 192 5/25/2024
2.1.165 220 5/25/2024
2.1.164 193 5/25/2024
2.1.163 5,337 5/25/2024
2.1.162 182 5/25/2024
2.1.161 24,777 5/22/2024
2.1.160 6,017 5/22/2024
2.1.159 3,358 5/22/2024
2.1.158 180 5/22/2024
2.1.157 179 5/22/2024
2.1.156 193 5/22/2024
2.1.155 13,091 5/22/2024
2.1.154 21,230 5/16/2024
2.1.153 63,315 4/28/2024
2.1.152 170 4/28/2024
2.1.151 9,648 4/28/2024
2.1.150 178 4/28/2024
2.1.149 206 4/28/2024
2.1.148 830 4/28/2024
2.1.147 185 4/28/2024
2.1.146 195 4/28/2024
2.1.145 6,352 4/27/2024
2.1.144 225 4/27/2024
2.1.143 182 4/27/2024
2.1.142 50,300 4/12/2024
2.1.141 226 4/12/2024
2.1.140 6,502 4/12/2024
2.1.139 208 4/12/2024
2.1.138 193 4/12/2024
2.1.137 3,429 4/12/2024
2.1.136 211 4/12/2024
2.1.135 199 4/12/2024
2.1.134 191 4/12/2024
2.1.133 35,277 4/1/2024
2.1.132 24,774 3/25/2024
2.1.131 26,642 3/18/2024
2.1.130 272 3/18/2024
2.1.129 459 3/18/2024
2.1.128 24,998 3/13/2024
2.1.127 266 3/13/2024
2.1.126 254 3/13/2024
2.1.125 1,881 3/13/2024
2.1.124 236 3/13/2024
2.1.123 261 3/13/2024
2.1.122 50,270 3/8/2024
2.1.121 20,851 3/3/2024
2.1.120 17,382 3/2/2024
2.1.119 2,272 3/1/2024
2.1.117 15,628 2/28/2024
2.1.116 29,885 2/25/2024
2.1.115 289 2/25/2024
2.1.114 23,760 2/21/2024
2.1.113 5,670 2/21/2024
2.1.112 3,747 2/21/2024
2.1.111 2,462 2/21/2024
2.1.110 308 2/21/2024
2.1.109 7,715 2/21/2024
2.1.108 312 2/21/2024
2.1.107 326 2/21/2024
2.1.106 18,930 2/20/2024
2.1.105 2,065 2/20/2024
2.1.104 12,886 2/19/2024
2.1.103 13,192 2/16/2024
2.1.102 8,887 2/16/2024
2.1.101 317 2/16/2024
2.1.100 8,068 2/16/2024
2.1.99 51,250 2/9/2024
2.1.98 46,740 2/7/2024
2.1.97 5,543 2/6/2024
2.1.96 3,479 2/6/2024
2.1.95 614 2/6/2024
2.1.94 340 2/6/2024
2.1.93 17,065 2/4/2024
2.1.92 124,225 1/15/2024
2.1.91 6,714 1/15/2024
2.1.90 437 1/15/2024
2.1.89 3,719 1/15/2024
2.1.88 398 1/15/2024
2.1.87 46,424 1/7/2024
2.1.86 9,081 1/5/2024
2.1.85 5,621 1/5/2024
2.1.84 419 1/5/2024
2.1.83 448 1/5/2024
2.1.82 6,058 1/5/2024
2.1.81 15,706 1/1/2024
2.1.80 501 1/1/2024
2.1.79 10,374 12/28/2023
2.1.78 5,068 12/28/2023
2.1.77 5,093 12/27/2023
2.1.76 476 12/27/2023
2.1.75 470 12/27/2023
2.1.74 5,941 12/27/2023
2.1.73 443 12/27/2023
2.1.72 490 12/27/2023
2.1.71 19,634 12/25/2023
2.1.70 1,069 12/25/2023
2.1.69 488 12/25/2023
2.1.68 484 12/25/2023
2.1.67 5,681 12/25/2023
2.1.66 15,711 12/24/2023
2.1.65 9,482 12/23/2023
2.1.64 2,653 12/23/2023
2.1.63 465 12/23/2023
2.1.62 6,761 12/23/2023
2.1.61 499 12/23/2023
2.1.60 445 12/23/2023
2.1.59 2,141 12/23/2023
2.1.58 452 12/23/2023
2.1.57 16,827 12/19/2023
2.1.56 5,679 12/18/2023
2.1.55 15,812 12/10/2023
2.1.51 7,632 12/10/2023
2.1.50 13,548 12/9/2023
2.1.49 505 12/9/2023
2.1.48 601 12/9/2023
2.1.47 518 12/9/2023
2.1.46 514 12/9/2023
2.1.45 538 12/9/2023
2.1.44 9,149 12/9/2023
2.1.43 14,155 12/6/2023
2.1.42 11,656 12/4/2023
2.1.41 7,158 12/4/2023
2.1.40 544 12/4/2023
2.1.39 1,101 12/4/2023
2.1.38 591 12/4/2023
2.1.37 19,770 11/23/2023
2.1.36 478 11/23/2023
2.1.35 1,032 11/23/2023
2.1.34 502 11/23/2023
2.1.33 2,474 11/23/2023
2.1.32 3,863 11/23/2023
2.1.31 11,920 11/20/2023
2.1.30 4,839 11/20/2023
2.1.29 8,526 11/19/2023
2.1.28 1,552 11/19/2023
2.1.27 507 11/19/2023
2.1.26 519 11/19/2023
2.1.25 496 11/19/2023
2.1.24 2,767 11/19/2023
2.1.23 12,405 11/18/2023
2.1.22 542 11/18/2023
2.1.21 4,086 11/18/2023
2.1.20 2,706 11/18/2023
2.1.19 524 11/18/2023
2.1.18 7,200 11/17/2023
2.1.17 1,827 11/17/2023
2.1.16 530 11/17/2023
2.1.15 518 11/17/2023
2.1.14 2,431 11/17/2023
2.1.13 9,909 11/17/2023
2.1.12 2,808 11/17/2023
2.1.11 510 11/17/2023
2.1.10 541 11/17/2023
2.1.9 582 11/17/2023
2.1.8 4,693 11/17/2023
2.1.7 1,990 11/16/2023
2.1.6 486 11/16/2023
2.1.5 1,133 11/16/2023
2.1.4 503 11/16/2023
2.0.140 6,900 11/15/2023
2.0.139 533 11/15/2023
2.0.138 497 11/15/2023
2.0.137 521 11/15/2023
2.0.136 506 11/15/2023
2.0.3 497 11/16/2023
2.0.2 523 11/16/2023
2.0.1 458 11/16/2023
1.0.135 14,857 11/10/2023
1.0.134 538 11/10/2023
1.0.133 6,832 11/9/2023
1.0.132 495 11/9/2023
1.0.131 537 11/9/2023
1.0.130 2,481 11/8/2023
1.0.129 12,486 11/6/2023
1.0.128 501 11/6/2023
1.0.127 533 11/6/2023
1.0.126 539 11/6/2023
1.0.125 4,612 11/3/2023
1.0.124 8,474 11/2/2023
1.0.123 555 11/2/2023
1.0.122 543 11/2/2023
1.0.121 498 11/2/2023
1.0.120 4,431 11/1/2023
1.0.119 23,883 10/18/2023
1.0.118 576 10/18/2023
1.0.117 580 10/18/2023
1.0.116 542 10/18/2023
1.0.115 5,035 10/17/2023
1.0.114 5,756 10/16/2023
1.0.113 574 10/16/2023
1.0.112 567 10/16/2023
1.0.111 598 10/16/2023
1.0.110 8,631 10/13/2023
1.0.109 618 10/13/2023
1.0.108 16,761 9/19/2023
1.0.107 604 9/19/2023
1.0.106 617 9/19/2023
1.0.105 555 9/19/2023
1.0.104 7,604 9/18/2023
1.0.103 601 9/18/2023
1.0.102 19,361 8/30/2023
1.0.101 689 8/30/2023
1.0.100 637 8/30/2023
1.0.99 636 8/30/2023
1.0.98 642 8/30/2023
1.0.97 14,261 8/25/2023
1.0.96 6,397 8/24/2023
1.0.95 650 8/24/2023
1.0.94 12,794 8/18/2023
1.0.93 668 8/18/2023
1.0.92 5,842 8/17/2023
1.0.91 632 8/17/2023
1.0.90 660 8/17/2023
1.0.89 21,555 8/8/2023
1.0.88 704 8/8/2023
1.0.87 6,999 8/7/2023
1.0.86 714 8/7/2023
1.0.85 698 8/7/2023
1.0.84 26,045 7/10/2023
1.0.83 763 7/10/2023
1.0.82 775 7/10/2023
1.0.81 786 7/10/2023
1.0.80 5,885 7/7/2023
1.0.79 738 7/7/2023
1.0.78 19,268 6/29/2023
1.0.77 5,280 6/28/2023
1.0.76 761 6/28/2023
1.0.75 788 6/28/2023
1.0.74 54,827 6/7/2023
1.0.73 6,731 6/7/2023
1.0.72 796 6/7/2023
1.0.71 794 6/7/2023
1.0.70 8,311 6/6/2023
1.0.69 779 6/6/2023
1.0.68 3,069 6/5/2023
1.0.67 787 6/5/2023
1.0.66 8,319 6/2/2023
1.0.65 809 6/2/2023
1.0.64 795 6/2/2023
1.0.63 32,074 5/30/2023
1.0.62 790 5/30/2023
1.0.61 9,229 5/29/2023
1.0.60 787 5/29/2023
1.0.59 7,197 5/26/2023
1.0.58 13,886 5/25/2023
1.0.57 784 5/25/2023
1.0.56 7,109 5/24/2023
1.0.55 815 5/24/2023
1.0.54 812 5/24/2023
1.0.53 787 5/24/2023
1.0.52 901 5/24/2023
1.0.51 4,742 5/23/2023
1.0.50 780 5/23/2023
1.0.49 800 5/23/2023
1.0.46 14,851 5/22/2023
1.0.45 12,231 5/18/2023
1.0.44 7,396 5/17/2023
1.0.43 769 5/17/2023
1.0.42 764 5/17/2023
1.0.41 757 5/17/2023
1.0.40 19,337 4/24/2023
1.0.39 2,631 4/24/2023
1.0.38 831 4/24/2023
1.0.37 4,482 4/21/2023
1.0.36 790 4/21/2023
1.0.35 806 4/21/2023
1.0.34 4,986 4/20/2023
1.0.33 1,012 4/20/2023
1.0.32 935 4/20/2023
1.0.31 4,523 4/19/2023
1.0.30 2,125 4/18/2023
1.0.29 826 4/18/2023
1.0.28 2,044 4/18/2023
1.0.27 3,702 4/17/2023
1.0.26 897 4/16/2023
1.0.25 848 4/16/2023
1.0.24 3,845 4/14/2023
1.0.23 2,845 4/13/2023
1.0.22 2,748 4/12/2023
1.0.21 830 4/12/2023
1.0.20 826 4/12/2023
1.0.19 1,990 4/11/2023
1.0.18 902 4/11/2023
1.0.17 2,842 4/11/2023
1.0.16 3,290 4/7/2023
1.0.15 4,247 4/3/2023
1.0.14 869 4/3/2023
1.0.13 859 4/3/2023
1.0.12 817 4/3/2023
1.0.11 2,240 4/1/2023
1.0.10 1,274 3/30/2023
1.0.9 1,007 3/26/2023
1.0.7 4,298 2/27/2023
1.0.6 910 2/26/2023
1.0.5 884 2/22/2023
1.0.4 1,109 2/22/2023
1.0.3 914 2/22/2023
1.0.2 1,488 2/12/2023
1.0.1 1,118 2/12/2023