Soenneker.Extensions.String 3.0.478

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 3.0.478
                    
NuGet\Install-Package Soenneker.Extensions.String -Version 3.0.478
                    
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.478" />
                    
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.478" />
                    
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.478
                    
#r "nuget: Soenneker.Extensions.String, 3.0.478"
                    
#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.478
                    
Install Soenneker.Extensions.String as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.String&version=3.0.478
                    
Install Soenneker.Extensions.String 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (44)

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.483 0 4/8/2025
3.0.482 3,131 4/8/2025
3.0.481 219 4/8/2025
3.0.480 31,285 4/6/2025
3.0.479 7,139 4/6/2025
3.0.478 2,102 4/6/2025
3.0.477 2,147 4/6/2025
3.0.476 1,690 4/6/2025
3.0.475 65 4/6/2025
3.0.474 69 4/6/2025
3.0.473 7,102 4/6/2025
3.0.472 76 4/6/2025
3.0.471 81 4/6/2025
3.0.470 2,416 4/5/2025
3.0.469 70 4/5/2025
3.0.468 26,794 4/4/2025
3.0.467 79 4/4/2025
3.0.466 170 4/4/2025
3.0.465 7,936 4/4/2025
3.0.464 132,822 3/11/2025
3.0.463 11,968 3/11/2025
3.0.462 140 3/11/2025
3.0.461 8,647 3/11/2025
3.0.460 151 3/11/2025
3.0.459 55,271 3/1/2025
3.0.458 6,553 3/1/2025
3.0.457 88 3/1/2025
3.0.456 4,306 3/1/2025
3.0.455 88 3/1/2025
3.0.454 86 3/1/2025
3.0.453 2,204 3/1/2025
3.0.452 89 3/1/2025
3.0.451 88 3/1/2025
3.0.450 86 3/1/2025
3.0.449 89 3/1/2025
3.0.448 38,533 2/24/2025
3.0.447 1,703 2/24/2025
3.0.446 36,497 2/21/2025
3.0.445 27,708 2/18/2025
3.0.444 1,582 2/18/2025
3.0.443 96 2/18/2025
3.0.442 101 2/18/2025
3.0.441 27,412 2/13/2025
3.0.440 21,395 2/11/2025
3.0.439 4,114 2/11/2025
3.0.438 7,126 2/11/2025
3.0.437 5,539 2/11/2025
3.0.436 3,367 2/10/2025
3.0.435 108 2/10/2025
3.0.434 2,939 2/10/2025
3.0.433 12,506 2/10/2025
3.0.432 5,918 2/10/2025
3.0.431 298 2/10/2025
3.0.430 92 2/10/2025
3.0.429 18,078 2/10/2025
3.0.428 102 2/10/2025
3.0.427 27,538 2/8/2025
3.0.426 2,415 2/7/2025
3.0.425 96 2/7/2025
3.0.424 8,961 2/7/2025
3.0.423 3,166 2/7/2025
3.0.422 2,394 2/7/2025
3.0.421 102 2/7/2025
3.0.420 97 2/7/2025
3.0.419 2,453 2/7/2025
3.0.418 110 2/7/2025
3.0.417 95 2/7/2025
3.0.416 96 2/7/2025
3.0.415 5,292 2/7/2025
3.0.414 128 2/7/2025
3.0.413 93 2/7/2025
3.0.412 64,621 1/27/2025
3.0.411 2,929 1/27/2025
3.0.410 127 1/27/2025
3.0.409 6,355 1/27/2025
3.0.408 1,410 1/27/2025
3.0.407 95 1/27/2025
3.0.406 94 1/27/2025
3.0.405 24,484 1/25/2025
3.0.404 20,750 1/24/2025
3.0.403 19,238 1/24/2025
3.0.402 479 1/24/2025
3.0.401 6,582 1/23/2025
3.0.400 93 1/23/2025
3.0.398 7,047 1/23/2025
3.0.397 22,233 1/21/2025
3.0.396 97 1/21/2025
3.0.395 131 1/21/2025
3.0.394 19,145 1/20/2025
3.0.393 4,546 1/20/2025
3.0.392 1,812 1/20/2025
3.0.391 106 1/20/2025
3.0.390 10,547 1/20/2025
3.0.389 92 1/20/2025
3.0.388 4,031 1/20/2025
3.0.387 109 1/20/2025
3.0.386 93 1/20/2025
3.0.385 8,802 1/20/2025
3.0.384 93 1/20/2025
3.0.383 95 1/20/2025
3.0.382 92 1/20/2025
3.0.381 27,697 1/19/2025
3.0.380 296 1/19/2025
3.0.379 83 1/19/2025
3.0.378 16,045 1/18/2025
3.0.377 15,073 1/16/2025
3.0.376 17,132 1/16/2025
3.0.375 14,307 1/16/2025
3.0.374 12,801 1/15/2025
3.0.373 5,008 1/15/2025
3.0.372 3,679 1/15/2025
3.0.371 7,055 1/15/2025
3.0.370 5,682 1/15/2025
3.0.369 3,051 1/14/2025
3.0.368 1,203 1/14/2025
3.0.367 680 1/14/2025
3.0.366 230 1/14/2025
3.0.365 84 1/14/2025
3.0.364 3,587 1/14/2025
3.0.363 2,168 1/14/2025
3.0.362 84 1/14/2025
3.0.361 5,210 1/14/2025
3.0.360 22,911 1/12/2025
3.0.359 15,937 1/10/2025
3.0.358 4,549 1/10/2025
3.0.357 95 1/10/2025
3.0.356 98 1/10/2025
3.0.355 3,901 1/10/2025
3.0.354 96 1/10/2025
3.0.353 130 1/10/2025
3.0.352 103 1/10/2025
3.0.351 25,605 1/2/2025
3.0.350 154 1/2/2025
3.0.349 114 1/2/2025
3.0.348 6,591 1/2/2025
3.0.347 124 1/2/2025
3.0.346 119 1/2/2025
3.0.345 1,615 1/2/2025
3.0.344 17,012 1/1/2025
3.0.343 131 1/1/2025
3.0.342 133 1/1/2025
3.0.341 564 12/31/2024
3.0.340 116 12/31/2024
3.0.339 119 12/31/2024
3.0.338 2,121 12/31/2024
3.0.337 136 12/31/2024
3.0.336 123 12/31/2024
3.0.335 150 12/31/2024
3.0.334 8,112 12/31/2024
3.0.333 22,037 12/31/2024
3.0.332 104 12/31/2024
3.0.331 119 12/31/2024
3.0.330 9,779 12/31/2024
3.0.329 118 12/31/2024
3.0.328 114 12/31/2024
3.0.327 4,296 12/31/2024
3.0.326 40,216 12/24/2024
3.0.325 105 12/24/2024
3.0.324 106 12/24/2024
3.0.323 6,802 12/24/2024
3.0.322 111 12/24/2024
3.0.321 107 12/24/2024
3.0.320 1,607 12/24/2024
3.0.319 40,453 12/22/2024
3.0.318 477 12/22/2024
3.0.317 112 12/22/2024
3.0.316 6,704 12/21/2024
3.0.315 100 12/21/2024
3.0.314 1,036 12/21/2024
3.0.313 9,746 12/21/2024
3.0.312 108 12/21/2024
3.0.311 3,393 12/21/2024
3.0.310 5,055 12/21/2024
3.0.309 128 12/21/2024
3.0.308 7,223 12/21/2024
3.0.307 119 12/21/2024
3.0.306 619 12/21/2024
3.0.305 5,092 12/21/2024
3.0.304 102 12/21/2024
3.0.303 7,282 12/20/2024
3.0.302 3,803 12/20/2024
3.0.301 105 12/20/2024
3.0.300 14,587 12/19/2024
3.0.299 1,475 12/19/2024
3.0.298 659 12/18/2024
3.0.297 105 12/18/2024
3.0.296 243 12/18/2024
3.0.295 25,125 12/17/2024
3.0.294 3,883 12/17/2024
3.0.293 125 12/17/2024
3.0.292 365 12/16/2024
3.0.291 116 12/16/2024
3.0.290 109 12/16/2024
3.0.289 115 12/16/2024
3.0.288 56,316 12/5/2024
3.0.287 24,215 12/4/2024
3.0.286 8,571 12/4/2024
3.0.285 5,652 12/4/2024
3.0.284 3,376 12/4/2024
3.0.283 7,037 12/4/2024
3.0.282 212 12/4/2024
3.0.281 14,208 12/3/2024
3.0.280 134 12/3/2024
3.0.279 6,791 12/3/2024
3.0.278 4,112 12/2/2024
3.0.277 114 12/2/2024
3.0.276 6,143 12/2/2024
3.0.275 14,501 12/1/2024
3.0.274 5,890 12/1/2024
3.0.273 124 12/1/2024
3.0.272 131 12/1/2024
3.0.271 40,303 11/19/2024
3.0.270 134 11/19/2024
3.0.269 5,398 11/19/2024
3.0.268 143 11/19/2024
3.0.267 120 11/19/2024
3.0.266 14,297 11/19/2024
3.0.265 3,769 11/19/2024
3.0.264 28,178 11/14/2024
3.0.263 134 11/14/2024
3.0.262 2,996 11/14/2024
3.0.261 127 11/14/2024
3.0.260 125 11/14/2024
3.0.259 1,808 11/13/2024
3.0.258 132 11/13/2024
2.1.257 50,592 11/8/2024
2.1.256 14,296 11/8/2024
2.1.255 96 11/8/2024
2.1.254 93 11/8/2024
2.1.253 48,293 10/28/2024
2.1.252 113,015 10/1/2024
2.1.251 16,891 9/30/2024
2.1.250 29,931 9/27/2024
2.1.249 113 9/27/2024
2.1.248 102 9/27/2024
2.1.247 2,811 9/27/2024
2.1.246 99 9/27/2024
2.1.245 96 9/27/2024
2.1.244 99 9/27/2024
2.1.243 54,264 9/23/2024
2.1.242 797 9/23/2024
2.1.241 3,753 9/23/2024
2.1.240 105 9/23/2024
2.1.239 1,288 9/23/2024
2.1.238 124 9/23/2024
2.1.237 7,347 9/22/2024
2.1.236 28,316 9/17/2024
2.1.235 228 9/17/2024
2.1.234 119 9/17/2024
2.1.233 213 9/17/2024
2.1.232 120 9/17/2024
2.1.231 4,195 9/17/2024
2.1.230 150 9/17/2024
2.1.229 50,006 9/11/2024
2.1.228 17,075 9/11/2024
2.1.227 23,531 9/9/2024
2.1.226 9,683 9/9/2024
2.1.225 5,926 9/9/2024
2.1.224 8,341 9/9/2024
2.1.223 8,975 9/9/2024
2.1.222 115 9/9/2024
2.1.221 137 9/9/2024
2.1.220 36,510 9/5/2024
2.1.219 7,192 9/5/2024
2.1.218 116 9/5/2024
2.1.217 131 9/5/2024
2.1.216 1,205 9/5/2024
2.1.215 117 9/5/2024
2.1.214 3,910 9/5/2024
2.1.213 20,849 9/4/2024
2.1.212 49,755 8/20/2024
2.1.211 5,656 8/20/2024
2.1.210 125 8/20/2024
2.1.209 126 8/20/2024
2.1.208 5,020 8/20/2024
2.1.207 129 8/20/2024
2.1.206 119 8/20/2024
2.1.205 72,938 7/24/2024
2.1.204 5,813 7/24/2024
2.1.203 91 7/24/2024
2.1.202 27,678 7/13/2024
2.1.201 124 7/13/2024
2.1.200 15,730 7/10/2024
2.1.199 4,648 7/10/2024
2.1.198 139 7/10/2024
2.1.196 4,296 7/9/2024
2.1.194 3,363 7/9/2024
2.1.193 19,560 7/9/2024
2.1.192 5,940 7/9/2024
2.1.191 662 7/9/2024
2.1.190 115 7/9/2024
2.1.189 9,219 7/9/2024
2.1.188 2,815 7/8/2024
2.1.187 115 7/8/2024
2.1.186 136 7/8/2024
2.1.185 106 7/8/2024
2.1.184 109 7/8/2024
2.1.183 5,414 7/8/2024
2.1.182 128 7/8/2024
2.1.181 110 7/8/2024
2.1.180 568 7/8/2024
2.1.179 24,884 7/7/2024
2.1.178 3,259 7/7/2024
2.1.177 22,142 7/3/2024
2.1.176 37,387 6/14/2024
2.1.174 43,377 5/27/2024
2.1.173 3,094 5/27/2024
2.1.172 103 5/27/2024
2.1.171 20,263 5/25/2024
2.1.170 7,464 5/25/2024
2.1.169 118 5/25/2024
2.1.168 118 5/25/2024
2.1.167 4,420 5/25/2024
2.1.166 111 5/25/2024
2.1.165 128 5/25/2024
2.1.164 135 5/25/2024
2.1.163 4,108 5/25/2024
2.1.162 111 5/25/2024
2.1.161 18,978 5/22/2024
2.1.160 4,776 5/22/2024
2.1.159 2,406 5/22/2024
2.1.158 120 5/22/2024
2.1.157 120 5/22/2024
2.1.156 126 5/22/2024
2.1.155 9,829 5/22/2024
2.1.154 16,378 5/16/2024
2.1.153 47,232 4/28/2024
2.1.152 106 4/28/2024
2.1.151 7,364 4/28/2024
2.1.150 107 4/28/2024
2.1.149 122 4/28/2024
2.1.148 686 4/28/2024
2.1.147 120 4/28/2024
2.1.146 128 4/28/2024
2.1.145 5,219 4/27/2024
2.1.144 151 4/27/2024
2.1.143 116 4/27/2024
2.1.142 38,043 4/12/2024
2.1.141 150 4/12/2024
2.1.140 4,825 4/12/2024
2.1.139 147 4/12/2024
2.1.138 127 4/12/2024
2.1.137 3,141 4/12/2024
2.1.136 137 4/12/2024
2.1.135 134 4/12/2024
2.1.134 122 4/12/2024
2.1.133 26,851 4/1/2024
2.1.132 18,581 3/25/2024
2.1.131 20,162 3/18/2024
2.1.130 198 3/18/2024
2.1.129 358 3/18/2024
2.1.128 18,890 3/13/2024
2.1.127 185 3/13/2024
2.1.126 183 3/13/2024
2.1.125 1,681 3/13/2024
2.1.124 178 3/13/2024
2.1.123 186 3/13/2024
2.1.122 37,917 3/8/2024
2.1.121 15,900 3/3/2024
2.1.120 13,310 3/2/2024
2.1.119 2,066 3/1/2024
2.1.117 12,095 2/28/2024
2.1.116 22,987 2/25/2024
2.1.115 227 2/25/2024
2.1.114 18,559 2/21/2024
2.1.113 4,718 2/21/2024
2.1.112 2,825 2/21/2024
2.1.111 1,878 2/21/2024
2.1.110 251 2/21/2024
2.1.109 6,000 2/21/2024
2.1.108 244 2/21/2024
2.1.107 259 2/21/2024
2.1.106 14,982 2/20/2024
2.1.105 1,651 2/20/2024
2.1.104 10,012 2/19/2024
2.1.103 10,245 2/16/2024
2.1.102 6,953 2/16/2024
2.1.101 246 2/16/2024
2.1.100 6,599 2/16/2024
2.1.99 40,268 2/9/2024
2.1.98 36,419 2/7/2024
2.1.97 4,589 2/6/2024
2.1.96 2,796 2/6/2024
2.1.95 464 2/6/2024
2.1.94 269 2/6/2024
2.1.93 13,475 2/4/2024
2.1.92 98,790 1/15/2024
2.1.91 5,361 1/15/2024
2.1.90 378 1/15/2024
2.1.89 3,128 1/15/2024
2.1.88 323 1/15/2024
2.1.87 37,455 1/7/2024
2.1.86 7,376 1/5/2024
2.1.85 4,471 1/5/2024
2.1.84 360 1/5/2024
2.1.83 383 1/5/2024
2.1.82 5,075 1/5/2024
2.1.81 12,756 1/1/2024
2.1.80 437 1/1/2024
2.1.79 8,361 12/28/2023
2.1.78 4,259 12/28/2023
2.1.77 4,146 12/27/2023
2.1.76 411 12/27/2023
2.1.75 414 12/27/2023
2.1.74 5,004 12/27/2023
2.1.73 387 12/27/2023
2.1.72 427 12/27/2023
2.1.71 15,705 12/25/2023
2.1.70 879 12/25/2023
2.1.69 426 12/25/2023
2.1.68 426 12/25/2023
2.1.67 4,725 12/25/2023
2.1.66 12,761 12/24/2023
2.1.65 7,711 12/23/2023
2.1.64 2,080 12/23/2023
2.1.63 389 12/23/2023
2.1.62 5,535 12/23/2023
2.1.61 438 12/23/2023
2.1.60 382 12/23/2023
2.1.59 1,833 12/23/2023
2.1.58 391 12/23/2023
2.1.57 13,744 12/19/2023
2.1.56 4,586 12/18/2023
2.1.55 12,873 12/10/2023
2.1.51 6,292 12/10/2023
2.1.50 11,074 12/9/2023
2.1.49 433 12/9/2023
2.1.48 519 12/9/2023
2.1.47 450 12/9/2023
2.1.46 444 12/9/2023
2.1.45 469 12/9/2023
2.1.44 7,474 12/9/2023
2.1.43 11,615 12/6/2023
2.1.42 9,329 12/4/2023
2.1.41 5,957 12/4/2023
2.1.40 493 12/4/2023
2.1.39 898 12/4/2023
2.1.38 529 12/4/2023
2.1.37 15,750 11/23/2023
2.1.36 443 11/23/2023
2.1.35 827 11/23/2023
2.1.34 465 11/23/2023
2.1.33 2,061 11/23/2023
2.1.32 3,220 11/23/2023
2.1.31 9,529 11/20/2023
2.1.30 3,848 11/20/2023
2.1.29 6,812 11/19/2023
2.1.28 1,179 11/19/2023
2.1.27 462 11/19/2023
2.1.26 459 11/19/2023
2.1.25 447 11/19/2023
2.1.24 2,342 11/19/2023
2.1.23 10,050 11/18/2023
2.1.22 489 11/18/2023
2.1.21 3,321 11/18/2023
2.1.20 2,256 11/18/2023
2.1.19 476 11/18/2023
2.1.18 5,821 11/17/2023
2.1.17 1,472 11/17/2023
2.1.16 484 11/17/2023
2.1.15 466 11/17/2023
2.1.14 1,888 11/17/2023
2.1.13 7,990 11/17/2023
2.1.12 2,110 11/17/2023
2.1.11 462 11/17/2023
2.1.10 494 11/17/2023
2.1.9 508 11/17/2023
2.1.8 3,698 11/17/2023
2.1.7 1,671 11/16/2023
2.1.6 420 11/16/2023
2.1.5 916 11/16/2023
2.1.4 456 11/16/2023
2.0.140 5,567 11/15/2023
2.0.139 480 11/15/2023
2.0.138 463 11/15/2023
2.0.137 465 11/15/2023
2.0.136 459 11/15/2023
2.0.3 451 11/16/2023
2.0.2 465 11/16/2023
2.0.1 420 11/16/2023
1.0.135 12,274 11/10/2023
1.0.134 486 11/10/2023
1.0.133 5,840 11/9/2023
1.0.132 436 11/9/2023
1.0.131 481 11/9/2023
1.0.130 2,104 11/8/2023
1.0.129 10,565 11/6/2023
1.0.128 462 11/6/2023
1.0.127 489 11/6/2023
1.0.126 491 11/6/2023
1.0.125 3,931 11/3/2023
1.0.124 7,104 11/2/2023
1.0.123 508 11/2/2023
1.0.122 489 11/2/2023
1.0.121 460 11/2/2023
1.0.120 3,786 11/1/2023
1.0.119 19,772 10/18/2023
1.0.118 523 10/18/2023
1.0.117 528 10/18/2023
1.0.116 502 10/18/2023
1.0.115 4,252 10/17/2023
1.0.114 4,978 10/16/2023
1.0.113 517 10/16/2023
1.0.112 506 10/16/2023
1.0.111 538 10/16/2023
1.0.110 7,388 10/13/2023
1.0.109 558 10/13/2023
1.0.108 13,914 9/19/2023
1.0.107 550 9/19/2023
1.0.106 562 9/19/2023
1.0.105 505 9/19/2023
1.0.104 6,641 9/18/2023
1.0.103 547 9/18/2023
1.0.102 16,269 8/30/2023
1.0.101 622 8/30/2023
1.0.100 567 8/30/2023
1.0.99 567 8/30/2023
1.0.98 586 8/30/2023
1.0.97 12,062 8/25/2023
1.0.96 5,508 8/24/2023
1.0.95 576 8/24/2023
1.0.94 10,723 8/18/2023
1.0.93 600 8/18/2023
1.0.92 4,952 8/17/2023
1.0.91 572 8/17/2023
1.0.90 584 8/17/2023
1.0.89 18,478 8/8/2023
1.0.88 617 8/8/2023
1.0.87 5,986 8/7/2023
1.0.86 633 8/7/2023
1.0.85 618 8/7/2023
1.0.84 22,391 7/10/2023
1.0.83 680 7/10/2023
1.0.82 693 7/10/2023
1.0.81 707 7/10/2023
1.0.80 5,066 7/7/2023
1.0.79 653 7/7/2023
1.0.78 16,629 6/29/2023
1.0.77 4,579 6/28/2023
1.0.76 680 6/28/2023
1.0.75 704 6/28/2023
1.0.74 47,894 6/7/2023
1.0.73 6,125 6/7/2023
1.0.72 708 6/7/2023
1.0.71 700 6/7/2023
1.0.70 7,431 6/6/2023
1.0.69 700 6/6/2023
1.0.68 2,855 6/5/2023
1.0.67 672 6/5/2023
1.0.66 7,228 6/2/2023
1.0.65 724 6/2/2023
1.0.64 705 6/2/2023
1.0.63 28,692 5/30/2023
1.0.62 697 5/30/2023
1.0.61 8,329 5/29/2023
1.0.60 707 5/29/2023
1.0.59 6,642 5/26/2023
1.0.58 12,416 5/25/2023
1.0.57 713 5/25/2023
1.0.56 6,388 5/24/2023
1.0.55 726 5/24/2023
1.0.54 722 5/24/2023
1.0.53 704 5/24/2023
1.0.52 805 5/24/2023
1.0.51 4,255 5/23/2023
1.0.50 707 5/23/2023
1.0.49 714 5/23/2023
1.0.46 13,510 5/22/2023
1.0.45 11,029 5/18/2023
1.0.44 6,597 5/17/2023
1.0.43 695 5/17/2023
1.0.42 681 5/17/2023
1.0.41 679 5/17/2023
1.0.40 17,447 4/24/2023
1.0.39 2,413 4/24/2023
1.0.38 755 4/24/2023
1.0.37 4,080 4/21/2023
1.0.36 704 4/21/2023
1.0.35 708 4/21/2023
1.0.34 4,536 4/20/2023
1.0.33 894 4/20/2023
1.0.32 842 4/20/2023
1.0.31 4,177 4/19/2023
1.0.30 1,913 4/18/2023
1.0.29 740 4/18/2023
1.0.28 1,889 4/18/2023
1.0.27 3,368 4/17/2023
1.0.26 814 4/16/2023
1.0.25 760 4/16/2023
1.0.24 3,516 4/14/2023
1.0.23 2,566 4/13/2023
1.0.22 2,461 4/12/2023
1.0.21 741 4/12/2023
1.0.20 741 4/12/2023
1.0.19 1,766 4/11/2023
1.0.18 811 4/11/2023
1.0.17 2,591 4/11/2023
1.0.16 3,001 4/7/2023
1.0.15 3,817 4/3/2023
1.0.14 788 4/3/2023
1.0.13 775 4/3/2023
1.0.12 736 4/3/2023
1.0.11 2,061 4/1/2023
1.0.10 1,169 3/30/2023
1.0.9 909 3/26/2023
1.0.7 3,980 2/27/2023
1.0.6 818 2/26/2023
1.0.5 798 2/22/2023
1.0.4 989 2/22/2023
1.0.3 832 2/22/2023
1.0.2 1,365 2/12/2023
1.0.1 1,026 2/12/2023