Soenneker.Extensions.String 3.0.532

Prefix Reserved
dotnet add package Soenneker.Extensions.String --version 3.0.532
                    
NuGet\Install-Package Soenneker.Extensions.String -Version 3.0.532
                    
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="3.0.532" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.String" Version="3.0.532" />
                    
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 3.0.532
                    
#r "nuget: Soenneker.Extensions.String, 3.0.532"
                    
#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.String&version=3.0.532
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.String&version=3.0.532
                    
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 highly optimized library of string extension methods designed to improve performance, readability, and efficiency in .NET applications. This library is ideal for developers looking to streamline common string operations while adhering to best practices and achieving maximum performance.

Features

  • High Performance: All methods are optimized for speed and low memory usage, ensuring top-notch performance in critical applications.
  • Comprehensive Functionality: Includes a wide range of utility methods for common string operations, such as trimming, splitting, joining, and formatting.
  • Readability-First: Enhances code clarity with intuitive method names and streamlined syntax.
  • Error-Resilient: Methods are built to handle edge cases gracefully, minimizing potential bugs and exceptions.
  • Lightweight: Minimal overhead and dependencies, making it perfect for high-performance applications.

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 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 (53)

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.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Extensions.Type

An extension library for useful Type operations

Soenneker.Documents.Document

The base document type providing a building block for storage objects

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.532 43 6/24/2025
3.0.531 10,858 6/11/2025
3.0.530 10,880 6/10/2025
3.0.529 20,373 6/2/2025
3.0.528 11,653 5/27/2025
3.0.527 2,162 5/27/2025
3.0.526 133 5/27/2025
3.0.525 3,078 5/27/2025
3.0.524 133 5/27/2025
3.0.523 140 5/27/2025
3.0.522 3,938 5/27/2025
3.0.521 18,556 5/25/2025
3.0.520 11,012 5/23/2025
3.0.519 3,783 5/23/2025
3.0.518 139 5/23/2025
3.0.517 125 5/23/2025
3.0.516 2,417 5/22/2025
3.0.515 139 5/22/2025
3.0.514 4,126 5/22/2025
3.0.513 29,284 5/14/2025
3.0.512 17,621 5/8/2025
3.0.511 4,228 5/8/2025
3.0.510 145 5/8/2025
3.0.509 898 5/8/2025
3.0.508 236 5/7/2025
3.0.507 147 5/7/2025
3.0.506 3,618 5/7/2025
3.0.505 20,306 5/5/2025
3.0.504 3,016 5/5/2025
3.0.503 225 5/5/2025
3.0.502 140 5/5/2025
3.0.501 5,088 5/5/2025
3.0.500 1,110 5/5/2025
3.0.499 144 5/5/2025
3.0.498 223 5/5/2025
3.0.497 141 5/5/2025
3.0.496 305 5/5/2025
3.0.495 8,375 5/5/2025
3.0.494 141 5/5/2025
3.0.493 27,296 4/27/2025
3.0.492 100 4/27/2025
3.0.491 5,488 4/26/2025
3.0.490 11,882 4/8/2025
3.0.489 2,375 4/8/2025
3.0.488 162 4/8/2025
3.0.487 164 4/8/2025
3.0.486 3,066 4/8/2025
3.0.485 248 4/8/2025
3.0.484 1,123 4/8/2025
3.0.483 2,705 4/8/2025
3.0.482 28,199 4/8/2025
3.0.481 489 4/8/2025
3.0.480 56,327 4/6/2025
3.0.479 8,548 4/6/2025
3.0.478 2,998 4/6/2025
3.0.477 3,423 4/6/2025
3.0.476 2,693 4/6/2025
3.0.475 143 4/6/2025
3.0.474 145 4/6/2025
3.0.473 8,666 4/6/2025
3.0.472 129 4/6/2025
3.0.471 140 4/6/2025
3.0.470 3,540 4/5/2025
3.0.469 114 4/5/2025
3.0.468 34,658 4/4/2025
3.0.467 103 4/4/2025
3.0.466 193 4/4/2025
3.0.465 9,255 4/4/2025
3.0.464 149,091 3/11/2025
3.0.463 11,996 3/11/2025
3.0.462 167 3/11/2025
3.0.461 8,670 3/11/2025
3.0.460 172 3/11/2025
3.0.459 55,424 3/1/2025
3.0.458 6,567 3/1/2025
3.0.457 101 3/1/2025
3.0.456 4,323 3/1/2025
3.0.455 101 3/1/2025
3.0.454 101 3/1/2025
3.0.453 2,222 3/1/2025
3.0.452 106 3/1/2025
3.0.451 107 3/1/2025
3.0.450 106 3/1/2025
3.0.449 111 3/1/2025
3.0.448 38,563 2/24/2025
3.0.447 1,723 2/24/2025
3.0.446 36,539 2/21/2025
3.0.445 27,747 2/18/2025
3.0.444 1,598 2/18/2025
3.0.443 112 2/18/2025
3.0.442 115 2/18/2025
3.0.441 27,679 2/13/2025
3.0.440 21,451 2/11/2025
3.0.439 4,132 2/11/2025
3.0.438 7,151 2/11/2025
3.0.437 5,557 2/11/2025
3.0.436 3,387 2/10/2025
3.0.435 127 2/10/2025
3.0.434 2,957 2/10/2025
3.0.433 12,526 2/10/2025
3.0.432 5,933 2/10/2025
3.0.431 310 2/10/2025
3.0.430 107 2/10/2025
3.0.429 18,095 2/10/2025
3.0.428 121 2/10/2025
3.0.427 27,556 2/8/2025
3.0.426 2,430 2/7/2025
3.0.425 112 2/7/2025
3.0.424 8,983 2/7/2025
3.0.423 3,182 2/7/2025
3.0.422 2,415 2/7/2025
3.0.421 115 2/7/2025
3.0.420 113 2/7/2025
3.0.419 2,471 2/7/2025
3.0.418 130 2/7/2025
3.0.417 109 2/7/2025
3.0.416 113 2/7/2025
3.0.415 5,309 2/7/2025
3.0.414 141 2/7/2025
3.0.413 113 2/7/2025
3.0.412 64,667 1/27/2025
3.0.411 2,941 1/27/2025
3.0.410 152 1/27/2025
3.0.409 6,373 1/27/2025
3.0.408 1,423 1/27/2025
3.0.407 117 1/27/2025
3.0.406 105 1/27/2025
3.0.405 24,510 1/25/2025
3.0.404 20,765 1/24/2025
3.0.403 19,269 1/24/2025
3.0.402 494 1/24/2025
3.0.401 6,601 1/23/2025
3.0.400 105 1/23/2025
3.0.398 7,070 1/23/2025
3.0.397 22,267 1/21/2025
3.0.396 119 1/21/2025
3.0.395 167 1/21/2025
3.0.394 19,171 1/20/2025
3.0.393 4,564 1/20/2025
3.0.392 1,822 1/20/2025
3.0.391 123 1/20/2025
3.0.390 10,561 1/20/2025
3.0.389 106 1/20/2025
3.0.388 4,054 1/20/2025
3.0.387 124 1/20/2025
3.0.386 107 1/20/2025
3.0.385 8,826 1/20/2025
3.0.384 107 1/20/2025
3.0.383 110 1/20/2025
3.0.382 103 1/20/2025
3.0.381 27,730 1/19/2025
3.0.380 318 1/19/2025
3.0.379 96 1/19/2025
3.0.378 16,067 1/18/2025
3.0.377 15,111 1/16/2025
3.0.376 17,170 1/16/2025
3.0.375 14,340 1/16/2025
3.0.374 12,833 1/15/2025
3.0.373 5,025 1/15/2025
3.0.372 3,753 1/15/2025
3.0.371 7,078 1/15/2025
3.0.370 5,695 1/15/2025
3.0.369 3,069 1/14/2025
3.0.368 1,220 1/14/2025
3.0.367 693 1/14/2025
3.0.366 245 1/14/2025
3.0.365 101 1/14/2025
3.0.364 3,599 1/14/2025
3.0.363 2,182 1/14/2025
3.0.362 99 1/14/2025
3.0.361 5,236 1/14/2025
3.0.360 22,939 1/12/2025
3.0.359 15,970 1/10/2025
3.0.358 4,568 1/10/2025
3.0.357 108 1/10/2025
3.0.356 109 1/10/2025
3.0.355 3,934 1/10/2025
3.0.354 117 1/10/2025
3.0.353 144 1/10/2025
3.0.352 116 1/10/2025
3.0.351 25,651 1/2/2025
3.0.350 169 1/2/2025
3.0.349 127 1/2/2025
3.0.348 6,609 1/2/2025
3.0.347 137 1/2/2025
3.0.346 137 1/2/2025
3.0.345 1,644 1/2/2025
3.0.344 17,053 1/1/2025
3.0.343 147 1/1/2025
3.0.342 151 1/1/2025
3.0.341 577 12/31/2024
3.0.340 131 12/31/2024
3.0.339 134 12/31/2024
3.0.338 2,141 12/31/2024
3.0.337 156 12/31/2024
3.0.336 137 12/31/2024
3.0.335 166 12/31/2024
3.0.334 8,147 12/31/2024
3.0.333 22,073 12/31/2024
3.0.332 120 12/31/2024
3.0.331 142 12/31/2024
3.0.330 9,801 12/31/2024
3.0.329 137 12/31/2024
3.0.328 128 12/31/2024
3.0.327 4,311 12/31/2024
3.0.326 40,255 12/24/2024
3.0.325 116 12/24/2024
3.0.324 121 12/24/2024
3.0.323 6,815 12/24/2024
3.0.322 137 12/24/2024
3.0.321 122 12/24/2024
3.0.320 1,628 12/24/2024
3.0.319 40,512 12/22/2024
3.0.318 490 12/22/2024
3.0.317 131 12/22/2024
3.0.316 6,727 12/21/2024
3.0.315 112 12/21/2024
3.0.314 1,052 12/21/2024
3.0.313 9,780 12/21/2024
3.0.312 120 12/21/2024
3.0.311 3,407 12/21/2024
3.0.310 5,076 12/21/2024
3.0.309 142 12/21/2024
3.0.308 7,245 12/21/2024
3.0.307 132 12/21/2024
3.0.306 633 12/21/2024
3.0.305 5,118 12/21/2024
3.0.304 117 12/21/2024
3.0.303 7,308 12/20/2024
3.0.302 3,818 12/20/2024
3.0.301 117 12/20/2024
3.0.300 14,618 12/19/2024
3.0.299 1,488 12/19/2024
3.0.298 677 12/18/2024
3.0.297 121 12/18/2024
3.0.296 254 12/18/2024
3.0.295 25,159 12/17/2024
3.0.294 3,900 12/17/2024
3.0.293 152 12/17/2024
3.0.292 387 12/16/2024
3.0.291 130 12/16/2024
3.0.290 125 12/16/2024
3.0.289 128 12/16/2024
3.0.288 56,379 12/5/2024
3.0.287 24,262 12/4/2024
3.0.286 8,589 12/4/2024
3.0.285 5,675 12/4/2024
3.0.284 3,394 12/4/2024
3.0.283 7,061 12/4/2024
3.0.282 223 12/4/2024
3.0.281 14,250 12/3/2024
3.0.280 149 12/3/2024
3.0.279 6,808 12/3/2024
3.0.278 4,126 12/2/2024
3.0.277 128 12/2/2024
3.0.276 6,157 12/2/2024
3.0.275 14,526 12/1/2024
3.0.274 5,907 12/1/2024
3.0.273 143 12/1/2024
3.0.272 148 12/1/2024
3.0.271 40,657 11/19/2024
3.0.270 148 11/19/2024
3.0.269 5,421 11/19/2024
3.0.268 159 11/19/2024
3.0.267 133 11/19/2024
3.0.266 14,335 11/19/2024
3.0.265 3,781 11/19/2024
3.0.264 28,232 11/14/2024
3.0.263 160 11/14/2024
3.0.262 3,011 11/14/2024
3.0.261 140 11/14/2024
3.0.260 136 11/14/2024
3.0.259 1,831 11/13/2024
3.0.258 152 11/13/2024
2.1.257 51,349 11/8/2024
2.1.256 14,329 11/8/2024
2.1.255 111 11/8/2024
2.1.254 108 11/8/2024
2.1.253 48,353 10/28/2024
2.1.252 114,022 10/1/2024
2.1.251 16,922 9/30/2024
2.1.250 30,158 9/27/2024
2.1.249 128 9/27/2024
2.1.248 118 9/27/2024
2.1.247 2,838 9/27/2024
2.1.246 112 9/27/2024
2.1.245 111 9/27/2024
2.1.244 112 9/27/2024
2.1.243 54,615 9/23/2024
2.1.242 814 9/23/2024
2.1.241 3,769 9/23/2024
2.1.240 121 9/23/2024
2.1.239 1,311 9/23/2024
2.1.238 145 9/23/2024
2.1.237 7,383 9/22/2024
2.1.236 28,395 9/17/2024
2.1.235 258 9/17/2024
2.1.234 134 9/17/2024
2.1.233 226 9/17/2024
2.1.232 145 9/17/2024
2.1.231 4,212 9/17/2024
2.1.230 166 9/17/2024
2.1.229 50,133 9/11/2024
2.1.228 17,102 9/11/2024
2.1.227 23,585 9/9/2024
2.1.226 9,704 9/9/2024
2.1.225 5,941 9/9/2024
2.1.224 8,361 9/9/2024
2.1.223 8,993 9/9/2024
2.1.222 133 9/9/2024
2.1.221 161 9/9/2024
2.1.220 36,598 9/5/2024
2.1.219 7,222 9/5/2024
2.1.218 131 9/5/2024
2.1.217 145 9/5/2024
2.1.216 1,223 9/5/2024
2.1.215 158 9/5/2024
2.1.214 3,925 9/5/2024
2.1.213 20,889 9/4/2024
2.1.212 49,829 8/20/2024
2.1.211 5,684 8/20/2024
2.1.210 140 8/20/2024
2.1.209 140 8/20/2024
2.1.208 5,041 8/20/2024
2.1.207 144 8/20/2024
2.1.206 136 8/20/2024
2.1.205 73,068 7/24/2024
2.1.204 5,832 7/24/2024
2.1.203 106 7/24/2024
2.1.202 28,047 7/13/2024
2.1.201 139 7/13/2024
2.1.200 15,777 7/10/2024
2.1.199 4,664 7/10/2024
2.1.198 163 7/10/2024
2.1.196 4,319 7/9/2024
2.1.194 3,381 7/9/2024
2.1.193 19,603 7/9/2024
2.1.192 5,975 7/9/2024
2.1.191 676 7/9/2024
2.1.190 134 7/9/2024
2.1.189 9,244 7/9/2024
2.1.188 2,838 7/8/2024
2.1.187 128 7/8/2024
2.1.186 146 7/8/2024
2.1.185 118 7/8/2024
2.1.184 121 7/8/2024
2.1.183 5,444 7/8/2024
2.1.182 139 7/8/2024
2.1.181 128 7/8/2024
2.1.180 589 7/8/2024
2.1.179 24,928 7/7/2024
2.1.178 3,280 7/7/2024
2.1.177 22,187 7/3/2024
2.1.176 37,531 6/14/2024
2.1.174 43,429 5/27/2024
2.1.173 3,115 5/27/2024
2.1.172 115 5/27/2024
2.1.171 20,341 5/25/2024
2.1.170 7,501 5/25/2024
2.1.169 131 5/25/2024
2.1.168 136 5/25/2024
2.1.167 4,437 5/25/2024
2.1.166 140 5/25/2024
2.1.165 163 5/25/2024
2.1.164 151 5/25/2024
2.1.163 4,132 5/25/2024
2.1.162 124 5/25/2024
2.1.161 19,001 5/22/2024
2.1.160 4,794 5/22/2024
2.1.159 2,428 5/22/2024
2.1.158 133 5/22/2024
2.1.157 134 5/22/2024
2.1.156 140 5/22/2024
2.1.155 9,859 5/22/2024
2.1.154 16,412 5/16/2024
2.1.153 47,304 4/28/2024
2.1.152 120 4/28/2024
2.1.151 7,410 4/28/2024
2.1.150 121 4/28/2024
2.1.149 135 4/28/2024
2.1.148 703 4/28/2024
2.1.147 132 4/28/2024
2.1.146 140 4/28/2024
2.1.145 5,236 4/27/2024
2.1.144 163 4/27/2024
2.1.143 127 4/27/2024
2.1.142 38,105 4/12/2024
2.1.141 170 4/12/2024
2.1.140 4,840 4/12/2024
2.1.139 162 4/12/2024
2.1.138 141 4/12/2024
2.1.137 3,157 4/12/2024
2.1.136 154 4/12/2024
2.1.135 147 4/12/2024
2.1.134 138 4/12/2024
2.1.133 27,460 4/1/2024
2.1.132 18,632 3/25/2024
2.1.131 20,221 3/18/2024
2.1.130 222 3/18/2024
2.1.129 380 3/18/2024
2.1.128 18,949 3/13/2024
2.1.127 210 3/13/2024
2.1.126 198 3/13/2024
2.1.125 1,704 3/13/2024
2.1.124 193 3/13/2024
2.1.123 203 3/13/2024
2.1.122 38,008 3/8/2024
2.1.121 15,946 3/3/2024
2.1.120 13,369 3/2/2024
2.1.119 2,087 3/1/2024
2.1.117 12,149 2/28/2024
2.1.116 23,098 2/25/2024
2.1.115 243 2/25/2024
2.1.114 18,597 2/21/2024
2.1.113 4,739 2/21/2024
2.1.112 2,841 2/21/2024
2.1.111 1,906 2/21/2024
2.1.110 265 2/21/2024
2.1.109 6,025 2/21/2024
2.1.108 256 2/21/2024
2.1.107 272 2/21/2024
2.1.106 15,007 2/20/2024
2.1.105 1,667 2/20/2024
2.1.104 10,051 2/19/2024
2.1.103 10,272 2/16/2024
2.1.102 6,993 2/16/2024
2.1.101 260 2/16/2024
2.1.100 6,628 2/16/2024
2.1.99 40,380 2/9/2024
2.1.98 36,484 2/7/2024
2.1.97 4,618 2/6/2024
2.1.96 2,820 2/6/2024
2.1.95 477 2/6/2024
2.1.94 283 2/6/2024
2.1.93 13,523 2/4/2024
2.1.92 98,903 1/15/2024
2.1.91 5,381 1/15/2024
2.1.90 394 1/15/2024
2.1.89 3,146 1/15/2024
2.1.88 341 1/15/2024
2.1.87 37,519 1/7/2024
2.1.86 7,398 1/5/2024
2.1.85 4,483 1/5/2024
2.1.84 374 1/5/2024
2.1.83 399 1/5/2024
2.1.82 5,091 1/5/2024
2.1.81 12,785 1/1/2024
2.1.80 450 1/1/2024
2.1.79 8,385 12/28/2023
2.1.78 4,281 12/28/2023
2.1.77 4,163 12/27/2023
2.1.76 425 12/27/2023
2.1.75 426 12/27/2023
2.1.74 5,030 12/27/2023
2.1.73 401 12/27/2023
2.1.72 443 12/27/2023
2.1.71 15,763 12/25/2023
2.1.70 894 12/25/2023
2.1.69 436 12/25/2023
2.1.68 439 12/25/2023
2.1.67 4,747 12/25/2023
2.1.66 12,792 12/24/2023
2.1.65 7,734 12/23/2023
2.1.64 2,091 12/23/2023
2.1.63 412 12/23/2023
2.1.62 5,552 12/23/2023
2.1.61 449 12/23/2023
2.1.60 404 12/23/2023
2.1.59 1,855 12/23/2023
2.1.58 405 12/23/2023
2.1.57 13,781 12/19/2023
2.1.56 4,616 12/18/2023
2.1.55 12,906 12/10/2023
2.1.51 6,320 12/10/2023
2.1.50 11,098 12/9/2023
2.1.49 450 12/9/2023
2.1.48 531 12/9/2023
2.1.47 463 12/9/2023
2.1.46 465 12/9/2023
2.1.45 485 12/9/2023
2.1.44 7,493 12/9/2023
2.1.43 11,643 12/6/2023
2.1.42 9,359 12/4/2023
2.1.41 5,969 12/4/2023
2.1.40 503 12/4/2023
2.1.39 904 12/4/2023
2.1.38 535 12/4/2023
2.1.37 15,786 11/23/2023
2.1.36 449 11/23/2023
2.1.35 838 11/23/2023
2.1.34 470 11/23/2023
2.1.33 2,068 11/23/2023
2.1.32 3,231 11/23/2023
2.1.31 9,565 11/20/2023
2.1.30 3,877 11/20/2023
2.1.29 6,833 11/19/2023
2.1.28 1,187 11/19/2023
2.1.27 468 11/19/2023
2.1.26 468 11/19/2023
2.1.25 454 11/19/2023
2.1.24 2,357 11/19/2023
2.1.23 10,068 11/18/2023
2.1.22 497 11/18/2023
2.1.21 3,344 11/18/2023
2.1.20 2,267 11/18/2023
2.1.19 483 11/18/2023
2.1.18 5,835 11/17/2023
2.1.17 1,484 11/17/2023
2.1.16 490 11/17/2023
2.1.15 474 11/17/2023
2.1.14 1,896 11/17/2023
2.1.13 8,008 11/17/2023
2.1.12 2,121 11/17/2023
2.1.11 469 11/17/2023
2.1.10 512 11/17/2023
2.1.9 516 11/17/2023
2.1.8 3,707 11/17/2023
2.1.7 1,678 11/16/2023
2.1.6 428 11/16/2023
2.1.5 924 11/16/2023
2.1.4 461 11/16/2023
2.0.140 5,582 11/15/2023
2.0.139 491 11/15/2023
2.0.138 470 11/15/2023
2.0.137 477 11/15/2023
2.0.136 467 11/15/2023
2.0.3 459 11/16/2023
2.0.2 475 11/16/2023
2.0.1 427 11/16/2023
1.0.135 12,294 11/10/2023
1.0.134 497 11/10/2023
1.0.133 5,856 11/9/2023
1.0.132 447 11/9/2023
1.0.131 493 11/9/2023
1.0.130 2,115 11/8/2023
1.0.129 10,592 11/6/2023
1.0.128 470 11/6/2023
1.0.127 500 11/6/2023
1.0.126 503 11/6/2023
1.0.125 3,943 11/3/2023
1.0.124 7,114 11/2/2023
1.0.123 520 11/2/2023
1.0.122 500 11/2/2023
1.0.121 470 11/2/2023
1.0.120 3,797 11/1/2023
1.0.119 19,808 10/18/2023
1.0.118 532 10/18/2023
1.0.117 535 10/18/2023
1.0.116 507 10/18/2023
1.0.115 4,270 10/17/2023
1.0.114 4,990 10/16/2023
1.0.113 526 10/16/2023
1.0.112 515 10/16/2023
1.0.111 545 10/16/2023
1.0.110 7,410 10/13/2023
1.0.109 567 10/13/2023
1.0.108 13,940 9/19/2023
1.0.107 556 9/19/2023
1.0.106 568 9/19/2023
1.0.105 511 9/19/2023
1.0.104 6,658 9/18/2023
1.0.103 563 9/18/2023
1.0.102 16,297 8/30/2023
1.0.101 632 8/30/2023
1.0.100 577 8/30/2023
1.0.99 578 8/30/2023
1.0.98 594 8/30/2023
1.0.97 12,114 8/25/2023
1.0.96 5,530 8/24/2023
1.0.95 586 8/24/2023
1.0.94 10,769 8/18/2023
1.0.93 610 8/18/2023
1.0.92 4,975 8/17/2023
1.0.91 582 8/17/2023
1.0.90 599 8/17/2023
1.0.89 18,494 8/8/2023
1.0.88 644 8/8/2023
1.0.87 6,005 8/7/2023
1.0.86 649 8/7/2023
1.0.85 636 8/7/2023
1.0.84 22,425 7/10/2023
1.0.83 695 7/10/2023
1.0.82 711 7/10/2023
1.0.81 722 7/10/2023
1.0.80 5,081 7/7/2023
1.0.79 670 7/7/2023
1.0.78 16,681 6/29/2023
1.0.77 4,609 6/28/2023
1.0.76 697 6/28/2023
1.0.75 722 6/28/2023
1.0.74 48,063 6/7/2023
1.0.73 6,144 6/7/2023
1.0.72 734 6/7/2023
1.0.71 728 6/7/2023
1.0.70 7,472 6/6/2023
1.0.69 715 6/6/2023
1.0.68 2,878 6/5/2023
1.0.67 705 6/5/2023
1.0.66 7,298 6/2/2023
1.0.65 740 6/2/2023
1.0.64 719 6/2/2023
1.0.63 28,851 5/30/2023
1.0.62 713 5/30/2023
1.0.61 8,364 5/29/2023
1.0.60 720 5/29/2023
1.0.59 6,660 5/26/2023
1.0.58 12,445 5/25/2023
1.0.57 729 5/25/2023
1.0.56 6,412 5/24/2023
1.0.55 745 5/24/2023
1.0.54 741 5/24/2023
1.0.53 721 5/24/2023
1.0.52 825 5/24/2023
1.0.51 4,277 5/23/2023
1.0.50 722 5/23/2023
1.0.49 734 5/23/2023
1.0.46 13,531 5/22/2023
1.0.45 11,053 5/18/2023
1.0.44 6,612 5/17/2023
1.0.43 711 5/17/2023
1.0.42 698 5/17/2023
1.0.41 694 5/17/2023
1.0.40 17,470 4/24/2023
1.0.39 2,430 4/24/2023
1.0.38 772 4/24/2023
1.0.37 4,097 4/21/2023
1.0.36 722 4/21/2023
1.0.35 736 4/21/2023
1.0.34 4,550 4/20/2023
1.0.33 913 4/20/2023
1.0.32 857 4/20/2023
1.0.31 4,199 4/19/2023
1.0.30 1,931 4/18/2023
1.0.29 760 4/18/2023
1.0.28 1,903 4/18/2023
1.0.27 3,389 4/17/2023
1.0.26 837 4/16/2023
1.0.25 778 4/16/2023
1.0.24 3,537 4/14/2023
1.0.23 2,583 4/13/2023
1.0.22 2,481 4/12/2023
1.0.21 763 4/12/2023
1.0.20 760 4/12/2023
1.0.19 1,783 4/11/2023
1.0.18 827 4/11/2023
1.0.17 2,631 4/11/2023
1.0.16 3,015 4/7/2023
1.0.15 3,855 4/3/2023
1.0.14 806 4/3/2023
1.0.13 796 4/3/2023
1.0.12 754 4/3/2023
1.0.11 2,076 4/1/2023
1.0.10 1,188 3/30/2023
1.0.9 929 3/26/2023
1.0.7 4,016 2/27/2023
1.0.6 839 2/26/2023
1.0.5 817 2/22/2023
1.0.4 1,012 2/22/2023
1.0.3 849 2/22/2023
1.0.2 1,391 2/12/2023
1.0.1 1,043 2/12/2023