Soenneker.Hashing.Argon2 3.0.471

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

A utility library for Argon2 hashing and verification

Features

  • Password Hashing: Generates a secure, Base64-encoded hash for a plaintext password.
  • Password Verification: Verifies a plaintext password against a hashed value.
  • Fully customizable parameters for salt size, hash size, iterations, memory usage, and parallelism.

Installation

dotnet add package Soenneker.Hashing.Argon2

Usage

1. Hashing a Password
string password = "SecurePassword123";
string hash = await Argon2HashingUtil.Hash(password);

// Result: A Base64-encoded hash string
Console.WriteLine(hash);
2. Verifying a Password
string password = "SecurePassword123";
string hash = await Argon2HashingUtil.Hash(password);

bool isValid = await Argon2HashingUtil.Verify(password, hash);

// Result: True if the password matches the hash
Console.WriteLine(isValid ? "Password is valid!" : "Invalid password.");
3. Custom Parameters
string password = "CustomPassword";
int saltSize = 32;       // Custom salt size (bytes)
int hashSize = 64;       // Custom hash size (bytes)
int iterations = 8;      // Custom iteration count
int memorySize = 131072; // Custom memory size (KB)
int parallelism = 4;     // Custom thread count

string hash = await Argon2HashingUtil.Hash(password, saltSize, hashSize, iterations, memorySize, parallelism);
bool isValid = await Argon2HashingUtil.Verify(password, hash, saltSize, hashSize, iterations, memorySize, parallelism);

Default Parameters

  • Salt Size: 16 bytes
  • Hash Size: 32 bytes
  • Iterations: 4
  • Memory Size: 65536 KB
  • Parallelism: 2
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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.616 48 5/27/2025
3.0.615 51 5/27/2025
3.0.614 45 5/27/2025
3.0.613 49 5/27/2025
3.0.612 49 5/27/2025
3.0.611 48 5/27/2025
3.0.610 48 5/25/2025
3.0.609 98 5/23/2025
3.0.608 109 5/23/2025
3.0.607 117 5/23/2025
3.0.606 114 5/23/2025
3.0.605 125 5/22/2025
3.0.604 123 5/22/2025
3.0.603 213 5/14/2025
3.0.602 128 5/8/2025
3.0.601 129 5/8/2025
3.0.600 128 5/8/2025
3.0.599 124 5/8/2025
3.0.598 127 5/8/2025
3.0.597 132 5/7/2025
3.0.596 127 5/5/2025
3.0.595 124 5/5/2025
3.0.594 121 5/5/2025
3.0.593 128 5/5/2025
3.0.592 127 5/5/2025
3.0.591 126 5/5/2025
3.0.590 125 5/5/2025
3.0.589 125 5/5/2025
3.0.588 125 5/5/2025
3.0.586 128 5/5/2025
3.0.585 79 4/27/2025
3.0.584 66 4/26/2025
3.0.583 143 4/8/2025
3.0.582 139 4/8/2025
3.0.581 151 4/8/2025
3.0.580 145 4/8/2025
3.0.579 146 4/8/2025
3.0.578 148 4/8/2025
3.0.577 148 4/8/2025
3.0.576 150 4/8/2025
3.0.575 146 4/8/2025
3.0.574 146 4/8/2025
3.0.573 143 4/8/2025
3.0.572 143 4/8/2025
3.0.571 136 4/8/2025
3.0.570 141 4/8/2025
3.0.569 142 4/8/2025
3.0.568 146 4/8/2025
3.0.567 140 4/8/2025
3.0.566 144 4/7/2025
3.0.565 143 4/7/2025
3.0.564 144 4/7/2025
3.0.563 141 4/7/2025
3.0.562 147 4/7/2025
3.0.561 140 4/7/2025
3.0.560 146 4/7/2025
3.0.559 144 4/7/2025
3.0.558 145 4/7/2025
3.0.557 147 4/7/2025
3.0.556 143 4/7/2025
3.0.555 141 4/7/2025
3.0.554 144 4/7/2025
3.0.553 143 4/7/2025
3.0.552 143 4/7/2025
3.0.551 144 4/6/2025
3.0.550 144 4/6/2025
3.0.549 145 4/6/2025
3.0.548 143 4/6/2025
3.0.547 143 4/6/2025
3.0.546 149 4/6/2025
3.0.545 142 4/6/2025
3.0.544 123 4/6/2025
3.0.543 126 4/6/2025
3.0.542 123 4/6/2025
3.0.541 132 4/6/2025
3.0.540 121 4/6/2025
3.0.539 123 4/6/2025
3.0.538 128 4/6/2025
3.0.537 95 4/6/2025
3.0.536 96 4/6/2025
3.0.535 102 4/6/2025
3.0.534 97 4/5/2025
3.0.533 71 4/5/2025
3.0.532 76 4/5/2025
3.0.531 72 4/5/2025
3.0.530 77 4/5/2025
3.0.529 76 4/5/2025
3.0.528 76 4/5/2025
3.0.527 77 4/5/2025
3.0.526 70 4/4/2025
3.0.525 86 4/4/2025
3.0.524 141 4/4/2025
3.0.523 149 4/4/2025
3.0.522 134 4/1/2025
3.0.521 131 4/1/2025
3.0.520 135 4/1/2025
3.0.519 134 3/31/2025
3.0.518 132 3/31/2025
3.0.517 136 3/31/2025
3.0.516 132 3/31/2025
3.0.515 137 3/31/2025
3.0.514 74 3/29/2025
3.0.513 73 3/29/2025
3.0.512 77 3/29/2025
3.0.511 453 3/25/2025
3.0.510 449 3/25/2025
3.0.509 449 3/25/2025
3.0.508 462 3/25/2025
3.0.507 109 3/21/2025
3.0.506 105 3/21/2025
3.0.505 121 3/21/2025
3.0.504 122 3/21/2025
3.0.503 131 3/18/2025
3.0.502 132 3/18/2025
3.0.501 132 3/18/2025
3.0.500 131 3/18/2025
3.0.499 63 3/15/2025
3.0.498 60 3/15/2025
3.0.497 58 3/15/2025
3.0.496 62 3/15/2025
3.0.495 55 3/15/2025
3.0.493 146 3/12/2025
3.0.492 143 3/12/2025
3.0.491 147 3/11/2025
3.0.490 144 3/11/2025
3.0.489 156 3/11/2025
3.0.488 151 3/11/2025
3.0.487 153 3/11/2025
3.0.486 148 3/11/2025
3.0.485 158 3/11/2025
3.0.484 148 3/11/2025
3.0.483 149 3/11/2025
3.0.482 145 3/11/2025
3.0.481 148 3/11/2025
3.0.480 149 3/11/2025
3.0.479 206 3/7/2025
3.0.478 192 3/7/2025
3.0.477 198 3/7/2025
3.0.476 204 3/7/2025
3.0.475 114 3/2/2025
3.0.474 87 3/2/2025
3.0.473 80 3/2/2025
3.0.472 87 3/2/2025
3.0.471 87 3/2/2025
3.0.470 88 3/2/2025
3.0.469 86 3/2/2025
3.0.468 86 3/2/2025
3.0.467 83 3/2/2025
3.0.466 90 3/2/2025
3.0.465 86 3/1/2025
3.0.464 84 3/1/2025
3.0.463 88 3/1/2025
3.0.462 89 3/1/2025
3.0.461 84 3/1/2025
3.0.460 88 3/1/2025
3.0.459 94 3/1/2025
3.0.458 88 3/1/2025
3.0.457 89 3/1/2025
3.0.456 91 3/1/2025
3.0.455 85 3/1/2025
3.0.454 87 3/1/2025
3.0.453 80 3/1/2025
3.0.452 77 3/1/2025
3.0.451 90 2/26/2025
3.0.450 90 2/25/2025
3.0.449 92 2/25/2025
3.0.448 85 2/25/2025
3.0.447 85 2/25/2025
3.0.446 84 2/25/2025
3.0.445 87 2/24/2025
3.0.444 77 2/24/2025
3.0.443 100 2/23/2025
3.0.442 80 2/23/2025
3.0.441 83 2/23/2025
3.0.440 83 2/23/2025
3.0.439 83 2/23/2025
3.0.438 86 2/22/2025
3.0.437 84 2/22/2025
3.0.436 88 2/22/2025
3.0.435 88 2/22/2025
3.0.434 80 2/22/2025
3.0.433 80 2/22/2025
3.0.432 82 2/22/2025
3.0.431 84 2/22/2025
3.0.430 85 2/22/2025
3.0.429 87 2/22/2025
3.0.428 85 2/21/2025
3.0.427 86 2/21/2025
3.0.426 95 2/21/2025
3.0.425 95 2/21/2025
3.0.424 91 2/21/2025
3.0.423 93 2/21/2025
3.0.422 92 2/19/2025
3.0.421 97 2/19/2025
3.0.420 88 2/19/2025
3.0.419 95 2/19/2025
3.0.418 92 2/19/2025
3.0.417 96 2/19/2025
3.0.416 88 2/19/2025
3.0.415 98 2/19/2025
3.0.414 92 2/19/2025
3.0.413 92 2/19/2025
3.0.412 90 2/18/2025
3.0.411 90 2/18/2025
3.0.410 99 2/18/2025
3.0.409 98 2/18/2025
3.0.408 96 2/18/2025
3.0.407 82 2/18/2025
3.0.406 98 2/18/2025
3.0.405 93 2/14/2025
3.0.404 91 2/14/2025
3.0.403 92 2/14/2025
3.0.402 90 2/13/2025
3.0.401 89 2/13/2025
3.0.400 94 2/13/2025
3.0.399 92 2/12/2025
3.0.398 104 2/12/2025
3.0.397 97 2/12/2025
3.0.396 93 2/12/2025
3.0.395 96 2/12/2025
3.0.394 102 2/12/2025
3.0.393 92 2/12/2025
3.0.392 89 2/12/2025
3.0.391 96 2/12/2025
3.0.390 92 2/12/2025
3.0.389 102 2/11/2025
3.0.388 94 2/11/2025
3.0.387 101 2/11/2025
3.0.386 95 2/11/2025
3.0.385 98 2/11/2025
3.0.384 94 2/11/2025
3.0.383 89 2/11/2025
3.0.382 88 2/11/2025
3.0.381 91 2/11/2025
3.0.380 92 2/11/2025
3.0.379 89 2/11/2025
3.0.378 92 2/11/2025
3.0.377 97 2/11/2025
3.0.376 93 2/11/2025
3.0.375 94 2/11/2025
3.0.374 98 2/10/2025
3.0.373 94 2/10/2025
3.0.372 90 2/10/2025
3.0.371 93 2/10/2025
3.0.370 95 2/10/2025
3.0.369 98 2/10/2025
3.0.368 97 2/10/2025
3.0.367 96 2/10/2025
3.0.366 98 2/10/2025
3.0.365 90 2/10/2025
3.0.364 88 2/9/2025
3.0.363 82 2/9/2025
3.0.362 97 2/9/2025
3.0.361 89 2/9/2025
3.0.360 92 2/9/2025
3.0.359 90 2/9/2025
3.0.358 96 2/8/2025
3.0.357 92 2/8/2025
3.0.356 89 2/8/2025
3.0.355 91 2/8/2025
3.0.354 95 2/8/2025
3.0.353 84 2/8/2025
3.0.352 86 2/8/2025
3.0.351 91 2/8/2025
3.0.350 83 2/8/2025
3.0.349 90 2/7/2025
3.0.348 85 2/7/2025
3.0.347 88 2/7/2025
3.0.346 87 2/7/2025
3.0.345 88 2/7/2025
3.0.344 92 2/7/2025
3.0.343 89 2/7/2025
3.0.342 84 2/7/2025
3.0.341 92 2/7/2025
3.0.340 87 2/7/2025
3.0.339 86 2/7/2025
3.0.338 90 2/7/2025
3.0.337 91 2/7/2025
3.0.336 89 2/7/2025
3.0.335 87 2/7/2025
3.0.334 80 2/7/2025
3.0.333 85 2/7/2025
3.0.332 84 2/7/2025
3.0.331 86 2/7/2025
3.0.330 86 2/6/2025
3.0.329 86 2/6/2025
3.0.328 89 2/5/2025
3.0.327 93 2/5/2025
3.0.326 95 2/5/2025
3.0.325 86 2/5/2025
3.0.324 95 2/5/2025
3.0.323 97 2/5/2025
3.0.322 92 2/5/2025
3.0.321 91 2/5/2025
3.0.320 100 2/5/2025
3.0.319 93 1/28/2025
3.0.318 78 1/28/2025
3.0.317 85 1/28/2025
3.0.316 85 1/28/2025
3.0.315 77 1/28/2025
3.0.314 74 1/28/2025
3.0.313 85 1/28/2025
3.0.312 88 1/28/2025
3.0.311 81 1/27/2025
3.0.310 80 1/27/2025
3.0.309 77 1/27/2025
3.0.308 80 1/27/2025
3.0.307 89 1/27/2025
3.0.306 87 1/27/2025
3.0.305 93 1/26/2025
3.0.304 85 1/26/2025
3.0.303 79 1/26/2025
3.0.302 93 1/26/2025
3.0.301 83 1/26/2025
3.0.300 84 1/26/2025
3.0.299 85 1/26/2025
3.0.298 88 1/26/2025
3.0.297 85 1/25/2025
3.0.296 85 1/25/2025
3.0.295 82 1/25/2025
3.0.294 83 1/25/2025
3.0.293 85 1/25/2025
3.0.292 83 1/25/2025
3.0.291 83 1/25/2025
3.0.290 81 1/25/2025
3.0.289 80 1/25/2025
3.0.288 78 1/24/2025
3.0.287 74 1/24/2025
3.0.286 72 1/24/2025
3.0.285 73 1/24/2025
3.0.284 83 1/24/2025
3.0.283 88 1/24/2025
3.0.282 82 1/24/2025
3.0.281 80 1/24/2025
3.0.280 76 1/24/2025
3.0.279 81 1/24/2025
3.0.278 83 1/24/2025
3.0.277 85 1/23/2025
3.0.276 84 1/23/2025
3.0.275 81 1/23/2025
3.0.274 85 1/23/2025
3.0.273 77 1/23/2025
3.0.272 81 1/22/2025
3.0.271 82 1/22/2025
3.0.270 79 1/22/2025
3.0.269 90 1/21/2025
3.0.268 85 1/21/2025
3.0.266 80 1/21/2025
3.0.265 78 1/21/2025
3.0.264 90 1/21/2025
3.0.263 84 1/21/2025
3.0.262 86 1/21/2025
3.0.261 82 1/21/2025
3.0.260 89 1/21/2025
3.0.259 83 1/21/2025
3.0.258 82 1/21/2025
3.0.257 81 1/21/2025
3.0.256 89 1/21/2025
3.0.255 77 1/21/2025
3.0.254 82 1/21/2025
3.0.253 77 1/21/2025
3.0.252 88 1/21/2025
3.0.251 83 1/21/2025
3.0.250 80 1/21/2025
3.0.249 85 1/21/2025
3.0.248 81 1/21/2025
3.0.247 93 1/20/2025
3.0.246 83 1/20/2025
3.0.245 85 1/20/2025
3.0.244 83 1/20/2025
3.0.243 75 1/20/2025
3.0.242 86 1/20/2025
3.0.241 72 1/20/2025
3.0.240 77 1/20/2025
3.0.239 85 1/20/2025
3.0.238 87 1/20/2025
3.0.237 84 1/20/2025
3.0.236 87 1/20/2025
3.0.235 96 1/20/2025
3.0.234 86 1/20/2025
3.0.233 78 1/20/2025
3.0.232 84 1/20/2025
3.0.231 83 1/20/2025
3.0.230 82 1/20/2025
3.0.229 76 1/19/2025
3.0.228 83 1/19/2025
3.0.227 82 1/19/2025
3.0.226 74 1/19/2025
3.0.225 82 1/19/2025
3.0.224 77 1/19/2025
3.0.223 81 1/19/2025
3.0.222 78 1/19/2025
3.0.221 75 1/19/2025
3.0.220 77 1/19/2025
3.0.219 80 1/18/2025
3.0.218 75 1/18/2025
3.0.217 82 1/18/2025
3.0.216 77 1/18/2025
3.0.215 84 1/18/2025
3.0.214 84 1/18/2025
3.0.213 75 1/18/2025
3.0.212 81 1/18/2025
3.0.211 77 1/18/2025
3.0.210 89 1/17/2025
3.0.209 78 1/17/2025
3.0.208 77 1/17/2025
3.0.207 75 1/17/2025
3.0.206 78 1/17/2025
3.0.205 77 1/17/2025
3.0.204 89 1/17/2025
3.0.203 87 1/17/2025
3.0.202 73 1/17/2025
3.0.201 85 1/16/2025
3.0.200 81 1/16/2025
3.0.199 75 1/16/2025
3.0.198 83 1/16/2025
3.0.197 88 1/16/2025
3.0.196 91 1/16/2025
3.0.195 73 1/16/2025
3.0.194 76 1/16/2025
3.0.193 75 1/16/2025
3.0.192 75 1/16/2025
3.0.191 76 1/16/2025
3.0.190 75 1/16/2025
3.0.189 83 1/16/2025
3.0.188 74 1/15/2025
3.0.187 78 1/15/2025
3.0.186 78 1/15/2025
3.0.185 83 1/15/2025
3.0.184 83 1/15/2025
3.0.183 80 1/15/2025
3.0.182 72 1/15/2025
3.0.181 74 1/15/2025
3.0.180 83 1/15/2025
3.0.179 74 1/15/2025
3.0.178 72 1/15/2025
3.0.177 68 1/15/2025
3.0.176 68 1/15/2025
3.0.175 48 1/15/2025
3.0.174 48 1/15/2025
3.0.173 33 1/15/2025
3.0.172 30 1/15/2025
3.0.171 30 1/15/2025
3.0.170 29 1/15/2025
3.0.169 34 1/15/2025
3.0.168 48 1/14/2025
3.0.167 47 1/14/2025
3.0.166 40 1/14/2025
3.0.165 47 1/14/2025
3.0.164 40 1/14/2025
3.0.163 55 1/13/2025
3.0.162 52 1/13/2025
3.0.161 56 1/13/2025
3.0.160 49 1/13/2025
3.0.159 52 1/13/2025
3.0.158 58 1/13/2025
3.0.157 61 1/11/2025
3.0.156 59 1/11/2025
3.0.155 65 1/11/2025
3.0.154 58 1/11/2025
3.0.153 66 1/11/2025
3.0.152 61 1/11/2025
3.0.151 63 1/10/2025
3.0.150 63 1/10/2025
3.0.149 64 1/10/2025
3.0.148 62 1/10/2025
3.0.147 62 1/10/2025
3.0.146 63 1/10/2025
3.0.145 63 1/10/2025
3.0.144 62 1/10/2025
3.0.143 121 1/3/2025
3.0.142 117 1/3/2025
3.0.141 120 1/3/2025
3.0.140 117 1/3/2025
3.0.139 96 1/3/2025
3.0.138 92 1/3/2025
3.0.137 90 1/3/2025
3.0.136 90 1/3/2025
3.0.135 99 1/2/2025
3.0.134 97 1/2/2025
3.0.133 104 1/2/2025
3.0.132 100 1/2/2025
3.0.131 94 1/2/2025
3.0.130 92 1/2/2025
3.0.129 100 1/2/2025
3.0.128 107 1/1/2025
3.0.127 105 1/1/2025
3.0.126 101 1/1/2025
3.0.125 102 1/1/2025
3.0.124 102 1/1/2025
3.0.123 98 1/1/2025
3.0.122 102 1/1/2025
3.0.121 99 1/1/2025
3.0.120 100 1/1/2025
3.0.119 97 1/1/2025
3.0.118 91 1/1/2025
3.0.117 101 1/1/2025
3.0.116 101 12/31/2024
3.0.115 93 12/31/2024
3.0.114 100 12/31/2024
3.0.113 96 12/31/2024
3.0.112 91 12/31/2024
3.0.111 90 12/31/2024
3.0.110 91 12/31/2024
3.0.109 113 12/31/2024
3.0.108 112 12/31/2024
3.0.107 110 12/31/2024
3.0.106 114 12/31/2024
3.0.105 107 12/31/2024
3.0.104 87 12/31/2024
3.0.103 87 12/31/2024
3.0.102 86 12/31/2024
3.0.101 81 12/31/2024
3.0.100 84 12/31/2024
3.0.99 88 12/31/2024
3.0.98 92 12/31/2024
3.0.97 90 12/30/2024
3.0.96 86 12/30/2024
3.0.95 92 12/28/2024
3.0.94 86 12/28/2024
3.0.93 93 12/28/2024
3.0.92 90 12/28/2024
3.0.91 84 12/28/2024
3.0.90 89 12/27/2024
3.0.89 98 12/27/2024
3.0.88 91 12/27/2024
3.0.87 96 12/24/2024
3.0.86 86 12/24/2024
3.0.85 83 12/24/2024
3.0.84 90 12/24/2024
3.0.83 87 12/24/2024
3.0.82 91 12/24/2024
3.0.81 86 12/24/2024
3.0.80 88 12/24/2024
3.0.79 87 12/24/2024
3.0.78 94 12/24/2024
3.0.77 88 12/24/2024
3.0.76 87 12/24/2024
3.0.75 85 12/24/2024
3.0.74 85 12/24/2024
3.0.73 91 12/24/2024
3.0.72 85 12/24/2024
3.0.71 84 12/23/2024
3.0.70 89 12/23/2024
3.0.69 91 12/23/2024
3.0.68 90 12/23/2024
3.0.67 93 12/23/2024
3.0.66 88 12/23/2024
3.0.65 86 12/23/2024
3.0.64 92 12/23/2024
3.0.63 96 12/23/2024
3.0.62 84 12/23/2024
3.0.61 87 12/23/2024
3.0.60 100 12/22/2024
3.0.59 90 12/22/2024
3.0.58 88 12/22/2024
3.0.57 101 12/22/2024
3.0.56 86 12/22/2024
3.0.55 87 12/22/2024
3.0.54 95 12/22/2024
3.0.53 96 12/22/2024
3.0.52 90 12/22/2024
3.0.51 89 12/22/2024
3.0.50 98 12/22/2024
3.0.49 87 12/22/2024
3.0.48 103 12/22/2024
3.0.47 102 12/21/2024
3.0.46 91 12/21/2024
3.0.45 93 12/21/2024
3.0.44 92 12/21/2024
3.0.43 102 12/21/2024
3.0.42 91 12/21/2024
3.0.41 94 12/21/2024
3.0.40 88 12/21/2024
3.0.39 100 12/21/2024
3.0.38 92 12/21/2024
3.0.37 101 12/21/2024
3.0.36 90 12/21/2024
3.0.35 97 12/21/2024
3.0.34 101 12/21/2024
3.0.33 92 12/21/2024
3.0.32 100 12/20/2024
3.0.31 99 12/20/2024
3.0.30 102 12/20/2024
3.0.29 89 12/20/2024
3.0.28 89 12/20/2024
3.0.27 104 12/20/2024
3.0.26 84 12/20/2024
3.0.25 85 12/20/2024
3.0.24 104 12/20/2024
3.0.23 91 12/20/2024
3.0.22 99 12/20/2024
3.0.21 93 12/19/2024
3.0.20 88 12/19/2024
3.0.19 93 12/19/2024
3.0.18 88 12/19/2024
3.0.17 83 12/19/2024
3.0.16 90 12/19/2024
3.0.15 90 12/19/2024
3.0.14 92 12/19/2024
3.0.13 98 12/19/2024
3.0.12 90 12/19/2024
3.0.11 89 12/18/2024
3.0.9 100 12/17/2024
3.0.8 89 12/17/2024
3.0.7 97 12/17/2024
3.0.6 100 12/16/2024
3.0.5 103 12/16/2024
3.0.4 103 12/11/2024
3.0.3 111 12/11/2024
3.0.2 103 12/10/2024
3.0.1 103 12/10/2024