Soenneker.Blazor.DataTables 2.1.460

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

// Install Soenneker.Blazor.DataTables as a Cake Tool
#tool nuget:?package=Soenneker.Blazor.DataTables&version=2.1.460                

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.Blazor.DataTables

A Blazor interop library for DataTables

This library simplifies the integration of DataTables into Blazor applications, providing access to options, events, etc. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the DataTables documentation for details. This is a work-in-progress; contribution is welcomed.

Installation

dotnet add package Soenneker.Blazor.DataTables

Add the following to your Startup.cs file

public void ConfigureServices(IServiceCollection services)
{
    services.AddDataTables();
}

Usage

@using Soenneker.Blazor.DataTables

<DataTable Options="_options">
    <thead>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>John Doe</td>
            <td>Developer</td>
            <td>London</td>
            <td>28</td>
            <td>2017/04/25</td>
            <td>$320,800</td>
        </tr>
    </tbody>
</DataTable>

@code{

    private readonly DataTableOptions _options_ = new()
    {
        Searching = true,
        LengthChange = false,
        Info = false,
        Paging = false,
        Order = [new object[] {0, "asc"}]
    };
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.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.961 0 12/23/2024
3.0.960 0 12/23/2024
3.0.959 0 12/23/2024
3.0.958 0 12/23/2024
3.0.957 0 12/23/2024
3.0.956 0 12/23/2024
3.0.955 0 12/23/2024
3.0.954 0 12/23/2024
3.0.953 0 12/23/2024
3.0.952 7 12/23/2024
3.0.951 4 12/23/2024
3.0.950 4 12/23/2024
3.0.949 28 12/23/2024
3.0.948 25 12/23/2024
3.0.947 26 12/23/2024
3.0.946 28 12/23/2024
3.0.945 33 12/23/2024
3.0.944 29 12/23/2024
3.0.943 27 12/23/2024
3.0.942 24 12/23/2024
3.0.941 26 12/23/2024
3.0.940 41 12/22/2024
3.0.939 36 12/22/2024
3.0.938 38 12/22/2024
3.0.937 38 12/22/2024
3.0.936 37 12/22/2024
3.0.935 35 12/22/2024
3.0.934 38 12/22/2024
3.0.933 41 12/22/2024
3.0.932 36 12/22/2024
3.0.929 37 12/20/2024
3.0.928 38 12/20/2024
3.0.927 35 12/20/2024
3.0.926 35 12/20/2024
3.0.925 35 12/20/2024
3.0.924 41 12/20/2024
3.0.923 38 12/20/2024
3.0.922 36 12/20/2024
3.0.921 35 12/20/2024
3.0.920 41 12/20/2024
3.0.919 39 12/20/2024
3.0.918 38 12/20/2024
3.0.917 41 12/20/2024
3.0.916 44 12/20/2024
3.0.915 45 12/20/2024
3.0.914 39 12/20/2024
3.0.913 37 12/20/2024
3.0.912 37 12/20/2024
3.0.911 43 12/20/2024
3.0.910 37 12/20/2024
3.0.909 44 12/19/2024
3.0.908 38 12/19/2024
3.0.907 39 12/19/2024
3.0.906 34 12/19/2024
3.0.905 39 12/19/2024
3.0.904 39 12/19/2024
3.0.903 36 12/19/2024
3.0.902 45 12/19/2024
3.0.901 39 12/19/2024
3.0.900 31 12/19/2024
3.0.899 33 12/19/2024
3.0.898 35 12/19/2024
3.0.897 34 12/19/2024
3.0.896 31 12/19/2024
3.0.895 40 12/19/2024
3.0.894 36 12/19/2024
3.0.893 37 12/19/2024
3.0.892 44 12/18/2024
3.0.891 36 12/18/2024
3.0.890 35 12/18/2024
3.0.889 37 12/18/2024
3.0.888 65 12/18/2024
3.0.887 66 12/18/2024
3.0.886 72 12/17/2024
3.0.885 70 12/17/2024
3.0.882 78 12/17/2024
3.0.881 70 12/17/2024
3.0.880 72 12/17/2024
3.0.879 56 12/17/2024
3.0.878 66 12/17/2024
3.0.877 67 12/17/2024
3.0.876 71 12/17/2024
3.0.875 65 12/16/2024
3.0.874 59 12/16/2024
3.0.873 58 12/16/2024
3.0.872 74 12/16/2024
3.0.871 74 12/10/2024
3.0.870 70 12/10/2024
3.0.869 79 12/10/2024
3.0.868 73 12/10/2024
3.0.867 71 12/10/2024
3.0.866 74 12/10/2024
3.0.865 68 12/10/2024
3.0.864 67 12/10/2024
3.0.863 81 12/10/2024
3.0.862 67 12/10/2024
3.0.861 70 12/10/2024
3.0.860 68 12/10/2024
3.0.859 77 12/10/2024
3.0.858 67 12/10/2024
3.0.857 76 12/9/2024
3.0.856 72 12/9/2024
3.0.855 70 12/9/2024
3.0.854 67 12/9/2024
3.0.853 69 12/9/2024
3.0.852 78 12/9/2024
3.0.851 72 12/9/2024
3.0.850 74 12/9/2024
3.0.849 72 12/9/2024
3.0.848 65 12/9/2024
3.0.847 59 12/9/2024
3.0.846 64 12/9/2024
3.0.845 68 12/9/2024
3.0.844 68 12/9/2024
3.0.843 69 12/9/2024
3.0.842 73 12/9/2024
3.0.841 74 12/9/2024
3.0.840 83 12/7/2024
3.0.839 77 12/7/2024
3.0.838 74 12/7/2024
3.0.837 83 12/7/2024
3.0.836 76 12/7/2024
3.0.835 72 12/7/2024
3.0.834 88 12/6/2024
3.0.833 71 12/6/2024
3.0.832 71 12/6/2024
3.0.831 72 12/6/2024
3.0.830 69 12/6/2024
3.0.829 72 12/6/2024
3.0.828 71 12/6/2024
3.0.827 71 12/6/2024
3.0.826 76 12/6/2024
3.0.825 70 12/6/2024
3.0.824 72 12/6/2024
3.0.823 73 12/6/2024
3.0.820 76 12/6/2024
3.0.819 70 12/6/2024
3.0.818 70 12/6/2024
3.0.817 76 12/6/2024
3.0.816 73 12/6/2024
3.0.815 69 12/6/2024
3.0.814 69 12/6/2024
3.0.813 74 12/6/2024
3.0.812 74 12/6/2024
3.0.811 69 12/6/2024
3.0.810 78 12/6/2024
3.0.809 79 12/6/2024
3.0.808 76 12/6/2024
3.0.807 81 12/6/2024
3.0.806 72 12/6/2024
3.0.805 74 12/6/2024
3.0.804 74 12/6/2024
3.0.803 70 12/6/2024
3.0.802 70 12/6/2024
3.0.801 70 12/6/2024
3.0.798 64 12/6/2024
3.0.797 68 12/6/2024
3.0.796 72 12/6/2024
3.0.795 68 12/6/2024
3.0.794 84 12/6/2024
3.0.793 81 12/6/2024
3.0.792 73 12/6/2024
3.0.791 72 12/6/2024
3.0.790 74 12/6/2024
3.0.789 80 12/6/2024
3.0.788 71 12/5/2024
3.0.787 69 12/5/2024
3.0.786 74 12/5/2024
3.0.785 74 12/5/2024
3.0.784 78 12/5/2024
3.0.783 71 12/5/2024
3.0.782 72 12/5/2024
3.0.781 74 12/5/2024
3.0.780 77 12/5/2024
3.0.779 78 12/5/2024
3.0.778 94 12/5/2024
3.0.777 78 12/5/2024
3.0.776 76 12/5/2024
3.0.775 80 12/5/2024
3.0.774 70 12/5/2024
3.0.773 80 12/5/2024
3.0.772 73 12/5/2024
3.0.771 76 12/5/2024
3.0.770 76 12/5/2024
3.0.769 74 12/5/2024
3.0.768 73 12/5/2024
3.0.767 85 12/5/2024
3.0.766 78 12/5/2024
3.0.765 75 12/5/2024
3.0.764 80 12/5/2024
3.0.763 71 12/5/2024
3.0.762 76 12/4/2024
3.0.761 73 12/4/2024
3.0.760 82 12/4/2024
3.0.759 72 12/4/2024
3.0.758 69 12/4/2024
3.0.757 75 12/4/2024
3.0.756 84 12/4/2024
3.0.755 78 12/4/2024
3.0.754 78 12/4/2024
3.0.753 78 12/4/2024
3.0.752 72 12/4/2024
3.0.751 71 12/4/2024
3.0.750 79 12/4/2024
3.0.749 75 12/4/2024
3.0.748 76 12/4/2024
3.0.747 77 12/4/2024
3.0.746 72 12/4/2024
3.0.745 68 12/4/2024
3.0.744 75 12/3/2024
3.0.743 77 12/3/2024
3.0.742 83 12/3/2024
3.0.741 74 12/3/2024
3.0.740 70 12/3/2024
3.0.739 78 12/3/2024
3.0.738 74 12/3/2024
3.0.737 78 12/3/2024
3.0.736 75 12/3/2024
3.0.735 74 12/3/2024
3.0.734 78 12/3/2024
3.0.733 79 12/3/2024
3.0.732 76 12/3/2024
3.0.731 82 12/3/2024
3.0.730 66 12/3/2024
3.0.729 70 12/3/2024
3.0.728 66 12/3/2024
3.0.727 72 12/3/2024
3.0.726 66 12/3/2024
3.0.725 68 12/3/2024
3.0.724 66 12/3/2024
3.0.723 65 12/3/2024
3.0.722 65 12/2/2024
3.0.721 74 12/2/2024
3.0.720 79 12/2/2024
3.0.719 76 12/2/2024
3.0.718 73 12/2/2024
3.0.717 72 12/2/2024
3.0.716 73 12/2/2024
3.0.715 75 12/2/2024
3.0.714 71 12/2/2024
3.0.713 78 12/2/2024
3.0.712 77 12/2/2024
3.0.711 73 12/2/2024
3.0.710 79 12/2/2024
3.0.709 76 12/2/2024
3.0.708 72 12/2/2024
3.0.707 72 12/2/2024
3.0.706 67 12/2/2024
3.0.705 70 12/2/2024
3.0.704 77 12/1/2024
3.0.703 72 12/1/2024
3.0.702 77 12/1/2024
3.0.701 74 12/1/2024
3.0.700 72 12/1/2024
3.0.699 84 12/1/2024
3.0.698 74 12/1/2024
3.0.697 72 12/1/2024
3.0.696 78 12/1/2024
3.0.695 80 12/1/2024
3.0.694 75 12/1/2024
3.0.693 72 12/1/2024
3.0.692 73 12/1/2024
3.0.691 77 11/29/2024
3.0.690 74 11/29/2024
3.0.689 74 11/29/2024
3.0.688 72 11/29/2024
3.0.687 77 11/29/2024
3.0.686 81 11/29/2024
3.0.685 74 11/29/2024
3.0.684 79 11/29/2024
3.0.683 74 11/29/2024
3.0.682 72 11/29/2024
3.0.681 74 11/29/2024
3.0.680 74 11/29/2024
3.0.679 77 11/29/2024
3.0.678 80 11/29/2024
3.0.677 76 11/21/2024
3.0.676 74 11/21/2024
3.0.675 77 11/21/2024
3.0.674 78 11/21/2024
3.0.673 74 11/21/2024
3.0.672 81 11/21/2024
3.0.671 85 11/21/2024
3.0.670 79 11/21/2024
3.0.669 81 11/21/2024
3.0.668 74 11/21/2024
3.0.667 70 11/21/2024
3.0.666 75 11/20/2024
3.0.665 75 11/20/2024
3.0.664 85 11/20/2024
3.0.663 85 11/20/2024
3.0.662 80 11/20/2024
3.0.661 80 11/20/2024
3.0.660 75 11/20/2024
3.0.659 76 11/20/2024
3.0.658 87 11/20/2024
3.0.657 77 11/20/2024
3.0.656 81 11/20/2024
3.0.655 75 11/20/2024
3.0.654 85 11/20/2024
3.0.653 75 11/20/2024
3.0.651 76 11/20/2024
3.0.650 74 11/20/2024
3.0.649 74 11/20/2024
3.0.648 66 11/20/2024
3.0.647 77 11/20/2024
3.0.646 69 11/20/2024
3.0.645 71 11/20/2024
3.0.644 65 11/20/2024
3.0.643 72 11/20/2024
3.0.642 72 11/20/2024
3.0.641 78 11/19/2024
3.0.640 77 11/19/2024
3.0.639 75 11/19/2024
3.0.638 71 11/19/2024
3.0.637 73 11/19/2024
3.0.636 73 11/19/2024
3.0.635 76 11/19/2024
3.0.634 67 11/19/2024
3.0.633 67 11/19/2024
3.0.632 69 11/19/2024
3.0.631 71 11/19/2024
3.0.630 71 11/19/2024
3.0.629 76 11/19/2024
3.0.628 70 11/19/2024
3.0.627 68 11/19/2024
3.0.626 65 11/19/2024
3.0.625 60 11/19/2024
3.0.624 75 11/19/2024
3.0.623 88 11/18/2024
3.0.622 85 11/15/2024
3.0.621 82 11/15/2024
3.0.620 72 11/15/2024
3.0.619 73 11/15/2024
3.0.618 73 11/15/2024
3.0.617 70 11/15/2024
3.0.616 88 11/15/2024
3.0.615 75 11/15/2024
3.0.614 79 11/14/2024
3.0.613 73 11/14/2024
3.0.612 78 11/14/2024
3.0.611 74 11/14/2024
3.0.610 76 11/14/2024
3.0.609 86 11/14/2024
3.0.608 74 11/14/2024
3.0.607 74 11/14/2024
3.0.606 71 11/14/2024
3.0.604 74 11/14/2024
3.0.603 73 11/14/2024
3.0.602 74 11/14/2024
3.0.601 68 11/14/2024
3.0.600 75 11/14/2024
3.0.599 74 11/14/2024
3.0.598 78 11/14/2024
3.0.597 74 11/14/2024
3.0.596 74 11/14/2024
3.0.595 83 11/14/2024
3.0.594 86 11/14/2024
3.0.593 74 11/14/2024
3.0.592 76 11/14/2024
3.0.591 76 11/14/2024
3.0.590 74 11/14/2024
3.0.589 74 11/14/2024
3.0.588 74 11/14/2024
3.0.587 79 11/14/2024
3.0.586 80 11/14/2024
3.0.585 76 11/14/2024
3.0.584 77 11/14/2024
3.0.583 83 11/14/2024
3.0.582 78 11/14/2024
3.0.581 75 11/14/2024
3.0.580 76 11/14/2024
3.0.579 73 11/14/2024
3.0.578 77 11/14/2024
3.0.577 86 11/14/2024
3.0.576 86 11/14/2024
2.1.575 83 11/13/2024
2.1.574 86 11/13/2024
2.1.573 83 11/13/2024
2.1.572 84 11/13/2024
2.1.571 79 11/13/2024
2.1.570 82 11/13/2024
2.1.569 84 11/13/2024
2.1.568 74 11/13/2024
2.1.567 75 11/13/2024
2.1.566 78 11/13/2024
2.1.565 75 11/13/2024
2.1.564 83 11/13/2024
2.1.563 71 11/13/2024
2.1.562 76 11/13/2024
2.1.561 86 11/13/2024
2.1.560 77 11/13/2024
2.1.559 78 11/13/2024
2.1.558 75 11/13/2024
2.1.557 77 11/13/2024
2.1.556 78 11/12/2024
2.1.555 80 11/12/2024
2.1.554 80 11/12/2024
2.1.553 89 11/12/2024
2.1.552 84 11/10/2024
2.1.551 93 11/9/2024
2.1.550 83 11/9/2024
2.1.549 84 11/9/2024
2.1.548 81 11/9/2024
2.1.547 79 11/9/2024
2.1.546 84 11/9/2024
2.1.545 83 11/9/2024
2.1.544 77 11/9/2024
2.1.543 78 11/9/2024
2.1.542 83 11/9/2024
2.1.541 82 11/9/2024
2.1.540 80 11/9/2024
2.1.539 80 11/9/2024
2.1.538 81 11/9/2024
2.1.537 84 11/9/2024
2.1.536 83 11/9/2024
2.1.535 76 11/9/2024
2.1.534 81 11/8/2024
2.1.533 79 11/8/2024
2.1.532 76 11/8/2024
2.1.531 74 11/8/2024
2.1.530 75 11/8/2024
2.1.529 84 11/8/2024
2.1.528 77 11/8/2024
2.1.527 77 11/8/2024
2.1.526 85 11/8/2024
2.1.525 76 11/8/2024
2.1.524 78 11/8/2024
2.1.523 85 11/8/2024
2.1.522 74 11/8/2024
2.1.521 77 11/8/2024
2.1.520 76 11/8/2024
2.1.519 74 11/8/2024
2.1.518 76 11/8/2024
2.1.517 84 11/8/2024
2.1.516 73 11/8/2024
2.1.515 72 11/7/2024
2.1.514 74 11/7/2024
2.1.513 76 11/6/2024
2.1.512 73 11/6/2024
2.1.511 81 11/6/2024
2.1.510 75 11/6/2024
2.1.509 77 11/2/2024
2.1.508 80 11/1/2024
2.1.507 77 11/1/2024
2.1.506 83 11/1/2024
2.1.505 73 11/1/2024
2.1.504 76 11/1/2024
2.1.503 76 11/1/2024
2.1.502 75 11/1/2024
2.1.501 77 11/1/2024
2.1.500 88 11/1/2024
2.1.499 79 11/1/2024
2.1.498 72 11/1/2024
2.1.497 70 10/31/2024
2.1.496 84 10/29/2024
2.1.495 70 10/29/2024
2.1.494 78 10/29/2024
2.1.493 77 10/29/2024
2.1.492 74 10/29/2024
2.1.491 69 10/29/2024
2.1.490 76 10/29/2024
2.1.489 77 10/29/2024
2.1.488 79 10/29/2024
2.1.487 75 10/29/2024
2.1.486 65 10/29/2024
2.1.485 67 10/29/2024
2.1.484 74 10/29/2024
2.1.483 77 10/29/2024
2.1.481 72 10/29/2024
2.1.480 67 10/29/2024
2.1.479 77 10/29/2024
2.1.478 69 10/29/2024
2.1.477 71 10/29/2024
2.1.476 74 10/29/2024
2.1.475 78 10/29/2024
2.1.474 73 10/29/2024
2.1.473 75 10/29/2024
2.1.472 73 10/29/2024
2.1.471 71 10/29/2024
2.1.470 74 10/29/2024
2.1.469 73 10/29/2024
2.1.468 79 10/29/2024
2.1.467 68 10/29/2024
2.1.466 71 10/29/2024
2.1.465 71 10/28/2024
2.1.464 68 10/28/2024
2.1.463 79 10/28/2024
2.1.462 77 10/28/2024
2.1.461 93 10/28/2024
2.1.460 79 10/26/2024
2.1.459 75 10/26/2024
2.1.458 79 10/26/2024
2.1.457 83 10/26/2024
2.1.456 81 10/26/2024
2.1.455 78 10/26/2024
2.1.454 76 10/26/2024
2.1.453 78 10/26/2024
2.1.452 84 10/26/2024
2.1.451 69 10/26/2024
2.1.450 88 10/23/2024
2.1.449 80 10/23/2024
2.1.448 74 10/22/2024
2.1.447 74 10/22/2024
2.1.446 77 10/22/2024
2.1.445 70 10/22/2024
2.1.444 69 10/22/2024
2.1.443 66 10/22/2024
2.1.442 71 10/22/2024
2.1.441 74 10/22/2024
2.1.440 76 10/22/2024
2.1.439 72 10/22/2024
2.1.438 78 10/22/2024
2.1.437 73 10/22/2024
2.1.436 83 10/22/2024
2.1.435 74 10/22/2024
2.1.434 71 10/22/2024
2.1.433 70 10/22/2024
2.1.432 67 10/22/2024
2.1.431 62 10/22/2024
2.1.430 74 10/22/2024
2.1.429 73 10/22/2024
2.1.428 70 10/22/2024
2.1.427 111 10/18/2024
2.1.426 111 10/18/2024
2.1.425 114 10/18/2024
2.1.424 112 10/18/2024
2.1.423 111 10/18/2024
2.1.422 112 10/18/2024
2.1.421 109 10/18/2024
2.1.420 106 10/18/2024
2.1.419 76 10/17/2024
2.1.418 80 10/17/2024
2.1.417 74 10/17/2024
2.1.416 76 10/17/2024
2.1.415 82 10/17/2024
2.1.414 78 10/17/2024
2.1.413 76 10/17/2024
2.1.412 80 10/15/2024
2.1.411 79 10/15/2024
2.1.410 73 10/15/2024
2.1.409 77 10/15/2024
2.1.408 76 10/15/2024
2.1.407 73 10/15/2024
2.1.406 74 10/15/2024
2.1.405 75 10/15/2024
2.1.404 82 10/15/2024
2.1.403 78 10/15/2024
2.1.402 73 10/15/2024
2.1.401 83 10/14/2024
2.1.400 72 10/14/2024
2.1.399 73 10/14/2024
2.1.398 77 10/14/2024
2.1.397 82 10/13/2024
2.1.396 80 10/13/2024
2.1.395 86 10/13/2024
2.1.394 84 10/12/2024
2.1.393 88 10/12/2024
2.1.392 81 10/12/2024
2.1.391 88 10/12/2024
2.1.390 81 10/12/2024
2.1.389 79 10/12/2024
2.1.388 81 10/12/2024
2.1.387 76 10/12/2024
2.1.386 84 10/12/2024
2.1.385 83 10/12/2024
2.1.384 86 10/11/2024
2.1.383 79 10/11/2024
2.1.382 80 10/11/2024
2.1.381 96 10/11/2024
2.1.380 84 10/11/2024
2.1.379 78 10/11/2024
2.1.378 88 10/11/2024
2.1.377 86 10/9/2024
2.1.376 80 10/9/2024
2.1.375 80 10/9/2024
2.1.374 88 10/9/2024
2.1.373 82 10/9/2024
2.1.372 84 10/9/2024
2.1.371 77 10/9/2024
2.1.370 94 10/9/2024
2.1.369 83 10/9/2024
2.1.368 79 10/9/2024
2.1.367 81 10/9/2024
2.1.366 78 10/9/2024
2.1.365 82 10/9/2024
2.1.364 77 10/9/2024
2.1.362 75 10/9/2024
2.1.361 80 10/9/2024
2.1.360 80 10/9/2024
2.1.359 78 10/9/2024
2.1.358 80 10/8/2024
2.1.357 83 10/8/2024
2.1.356 88 10/8/2024
2.1.355 82 10/8/2024
2.1.354 89 10/8/2024
2.1.353 84 10/8/2024
2.1.352 81 10/8/2024
2.1.351 84 10/8/2024
2.1.350 82 10/8/2024
2.1.349 87 10/8/2024
2.1.348 76 10/8/2024
2.1.347 80 10/8/2024
2.1.346 86 10/8/2024
2.1.345 80 10/8/2024
2.1.344 83 10/8/2024
2.1.343 85 10/8/2024
2.1.342 92 10/7/2024
2.1.341 81 10/4/2024
2.1.340 83 10/4/2024
2.1.339 86 10/3/2024
2.1.338 87 10/3/2024
2.1.337 89 10/3/2024
2.1.336 98 10/3/2024
2.1.335 86 10/3/2024
2.1.334 83 10/3/2024
2.1.333 84 10/3/2024
2.1.332 84 10/3/2024
2.1.331 74 10/3/2024
2.1.330 73 10/3/2024
2.1.329 88 10/3/2024
2.1.328 85 10/3/2024
2.1.327 89 10/3/2024
2.1.326 74 10/3/2024
2.1.325 72 10/3/2024
2.1.324 89 10/3/2024
2.1.323 79 10/3/2024
2.1.322 79 10/3/2024
2.1.321 85 10/3/2024
2.1.320 83 10/3/2024
2.1.319 82 10/3/2024
2.1.318 77 10/3/2024
2.1.317 88 10/2/2024
2.1.316 80 10/2/2024
2.1.315 85 10/2/2024
2.1.314 90 10/2/2024
2.1.313 84 10/2/2024
2.1.312 78 10/2/2024
2.1.311 89 10/2/2024
2.1.310 86 10/2/2024
2.1.309 82 10/2/2024
2.1.308 89 10/2/2024
2.1.307 79 10/2/2024
2.1.306 80 10/2/2024
2.1.305 81 10/2/2024
2.1.304 86 10/2/2024
2.1.303 86 10/2/2024
2.1.302 91 10/2/2024
2.1.301 85 10/2/2024
2.1.300 90 10/2/2024
2.1.299 90 10/2/2024
2.1.298 87 10/2/2024
2.1.297 87 10/2/2024
2.1.296 94 10/2/2024
2.1.295 98 10/2/2024
2.1.294 91 10/2/2024
2.1.293 83 10/1/2024
2.1.292 95 10/1/2024
2.1.291 89 10/1/2024
2.1.290 89 10/1/2024
2.1.289 88 10/1/2024
2.1.288 90 10/1/2024
2.1.287 88 10/1/2024
2.1.286 90 10/1/2024
2.1.285 81 10/1/2024
2.1.284 89 10/1/2024
2.1.283 79 10/1/2024
2.1.282 90 10/1/2024
2.1.281 105 10/1/2024
2.1.280 85 10/1/2024
2.1.279 86 10/1/2024
2.1.278 92 10/1/2024
2.1.277 104 9/30/2024
2.1.276 92 9/30/2024
2.1.275 74 9/30/2024
2.1.274 100 9/30/2024
2.1.273 99 9/30/2024
2.1.272 83 9/30/2024
2.1.271 90 9/29/2024
2.1.270 80 9/29/2024
2.1.269 85 9/29/2024
2.1.268 84 9/29/2024
2.1.267 93 9/29/2024
2.1.266 85 9/29/2024
2.1.265 83 9/29/2024
2.1.264 90 9/29/2024
2.1.263 90 9/29/2024
2.1.262 78 9/29/2024
2.1.261 99 9/29/2024
2.1.259 94 9/29/2024
2.1.258 85 9/29/2024
2.1.257 88 9/29/2024
2.1.256 83 9/29/2024
2.1.255 76 9/29/2024
2.1.254 84 9/28/2024
2.1.253 91 9/28/2024
2.1.252 87 9/27/2024
2.1.251 100 9/27/2024
2.1.250 86 9/27/2024
2.1.249 82 9/27/2024
2.1.248 87 9/27/2024
2.1.247 98 9/27/2024
2.1.246 101 9/27/2024
2.1.245 81 9/27/2024
2.1.244 93 9/27/2024
2.1.243 84 9/27/2024
2.1.242 81 9/27/2024
2.1.241 82 9/27/2024
2.1.240 97 9/27/2024
2.1.239 76 9/27/2024
2.1.238 87 9/27/2024
2.1.237 94 9/27/2024
2.1.236 99 9/27/2024
2.1.235 93 9/27/2024
2.1.234 80 9/27/2024
2.1.233 78 9/27/2024
2.1.232 90 9/27/2024
2.1.231 89 9/27/2024
2.1.230 80 9/27/2024
2.1.229 104 9/27/2024
2.1.228 82 9/27/2024
2.1.227 89 9/27/2024
2.1.226 87 9/27/2024
2.1.225 95 9/27/2024
2.1.224 79 9/27/2024
2.1.223 98 9/26/2024
2.1.222 81 9/26/2024
2.1.221 80 9/26/2024
2.1.220 88 9/26/2024
2.1.219 84 9/26/2024
2.1.218 89 9/26/2024
2.1.217 93 9/26/2024
2.1.216 89 9/26/2024
2.1.215 89 9/26/2024
2.1.214 87 9/26/2024
2.1.213 88 9/26/2024
2.1.211 85 9/26/2024
2.1.210 82 9/26/2024
2.1.209 94 9/26/2024
2.1.208 88 9/26/2024
2.1.207 103 9/26/2024
2.1.206 92 9/26/2024
2.1.204 91 9/26/2024
2.1.203 80 9/26/2024
2.1.202 83 9/26/2024
2.1.201 94 9/26/2024
2.1.200 82 9/26/2024
2.1.199 101 9/26/2024
2.1.198 87 9/26/2024
2.1.197 81 9/25/2024
2.1.196 82 9/24/2024
2.1.195 78 9/24/2024
2.1.194 85 9/24/2024
2.1.193 80 9/24/2024
2.1.192 85 9/23/2024
2.1.191 78 9/23/2024
2.1.190 82 9/23/2024
2.1.189 79 9/23/2024
2.1.188 84 9/23/2024
2.1.187 77 9/23/2024
2.1.186 91 9/23/2024
2.1.185 86 9/23/2024
2.1.184 81 9/23/2024
2.1.183 82 9/23/2024
2.1.182 92 9/23/2024
2.1.181 83 9/23/2024
2.1.180 73 9/23/2024
2.1.179 81 9/23/2024
2.1.178 81 9/23/2024
2.1.177 83 9/23/2024
2.1.176 84 9/23/2024
2.1.175 79 9/23/2024
2.1.174 78 9/23/2024
2.1.173 81 9/23/2024
2.1.172 79 9/23/2024
2.1.171 84 9/23/2024
2.1.170 82 9/23/2024
2.1.169 81 9/23/2024
2.1.168 80 9/23/2024
2.1.167 76 9/23/2024
2.1.166 84 9/23/2024
2.1.165 84 9/23/2024
2.1.164 78 9/23/2024
2.1.163 64 9/23/2024
2.1.162 84 9/23/2024
2.1.161 75 9/23/2024
2.1.160 83 9/23/2024
2.1.159 75 9/23/2024
2.1.158 84 9/23/2024
2.1.157 81 9/23/2024
2.1.156 83 9/23/2024
2.1.155 90 9/23/2024
2.1.154 78 9/23/2024
2.1.153 81 9/23/2024
2.1.152 85 9/23/2024
2.1.151 81 9/23/2024
2.1.150 95 9/22/2024
2.1.149 84 9/19/2024
2.1.148 76 9/19/2024
2.1.147 79 9/18/2024
2.1.146 87 9/18/2024
2.1.145 88 9/18/2024
2.1.144 78 9/18/2024
2.1.143 92 9/18/2024
2.1.142 90 9/18/2024
2.1.141 100 9/18/2024
2.1.140 99 9/18/2024
2.1.139 93 9/18/2024
2.1.138 98 9/18/2024
2.1.137 97 9/18/2024
2.1.136 94 9/18/2024
2.1.135 98 9/18/2024
2.1.134 94 9/18/2024
2.1.133 90 9/18/2024
2.1.132 100 9/18/2024
2.1.131 96 9/18/2024
2.1.130 100 9/18/2024
2.1.129 96 9/17/2024
2.1.128 94 9/17/2024
2.1.127 100 9/17/2024
2.1.126 101 9/17/2024
2.1.124 98 9/17/2024
2.1.123 92 9/17/2024
2.1.122 104 9/17/2024
2.1.121 96 9/17/2024
2.1.120 101 9/17/2024
2.1.119 105 9/17/2024
2.1.118 97 9/17/2024
2.1.117 106 9/17/2024
2.1.116 92 9/17/2024
2.1.115 106 9/17/2024
2.1.114 97 9/17/2024
2.1.113 94 9/17/2024
2.1.112 93 9/17/2024
2.1.111 92 9/17/2024
2.1.110 98 9/17/2024
2.1.109 105 9/17/2024
2.1.108 116 9/17/2024
2.1.107 81 9/17/2024
2.1.106 83 9/17/2024
2.1.105 92 9/17/2024
2.1.104 83 9/17/2024
2.1.103 107 9/16/2024
2.1.102 95 9/16/2024
2.1.101 93 9/16/2024
2.1.100 100 9/16/2024
2.1.99 94 9/16/2024
2.1.98 140 9/16/2024
2.1.97 93 9/16/2024
2.1.96 106 9/16/2024
2.1.95 99 9/16/2024
2.1.94 99 9/16/2024
2.1.93 113 9/13/2024
2.1.92 101 9/13/2024
2.1.91 114 9/12/2024
2.1.90 101 9/12/2024
2.1.89 107 9/12/2024
2.1.88 106 9/12/2024
2.1.87 107 9/12/2024
2.1.86 101 9/12/2024
2.1.85 99 9/12/2024
2.1.84 88 9/12/2024
2.1.83 93 9/12/2024
2.1.82 134 9/12/2024
2.1.81 106 9/12/2024
2.1.80 105 9/12/2024
2.1.79 113 9/12/2024
2.1.78 102 9/12/2024
2.1.77 112 9/12/2024
2.1.76 113 9/11/2024
2.1.75 90 9/11/2024
2.1.74 114 9/11/2024
2.1.73 113 9/11/2024
2.1.72 113 9/11/2024
2.1.71 114 9/11/2024
2.1.70 102 9/11/2024
2.1.69 108 9/11/2024
2.1.68 99 9/11/2024
2.1.67 114 9/11/2024
2.1.66 112 9/11/2024
2.1.65 110 9/11/2024
2.1.64 105 9/11/2024
2.1.63 112 9/11/2024
2.1.62 105 9/11/2024
2.1.61 112 9/11/2024
2.1.60 119 9/11/2024
2.1.59 111 9/11/2024
2.1.58 99 9/11/2024
2.1.57 97 9/11/2024
2.1.56 100 9/11/2024
2.1.55 113 9/11/2024
2.1.54 113 9/11/2024
2.1.53 111 9/11/2024
2.1.52 101 9/11/2024
2.1.51 99 9/10/2024
2.1.50 102 9/10/2024
2.1.49 88 9/10/2024
2.1.48 83 9/10/2024
2.1.47 89 9/10/2024
2.1.46 99 9/10/2024
2.1.45 99 9/10/2024
2.1.44 103 9/10/2024
2.1.43 81 9/10/2024
2.1.42 83 9/10/2024
2.1.41 104 9/10/2024
2.1.40 77 9/10/2024
2.1.39 101 9/10/2024
2.1.38 93 9/10/2024
2.1.37 95 9/10/2024
2.1.36 96 9/10/2024
2.1.35 106 9/10/2024
2.1.34 103 9/10/2024
2.1.33 98 9/10/2024
2.1.30 94 9/10/2024
2.1.29 96 9/10/2024
2.1.28 97 9/10/2024
2.1.27 90 9/10/2024
2.1.25 101 9/9/2024
2.1.24 96 9/9/2024
2.1.23 81 9/9/2024
2.1.22 80 9/9/2024
2.1.21 95 9/9/2024
2.1.20 86 9/9/2024
2.1.19 78 9/9/2024
2.1.18 86 9/9/2024
2.1.16 82 9/9/2024
2.1.15 85 9/9/2024
2.1.13 102 9/9/2024
2.1.12 86 9/9/2024
2.1.11 107 9/9/2024
2.1.10 92 9/9/2024
2.1.9 81 9/9/2024
2.1.8 108 9/9/2024
2.1.7 102 9/9/2024
2.1.6 92 9/8/2024