Soenneker.Blazor.FilePond 2.1.869

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

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

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.FilePond

A Blazor interop library for the file upload library FilePond

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

Diligence was taken to align the Blazor API with JS. Refer to the FilePond documentation for details.

Installation

dotnet add package Soenneker.Blazor.FilePond

1. Add the following to your _Imports.razor file

@using Soenneker.Blazor.FilePond

2. Add the following to your Startup.cs file

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

3. Add the stylesheet to your wwwroot/index.html file

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/filepond@4.31.1/dist/filepond.min.css" integrity="sha256-a95jYCBL4++k1XyLYgulKmY33bIJIVYMsJO/RNytaJM=" crossorigin="anonymous">

4. Add the scripts to your wwwroot/index.html file

<script src="https://cdn.jsdelivr.net/npm/filepond@4.31.1/dist/filepond.min.js" integrity="sha256-6yXpr8+sATA4Q2ANTyZmpn4ZGP7grbIRNpe9s0Y+iO0=" crossorigin="anonymous"></script>
<script src="_content/Soenneker.Blazor.FilePond/filepondinterop.js"></script>

Usage

<FilePond @ref="FilePond" Options="_options" OnAddFile="OnAddFile"></FilePond>

@code{
    private FilePond? FilePond { get; set; }

    private readonly FilePondOptions _options = new()
    {
        MaxFiles = 20,
        AllowMultiple = true
    };

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (firstRender)
        {
            // Add any plugins you want to use
            //await FilePond!.EnablePlugins(FilePondPluginType.FileValidateType, FilePondPluginType.ImagePreview);
        }
    }

    private async Task OnAddFile((FilePondError? error, FilePondFileItem fileItem) obj)
    {
        Logger.LogInformation("OnAddFile fired: Filename: {fileName}", obj.fileItem.Filename);
        Stream? stream = await FilePond!.GetStreamForFile();
        // do something with the stream
        await stream.DisposeAsync();
    }
}

⚠️ While 95%+ of the FilePond JS has been implemented, there are a few features not yet supported. If you need assistance or want to request a new feature, please open an issue or submit a pull request.

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
2.1.886 0 6/27/2024
2.1.885 0 6/27/2024
2.1.884 0 6/27/2024
2.1.883 0 6/27/2024
2.1.882 0 6/27/2024
2.1.881 21 6/27/2024
2.1.880 19 6/27/2024
2.1.879 26 6/27/2024
2.1.878 16 6/27/2024
2.1.877 19 6/27/2024
2.1.876 57 6/24/2024
2.1.875 60 6/24/2024
2.1.874 58 6/22/2024
2.1.873 64 6/22/2024
2.1.872 57 6/22/2024
2.1.871 57 6/22/2024
2.1.870 58 6/22/2024
2.1.869 65 6/22/2024
2.1.868 60 6/22/2024
2.1.867 75 6/20/2024
2.1.866 77 6/20/2024
2.1.865 72 6/16/2024
2.1.864 76 6/16/2024
2.1.863 73 6/16/2024
2.1.862 82 6/15/2024
2.1.861 86 6/15/2024
2.1.860 70 6/15/2024
2.1.859 78 6/15/2024
2.1.858 75 6/15/2024
2.1.857 75 6/15/2024
2.1.856 74 6/15/2024
2.1.855 77 6/15/2024
2.1.854 70 6/15/2024
2.1.853 76 6/15/2024
2.1.852 78 6/15/2024
2.1.851 77 6/15/2024
2.1.850 77 6/15/2024
2.1.849 82 6/15/2024
2.1.848 81 6/15/2024
2.1.847 80 6/14/2024
2.1.846 81 6/14/2024
2.1.845 70 6/12/2024
2.1.844 74 6/9/2024
2.1.843 65 6/7/2024
2.1.842 75 6/4/2024
2.1.841 73 6/4/2024
2.1.840 71 6/4/2024
2.1.839 77 6/4/2024
2.1.838 88 6/4/2024
2.1.837 77 6/3/2024
2.1.836 79 6/3/2024
2.1.835 87 6/2/2024
2.1.834 81 6/2/2024
2.1.833 79 6/2/2024
2.1.832 75 6/2/2024
2.1.831 77 6/2/2024
2.1.830 82 6/2/2024
2.1.829 82 6/2/2024
2.1.828 79 6/1/2024
2.1.827 80 6/1/2024
2.1.826 79 6/1/2024
2.1.825 77 5/31/2024
2.1.824 77 5/31/2024
2.1.823 74 5/31/2024
2.1.822 81 5/31/2024
2.1.821 73 5/31/2024
2.1.820 78 5/31/2024
2.1.819 74 5/31/2024
2.1.818 76 5/31/2024
2.1.817 69 5/31/2024
2.1.816 76 5/29/2024
2.1.815 70 5/29/2024
2.1.814 83 5/29/2024
2.1.813 72 5/29/2024
2.1.812 69 5/29/2024
2.1.811 72 5/29/2024
2.1.810 76 5/29/2024
2.1.809 75 5/29/2024
2.1.808 71 5/29/2024
2.1.807 82 5/28/2024
2.1.806 75 5/28/2024
2.1.805 67 5/28/2024
2.1.804 60 5/28/2024
2.1.803 76 5/28/2024
2.1.802 69 5/28/2024
2.1.801 70 5/28/2024
2.1.800 74 5/28/2024
2.1.799 70 5/28/2024
2.1.798 71 5/28/2024
2.1.797 73 5/28/2024
2.1.796 70 5/28/2024
2.1.795 80 5/28/2024
2.1.794 71 5/28/2024
2.1.793 80 5/27/2024
2.1.792 70 5/27/2024
2.1.791 75 5/27/2024
2.1.790 73 5/27/2024
2.1.789 79 5/27/2024
2.1.788 75 5/27/2024
2.1.787 83 5/27/2024
2.1.786 75 5/27/2024
2.1.785 75 5/27/2024
2.1.784 77 5/27/2024
2.1.783 78 5/26/2024
2.1.782 73 5/26/2024
2.1.781 76 5/26/2024
2.1.780 84 5/26/2024
2.1.779 82 5/26/2024
2.1.778 82 5/26/2024
2.1.777 79 5/26/2024
2.1.776 83 5/26/2024
2.1.775 79 5/26/2024
2.1.774 87 5/26/2024
2.1.773 81 5/26/2024
2.1.772 91 5/26/2024
2.1.771 76 5/26/2024
2.1.770 86 5/25/2024
2.1.769 75 5/25/2024
2.1.768 82 5/25/2024
2.1.767 79 5/25/2024
2.1.766 79 5/25/2024
2.1.765 80 5/25/2024
2.1.764 89 5/25/2024
2.1.763 88 5/25/2024
2.1.762 85 5/25/2024
2.1.761 76 5/25/2024
2.1.760 87 5/25/2024
2.1.759 75 5/25/2024
2.1.758 81 5/25/2024
2.1.757 84 5/24/2024
2.1.756 86 5/24/2024
2.1.755 77 5/24/2024
2.1.754 85 5/23/2024
2.1.753 78 5/23/2024
2.1.752 82 5/23/2024
2.1.751 81 5/23/2024
2.1.750 75 5/23/2024
2.1.749 74 5/23/2024
2.1.748 59 5/23/2024
2.1.747 57 5/23/2024
2.1.746 71 5/23/2024
2.1.745 71 5/23/2024
2.1.744 77 5/23/2024
2.1.743 71 5/23/2024
2.1.742 77 5/22/2024
2.1.741 71 5/22/2024
2.1.740 70 5/22/2024
2.1.739 75 5/22/2024
2.1.738 65 5/22/2024
2.1.737 84 5/22/2024
2.1.736 67 5/22/2024
2.1.735 65 5/22/2024
2.1.734 74 5/19/2024
2.1.733 70 5/19/2024
2.1.732 64 5/18/2024
2.1.731 74 5/18/2024
2.1.730 67 5/18/2024
2.1.729 68 5/18/2024
2.1.728 66 5/18/2024
2.1.727 73 5/18/2024
2.1.726 71 5/18/2024
2.1.725 76 5/18/2024
2.1.724 71 5/18/2024
2.1.723 80 5/17/2024
2.1.722 74 5/17/2024
2.1.721 74 5/17/2024
2.1.720 73 5/17/2024
2.1.719 58 5/17/2024
2.1.718 72 5/16/2024
2.1.717 79 5/16/2024
2.1.716 77 5/16/2024
2.1.715 72 5/16/2024
2.1.714 82 5/15/2024
2.1.713 76 5/15/2024
2.1.712 78 5/15/2024
2.1.711 74 5/15/2024
2.1.710 77 5/15/2024
2.1.709 71 5/15/2024
2.1.708 67 5/14/2024
2.1.707 60 5/14/2024
2.1.706 70 5/14/2024
2.1.705 65 5/14/2024
2.1.704 70 5/13/2024
2.1.703 69 5/13/2024
2.1.702 69 5/13/2024
2.1.701 70 5/13/2024
2.1.700 68 5/13/2024
2.1.699 72 5/13/2024
2.1.698 68 5/13/2024
2.1.697 90 5/7/2024
2.1.696 54 5/3/2024
2.1.695 62 5/1/2024
2.1.694 48 5/1/2024
2.1.693 61 5/1/2024
2.1.692 69 4/30/2024
2.1.691 64 4/30/2024
2.1.690 71 4/30/2024
2.1.689 54 4/30/2024
2.1.688 72 4/30/2024
2.1.687 66 4/30/2024
2.1.686 72 4/30/2024
2.1.685 61 4/30/2024
2.1.684 100 4/30/2024
2.1.683 68 4/30/2024
2.1.682 77 4/29/2024
2.1.681 66 4/29/2024
2.1.680 72 4/29/2024
2.1.679 67 4/29/2024
2.1.678 62 4/29/2024
2.1.677 66 4/29/2024
2.1.676 63 4/29/2024
2.1.675 63 4/29/2024
2.1.674 63 4/29/2024
2.1.673 69 4/28/2024
2.1.672 63 4/28/2024
2.1.671 71 4/28/2024
2.1.670 80 4/28/2024
2.1.669 70 4/28/2024
2.1.668 68 4/28/2024
2.1.667 70 4/28/2024
2.1.666 63 4/28/2024
2.1.665 61 4/28/2024
2.1.664 64 4/28/2024
2.1.663 68 4/28/2024
2.1.662 70 4/28/2024
2.1.661 66 4/28/2024
2.1.660 61 4/28/2024
2.1.659 63 4/28/2024
2.1.658 74 4/27/2024
2.1.657 64 4/27/2024
2.1.656 83 4/20/2024
2.1.655 81 4/20/2024
2.1.654 86 4/20/2024
2.1.653 93 4/20/2024
2.1.652 82 4/20/2024
2.1.651 75 4/20/2024
2.1.650 76 4/20/2024
2.1.649 73 4/20/2024
2.1.648 73 4/20/2024
2.1.647 75 4/19/2024
2.1.646 67 4/19/2024
2.1.645 61 4/19/2024
2.1.644 71 4/19/2024
2.1.643 63 4/19/2024
2.1.642 70 4/19/2024
2.1.641 71 4/19/2024
2.1.640 65 4/19/2024
2.1.639 68 4/19/2024
2.1.638 70 4/19/2024
2.1.637 74 4/19/2024
2.1.636 76 4/19/2024
2.1.635 72 4/19/2024
2.1.634 71 4/19/2024
2.1.633 70 4/15/2024
2.1.632 74 4/15/2024
2.1.631 88 4/13/2024
2.1.630 103 4/13/2024
2.1.629 76 4/13/2024
2.1.628 72 4/13/2024
2.1.627 78 4/13/2024
2.1.626 66 4/13/2024
2.1.625 70 4/13/2024
2.1.624 78 4/13/2024
2.1.623 71 4/13/2024
2.1.622 73 4/13/2024
2.1.621 66 4/12/2024
2.1.620 64 4/12/2024
2.1.619 73 4/12/2024
2.1.618 68 4/12/2024
2.1.617 67 4/12/2024
2.1.616 63 4/12/2024
2.1.615 72 4/12/2024
2.1.614 69 4/12/2024
2.1.613 75 4/12/2024
2.1.612 67 4/12/2024
2.1.611 72 4/12/2024
2.1.610 79 4/12/2024
2.1.609 73 4/12/2024
2.1.608 69 4/12/2024
2.1.607 81 4/12/2024
2.1.606 73 4/12/2024
2.1.605 70 4/11/2024
2.1.604 114 4/11/2024
2.1.603 81 4/10/2024
2.1.602 71 4/10/2024
2.1.601 76 4/10/2024
2.1.600 74 4/10/2024
2.1.599 71 4/10/2024
2.1.598 77 4/10/2024
2.1.597 80 4/10/2024
2.1.596 70 4/10/2024
2.1.595 69 4/10/2024
2.1.594 72 4/10/2024
2.1.593 70 4/10/2024
2.1.592 76 4/9/2024
2.1.591 77 4/9/2024
2.1.590 82 4/9/2024
2.1.589 82 4/9/2024
2.1.588 87 4/8/2024
2.1.587 97 4/4/2024
2.1.586 89 4/4/2024
2.1.585 79 4/3/2024
2.1.584 65 4/3/2024
2.1.583 77 4/2/2024
2.1.582 71 4/2/2024
2.1.581 70 4/2/2024
2.1.580 73 4/2/2024
2.1.579 71 4/2/2024
2.1.578 65 4/2/2024
2.1.577 54 4/2/2024
2.1.576 72 4/2/2024
2.1.575 60 4/2/2024
2.1.574 81 4/1/2024
2.1.573 71 4/1/2024
2.1.572 74 4/1/2024
2.1.571 223 3/30/2024
2.1.570 80 3/30/2024
2.1.569 72 3/30/2024
2.1.568 79 3/30/2024
2.1.567 68 3/30/2024
2.1.566 71 3/29/2024
2.1.565 76 3/29/2024
2.1.564 75 3/29/2024
2.1.563 80 3/29/2024
2.1.562 81 3/27/2024
2.1.561 89 3/26/2024
2.1.560 82 3/26/2024
2.1.559 84 3/26/2024
2.1.558 86 3/25/2024
2.1.557 83 3/25/2024
2.1.556 91 3/25/2024
2.1.555 82 3/25/2024
2.1.554 87 3/25/2024
2.1.553 82 3/25/2024
2.1.552 84 3/25/2024
2.1.551 76 3/25/2024
2.1.550 84 3/25/2024
2.1.549 80 3/25/2024
2.1.548 86 3/24/2024
2.1.547 84 3/23/2024
2.1.546 85 3/21/2024
2.1.545 83 3/21/2024
2.1.544 91 3/21/2024
2.1.543 90 3/21/2024
2.1.542 90 3/21/2024
2.1.541 93 3/21/2024
2.1.540 92 3/21/2024
2.1.539 92 3/20/2024
2.1.538 83 3/20/2024
2.1.537 88 3/20/2024
2.1.536 89 3/20/2024
2.1.535 92 3/20/2024
2.1.534 98 3/20/2024
2.1.533 83 3/20/2024
2.1.532 82 3/20/2024
2.1.531 95 3/19/2024
2.1.530 85 3/19/2024
2.1.529 84 3/19/2024
2.1.528 87 3/19/2024
2.1.527 76 3/19/2024
2.1.526 67 3/19/2024
2.1.525 84 3/19/2024
2.1.524 93 3/19/2024
2.1.523 87 3/19/2024
2.1.522 80 3/19/2024
2.1.521 87 3/18/2024
2.1.520 82 3/18/2024
2.1.519 90 3/18/2024
2.1.518 81 3/16/2024
2.1.517 94 3/16/2024
2.1.516 100 3/16/2024
2.1.515 93 3/16/2024
2.1.514 82 3/16/2024
2.1.513 87 3/16/2024
2.1.512 89 3/16/2024
2.1.511 96 3/16/2024
2.1.510 87 3/16/2024
2.1.509 78 3/15/2024
2.1.508 87 3/15/2024
2.1.507 84 3/14/2024
2.1.506 89 3/14/2024
2.1.505 85 3/14/2024
2.1.504 89 3/14/2024
2.1.503 90 3/13/2024
2.1.502 91 3/13/2024
2.1.501 94 3/13/2024
2.1.500 92 3/13/2024
2.1.499 89 3/13/2024
2.1.498 102 3/13/2024
2.1.497 98 3/13/2024
2.1.496 98 3/13/2024
2.1.495 93 3/13/2024
2.1.494 72 3/13/2024
2.1.493 96 3/13/2024
2.1.492 89 3/13/2024
2.1.491 85 3/13/2024
2.1.490 89 3/13/2024
2.1.489 86 3/13/2024
2.1.488 92 3/13/2024
2.1.487 80 3/13/2024
2.1.486 75 3/12/2024
2.1.485 91 3/12/2024
2.1.484 93 3/12/2024
2.1.483 88 3/12/2024
2.1.482 80 3/12/2024
2.1.481 85 3/12/2024
2.1.480 82 3/12/2024
2.1.479 83 3/12/2024
2.1.478 92 3/12/2024
2.1.477 83 3/12/2024
2.1.476 77 3/12/2024
2.1.475 82 3/12/2024
2.1.474 88 3/12/2024
2.1.473 87 3/12/2024
2.1.472 101 3/11/2024
2.1.471 96 3/11/2024
2.1.470 96 3/11/2024
2.1.469 89 3/11/2024
2.1.468 89 3/11/2024
2.1.467 85 3/11/2024
2.1.466 84 3/11/2024
2.1.465 76 3/11/2024
2.1.464 93 3/11/2024
2.1.463 76 3/11/2024
2.1.462 98 3/10/2024
2.1.461 95 3/10/2024
2.1.460 91 3/10/2024
2.1.459 103 3/10/2024
2.1.458 87 3/10/2024
2.1.457 100 3/10/2024
2.1.456 96 3/10/2024
2.1.455 100 3/10/2024
2.1.454 96 3/10/2024
2.1.453 93 3/9/2024
2.1.452 95 3/9/2024
2.1.451 99 3/9/2024
2.1.450 100 3/9/2024
2.1.449 101 3/8/2024
2.1.448 93 3/8/2024
2.1.447 96 3/8/2024
2.1.446 95 3/8/2024
2.1.445 94 3/8/2024
2.1.444 88 3/8/2024
2.1.443 88 3/8/2024
2.1.442 89 3/8/2024
2.1.441 97 3/8/2024
2.1.440 94 3/8/2024
2.1.439 97 3/8/2024
2.1.438 96 3/8/2024
2.1.437 91 3/7/2024
2.1.436 115 3/6/2024
2.1.435 87 3/6/2024
2.1.434 76 3/6/2024
2.1.433 92 3/6/2024
2.1.432 86 3/6/2024
2.1.431 93 3/6/2024
2.1.430 94 3/6/2024
2.1.429 78 3/4/2024
2.1.428 87 3/4/2024
2.1.427 84 3/4/2024
2.1.426 66 3/4/2024
2.1.425 82 3/4/2024
2.1.424 83 3/4/2024
2.1.423 83 3/4/2024
2.1.422 81 3/4/2024
2.1.421 82 3/4/2024
2.1.420 81 3/4/2024
2.1.419 80 3/4/2024
2.1.418 80 3/4/2024
2.1.417 78 3/4/2024
2.1.416 79 3/3/2024
2.1.415 77 3/3/2024
2.1.414 88 3/3/2024
2.1.413 79 3/3/2024
2.1.412 85 3/3/2024
2.1.411 79 3/3/2024
2.1.410 86 3/3/2024
2.1.409 71 3/3/2024
2.1.408 81 3/3/2024
2.1.407 86 3/3/2024
2.1.406 82 3/2/2024
2.1.405 77 3/2/2024
2.1.404 82 3/2/2024
2.1.403 77 3/2/2024
2.1.402 79 3/2/2024
2.1.401 84 3/2/2024
2.1.400 80 3/2/2024
2.1.399 74 3/2/2024
2.1.398 81 3/2/2024
2.1.397 74 3/2/2024
2.1.396 88 3/2/2024
2.1.395 73 3/2/2024
2.1.394 84 3/2/2024
2.1.393 70 3/2/2024
2.1.392 82 3/1/2024
2.1.391 76 3/1/2024
2.1.390 80 3/1/2024
2.1.389 73 2/29/2024
2.1.388 81 2/29/2024
2.1.387 74 2/29/2024
2.1.386 76 2/29/2024
2.1.385 73 2/29/2024
2.1.384 76 2/29/2024
2.1.383 74 2/29/2024
2.1.382 74 2/29/2024
2.1.381 81 2/29/2024
2.1.380 71 2/29/2024
2.1.379 83 2/29/2024
2.1.378 71 2/29/2024
2.1.377 70 2/29/2024
2.1.376 75 2/29/2024
2.1.375 78 2/29/2024
2.1.374 86 2/27/2024
2.1.373 85 2/27/2024
2.1.372 85 2/27/2024
2.1.371 91 2/27/2024
2.1.370 84 2/26/2024
2.1.369 85 2/26/2024
2.1.368 87 2/26/2024
2.1.367 81 2/26/2024
2.1.366 82 2/26/2024
2.1.365 84 2/26/2024
2.1.364 79 2/25/2024
2.1.363 85 2/25/2024
2.1.362 80 2/25/2024
2.1.361 83 2/25/2024
2.1.360 86 2/25/2024
2.1.359 81 2/25/2024
2.1.358 70 2/25/2024
2.1.357 83 2/25/2024
2.1.356 86 2/25/2024
2.1.355 80 2/25/2024
2.1.354 88 2/24/2024
2.1.353 89 2/24/2024
2.1.352 83 2/24/2024
2.1.351 80 2/24/2024
2.1.350 81 2/23/2024
2.1.349 84 2/23/2024
2.1.348 85 2/23/2024
2.1.347 95 2/22/2024
2.1.346 84 2/22/2024
2.1.345 88 2/22/2024
2.1.344 81 2/22/2024
2.1.343 85 2/22/2024
2.1.342 84 2/22/2024
2.1.341 80 2/22/2024
2.1.340 77 2/22/2024
2.1.339 80 2/22/2024
2.1.338 71 2/22/2024
2.1.337 69 2/22/2024
2.1.336 94 2/22/2024
2.1.335 84 2/22/2024
2.1.334 94 2/22/2024
2.1.333 91 2/22/2024
2.1.332 85 2/21/2024
2.1.331 87 2/21/2024
2.1.330 89 2/21/2024
2.1.329 84 2/21/2024
2.1.328 98 2/21/2024
2.1.327 86 2/21/2024
2.1.326 90 2/21/2024
2.1.325 87 2/21/2024
2.1.324 92 2/21/2024
2.1.323 94 2/21/2024
2.1.322 79 2/21/2024
2.1.321 73 2/21/2024
2.1.320 86 2/21/2024
2.1.319 81 2/21/2024
2.1.318 96 2/21/2024
2.1.317 86 2/21/2024
2.1.316 78 2/21/2024
2.1.315 86 2/20/2024
2.1.314 80 2/20/2024
2.1.313 85 2/20/2024
2.1.312 81 2/20/2024
2.1.311 94 2/20/2024
2.1.310 87 2/20/2024
2.1.309 89 2/20/2024
2.1.308 84 2/20/2024
2.1.307 86 2/20/2024
2.1.306 85 2/20/2024
2.1.305 90 2/20/2024
2.1.304 87 2/20/2024
2.1.303 83 2/20/2024
2.1.302 78 2/20/2024
2.1.301 79 2/19/2024
2.1.300 84 2/19/2024
2.1.299 78 2/19/2024
2.1.298 89 2/19/2024
2.1.297 80 2/19/2024
2.1.296 81 2/19/2024
2.1.295 91 2/19/2024
2.1.294 80 2/19/2024
2.1.293 93 2/19/2024
2.1.292 81 2/19/2024
2.1.291 87 2/17/2024
2.1.290 85 2/17/2024
2.1.289 79 2/17/2024
2.1.288 77 2/17/2024
2.1.287 85 2/17/2024
2.1.286 83 2/17/2024
2.1.285 91 2/17/2024
2.1.284 89 2/17/2024
2.1.283 80 2/17/2024
2.1.282 86 2/17/2024
2.1.281 86 2/17/2024
2.1.280 85 2/17/2024
2.1.279 90 2/17/2024
2.1.278 91 2/16/2024
2.1.277 84 2/16/2024
2.1.276 86 2/16/2024
2.1.275 85 2/16/2024
2.1.274 85 2/16/2024
2.1.273 91 2/16/2024
2.1.272 85 2/16/2024
2.1.271 79 2/16/2024
2.1.270 83 2/16/2024
2.1.269 84 2/16/2024
2.1.268 85 2/16/2024
2.1.267 81 2/16/2024
2.1.266 88 2/16/2024
2.1.265 81 2/16/2024
2.1.264 84 2/14/2024
2.1.263 85 2/14/2024
2.1.262 84 2/14/2024
2.1.261 86 2/14/2024
2.1.260 81 2/14/2024
2.1.259 84 2/14/2024
2.1.258 81 2/14/2024
2.1.257 92 2/14/2024
2.1.256 86 2/14/2024
2.1.255 86 2/13/2024
2.1.254 84 2/13/2024
2.1.253 81 2/13/2024
2.1.252 84 2/13/2024
2.1.251 99 2/13/2024
2.1.250 90 2/13/2024
2.1.249 89 2/13/2024
2.1.248 89 2/13/2024
2.1.247 82 2/13/2024
2.1.246 84 2/13/2024
2.1.245 90 2/13/2024
2.1.244 87 2/13/2024
2.1.243 77 2/13/2024
2.1.242 78 2/13/2024
2.1.241 95 2/13/2024
2.1.240 91 2/12/2024
2.1.239 87 2/12/2024
2.1.238 79 2/12/2024
2.1.237 82 2/12/2024
2.1.236 81 2/12/2024
2.1.235 86 2/12/2024
2.1.234 84 2/12/2024
2.1.233 91 2/12/2024
2.1.232 85 2/12/2024
2.1.231 86 2/11/2024
2.1.230 88 2/11/2024
2.1.229 84 2/11/2024
2.1.228 89 2/11/2024
2.1.227 86 2/11/2024
2.1.226 81 2/11/2024
2.1.225 84 2/11/2024
2.1.224 86 2/11/2024
2.1.223 85 2/11/2024
2.1.222 83 2/11/2024
2.1.221 83 2/11/2024
2.1.220 87 2/11/2024
2.1.219 86 2/10/2024
2.1.218 85 2/10/2024
2.1.217 87 2/10/2024
2.1.216 90 2/10/2024
2.1.215 88 2/10/2024
2.1.214 85 2/10/2024
2.1.213 89 2/10/2024
2.1.212 87 2/10/2024
2.1.211 89 2/10/2024
2.1.210 82 2/10/2024
2.1.209 88 2/9/2024
2.1.208 82 2/9/2024
2.1.207 80 2/9/2024
2.1.206 88 2/9/2024
2.1.205 84 2/9/2024
2.1.204 85 2/9/2024
2.1.203 80 2/9/2024
2.1.202 83 2/9/2024
2.1.201 87 2/9/2024
2.1.200 88 2/9/2024
2.1.199 80 2/9/2024
2.1.198 86 2/9/2024
2.1.197 81 2/9/2024
2.1.196 82 2/9/2024
2.1.195 77 2/9/2024
2.1.194 89 2/8/2024
2.1.193 86 2/8/2024
2.1.192 90 2/8/2024
2.1.191 82 2/8/2024
2.1.190 77 2/8/2024
2.1.189 86 2/8/2024
2.1.188 83 2/8/2024
2.1.187 89 2/8/2024
2.1.186 87 2/8/2024
2.1.185 84 2/8/2024
2.1.184 85 2/8/2024
2.1.183 86 2/8/2024
2.1.182 87 2/8/2024
2.1.181 79 2/7/2024
2.1.180 73 2/7/2024
2.1.179 85 2/7/2024
2.1.178 80 2/7/2024
2.1.177 83 2/7/2024
2.1.176 83 2/7/2024
2.1.175 82 2/7/2024
2.1.174 79 2/7/2024
2.1.173 80 2/7/2024
2.1.172 79 2/7/2024
2.1.171 81 2/7/2024
2.1.170 81 2/7/2024
2.1.169 79 2/7/2024
2.1.168 81 2/7/2024
2.1.167 83 2/7/2024
2.1.166 85 2/6/2024
2.1.165 83 2/6/2024
2.1.164 84 2/6/2024
2.1.163 80 2/6/2024
2.1.162 78 2/6/2024
2.1.161 74 2/5/2024
2.1.160 75 2/5/2024
2.1.159 76 2/5/2024
2.1.158 73 2/5/2024
2.1.157 73 2/5/2024
2.1.156 77 2/5/2024
2.1.155 77 2/5/2024
2.1.154 75 2/5/2024
2.1.153 77 2/4/2024
2.1.152 77 2/4/2024
2.1.151 79 2/4/2024
2.1.150 73 2/4/2024
2.1.149 79 2/4/2024
2.1.148 77 2/4/2024
2.1.147 83 2/4/2024
2.1.146 76 2/4/2024
2.1.145 71 2/4/2024
2.1.144 79 2/4/2024
2.1.143 77 2/4/2024
2.1.142 86 2/3/2024
2.1.141 78 2/3/2024
2.1.140 78 2/3/2024
2.1.139 89 2/3/2024
2.1.138 80 2/3/2024
2.1.137 73 2/3/2024
2.1.136 72 2/3/2024
2.1.135 74 2/3/2024
2.1.134 75 2/3/2024
2.1.133 72 2/3/2024
2.1.132 75 2/3/2024
2.1.131 76 2/2/2024
2.1.130 80 1/31/2024
2.1.129 74 1/31/2024
2.1.128 80 1/31/2024
2.1.127 74 1/31/2024
2.1.126 75 1/31/2024
2.1.125 81 1/31/2024
2.1.124 70 1/31/2024
2.1.123 73 1/31/2024
2.1.122 75 1/31/2024
2.1.121 75 1/31/2024
2.1.120 74 1/31/2024
2.1.119 72 1/31/2024
2.1.118 78 1/30/2024
2.1.117 74 1/30/2024
2.1.116 78 1/30/2024
2.1.115 76 1/30/2024
2.1.114 78 1/30/2024
2.1.113 76 1/30/2024
2.1.112 78 1/30/2024
2.1.111 72 1/30/2024
2.1.110 76 1/30/2024
2.1.109 80 1/30/2024
2.1.108 76 1/29/2024
2.1.107 74 1/29/2024
2.1.106 73 1/29/2024
2.1.105 73 1/29/2024
2.1.104 75 1/29/2024
2.1.103 78 1/29/2024
2.1.102 72 1/29/2024
2.1.101 70 1/29/2024
2.1.100 71 1/29/2024
2.1.99 75 1/29/2024
2.1.98 72 1/29/2024
2.1.97 77 1/29/2024
2.1.96 71 1/29/2024
2.1.95 76 1/29/2024
2.1.94 78 1/28/2024
2.1.93 70 1/28/2024
2.1.92 72 1/28/2024
2.1.91 72 1/28/2024
2.1.90 76 1/28/2024
2.1.89 73 1/28/2024
2.1.88 77 1/28/2024
2.1.87 74 1/28/2024
2.1.86 78 1/28/2024
2.1.85 74 1/28/2024
2.1.84 81 1/28/2024
2.1.83 70 1/28/2024
2.1.82 70 1/28/2024
2.1.81 79 1/28/2024
2.1.80 73 1/28/2024
2.1.79 77 1/28/2024
2.1.78 71 1/28/2024
2.1.77 76 1/27/2024
2.1.76 72 1/27/2024
2.1.75 78 1/27/2024
2.1.74 71 1/27/2024
2.1.73 72 1/27/2024
2.1.72 73 1/27/2024
2.1.71 70 1/27/2024
2.1.70 77 1/27/2024
2.1.69 68 1/27/2024
2.1.68 74 1/27/2024
2.1.67 81 1/27/2024
2.1.66 74 1/27/2024
2.1.65 73 1/27/2024
2.1.64 72 1/27/2024
2.1.63 72 1/27/2024
2.1.62 77 1/27/2024
2.1.61 76 1/27/2024
2.1.60 73 1/27/2024
2.1.59 75 1/26/2024
2.1.58 73 1/26/2024
2.1.57 77 1/26/2024
2.1.56 77 1/26/2024
2.1.55 78 1/26/2024
2.1.54 74 1/26/2024
2.1.53 75 1/26/2024
2.1.52 79 1/26/2024
2.1.51 77 1/26/2024
2.1.50 75 1/26/2024
2.1.49 78 1/26/2024
2.1.48 80 1/26/2024
2.1.47 80 1/26/2024
2.1.46 75 1/26/2024
2.1.45 81 1/26/2024
2.1.44 78 1/25/2024
2.1.43 83 1/25/2024
2.1.42 78 1/25/2024
2.1.41 76 1/25/2024
2.1.40 77 1/25/2024
2.1.39 75 1/25/2024
2.1.38 76 1/25/2024
2.1.37 91 1/25/2024
2.1.36 74 1/25/2024
2.1.35 82 1/19/2024
2.1.34 81 1/19/2024
2.1.33 76 1/19/2024
2.1.32 80 1/19/2024
2.1.31 74 1/19/2024
2.1.30 84 1/19/2024
2.1.29 74 1/19/2024
2.1.28 83 1/19/2024
2.1.27 85 1/17/2024
2.1.26 78 1/17/2024
2.1.25 86 1/17/2024
2.1.24 79 1/17/2024
2.1.23 82 1/17/2024
2.1.22 79 1/16/2024
2.1.21 87 1/16/2024
2.1.20 87 1/16/2024
2.1.19 86 1/16/2024
2.1.18 92 1/16/2024
2.1.17 90 1/16/2024
2.1.16 81 1/16/2024
2.1.15 87 1/16/2024
2.1.14 83 1/16/2024
2.1.13 83 1/16/2024
2.1.12 81 1/15/2024
2.1.11 79 1/15/2024
2.1.10 92 1/15/2024
2.1.9 85 1/15/2024
2.1.8 95 1/15/2024
2.1.7 93 1/15/2024
2.1.6 82 1/15/2024
2.1.5 97 1/14/2024
2.1.4 93 1/13/2024
2.1.3 94 1/13/2024
2.1.2 89 1/13/2024
2.1.1 91 1/13/2024