Soenneker.Utils.String.Trie 3.0.362

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