Soenneker.Utils.String.Trie 3.0.376

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

A utility library for comparing strings via trie (prefix tree) similarity

Installation

dotnet add package Soenneker.Utils.String.Trie

Why?

Imagine you have two strings. Trie-based matching helps you figure out how similar they are by looking at the prefixes they share. Here's why it's handy:

Easy to Understand:

Trie-based matching is straightforward. It helps identify common prefixes between two strings, providing an intuitive measure of similarity.

Not Bothered by Length:

Whether a string is long or short doesn't throw off trie-based matching. It cares more about the common prefixes than the total length of the strings.

Efficient for Big Tasks:

When you're dealing with lots of strings or large texts, trie-based matching is efficient. It quickly identifies common prefixes without getting bogged down by complicated calculations, making it a practical choice for large datasets.

Usage

string str1 = "hello";
string str2 = "hell";

double similarity = TrieStringSimilarityUtil.CalculateSimilarityPercentage(str1, str2); // 80
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.
  • net9.0

    • No dependencies.

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.677 79 6/27/2025
3.0.676 144 5/27/2025
3.0.674 146 5/7/2025
3.0.673 141 5/5/2025
3.0.672 139 5/5/2025
3.0.670 174 4/8/2025
3.0.669 163 4/8/2025
3.0.668 159 4/8/2025
3.0.667 164 4/8/2025
3.0.666 154 4/8/2025
3.0.665 164 4/8/2025
3.0.664 158 4/8/2025
3.0.663 165 4/7/2025
3.0.662 167 4/7/2025
3.0.661 170 4/7/2025
3.0.660 157 4/7/2025
3.0.659 160 4/7/2025
3.0.658 153 4/7/2025
3.0.657 161 4/7/2025
3.0.656 168 4/6/2025
3.0.655 158 4/6/2025
3.0.654 147 4/6/2025
3.0.653 137 4/6/2025
3.0.652 118 4/6/2025
3.0.651 112 4/6/2025
3.0.650 118 4/6/2025
3.0.649 111 4/6/2025
3.0.648 94 4/5/2025
3.0.647 85 4/5/2025
3.0.646 90 4/5/2025
3.0.645 98 4/5/2025
3.0.644 85 4/5/2025
3.0.643 86 4/5/2025
3.0.642 98 4/5/2025
3.0.641 152 4/4/2025
3.0.640 152 4/1/2025
3.0.639 162 3/31/2025
3.0.638 166 3/31/2025
3.0.637 89 3/29/2025
3.0.636 474 3/25/2025
3.0.635 467 3/25/2025
3.0.634 118 3/21/2025
3.0.633 126 3/21/2025
3.0.632 142 3/18/2025
3.0.631 146 3/18/2025
3.0.630 69 3/15/2025
3.0.629 69 3/15/2025
3.0.628 70 3/15/2025
3.0.627 157 3/12/2025
3.0.626 160 3/12/2025
3.0.625 153 3/12/2025
3.0.624 160 3/11/2025
3.0.623 153 3/11/2025
3.0.622 159 3/11/2025
3.0.621 165 3/11/2025
3.0.620 149 3/11/2025
3.0.619 151 3/11/2025
3.0.618 214 3/7/2025
3.0.617 220 3/7/2025
3.0.616 98 3/2/2025
3.0.615 100 3/2/2025
3.0.614 96 3/2/2025
3.0.613 102 3/2/2025
3.0.612 96 3/1/2025
3.0.611 97 3/1/2025
3.0.610 104 3/1/2025
3.0.609 99 3/1/2025
3.0.608 102 3/1/2025
3.0.607 99 3/1/2025
3.0.606 93 3/1/2025
3.0.605 91 3/1/2025
3.0.604 109 2/25/2025
3.0.603 111 2/25/2025
3.0.602 105 2/25/2025
3.0.601 109 2/25/2025
3.0.600 92 2/24/2025
3.0.599 122 2/23/2025
3.0.598 98 2/23/2025
3.0.597 98 2/22/2025
3.0.596 91 2/22/2025
3.0.595 100 2/22/2025
3.0.594 102 2/22/2025
3.0.593 105 2/22/2025
3.0.592 100 2/21/2025
3.0.591 98 2/21/2025
3.0.590 110 2/21/2025
3.0.589 116 2/19/2025
3.0.588 116 2/19/2025
3.0.587 105 2/19/2025
3.0.586 110 2/18/2025
3.0.585 112 2/18/2025
3.0.584 131 2/18/2025
3.0.583 117 2/14/2025
3.0.582 106 2/13/2025
3.0.581 117 2/12/2025
3.0.580 115 2/12/2025
3.0.579 105 2/12/2025
3.0.578 102 2/12/2025
3.0.577 104 2/12/2025
3.0.576 106 2/11/2025
3.0.575 107 2/11/2025
3.0.574 115 2/11/2025
3.0.573 107 2/11/2025
3.0.572 113 2/11/2025
3.0.571 115 2/11/2025
3.0.570 121 2/10/2025
3.0.569 105 2/10/2025
3.0.568 102 2/10/2025
3.0.567 106 2/10/2025
3.0.566 103 2/9/2025
3.0.565 98 2/8/2025
3.0.564 109 2/8/2025
3.0.563 99 2/8/2025
3.0.562 106 2/8/2025
3.0.561 111 2/8/2025
3.0.560 99 2/7/2025
3.0.559 108 2/7/2025
3.0.558 99 2/7/2025
3.0.557 98 2/7/2025
3.0.556 111 2/7/2025
3.0.555 97 2/6/2025
3.0.554 122 2/5/2025
3.0.553 111 2/5/2025
3.0.552 108 2/5/2025
3.0.551 100 2/5/2025
3.0.550 97 2/5/2025
3.0.549 108 2/5/2025
3.0.548 93 2/5/2025
3.0.547 107 1/28/2025
3.0.546 97 1/28/2025
3.0.545 99 1/28/2025
3.0.544 90 1/27/2025
3.0.543 85 1/27/2025
3.0.542 87 1/27/2025
3.0.541 93 1/27/2025
3.0.540 102 1/26/2025
3.0.539 91 1/26/2025
3.0.538 98 1/25/2025
3.0.537 98 1/25/2025
3.0.536 100 1/25/2025
3.0.535 88 1/25/2025
3.0.534 89 1/24/2025
3.0.533 98 1/24/2025
3.0.532 98 1/24/2025
3.0.531 96 1/24/2025
3.0.530 97 1/24/2025
3.0.529 90 1/24/2025
3.0.528 100 1/23/2025
3.0.527 105 1/23/2025
3.0.526 101 1/21/2025
3.0.525 99 1/21/2025
3.0.524 112 1/21/2025
3.0.523 97 1/21/2025
3.0.522 93 1/21/2025
3.0.521 103 1/21/2025
3.0.520 97 1/21/2025
3.0.519 106 1/21/2025
3.0.518 102 1/21/2025
3.0.517 97 1/21/2025
3.0.516 103 1/21/2025
3.0.515 107 1/21/2025
3.0.514 94 1/20/2025
3.0.513 105 1/20/2025
3.0.512 94 1/20/2025
3.0.511 100 1/20/2025
3.0.510 94 1/20/2025
3.0.509 98 1/20/2025
3.0.508 103 1/20/2025
3.0.507 92 1/20/2025
3.0.506 93 1/20/2025
3.0.505 102 1/19/2025
3.0.504 94 1/19/2025
3.0.503 91 1/19/2025
3.0.502 96 1/19/2025
3.0.501 95 1/19/2025
3.0.500 92 1/19/2025
3.0.499 87 1/19/2025
3.0.498 99 1/18/2025
3.0.497 90 1/18/2025
3.0.496 93 1/17/2025
3.0.495 98 1/17/2025
3.0.494 94 1/17/2025
3.0.493 102 1/17/2025
3.0.492 95 1/16/2025
3.0.491 90 1/16/2025
3.0.490 101 1/16/2025
3.0.489 94 1/16/2025
3.0.488 98 1/16/2025
3.0.487 94 1/16/2025
3.0.486 101 1/15/2025
3.0.485 95 1/15/2025
3.0.484 92 1/15/2025
3.0.483 90 1/15/2025
3.0.482 104 1/15/2025
3.0.481 91 1/15/2025
3.0.480 76 1/15/2025
3.0.479 63 1/15/2025
3.0.478 85 1/14/2025
3.0.477 84 1/14/2025
3.0.476 87 1/14/2025
3.0.475 84 1/14/2025
3.0.474 94 1/14/2025
3.0.473 86 1/13/2025
3.0.472 90 1/13/2025
3.0.471 86 1/13/2025
3.0.470 85 1/13/2025
3.0.469 98 1/11/2025
3.0.468 107 1/11/2025
3.0.467 94 1/11/2025
3.0.466 97 1/11/2025
3.0.465 111 1/10/2025
3.0.464 88 1/10/2025
3.0.463 80 1/10/2025
3.0.462 99 1/10/2025
3.0.461 100 1/10/2025
3.0.460 109 1/10/2025
3.0.459 125 1/3/2025
3.0.458 133 1/3/2025
3.0.457 120 1/3/2025
3.0.456 106 1/3/2025
3.0.455 115 1/2/2025
3.0.454 107 1/2/2025
3.0.453 120 1/2/2025
3.0.452 110 1/2/2025
3.0.451 113 1/1/2025
3.0.450 133 1/1/2025
3.0.449 114 1/1/2025
3.0.448 118 1/1/2025
3.0.447 118 1/1/2025
3.0.446 125 1/1/2025
3.0.445 112 1/1/2025
3.0.444 112 1/1/2025
3.0.443 121 12/31/2024
3.0.442 111 12/31/2024
3.0.441 114 12/31/2024
3.0.440 119 12/31/2024
3.0.439 127 12/31/2024
3.0.438 123 12/31/2024
3.0.437 98 12/31/2024
3.0.436 100 12/31/2024
3.0.435 103 12/31/2024
3.0.434 94 12/31/2024
3.0.433 113 12/31/2024
3.0.432 102 12/30/2024
3.0.431 104 12/28/2024
3.0.430 94 12/28/2024
3.0.429 106 12/27/2024
3.0.428 113 12/27/2024
3.0.427 103 12/24/2024
3.0.426 102 12/24/2024
3.0.425 94 12/24/2024
3.0.424 102 12/23/2024
3.0.423 106 12/23/2024
3.0.422 107 12/23/2024
3.0.421 93 12/23/2024
3.0.420 107 12/23/2024
3.0.419 95 12/23/2024
3.0.418 104 12/22/2024
3.0.417 103 12/22/2024
3.0.416 103 12/22/2024
3.0.415 117 12/22/2024
3.0.414 106 12/22/2024
3.0.413 112 12/22/2024
3.0.412 101 12/21/2024
3.0.411 96 12/21/2024
3.0.410 106 12/21/2024
3.0.409 99 12/21/2024
3.0.408 95 12/21/2024
3.0.407 102 12/21/2024
3.0.406 102 12/20/2024
3.0.405 104 12/20/2024
3.0.404 109 12/20/2024
3.0.403 100 12/20/2024
3.0.402 99 12/20/2024
3.0.401 105 12/19/2024
3.0.400 95 12/19/2024
3.0.399 98 12/19/2024
3.0.398 95 12/19/2024
3.0.397 107 12/18/2024
3.0.396 101 12/18/2024
3.0.395 110 12/16/2024
3.0.394 103 12/16/2024
3.0.393 97 12/10/2024
3.0.392 103 12/10/2024
3.0.391 103 12/10/2024
3.0.390 98 12/9/2024
3.0.389 109 12/9/2024
3.0.388 98 12/9/2024
3.0.387 95 12/9/2024
3.0.386 96 12/9/2024
3.0.385 100 12/7/2024
3.0.384 107 12/6/2024
3.0.383 111 12/6/2024
3.0.382 95 12/6/2024
3.0.381 105 12/6/2024
3.0.380 107 12/6/2024
3.0.379 103 12/6/2024
3.0.377 105 12/6/2024
3.0.376 101 12/5/2024
3.0.375 116 12/5/2024
3.0.374 108 12/5/2024
3.0.373 107 12/5/2024
3.0.372 102 12/5/2024
3.0.371 100 12/5/2024
3.0.370 110 12/5/2024
3.0.369 105 12/4/2024
3.0.368 108 12/4/2024
3.0.367 103 12/4/2024
3.0.366 114 12/4/2024
3.0.365 104 12/4/2024
3.0.364 111 12/3/2024
3.0.363 105 12/3/2024
3.0.362 112 12/3/2024
3.0.361 102 12/3/2024
3.0.360 101 12/3/2024
3.0.359 99 12/3/2024
3.0.358 99 12/3/2024
3.0.357 101 12/2/2024
3.0.356 96 12/2/2024
3.0.355 99 12/2/2024
3.0.354 107 12/2/2024
3.0.353 105 12/1/2024
3.0.352 102 12/1/2024
3.0.351 109 12/1/2024
3.0.350 111 12/1/2024
3.0.349 111 11/29/2024
3.0.348 97 11/29/2024
3.0.347 101 11/21/2024
3.0.346 98 11/21/2024
3.0.345 112 11/20/2024
3.0.344 99 11/20/2024
3.0.343 112 11/20/2024
3.0.342 112 11/20/2024
3.0.341 111 11/20/2024
3.0.340 103 11/19/2024
3.0.339 108 11/19/2024
3.0.338 100 11/19/2024
3.0.337 94 11/19/2024
3.0.336 105 11/19/2024
3.0.335 108 11/19/2024
3.0.334 145 11/15/2024
3.0.333 104 11/14/2024
3.0.332 102 11/14/2024
3.0.331 96 11/14/2024
3.0.330 98 11/14/2024
3.0.329 104 11/14/2024
3.0.328 105 11/14/2024
3.0.327 104 11/14/2024
3.0.326 112 11/14/2024
3.0.325 110 11/14/2024
3.0.324 116 11/14/2024
3.0.323 110 11/14/2024
3.0.322 105 11/14/2024
3.0.321 105 11/14/2024
2.1.320 108 11/13/2024
2.1.319 106 11/13/2024
2.1.318 108 11/13/2024
2.1.317 106 11/13/2024
2.1.316 107 11/13/2024
2.1.315 105 11/12/2024
2.1.314 118 11/9/2024
2.1.313 111 11/9/2024
2.1.312 110 11/9/2024
2.1.311 107 11/8/2024
2.1.310 98 11/8/2024
2.1.309 107 11/8/2024
2.1.308 121 11/8/2024
2.1.307 121 11/8/2024
2.1.306 118 11/6/2024
2.1.305 110 11/1/2024
2.1.304 104 11/1/2024
2.1.303 105 11/1/2024
2.1.302 103 10/31/2024
2.1.301 105 10/29/2024
2.1.300 103 10/29/2024
2.1.299 109 10/29/2024
2.1.298 101 10/29/2024
2.1.297 113 10/29/2024
2.1.296 101 10/29/2024
2.1.295 106 10/28/2024
2.1.294 112 10/26/2024
2.1.293 107 10/26/2024
2.1.292 105 10/22/2024
2.1.291 114 10/22/2024
2.1.290 101 10/22/2024
2.1.289 96 10/22/2024
2.1.288 109 10/22/2024
2.1.287 111 10/18/2024
2.1.286 95 10/17/2024
2.1.285 112 10/17/2024
2.1.284 102 10/15/2024
2.1.283 102 10/15/2024
2.1.282 98 10/14/2024
2.1.281 106 10/12/2024
2.1.280 104 10/12/2024
2.1.279 97 10/12/2024
2.1.278 105 10/11/2024
2.1.277 107 10/9/2024
2.1.276 108 10/9/2024
2.1.275 100 10/9/2024
2.1.274 96 10/9/2024
2.1.273 101 10/9/2024
2.1.272 109 10/8/2024
2.1.271 111 10/8/2024
2.1.270 106 10/8/2024
2.1.269 108 10/8/2024
2.1.268 105 10/3/2024
2.1.267 93 10/3/2024
2.1.266 110 10/3/2024
2.1.265 103 10/3/2024
2.1.264 105 10/3/2024
2.1.263 104 10/2/2024
2.1.262 104 10/2/2024
2.1.261 114 10/2/2024
2.1.260 110 10/2/2024
2.1.259 102 10/2/2024
2.1.258 105 10/1/2024
2.1.257 107 10/1/2024
2.1.256 110 10/1/2024
2.1.255 117 10/1/2024
2.1.254 109 9/29/2024
2.1.253 105 9/29/2024
2.1.252 100 9/29/2024
2.1.251 102 9/29/2024
2.1.250 108 9/29/2024
2.1.249 100 9/27/2024
2.1.248 105 9/27/2024
2.1.247 99 9/27/2024
2.1.246 98 9/27/2024
2.1.245 105 9/27/2024
2.1.244 116 9/27/2024
2.1.243 107 9/27/2024
2.1.242 105 9/26/2024
2.1.241 102 9/26/2024
2.1.240 109 9/26/2024
2.1.239 101 9/26/2024
2.1.238 104 9/26/2024
2.1.237 106 9/26/2024
2.1.236 99 9/26/2024
2.1.235 101 9/26/2024
2.1.234 101 9/23/2024
2.1.233 105 9/23/2024
2.1.232 104 9/23/2024
2.1.231 101 9/23/2024
2.1.230 104 9/23/2024
2.1.229 103 9/23/2024
2.1.228 106 9/23/2024
2.1.227 101 9/23/2024
2.1.226 117 9/18/2024
2.1.225 121 9/18/2024
2.1.224 104 9/18/2024
2.1.223 110 9/18/2024
2.1.222 111 9/18/2024
2.1.221 113 9/17/2024
2.1.220 115 9/17/2024
2.1.218 117 9/17/2024
2.1.217 111 9/17/2024
2.1.216 126 9/17/2024
2.1.215 106 9/17/2024
2.1.214 102 9/17/2024
2.1.213 101 9/16/2024
2.1.212 122 9/16/2024
2.1.211 121 9/12/2024
2.1.210 122 9/12/2024
2.1.209 130 9/11/2024
2.1.208 126 9/11/2024
2.1.207 125 9/11/2024
2.1.206 128 9/11/2024
2.1.205 120 9/11/2024
2.1.204 135 9/10/2024
2.1.203 137 9/10/2024
2.1.202 111 9/10/2024
2.1.201 123 9/10/2024
2.1.200 123 9/10/2024
2.1.199 132 9/10/2024
2.1.198 132 9/10/2024
2.1.197 105 9/9/2024
2.1.195 118 9/9/2024
2.1.194 107 9/9/2024
2.1.193 121 9/9/2024
2.1.192 126 9/9/2024
2.1.191 122 9/7/2024
2.1.190 98 9/7/2024
2.1.189 124 9/7/2024
2.1.188 124 9/6/2024
2.1.187 131 9/6/2024
2.1.186 129 9/6/2024
2.1.185 126 9/5/2024
2.1.184 128 9/5/2024
2.1.183 108 9/5/2024
2.1.182 125 9/5/2024
2.1.181 117 9/5/2024
2.1.180 114 9/5/2024
2.1.179 115 9/5/2024
2.1.178 107 9/5/2024
2.1.177 107 9/4/2024
2.1.176 114 9/4/2024
2.1.175 116 9/3/2024
2.1.174 125 9/3/2024
2.1.173 114 9/3/2024
2.1.172 127 9/3/2024
2.1.171 106 9/3/2024
2.1.170 114 9/3/2024
2.1.169 120 8/29/2024
2.1.168 115 8/29/2024
2.1.167 115 8/29/2024
2.1.166 119 8/26/2024
2.1.165 110 8/26/2024
2.1.164 135 8/26/2024
2.1.163 128 8/21/2024
2.1.162 148 8/21/2024
2.1.161 138 8/21/2024
2.1.160 129 8/21/2024
2.1.159 148 8/20/2024
2.1.158 145 8/20/2024
2.1.157 124 8/20/2024
2.1.156 123 8/20/2024
2.1.155 139 8/20/2024
2.1.154 132 8/20/2024
2.1.153 145 8/19/2024
2.1.152 137 8/15/2024
2.1.151 146 8/15/2024
2.1.150 144 8/15/2024
2.1.149 137 8/14/2024
2.1.148 119 8/14/2024
2.1.147 115 8/14/2024
2.1.146 135 8/13/2024
2.1.145 112 8/7/2024
2.1.144 107 8/7/2024
2.1.143 111 8/7/2024
2.1.142 110 8/6/2024
2.1.141 100 8/6/2024
2.1.140 88 8/1/2024
2.1.139 83 8/1/2024
2.1.137 102 7/25/2024
2.1.136 106 7/25/2024
2.1.135 102 7/25/2024
2.1.134 107 7/25/2024
2.1.133 95 7/25/2024
2.1.132 110 7/25/2024
2.1.131 109 7/25/2024
2.1.130 102 7/24/2024
2.1.129 109 7/24/2024
2.1.128 103 7/20/2024
2.1.127 125 7/20/2024
2.1.126 121 7/20/2024
2.1.125 119 7/14/2024
2.1.124 116 7/14/2024
2.1.123 114 7/14/2024
2.1.122 113 7/14/2024
2.1.121 115 7/14/2024
2.1.120 121 7/10/2024
2.1.119 115 7/10/2024
2.1.118 116 7/10/2024
2.1.117 101 7/10/2024
2.1.115 113 7/10/2024
2.1.114 106 7/10/2024
2.1.113 118 7/10/2024
2.1.112 116 7/10/2024
2.1.111 100 7/10/2024
2.1.109 119 7/10/2024
2.1.108 121 7/9/2024
2.1.106 87 7/9/2024
2.1.105 107 7/9/2024
2.1.104 101 7/9/2024
2.1.103 116 7/9/2024
2.1.102 116 7/9/2024
2.1.101 116 7/9/2024
2.1.100 117 7/9/2024
2.1.99 114 7/9/2024
2.1.98 100 7/8/2024
2.1.97 128 7/8/2024
2.1.96 118 7/8/2024
2.1.95 117 7/8/2024
2.1.94 126 7/8/2024
2.1.93 115 7/8/2024
2.1.92 121 7/7/2024
2.1.91 118 7/7/2024
2.1.90 124 7/3/2024
2.1.89 109 7/3/2024
2.1.88 126 7/3/2024
2.1.87 120 7/3/2024
2.1.86 107 7/3/2024
2.1.85 115 6/27/2024
2.1.84 104 6/27/2024
2.1.83 100 6/27/2024
2.1.82 137 6/22/2024
2.1.81 124 6/22/2024
2.1.80 126 6/22/2024
2.1.79 124 6/16/2024
2.1.78 102 6/15/2024
2.1.77 109 6/15/2024
2.1.76 119 6/15/2024
2.1.75 110 6/15/2024
2.1.74 123 6/15/2024
2.1.73 109 6/15/2024
2.1.72 122 6/15/2024
2.1.71 104 6/14/2024
2.1.70 126 6/4/2024
2.1.69 111 6/4/2024
2.1.68 129 6/2/2024
2.1.67 135 6/2/2024
2.1.66 132 6/1/2024
2.1.65 112 6/1/2024
2.1.64 122 6/1/2024
2.1.63 121 6/1/2024
2.1.62 125 6/1/2024
2.1.61 120 6/1/2024
2.1.60 125 6/1/2024
2.1.59 110 5/31/2024
2.1.58 125 5/31/2024
2.1.57 131 5/31/2024
2.1.56 118 5/31/2024
2.1.55 129 5/29/2024
2.1.54 117 5/29/2024
2.1.53 128 5/29/2024
2.1.52 118 5/28/2024
2.1.51 122 5/28/2024
2.1.50 123 5/28/2024
2.1.49 126 5/28/2024
2.1.48 126 5/28/2024
2.1.47 98 5/27/2024
2.1.46 112 5/27/2024
2.1.45 119 5/27/2024
2.1.44 116 5/27/2024
2.1.43 118 5/26/2024
2.1.42 124 5/26/2024
2.1.41 124 5/26/2024
2.1.40 113 5/26/2024
2.1.39 121 5/26/2024
2.1.38 127 5/26/2024
2.1.37 101 5/25/2024
2.1.36 122 5/25/2024
2.1.35 137 5/25/2024
2.1.34 134 5/25/2024
2.1.33 127 5/25/2024
2.1.32 121 5/23/2024
2.1.31 112 5/23/2024
2.1.30 127 5/23/2024
2.1.29 124 5/23/2024
2.1.28 112 5/23/2024
2.1.27 124 5/23/2024
2.1.26 130 5/23/2024
2.1.25 122 5/22/2024
2.1.24 125 5/22/2024
2.1.23 129 5/22/2024
2.1.22 126 5/22/2024
2.1.21 108 5/18/2024
2.1.20 99 5/18/2024
2.1.19 97 5/18/2024
2.1.18 106 5/18/2024
2.1.17 104 5/17/2024
2.1.16 119 5/17/2024
2.1.15 82 5/17/2024
2.1.14 112 5/16/2024
2.1.13 100 5/16/2024
2.1.12 117 5/16/2024
2.1.11 108 5/15/2024
2.1.10 103 5/15/2024
2.1.9 115 5/15/2024
2.1.8 100 5/14/2024
2.1.7 83 5/14/2024
2.1.6 83 5/14/2024
2.1.5 94 5/14/2024
2.1.4 66 5/14/2024
2.1.3 109 5/14/2024
2.1.2 89 5/14/2024
2.1.1 93 5/14/2024