Syncfusion.Blazor.DropDowns 33.2.3

Syncfusion® Blazor DropDown Components

A comprehensive suite of Blazor dropdown and selection components for single/multi-select, autocomplete, and list-based input. Includes DropDownList, MultiSelect Dropdown, ListBox, ComboBox, AutoComplete, and Mention components.

Supported components

This package includes the following components:

Blazor DropDownList component

The Blazor DropDownList component is a replacement for HTML select tags with rich styling and powerful data binding capabilities.

Key features:

  • Data Binding: Bind to local arrays, IEnumerable, API responses, and observable collections
  • Single Selection: Non-editable selection of one value from a predefined list
  • Filtering: Real-time text search with highlight matching in dropdown
  • Grouping: Group items by category or custom field with collapsible groups
  • Templates: Custom item , header , footer and value templates for rich content rendering
  • Cascading: Dependent dropdowns with hierarchical data relationships
  • Keyboard Navigation: Full keyboard support (Arrow keys, Enter, Escape) for accessibility
  • UI Customization: Custom CSS, themes, and styling options for seamless integration
  • Virtual Scrolling: Efficiently handles large datasets by loading items on demand, ensuring smooth scrolling performance

Blazor DropDownList

Documentation:

Blazor MultiSelect Dropdown component

The Blazor MultiSelect Dropdown component enables selection of multiple values with checkboxes, tags display, and text filtering.

Key features:

  • Multi-Select Support: Select and deselect multiple items simultaneously
  • Checkbox Mode: Visual checkboxes for clear selection state indication
  • Tag Display: Selected values shown as removable tags in input area
  • Text Filtering: Type to filter and search within the dropdown list
  • Grouping: Organize items into collapsible category groups
  • Custom Tagging: Allow users to add custom values beyond predefined options
  • Select All: Bulk selection/deselection of all available items
  • Accessibility: Full keyboard navigation and ARIA support for screen readers
  • Virtual Scrolling: Efficiently handles large datasets by loading items on demand, ensuring smooth scrolling performance

Blazor MultiSelect Dropdown

Documentation:

Blazor ListBox component

The Blazor ListBox component displays a scrollable list of items with multi-selection, drag-drop, and reordering capabilities.

Key features:

  • Multi-Selection: Select one or multiple items with checkbox support
  • Drag and Drop: Reorder items within the list or between ListBoxes
  • Keyboard Navigation: Arrow keys, Shift+Click, and Ctrl+Click for multi-selection
  • Sorting: Built-in ascending/descending sort functionality
  • Grouping: Organize items into category groups with collapsible headers
  • Reordering: Move selected items up/down with toolbar buttons
  • Custom Templates: Rich templates for item rendering with HTML content
  • Accessibility: Full keyboard support and ARIA labels for screen readers

Blazor ListBox

Documentation:

Blazor ComboBox component

The Blazor ComboBox component is an editable dropdown combining text input with a filtered suggestion list for flexible selection.

Key features:

  • Editable Input: Type custom values or select from predefined options
  • Filtering: Real-time search and filtering as user types in the input
  • Data Binding: Support for arrays, API data, and observable collections
  • Grouping: Organize dropdown items into category groups
  • Cascading: Link multiple ComboBoxes for dependent data relationships
  • Custom Templates: Rich item and header templates for enhanced presentation
  • Keyboard Navigation: Full keyboard support with autocomplete suggestions
  • Accessibility: ARIA labels, screen reader support, and keyboard-only navigation
  • Virtual Scrolling: Efficiently handles large datasets by loading items on demand, ensuring smooth scrolling performance

Documentation:

Blazor AutoComplete component

The Blazor AutoComplete Component provides intelligent suggestions as users type, streamlining data entry with predictive input.

Key features:

  • Typeahead Suggestions: Display matching items as user types for faster selection
  • Text Filtering: Highlight matching text with case-sensitive and case-insensitive options
  • Data Binding: Bind to arrays, IEnumerable, API responses, and observables
  • Grouping: Organize suggestions into category groups with headers
  • Debounce Support: Optimize performance with configurable debounce intervals
  • Min Characters: Require minimum characters before showing suggestions
  • Custom Templates: Rich templates for suggestion rendering with HTML content
  • Accessibility: Full keyboard navigation and ARIA support for screen readers
  • Virtual Scrolling: Efficiently handles large datasets by loading items on demand, ensuring smooth scrolling performance

Blazor AutoComplete

Documentation:

Blazor Mention component

The Blazor Mention component enables user tagging and mentions similar to social media platforms, triggered by @ or custom symbols.

Key features:

  • Mention Triggers: Customize mention character (@ by default) to activate suggestions
  • Tagging Support: Tag users or items with @ mention similar to Facebook and Twitter
  • Suggestion List: Display filtered suggestions as user types the mention character
  • Data Binding: Bind to arrays, API data, and observable collections for mentions
  • Grouping: Organize mentions into category groups with collapsible headers
  • Custom Patterns: Support multiple mention patterns (@ for users, # for topics, etc.)
  • Rich Templates: Custom templates for rendering mention suggestions and content
  • Accessibility: Full keyboard navigation and ARIA support for screen readers

Blazor Mention

Documentation:

Add stylesheet and script references

  • For Blazor Server App / Blazor Web App, add these to Components/App.razor or App.razor file.
  • For Blazor WebAssembly App, add these to wwwroot/index.html file.
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>

Quick start

Register the Syncfusion® Blazor services in the Program.cs file.

using Syncfusion.Blazor;

builder.Services.AddSyncfusionBlazor();

AutoComplete

<SfAutoComplete TValue="string" TItem="Country" Placeholder="e.g. Australia" DataSource="@LocalData">
    <AutoCompleteFieldSettings Value="Name" />
</SfAutoComplete>

@code {

    public class Country
    {
        public string Name { get; set; }
        public string Code { get; set; }
    }

    List<Country> LocalData = new List<Country> {
        new Country() { Name = "Australia", Code = "AU" },
        new Country() { Name = "Bermuda", Code = "BM" },
        new Country() { Name = "Canada", Code = "CA" },
        new Country() { Name = "Cameroon", Code = "CM" },
        new Country() { Name = "Denmark", Code = "DK" }
    };
}

ComboBox

<SfComboBox TValue="string" TItem="Games" Placeholder="Select a game" DataSource="@LocalData">
    <ComboBoxFieldSettings Value="ID" Text="Text"></ComboBoxFieldSettings>
</SfComboBox>

@code {
  public class Games
  {
    public string ID { get; set; }
    public string Text { get; set; }
  }
  List<Games> LocalData = new List<Games> {
    new Games() { ID= "Game1", Text= "American Football" },
    new Games() { ID= "Game2", Text= "Badminton" },
    new Games() { ID= "Game3", Text= "Basketball" },
    new Games() { ID= "Game4", Text= "Cricket" },
    new Games() { ID= "Game5", Text= "Football" },
    new Games() { ID= "Game6", Text= "Golf" },
    new Games() { ID= "Game7", Text= "Hockey" },
    new Games() { ID= "Game8", Text= "Rugby"},
    new Games() { ID= "Game9", Text= "Snooker" },
    new Games() { ID= "Game10", Text= "Tennis"},
  };
}
<SfDropDownList TValue="string" TItem="Games" Placeholder="Select a game" DataSource="@LocalData">
  <DropDownListFieldSettings Value="ID" Text="Text"></DropDownListFieldSettings>
</SfDropDownList>

@code {
  public class Games
  {
    public string ID { get; set; }
    public string Text { get; set; }
  }
  List<Games> LocalData = new List<Games> {
    new Games() { ID= "Game1", Text= "American Football" },
    new Games() { ID= "Game2", Text= "Badminton" },
    new Games() { ID= "Game3", Text= "Basketball" },
    new Games() { ID= "Game4", Text= "Cricket" },
    new Games() { ID= "Game5", Text= "Football" },
    new Games() { ID= "Game6", Text= "Golf" },
    new Games() { ID= "Game7", Text= "Hockey" },
    new Games() { ID= "Game8", Text= "Rugby"},
    new Games() { ID= "Game9", Text= "Snooker" },
    new Games() { ID= "Game10", Text= "Tennis"},
  };
}

ListBox

<SfListBox TValue="string[]" DataSource="@Vehicles" TItem="VehicleData">
    <ListBoxFieldSettings Text="Text" Value="Id" />
</SfListBox>
@code {
    public List<VehicleData> Vehicles = new List<VehicleData> {
        new VehicleData { Text = "Hennessey Venom", Id = "Vehicle-01" },
        new VehicleData { Text = "Bugatti Chiron", Id = "Vehicle-02" },
        new VehicleData { Text = "Bugatti Veyron Super Sport", Id = "Vehicle-03" },
        new VehicleData { Text = "SSC Ultimate Aero", Id = "Vehicle-04" },
        new VehicleData { Text = "Koenigsegg CCR", Id = "Vehicle-05" },
        new VehicleData { Text = "McLaren F1", Id = "Vehicle-06" },
        new VehicleData { Text = "Aston Martin One- 77", Id = "Vehicle-07" },
        new VehicleData { Text = "Jaguar XJ220", Id = "Vehicle-08" }
    };

    public class VehicleData {
      public string Text { get; set; }
      public string Id { get; set; }
    }
}

Mention

<SfMention TItem="PersonData" DataSource="@EmailData">
    <TargetComponent>
        <div id="commentsMention" placeHolder="Type @@ and tag user" ></div>
    </TargetComponent>
    <ChildContent>
        <MentionFieldSettings Text="Name"></MentionFieldSettings>
    </ChildContent>
</SfMention>
<style>
    #commentsMention {
        min-height: 100px;
        border: 1px solid #D7D7D7;
        border-radius: 4px;
        padding: 8px;
        font-size: 14px;
        width: 600px;
    }

    div#commentsMention[placeholder]:empty:before {
        content: attr(placeholder);
        color: #555;
    }
</style>
@code {
    public class PersonData
    {
        public string Name { get; set; }
        public string EmailId { get; set; }
        public string EmployeeImage { get; set; }
    }
    List<PersonData> EmailData = new List<PersonData> {
    new PersonData() { Name="Selma Rose", EmployeeImage="7", EmailId="selma@gmail.com" },
    new PersonData() { Name="Russo Kay", EmployeeImage="8", EmailId="russo@gmail.com" },
    new PersonData() { Name="Camden Kate", EmployeeImage="9", EmailId="camden@gmail.com" }
  };
}

MultiSelect

<SfMultiSelect TValue="string[]" TItem="Games" Placeholder="Favorite Sports" DataSource="@LocalData">
    <MultiSelectFieldSettings Text="Text" Value="ID"></MultiSelectFieldSettings>
</SfMultiSelect>

@code {

    public class Games
    {
        public string ID { get; set; }
        public string Text { get; set; }
    }
    List<Games> LocalData = new List<Games> {
    new Games() { ID= "Game1", Text= "American Football" },
    new Games() { ID= "Game2", Text= "Badminton" },
    new Games() { ID= "Game3", Text= "Basketball" },
    new Games() { ID= "Game4", Text= "Cricket" },
    new Games() { ID= "Game5", Text= "Football" },
    new Games() { ID= "Game6", Text= "Golf" },
    new Games() { ID= "Game7", Text= "Hockey" },
    new Games() { ID= "Game8", Text= "Rugby"},
    new Games() { ID= "Game9", Text= "Snooker" },
    new Games() { ID= "Game10", Text= "Tennis"},
    };
}

Support

License

This is a commercial product and requires a paid license for possession or use. Review the Syncfusion® EULA.

About Syncfusion®

Syncfusion® provides 1600+ UI components and frameworks for web, mobile, and desktop development across multiple platforms:

Web: Blazor | ASP.NET Core | ASP.NET MVC | JavaScript | Angular | React | Vue

Mobile: Flutter | MAUI | UWP

Desktop: WinForms | WPF | WinUI

Learn more at www.syncfusion.com.

sales@syncfusion.com | Toll Free: 1-888-9-DOTNET

Showing the top 20 packages that depend on Syncfusion.Blazor.DropDowns.

Packages Downloads
Syncfusion.Blazor.SfPdfViewer
This package provides the functionality to utilize the features of Syncfusion® Blazor PDF Viewer component and more.
216
Syncfusion.Blazor.WordProcessor
This package provides the functionality to utilize the features of Syncfusion® Blazor Word Processor (Document Editor) component and more.
215
Syncfusion.Blazor.Navigations
This package provides the functionality to utilize the features of Syncfusion® Blazor Accordion, Context Menu, Menu Bar, Tabs, Toolbar, Tree-view, and Sidebar.
214
Syncfusion.Blazor.Grid
This package provides the functionality to utilize the features of Syncfusion® Blazor DataGrid component and more.
213
Syncfusion.Blazor.InPlaceEditor
This package provides the functionality to utilize the features of Syncfusion® Blazor InPlaceEditor component and more.
209
Syncfusion.Blazor.Navigations
This package provides the functionality to utilize the features of Syncfusion® Blazor Accordion, Context Menu, Menu Bar, Tabs, Toolbar, Tree-view, and Sidebar.
84
Syncfusion.Blazor.WordProcessor
This package provides the functionality to utilize the features of Syncfusion® Blazor Word Processor (Document Editor) component and more.
83
Syncfusion.Blazor.Grid
This package provides the functionality to utilize the features of Syncfusion® Blazor DataGrid component and more.
83
Syncfusion.Blazor.SfPdfViewer
This package provides the functionality to utilize the features of Syncfusion® Blazor PDF Viewer component and more.
83
Syncfusion.Blazor.InPlaceEditor
This package provides the functionality to utilize the features of Syncfusion® Blazor InPlaceEditor component and more.
83
Syncfusion.Blazor.Grid
This package provides the functionality to utilize the features of Syncfusion® Blazor DataGrid component and more.
76
Syncfusion.Blazor.SfPdfViewer
This package provides the functionality to utilize the features of Syncfusion® Blazor PDF Viewer component and more.
76
Syncfusion.Blazor.InPlaceEditor
This package provides the functionality to utilize the features of Syncfusion® Blazor InPlaceEditor component and more.
76
Syncfusion.Blazor.WordProcessor
This package provides the functionality to utilize the features of Syncfusion® Blazor Word Processor (Document Editor) component and more.
76
Syncfusion.Blazor.Navigations
This package provides the functionality to utilize the features of Syncfusion® Blazor Accordion, Context Menu, Menu Bar, Tabs, Toolbar, Tree-view, and Sidebar.
75
Syncfusion.Blazor.WordProcessor
This package provides the functionality to utilize the features of Syncfusion® Blazor Word Processor (Document Editor) component and more.
35
Syncfusion.Blazor.Grid
This package provides the functionality to utilize the features of Syncfusion® Blazor DataGrid component and more.
35
Syncfusion.Blazor.SfPdfViewer
This package provides the functionality to utilize the features of Syncfusion® Blazor PDF Viewer component and more.
35
Syncfusion.Blazor.Navigations
This package provides the functionality to utilize the features of Syncfusion® Blazor Accordion, Context Menu, Menu Bar, Tabs, Toolbar, Tree-view, and Sidebar.
35
Syncfusion.Blazor.InPlaceEditor
This package provides the functionality to utilize the features of Syncfusion® Blazor InPlaceEditor component and more.
35

Version Downloads Last updated
33.2.10 2 06/04/2026
33.2.8 2 05/26/2026
33.2.7 2 05/26/2026
33.2.6 2 05/16/2026
33.2.5 3 05/07/2026
33.2.4 4 04/30/2026
33.2.3 4 04/26/2026
33.1.49 4 04/29/2026
33.1.47 5 04/12/2026
33.1.46 6 04/04/2026
33.1.45 6 03/26/2026
33.1.44 6 03/16/2026
32.2.9 212 03/14/2026
32.2.8 84 03/04/2026
32.2.7 31 02/25/2026
32.2.5 8 02/19/2026
32.2.4 8 02/19/2026
32.2.3 8 02/09/2026
32.1.25 35 01/29/2026
32.1.24 10 01/22/2026
32.1.23 35 01/14/2026
32.1.22 10 01/22/2026
32.1.21 21 12/30/2025
32.1.20 11 01/01/2026
32.1.19 11 01/01/2026
31.2.18 14 12/09/2025
31.2.16 8 12/10/2025
31.2.15 75 12/09/2025
31.2.12 8 12/09/2025
31.2.10 10 12/09/2025
31.2.5 11 12/09/2025
31.2.4 9 12/09/2025
31.2.3 9 12/10/2025
31.2.2 10 12/10/2025
31.1.23 10 12/09/2025
31.1.22 8 12/10/2025
31.1.21 10 12/10/2025
31.1.20 10 12/09/2025
31.1.19 10 12/10/2025
31.1.18 9 12/10/2025
31.1.17 11 12/10/2025
30.2.7 9 12/09/2025
30.2.6 9 12/09/2025
30.2.5 9 12/09/2025
30.2.4 10 12/09/2025
30.1.42 9 12/09/2025
30.1.41 10 12/09/2025
30.1.40 11 12/09/2025
30.1.39 11 12/09/2025
30.1.38 11 12/09/2025
30.1.37 10 12/09/2025
29.2.11 8 12/10/2025
29.2.10 9 12/09/2025
29.2.9 10 12/10/2025
29.2.8 8 12/09/2025
29.2.7 9 12/10/2025
29.2.5 9 12/09/2025
29.2.4 8 12/10/2025
29.1.41 10 12/09/2025
29.1.40 10 12/09/2025
29.1.39 10 12/09/2025
29.1.38 9 12/09/2025
29.1.37 10 12/09/2025
29.1.35 10 12/09/2025
29.1.33 10 12/09/2025
28.2.12 10 12/10/2025
28.2.11 8 12/10/2025
28.2.9 8 12/10/2025
28.2.7 9 12/10/2025
28.2.6 10 12/10/2025
28.2.5 9 12/10/2025
28.2.4 7 12/09/2025
28.2.3 9 12/10/2025
28.1.41 13 12/09/2025
28.1.39 10 12/09/2025
28.1.38 10 12/09/2025
28.1.37 9 12/09/2025
28.1.36 9 12/09/2025
28.1.35 10 12/09/2025
28.1.33 11 12/09/2025
27.2.5 9 12/09/2025
27.2.4 10 12/09/2025
27.2.3 10 12/10/2025
27.2.2 8 12/11/2025
27.1.58 10 12/09/2025
27.1.57 11 12/09/2025
27.1.56 9 12/11/2025
27.1.55 9 12/09/2025
27.1.53 10 12/09/2025
27.1.52 10 12/09/2025
27.1.51 10 12/09/2025
27.1.50 10 12/09/2025
27.1.48 10 12/09/2025
26.2.14 11 12/09/2025
26.2.13 10 12/09/2025
26.2.12 10 12/09/2025
26.2.11 11 12/09/2025
26.2.10 10 12/09/2025
26.2.9 10 12/09/2025
26.2.8 10 12/09/2025
26.2.7 10 12/10/2025
26.2.5 10 12/10/2025
26.2.4 9 12/10/2025
26.1.42 11 12/09/2025
26.1.41 9 12/09/2025
26.1.40 10 12/11/2025
26.1.39 9 12/09/2025
26.1.38 10 12/09/2025
26.1.35 10 12/09/2025
25.2.7 9 12/10/2025
25.2.6 8 12/09/2025
25.2.5 10 12/10/2025
25.2.4 9 12/09/2025
25.2.3 11 12/09/2025
25.1.42 12 12/09/2025
25.1.41 11 12/09/2025
25.1.40 11 12/09/2025
25.1.39 12 12/09/2025
25.1.38 11 12/09/2025
25.1.37 11 12/09/2025
25.1.35 9 12/09/2025
24.2.9 10 12/09/2025
24.2.8 8 12/09/2025
24.2.7 9 12/10/2025
24.2.6 10 12/09/2025
24.2.5 9 12/10/2025
24.2.4 10 12/10/2025
24.2.3 10 12/10/2025
24.1.47 9 12/09/2025
24.1.46 9 12/09/2025
24.1.45 10 12/09/2025
24.1.44 9 12/09/2025
24.1.43 9 12/09/2025
24.1.41 10 12/10/2025
23.2.7 9 12/10/2025
23.2.6 11 12/09/2025
23.2.5 11 12/10/2025
23.2.4 10 12/10/2025
23.1.44 11 12/09/2025
23.1.43 9 12/09/2025
23.1.42 10 12/09/2025
23.1.41 11 12/09/2025
23.1.40 11 12/09/2025
23.1.39 9 12/09/2025
23.1.38 10 12/09/2025
23.1.36 9 12/09/2025
22.2.12 9 12/11/2025
22.2.11 10 12/10/2025
22.2.10 9 12/10/2025
22.2.9 9 12/11/2025
22.2.8 9 12/09/2025
22.2.7 11 12/09/2025
22.2.5 10 12/11/2025
22.1.39 10 12/09/2025
22.1.38 12 12/09/2025
22.1.37 10 12/09/2025
22.1.36 11 12/09/2025
22.1.34 10 12/09/2025
21.2.10 8 12/09/2025
21.2.9 8 12/09/2025
21.2.8 7 12/10/2025
21.2.6 7 12/09/2025
21.2.5 8 12/09/2025
21.2.4 9 12/09/2025
21.2.3 10 12/09/2025
21.1.41 8 12/10/2025
21.1.39 11 12/09/2025
21.1.38 10 12/09/2025
21.1.37 10 12/09/2025
21.1.35 9 12/09/2025
20.4.0.54 9 12/10/2025
20.4.0.53 9 12/10/2025
20.4.0.52 9 12/09/2025
20.4.0.51 10 12/09/2025
20.4.0.50 8 12/09/2025
20.4.0.49 10 12/09/2025
20.4.0.48 8 12/10/2025
20.4.0.44 8 12/09/2025
20.4.0.43 9 12/09/2025
20.4.0.42 9 12/09/2025
20.4.0.41 10 12/09/2025
20.4.0.40 11 12/09/2025
20.4.0.38 10 12/10/2025
20.3.0.61 9 12/10/2025
20.3.0.60 10 12/10/2025
20.3.0.59 9 12/09/2025
20.3.0.58 10 12/09/2025
20.3.0.57 9 12/09/2025
20.3.0.56 9 12/10/2025
20.3.0.52 8 12/10/2025
20.3.0.50 10 12/10/2025
20.3.0.49 9 12/09/2025
20.3.0.48 9 12/10/2025
20.3.0.47 9 12/09/2025
20.2.0.50 9 12/10/2025
20.2.0.49 9 12/10/2025
20.2.0.48 10 12/09/2025
20.2.0.46 9 12/09/2025
20.2.0.45 10 12/10/2025
20.2.0.44 8 12/10/2025
20.2.0.43 8 12/10/2025
20.2.0.40 11 12/10/2025
20.2.0.39 9 12/09/2025
20.2.0.38 11 12/10/2025
20.2.0.36 9 12/10/2025
20.1.0.61 8 12/10/2025
20.1.0.60 11 12/10/2025
20.1.0.59 10 12/09/2025
20.1.0.58 10 12/09/2025
20.1.0.57 9 12/09/2025
20.1.0.56 9 12/09/2025
20.1.0.55 9 12/09/2025
20.1.0.52 9 12/10/2025
20.1.0.51 10 12/10/2025
20.1.0.50 9 12/10/2025
20.1.0.48 11 12/09/2025
20.1.0.47 10 12/10/2025
19.4.0.56 10 12/09/2025
19.4.0.55 9 12/10/2025
19.4.0.54 8 12/11/2025
19.4.0.53 9 12/10/2025
19.4.0.52 10 12/09/2025
19.4.0.50 10 12/09/2025
19.4.0.48 9 12/11/2025
19.4.0.47 9 12/11/2025
19.4.0.43 9 12/09/2025
19.4.0.42 8 12/11/2025
19.4.0.41 10 12/10/2025
19.4.0.40 10 12/09/2025
19.4.0.38 9 12/09/2025
19.3.0.59 9 12/09/2025
19.3.0.57 10 12/09/2025
19.3.0.56 9 12/10/2025
19.3.0.55 9 12/10/2025
19.3.0.54 9 12/09/2025
19.3.0.53 9 12/09/2025
19.3.0.48 8 12/11/2025
19.3.0.47 8 12/11/2025
19.3.0.46 9 12/10/2025
19.3.0.45 9 12/11/2025
19.3.0.44 10 12/10/2025
19.3.0.43 10 12/09/2025
19.2.0.62 8 12/11/2025
19.2.0.60 9 12/11/2025
19.2.0.59 10 12/09/2025
19.2.0.57 10 12/09/2025
19.2.0.56 10 12/09/2025
19.2.0.55 9 12/09/2025
19.2.0.51 9 12/09/2025
19.2.0.49 8 12/11/2025
19.2.0.48 9 12/09/2025
19.2.0.47 10 12/09/2025
19.2.0.46 11 12/09/2025
19.2.0.44 9 12/10/2025
19.1.0.69 8 12/10/2025
19.1.0.67 9 12/11/2025
19.1.0.66 8 12/10/2025
19.1.0.65 11 12/09/2025
19.1.0.64 8 12/11/2025
19.1.0.63 8 12/10/2025
19.1.0.59 8 12/10/2025
19.1.0.58 9 12/09/2025
19.1.0.57 9 12/11/2025
19.1.0.56 9 12/10/2025
19.1.0.55 9 12/10/2025
19.1.0.54 10 12/09/2025
18.4.0.49 8 12/11/2025
18.4.0.48 10 12/09/2025
18.4.0.47 8 12/11/2025
18.4.0.46 8 12/11/2025
18.4.0.44 10 12/09/2025
18.4.0.43 8 12/10/2025
18.4.0.42 10 12/10/2025
18.4.0.41 8 12/10/2025
18.4.0.39 8 12/11/2025
18.4.0.35 8 12/11/2025
18.4.0.34 9 12/10/2025
18.4.0.33 9 12/10/2025
18.4.0.32 8 12/11/2025
18.4.0.31 8 12/10/2025
18.4.0.30 9 12/09/2025