@progress/kendo-react-charts 6.1.1 → 7.0.0-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BaseChart.d.ts +125 -0
- package/BaseChartProps.d.ts +199 -0
- package/Chart.d.ts +82 -0
- package/ChartBreadcrumb.d.ts +46 -0
- package/ChartContext.d.ts +21 -0
- package/ChartProps.d.ts +14 -0
- package/Container.d.ts +12 -0
- package/DonutCenter.d.ts +41 -0
- package/LICENSE.md +1 -1
- package/Sparkline.d.ts +91 -0
- package/SparklineProps.d.ts +18 -0
- package/StockChart.d.ts +45 -0
- package/StockChartProps.d.ts +19 -0
- package/api-types/axis-range.interface.d.ts +17 -0
- package/api-types/chart-axis.interface.d.ts +40 -0
- package/api-types/chart-drilldown-state.interface.d.ts +28 -0
- package/api-types/chart-pane.interface.d.ts +18 -0
- package/api-types/chart-plotarea.interface.d.ts +18 -0
- package/api-types/event-axis-options.interface.d.ts +13 -0
- package/api-types/event-series-options.interface.d.ts +21 -0
- package/api-types/series-point.interface.d.ts +42 -0
- package/argument-types/axis-label-visual-args.interface.d.ts +47 -0
- package/argument-types/axis-note-visual-args.interface.d.ts +31 -0
- package/argument-types/drilldown-series-factory-props.interface.d.ts +21 -0
- package/argument-types/error-bars-visual-args.interface.d.ts +35 -0
- package/argument-types/highlight-toggle-args.interface.d.ts +38 -0
- package/argument-types/highlight-visual-args.interface.d.ts +55 -0
- package/argument-types/legend-item-visual-args.interface.d.ts +31 -0
- package/argument-types/legend-labels-content-args.interface.d.ts +25 -0
- package/argument-types/markers-visual-args.interface.d.ts +43 -0
- package/argument-types/plot-band-label-visual-args.interface.d.ts +31 -0
- package/argument-types/series-labels-visual-args.interface.d.ts +31 -0
- package/argument-types/series-note-visual-args.interface.d.ts +47 -0
- package/argument-types/series-visual-args.interface.d.ts +80 -0
- package/argument-types/title-visual-args.interface.d.ts +31 -0
- package/common/api-types.d.ts +12 -0
- package/common/charts.d.ts +9 -0
- package/common/events.d.ts +26 -0
- package/common/property-types.d.ts +136 -0
- package/components/AxisDefaults.d.ts +13 -0
- package/components/CategoryAxis.d.ts +13 -0
- package/components/CategoryAxisItem.d.ts +17 -0
- package/components/ChartArea.d.ts +13 -0
- package/components/Legend.d.ts +17 -0
- package/components/Navigator.d.ts +17 -0
- package/components/Pane.d.ts +13 -0
- package/components/PaneDefaults.d.ts +17 -0
- package/components/Panes.d.ts +13 -0
- package/components/PlotArea.d.ts +13 -0
- package/components/Series.d.ts +13 -0
- package/components/SeriesDefaults.d.ts +13 -0
- package/components/SeriesItem.d.ts +25 -0
- package/components/Subtitle.d.ts +13 -0
- package/components/Title.d.ts +13 -0
- package/components/Tooltip.d.ts +15 -0
- package/components/ValueAxis.d.ts +13 -0
- package/components/ValueAxisItem.d.ts +17 -0
- package/components/XAxis.d.ts +13 -0
- package/components/XAxisItem.d.ts +17 -0
- package/components/YAxis.d.ts +13 -0
- package/components/YAxisItem.d.ts +17 -0
- package/components/Zoomable.d.ts +13 -0
- package/components/axis-defaults/Crosshair.d.ts +13 -0
- package/components/axis-defaults/CrosshairTooltip.d.ts +13 -0
- package/components/axis-defaults/Labels.d.ts +13 -0
- package/components/axis-defaults/Title.d.ts +13 -0
- package/components/axis-defaults/index.d.ts +9 -0
- package/components/base/CollectionConfigurationComponent.d.ts +23 -0
- package/components/base/ConfigurationComponent.d.ts +28 -0
- package/components/category-axis-item/Crosshair.d.ts +17 -0
- package/components/category-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/category-axis-item/Labels.d.ts +13 -0
- package/components/category-axis-item/Notes.d.ts +13 -0
- package/components/category-axis-item/NotesIcon.d.ts +13 -0
- package/components/category-axis-item/NotesLabel.d.ts +13 -0
- package/components/category-axis-item/RangeLabels.d.ts +13 -0
- package/components/category-axis-item/Select.d.ts +11 -0
- package/components/category-axis-item/Title.d.ts +13 -0
- package/components/category-axis-item/index.d.ts +14 -0
- package/components/index.d.ts +39 -0
- package/components/legend/InactiveItems.d.ts +13 -0
- package/components/legend/Item.d.ts +13 -0
- package/components/legend/Title.d.ts +17 -0
- package/components/legend/index.d.ts +8 -0
- package/components/navigator/CategoryAxis.d.ts +13 -0
- package/components/navigator/Hint.d.ts +13 -0
- package/components/navigator/Pane.d.ts +13 -0
- package/components/navigator/Select.d.ts +13 -0
- package/components/navigator/Series.d.ts +13 -0
- package/components/navigator/SeriesItem.d.ts +13 -0
- package/components/navigator/category-axis/Crosshair.d.ts +13 -0
- package/components/navigator/category-axis/CrosshairTooltip.d.ts +13 -0
- package/components/navigator/category-axis/Labels.d.ts +13 -0
- package/components/navigator/category-axis/Notes.d.ts +13 -0
- package/components/navigator/category-axis/NotesIcon.d.ts +13 -0
- package/components/navigator/category-axis/NotesLabel.d.ts +13 -0
- package/components/navigator/category-axis/Select.d.ts +11 -0
- package/components/navigator/category-axis/Title.d.ts +13 -0
- package/components/navigator/category-axis/index.d.ts +13 -0
- package/components/navigator/index.d.ts +14 -0
- package/components/navigator/pane/Title.d.ts +13 -0
- package/components/navigator/pane/index.d.ts +6 -0
- package/components/navigator/series-item/ErrorBars.d.ts +13 -0
- package/components/navigator/series-item/Extremes.d.ts +13 -0
- package/components/navigator/series-item/Highlight.d.ts +13 -0
- package/components/navigator/series-item/Labels.d.ts +13 -0
- package/components/navigator/series-item/LabelsFrom.d.ts +13 -0
- package/components/navigator/series-item/LabelsTo.d.ts +13 -0
- package/components/navigator/series-item/Markers.d.ts +13 -0
- package/components/navigator/series-item/Notes.d.ts +13 -0
- package/components/navigator/series-item/NotesIcon.d.ts +13 -0
- package/components/navigator/series-item/NotesLabel.d.ts +13 -0
- package/components/navigator/series-item/Outliers.d.ts +13 -0
- package/components/navigator/series-item/Tooltip.d.ts +15 -0
- package/components/navigator/series-item/index.d.ts +17 -0
- package/components/pane/Title.d.ts +13 -0
- package/components/pane/index.d.ts +6 -0
- package/components/pane-defaults/Title.d.ts +13 -0
- package/components/pane-defaults/index.d.ts +6 -0
- package/components/series-defaults/Labels.d.ts +13 -0
- package/components/series-defaults/LabelsFrom.d.ts +13 -0
- package/components/series-defaults/LabelsTo.d.ts +13 -0
- package/components/series-defaults/Notes.d.ts +13 -0
- package/components/series-defaults/NotesIcon.d.ts +13 -0
- package/components/series-defaults/NotesLabel.d.ts +13 -0
- package/components/series-defaults/Tooltip.d.ts +15 -0
- package/components/series-defaults/index.d.ts +12 -0
- package/components/series-item/ErrorBars.d.ts +13 -0
- package/components/series-item/Extremes.d.ts +13 -0
- package/components/series-item/Highlight.d.ts +13 -0
- package/components/series-item/Labels.d.ts +17 -0
- package/components/series-item/LabelsFrom.d.ts +13 -0
- package/components/series-item/LabelsTo.d.ts +13 -0
- package/components/series-item/Markers.d.ts +13 -0
- package/components/series-item/Notes.d.ts +13 -0
- package/components/series-item/NotesIcon.d.ts +13 -0
- package/components/series-item/NotesLabel.d.ts +13 -0
- package/components/series-item/Outliers.d.ts +13 -0
- package/components/series-item/Tooltip.d.ts +15 -0
- package/components/series-item/index.d.ts +17 -0
- package/components/value-axis-item/Crosshair.d.ts +17 -0
- package/components/value-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/value-axis-item/Labels.d.ts +13 -0
- package/components/value-axis-item/Notes.d.ts +13 -0
- package/components/value-axis-item/NotesIcon.d.ts +13 -0
- package/components/value-axis-item/NotesLabel.d.ts +13 -0
- package/components/value-axis-item/Title.d.ts +13 -0
- package/components/value-axis-item/index.d.ts +12 -0
- package/components/x-axis-item/Crosshair.d.ts +17 -0
- package/components/x-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/x-axis-item/Labels.d.ts +13 -0
- package/components/x-axis-item/Notes.d.ts +13 -0
- package/components/x-axis-item/NotesIcon.d.ts +13 -0
- package/components/x-axis-item/NotesLabel.d.ts +13 -0
- package/components/x-axis-item/Title.d.ts +13 -0
- package/components/x-axis-item/index.d.ts +12 -0
- package/components/y-axis-item/Crosshair.d.ts +17 -0
- package/components/y-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/y-axis-item/Labels.d.ts +13 -0
- package/components/y-axis-item/Notes.d.ts +13 -0
- package/components/y-axis-item/NotesIcon.d.ts +13 -0
- package/components/y-axis-item/NotesLabel.d.ts +13 -0
- package/components/y-axis-item/Title.d.ts +13 -0
- package/components/y-axis-item/index.d.ts +12 -0
- package/dist/cdn/js/kendo-react-charts.js +48 -1
- package/events/axis-label-click-event.d.ts +36 -0
- package/events/base-event.d.ts +18 -0
- package/events/chart-event-builder.d.ts +10 -0
- package/events/dom-event.d.ts +23 -0
- package/events/dom-events-builder.d.ts +11 -0
- package/events/dom-events.d.ts +28 -0
- package/events/drag-end-event.d.ts +26 -0
- package/events/drag-event.d.ts +26 -0
- package/events/drag-start-event.d.ts +26 -0
- package/events/drilldown-event.d.ts +42 -0
- package/events/drilldown-state-change-event.d.ts +26 -0
- package/events/legend-item-click-event.d.ts +36 -0
- package/events/legend-item-hover-event.d.ts +36 -0
- package/events/legend-item-leave-event.d.ts +36 -0
- package/events/navigator-filter-event.d.ts +23 -0
- package/events/note-click-event.d.ts +36 -0
- package/events/note-hover-event.d.ts +36 -0
- package/events/plot-area-click-event.d.ts +35 -0
- package/events/plot-area-hover-event.d.ts +35 -0
- package/events/preventable-event.d.ts +22 -0
- package/events/render-event.d.ts +15 -0
- package/events/select-end-event.d.ts +28 -0
- package/events/select-event.d.ts +28 -0
- package/events/select-start-event.d.ts +28 -0
- package/events/series-click-event.d.ts +49 -0
- package/events/series-hover-event.d.ts +53 -0
- package/events/zoom-end-event.d.ts +28 -0
- package/events/zoom-event.d.ts +32 -0
- package/events/zoom-start-event.d.ts +26 -0
- package/field-types/auto-base-unit-steps.interface.d.ts +43 -0
- package/field-types/axis-labels-position.d.ts +26 -0
- package/field-types/axis-line.interface.d.ts +26 -0
- package/field-types/axis-ticks.interface.d.ts +33 -0
- package/field-types/axis-title-position.d.ts +26 -0
- package/field-types/base-unit.d.ts +38 -0
- package/field-types/border.interface.d.ts +22 -0
- package/field-types/bullet-target-line.interface.d.ts +13 -0
- package/field-types/bullet-target.interface.d.ts +23 -0
- package/field-types/category-base-unit.d.ts +39 -0
- package/field-types/dash-type.d.ts +32 -0
- package/field-types/date-formats.interface.d.ts +43 -0
- package/field-types/drag-action.interface.d.ts +19 -0
- package/field-types/error-bar-line.interface.d.ts +18 -0
- package/field-types/grid-lines.interface.d.ts +34 -0
- package/field-types/highlight-line.interface.d.ts +26 -0
- package/field-types/label-connectors.interface.d.ts +21 -0
- package/field-types/label-rotation.interface.d.ts +23 -0
- package/field-types/legend-labels.interface.d.ts +32 -0
- package/field-types/line-style.d.ts +32 -0
- package/field-types/lock-axis.d.ts +8 -0
- package/field-types/margin.interface.d.ts +25 -0
- package/field-types/marker-type.d.ts +35 -0
- package/field-types/modifier-key.d.ts +8 -0
- package/field-types/mousewheel-select.interface.d.ts +22 -0
- package/field-types/mousewheel-zoom.interface.d.ts +22 -0
- package/field-types/negative-bubble-values.interface.d.ts +17 -0
- package/field-types/note-label-position.d.ts +33 -0
- package/field-types/note-line.interface.d.ts +26 -0
- package/field-types/note-position.d.ts +33 -0
- package/field-types/overlay.interface.d.ts +19 -0
- package/field-types/padding.interface.d.ts +10 -0
- package/field-types/plot-band-label.interface.d.ts +91 -0
- package/field-types/plot-band.interface.d.ts +34 -0
- package/field-types/series-labels-position.d.ts +20 -0
- package/field-types/series-line.interface.d.ts +32 -0
- package/field-types/series-stack.interface.d.ts +21 -0
- package/field-types/series-type.d.ts +33 -0
- package/field-types/trendline-forecast.interface.d.ts +17 -0
- package/field-types/week-start-day.enum.d.ts +37 -0
- package/index.d.ts +33 -0
- package/index.js +48 -0
- package/index.mjs +1620 -0
- package/methods/index.d.ts +40 -0
- package/option-types/axis-defaults/crosshair.interface.d.ts +45 -0
- package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/axis-defaults/labels.interface.d.ts +73 -0
- package/option-types/axis-defaults/title.interface.d.ts +71 -0
- package/option-types/axis-defaults.interface.d.ts +77 -0
- package/option-types/category-axis-item/crosshair.interface.d.ts +44 -0
- package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/category-axis-item/labels.interface.d.ts +108 -0
- package/option-types/category-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/category-axis-item/notes.interface.d.ts +49 -0
- package/option-types/category-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/category-axis-item/range-labels.interface.d.ts +28 -0
- package/option-types/category-axis-item/select.interface.d.ts +30 -0
- package/option-types/category-axis-item/title.interface.d.ts +69 -0
- package/option-types/category-axis-item.interface.d.ts +163 -0
- package/option-types/chart-area.interface.d.ts +34 -0
- package/option-types/legend/inactive-items.interface.d.ts +14 -0
- package/option-types/legend/item.interface.d.ts +25 -0
- package/option-types/legend/legend-title.interface.d.ts +65 -0
- package/option-types/legend.interface.d.ts +98 -0
- package/option-types/navigator/hint.interface.d.ts +25 -0
- package/option-types/navigator/select.interface.d.ts +22 -0
- package/option-types/navigator.interface.d.ts +41 -0
- package/option-types/pane/title.interface.d.ts +60 -0
- package/option-types/pane-defaults/title.interface.d.ts +56 -0
- package/option-types/pane-defaults.interface.d.ts +43 -0
- package/option-types/pane.interface.d.ts +43 -0
- package/option-types/plot-area.interface.d.ts +30 -0
- package/option-types/series-defaults/labels.from.interface.d.ts +55 -0
- package/option-types/series-defaults/labels.interface.d.ts +77 -0
- package/option-types/series-defaults/labels.to.interface.d.ts +55 -0
- package/option-types/series-defaults/notes.icon.interface.d.ts +36 -0
- package/option-types/series-defaults/notes.interface.d.ts +40 -0
- package/option-types/series-defaults/notes.label.interface.d.ts +50 -0
- package/option-types/series-defaults/tooltip.interface.d.ts +45 -0
- package/option-types/series-defaults.interface.d.ts +95 -0
- package/option-types/series-item/error-bars.interface.d.ts +59 -0
- package/option-types/series-item/extremes.interface.d.ts +36 -0
- package/option-types/series-item/highlight.interface.d.ts +67 -0
- package/option-types/series-item/labels.from.interface.d.ts +71 -0
- package/option-types/series-item/labels.interface.d.ts +101 -0
- package/option-types/series-item/labels.to.interface.d.ts +69 -0
- package/option-types/series-item/markers.interface.d.ts +69 -0
- package/option-types/series-item/notes.icon.interface.d.ts +36 -0
- package/option-types/series-item/notes.interface.d.ts +50 -0
- package/option-types/series-item/notes.label.interface.d.ts +50 -0
- package/option-types/series-item/outliers.interface.d.ts +36 -0
- package/option-types/series-item/tooltip.interface.d.ts +46 -0
- package/option-types/series-item/trendline.interface.d.ts +22 -0
- package/option-types/series-item.interface.d.ts +457 -0
- package/option-types/subtitle.interface.d.ts +65 -0
- package/option-types/title.interface.d.ts +59 -0
- package/option-types/tooltip.interface.d.ts +52 -0
- package/option-types/value-axis-item/crosshair.interface.d.ts +30 -0
- package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/value-axis-item/labels.interface.d.ts +86 -0
- package/option-types/value-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/value-axis-item/notes.interface.d.ts +49 -0
- package/option-types/value-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/value-axis-item/title.interface.d.ts +70 -0
- package/option-types/value-axis-item.interface.d.ts +118 -0
- package/option-types/x-axis-item/crosshair.interface.d.ts +30 -0
- package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/x-axis-item/labels.interface.d.ts +93 -0
- package/option-types/x-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/x-axis-item/notes.interface.d.ts +50 -0
- package/option-types/x-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/x-axis-item/title.interface.d.ts +69 -0
- package/option-types/x-axis-item.interface.d.ts +139 -0
- package/option-types/y-axis-item/crosshair.interface.d.ts +30 -0
- package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/y-axis-item/labels.interface.d.ts +93 -0
- package/option-types/y-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/y-axis-item/notes.interface.d.ts +49 -0
- package/option-types/y-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/y-axis-item/title.interface.d.ts +70 -0
- package/option-types/y-axis-item.interface.d.ts +135 -0
- package/option-types/zoomable.interface.d.ts +18 -0
- package/package-metadata.d.ts +9 -0
- package/package.json +32 -50
- package/store/reducer.d.ts +18 -0
- package/store/store.d.ts +30 -0
- package/theming/theme-service.d.ts +10 -0
- package/tooltip/Context.d.ts +15 -0
- package/tooltip/Crosshair.d.ts +40 -0
- package/tooltip/CrosshairContainer.d.ts +32 -0
- package/tooltip/Point.d.ts +72 -0
- package/tooltip/Popup.d.ts +35 -0
- package/tooltip/Series.d.ts +39 -0
- package/tooltip/SharedTooltipContent.d.ts +15 -0
- package/tooltip/index.d.ts +7 -0
- package/utils/index.d.ts +17 -0
- package/about.md +0 -3
- package/dist/es/BaseChart.d.ts +0 -122
- package/dist/es/BaseChart.js +0 -448
- package/dist/es/BaseChartProps.d.ts +0 -196
- package/dist/es/BaseChartProps.js +0 -2
- package/dist/es/Chart.d.ts +0 -78
- package/dist/es/Chart.js +0 -159
- package/dist/es/ChartBreadcrumb.d.ts +0 -42
- package/dist/es/ChartBreadcrumb.js +0 -92
- package/dist/es/ChartContext.d.ts +0 -17
- package/dist/es/ChartContext.js +0 -6
- package/dist/es/ChartProps.d.ts +0 -11
- package/dist/es/ChartProps.js +0 -1
- package/dist/es/Container.d.ts +0 -9
- package/dist/es/Container.js +0 -10
- package/dist/es/DonutCenter.d.ts +0 -37
- package/dist/es/DonutCenter.js +0 -74
- package/dist/es/Sparkline.d.ts +0 -87
- package/dist/es/Sparkline.js +0 -169
- package/dist/es/SparklineProps.d.ts +0 -14
- package/dist/es/SparklineProps.js +0 -1
- package/dist/es/StockChart.d.ts +0 -41
- package/dist/es/StockChart.js +0 -136
- package/dist/es/StockChartProps.d.ts +0 -15
- package/dist/es/StockChartProps.js +0 -2
- package/dist/es/api-types/axis-range.interface.d.ts +0 -13
- package/dist/es/api-types/axis-range.interface.js +0 -1
- package/dist/es/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/es/api-types/chart-axis.interface.js +0 -2
- package/dist/es/api-types/chart-drilldown-state.interface.d.ts +0 -24
- package/dist/es/api-types/chart-drilldown-state.interface.js +0 -1
- package/dist/es/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/es/api-types/chart-pane.interface.js +0 -1
- package/dist/es/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/es/api-types/chart-plotarea.interface.js +0 -1
- package/dist/es/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/es/api-types/event-axis-options.interface.js +0 -1
- package/dist/es/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/es/api-types/event-series-options.interface.js +0 -1
- package/dist/es/api-types/series-point.interface.d.ts +0 -38
- package/dist/es/api-types/series-point.interface.js +0 -2
- package/dist/es/argument-types/axis-label-visual-args.interface.d.ts +0 -43
- package/dist/es/argument-types/axis-label-visual-args.interface.js +0 -1
- package/dist/es/argument-types/axis-note-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/axis-note-visual-args.interface.js +0 -1
- package/dist/es/argument-types/drilldown-series-factory-props.interface.d.ts +0 -17
- package/dist/es/argument-types/drilldown-series-factory-props.interface.js +0 -2
- package/dist/es/argument-types/error-bars-visual-args.interface.d.ts +0 -31
- package/dist/es/argument-types/error-bars-visual-args.interface.js +0 -1
- package/dist/es/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/es/argument-types/highlight-toggle-args.interface.js +0 -1
- package/dist/es/argument-types/highlight-visual-args.interface.d.ts +0 -51
- package/dist/es/argument-types/highlight-visual-args.interface.js +0 -1
- package/dist/es/argument-types/legend-item-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/legend-item-visual-args.interface.js +0 -1
- package/dist/es/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/es/argument-types/legend-labels-content-args.interface.js +0 -2
- package/dist/es/argument-types/markers-visual-args.interface.d.ts +0 -39
- package/dist/es/argument-types/markers-visual-args.interface.js +0 -1
- package/dist/es/argument-types/plot-band-label-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/plot-band-label-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-labels-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/series-labels-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-note-visual-args.interface.d.ts +0 -43
- package/dist/es/argument-types/series-note-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-visual-args.interface.d.ts +0 -76
- package/dist/es/argument-types/series-visual-args.interface.js +0 -1
- package/dist/es/argument-types/title-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/title-visual-args.interface.js +0 -1
- package/dist/es/common/api-types.d.ts +0 -8
- package/dist/es/common/api-types.js +0 -1
- package/dist/es/common/charts.d.ts +0 -5
- package/dist/es/common/charts.js +0 -1
- package/dist/es/common/events.d.ts +0 -22
- package/dist/es/common/events.js +0 -23
- package/dist/es/common/property-types.d.ts +0 -132
- package/dist/es/common/property-types.js +0 -1
- package/dist/es/components/AxisDefaults.d.ts +0 -9
- package/dist/es/components/AxisDefaults.js +0 -17
- package/dist/es/components/CategoryAxis.d.ts +0 -9
- package/dist/es/components/CategoryAxis.js +0 -24
- package/dist/es/components/CategoryAxisItem.d.ts +0 -13
- package/dist/es/components/CategoryAxisItem.js +0 -18
- package/dist/es/components/ChartArea.d.ts +0 -9
- package/dist/es/components/ChartArea.js +0 -17
- package/dist/es/components/Legend.d.ts +0 -13
- package/dist/es/components/Legend.js +0 -17
- package/dist/es/components/Navigator.d.ts +0 -13
- package/dist/es/components/Navigator.js +0 -17
- package/dist/es/components/Pane.d.ts +0 -9
- package/dist/es/components/Pane.js +0 -18
- package/dist/es/components/PaneDefaults.d.ts +0 -13
- package/dist/es/components/PaneDefaults.js +0 -18
- package/dist/es/components/Panes.d.ts +0 -9
- package/dist/es/components/Panes.js +0 -24
- package/dist/es/components/PlotArea.d.ts +0 -9
- package/dist/es/components/PlotArea.js +0 -17
- package/dist/es/components/Series.d.ts +0 -9
- package/dist/es/components/Series.js +0 -24
- package/dist/es/components/SeriesDefaults.d.ts +0 -9
- package/dist/es/components/SeriesDefaults.js +0 -17
- package/dist/es/components/SeriesItem.d.ts +0 -21
- package/dist/es/components/SeriesItem.js +0 -29
- package/dist/es/components/Subtitle.d.ts +0 -9
- package/dist/es/components/Subtitle.js +0 -17
- package/dist/es/components/Title.d.ts +0 -9
- package/dist/es/components/Title.js +0 -17
- package/dist/es/components/Tooltip.d.ts +0 -11
- package/dist/es/components/Tooltip.js +0 -17
- package/dist/es/components/ValueAxis.d.ts +0 -9
- package/dist/es/components/ValueAxis.js +0 -24
- package/dist/es/components/ValueAxisItem.d.ts +0 -13
- package/dist/es/components/ValueAxisItem.js +0 -18
- package/dist/es/components/XAxis.d.ts +0 -9
- package/dist/es/components/XAxis.js +0 -24
- package/dist/es/components/XAxisItem.d.ts +0 -13
- package/dist/es/components/XAxisItem.js +0 -18
- package/dist/es/components/YAxis.d.ts +0 -9
- package/dist/es/components/YAxis.js +0 -24
- package/dist/es/components/YAxisItem.d.ts +0 -13
- package/dist/es/components/YAxisItem.js +0 -18
- package/dist/es/components/Zoomable.d.ts +0 -9
- package/dist/es/components/Zoomable.js +0 -17
- package/dist/es/components/axis-defaults/Crosshair.d.ts +0 -9
- package/dist/es/components/axis-defaults/Crosshair.js +0 -18
- package/dist/es/components/axis-defaults/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/axis-defaults/CrosshairTooltip.js +0 -18
- package/dist/es/components/axis-defaults/Labels.d.ts +0 -9
- package/dist/es/components/axis-defaults/Labels.js +0 -18
- package/dist/es/components/axis-defaults/Title.d.ts +0 -9
- package/dist/es/components/axis-defaults/Title.js +0 -18
- package/dist/es/components/axis-defaults/main.d.ts +0 -5
- package/dist/es/components/axis-defaults/main.js +0 -5
- package/dist/es/components/base/CollectionConfigurationComponent.d.ts +0 -19
- package/dist/es/components/base/CollectionConfigurationComponent.js +0 -63
- package/dist/es/components/base/ConfigurationComponent.d.ts +0 -24
- package/dist/es/components/base/ConfigurationComponent.js +0 -86
- package/dist/es/components/category-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/category-axis-item/Crosshair.js +0 -17
- package/dist/es/components/category-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/category-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/category-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/category-axis-item/Labels.js +0 -17
- package/dist/es/components/category-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/category-axis-item/Notes.js +0 -17
- package/dist/es/components/category-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/category-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/category-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/category-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/category-axis-item/RangeLabels.d.ts +0 -9
- package/dist/es/components/category-axis-item/RangeLabels.js +0 -17
- package/dist/es/components/category-axis-item/Select.d.ts +0 -7
- package/dist/es/components/category-axis-item/Select.js +0 -17
- package/dist/es/components/category-axis-item/Title.d.ts +0 -9
- package/dist/es/components/category-axis-item/Title.js +0 -18
- package/dist/es/components/category-axis-item/main.d.ts +0 -10
- package/dist/es/components/category-axis-item/main.js +0 -9
- package/dist/es/components/legend/InactiveItems.d.ts +0 -9
- package/dist/es/components/legend/InactiveItems.js +0 -18
- package/dist/es/components/legend/Item.d.ts +0 -9
- package/dist/es/components/legend/Item.js +0 -18
- package/dist/es/components/legend/Title.d.ts +0 -13
- package/dist/es/components/legend/Title.js +0 -22
- package/dist/es/components/legend/main.d.ts +0 -4
- package/dist/es/components/legend/main.js +0 -4
- package/dist/es/components/main.d.ts +0 -35
- package/dist/es/components/main.js +0 -35
- package/dist/es/components/navigator/CategoryAxis.d.ts +0 -9
- package/dist/es/components/navigator/CategoryAxis.js +0 -18
- package/dist/es/components/navigator/Hint.d.ts +0 -9
- package/dist/es/components/navigator/Hint.js +0 -17
- package/dist/es/components/navigator/Pane.d.ts +0 -9
- package/dist/es/components/navigator/Pane.js +0 -18
- package/dist/es/components/navigator/Select.d.ts +0 -9
- package/dist/es/components/navigator/Select.js +0 -17
- package/dist/es/components/navigator/Series.d.ts +0 -9
- package/dist/es/components/navigator/Series.js +0 -24
- package/dist/es/components/navigator/SeriesItem.d.ts +0 -9
- package/dist/es/components/navigator/SeriesItem.js +0 -18
- package/dist/es/components/navigator/category-axis/Crosshair.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Crosshair.js +0 -17
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.js +0 -17
- package/dist/es/components/navigator/category-axis/Labels.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Labels.js +0 -17
- package/dist/es/components/navigator/category-axis/Notes.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Notes.js +0 -17
- package/dist/es/components/navigator/category-axis/NotesIcon.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/NotesIcon.js +0 -17
- package/dist/es/components/navigator/category-axis/NotesLabel.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/NotesLabel.js +0 -17
- package/dist/es/components/navigator/category-axis/Select.d.ts +0 -7
- package/dist/es/components/navigator/category-axis/Select.js +0 -17
- package/dist/es/components/navigator/category-axis/Title.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Title.js +0 -18
- package/dist/es/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/main.js +0 -8
- package/dist/es/components/navigator/main.d.ts +0 -10
- package/dist/es/components/navigator/main.js +0 -10
- package/dist/es/components/navigator/pane/Title.d.ts +0 -9
- package/dist/es/components/navigator/pane/Title.js +0 -18
- package/dist/es/components/navigator/pane/main.d.ts +0 -2
- package/dist/es/components/navigator/pane/main.js +0 -2
- package/dist/es/components/navigator/series-item/ErrorBars.d.ts +0 -9
- package/dist/es/components/navigator/series-item/ErrorBars.js +0 -17
- package/dist/es/components/navigator/series-item/Extremes.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Extremes.js +0 -17
- package/dist/es/components/navigator/series-item/Highlight.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Highlight.js +0 -17
- package/dist/es/components/navigator/series-item/Labels.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Labels.js +0 -17
- package/dist/es/components/navigator/series-item/LabelsFrom.d.ts +0 -9
- package/dist/es/components/navigator/series-item/LabelsFrom.js +0 -17
- package/dist/es/components/navigator/series-item/LabelsTo.d.ts +0 -9
- package/dist/es/components/navigator/series-item/LabelsTo.js +0 -17
- package/dist/es/components/navigator/series-item/Markers.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Markers.js +0 -17
- package/dist/es/components/navigator/series-item/Notes.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Notes.js +0 -17
- package/dist/es/components/navigator/series-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/navigator/series-item/NotesIcon.js +0 -17
- package/dist/es/components/navigator/series-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/navigator/series-item/NotesLabel.js +0 -17
- package/dist/es/components/navigator/series-item/Outliers.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Outliers.js +0 -17
- package/dist/es/components/navigator/series-item/Tooltip.d.ts +0 -11
- package/dist/es/components/navigator/series-item/Tooltip.js +0 -17
- package/dist/es/components/navigator/series-item/main.d.ts +0 -13
- package/dist/es/components/navigator/series-item/main.js +0 -13
- package/dist/es/components/pane/Title.d.ts +0 -9
- package/dist/es/components/pane/Title.js +0 -18
- package/dist/es/components/pane/main.d.ts +0 -2
- package/dist/es/components/pane/main.js +0 -2
- package/dist/es/components/pane-defaults/Title.d.ts +0 -9
- package/dist/es/components/pane-defaults/Title.js +0 -18
- package/dist/es/components/pane-defaults/main.d.ts +0 -2
- package/dist/es/components/pane-defaults/main.js +0 -2
- package/dist/es/components/series-defaults/Labels.d.ts +0 -9
- package/dist/es/components/series-defaults/Labels.js +0 -17
- package/dist/es/components/series-defaults/LabelsFrom.d.ts +0 -9
- package/dist/es/components/series-defaults/LabelsFrom.js +0 -17
- package/dist/es/components/series-defaults/LabelsTo.d.ts +0 -9
- package/dist/es/components/series-defaults/LabelsTo.js +0 -17
- package/dist/es/components/series-defaults/Notes.d.ts +0 -9
- package/dist/es/components/series-defaults/Notes.js +0 -17
- package/dist/es/components/series-defaults/NotesIcon.d.ts +0 -9
- package/dist/es/components/series-defaults/NotesIcon.js +0 -17
- package/dist/es/components/series-defaults/NotesLabel.d.ts +0 -9
- package/dist/es/components/series-defaults/NotesLabel.js +0 -17
- package/dist/es/components/series-defaults/Tooltip.d.ts +0 -11
- package/dist/es/components/series-defaults/Tooltip.js +0 -17
- package/dist/es/components/series-defaults/main.d.ts +0 -8
- package/dist/es/components/series-defaults/main.js +0 -8
- package/dist/es/components/series-item/ErrorBars.d.ts +0 -9
- package/dist/es/components/series-item/ErrorBars.js +0 -17
- package/dist/es/components/series-item/Extremes.d.ts +0 -9
- package/dist/es/components/series-item/Extremes.js +0 -17
- package/dist/es/components/series-item/Highlight.d.ts +0 -9
- package/dist/es/components/series-item/Highlight.js +0 -17
- package/dist/es/components/series-item/Labels.d.ts +0 -13
- package/dist/es/components/series-item/Labels.js +0 -17
- package/dist/es/components/series-item/LabelsFrom.d.ts +0 -9
- package/dist/es/components/series-item/LabelsFrom.js +0 -17
- package/dist/es/components/series-item/LabelsTo.d.ts +0 -9
- package/dist/es/components/series-item/LabelsTo.js +0 -17
- package/dist/es/components/series-item/Markers.d.ts +0 -9
- package/dist/es/components/series-item/Markers.js +0 -17
- package/dist/es/components/series-item/Notes.d.ts +0 -9
- package/dist/es/components/series-item/Notes.js +0 -17
- package/dist/es/components/series-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/series-item/NotesIcon.js +0 -17
- package/dist/es/components/series-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/series-item/NotesLabel.js +0 -17
- package/dist/es/components/series-item/Outliers.d.ts +0 -9
- package/dist/es/components/series-item/Outliers.js +0 -17
- package/dist/es/components/series-item/Tooltip.d.ts +0 -11
- package/dist/es/components/series-item/Tooltip.js +0 -17
- package/dist/es/components/series-item/main.d.ts +0 -13
- package/dist/es/components/series-item/main.js +0 -13
- package/dist/es/components/value-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/value-axis-item/Crosshair.js +0 -17
- package/dist/es/components/value-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/value-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/value-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/value-axis-item/Labels.js +0 -17
- package/dist/es/components/value-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/value-axis-item/Notes.js +0 -17
- package/dist/es/components/value-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/value-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/value-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/value-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/value-axis-item/Title.d.ts +0 -9
- package/dist/es/components/value-axis-item/Title.js +0 -18
- package/dist/es/components/value-axis-item/main.d.ts +0 -8
- package/dist/es/components/value-axis-item/main.js +0 -8
- package/dist/es/components/x-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/x-axis-item/Crosshair.js +0 -17
- package/dist/es/components/x-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/x-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/x-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/x-axis-item/Labels.js +0 -17
- package/dist/es/components/x-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/x-axis-item/Notes.js +0 -17
- package/dist/es/components/x-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/x-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/x-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/x-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/x-axis-item/Title.d.ts +0 -9
- package/dist/es/components/x-axis-item/Title.js +0 -18
- package/dist/es/components/x-axis-item/main.d.ts +0 -8
- package/dist/es/components/x-axis-item/main.js +0 -8
- package/dist/es/components/y-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/y-axis-item/Crosshair.js +0 -17
- package/dist/es/components/y-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/y-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/y-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/y-axis-item/Labels.js +0 -17
- package/dist/es/components/y-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/y-axis-item/Notes.js +0 -17
- package/dist/es/components/y-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/y-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/y-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/y-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/y-axis-item/Title.d.ts +0 -9
- package/dist/es/components/y-axis-item/Title.js +0 -18
- package/dist/es/components/y-axis-item/main.d.ts +0 -8
- package/dist/es/components/y-axis-item/main.js +0 -8
- package/dist/es/defaults.d.ts +0 -1
- package/dist/es/defaults.js +0 -15
- package/dist/es/events/axis-label-click-event.d.ts +0 -32
- package/dist/es/events/axis-label-click-event.js +0 -38
- package/dist/es/events/base-event.d.ts +0 -14
- package/dist/es/events/base-event.js +0 -13
- package/dist/es/events/chart-event-builder.d.ts +0 -6
- package/dist/es/events/chart-event-builder.js +0 -55
- package/dist/es/events/dom-event.d.ts +0 -20
- package/dist/es/events/dom-event.js +0 -18
- package/dist/es/events/dom-events-builder.d.ts +0 -7
- package/dist/es/events/dom-events-builder.js +0 -32
- package/dist/es/events/dom-events.d.ts +0 -24
- package/dist/es/events/dom-events.js +0 -163
- package/dist/es/events/drag-end-event.d.ts +0 -22
- package/dist/es/events/drag-end-event.js +0 -35
- package/dist/es/events/drag-event.d.ts +0 -22
- package/dist/es/events/drag-event.js +0 -33
- package/dist/es/events/drag-start-event.d.ts +0 -22
- package/dist/es/events/drag-start-event.js +0 -33
- package/dist/es/events/drilldown-event.d.ts +0 -38
- package/dist/es/events/drilldown-event.js +0 -38
- package/dist/es/events/drilldown-state-change-event.d.ts +0 -22
- package/dist/es/events/drilldown-state-change-event.js +0 -16
- package/dist/es/events/legend-item-click-event.d.ts +0 -32
- package/dist/es/events/legend-item-click-event.js +0 -41
- package/dist/es/events/legend-item-hover-event.d.ts +0 -32
- package/dist/es/events/legend-item-hover-event.js +0 -41
- package/dist/es/events/legend-item-leave-event.d.ts +0 -32
- package/dist/es/events/legend-item-leave-event.js +0 -41
- package/dist/es/events/navigator-filter-event.d.ts +0 -19
- package/dist/es/events/navigator-filter-event.js +0 -33
- package/dist/es/events/note-click-event.d.ts +0 -32
- package/dist/es/events/note-click-event.js +0 -36
- package/dist/es/events/note-hover-event.d.ts +0 -32
- package/dist/es/events/note-hover-event.js +0 -36
- package/dist/es/events/plot-area-click-event.d.ts +0 -31
- package/dist/es/events/plot-area-click-event.js +0 -36
- package/dist/es/events/plot-area-hover-event.d.ts +0 -31
- package/dist/es/events/plot-area-hover-event.js +0 -36
- package/dist/es/events/preventable-event.d.ts +0 -18
- package/dist/es/events/preventable-event.js +0 -46
- package/dist/es/events/render-event.d.ts +0 -11
- package/dist/es/events/render-event.js +0 -30
- package/dist/es/events/select-end-event.d.ts +0 -24
- package/dist/es/events/select-end-event.js +0 -34
- package/dist/es/events/select-event.d.ts +0 -24
- package/dist/es/events/select-event.js +0 -34
- package/dist/es/events/select-start-event.d.ts +0 -24
- package/dist/es/events/select-start-event.js +0 -34
- package/dist/es/events/series-click-event.d.ts +0 -45
- package/dist/es/events/series-click-event.js +0 -41
- package/dist/es/events/series-hover-event.d.ts +0 -49
- package/dist/es/events/series-hover-event.js +0 -42
- package/dist/es/events/zoom-end-event.d.ts +0 -24
- package/dist/es/events/zoom-end-event.js +0 -35
- package/dist/es/events/zoom-event.d.ts +0 -28
- package/dist/es/events/zoom-event.js +0 -36
- package/dist/es/events/zoom-start-event.d.ts +0 -22
- package/dist/es/events/zoom-start-event.js +0 -35
- package/dist/es/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/es/field-types/auto-base-unit-steps.interface.js +0 -1
- package/dist/es/field-types/axis-labels-position.d.ts +0 -22
- package/dist/es/field-types/axis-labels-position.js +0 -1
- package/dist/es/field-types/axis-line.interface.d.ts +0 -22
- package/dist/es/field-types/axis-line.interface.js +0 -2
- package/dist/es/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/es/field-types/axis-ticks.interface.js +0 -2
- package/dist/es/field-types/axis-title-position.d.ts +0 -22
- package/dist/es/field-types/axis-title-position.js +0 -1
- package/dist/es/field-types/base-unit.d.ts +0 -34
- package/dist/es/field-types/base-unit.js +0 -1
- package/dist/es/field-types/border.interface.d.ts +0 -18
- package/dist/es/field-types/border.interface.js +0 -2
- package/dist/es/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/es/field-types/bullet-target-line.interface.js +0 -1
- package/dist/es/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/es/field-types/bullet-target.interface.js +0 -2
- package/dist/es/field-types/category-base-unit.d.ts +0 -35
- package/dist/es/field-types/category-base-unit.js +0 -1
- package/dist/es/field-types/dash-type.d.ts +0 -28
- package/dist/es/field-types/dash-type.js +0 -1
- package/dist/es/field-types/date-formats.interface.d.ts +0 -39
- package/dist/es/field-types/date-formats.interface.js +0 -2
- package/dist/es/field-types/drag-action.interface.d.ts +0 -15
- package/dist/es/field-types/drag-action.interface.js +0 -1
- package/dist/es/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/es/field-types/error-bar-line.interface.js +0 -1
- package/dist/es/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/es/field-types/grid-lines.interface.js +0 -2
- package/dist/es/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/es/field-types/highlight-line.interface.js +0 -2
- package/dist/es/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/es/field-types/label-connectors.interface.js +0 -1
- package/dist/es/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/es/field-types/label-rotation.interface.js +0 -2
- package/dist/es/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/es/field-types/legend-labels.interface.js +0 -2
- package/dist/es/field-types/line-style.d.ts +0 -28
- package/dist/es/field-types/line-style.js +0 -1
- package/dist/es/field-types/lock-axis.d.ts +0 -4
- package/dist/es/field-types/lock-axis.js +0 -1
- package/dist/es/field-types/margin.interface.d.ts +0 -21
- package/dist/es/field-types/margin.interface.js +0 -1
- package/dist/es/field-types/marker-type.d.ts +0 -31
- package/dist/es/field-types/marker-type.js +0 -1
- package/dist/es/field-types/modifier-key.d.ts +0 -4
- package/dist/es/field-types/modifier-key.js +0 -1
- package/dist/es/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/es/field-types/mousewheel-select.interface.js +0 -2
- package/dist/es/field-types/mousewheel-zoom.interface.d.ts +0 -18
- package/dist/es/field-types/mousewheel-zoom.interface.js +0 -1
- package/dist/es/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/es/field-types/negative-bubble-values.interface.js +0 -2
- package/dist/es/field-types/note-label-position.d.ts +0 -29
- package/dist/es/field-types/note-label-position.js +0 -1
- package/dist/es/field-types/note-line.interface.d.ts +0 -22
- package/dist/es/field-types/note-line.interface.js +0 -1
- package/dist/es/field-types/note-position.d.ts +0 -29
- package/dist/es/field-types/note-position.js +0 -1
- package/dist/es/field-types/overlay.interface.d.ts +0 -15
- package/dist/es/field-types/overlay.interface.js +0 -1
- package/dist/es/field-types/padding.interface.d.ts +0 -6
- package/dist/es/field-types/padding.interface.js +0 -1
- package/dist/es/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/es/field-types/plot-band-label.interface.js +0 -1
- package/dist/es/field-types/plot-band.interface.d.ts +0 -30
- package/dist/es/field-types/plot-band.interface.js +0 -1
- package/dist/es/field-types/series-labels-position.d.ts +0 -16
- package/dist/es/field-types/series-labels-position.js +0 -18
- package/dist/es/field-types/series-line.interface.d.ts +0 -28
- package/dist/es/field-types/series-line.interface.js +0 -2
- package/dist/es/field-types/series-stack.interface.d.ts +0 -17
- package/dist/es/field-types/series-stack.interface.js +0 -2
- package/dist/es/field-types/series-type.d.ts +0 -29
- package/dist/es/field-types/series-type.js +0 -1
- package/dist/es/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/es/field-types/trendline-forecast.interface.js +0 -1
- package/dist/es/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/es/field-types/week-start-day.enum.js +0 -34
- package/dist/es/main.d.ts +0 -29
- package/dist/es/main.js +0 -21
- package/dist/es/methods/index.d.ts +0 -36
- package/dist/es/methods/index.js +0 -50
- package/dist/es/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/es/option-types/axis-defaults/crosshair.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/es/option-types/axis-defaults/labels.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/es/option-types/axis-defaults/title.interface.js +0 -2
- package/dist/es/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/es/option-types/axis-defaults.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/es/option-types/category-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/es/option-types/category-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/category-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/category-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/category-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/es/option-types/category-axis-item/range-labels.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/es/option-types/category-axis-item/select.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/es/option-types/category-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/es/option-types/category-axis-item.interface.js +0 -2
- package/dist/es/option-types/chart-area.interface.d.ts +0 -30
- package/dist/es/option-types/chart-area.interface.js +0 -1
- package/dist/es/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/es/option-types/legend/inactive-items.interface.js +0 -1
- package/dist/es/option-types/legend/item.interface.d.ts +0 -21
- package/dist/es/option-types/legend/item.interface.js +0 -1
- package/dist/es/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/es/option-types/legend/legend-title.interface.js +0 -1
- package/dist/es/option-types/legend.interface.d.ts +0 -94
- package/dist/es/option-types/legend.interface.js +0 -2
- package/dist/es/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/es/option-types/navigator/hint.interface.js +0 -1
- package/dist/es/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/es/option-types/navigator/select.interface.js +0 -1
- package/dist/es/option-types/navigator.interface.d.ts +0 -37
- package/dist/es/option-types/navigator.interface.js +0 -2
- package/dist/es/option-types/pane/title.interface.d.ts +0 -56
- package/dist/es/option-types/pane/title.interface.js +0 -2
- package/dist/es/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/es/option-types/pane-defaults/title.interface.js +0 -2
- package/dist/es/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/es/option-types/pane-defaults.interface.js +0 -2
- package/dist/es/option-types/pane.interface.d.ts +0 -39
- package/dist/es/option-types/pane.interface.js +0 -2
- package/dist/es/option-types/plot-area.interface.d.ts +0 -26
- package/dist/es/option-types/plot-area.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/es/option-types/series-defaults/labels.from.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/es/option-types/series-defaults/labels.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/es/option-types/series-defaults/labels.to.interface.js +0 -2
- package/dist/es/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/series-defaults/notes.icon.interface.js +0 -1
- package/dist/es/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/es/option-types/series-defaults/notes.interface.js +0 -1
- package/dist/es/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/series-defaults/notes.label.interface.js +0 -2
- package/dist/es/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/es/option-types/series-defaults/tooltip.interface.js +0 -2
- package/dist/es/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/es/option-types/series-defaults.interface.js +0 -2
- package/dist/es/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/es/option-types/series-item/error-bars.interface.js +0 -2
- package/dist/es/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/extremes.interface.js +0 -1
- package/dist/es/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/es/option-types/series-item/highlight.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/es/option-types/series-item/labels.from.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/es/option-types/series-item/labels.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/es/option-types/series-item/labels.to.interface.js +0 -2
- package/dist/es/option-types/series-item/markers.interface.d.ts +0 -65
- package/dist/es/option-types/series-item/markers.interface.js +0 -2
- package/dist/es/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/es/option-types/series-item/notes.interface.js +0 -1
- package/dist/es/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/series-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/outliers.interface.js +0 -1
- package/dist/es/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/es/option-types/series-item/tooltip.interface.js +0 -2
- package/dist/es/option-types/series-item/trendline.interface.d.ts +0 -18
- package/dist/es/option-types/series-item/trendline.interface.js +0 -1
- package/dist/es/option-types/series-item.interface.d.ts +0 -453
- package/dist/es/option-types/series-item.interface.js +0 -2
- package/dist/es/option-types/subtitle.interface.d.ts +0 -61
- package/dist/es/option-types/subtitle.interface.js +0 -1
- package/dist/es/option-types/title.interface.d.ts +0 -55
- package/dist/es/option-types/title.interface.js +0 -2
- package/dist/es/option-types/tooltip.interface.d.ts +0 -48
- package/dist/es/option-types/tooltip.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/value-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/es/option-types/value-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/value-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/value-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/value-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/es/option-types/value-axis-item/title.interface.js +0 -1
- package/dist/es/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/es/option-types/value-axis-item.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/x-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/es/option-types/x-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/x-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/es/option-types/x-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/x-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/es/option-types/x-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/x-axis-item.interface.d.ts +0 -135
- package/dist/es/option-types/x-axis-item.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/y-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/es/option-types/y-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/y-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/y-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/y-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/es/option-types/y-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/y-axis-item.interface.d.ts +0 -131
- package/dist/es/option-types/y-axis-item.interface.js +0 -2
- package/dist/es/option-types/zoomable.interface.d.ts +0 -14
- package/dist/es/option-types/zoomable.interface.js +0 -1
- package/dist/es/package-metadata.d.ts +0 -5
- package/dist/es/package-metadata.js +0 -11
- package/dist/es/store/reducer.d.ts +0 -14
- package/dist/es/store/reducer.js +0 -102
- package/dist/es/store/store.d.ts +0 -26
- package/dist/es/store/store.js +0 -28
- package/dist/es/theming/theme-service.d.ts +0 -6
- package/dist/es/theming/theme-service.js +0 -152
- package/dist/es/tooltip/Context.d.ts +0 -11
- package/dist/es/tooltip/Context.js +0 -1
- package/dist/es/tooltip/Crosshair.d.ts +0 -36
- package/dist/es/tooltip/Crosshair.js +0 -110
- package/dist/es/tooltip/CrosshairContainer.d.ts +0 -28
- package/dist/es/tooltip/CrosshairContainer.js +0 -94
- package/dist/es/tooltip/Point.d.ts +0 -68
- package/dist/es/tooltip/Point.js +0 -35
- package/dist/es/tooltip/Popup.d.ts +0 -31
- package/dist/es/tooltip/Popup.js +0 -83
- package/dist/es/tooltip/Series.d.ts +0 -35
- package/dist/es/tooltip/Series.js +0 -182
- package/dist/es/tooltip/SharedTooltipContent.d.ts +0 -12
- package/dist/es/tooltip/SharedTooltipContent.js +0 -21
- package/dist/es/tooltip/main.d.ts +0 -3
- package/dist/es/tooltip/main.js +0 -2
- package/dist/es/utils/main.d.ts +0 -14
- package/dist/es/utils/main.js +0 -32
- package/dist/npm/BaseChart.d.ts +0 -122
- package/dist/npm/BaseChart.js +0 -451
- package/dist/npm/BaseChartProps.d.ts +0 -196
- package/dist/npm/BaseChartProps.js +0 -3
- package/dist/npm/Chart.d.ts +0 -78
- package/dist/npm/Chart.js +0 -162
- package/dist/npm/ChartBreadcrumb.d.ts +0 -42
- package/dist/npm/ChartBreadcrumb.js +0 -95
- package/dist/npm/ChartContext.d.ts +0 -17
- package/dist/npm/ChartContext.js +0 -9
- package/dist/npm/ChartProps.d.ts +0 -11
- package/dist/npm/ChartProps.js +0 -2
- package/dist/npm/Container.d.ts +0 -9
- package/dist/npm/Container.js +0 -9
- package/dist/npm/DonutCenter.d.ts +0 -37
- package/dist/npm/DonutCenter.js +0 -77
- package/dist/npm/Sparkline.d.ts +0 -87
- package/dist/npm/Sparkline.js +0 -172
- package/dist/npm/SparklineProps.d.ts +0 -14
- package/dist/npm/SparklineProps.js +0 -2
- package/dist/npm/StockChart.d.ts +0 -41
- package/dist/npm/StockChart.js +0 -139
- package/dist/npm/StockChartProps.d.ts +0 -15
- package/dist/npm/StockChartProps.js +0 -3
- package/dist/npm/api-types/axis-range.interface.d.ts +0 -13
- package/dist/npm/api-types/axis-range.interface.js +0 -2
- package/dist/npm/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/npm/api-types/chart-axis.interface.js +0 -3
- package/dist/npm/api-types/chart-drilldown-state.interface.d.ts +0 -24
- package/dist/npm/api-types/chart-drilldown-state.interface.js +0 -2
- package/dist/npm/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/npm/api-types/chart-pane.interface.js +0 -2
- package/dist/npm/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/npm/api-types/chart-plotarea.interface.js +0 -2
- package/dist/npm/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/npm/api-types/event-axis-options.interface.js +0 -2
- package/dist/npm/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/npm/api-types/event-series-options.interface.js +0 -2
- package/dist/npm/api-types/series-point.interface.d.ts +0 -38
- package/dist/npm/api-types/series-point.interface.js +0 -3
- package/dist/npm/argument-types/axis-label-visual-args.interface.d.ts +0 -43
- package/dist/npm/argument-types/axis-label-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/axis-note-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/axis-note-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/drilldown-series-factory-props.interface.d.ts +0 -17
- package/dist/npm/argument-types/drilldown-series-factory-props.interface.js +0 -3
- package/dist/npm/argument-types/error-bars-visual-args.interface.d.ts +0 -31
- package/dist/npm/argument-types/error-bars-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/npm/argument-types/highlight-toggle-args.interface.js +0 -2
- package/dist/npm/argument-types/highlight-visual-args.interface.d.ts +0 -51
- package/dist/npm/argument-types/highlight-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/legend-item-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/legend-item-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/npm/argument-types/legend-labels-content-args.interface.js +0 -3
- package/dist/npm/argument-types/markers-visual-args.interface.d.ts +0 -39
- package/dist/npm/argument-types/markers-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-labels-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/series-labels-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-note-visual-args.interface.d.ts +0 -43
- package/dist/npm/argument-types/series-note-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-visual-args.interface.d.ts +0 -76
- package/dist/npm/argument-types/series-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/title-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/title-visual-args.interface.js +0 -2
- package/dist/npm/common/api-types.d.ts +0 -8
- package/dist/npm/common/api-types.js +0 -2
- package/dist/npm/common/charts.d.ts +0 -5
- package/dist/npm/common/charts.js +0 -2
- package/dist/npm/common/events.d.ts +0 -22
- package/dist/npm/common/events.js +0 -48
- package/dist/npm/common/property-types.d.ts +0 -132
- package/dist/npm/common/property-types.js +0 -5
- package/dist/npm/components/AxisDefaults.d.ts +0 -9
- package/dist/npm/components/AxisDefaults.js +0 -20
- package/dist/npm/components/CategoryAxis.d.ts +0 -9
- package/dist/npm/components/CategoryAxis.js +0 -27
- package/dist/npm/components/CategoryAxisItem.d.ts +0 -13
- package/dist/npm/components/CategoryAxisItem.js +0 -21
- package/dist/npm/components/ChartArea.d.ts +0 -9
- package/dist/npm/components/ChartArea.js +0 -20
- package/dist/npm/components/Legend.d.ts +0 -13
- package/dist/npm/components/Legend.js +0 -20
- package/dist/npm/components/Navigator.d.ts +0 -13
- package/dist/npm/components/Navigator.js +0 -20
- package/dist/npm/components/Pane.d.ts +0 -9
- package/dist/npm/components/Pane.js +0 -21
- package/dist/npm/components/PaneDefaults.d.ts +0 -13
- package/dist/npm/components/PaneDefaults.js +0 -21
- package/dist/npm/components/Panes.d.ts +0 -9
- package/dist/npm/components/Panes.js +0 -27
- package/dist/npm/components/PlotArea.d.ts +0 -9
- package/dist/npm/components/PlotArea.js +0 -20
- package/dist/npm/components/Series.d.ts +0 -9
- package/dist/npm/components/Series.js +0 -27
- package/dist/npm/components/SeriesDefaults.d.ts +0 -9
- package/dist/npm/components/SeriesDefaults.js +0 -20
- package/dist/npm/components/SeriesItem.d.ts +0 -21
- package/dist/npm/components/SeriesItem.js +0 -32
- package/dist/npm/components/Subtitle.d.ts +0 -9
- package/dist/npm/components/Subtitle.js +0 -20
- package/dist/npm/components/Title.d.ts +0 -9
- package/dist/npm/components/Title.js +0 -20
- package/dist/npm/components/Tooltip.d.ts +0 -11
- package/dist/npm/components/Tooltip.js +0 -20
- package/dist/npm/components/ValueAxis.d.ts +0 -9
- package/dist/npm/components/ValueAxis.js +0 -27
- package/dist/npm/components/ValueAxisItem.d.ts +0 -13
- package/dist/npm/components/ValueAxisItem.js +0 -21
- package/dist/npm/components/XAxis.d.ts +0 -9
- package/dist/npm/components/XAxis.js +0 -27
- package/dist/npm/components/XAxisItem.d.ts +0 -13
- package/dist/npm/components/XAxisItem.js +0 -21
- package/dist/npm/components/YAxis.d.ts +0 -9
- package/dist/npm/components/YAxis.js +0 -27
- package/dist/npm/components/YAxisItem.d.ts +0 -13
- package/dist/npm/components/YAxisItem.js +0 -21
- package/dist/npm/components/Zoomable.d.ts +0 -9
- package/dist/npm/components/Zoomable.js +0 -20
- package/dist/npm/components/axis-defaults/Crosshair.d.ts +0 -9
- package/dist/npm/components/axis-defaults/Crosshair.js +0 -21
- package/dist/npm/components/axis-defaults/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/axis-defaults/CrosshairTooltip.js +0 -21
- package/dist/npm/components/axis-defaults/Labels.d.ts +0 -9
- package/dist/npm/components/axis-defaults/Labels.js +0 -21
- package/dist/npm/components/axis-defaults/Title.d.ts +0 -9
- package/dist/npm/components/axis-defaults/Title.js +0 -21
- package/dist/npm/components/axis-defaults/main.d.ts +0 -5
- package/dist/npm/components/axis-defaults/main.js +0 -11
- package/dist/npm/components/base/CollectionConfigurationComponent.d.ts +0 -19
- package/dist/npm/components/base/CollectionConfigurationComponent.js +0 -66
- package/dist/npm/components/base/ConfigurationComponent.d.ts +0 -24
- package/dist/npm/components/base/ConfigurationComponent.js +0 -89
- package/dist/npm/components/category-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/category-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/category-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/category-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/category-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/category-axis-item/Labels.js +0 -20
- package/dist/npm/components/category-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/category-axis-item/Notes.js +0 -20
- package/dist/npm/components/category-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/category-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/category-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/category-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/category-axis-item/RangeLabels.d.ts +0 -9
- package/dist/npm/components/category-axis-item/RangeLabels.js +0 -20
- package/dist/npm/components/category-axis-item/Select.d.ts +0 -7
- package/dist/npm/components/category-axis-item/Select.js +0 -19
- package/dist/npm/components/category-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/category-axis-item/Title.js +0 -21
- package/dist/npm/components/category-axis-item/main.d.ts +0 -10
- package/dist/npm/components/category-axis-item/main.js +0 -19
- package/dist/npm/components/legend/InactiveItems.d.ts +0 -9
- package/dist/npm/components/legend/InactiveItems.js +0 -21
- package/dist/npm/components/legend/Item.d.ts +0 -9
- package/dist/npm/components/legend/Item.js +0 -21
- package/dist/npm/components/legend/Title.d.ts +0 -13
- package/dist/npm/components/legend/Title.js +0 -25
- package/dist/npm/components/legend/main.d.ts +0 -4
- package/dist/npm/components/legend/main.js +0 -9
- package/dist/npm/components/main.d.ts +0 -35
- package/dist/npm/components/main.js +0 -74
- package/dist/npm/components/navigator/CategoryAxis.d.ts +0 -9
- package/dist/npm/components/navigator/CategoryAxis.js +0 -21
- package/dist/npm/components/navigator/Hint.d.ts +0 -9
- package/dist/npm/components/navigator/Hint.js +0 -20
- package/dist/npm/components/navigator/Pane.d.ts +0 -9
- package/dist/npm/components/navigator/Pane.js +0 -21
- package/dist/npm/components/navigator/Select.d.ts +0 -9
- package/dist/npm/components/navigator/Select.js +0 -20
- package/dist/npm/components/navigator/Series.d.ts +0 -9
- package/dist/npm/components/navigator/Series.js +0 -27
- package/dist/npm/components/navigator/SeriesItem.d.ts +0 -9
- package/dist/npm/components/navigator/SeriesItem.js +0 -21
- package/dist/npm/components/navigator/category-axis/Crosshair.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Crosshair.js +0 -20
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.js +0 -20
- package/dist/npm/components/navigator/category-axis/Labels.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Labels.js +0 -20
- package/dist/npm/components/navigator/category-axis/Notes.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Notes.js +0 -20
- package/dist/npm/components/navigator/category-axis/NotesIcon.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/NotesIcon.js +0 -20
- package/dist/npm/components/navigator/category-axis/NotesLabel.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/NotesLabel.js +0 -20
- package/dist/npm/components/navigator/category-axis/Select.d.ts +0 -7
- package/dist/npm/components/navigator/category-axis/Select.js +0 -19
- package/dist/npm/components/navigator/category-axis/Title.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Title.js +0 -21
- package/dist/npm/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/main.js +0 -17
- package/dist/npm/components/navigator/main.d.ts +0 -10
- package/dist/npm/components/navigator/main.js +0 -32
- package/dist/npm/components/navigator/pane/Title.d.ts +0 -9
- package/dist/npm/components/navigator/pane/Title.js +0 -21
- package/dist/npm/components/navigator/pane/main.d.ts +0 -2
- package/dist/npm/components/navigator/pane/main.js +0 -5
- package/dist/npm/components/navigator/series-item/ErrorBars.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/ErrorBars.js +0 -20
- package/dist/npm/components/navigator/series-item/Extremes.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Extremes.js +0 -20
- package/dist/npm/components/navigator/series-item/Highlight.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Highlight.js +0 -20
- package/dist/npm/components/navigator/series-item/Labels.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Labels.js +0 -20
- package/dist/npm/components/navigator/series-item/LabelsFrom.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/LabelsFrom.js +0 -20
- package/dist/npm/components/navigator/series-item/LabelsTo.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/LabelsTo.js +0 -20
- package/dist/npm/components/navigator/series-item/Markers.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Markers.js +0 -20
- package/dist/npm/components/navigator/series-item/Notes.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Notes.js +0 -20
- package/dist/npm/components/navigator/series-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/NotesIcon.js +0 -20
- package/dist/npm/components/navigator/series-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/NotesLabel.js +0 -20
- package/dist/npm/components/navigator/series-item/Outliers.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Outliers.js +0 -20
- package/dist/npm/components/navigator/series-item/Tooltip.d.ts +0 -11
- package/dist/npm/components/navigator/series-item/Tooltip.js +0 -20
- package/dist/npm/components/navigator/series-item/main.d.ts +0 -13
- package/dist/npm/components/navigator/series-item/main.js +0 -27
- package/dist/npm/components/pane/Title.d.ts +0 -9
- package/dist/npm/components/pane/Title.js +0 -21
- package/dist/npm/components/pane/main.d.ts +0 -2
- package/dist/npm/components/pane/main.js +0 -5
- package/dist/npm/components/pane-defaults/Title.d.ts +0 -9
- package/dist/npm/components/pane-defaults/Title.js +0 -21
- package/dist/npm/components/pane-defaults/main.d.ts +0 -2
- package/dist/npm/components/pane-defaults/main.js +0 -5
- package/dist/npm/components/series-defaults/Labels.d.ts +0 -9
- package/dist/npm/components/series-defaults/Labels.js +0 -20
- package/dist/npm/components/series-defaults/LabelsFrom.d.ts +0 -9
- package/dist/npm/components/series-defaults/LabelsFrom.js +0 -20
- package/dist/npm/components/series-defaults/LabelsTo.d.ts +0 -9
- package/dist/npm/components/series-defaults/LabelsTo.js +0 -20
- package/dist/npm/components/series-defaults/Notes.d.ts +0 -9
- package/dist/npm/components/series-defaults/Notes.js +0 -20
- package/dist/npm/components/series-defaults/NotesIcon.d.ts +0 -9
- package/dist/npm/components/series-defaults/NotesIcon.js +0 -20
- package/dist/npm/components/series-defaults/NotesLabel.d.ts +0 -9
- package/dist/npm/components/series-defaults/NotesLabel.js +0 -20
- package/dist/npm/components/series-defaults/Tooltip.d.ts +0 -11
- package/dist/npm/components/series-defaults/Tooltip.js +0 -20
- package/dist/npm/components/series-defaults/main.d.ts +0 -8
- package/dist/npm/components/series-defaults/main.js +0 -17
- package/dist/npm/components/series-item/ErrorBars.d.ts +0 -9
- package/dist/npm/components/series-item/ErrorBars.js +0 -20
- package/dist/npm/components/series-item/Extremes.d.ts +0 -9
- package/dist/npm/components/series-item/Extremes.js +0 -20
- package/dist/npm/components/series-item/Highlight.d.ts +0 -9
- package/dist/npm/components/series-item/Highlight.js +0 -20
- package/dist/npm/components/series-item/Labels.d.ts +0 -13
- package/dist/npm/components/series-item/Labels.js +0 -20
- package/dist/npm/components/series-item/LabelsFrom.d.ts +0 -9
- package/dist/npm/components/series-item/LabelsFrom.js +0 -20
- package/dist/npm/components/series-item/LabelsTo.d.ts +0 -9
- package/dist/npm/components/series-item/LabelsTo.js +0 -20
- package/dist/npm/components/series-item/Markers.d.ts +0 -9
- package/dist/npm/components/series-item/Markers.js +0 -20
- package/dist/npm/components/series-item/Notes.d.ts +0 -9
- package/dist/npm/components/series-item/Notes.js +0 -20
- package/dist/npm/components/series-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/series-item/NotesIcon.js +0 -20
- package/dist/npm/components/series-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/series-item/NotesLabel.js +0 -20
- package/dist/npm/components/series-item/Outliers.d.ts +0 -9
- package/dist/npm/components/series-item/Outliers.js +0 -20
- package/dist/npm/components/series-item/Tooltip.d.ts +0 -11
- package/dist/npm/components/series-item/Tooltip.js +0 -20
- package/dist/npm/components/series-item/main.d.ts +0 -13
- package/dist/npm/components/series-item/main.js +0 -27
- package/dist/npm/components/value-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/value-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/value-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/value-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/value-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/value-axis-item/Labels.js +0 -20
- package/dist/npm/components/value-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/value-axis-item/Notes.js +0 -20
- package/dist/npm/components/value-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/value-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/value-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/value-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/value-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/value-axis-item/Title.js +0 -21
- package/dist/npm/components/value-axis-item/main.d.ts +0 -8
- package/dist/npm/components/value-axis-item/main.js +0 -17
- package/dist/npm/components/x-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/x-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/x-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/x-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/x-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/x-axis-item/Labels.js +0 -20
- package/dist/npm/components/x-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/x-axis-item/Notes.js +0 -20
- package/dist/npm/components/x-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/x-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/x-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/x-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/x-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/x-axis-item/Title.js +0 -21
- package/dist/npm/components/x-axis-item/main.d.ts +0 -8
- package/dist/npm/components/x-axis-item/main.js +0 -17
- package/dist/npm/components/y-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/y-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/y-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/y-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/y-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/y-axis-item/Labels.js +0 -20
- package/dist/npm/components/y-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/y-axis-item/Notes.js +0 -20
- package/dist/npm/components/y-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/y-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/y-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/y-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/y-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/y-axis-item/Title.js +0 -21
- package/dist/npm/components/y-axis-item/main.d.ts +0 -8
- package/dist/npm/components/y-axis-item/main.js +0 -17
- package/dist/npm/defaults.d.ts +0 -1
- package/dist/npm/defaults.js +0 -17
- package/dist/npm/events/axis-label-click-event.d.ts +0 -32
- package/dist/npm/events/axis-label-click-event.js +0 -41
- package/dist/npm/events/base-event.d.ts +0 -14
- package/dist/npm/events/base-event.js +0 -16
- package/dist/npm/events/chart-event-builder.d.ts +0 -6
- package/dist/npm/events/chart-event-builder.js +0 -58
- package/dist/npm/events/dom-event.d.ts +0 -20
- package/dist/npm/events/dom-event.js +0 -21
- package/dist/npm/events/dom-events-builder.d.ts +0 -7
- package/dist/npm/events/dom-events-builder.js +0 -35
- package/dist/npm/events/dom-events.d.ts +0 -24
- package/dist/npm/events/dom-events.js +0 -166
- package/dist/npm/events/drag-end-event.d.ts +0 -22
- package/dist/npm/events/drag-end-event.js +0 -38
- package/dist/npm/events/drag-event.d.ts +0 -22
- package/dist/npm/events/drag-event.js +0 -36
- package/dist/npm/events/drag-start-event.d.ts +0 -22
- package/dist/npm/events/drag-start-event.js +0 -36
- package/dist/npm/events/drilldown-event.d.ts +0 -38
- package/dist/npm/events/drilldown-event.js +0 -41
- package/dist/npm/events/drilldown-state-change-event.d.ts +0 -22
- package/dist/npm/events/drilldown-state-change-event.js +0 -19
- package/dist/npm/events/legend-item-click-event.d.ts +0 -32
- package/dist/npm/events/legend-item-click-event.js +0 -44
- package/dist/npm/events/legend-item-hover-event.d.ts +0 -32
- package/dist/npm/events/legend-item-hover-event.js +0 -44
- package/dist/npm/events/legend-item-leave-event.d.ts +0 -32
- package/dist/npm/events/legend-item-leave-event.js +0 -44
- package/dist/npm/events/navigator-filter-event.d.ts +0 -19
- package/dist/npm/events/navigator-filter-event.js +0 -36
- package/dist/npm/events/note-click-event.d.ts +0 -32
- package/dist/npm/events/note-click-event.js +0 -39
- package/dist/npm/events/note-hover-event.d.ts +0 -32
- package/dist/npm/events/note-hover-event.js +0 -39
- package/dist/npm/events/plot-area-click-event.d.ts +0 -31
- package/dist/npm/events/plot-area-click-event.js +0 -39
- package/dist/npm/events/plot-area-hover-event.d.ts +0 -31
- package/dist/npm/events/plot-area-hover-event.js +0 -39
- package/dist/npm/events/preventable-event.d.ts +0 -18
- package/dist/npm/events/preventable-event.js +0 -49
- package/dist/npm/events/render-event.d.ts +0 -11
- package/dist/npm/events/render-event.js +0 -33
- package/dist/npm/events/select-end-event.d.ts +0 -24
- package/dist/npm/events/select-end-event.js +0 -37
- package/dist/npm/events/select-event.d.ts +0 -24
- package/dist/npm/events/select-event.js +0 -37
- package/dist/npm/events/select-start-event.d.ts +0 -24
- package/dist/npm/events/select-start-event.js +0 -37
- package/dist/npm/events/series-click-event.d.ts +0 -45
- package/dist/npm/events/series-click-event.js +0 -44
- package/dist/npm/events/series-hover-event.d.ts +0 -49
- package/dist/npm/events/series-hover-event.js +0 -45
- package/dist/npm/events/zoom-end-event.d.ts +0 -24
- package/dist/npm/events/zoom-end-event.js +0 -38
- package/dist/npm/events/zoom-event.d.ts +0 -28
- package/dist/npm/events/zoom-event.js +0 -39
- package/dist/npm/events/zoom-start-event.d.ts +0 -22
- package/dist/npm/events/zoom-start-event.js +0 -38
- package/dist/npm/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/npm/field-types/auto-base-unit-steps.interface.js +0 -2
- package/dist/npm/field-types/axis-labels-position.d.ts +0 -22
- package/dist/npm/field-types/axis-labels-position.js +0 -2
- package/dist/npm/field-types/axis-line.interface.d.ts +0 -22
- package/dist/npm/field-types/axis-line.interface.js +0 -3
- package/dist/npm/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/npm/field-types/axis-ticks.interface.js +0 -3
- package/dist/npm/field-types/axis-title-position.d.ts +0 -22
- package/dist/npm/field-types/axis-title-position.js +0 -2
- package/dist/npm/field-types/base-unit.d.ts +0 -34
- package/dist/npm/field-types/base-unit.js +0 -2
- package/dist/npm/field-types/border.interface.d.ts +0 -18
- package/dist/npm/field-types/border.interface.js +0 -3
- package/dist/npm/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/npm/field-types/bullet-target-line.interface.js +0 -2
- package/dist/npm/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/npm/field-types/bullet-target.interface.js +0 -3
- package/dist/npm/field-types/category-base-unit.d.ts +0 -35
- package/dist/npm/field-types/category-base-unit.js +0 -2
- package/dist/npm/field-types/dash-type.d.ts +0 -28
- package/dist/npm/field-types/dash-type.js +0 -2
- package/dist/npm/field-types/date-formats.interface.d.ts +0 -39
- package/dist/npm/field-types/date-formats.interface.js +0 -3
- package/dist/npm/field-types/drag-action.interface.d.ts +0 -15
- package/dist/npm/field-types/drag-action.interface.js +0 -2
- package/dist/npm/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/npm/field-types/error-bar-line.interface.js +0 -2
- package/dist/npm/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/npm/field-types/grid-lines.interface.js +0 -3
- package/dist/npm/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/npm/field-types/highlight-line.interface.js +0 -3
- package/dist/npm/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/npm/field-types/label-connectors.interface.js +0 -2
- package/dist/npm/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/npm/field-types/label-rotation.interface.js +0 -3
- package/dist/npm/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/npm/field-types/legend-labels.interface.js +0 -3
- package/dist/npm/field-types/line-style.d.ts +0 -28
- package/dist/npm/field-types/line-style.js +0 -2
- package/dist/npm/field-types/lock-axis.d.ts +0 -4
- package/dist/npm/field-types/lock-axis.js +0 -2
- package/dist/npm/field-types/margin.interface.d.ts +0 -21
- package/dist/npm/field-types/margin.interface.js +0 -2
- package/dist/npm/field-types/marker-type.d.ts +0 -31
- package/dist/npm/field-types/marker-type.js +0 -2
- package/dist/npm/field-types/modifier-key.d.ts +0 -4
- package/dist/npm/field-types/modifier-key.js +0 -2
- package/dist/npm/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/npm/field-types/mousewheel-select.interface.js +0 -3
- package/dist/npm/field-types/mousewheel-zoom.interface.d.ts +0 -18
- package/dist/npm/field-types/mousewheel-zoom.interface.js +0 -2
- package/dist/npm/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/npm/field-types/negative-bubble-values.interface.js +0 -3
- package/dist/npm/field-types/note-label-position.d.ts +0 -29
- package/dist/npm/field-types/note-label-position.js +0 -2
- package/dist/npm/field-types/note-line.interface.d.ts +0 -22
- package/dist/npm/field-types/note-line.interface.js +0 -2
- package/dist/npm/field-types/note-position.d.ts +0 -29
- package/dist/npm/field-types/note-position.js +0 -2
- package/dist/npm/field-types/overlay.interface.d.ts +0 -15
- package/dist/npm/field-types/overlay.interface.js +0 -2
- package/dist/npm/field-types/padding.interface.d.ts +0 -6
- package/dist/npm/field-types/padding.interface.js +0 -2
- package/dist/npm/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/npm/field-types/plot-band-label.interface.js +0 -2
- package/dist/npm/field-types/plot-band.interface.d.ts +0 -30
- package/dist/npm/field-types/plot-band.interface.js +0 -2
- package/dist/npm/field-types/series-labels-position.d.ts +0 -16
- package/dist/npm/field-types/series-labels-position.js +0 -19
- package/dist/npm/field-types/series-line.interface.d.ts +0 -28
- package/dist/npm/field-types/series-line.interface.js +0 -3
- package/dist/npm/field-types/series-stack.interface.d.ts +0 -17
- package/dist/npm/field-types/series-stack.interface.js +0 -3
- package/dist/npm/field-types/series-type.d.ts +0 -29
- package/dist/npm/field-types/series-type.js +0 -2
- package/dist/npm/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/npm/field-types/trendline-forecast.interface.js +0 -2
- package/dist/npm/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/npm/field-types/week-start-day.enum.js +0 -37
- package/dist/npm/main.d.ts +0 -29
- package/dist/npm/main.js +0 -50
- package/dist/npm/methods/index.d.ts +0 -36
- package/dist/npm/methods/index.js +0 -56
- package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/npm/option-types/axis-defaults/crosshair.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/npm/option-types/axis-defaults/labels.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/npm/option-types/axis-defaults/title.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/npm/option-types/axis-defaults.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/npm/option-types/category-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/npm/option-types/category-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/category-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/category-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/npm/option-types/category-axis-item/range-labels.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/npm/option-types/category-axis-item/select.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/npm/option-types/category-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/npm/option-types/category-axis-item.interface.js +0 -3
- package/dist/npm/option-types/chart-area.interface.d.ts +0 -30
- package/dist/npm/option-types/chart-area.interface.js +0 -2
- package/dist/npm/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/npm/option-types/legend/inactive-items.interface.js +0 -2
- package/dist/npm/option-types/legend/item.interface.d.ts +0 -21
- package/dist/npm/option-types/legend/item.interface.js +0 -2
- package/dist/npm/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/npm/option-types/legend/legend-title.interface.js +0 -2
- package/dist/npm/option-types/legend.interface.d.ts +0 -94
- package/dist/npm/option-types/legend.interface.js +0 -3
- package/dist/npm/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/npm/option-types/navigator/hint.interface.js +0 -2
- package/dist/npm/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/npm/option-types/navigator/select.interface.js +0 -2
- package/dist/npm/option-types/navigator.interface.d.ts +0 -37
- package/dist/npm/option-types/navigator.interface.js +0 -3
- package/dist/npm/option-types/pane/title.interface.d.ts +0 -56
- package/dist/npm/option-types/pane/title.interface.js +0 -3
- package/dist/npm/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/npm/option-types/pane-defaults/title.interface.js +0 -3
- package/dist/npm/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/npm/option-types/pane-defaults.interface.js +0 -3
- package/dist/npm/option-types/pane.interface.d.ts +0 -39
- package/dist/npm/option-types/pane.interface.js +0 -3
- package/dist/npm/option-types/plot-area.interface.d.ts +0 -26
- package/dist/npm/option-types/plot-area.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/npm/option-types/series-defaults/labels.from.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/npm/option-types/series-defaults/labels.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/npm/option-types/series-defaults/labels.to.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/series-defaults/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/npm/option-types/series-defaults/notes.interface.js +0 -2
- package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/series-defaults/notes.label.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/npm/option-types/series-defaults/tooltip.interface.js +0 -3
- package/dist/npm/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/npm/option-types/series-defaults.interface.js +0 -3
- package/dist/npm/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/npm/option-types/series-item/error-bars.interface.js +0 -3
- package/dist/npm/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/extremes.interface.js +0 -2
- package/dist/npm/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/npm/option-types/series-item/highlight.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/npm/option-types/series-item/labels.from.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/npm/option-types/series-item/labels.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/npm/option-types/series-item/labels.to.interface.js +0 -3
- package/dist/npm/option-types/series-item/markers.interface.d.ts +0 -65
- package/dist/npm/option-types/series-item/markers.interface.js +0 -3
- package/dist/npm/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/npm/option-types/series-item/notes.interface.js +0 -2
- package/dist/npm/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/series-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/outliers.interface.js +0 -2
- package/dist/npm/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/npm/option-types/series-item/tooltip.interface.js +0 -3
- package/dist/npm/option-types/series-item/trendline.interface.d.ts +0 -18
- package/dist/npm/option-types/series-item/trendline.interface.js +0 -2
- package/dist/npm/option-types/series-item.interface.d.ts +0 -453
- package/dist/npm/option-types/series-item.interface.js +0 -3
- package/dist/npm/option-types/subtitle.interface.d.ts +0 -61
- package/dist/npm/option-types/subtitle.interface.js +0 -2
- package/dist/npm/option-types/title.interface.d.ts +0 -55
- package/dist/npm/option-types/title.interface.js +0 -3
- package/dist/npm/option-types/tooltip.interface.d.ts +0 -48
- package/dist/npm/option-types/tooltip.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/value-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/npm/option-types/value-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/value-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/value-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/npm/option-types/value-axis-item/title.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/npm/option-types/value-axis-item.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/x-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/npm/option-types/x-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/npm/option-types/x-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/x-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/npm/option-types/x-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item.interface.d.ts +0 -135
- package/dist/npm/option-types/x-axis-item.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/y-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/npm/option-types/y-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/y-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/y-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/npm/option-types/y-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item.interface.d.ts +0 -131
- package/dist/npm/option-types/y-axis-item.interface.js +0 -3
- package/dist/npm/option-types/zoomable.interface.d.ts +0 -14
- package/dist/npm/option-types/zoomable.interface.js +0 -2
- package/dist/npm/package-metadata.d.ts +0 -5
- package/dist/npm/package-metadata.js +0 -14
- package/dist/npm/store/reducer.d.ts +0 -14
- package/dist/npm/store/reducer.js +0 -107
- package/dist/npm/store/store.d.ts +0 -26
- package/dist/npm/store/store.js +0 -31
- package/dist/npm/theming/theme-service.d.ts +0 -6
- package/dist/npm/theming/theme-service.js +0 -155
- package/dist/npm/tooltip/Context.d.ts +0 -11
- package/dist/npm/tooltip/Context.js +0 -2
- package/dist/npm/tooltip/Crosshair.d.ts +0 -36
- package/dist/npm/tooltip/Crosshair.js +0 -113
- package/dist/npm/tooltip/CrosshairContainer.d.ts +0 -28
- package/dist/npm/tooltip/CrosshairContainer.js +0 -97
- package/dist/npm/tooltip/Point.d.ts +0 -68
- package/dist/npm/tooltip/Point.js +0 -38
- package/dist/npm/tooltip/Popup.d.ts +0 -31
- package/dist/npm/tooltip/Popup.js +0 -86
- package/dist/npm/tooltip/Series.d.ts +0 -35
- package/dist/npm/tooltip/Series.js +0 -185
- package/dist/npm/tooltip/SharedTooltipContent.d.ts +0 -12
- package/dist/npm/tooltip/SharedTooltipContent.js +0 -24
- package/dist/npm/tooltip/main.d.ts +0 -3
- package/dist/npm/tooltip/main.js +0 -5
- package/dist/npm/utils/main.d.ts +0 -14
- package/dist/npm/utils/main.js +0 -37
- package/dist/systemjs/kendo-react-charts.js +0 -1
- package/e2e-next/chart.basic.tests.ts +0 -24
|
@@ -1 +1,48 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react"),require("prop-types"),require("@progress/kendo-react-intl"),require("@progress/kendo-drawing"),require("@progress/kendo-licensing"),require("react-dom"),require("react-transition-group")):"function"==typeof define&&define.amd?define(["react","prop-types","@progress/kendo-react-intl","@progress/kendo-drawing","@progress/kendo-licensing","react-dom","react-transition-group"],e):"object"==typeof exports?exports.KendoReactCharts=e(require("react"),require("prop-types"),require("@progress/kendo-react-intl"),require("@progress/kendo-drawing"),require("@progress/kendo-licensing"),require("react-dom"),require("react-transition-group")):t.KendoReactCharts=e(t.React,t.PropTypes,t.KendoReactIntl,t.KendoDrawing,t.KendoLicensing,t.ReactDOM,t.ReactTransitionGroup)}(self,(function(t,e,o,n,r,i,a){return(()=>{"use strict";var s={2795:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o},s=this&&this.__spreadArray||function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))};Object.defineProperty(e,"__esModule",{value:!0}),e.BaseChart=void 0;var c=o(3899),l=o(189),h=o(499),p=o(4899),u=o(3814),v=o(9075),d=o(3758),f=o(2368),m=o(290),y=o(8803),g=o(3113),b=o(6600),x=o(9075);o(6410);var w=o(2461),_=o(9373),z=o(5201),C=o(3814),k=o(7363),M=o(468),O=function(t){function e(e){var o=t.call(this,e)||this;return o.chartInstance=null,o.surface=null,o._element=null,o.optionsStore={},o.optionsUnsubscriber=Function.prototype,o.themeStore={},o.themeUnsubscriber=Function.prototype,o.observersStore={},o.suppressTransitions=!1,o.showLicenseWatermark=!1,o.onRender=function(t){null!==o.chartInstance&&(o.surface=t.sender.surface,o.trigger("render",t))},o.onDrilldown=function(t){var e,n=o.optionsStore.getState().series.find((function(e){return e.name===t.series.name}));if(!n.drilldownSeriesFactory)return!0;var r="onDrilldown";if(o.props.hasOwnProperty(r)){var a={seriesName:n.name,drilldownValue:t.value},c=s(s([],(null===(e=o.props.drilldownState)||void 0===e?void 0:e.steps)||[],!0),[a],!1),l=o.props.getTarget(),h=i(i({},t),{currentState:o.props.drilldownState,nextState:{steps:c}}),p=new M.DrilldownEvent(h,l);o.props[r].call(void 0,p)}return!0},o.onLegendItemClick=function(t){if(null!==o.chartInstance)if(o.props.onLegendItemClick)o.trigger("legendItemClick",t);else{var e=o.optionsStore.getState().series;if(!e)return;var n={},r=t.seriesIndex,i=t.pointIndex,a=e[r];if(void 0===i)n=Object.assign({},a,{visible:(0,x.toggle)(a.visible)});else{var s=a.pointVisibility=a.pointVisibility||[];s[i]=(0,x.toggle)(s[i]),n=Object.assign({},a)}o.optionsStore.dispatch({chartCollectionIdxKey:"series_".concat(r),payload:n}),o.suppressTransitions=!0}},o.onWindowResize=function(){null!==o.chartInstance&&o.chartInstance.resize()},o.onChartMouseLeave=function(t){var e=(0,m.toDomEvent)(o,t);o.triggerDomEvent("onMouseLeave",e)?t.preventDefault():null!==o.chartInstance&&o.chartInstance.hideElements()},o.onChildMouseLeave=function(t){var e=t.syntheticEvent;return o.chartInstance&&!(0,v.hasParent)(e.relatedTarget,o.element)&&o.chartInstance.hideElements(),!1},(0,C.validatePackage)(k.packageMetadata),o.showLicenseWatermark=(0,C.shouldShowValidationUI)(k.packageMetadata),o.optionsStore=(0,g.default)(b.optionsReducer),o.observersStore=(0,g.default)(b.observersReducer),o.childrenObserver=new p.InstanceObserver(o,{onMouseLeave:"onChildMouseLeave"}),o.state={optionsStore:o.optionsStore,observersStore:o.observersStore,childrenObserver:o.childrenObserver,drilldownState:{steps:[]}},o.themeStore=(0,g.default)(b.themeReducer),o.chartObserver=new p.InstanceObserver(o,{render:"onRender",legendItemClick:"onLegendItemClick",drilldown:"onDrilldown"}),o}return r(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this._element},enumerable:!1,configurable:!0}),e.getDerivedStateFromProps=function(t,e){return i(i({},e),{drilldownState:t.drilldownState||[]})},e.prototype.componentDidMount=function(){var t,e=(null===(t=this._element)||void 0===t?void 0:t.ownerDocument)||document;(0,y.loadTheme)(this.themeStore,this.instantiateCoreChart.bind(this),e),this.optionsUnsubscriber=this.optionsStore.subscribe(this.refresh.bind(this)),this.themeUnsubscriber=this.themeStore.subscribe(this.refresh.bind(this)),window.addEventListener("resize",this.onWindowResize)},e.prototype.componentWillUnmount=function(){this.optionsUnsubscriber(),this.themeUnsubscriber(),null!==this.chartInstance&&(this.chartInstance.destroy(),this.chartInstance=null),window.removeEventListener("resize",this.onWindowResize)},e.prototype.componentDidUpdate=function(t){var e=this.props,o=e.dir,n=(e.children,a(e,["dir","children"]));if(null!==this.chartInstance){var r=(0,h.provideIntlService)(this),i=this.chartInstance.chartService,s=r.locale!==i._intlService.locale,c=Object.entries(t).filter((function(t){return"dir"!==t[0]&&"children"!==t[0]})).some((function(t){var e=t[0],o=t[1];return!(n.hasOwnProperty(e)&&n[e]===o)}));s&&(this.chartInstance.chartService._intlService=r,this.chartInstance.chartService.format._intlService=r,c||this.chartInstance.noTransitionsRedraw()),c&&this.refresh(),t.dir!==o&&this.chartInstance.setDirection(this.getDirection(o))}},e.prototype.render=function(){var t=this,e=this.props,o=e.style,n=void 0===o?{}:o,r=e.className,i=e.wrapper,a=e.children,s=Object.assign({},n,{position:"relative"}),l=c.createElement(i,{className:r,style:s,key:"chartElement"},c.createElement("div",{onMouseLeave:this.onChartMouseLeave,ref:function(e){return t._element=e},className:"k-chart-surface"},a),c.createElement(c.Fragment,null,this.showLicenseWatermark&&c.createElement(C.WatermarkOverlay,null)));return c.createElement(z.ChartContext.Provider,{value:this.state},c.createElement(w.SeriesTooltip,{key:"seriesTooltip"}),c.createElement(_.CrosshairTooltipContainer,{key:"crosshairTooltips"}),l)},e.prototype.getDirection=function(t){return"rtl"===(void 0!==t?t:u.canUseDOM&&window.getComputedStyle(this.element).direction||"ltr")},e.prototype.getChartOptions=function(){var t=this.props,e=t.renderAs,o=t.pannable,n=t.zoomable,r=t.paneDefaults,i=t.panes,a=t.transitions,s=t.seriesColors,c=t.seriesDefaults,l=t.axisDefaults,h=t.deriveOptionsFromParent,p={};return void 0!==e&&(p.renderAs=e),void 0!==o&&(p.pannable=o),void 0!==n&&(p.zoomable=n),void 0!==r&&(p.paneDefaults=r),void 0!==i&&(p.panes=i),void 0!==a&&(p.transitions=a),void 0!==s&&(p.seriesColors=s),void 0!==c&&(p.seriesDefaults=c),void 0!==l&&(p.axisDefaults=l),p=Object.assign(p,this.optionsStore.getState()),h&&(p=h(p)),p},e.prototype.refresh=function(){if(null!==this.chartInstance){var t=this.themeStore.getState(),e=this.getChartOptions(),o=e.transitions;this.suppressTransitions&&(e.transitions=!1),this.props.onRefresh?this.props.onRefresh.call(void 0,e,t,this.chartInstance):this.chartInstance.setOptions(e,t),this.suppressTransitions&&(e.transitions=o,this.suppressTransitions=!1)}},e.prototype.instantiateCoreChart=function(){var t=this.props,e=t.dir,o=t.chartConstructor,n=this.getChartOptions();this.chartInstance=new o(this.element,n,this.themeStore.getState(),{rtl:this.getDirection(e),intlService:(0,h.provideIntlService)(this),observer:this.chartObserver,sender:this})},e.prototype.trigger=function(t,e){for(var o=this.props.getTarget(),n=(0,f.create)(t,e,o),r="on"+t.charAt(0).toUpperCase()+t.slice(1),i=this.observersStore.getState(),a=!1,s=0;s<i.length;s++)i[s].trigger(t,e)&&(a=!0);return!1===a&&n&&this.props.hasOwnProperty(r)?(this.props[r].call(void 0,n),n.isDefaultPrevented&&n.isDefaultPrevented()):a},e.prototype.requiresHandlers=function(t){for(var e=0;e<t.length;e++){var o=t[e],n="on"+o.charAt(0).toUpperCase()+o.slice(1);if(this.props.hasOwnProperty(n))return!0}return!1},e.prototype.triggerDomEvent=function(t,e){for(var o=this.observersStore.getState(),n=!1,r=0;r<o.length;r++)o[r].trigger(t,e)&&(n=!0);return n},e.propTypes={dir:l.string,renderAs:l.oneOf(["svg","canvas"])},e.defaultProps={renderAs:"svg"},e}(c.Component);e.BaseChart=O,(0,h.registerForIntl)(O),p.DomEventsBuilder.register(d.DomEventsBuilder)},8613:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o};Object.defineProperty(e,"__esModule",{value:!0}),e.Chart=void 0;var s=o(3899),c=o(2795),l=o(5870),h=o(4899),p=o(3814),u=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._baseChart=null,e.getTarget=function(){return e},e}return r(e,t),Object.defineProperty(e.prototype,"chartInstance",{get:function(){return null!==this._baseChart?this._baseChart.chartInstance:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"surface",{get:function(){return null!==this._baseChart?this._baseChart.surface:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"element",{get:function(){return null!==this._baseChart?this._baseChart.element:null},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this,e=this.props,o=e.donutCenterRender,n=e.children,r=e.className,u=a(e,["donutCenterRender","children","className"]);return s.createElement(c.BaseChart,i({},u,{ref:function(e){return t._baseChart=e},chartConstructor:h.Chart,getTarget:this.getTarget,wrapper:"div",className:(0,p.classNames)("k-chart k-widget",r)}),n,s.createElement(l.DonutCenter,{render:o}))},e}(s.Component);e.Chart=u},3833:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)},r=this&&this.__spreadArray||function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartBreadcrumb=void 0;var i=o(3899),a=o(189),s=o(1759),c=o(3814),l=o(8696),h=o(8780);e.ChartBreadcrumb=i.forwardRef((function(t,e){var o=i.useRef(null),a=i.useRef(null);i.useImperativeHandle(o,(function(){return{element:a.current,props:t}})),i.useImperativeHandle(e,(function(){return o.current}));var p=[n({id:"0"},t.rootItem||{text:"Home",icon:i.createElement(c.SvgIcon,{icon:l.homeIcon,style:{marginInlineEnd:"4px"}})})];t.drilldownState&&(p=r(r([],p,!0),t.drilldownState.steps.map((function(t,e){return{id:(e+1).toString(),text:t.drilldownValue}})),!0));var u=n(n({},t),{data:p});return i.createElement("div",null,i.createElement(s.Breadcrumb,n({},u,{onItemSelect:function(e){var o,n="onDrilldownStateChange";if(t.hasOwnProperty(n)){var r=p.findIndex((function(t){return t.id===e.id})),i={steps:((null===(o=t.drilldownState)||void 0===o?void 0:o.steps)||[]).slice(0,r)},a=new h.DrilldownStateChangeEvent({currentState:t.drilldownState,nextState:i});t[n].call(void 0,a)}}})))}));var p={id:a.string,style:a.object,className:a.string,breadcrumbOrderedList:a.elementType,breadcrumbListItem:a.elementType,breadcrumbDelimiter:a.elementType,breadcrumbLink:a.elementType,dir:a.oneOf(["ltr","rtl"]),disabled:a.bool,valueField:a.string,textField:a.string,iconField:a.string,iconClassField:a.string,onItemSelect:a.func,ariaLabel:a.string,onDrilldownStateChange:a.func,drilldownState:a.shape({steps:a.array}),rootItem:a.object};e.ChartBreadcrumb.displayName="KendoReactChartBreadcrumb",e.ChartBreadcrumb.propTypes=p,e.ChartBreadcrumb.defaultProps={valueField:"id",textField:"text",iconField:"icon",iconClassField:"iconClass",data:[]}},5201:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartContext=void 0;var n=o(3899);e.ChartContext=n.createContext(null),e.ChartContext.displayName="ChartContext"},4890:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Container=void 0;var o=function(t){return t.children};e.Container=o,o.displayName="Container"},5870:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DonutCenter=void 0;var i=o(3899),a=o(4899),s=o(5201),c=function(t){function e(e,o){var n=t.call(this,e,o)||this;return n.context=null,n.state={donutCenterStyles:null},n.chartObserver=new a.InstanceObserver(n,{render:"onRender"}),o.observersStore.dispatch({type:"add",payload:n.chartObserver}),n}return r(e,t),e.prototype.render=function(){var t=this.props.render,e=this.state.donutCenterStyles,o=null;return t&&e&&(o=i.createElement("div",{className:"k-chart-donut-center",style:e},i.createElement(t,null))),o},e.prototype.onRender=function(t){var e,o=null===(e=this.context)||void 0===e?void 0:e.optionsStore.getState().series,n=Array.isArray(o)?o[0]:null,r=t.sender._plotArea.charts;if(n&&"donut"===n.type&&0!==r[0].points.length){var i=r[0].points[0].sector,a=i.innerRadius,s=i.center.y-a,c=i.center.x-a,l=2*a;this.setState({donutCenterStyles:{height:l,left:c,top:s,width:l}})}},e.contextType=s.ChartContext,e}(i.Component);e.DonutCenter=c},2170:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o};Object.defineProperty(e,"__esModule",{value:!0}),e.Sparkline=void 0;var s=o(3899),c=o(2795),l=o(4899),h=o(3814),p=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._baseChart=null,e.deriveOptionsFromParent=function(t){var o=e.props,n=o.type,r=o.data,i=Object.assign({},t,{type:n,data:r});return l.Sparkline.normalizeOptions(i)},e.getTarget=function(){return e},e}return r(e,t),Object.defineProperty(e.prototype,"chartInstance",{get:function(){return null!==this._baseChart?this._baseChart.chartInstance:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"surface",{get:function(){return null!==this._baseChart?this._baseChart.surface:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"element",{get:function(){return null!==this._baseChart?this._baseChart.element:null},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this,e=this.props,o=e.children,n=(e.type,e.className),r=a(e,["children","type","className"]);return s.createElement(c.BaseChart,i({},r,{ref:function(e){return t._baseChart=e},chartConstructor:l.Sparkline,getTarget:this.getTarget,wrapper:"span",deriveOptionsFromParent:this.deriveOptionsFromParent,className:(0,h.classNames)("k-sparkline k-widget",n)}),o)},e}(s.Component);e.Sparkline=p},5930:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o};Object.defineProperty(e,"__esModule",{value:!0}),e.StockChart=void 0;var s=o(3899),c=o(2795),l=o(4899),h=o(3814),p={autoBindElements:!0,liveDrag:!1,partialRedraw:!0},u=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._baseChart=null,e.deriveOptionsFromParent=function(t){var e=Object.assign({},t.navigator||{},p);return Object.assign({},t,{navigator:e})},e.onRefresh=function(t,o,n){e.props.partialRedraw?(n.applyOptions(t),n.bindCategories(),n.navigator.redrawSlaves()):n.setOptions(t,o)},e.getTarget=function(){return e},e}return r(e,t),Object.defineProperty(e.prototype,"chartInstance",{get:function(){return null!==this._baseChart?this._baseChart.chartInstance:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"surface",{get:function(){return null!==this._baseChart?this._baseChart.surface:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"element",{get:function(){return null!==this._baseChart?this._baseChart.element:null},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this,e=this.props,o=e.children,n=e.className,r=a(e,["children","className"]);return s.createElement(c.BaseChart,i({},r,{ref:function(e){return t._baseChart=e},chartConstructor:l.StockChart,getTarget:this.getTarget,wrapper:"div",deriveOptionsFromParent:this.deriveOptionsFromParent,onRefresh:this.onRefresh,className:(0,h.classNames)("k-stockchart k-widget",n)}),o)},e}(s.Component);e.StockChart=u},1751:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},4449:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0})},6894:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomStartEvent=e.ZoomEvent=e.ZoomEndEvent=e.SeriesHoverEvent=e.SeriesClickEvent=e.SelectStartEvent=e.SelectEvent=e.SelectEndEvent=e.RenderEvent=e.PlotAreaHoverEvent=e.PlotAreaClickEvent=e.NoteHoverEvent=e.NoteClickEvent=e.NavigatorFilterEvent=e.LegendItemHoverEvent=e.LegendItemClickEvent=e.DrilldownStateChangeEvent=e.DrilldownEvent=e.DragStartEvent=e.DragEvent=e.DragEndEvent=e.AxisLabelClickEvent=void 0;var n=o(5161);Object.defineProperty(e,"AxisLabelClickEvent",{enumerable:!0,get:function(){return n.AxisLabelClickEvent}});var r=o(3803);Object.defineProperty(e,"DragEndEvent",{enumerable:!0,get:function(){return r.DragEndEvent}});var i=o(3251);Object.defineProperty(e,"DragEvent",{enumerable:!0,get:function(){return i.DragEvent}});var a=o(881);Object.defineProperty(e,"DragStartEvent",{enumerable:!0,get:function(){return a.DragStartEvent}});var s=o(3240);Object.defineProperty(e,"DrilldownEvent",{enumerable:!0,get:function(){return s.DrilldownEvent}});var c=o(8780);Object.defineProperty(e,"DrilldownStateChangeEvent",{enumerable:!0,get:function(){return c.DrilldownStateChangeEvent}});var l=o(8959);Object.defineProperty(e,"LegendItemClickEvent",{enumerable:!0,get:function(){return l.LegendItemClickEvent}});var h=o(6099);Object.defineProperty(e,"LegendItemHoverEvent",{enumerable:!0,get:function(){return h.LegendItemHoverEvent}});var p=o(8922);Object.defineProperty(e,"NavigatorFilterEvent",{enumerable:!0,get:function(){return p.NavigatorFilterEvent}});var u=o(8888);Object.defineProperty(e,"NoteClickEvent",{enumerable:!0,get:function(){return u.NoteClickEvent}});var v=o(8911);Object.defineProperty(e,"NoteHoverEvent",{enumerable:!0,get:function(){return v.NoteHoverEvent}});var d=o(4761);Object.defineProperty(e,"PlotAreaClickEvent",{enumerable:!0,get:function(){return d.PlotAreaClickEvent}});var f=o(4009);Object.defineProperty(e,"PlotAreaHoverEvent",{enumerable:!0,get:function(){return f.PlotAreaHoverEvent}});var m=o(6765);Object.defineProperty(e,"RenderEvent",{enumerable:!0,get:function(){return m.RenderEvent}});var y=o(2499);Object.defineProperty(e,"SelectEndEvent",{enumerable:!0,get:function(){return y.SelectEndEvent}});var g=o(2154);Object.defineProperty(e,"SelectEvent",{enumerable:!0,get:function(){return g.SelectEvent}});var b=o(3547);Object.defineProperty(e,"SelectStartEvent",{enumerable:!0,get:function(){return b.SelectStartEvent}});var x=o(1604);Object.defineProperty(e,"SeriesClickEvent",{enumerable:!0,get:function(){return x.SeriesClickEvent}});var w=o(5535);Object.defineProperty(e,"SeriesHoverEvent",{enumerable:!0,get:function(){return w.SeriesHoverEvent}});var _=o(2706);Object.defineProperty(e,"ZoomEndEvent",{enumerable:!0,get:function(){return _.ZoomEndEvent}});var z=o(8526);Object.defineProperty(e,"ZoomEvent",{enumerable:!0,get:function(){return z.ZoomEvent}});var C=o(8476);Object.defineProperty(e,"ZoomStartEvent",{enumerable:!0,get:function(){return C.ZoomStartEvent}})},5487:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.WeekStartDay=void 0;var n=o(3203);Object.defineProperty(e,"WeekStartDay",{enumerable:!0,get:function(){return n.WeekStartDay}})},4011:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaults=void 0;var r=o(3899),i=o(8096);e.ChartAxisDefaults=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"axisDefaults"}))}},6688:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxis=void 0;var r=o(3899),i=o(1958),a=o(7889),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"categoryAxis"}))};e.ChartCategoryAxis=c,c.propTypes={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartCategoryAxisItem)}}},7889:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisItem=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t))};e.ChartCategoryAxisItem=a,a.displayName="ChartCategoryAxisItem"},8916:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartArea=void 0;var r=o(3899),i=o(8096);e.ChartArea=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"chartArea"}))}},4349:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegend=void 0;var r=o(3899),i=o(8096);e.ChartLegend=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"legend"}))}},4603:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigator=void 0;var r=o(3899),i=o(8096);e.ChartNavigator=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0,position:"bottom"},t),{_chartKey:"navigator"}))}},4209:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPane=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t))};e.ChartPane=a,a.displayName="ChartPane"},9327:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneDefaults=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"paneDefaults"}))};e.ChartPaneDefaults=a,a.displayName="ChartPaneDefaults"},3100:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPanes=void 0;var r=o(3899),i=o(1958),a=o(4209),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"panes"}))};e.ChartPanes=c,c.propTypes={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartPane)}}},6007:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPlotArea=void 0;var r=o(3899),i=o(8096);e.ChartPlotArea=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"plotArea"}))}},8689:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeries=void 0;var r=o(3899),i=o(1958),a=o(5083),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"series"}))};e.ChartSeries=c,c.propTypes={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartSeriesItem)}}},9448:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaults=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaults=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"seriesDefaults"}))}},5083:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesItem=void 0;var r=o(3899),i=o(8096),a=o(5201),s=function(t){var e=function(t){return r.createElement(r.Fragment,null)};t.drilldownSeriesFactory&&(e=t.drilldownSeriesFactory);var o=function(e){var o,n;return e&&(null===(n=null===(o=e.drilldownState)||void 0===o?void 0:o.steps)||void 0===n?void 0:n.find((function(e){return e.seriesName===t.name})))};return r.createElement(a.ChartContext.Consumer,null,(function(a){return o(a)?r.createElement(e,{_chartCollectionIdxKey:t._chartCollectionIdxKey,drilldownValue:o(a).drilldownValue}):r.createElement(i.ConfigurationComponent,n({},t))}))};e.ChartSeriesItem=s,s.displayName="ChartSeriesItem"},9717:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSubtitle=void 0;var r=o(3899),i=o(8096);e.ChartSubtitle=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"subtitle"}))}},2352:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartTitle=void 0;var r=o(3899),i=o(8096);e.ChartTitle=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))}},4171:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartTooltip=void 0;var r=o(3899),i=o(8096);e.ChartTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))}},2787:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxis=void 0;var r=o(3899),i=o(1958),a=o(3545),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"valueAxis"}))};e.ChartValueAxis=c,c.propTypes={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartValueAxisItem)}}},3545:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisItem=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t))};e.ChartValueAxisItem=a,a.displayName="ChartValueAxisItem"},7819:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxis=void 0;var r=o(3899),i=o(1958),a=o(7250),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"xAxis"}))};e.ChartXAxis=c,c.prototype={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartXAxisItem)}}},7250:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisItem=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t))};e.ChartXAxisItem=a,a.displayName="ChartXAxisItem"},8791:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxis=void 0;var r=o(3899),i=o(1958),a=o(5876),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"yAxis"}))};e.ChartYAxis=c,c.propTypes={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartYAxisItem)}}},5876:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisItem=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t))};e.ChartYAxisItem=a,a.displayName="ChartYAxisItem"},2797:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartZoomable=void 0;var r=o(3899),i=o(8096);e.ChartZoomable=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"zoomable"}))}},7239:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsCrosshair=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"crosshair"}))};e.ChartAxisDefaultsCrosshair=a,a.displayName="ChartAxisDefaultsCrosshair"},6609:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsCrosshairTooltip=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))};e.ChartAxisDefaultsCrosshairTooltip=a,a.displayName="ChartAxisDefaultsCrosshairTooltip"},6406:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsLabels=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"labels"}))};e.ChartAxisDefaultsLabels=a,a.displayName="ChartAxisDefaultsLabels"},8129:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartAxisDefaultsTitle=a,a.displayName="ChartAxisDefaultsTitle"},7725:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartAxisDefaultsCrosshairTooltip=e.ChartAxisDefaultsCrosshair=e.ChartAxisDefaultsLabels=e.ChartAxisDefaultsTitle=void 0;var n=o(8129);Object.defineProperty(e,"ChartAxisDefaultsTitle",{enumerable:!0,get:function(){return n.ChartAxisDefaultsTitle}});var r=o(6406);Object.defineProperty(e,"ChartAxisDefaultsLabels",{enumerable:!0,get:function(){return r.ChartAxisDefaultsLabels}});var i=o(7239);Object.defineProperty(e,"ChartAxisDefaultsCrosshair",{enumerable:!0,get:function(){return i.ChartAxisDefaultsCrosshair}});var a=o(6609);Object.defineProperty(e,"ChartAxisDefaultsCrosshairTooltip",{enumerable:!0,get:function(){return a.ChartAxisDefaultsCrosshairTooltip}})},1958:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.CollectionConfigurationComponent=void 0;var a=o(3899),s=o(5201),c=function(t){function e(e,o){var n=t.call(this,e,o)||this;return n.optionsStore=o.optionsStore,n}return r(e,t),e.prototype.renderChildren=function(t,e){var o=t.props.children,n=this.props,r=n._chartKey,s=n._parentStore,c=i(i({},t.props),{_chartCollectionIdxKey:"".concat(r,"_").concat(e),_parentStore:s});return a.cloneElement(t,c,o)},e.prototype.render=function(){var t=this,e=this.props,o=e._chartKey,n=e._parentStore,r=e.children;return(n||this.optionsStore).dispatch({chartKey:o,payload:[]}),a.Children.map(r,(function(e,o){return a.isValidElement(e)?t.renderChildren(e,o):e}))},e.contextType=s.ChartContext,e}(a.Component);e.CollectionConfigurationComponent=c},8096:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o};Object.defineProperty(e,"__esModule",{value:!0}),e.ConfigurationComponent=void 0;var s=o(3899),c=o(3113),l=o(6600),h=o(5201),p=function(t){function e(e,o){var n=t.call(this,e,o)||this;return n.optionsStore=o.optionsStore,n.childStore=(0,c.default)(l.optionsReducer),n}return r(e,t),e.prototype.render=function(){var t=this,e=this.props.children;return void 0!==e?s.Children.map(e,(function(e){return s.isValidElement(e)?t.renderChildren(e):e})):null},e.prototype.componentDidMount=function(){this.dispatch()},e.prototype.componentDidUpdate=function(){this.dispatch()},e.prototype.dispatch=function(){var t=this.props,e=t._chartKey,o=t._chartCollectionIdxKey,n=t._parentStore,r=(t.children,a(t,["_chartKey","_chartCollectionIdxKey","_parentStore","children"]));(n||this.optionsStore).dispatch({chartKey:e,chartCollectionIdxKey:o,payload:Object.assign({},r,this.childStore.getState())})},e.prototype.renderChildren=function(t){var e=t.props.children,o=i(i({},t.props),{_parentStore:this.childStore});return s.cloneElement(t,o,e)},e.contextType=h.ChartContext,e}(s.Component);e.ConfigurationComponent=p},6041:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisCrosshair=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisCrosshair=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"crosshair"}))}},5460:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisCrosshairTooltip=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisCrosshairTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))}},8746:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisLabels=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},5021:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisNotes=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},588:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},80:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},4894:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisRangeLabels=void 0;var r=o(3899),i=o(8096);e.ChartCategoryAxisRangeLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"rangeLabels"}))}},5150:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartCategoryAxisTitle=a,a.displayName="ChartCategoryAxisTitle"},666:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartCategoryAxisRangeLabels=e.ChartCategoryAxisNotesLabel=e.ChartCategoryAxisNotesIcon=e.ChartCategoryAxisNotes=e.ChartCategoryAxisLabels=e.ChartCategoryAxisTitle=e.ChartCategoryAxisCrosshairTooltip=e.ChartCategoryAxisCrosshair=void 0;var n=o(6041);Object.defineProperty(e,"ChartCategoryAxisCrosshair",{enumerable:!0,get:function(){return n.ChartCategoryAxisCrosshair}});var r=o(5460);Object.defineProperty(e,"ChartCategoryAxisCrosshairTooltip",{enumerable:!0,get:function(){return r.ChartCategoryAxisCrosshairTooltip}});var i=o(5150);Object.defineProperty(e,"ChartCategoryAxisTitle",{enumerable:!0,get:function(){return i.ChartCategoryAxisTitle}});var a=o(8746);Object.defineProperty(e,"ChartCategoryAxisLabels",{enumerable:!0,get:function(){return a.ChartCategoryAxisLabels}});var s=o(5021);Object.defineProperty(e,"ChartCategoryAxisNotes",{enumerable:!0,get:function(){return s.ChartCategoryAxisNotes}});var c=o(588);Object.defineProperty(e,"ChartCategoryAxisNotesIcon",{enumerable:!0,get:function(){return c.ChartCategoryAxisNotesIcon}});var l=o(80);Object.defineProperty(e,"ChartCategoryAxisNotesLabel",{enumerable:!0,get:function(){return l.ChartCategoryAxisNotesLabel}});var h=o(4894);Object.defineProperty(e,"ChartCategoryAxisRangeLabels",{enumerable:!0,get:function(){return h.ChartCategoryAxisRangeLabels}})},158:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendInactiveItems=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"inactiveItems"}))};e.ChartLegendInactiveItems=a,a.displayName="ChartLegendInactiveItems"},6212:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendItem=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"item"}))};e.ChartLegendItem=a,a.displayName="ChartLegendItem"},4109:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartLegendTitle=a,a.displayName="ChartLegendTitle"},8537:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartLegendInactiveItems=e.ChartLegendTitle=e.ChartLegendItem=void 0;var n=o(6212);Object.defineProperty(e,"ChartLegendItem",{enumerable:!0,get:function(){return n.ChartLegendItem}});var r=o(4109);Object.defineProperty(e,"ChartLegendTitle",{enumerable:!0,get:function(){return r.ChartLegendTitle}});var i=o(158);Object.defineProperty(e,"ChartLegendInactiveItems",{enumerable:!0,get:function(){return i.ChartLegendInactiveItems}})},5388:function(t,e,o){var n=this&&this.__createBinding||(Object.create?function(t,e,o,n){void 0===n&&(n=o);var r=Object.getOwnPropertyDescriptor(e,o);r&&!("get"in r?!e.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,n,r)}:function(t,e,o,n){void 0===n&&(n=o),t[n]=e[o]}),r=this&&this.__exportStar||function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||n(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartZoomable=e.ChartYAxisItem=e.ChartYAxis=e.ChartXAxisItem=e.ChartXAxis=e.ChartValueAxisItem=e.ChartValueAxis=e.ChartTooltip=e.ChartTitle=e.ChartSubtitle=e.ChartSeriesItem=e.ChartSeriesDefaults=e.ChartSeries=e.ChartPlotArea=e.ChartPanes=e.ChartPaneDefaults=e.ChartPane=e.ChartNavigator=e.ChartLegend=e.ChartCategoryAxisItem=e.ChartCategoryAxis=e.ChartAxisDefaults=e.ChartArea=void 0;var i=o(8916);Object.defineProperty(e,"ChartArea",{enumerable:!0,get:function(){return i.ChartArea}});var a=o(4011);Object.defineProperty(e,"ChartAxisDefaults",{enumerable:!0,get:function(){return a.ChartAxisDefaults}});var s=o(6688);Object.defineProperty(e,"ChartCategoryAxis",{enumerable:!0,get:function(){return s.ChartCategoryAxis}});var c=o(7889);Object.defineProperty(e,"ChartCategoryAxisItem",{enumerable:!0,get:function(){return c.ChartCategoryAxisItem}});var l=o(4349);Object.defineProperty(e,"ChartLegend",{enumerable:!0,get:function(){return l.ChartLegend}});var h=o(4603);Object.defineProperty(e,"ChartNavigator",{enumerable:!0,get:function(){return h.ChartNavigator}});var p=o(4209);Object.defineProperty(e,"ChartPane",{enumerable:!0,get:function(){return p.ChartPane}});var u=o(9327);Object.defineProperty(e,"ChartPaneDefaults",{enumerable:!0,get:function(){return u.ChartPaneDefaults}});var v=o(3100);Object.defineProperty(e,"ChartPanes",{enumerable:!0,get:function(){return v.ChartPanes}});var d=o(6007);Object.defineProperty(e,"ChartPlotArea",{enumerable:!0,get:function(){return d.ChartPlotArea}});var f=o(8689);Object.defineProperty(e,"ChartSeries",{enumerable:!0,get:function(){return f.ChartSeries}});var m=o(9448);Object.defineProperty(e,"ChartSeriesDefaults",{enumerable:!0,get:function(){return m.ChartSeriesDefaults}});var y=o(5083);Object.defineProperty(e,"ChartSeriesItem",{enumerable:!0,get:function(){return y.ChartSeriesItem}});var g=o(9717);Object.defineProperty(e,"ChartSubtitle",{enumerable:!0,get:function(){return g.ChartSubtitle}});var b=o(2352);Object.defineProperty(e,"ChartTitle",{enumerable:!0,get:function(){return b.ChartTitle}});var x=o(4171);Object.defineProperty(e,"ChartTooltip",{enumerable:!0,get:function(){return x.ChartTooltip}});var w=o(2787);Object.defineProperty(e,"ChartValueAxis",{enumerable:!0,get:function(){return w.ChartValueAxis}});var _=o(3545);Object.defineProperty(e,"ChartValueAxisItem",{enumerable:!0,get:function(){return _.ChartValueAxisItem}});var z=o(7819);Object.defineProperty(e,"ChartXAxis",{enumerable:!0,get:function(){return z.ChartXAxis}});var C=o(7250);Object.defineProperty(e,"ChartXAxisItem",{enumerable:!0,get:function(){return C.ChartXAxisItem}});var k=o(8791);Object.defineProperty(e,"ChartYAxis",{enumerable:!0,get:function(){return k.ChartYAxis}});var M=o(5876);Object.defineProperty(e,"ChartYAxisItem",{enumerable:!0,get:function(){return M.ChartYAxisItem}});var O=o(2797);Object.defineProperty(e,"ChartZoomable",{enumerable:!0,get:function(){return O.ChartZoomable}}),r(o(7725),e),r(o(666),e),r(o(7606),e),r(o(2675),e),r(o(8537),e),r(o(2476),e),r(o(8672),e),r(o(7148),e),r(o(8089),e),r(o(3567),e),r(o(8568),e)},5837:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxis=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"categoryAxis"}))};e.ChartNavigatorCategoryAxis=a,a.displayName="ChartNavigatorCategoryAxis"},6437:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorHint=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorHint=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"hint"}))}},123:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorPane=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"pane"}))};e.ChartNavigatorPane=a,a.displayName="ChartNavigatorPane"},8400:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSelect=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSelect=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"select"}))}},4495:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeries=void 0;var r=o(3899),i=o(1958),a=o(8876),s=o(9075),c=function(t){return r.createElement(i.CollectionConfigurationComponent,n({},t,{_chartKey:"series"}))};e.ChartNavigatorSeries=c,c.propTypes={children:function(t,e,o){return(0,s.validateChildren)(t,e,o,a.ChartNavigatorSeriesItem)}}},8876:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItem=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t))};e.ChartNavigatorSeriesItem=a,a.displayName="ChartNavigatorSeriesItem"},509:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisCrosshair=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorCategoryAxisCrosshair=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"crosshair"}))}},9180:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisCrosshairTooltip=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorCategoryAxisCrosshairTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))}},8602:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisLabels=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorCategoryAxisLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},3014:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotes=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorCategoryAxisNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},228:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorCategoryAxisNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},9398:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorCategoryAxisNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},1162:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartNavigatorCategoryAxisTitle=a,a.displayName="ChartNavigatorCategoryAxisTitle"},2071:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorCategoryAxisNotesLabel=e.ChartNavigatorCategoryAxisNotesIcon=e.ChartNavigatorCategoryAxisNotes=e.ChartNavigatorCategoryAxisLabels=e.ChartNavigatorCategoryAxisTitle=e.ChartNavigatorCategoryAxisCrosshairTooltip=e.ChartNavigatorCategoryAxisCrosshair=void 0;var n=o(509);Object.defineProperty(e,"ChartNavigatorCategoryAxisCrosshair",{enumerable:!0,get:function(){return n.ChartNavigatorCategoryAxisCrosshair}});var r=o(9180);Object.defineProperty(e,"ChartNavigatorCategoryAxisCrosshairTooltip",{enumerable:!0,get:function(){return r.ChartNavigatorCategoryAxisCrosshairTooltip}});var i=o(1162);Object.defineProperty(e,"ChartNavigatorCategoryAxisTitle",{enumerable:!0,get:function(){return i.ChartNavigatorCategoryAxisTitle}});var a=o(8602);Object.defineProperty(e,"ChartNavigatorCategoryAxisLabels",{enumerable:!0,get:function(){return a.ChartNavigatorCategoryAxisLabels}});var s=o(3014);Object.defineProperty(e,"ChartNavigatorCategoryAxisNotes",{enumerable:!0,get:function(){return s.ChartNavigatorCategoryAxisNotes}});var c=o(228);Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesIcon",{enumerable:!0,get:function(){return c.ChartNavigatorCategoryAxisNotesIcon}});var l=o(9398);Object.defineProperty(e,"ChartNavigatorCategoryAxisNotesLabel",{enumerable:!0,get:function(){return l.ChartNavigatorCategoryAxisNotesLabel}})},8568:function(t,e,o){var n=this&&this.__createBinding||(Object.create?function(t,e,o,n){void 0===n&&(n=o);var r=Object.getOwnPropertyDescriptor(e,o);r&&!("get"in r?!e.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,n,r)}:function(t,e,o,n){void 0===n&&(n=o),t[n]=e[o]}),r=this&&this.__exportStar||function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||n(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItem=e.ChartNavigatorSeries=e.ChartNavigatorSelect=e.ChartNavigatorPane=e.ChartNavigatorHint=e.ChartNavigatorCategoryAxis=void 0;var i=o(5837);Object.defineProperty(e,"ChartNavigatorCategoryAxis",{enumerable:!0,get:function(){return i.ChartNavigatorCategoryAxis}});var a=o(6437);Object.defineProperty(e,"ChartNavigatorHint",{enumerable:!0,get:function(){return a.ChartNavigatorHint}});var s=o(123);Object.defineProperty(e,"ChartNavigatorPane",{enumerable:!0,get:function(){return s.ChartNavigatorPane}});var c=o(8400);Object.defineProperty(e,"ChartNavigatorSelect",{enumerable:!0,get:function(){return c.ChartNavigatorSelect}});var l=o(4495);Object.defineProperty(e,"ChartNavigatorSeries",{enumerable:!0,get:function(){return l.ChartNavigatorSeries}});var h=o(8876);Object.defineProperty(e,"ChartNavigatorSeriesItem",{enumerable:!0,get:function(){return h.ChartNavigatorSeriesItem}}),r(o(2071),e),r(o(8163),e),r(o(9667),e)},5200:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorPaneTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartNavigatorPaneTitle=a,a.displayName="ChartNavigatorPaneTitle"},8163:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorPaneTitle=void 0;var n=o(5200);Object.defineProperty(e,"ChartNavigatorPaneTitle",{enumerable:!0,get:function(){return n.ChartNavigatorPaneTitle}})},5794:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesErrorBars=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesErrorBars=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"errorBars"}))}},1873:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesExtremes=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesExtremes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"extremes"}))}},2926:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesHighlight=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesHighlight=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"highlight"}))}},9444:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesLabels=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},5718:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesLabelsFrom=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesLabelsFrom=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"from"}))}},9975:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesLabelsTo=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesLabelsTo=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"to"}))}},7851:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesMarkers=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesMarkers=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"markers"}))}},4330:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotes=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},3835:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},1793:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},9908:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItemOutliers=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesItemOutliers=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"outliers"}))}},9098:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesItemTooltip=void 0;var r=o(3899),i=o(8096);e.ChartNavigatorSeriesItemTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"tooltip"}))}},9667:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartNavigatorSeriesNotesIcon=e.ChartNavigatorSeriesNotesLabel=e.ChartNavigatorSeriesLabelsTo=e.ChartNavigatorSeriesLabelsFrom=e.ChartNavigatorSeriesErrorBars=e.ChartNavigatorSeriesExtremes=e.ChartNavigatorSeriesHighlight=e.ChartNavigatorSeriesLabels=e.ChartNavigatorSeriesMarkers=e.ChartNavigatorSeriesNotes=e.ChartNavigatorSeriesItemOutliers=e.ChartNavigatorSeriesItemTooltip=void 0;var n=o(9098);Object.defineProperty(e,"ChartNavigatorSeriesItemTooltip",{enumerable:!0,get:function(){return n.ChartNavigatorSeriesItemTooltip}});var r=o(9908);Object.defineProperty(e,"ChartNavigatorSeriesItemOutliers",{enumerable:!0,get:function(){return r.ChartNavigatorSeriesItemOutliers}});var i=o(4330);Object.defineProperty(e,"ChartNavigatorSeriesNotes",{enumerable:!0,get:function(){return i.ChartNavigatorSeriesNotes}});var a=o(7851);Object.defineProperty(e,"ChartNavigatorSeriesMarkers",{enumerable:!0,get:function(){return a.ChartNavigatorSeriesMarkers}});var s=o(9444);Object.defineProperty(e,"ChartNavigatorSeriesLabels",{enumerable:!0,get:function(){return s.ChartNavigatorSeriesLabels}});var c=o(2926);Object.defineProperty(e,"ChartNavigatorSeriesHighlight",{enumerable:!0,get:function(){return c.ChartNavigatorSeriesHighlight}});var l=o(1873);Object.defineProperty(e,"ChartNavigatorSeriesExtremes",{enumerable:!0,get:function(){return l.ChartNavigatorSeriesExtremes}});var h=o(5794);Object.defineProperty(e,"ChartNavigatorSeriesErrorBars",{enumerable:!0,get:function(){return h.ChartNavigatorSeriesErrorBars}});var p=o(5718);Object.defineProperty(e,"ChartNavigatorSeriesLabelsFrom",{enumerable:!0,get:function(){return p.ChartNavigatorSeriesLabelsFrom}});var u=o(9975);Object.defineProperty(e,"ChartNavigatorSeriesLabelsTo",{enumerable:!0,get:function(){return u.ChartNavigatorSeriesLabelsTo}});var v=o(1793);Object.defineProperty(e,"ChartNavigatorSeriesNotesLabel",{enumerable:!0,get:function(){return v.ChartNavigatorSeriesNotesLabel}});var d=o(3835);Object.defineProperty(e,"ChartNavigatorSeriesNotesIcon",{enumerable:!0,get:function(){return d.ChartNavigatorSeriesNotesIcon}})},791:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneDefaultsTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartPaneDefaultsTitle=a,a.displayName="ChartPaneDefaultsTitle"},2675:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneDefaultsTitle=void 0;var n=o(791);Object.defineProperty(e,"ChartPaneDefaultsTitle",{enumerable:!0,get:function(){return n.ChartPaneDefaultsTitle}})},3575:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartPaneTitle=a,a.displayName="ChartPaneTitle"},7606:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartPaneTitle=void 0;var n=o(3575);Object.defineProperty(e,"ChartPaneTitle",{enumerable:!0,get:function(){return n.ChartPaneTitle}})},2106:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsLabels=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},999:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsLabelsFrom=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsLabelsFrom=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"from"}))}},7166:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsLabelsTo=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsLabelsTo=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"to"}))}},3633:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotes=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},325:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},644:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},9857:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsItemTooltip=void 0;var r=o(3899),i=o(8096);e.ChartSeriesDefaultsItemTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"tooltip"}))}},2476:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesDefaultsNotesLabel=e.ChartSeriesDefaultsNotesIcon=e.ChartSeriesDefaultsNotes=e.ChartSeriesDefaultsLabelsTo=e.ChartSeriesDefaultsLabelsFrom=e.ChartSeriesDefaultsLabels=e.ChartSeriesDefaultsItemTooltip=void 0;var n=o(9857);Object.defineProperty(e,"ChartSeriesDefaultsItemTooltip",{enumerable:!0,get:function(){return n.ChartSeriesDefaultsItemTooltip}});var r=o(2106);Object.defineProperty(e,"ChartSeriesDefaultsLabels",{enumerable:!0,get:function(){return r.ChartSeriesDefaultsLabels}});var i=o(999);Object.defineProperty(e,"ChartSeriesDefaultsLabelsFrom",{enumerable:!0,get:function(){return i.ChartSeriesDefaultsLabelsFrom}});var a=o(7166);Object.defineProperty(e,"ChartSeriesDefaultsLabelsTo",{enumerable:!0,get:function(){return a.ChartSeriesDefaultsLabelsTo}});var s=o(3633);Object.defineProperty(e,"ChartSeriesDefaultsNotes",{enumerable:!0,get:function(){return s.ChartSeriesDefaultsNotes}});var c=o(325);Object.defineProperty(e,"ChartSeriesDefaultsNotesIcon",{enumerable:!0,get:function(){return c.ChartSeriesDefaultsNotesIcon}});var l=o(644);Object.defineProperty(e,"ChartSeriesDefaultsNotesLabel",{enumerable:!0,get:function(){return l.ChartSeriesDefaultsNotesLabel}})},9948:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesErrorBars=void 0;var r=o(3899),i=o(8096);e.ChartSeriesErrorBars=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"errorBars"}))}},1326:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesExtremes=void 0;var r=o(3899),i=o(8096);e.ChartSeriesExtremes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"extremes"}))}},7287:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesHighlight=void 0;var r=o(3899),i=o(8096);e.ChartSeriesHighlight=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"highlight"}))}},8411:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesLabels=void 0;var r=o(3899),i=o(8096);e.ChartSeriesLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},5532:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesLabelsFrom=void 0;var r=o(3899),i=o(8096);e.ChartSeriesLabelsFrom=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"from"}))}},8437:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesLabelsTo=void 0;var r=o(3899),i=o(8096);e.ChartSeriesLabelsTo=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"to"}))}},5048:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesMarkers=void 0;var r=o(3899),i=o(8096);e.ChartSeriesMarkers=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"markers"}))}},8378:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotes=void 0;var r=o(3899),i=o(8096);e.ChartSeriesNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},4788:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartSeriesNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},3825:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartSeriesNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},4254:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesItemOutliers=void 0;var r=o(3899),i=o(8096);e.ChartSeriesItemOutliers=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"outliers"}))}},1229:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesItemTooltip=void 0;var r=o(3899),i=o(8096);e.ChartSeriesItemTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"tooltip"}))}},8672:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartSeriesNotesIcon=e.ChartSeriesNotesLabel=e.ChartSeriesLabelsTo=e.ChartSeriesLabelsFrom=e.ChartSeriesErrorBars=e.ChartSeriesExtremes=e.ChartSeriesHighlight=e.ChartSeriesLabels=e.ChartSeriesMarkers=e.ChartSeriesNotes=e.ChartSeriesItemOutliers=e.ChartSeriesItemTooltip=void 0;var n=o(1229);Object.defineProperty(e,"ChartSeriesItemTooltip",{enumerable:!0,get:function(){return n.ChartSeriesItemTooltip}});var r=o(4254);Object.defineProperty(e,"ChartSeriesItemOutliers",{enumerable:!0,get:function(){return r.ChartSeriesItemOutliers}});var i=o(8378);Object.defineProperty(e,"ChartSeriesNotes",{enumerable:!0,get:function(){return i.ChartSeriesNotes}});var a=o(5048);Object.defineProperty(e,"ChartSeriesMarkers",{enumerable:!0,get:function(){return a.ChartSeriesMarkers}});var s=o(8411);Object.defineProperty(e,"ChartSeriesLabels",{enumerable:!0,get:function(){return s.ChartSeriesLabels}});var c=o(7287);Object.defineProperty(e,"ChartSeriesHighlight",{enumerable:!0,get:function(){return c.ChartSeriesHighlight}});var l=o(1326);Object.defineProperty(e,"ChartSeriesExtremes",{enumerable:!0,get:function(){return l.ChartSeriesExtremes}});var h=o(9948);Object.defineProperty(e,"ChartSeriesErrorBars",{enumerable:!0,get:function(){return h.ChartSeriesErrorBars}});var p=o(5532);Object.defineProperty(e,"ChartSeriesLabelsFrom",{enumerable:!0,get:function(){return p.ChartSeriesLabelsFrom}});var u=o(8437);Object.defineProperty(e,"ChartSeriesLabelsTo",{enumerable:!0,get:function(){return u.ChartSeriesLabelsTo}});var v=o(3825);Object.defineProperty(e,"ChartSeriesNotesLabel",{enumerable:!0,get:function(){return v.ChartSeriesNotesLabel}});var d=o(4788);Object.defineProperty(e,"ChartSeriesNotesIcon",{enumerable:!0,get:function(){return d.ChartSeriesNotesIcon}})},6784:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisCrosshair=void 0;var r=o(3899),i=o(8096);e.ChartValueAxisCrosshair=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"crosshair"}))}},381:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisCrosshairTooltip=void 0;var r=o(3899),i=o(8096);e.ChartValueAxisCrosshairTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))}},3094:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisLabels=void 0;var r=o(3899),i=o(8096);e.ChartValueAxisLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},2588:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotes=void 0;var r=o(3899),i=o(8096);e.ChartValueAxisNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},5232:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartValueAxisNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},5655:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartValueAxisNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},2339:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartValueAxisTitle=a,a.displayName="ChartValueAxisTitle"},7148:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartValueAxisNotesLabel=e.ChartValueAxisNotesIcon=e.ChartValueAxisNotes=e.ChartValueAxisLabels=e.ChartValueAxisTitle=e.ChartValueAxisCrosshairTooltip=e.ChartValueAxisCrosshair=void 0;var n=o(6784);Object.defineProperty(e,"ChartValueAxisCrosshair",{enumerable:!0,get:function(){return n.ChartValueAxisCrosshair}});var r=o(381);Object.defineProperty(e,"ChartValueAxisCrosshairTooltip",{enumerable:!0,get:function(){return r.ChartValueAxisCrosshairTooltip}});var i=o(3094);Object.defineProperty(e,"ChartValueAxisLabels",{enumerable:!0,get:function(){return i.ChartValueAxisLabels}});var a=o(2588);Object.defineProperty(e,"ChartValueAxisNotes",{enumerable:!0,get:function(){return a.ChartValueAxisNotes}});var s=o(5232);Object.defineProperty(e,"ChartValueAxisNotesIcon",{enumerable:!0,get:function(){return s.ChartValueAxisNotesIcon}});var c=o(5655);Object.defineProperty(e,"ChartValueAxisNotesLabel",{enumerable:!0,get:function(){return c.ChartValueAxisNotesLabel}});var l=o(2339);Object.defineProperty(e,"ChartValueAxisTitle",{enumerable:!0,get:function(){return l.ChartValueAxisTitle}})},6595:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisCrosshair=void 0;var r=o(3899),i=o(8096);e.ChartXAxisCrosshair=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"crosshair"}))}},4211:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisCrosshairTooltip=void 0;var r=o(3899),i=o(8096);e.ChartXAxisCrosshairTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))}},1741:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisLabels=void 0;var r=o(3899),i=o(8096);e.ChartXAxisLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},190:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotes=void 0;var r=o(3899),i=o(8096);e.ChartXAxisNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},9431:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartXAxisNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},2141:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartXAxisNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},1705:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartXAxisTitle=a,a.displayName="ChartXAxisTitle"},8089:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartXAxisNotesLabel=e.ChartXAxisNotesIcon=e.ChartXAxisNotes=e.ChartXAxisLabels=e.ChartXAxisTitle=e.ChartXAxisCrosshairTooltip=e.ChartXAxisCrosshair=void 0;var n=o(6595);Object.defineProperty(e,"ChartXAxisCrosshair",{enumerable:!0,get:function(){return n.ChartXAxisCrosshair}});var r=o(4211);Object.defineProperty(e,"ChartXAxisCrosshairTooltip",{enumerable:!0,get:function(){return r.ChartXAxisCrosshairTooltip}});var i=o(1741);Object.defineProperty(e,"ChartXAxisLabels",{enumerable:!0,get:function(){return i.ChartXAxisLabels}});var a=o(190);Object.defineProperty(e,"ChartXAxisNotes",{enumerable:!0,get:function(){return a.ChartXAxisNotes}});var s=o(9431);Object.defineProperty(e,"ChartXAxisNotesIcon",{enumerable:!0,get:function(){return s.ChartXAxisNotesIcon}});var c=o(2141);Object.defineProperty(e,"ChartXAxisNotesLabel",{enumerable:!0,get:function(){return c.ChartXAxisNotesLabel}});var l=o(1705);Object.defineProperty(e,"ChartXAxisTitle",{enumerable:!0,get:function(){return l.ChartXAxisTitle}})},1238:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisCrosshair=void 0;var r=o(3899),i=o(8096);e.ChartYAxisCrosshair=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"crosshair"}))}},2834:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisCrosshairTooltip=void 0;var r=o(3899),i=o(8096);e.ChartYAxisCrosshairTooltip=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"tooltip"}))}},5404:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisLabels=void 0;var r=o(3899),i=o(8096);e.ChartYAxisLabels=function(t){return r.createElement(i.ConfigurationComponent,n({},n({visible:!0},t),{_chartKey:"labels"}))}},5566:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotes=void 0;var r=o(3899),i=o(8096);e.ChartYAxisNotes=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"notes"}))}},7477:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesIcon=void 0;var r=o(3899),i=o(8096);e.ChartYAxisNotesIcon=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"icon"}))}},777:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesLabel=void 0;var r=o(3899),i=o(8096);e.ChartYAxisNotesLabel=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"label"}))}},3312:function(t,e,o){var n=this&&this.__assign||function(){return n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},n.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisTitle=void 0;var r=o(3899),i=o(8096),a=function(t){return r.createElement(i.ConfigurationComponent,n({},t,{_chartKey:"title"}))};e.ChartYAxisTitle=a,a.displayName="ChartYAxisTitle"},3567:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChartYAxisNotesLabel=e.ChartYAxisNotesIcon=e.ChartYAxisNotes=e.ChartYAxisLabels=e.ChartYAxisTitle=e.ChartYAxisCrosshairTooltip=e.ChartYAxisCrosshair=void 0;var n=o(1238);Object.defineProperty(e,"ChartYAxisCrosshair",{enumerable:!0,get:function(){return n.ChartYAxisCrosshair}});var r=o(2834);Object.defineProperty(e,"ChartYAxisCrosshairTooltip",{enumerable:!0,get:function(){return r.ChartYAxisCrosshairTooltip}});var i=o(5404);Object.defineProperty(e,"ChartYAxisLabels",{enumerable:!0,get:function(){return i.ChartYAxisLabels}});var a=o(5566);Object.defineProperty(e,"ChartYAxisNotes",{enumerable:!0,get:function(){return a.ChartYAxisNotes}});var s=o(7477);Object.defineProperty(e,"ChartYAxisNotesIcon",{enumerable:!0,get:function(){return s.ChartYAxisNotesIcon}});var c=o(777);Object.defineProperty(e,"ChartYAxisNotesLabel",{enumerable:!0,get:function(){return c.ChartYAxisNotesLabel}});var l=o(3312);Object.defineProperty(e,"ChartYAxisTitle",{enumerable:!0,get:function(){return l.ChartYAxisTitle}})},6410:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0});var n=o(4899),r=n.DateCategoryAxis.prototype.options.labels.dateFormats,i=n.DateValueAxis.prototype.options.labels.dateFormats,a={milliseconds:"HH:mm:ss.SSS",seconds:{time:"medium"},minutes:{time:"short"},hours:{time:"short"},days:{skeleton:"Md"},weeks:{skeleton:"Md"},months:{skeleton:"yyMMM"},years:{skeleton:"y"}};Object.assign(r,a),Object.assign(i,a)},5161:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.AxisLabelClickEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axis=e.axis,n.dataItem=e.dataItem,n.index=e.index,n.text=e.text,n.value=e.value,n}return r(e,t),e}(o(8874).BaseEvent);e.AxisLabelClickEvent=i},8874:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BaseEvent=void 0;e.BaseEvent=function(t){this.target=t}},2368:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.create=void 0;var n=o(5161),r=o(3251),i=o(3803),a=o(881),s=o(3240),c=o(6099),l=o(8959),h=o(4846),p=o(8922),u=o(8888),v=o(8911),d=o(4761),f=o(4009),m=o(6765),y=o(2154),g=o(2499),b=o(3547),x=o(1604),w=o(5535),_=o(8526),z=o(2706),C=o(8476),k={axisLabelClick:n.AxisLabelClickEvent,drag:r.DragEvent,dragEnd:i.DragEndEvent,dragStart:a.DragStartEvent,drilldownEvent:s.DrilldownEvent,legendItemHover:c.LegendItemHoverEvent,legendItemClick:l.LegendItemClickEvent,legendItemLeave:h.LegendItemLeaveEvent,navigatorFilter:p.NavigatorFilterEvent,noteClick:u.NoteClickEvent,noteHover:v.NoteHoverEvent,plotAreaClick:d.PlotAreaClickEvent,plotAreaHover:f.PlotAreaHoverEvent,render:m.RenderEvent,select:y.SelectEvent,selectEnd:g.SelectEndEvent,selectStart:b.SelectStartEvent,seriesClick:x.SeriesClickEvent,seriesHover:w.SeriesHoverEvent,zoom:_.ZoomEvent,zoomEnd:z.ZoomEndEvent,zoomStart:C.ZoomStartEvent};e.create=function(t,e,o){if(k[t])return new k[t](e,o)}},290:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.toDomEvent=e.DomEvent=void 0;var o=function(t,e){this.sender=t,this.syntheticEvent=e};e.DomEvent=o,e.toDomEvent=function(t,e){return new o(t,e)}},3758:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DomEventsBuilder=void 0;var n=o(7042),r=function(){function t(){}return t.create=function(t,e){if("undefined"!=typeof window){var o=window.Hammer;if(!o)return;var r=new o(t,{recognizers:[[o.Tap],[o.Pan],[o.Pinch],[o.Press,{time:0}]]});return new n.DomEvents(r,e)}},t}();e.DomEventsBuilder=r},7042:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DomEvents=void 0;var o=function(t){return{x:{location:t.pageX},y:{location:t.pageY}}};function n(t,e){for(var o=0;o<t.length;o++)if(e[t[o]])return!0;return!1}var r=[{end:"panend",move:"panmove",start:"panstart"},{gesturechange:"pinchmove",gestureend:"pinchend",gesturestart:"pinchstart"},{press:"press"},{tap:"tap"}],i=function(){function t(t,e){this.hammerInstance=t,this.eventHandlers={},this.tap=this.tap.bind(this),this.press=this.press.bind(this),this.panstart=this.panstart.bind(this),this.panmove=this.panmove.bind(this),this.panend=this.panend.bind(this),this.pinchstart=this.pinchstart.bind(this),this.pinchmove=this.pinchmove.bind(this),this.pinchend=this.pinchend.bind(this),e&&this.bind(e)}return t.prototype.tap=function(t){this.trigger("tap",t)},t.prototype.press=function(t){this.trigger("press",t)},t.prototype.panstart=function(t){delete this.previous,this.previous=this.trigger("start",t)},t.prototype.panmove=function(t){this.previous=this.trigger("move",t)},t.prototype.panend=function(t){this.trigger("end",t),delete this.previous},t.prototype.pinchstart=function(t){this.trigger("gesturestart",t)},t.prototype.pinchmove=function(t){this.trigger("gesturechange",t)},t.prototype.pinchend=function(t){this.trigger("gestureend",t)},t.prototype.trigger=function(t,e){var n=function(t,e){var n=t.pointers,r=n[0],i=r.pageX,a=r.pageY,s=0;if(n.length>1){var c=n[0],l=n[1];s=Math.sqrt(Math.pow(c.pageX-l.pageX,2)+Math.pow(c.pageY-l.pageY,2))}return{distance:s,event:t.srcEvent,preventDefault:function(){t.preventDefault()},target:t.target,touches:n.map(o),type:t.type,x:{delta:e?i-e.x.location:0,initialDelta:t.deltaX,location:i,startLocation:i-t.deltaX},y:{delta:e?a-e.y.location:0,initialDelta:t.deltaY,location:a,startLocation:a-t.deltaY}}}(e,this.previous);return this.eventHandlers[t]&&this.eventHandlers[t](n),n},t.prototype.bind=function(t){void 0===t&&(t={}),this.unbind(),this.eventHandlers=t;for(var e=0;e<r.length;e++){var o=r[e],i=Object.keys(o);if(n(i,t))for(var a=0;a<i.length;a++){var s=o[i[a]];this.hammerInstance.on(s,this[s])}}},t.prototype.unbind=function(){this.hammerInstance&&this.hammerInstance.off(),this.eventHandlers={}},t.prototype.destroy=function(){this.hammerInstance&&(this.hammerInstance.destroy(),delete this.hammerInstance),delete this.eventHandlers},t.prototype.toggleDrag=function(t){this.toggle("pan",t)},t.prototype.toggleZoom=function(t){this.toggle("pinch",t)},t.prototype.toggle=function(t,e){this.hammerInstance&&this.hammerInstance.get(t).set({enable:e})},t}();e.DomEvents=i},3803:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DragEndEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axisRanges=e.axisRanges,n.nativeEvent=e.originalEvent,n}return r(e,t),e}(o(8874).BaseEvent);e.DragEndEvent=i},3251:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DragEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axisRanges=e.axisRanges,n.nativeEvent=e.originalEvent,n}return r(e,t),e}(o(8619).PreventableEvent);e.DragEvent=i},881:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DragStartEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axisRanges=e.axisRanges,n.nativeEvent=e.originalEvent,n}return r(e,t),e}(o(8619).PreventableEvent);e.DragStartEvent=i},3240:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.DrilldownEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.value=e.value,n.point=e.point,n.series=e.series,n.currentState=e.currentState,n.nextState=e.nextState,n}return r(e,t),e}(o(8874).BaseEvent);e.DrilldownEvent=i},8780:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DrilldownStateChangeEvent=void 0;e.DrilldownStateChangeEvent=function(t){this.currentState=t.currentState,this.nextState=t.nextState}},8959:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.LegendItemClickEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.series=e.series,n.seriesIndex=e.seriesIndex,n.pointIndex=e.pointIndex,n.text=e.text,n}return r(e,t),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this)},e}(o(8619).PreventableEvent);e.LegendItemClickEvent=i},6099:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.LegendItemHoverEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.series=e.series,n.seriesIndex=e.seriesIndex,n.pointIndex=e.pointIndex,n.text=e.text,n}return r(e,t),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this)},e}(o(8619).PreventableEvent);e.LegendItemHoverEvent=i},4846:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.LegendItemLeaveEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.series=e.series,n.seriesIndex=e.seriesIndex,n.pointIndex=e.pointIndex,n.text=e.text,n}return r(e,t),e.prototype.preventDefault=function(){t.prototype.preventDefault.call(this)},e}(o(8619).PreventableEvent);e.LegendItemLeaveEvent=i},8922:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.NavigatorFilterEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.from=e.from,n.to=e.to,n}return r(e,t),e}(o(8874).BaseEvent);e.NavigatorFilterEvent=i},8888:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.NoteClickEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.category=e.category,n.dataItem=e.dataItem,n.series=e.series,n.value=e.value,n.visual=e.visual,n}return r(e,t),e}(o(8874).BaseEvent);e.NoteClickEvent=i},8911:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.NoteHoverEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.category=e.category,n.dataItem=e.dataItem,n.series=e.series,n.value=e.value,n.visual=e.visual,n}return r(e,t),e}(o(8874).BaseEvent);e.NoteHoverEvent=i},4761:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.PlotAreaClickEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.category=e.category,n.nativeEvent=e.originalEvent,n.value=e.value,n.x=e.x,n.y=e.y,n}return r(e,t),e}(o(8874).BaseEvent);e.PlotAreaClickEvent=i},4009:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.PlotAreaHoverEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.category=e.category,n.nativeEvent=e.originalEvent,n.value=e.value,n.x=e.x,n.y=e.y,n}return r(e,t),e}(o(8874).BaseEvent);e.PlotAreaHoverEvent=i},8619:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.PreventableEvent=void 0;var i=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.prevented=!1,e}return r(e,t),e.prototype.preventDefault=function(){this.prevented=!0},e.prototype.isDefaultPrevented=function(){return this.prevented},e}(o(8874).BaseEvent);e.PreventableEvent=i},6765:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.RenderEvent=void 0;var i=function(t){function e(e,o){return t.call(this,o)||this}return r(e,t),e}(o(8874).BaseEvent);e.RenderEvent=i},2499:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SelectEndEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axis=e.axis,n.from=e.from,n.to=e.to,n}return r(e,t),e}(o(8874).BaseEvent);e.SelectEndEvent=i},2154:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SelectEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axis=e.axis,n.from=e.from,n.to=e.to,n}return r(e,t),e}(o(8619).PreventableEvent);e.SelectEvent=i},3547:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SelectStartEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axis=e.axis,n.from=e.from,n.to=e.to,n}return r(e,t),e}(o(8619).PreventableEvent);e.SelectStartEvent=i},1604:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SeriesClickEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.category=e.category,n.dataItem=e.dataItem,n.nativeEvent=e.originalEvent,n.percentage=e.percentage,n.point=e.point,n.series=e.series,n.stackValue=e.stackValue,n.value=e.value,n}return r(e,t),e}(o(8874).BaseEvent);e.SeriesClickEvent=i},5535:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.SeriesHoverEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.category=e.category,n.categoryPoints=e.categoryPoints,n.dataItem=e.dataItem,n.nativeEvent=e.originalEvent,n.percentage=e.percentage,n.point=e.point,n.series=e.series,n.stackValue=e.stackValue,n.value=e.value,n}return r(e,t),e}(o(8619).PreventableEvent);e.SeriesHoverEvent=i},2706:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomEndEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axisRanges=e.axisRanges,n.nativeEvent=e.originalEvent,n}return r(e,t),e}(o(8874).BaseEvent);e.ZoomEndEvent=i},8526:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axisRanges=e.axisRanges,n.delta=e.delta,n.nativeEvent=e.originalEvent,n}return r(e,t),e}(o(8619).PreventableEvent);e.ZoomEvent=i},8476:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.ZoomStartEvent=void 0;var i=function(t){function e(e,o){var n=t.call(this,o)||this;return n.axisRanges=e.axisRanges,n.nativeEvent=e.originalEvent,n}return r(e,t),e}(o(8619).PreventableEvent);e.ZoomStartEvent=i},3203:(t,e)=>{var o;Object.defineProperty(e,"__esModule",{value:!0}),e.WeekStartDay=void 0,(o=e.WeekStartDay||(e.WeekStartDay={}))[o.Sunday=0]="Sunday",o[o.Monday=1]="Monday",o[o.Tuesday=2]="Tuesday",o[o.Wednesday=3]="Wednesday",o[o.Thursday=4]="Thursday",o[o.Friday=5]="Friday",o[o.Saturday=6]="Saturday"},468:function(t,e,o){var n=this&&this.__createBinding||(Object.create?function(t,e,o,n){void 0===n&&(n=o);var r=Object.getOwnPropertyDescriptor(e,o);r&&!("get"in r?!e.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return e[o]}}),Object.defineProperty(t,n,r)}:function(t,e,o,n){void 0===n&&(n=o),t[n]=e[o]}),r=this&&this.__exportStar||function(t,e){for(var o in t)"default"===o||Object.prototype.hasOwnProperty.call(e,o)||n(e,t,o)};Object.defineProperty(e,"__esModule",{value:!0}),e.ChartBreadcrumb=e.CrosshairTooltipContainer=e.SharedTooltipContent=e.TooltipPopup=e.CrosshairTooltip=e.SeriesTooltip=e.TooltipPoint=e.DonutCenter=e.ConfigurationComponent=e.CollectionConfigurationComponent=e.StockChart=e.Sparkline=e.Chart=void 0;var i=o(8613);Object.defineProperty(e,"Chart",{enumerable:!0,get:function(){return i.Chart}});var a=o(2170);Object.defineProperty(e,"Sparkline",{enumerable:!0,get:function(){return a.Sparkline}});var s=o(5930);Object.defineProperty(e,"StockChart",{enumerable:!0,get:function(){return s.StockChart}});var c=o(1958);Object.defineProperty(e,"CollectionConfigurationComponent",{enumerable:!0,get:function(){return c.CollectionConfigurationComponent}});var l=o(8096);Object.defineProperty(e,"ConfigurationComponent",{enumerable:!0,get:function(){return l.ConfigurationComponent}});var h=o(5870);Object.defineProperty(e,"DonutCenter",{enumerable:!0,get:function(){return h.DonutCenter}});var p=o(9146);Object.defineProperty(e,"TooltipPoint",{enumerable:!0,get:function(){return p.TooltipPoint}});var u=o(2461);Object.defineProperty(e,"SeriesTooltip",{enumerable:!0,get:function(){return u.SeriesTooltip}});var v=o(8909);Object.defineProperty(e,"CrosshairTooltip",{enumerable:!0,get:function(){return v.CrosshairTooltip}});var d=o(2104);Object.defineProperty(e,"TooltipPopup",{enumerable:!0,get:function(){return d.TooltipPopup}});var f=o(8700);Object.defineProperty(e,"SharedTooltipContent",{enumerable:!0,get:function(){return f.SharedTooltipContent}});var m=o(9373);Object.defineProperty(e,"CrosshairTooltipContainer",{enumerable:!0,get:function(){return m.CrosshairTooltipContainer}});var y=o(3833);Object.defineProperty(e,"ChartBreadcrumb",{enumerable:!0,get:function(){return y.ChartBreadcrumb}}),r(o(6012),e),r(o(5388),e),r(o(1751),e),r(o(5487),e),r(o(6894),e),r(o(4449),e),r(o(8509),e)},8509:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.exportVisual=e.findPaneByName=e.findPaneByIndex=e.findAxisByName=void 0,e.findAxisByName=function(t,e){if(t&&null!==t.chartInstance)return t.chartInstance.findAxisByName(e)},e.findPaneByIndex=function(t,e){if(t&&null!==t.chartInstance)return t.chartInstance.findPaneByIndex(e)},e.findPaneByName=function(t,e){if(t&&null!==t.chartInstance)return t.chartInstance.findPaneByName(e)},e.exportVisual=function(t,e){if(void 0===e&&(e={}),t&&null!==t.chartInstance)return t.chartInstance.exportVisual(e)}},7363:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.packageMetadata=void 0,e.packageMetadata={name:"@progress/kendo-react-charts",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:1700063664,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"}},6600:function(t,e){var o=this&&this.__spreadArray||function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))};Object.defineProperty(e,"__esModule",{value:!0}),e.observersReducer=e.themeReducer=e.optionsReducer=void 0,e.optionsReducer=function(t,e){return e.chartCollectionIdxKey?n.collectionConfigurationItem(t,e):e.chartKey?n.configurationItem(t,e):{}},e.themeReducer=function(t,e){if(!e.type)return{};switch(e.type){case"set":return n.themeItem(t,e);case"push":return Object.assign(t,e.payload);default:return t}},e.observersReducer=function(t,e){if(!e.type)return[];switch(e.type){case"add":return o(o([],t,!0),[e.payload],!1);case"remove":return t.filter((function(t){return t!==e.payload}));default:return t}};var n={configurationItem:function(t,e){var o;return Object.assign(t,((o={})[e.chartKey]=e.payload,o))},collectionConfigurationItem:function(t,e){var o,n=!1,r=e.chartCollectionIdxKey.split("_"),i=r[0],a=r[1],s=t[i].map((function(t,o){return parseInt(a,10)===o?(n=!0,e.payload):t}));return!1===n&&s.splice(parseInt(a,10),0,e.payload),Object.assign(t,((o={})[i]=s,o))},themeItem:function(t,e){for(var o={},n=Object.assign(o,t),r=e.payload,i=r.field,a=r.value,s=i.split("."),c=s.shift();s.length>0;)o=o[c]=o[c]||{},c=s.shift();return o[c]=a,n}}},3113:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.THROTTLE_MS=void 0;var n=o(3814);e.THROTTLE_MS=1e3/60,e.default=function(t){var o,r,i=[],a=function(a){o=t(o,a),n.canUseDOM&&(window.clearTimeout(r),r=window.setTimeout((function(){return i.forEach((function(t){return t()}))}),e.THROTTLE_MS))};return a({}),{getState:function(){return o},dispatch:a,subscribe:function(t){return i.push(t),function(){return i=i.filter((function(e){return e!==t}))}}}}},8803:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.loadTheme=void 0;var n=o(4899),r=function(t){return"".concat(t.fontWeight," ").concat(t.fontSize," ").concat(t.fontFamily)},i=function(t){return window.getComputedStyle(t).backgroundColor},a='\n <div class="k-var--primary"></div>\n <div class="k-var--base"></div>\n <div class="k-var--background"></div>\n\n <div class="k-var--normal-background"></div>\n <div class="k-var--normal-text-color"></div>\n <div class="k-var--hover-background"></div>\n <div class="k-var--hover-text-color"></div>\n <div class="k-var--selected-background"></div>\n <div class="k-var--selected-text-color"></div>\n <div class="k-var--chart-error-bars-background"></div>\n <div class="k-var--chart-notes-background"></div>\n <div class="k-var--chart-notes-border"></div>\n <div class="k-var--chart-notes-lines"></div>\n <div class="k-var--chart-crosshair-background"></div>\n\n <div class="k-var--chart-inactive"></div>\n <div class="k-var--chart-major-lines"></div>\n <div class="k-var--chart-minor-lines"></div>\n <div class="k-var--chart-area-opacity"></div>\n <div class="k-var--chart-area-inactive-opacity"></div>\n <div class="k-var--chart-line-inactive-opacity"></div>\n\n <div class="k-widget k-chart">\n <div class="k-var--chart-font"></div>\n <div class="k-var--chart-title-font"></div>\n <div class="k-var--chart-pane-title-font"></div>\n <div class="k-var--chart-label-font"></div>\n </div>\n\n <div class="k-var--series-unset"></div>\n <div class="k-var--series">\n '.concat(function(){for(var t='\n <div class="k-var--series-a"></div>\n <div class="k-var--series-b"></div>\n <div class="k-var--series-c"></div>\n <div class="k-var--series-d"></div>\n <div class="k-var--series-e"></div>\n <div class="k-var--series-f"></div>\n',e=0;e<30;e++)t+='\n <div class="k-var--series-'.concat(e+1,'"></div>');return t}(),"\n </div>\n"),s=function(){function t(t){this.store=t}return t.prototype.setStyle=function(t,e){this.store.dispatch({type:"set",payload:{field:t,value:e}})},t.prototype.setColors=function(){this.mapColor("axisDefaults.crosshair.color","chart-crosshair-background"),this.mapColor("axisDefaults.labels.color","normal-text-color"),this.mapColor("axisDefaults.line.color","chart-major-lines"),this.mapColor("axisDefaults.majorGridLines.color","chart-major-lines"),this.mapColor("axisDefaults.minorGridLines.color","chart-minor-lines"),this.mapColor("axisDefaults.notes.icon.background","chart-notes-background"),this.mapColor("axisDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("axisDefaults.notes.line.color","chart-notes-lines"),this.mapColor("axisDefaults.title.color","normal-text-color"),this.mapColor("chartArea.background","background"),this.mapColor("legend.inactiveItems.labels.color","chart-inactive"),this.mapColor("legend.inactiveItems.markers.color","chart-inactive"),this.mapColor("legend.labels.color","normal-text-color"),this.mapColor("seriesDefaults.boxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.boxPlot.mean.color","base"),this.mapColor("seriesDefaults.boxPlot.median.color","base"),this.mapColor("seriesDefaults.boxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.bullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.candlestick.downColor","normal-text-color"),this.mapColor("seriesDefaults.candlestick.line.color","normal-text-color"),this.mapColor("seriesDefaults.errorBars.color","chart-error-bars-background"),this.mapColor("seriesDefaults.horizontalWaterfall.line.color","chart-major-lines"),this.mapColor("seriesDefaults.icon.border.color","chart-major-lines"),this.mapColor("seriesDefaults.labels.background","background"),this.mapColor("seriesDefaults.labels.color","normal-text-color"),this.mapColor("seriesDefaults.notes.icon.background","chart-notes-background"),this.mapColor("seriesDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("seriesDefaults.notes.line.color","chart-notes-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.mean.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.median.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.verticalBullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.waterfall.line.color","chart-major-lines"),this.mapColor("title.color","normal-text-color"),this.mapColor("subtitle.color","normal-text-color");var t=parseFloat(this.queryStyle("chart-area-opacity").opacity);isNaN(t)||(this.setStyle("seriesDefaults.area.opacity",t),this.setStyle("seriesDefaults.radarArea.opacity",t),this.setStyle("seriesDefaults.verticalArea.opacity",t),this.setStyle("seriesDefaults.labels.opacity",t)),this.setInactiveOpacity(["area","verticalArea"],"chart-area-inactive-opacity"),this.setInactiveOpacity(["line","verticalLine"],"chart-line-inactive-opacity")},t.prototype.setFonts=function(){var t=r(this.queryStyle("chart-font")),e=r(this.queryStyle("chart-title-font")),o=r(this.queryStyle("chart-pane-title-font")),n=r(this.queryStyle("chart-label-font"));this.setStyle("axisDefaults.labels.font",n),this.setStyle("axisDefaults.notes.label.font",t),this.setStyle("axisDefaults.title.font",t),this.setStyle("legend.labels.font",t),this.setStyle("seriesDefaults.labels.font",n),this.setStyle("seriesDefaults.notes.label.font",t),this.setStyle("title.font",e),this.setStyle("subtitle.font",o),this.setStyle("paneDefaults.title.font",o)},t.prototype.setSeriesColors=function(){var t=this.element,e=[].slice.call(t.querySelectorAll(".k-var--series div")),o=i(t.querySelector(".k-var--series-unset")),n=e.reduce((function(t,e){var n=function(t){var e=t.match(/series-([a-z])$/);if(null!==e)return e[1].toLowerCase().charCodeAt(0)-"a".charCodeAt(0);var o=t.split("--series-")[1];return parseInt(o,10)-1}(e.className),r=i(e);return r!==o&&(t[n]=r),t}),[]);this.setStyle("seriesColors",n)},t.prototype.mapColor=function(t,e){this.setStyle(t,this.queryStyle(e).backgroundColor)},t.prototype.queryStyle=function(t){var e=this.element;return window.getComputedStyle(e.querySelector(".k-var--".concat(t)))},t.prototype.setInactiveOpacity=function(t,e){var o=this,n=parseFloat(this.queryStyle(e).opacity);!isNaN(n)&&n<1&&t.forEach((function(t){return o.setStyle("seriesDefaults.".concat(t,".highlight.inactiveOpacity"),n)}))},t}();e.loadTheme=function(t,e,o){var r=new s(t);if(void 0!==o){var i=r.element=o.createElement("div");i.style.display="none",i.innerHTML=a,o.body.appendChild(i);try{t.dispatch({type:"push",payload:(0,n.chartBaseTheme)()}),r.setColors(),r.setFonts(),r.setSeriesColors()}finally{o.body.removeChild(r.element),delete r.element,e()}}else t.dispatch({type:"push",payload:(0,n.chartBaseTheme)()})}},8909:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o};Object.defineProperty(e,"__esModule",{value:!0}),e.CrosshairTooltip=void 0;var s=o(3899),c=o(3814),l=o(4899),h=o(2104),p=o(5201),u=function(t){function e(e,o){var n=t.call(this,e,o)||this;return n.context=null,n.state={popupShown:!1},n.chartObserver=new l.InstanceObserver(n,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),o.observersStore.dispatch({type:"add",payload:n.chartObserver}),n}return r(e,t),e.prototype.render=function(){var t,e=this.state,o=e.popupContend,n=e.className,r=a(e,["popupContend","className"]),l=this.state.popupShown?function(){return o}:Function.prototype,p=(0,c.classNames)(((t={})["k-chart-crosshair-tooltip"]=!0,t["k-chart-tooltip-inverse"]=!!n,t));return s.createElement(h.TooltipPopup,i({},r,{popupContent:l,className:p}))},e.prototype.componentWillUnmount=function(){var t;null===(t=this.context)||void 0===t||t.observersStore.dispatch({type:"remove",payload:this.chartObserver})},e.prototype.onShowTooltip=function(t){var e=t.anchor,o=t.style,n=t.className,r=t.crosshair,i=t.axisName,a=t.axisIndex,s=t.value,c=this.props,l=c.name,h=c.index;r&&i===l&&a===h&&this.setState({popupShown:!0,popupAlign:e.align,popupOffset:e.point,popupContend:s,popupStyles:o,className:n})},e.prototype.onHideTooltip=function(){this.setState({popupShown:!1,popupStyles:{},className:void 0})},e.contextType=p.ChartContext,e}(s.Component);e.CrosshairTooltip=u},9373:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.CrosshairTooltipContainer=void 0;var a=o(3899),s=o(4890),c=o(8909),l=o(5201),h=["categoryAxis","valueAxis","xAxis","yAxis"];function p(t){for(var e={},o=0;o<h.length;o++)for(var n=u(t,h[o]),r=0;r<n.length;r++){var i=n[r];e[i.name+i.index]=i}return e}function u(t,e){var o=[];if(t[e])for(var n=[].concat(t[e]),r=0;r<n.length;r++){var i=(n[r].crosshair||{}).tooltip;i&&i.visible&&o.push({index:r,name:e})}return o}var v=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.context=null,e.state={tooltips:{}},e.storeUnsubscriber=Function.prototype,e.subscriber=function(){var t;e.setState({tooltips:p(null===(t=e.context)||void 0===t?void 0:t.optionsStore.getState())})},e}return r(e,t),e.prototype.componentDidMount=function(){this.storeUnsubscriber=this.context.optionsStore.subscribe(this.subscriber)},e.prototype.render=function(){var t=this.state.tooltips,e=Object.keys(t).map((function(e){return a.createElement(c.CrosshairTooltip,i({},t[e],{key:e}))}));return a.createElement(s.Container,null,e)},e.prototype.componentWillUnmount=function(){this.storeUnsubscriber()},e.contextType=l.ChartContext,e}(a.Component);e.CrosshairTooltipContainer=v},9146:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipPoint=void 0;var o=function(){function t(t,e){this.value=t.value,this.category=t.category,this.categoryIndex=t.categoryIx,this.series=t.series,this.dataItem=t.dataItem,this.percentage=t.percentage,this.runningTotal=t.runningTotal,this.total=t.total,this.low=t.low,this.high=t.high,this.xLow=t.xLow,this.xHigh=t.xHigh,this.yLow=t.yLow,this.yHigh=t.yHigh,this.point=t,this.format=((t.options||{}).tooltip||{}).format||e}return Object.defineProperty(t.prototype,"formattedValue",{get:function(){return this.format?this.point.formatValue(this.format):String(this.value)},enumerable:!1,configurable:!0}),t}();e.TooltipPoint=o},2104:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipPopup=void 0;var i=o(3899),a=o(4899),s=o(290),c=o(9075),l=o(5362),h=o(5201),p={horizontal:"fit",vertical:"fit"},u="k-chart-tooltip",v=function(t){function e(e,o){var n=t.call(this,e,o)||this;return n.context=null,n.element=null,n.onChartMouseLeave=function(t){var e=t.syntheticEvent;return!!(0,c.hasParent)(e.relatedTarget,n.element)},n.onMouseLeave=function(t){var e=(0,s.toDomEvent)(n,t);n.context.childrenObserver.trigger("onMouseLeave",e)&&t.preventDefault()},n.popupRef=function(t){n.element=t;var e=t&&t.closest(".k-animation-container");e&&(e.style.transition="initial")},n.chartObserver=new a.InstanceObserver(n,{onMouseLeave:"onChartMouseLeave"}),o.observersStore.dispatch({type:"add",payload:n.chartObserver}),n}return r(e,t),e.prototype.render=function(){var t=this.props,e=t.popupShown,o=t.popupAlign,n=t.popupOffset,r=t.popupStyles,a=t.popupContent,s=t.className,c=[u,s].join(" ").trim();return i.createElement(l.Popup,{animate:!1,popupAlign:o,offset:n,show:e,collision:p,className:"k-chart-tooltip-wrapper"},i.createElement("div",{className:c,style:r,onMouseLeave:this.onMouseLeave,ref:this.popupRef},a()))},e.prototype.componentWillUnmount=function(){this.context.observersStore.dispatch({type:"remove",payload:this.chartObserver})},e.contextType=h.ChartContext,e}(i.Component);e.TooltipPopup=v},2461:function(t,e,o){var n,r=this&&this.__extends||(n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=this&&this.__rest||function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o};Object.defineProperty(e,"__esModule",{value:!0}),e.SeriesTooltip=void 0;var s=o(3899),c=o(3814),l=o(4899),h=o(9146),p=o(8700),u=o(2104),v=o(5201),d=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.context=null,e.state={popupShown:!1},e.chartObserver=null,e}return r(e,t),e.prototype.componentDidMount=function(){this.chartObserver=new l.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),this.context.observersStore.dispatch({type:"add",payload:this.chartObserver})},e.prototype.render=function(){var t,e=this,o=this.state,n=o.popupContext,r=o.shared,l=o.className,h=a(o,["popupContext","shared","className"]),v=this.state.popupShown?function(){var t=e.findRenderFunction();if(r)return null!==t?t(n):s.createElement(p.SharedTooltipContent,i({},n));var o=n.point,a=e.findRenderFunctionByIndex(o.series.index);return null!==a?a(n):null!==t?t(n):s.createElement("span",{dangerouslySetInnerHTML:{__html:n.point.formattedValue}})}:Function.prototype,d=(0,c.classNames)(((t={})["k-chart-shared-tooltip"]=r,t["k-chart-tooltip-inverse"]=!!l,t));return s.createElement(u.TooltipPopup,i({},h,{popupContent:v,className:d}))},e.prototype.componentWillUnmount=function(){this.context.observersStore.dispatch({type:"remove",payload:this.chartObserver})},e.prototype.onShowTooltip=function(t){var e,o=t.anchor,n=t.style,r=t.shared,i=t.className;t.crosshair||(e=r?this.createSharedTooltipContext(t):this.createTooltipContext(t),this.setState({popupShown:!0,popupAlign:o.align,popupOffset:o.point,popupContext:e,popupStyles:n,className:i,shared:r}))},e.prototype.onHideTooltip=function(){this.setState({popupShown:!1,popupStyles:{},className:void 0})},e.prototype.createSharedTooltipContext=function(t){var e=t.points,o=t.categoryText,n=e.filter((function(t){return void 0!==t.series.name})).length>0,r=t.series.length>1,i=1;return n&&i++,r&&i++,{categoryText:o,colorMarker:r,colspan:i,nameColumn:n,points:t.points.map((function(e){return new h.TooltipPoint(e,t.format)}))}},e.prototype.createTooltipContext=function(t){var e=t.point,o=t.format;return{point:new h.TooltipPoint(e,o)}},e.prototype.findRenderFunctionByIndex=function(t){var e=this.context.optionsStore.getState().series;return void 0!==e&&Array.isArray(e)&&void 0!==e[t]&&e[t].hasOwnProperty("tooltip")&&e[t].tooltip.hasOwnProperty("render")?e[t].tooltip.render:null},e.prototype.findRenderFunction=function(){var t=this.context.optionsStore.getState().tooltip;return void 0!==t&&t.hasOwnProperty("render")?t.render:null},e.contextType=v.ChartContext,e}(s.Component);e.SeriesTooltip=d},8700:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SharedTooltipContent=void 0;var n=o(3899);e.SharedTooltipContent=function(t){var e=t.categoryText,o=t.colorMarker,r=t.colspan,i=t.nameColumn,a=t.points;return n.createElement("table",null,n.createElement("thead",null,n.createElement("tr",null,n.createElement("th",{colSpan:r},e))),n.createElement("tbody",null,a.map((function(t,e){return n.createElement("tr",{key:e},o&&n.createElement("td",null,n.createElement("span",{className:"k-chart-shared-tooltip-marker",style:{backgroundColor:t.series.color}})),i&&n.createElement("td",null,t.series.name),n.createElement("td",{dangerouslySetInnerHTML:{__html:t.formattedValue}}))}))))}},6012:(t,e,o)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TooltipPoint=void 0;var n=o(9146);Object.defineProperty(e,"TooltipPoint",{enumerable:!0,get:function(){return n.TooltipPoint}})},9075:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.toggle=e.validateChildren=e.hasParent=void 0,e.hasParent=function(t,e){for(var o=t;o&&o!==e;)o=o.parentNode;return!!o},e.validateChildren=function(t,e,o,n){var r=t[e];if(r&&Array.isArray(r))for(var i=0,a=r;i<a.length;i++){var s=a[i];if(!s.type||s.type!==n)return new Error("".concat(o," children should be Array of type ").concat(n.displayName,"."))}return null},e.toggle=function(t){return void 0!==t&&!t}},4899:(t,e,o)=>{o.r(e),o.d(e,{Aggregates:()=>Dn,ArcGauge:()=>eu,ArcScale:()=>Yp,AreaChart:()=>pa,AreaSegment:()=>ia,ArrowLinearPointer:()=>xp,Axis:()=>po,AxisGroupRangeTracker:()=>va,AxisLabel:()=>Ge,Bar:()=>ya,BarChart:()=>ka,BarLabel:()=>fa,BarLinearPointer:()=>Mp,Barcode:()=>Gu,Box:()=>ve,BoxElement:()=>Ce,BoxPlot:()=>Ia,BoxPlotChart:()=>Ta,BubbleChart:()=>Ua,Bullet:()=>Xa,BulletChart:()=>Ya,Candlestick:()=>Oa,CandlestickChart:()=>Ha,CategoricalChart:()=>Bi,CategoricalErrorBar:()=>fi,CategoricalPlotArea:()=>tc,CategoryAxis:()=>Xo,Chart:()=>fh,ChartAxis:()=>Vn,ChartContainer:()=>ns,ChartElement:()=>_e,ChartPane:()=>Bn,ChartPlotArea:()=>jn,ChartService:()=>ro,CircularGauge:()=>nu,Class:()=>j.Class,ClipAnimation:()=>ta,ClusterLayout:()=>wa,Crosshair:()=>es,CrosshairTooltip:()=>$a,CurveProcessor:()=>In,DateCategoryAxis:()=>on,DateValueAxis:()=>un,DefaultAggregates:()=>gs,DomEventsBuilder:()=>so,DonutChart:()=>ol,DonutPlotArea:()=>rl,DonutSegment:()=>tl,ErrorBarBase:()=>vi,ErrorRangeCalculator:()=>Xn,Extent:()=>df,FloatElement:()=>Ve,FontLoader:()=>Lt,FormatService:()=>eo,Gauge:()=>np,Gradients:()=>Se,HashMap:()=>ht,Highlight:()=>nc,InstanceObserver:()=>ft,IntlService:()=>Qe,Legend:()=>bc,LegendItem:()=>fc,LegendLayout:()=>vc,LineChart:()=>na,LinePoint:()=>Ni,LineSegment:()=>Ui,LinearGauge:()=>Hp,LinearPointer:()=>dp,LinearScale:()=>hp,Location:()=>ud,LogarithmicAxis:()=>yn,Map:()=>Um,MousewheelZoom:()=>pc,Navigator:()=>Eh,NavigatorHint:()=>Sh,Note:()=>Xe,NumericAxis:()=>hn,OHLCChart:()=>Rs,OHLCPoint:()=>js,Pane:()=>as,Pannable:()=>sc,PieAnimation:()=>Ec,PieChart:()=>qc,PieChartMixin:()=>Xc,PiePlotArea:()=>Jc,PieSegment:()=>Kc,PlotAreaBase:()=>us,PlotAreaEventsMixin:()=>ds,PlotAreaFactory:()=>wc,Point:()=>he,PointEventsMixin:()=>Li,PolarAxis:()=>_n,QRCode:()=>ed,RadarCategoryAxis:()=>xn,RadarLogarithmicAxis:()=>Hn,RadarNumericAxis:()=>On,RadialGauge:()=>Xp,RadialPointer:()=>Wp,RadialScale:()=>jp,RangeAreaChart:()=>Ts,RangeAreaPoint:()=>Os,RangeBar:()=>xs,RangeBarChart:()=>_s,RangePointer:()=>$p,Ring:()=>me,RootElement:()=>Ie,ScatterChart:()=>Ra,ScatterErrorBar:()=>ja,ScatterLineChart:()=>Bc,Sector:()=>ge,Selection:()=>kc,SeriesAggregator:()=>ms,SeriesBinder:()=>Un,ShapeBuilder:()=>xe,ShapeElement:()=>Me,SharedTooltip:()=>Hc,Sparkline:()=>zh,SplineAreaSegment:()=>la,SplineSegment:()=>qi,StackWrap:()=>za,StockChart:()=>Bh,TemplateService:()=>ot,Text:()=>Be,TextBox:()=>De,Title:()=>Ue,Tooltip:()=>Oc,WaterfallChart:()=>Us,WaterfallSegment:()=>Ns,XYPlotArea:()=>Fc,ZoomSelection:()=>lc,addClass:()=>E,alignPathToPixel:()=>L,anyHasZIndex:()=>mi,append:()=>wt,appendIfNotNull:()=>yi,areNumbers:()=>gi,autoMajorUnit:()=>le,autoTextColor:()=>$t,barcodeValidator:()=>Xu,bindEvents:()=>_t,bindSegments:()=>xi,categoriesCount:()=>wi,chartBaseTheme:()=>iy,clockwise:()=>R,constants:()=>n,convertableToNumber:()=>F,countNumbers:()=>Ln,createHashSet:()=>ae,createOutOfRangePoints:()=>Ei,deepExtend:()=>X,defaultErrorHandler:()=>se,defined:()=>zt,deg:()=>Ct,elementOffset:()=>kt,elementScale:()=>Jt,elementSize:()=>Mt,elementStyles:()=>J,equalsIgnoreCase:()=>_i,evalOptions:()=>Ci,eventCoordinates:()=>Ot,eventElement:()=>St,filterSeriesByType:()=>ki,find:()=>Zt,findAxisByName:()=>En,getDateField:()=>Mi,getField:()=>Nn,getSpacing:()=>$,getTemplate:()=>nt,getter:()=>at,grep:()=>st,hasClasses:()=>ct,hasGradientOverlay:()=>Oi,hasValue:()=>Si,hashKey:()=>Ht,inArray:()=>pt,interpolateValue:()=>ut,isArray:()=>V,isDateAxis:()=>Hi,isFunction:()=>U,isNumber:()=>D,isObject:()=>Z,isPlainObject:()=>mt,isString:()=>N,keys:()=>ce,last:()=>Pt,limitValue:()=>It,logToConsole:()=>j.logToConsole,map:()=>yt,mousewheelDelta:()=>bt,objectKey:()=>At,qrcodeValidator:()=>od,rad:()=>Vt,rectToBox:()=>je,removeClass:()=>B,renderIcon:()=>Kt,round:()=>Et,segmentVisible:()=>bi,setDefaultOptions:()=>Rt,singleItemOrArray:()=>Pi,sparseArrayLimits:()=>Xt,styleValue:()=>Y,unbindEvents:()=>Tt,valueOrDefault:()=>Bt});var n={};o.r(n),o.d(n,{DEFAULT_PANE:()=>Ih,NAVIGATOR_AXIS:()=>Ph,NAVIGATOR_PANE:()=>Hh});var r="arc",i="#000",a="bottom",s="center",c="circle",l=3,h="cross",p="date",u="12px sans-serif",v=10,d=/\{\d+:?/,f="height",m="inside",y="inherit",g="left",b=Number.MAX_VALUE,x=-Number.MAX_VALUE,w="none",_="object",z="outside",C="right",k="roundedRect",M="string",O="top",S="value",H="#fff",P="width",I="x",A="y";function V(t){return Array.isArray(t)}function E(t,e){for(var o=V(e)?e:[e],n=0;n<o.length;n++){var r=o[n];-1===t.className.indexOf(r)&&(t.className+=" "+r)}}var T=/\s+/g;function B(t,e){t&&t.className&&(t.className=t.className.replace(e,"").replace(T," "))}var j=o(4407);function L(t){var e=.5;t.options.stroke&&j.drawing.util.defined(t.options.stroke.width)&&t.options.stroke.width%2==0&&(e=0);for(var o=0;o<t.segments.length;o++)t.segments[o].anchor().round(0).translate(e,e);return t}function R(t,e){return-t.x*e.y+t.y*e.x<0}function D(t){return"number"==typeof t&&!isNaN(t)}function N(t){return typeof t===M}function F(t){return D(t)||N(t)&&isFinite(t)}function U(t){return"function"==typeof t}var W="object",G="undefined";function K(t,e){for(var o in e){var n,r=e[o],i=typeof r;if((n=i===W&&null!==r?r.constructor:null)&&n!==Array)if(r instanceof Date)t[o]=new Date(r.getTime());else if(U(r.clone))t[o]=r.clone();else{var a=t[o];t[o]=typeof a===W&&a||{},K(t[o],r)}else i!==G&&(t[o]=r)}return t}function X(t){for(var e=arguments,o=arguments.length,n=1;n<o;n++)K(t,e[n]);return t}function Z(t){return"object"==typeof t}function Y(t){return D(t)?t+"px":t}var q=/width|height|top|left|bottom|right/i;function Q(t){return q.test(t)}function J(t,e){var o=N(e)?[e]:e;if(V(o)){for(var n={},r=window.getComputedStyle(t),i=0;i<o.length;i++){var a=o[i];n[a]=Q(a)?parseFloat(r[a]):r[a]}return n}if(Z(e))for(var s in e)t.style[s]=Y(e[s])}function $(t,e){void 0===e&&(e=0);var o={top:0,right:0,bottom:0,left:0};return"number"==typeof t?o[O]=o[C]=o[a]=o[g]=t:(o[O]=t[O]||e,o[C]=t[C]||e,o[a]=t[a]||e,o[g]=t[g]||e),o}var tt={compile:function(t){return t}},et=function(){};et.register=function(t){tt=t},et.compile=function(t,e){return tt.compile(t,e)};const ot=et;function nt(t){var e;return void 0===t&&(t={}),t.template?t.template=e=ot.compile(t.template):U(t.content)&&(e=t.content),e}var rt=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g,it={};function at(t){if(it[t])return it[t];var e=[];return t.replace(rt,(function(t,o,n,r){e.push(j.drawing.util.defined(o)?o:n||r)})),it[t]=function(t){for(var o=t,n=0;n<e.length&&o;n++)o=o[e[n]];return o},it[t]}function st(t,e){for(var o=t.length,n=[],r=0;r<o;r++)e(t[r])&&n.push(t[r]);return n}function ct(t,e){if(t.className)for(var o=e.split(" "),n=0;n<o.length;n++)if(t.className.indexOf&&-1!==t.className.indexOf(o[n]))return!0}it[void 0]=function(t){return t};var lt=function(){this._map=new Map};lt.prototype.get=function(t){return this._map.get(t)},lt.prototype.set=function(t,e){this._map.set(t,e)};const ht=lt;function pt(t,e){if(e)return-1!==e.indexOf(t)}function ut(t,e,o){return j.drawing.util.round(t+(e-t)*o,l)}var vt="trigger",dt=function(t,e){this.observer=t,this.handlerMap=X({},this.handlerMap,e)};dt.prototype.trigger=function(t,e){var o,n=this.observer,r=this.handlerMap;return r[t]?o=this.callObserver(r[t],e):n[vt]&&(o=this.callObserver(vt,t,e)),o},dt.prototype.callObserver=function(t){for(var e=[],o=arguments.length-1;o-- >0;)e[o]=arguments[o+1];return this.observer[t].apply(this.observer,e)},dt.prototype.requiresHandlers=function(t){if(this.observer.requiresHandlers)return this.observer.requiresHandlers(t);for(var e=0;e<t.length;e++)if(this.handlerMap[t[e]])return!0};const ft=dt;function mt(t){return"[object Object]"===Object.prototype.toString.call(t)}function yt(t,e){for(var o=t.length,n=[],r=0;r<o;r++){var i=e(t[r]);j.drawing.util.defined(i)&&n.push(i)}return n}var gt=j.support.browser||{};function bt(t){var e=0;return t.wheelDelta?(e=-t.wheelDelta/120,gt.webkit&&(e/=2*Math.max(window.devicePixelRatio,.625))):t.detail&&(e=t.detail/3),e>0?Math.ceil(e):Math.floor(e)}var xt=j.drawing.util,wt=xt.append,_t=xt.bindEvents,zt=xt.defined,Ct=xt.deg,kt=xt.elementOffset,Mt=xt.elementSize,Ot=xt.eventCoordinates,St=xt.eventElement,Ht=xt.hashKey,Pt=xt.last,It=xt.limitValue,At=xt.objectKey,Vt=xt.rad,Et=xt.round,Tt=xt.unbindEvents,Bt=xt.valueOrDefault,jt=function(){};jt.fetchFonts=function(t,e,o){void 0===o&&(o={depth:0}),!t||o.depth>5||!document.fonts||Object.keys(t).forEach((function(n){var r=t[n];"dataSource"!==n&&"$"!==n[0]&&r&&("font"===n?e.push(r):"object"==typeof r&&(o.depth++,jt.fetchFonts(r,e,o),o.depth--))}))},jt.loadFonts=function(t,e){var o=[];if(t.length>0&&document.fonts){try{o=t.map((function(t){return document.fonts.load(t)}))}catch(t){(0,j.logToConsole)(t)}Promise.all(o).then(e,e)}else e()},jt.preloadFonts=function(t,e){var o=[];jt.fetchFonts(t,o),jt.loadFonts(o,e)};const Lt=jt;function Rt(t,e){var o=t.prototype;o.options?o.options=X({},o.options,e):o.options=e}var Dt="k-i-",Nt="k-svg-i-",Ft=function(t,e){this.element=t,this.options=X({},this.options,e),this.wrapper()};Ft.prototype.wrapper=function(){this.addClasses()},Ft.prototype.addClasses=function(){},Ft.prototype.html=function(){return this.element.outerHTML},Rt(Ft,{name:"",size:"none",themeColor:"none",flip:"default",iconClass:"",stylingOptions:["size","themeColor","fill"]});var Ut=function(t){function e(e,o){t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.wrapper=function(){var e=this.element.className.split(" ").find((function(t){return t.startsWith(Dt)})),o=this.options.icon?""+(this.options.icon.startsWith(Dt)?"":Dt)+this.options.icon:"";this._className=o,E(this.element,"k-icon"),B(this.element,e),E(this.element,o),E(this.element,this.options.iconClass||""),t.prototype.wrapper.call(this)},e}(Ft);Rt(Ut,{name:"HTMLFontIcon",icon:null});var Wt=function(t){function e(e,o){e.innerHTML="",t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.wrapper=function(){var e=this.options.icon,o=this.options.iconClass,n=this.element.className.split(" ").find((function(t){return t.startsWith(Nt)}));if(!e&&o){var r=o.match(/k-i-(\w+(?:-\w+)*)/);r&&(e=r[1],o=o.replace(r[0],""))}N(e)&&(e=e.replace("k-i-","").replace(/-./g,(function(t){return t[1].toUpperCase()})),e=this.options.svgIcons[e]||this.options.svgIcons[e+"Icon"]);var i=e&&e.name?""+Nt+e.name:"";if(this._className=i,E(this.element,"k-svg-icon"),B(this.element,n),E(this.element,i),E(this.element,o||""),this.element.setAttribute("aria-hidden","true"),e&&mt(e)){var a=document.createElementNS("http://www.w3.org/2000/svg","svg");a.setAttribute("viewBox",e.viewBox||""),a.setAttribute("focusable","false"),a.innerHTML=e.content||"",this.element.appendChild(a)}t.prototype.wrapper.call(this)},e}(Ft);Rt(Wt,{name:"HTMLSvgIcon",icon:null,svgIcons:{}});var Gt={svg:Wt,font:Ut};function Kt(t,e){var o=t,n=e;return o&&(!Z(o)||o instanceof HTMLElement)&&!N(o)||(n=o,o=document.createElement("span")),N(n)&&(n={icon:n}),n.type||(n.type="svg"),Gt[n.type]?new Gt[n.type](o,n).html():null}function Xt(t){for(var e=b,o=x,n=0,r=t.length;n<r;n++){var i=t[n];null!==i&&isFinite(i)&&(e=Math.min(e,i),o=Math.max(o,i))}return{min:e===b?void 0:e,max:o===x?void 0:o}}function Zt(t,e){for(var o=0;o<t.length;o++){var n=t[o];if(e(n,o,t))return n}}var Yt=j.geometry.Matrix,qt=/matrix\((.*)\)/;function Qt(t){var e=getComputedStyle(t).transform;return"none"===e?Yt.unit():function(t){var e=t.match(qt);if(null===e||2!==e.length)return Yt.unit();var o=e[1].split(",").map((function(t){return parseFloat(t)}));return new(Function.prototype.bind.apply(Yt,[null].concat(o)))}(e)}function Jt(t){if(!t)return Yt.unit();for(var e=Qt(t),o=t.parentElement;o;){var n=Qt(o);e=e.multiplyCopy(n),o=o.parentElement}return e.b=e.c=e.e=e.f=0,e}const $t=function(t){return new j.Color(t).isDark()?H:i};var te={},ee=function(t){this._index={},this._values=t?t.slice(0):[];for(var e=0;e<this._values.length;e++)this._index[this._values[e]]=e},oe={size:{configurable:!0}};ee.prototype.values=function(){return this._values.filter((function(t){return t!==te}))},ee.prototype.has=function(t){return void 0!==this._index[t]},ee.prototype.add=function(t){this.has(t)||(this._index[t]=this._values.length,this._values.push(t))},ee.prototype.delete=function(t){var e=this._index[t];void 0!==e&&(this._values[e]=te,delete this._index[t])},ee.prototype.clear=function(){this._index={},this._values=[]},oe.size.get=function(){return this._values.length},Object.defineProperties(ee.prototype,oe);var ne=function(t){this._set=new Set(t)},re={size:{configurable:!0}};ne.prototype.values=function(){return Array.from(this._set)},ne.prototype.has=function(t){return this._set.has(t)},ne.prototype.add=function(t){this._set.add(t)},ne.prototype.delete=function(t){this._set.delete(t)},ne.prototype.clear=function(){this._set.clear()},re.size.get=function(){return this._set.size},Object.defineProperties(ne.prototype,re);var ie=function(){var t=!1;return"function"==typeof Set&&(t=new Set([1]).has(1)),t};function ae(t){return ie()?new ne(t):new ee(t)}function se(t){throw t}const ce={INSERT:45,DELETE:46,BACKSPACE:8,TAB:9,ENTER:13,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,END:35,HOME:36,SPACEBAR:32,PAGEUP:33,PAGEDOWN:34,F2:113,F10:121,F12:123,NUMPAD_PLUS:107,NUMPAD_MINUS:109,NUMPAD_DOT:110};function le(t,e){var o=Et(e-t,v-1);if(0===o){if(0===e)return.1;o=Math.abs(e)}var n=Math.pow(10,Math.floor(Math.log(o)/Math.log(10))),r=Et(o/n,v);return Et(n*(r<1.904762?.2:r<4.761904?.5:r<9.523809?1:2),v)}const he=function(t){function e(e,o){t.call(this),this.x=e||0,this.y=o||0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.x,this.y)},e.prototype.equals=function(t){return t&&this.x===t.x&&this.y===t.y},e.prototype.rotate=function(t,e){var o=Vt(e),n=Math.cos(o),r=Math.sin(o),i=t.x,a=t.y,s=this.x,c=this.y;return this.x=Et(i+(s-i)*n+(c-a)*r,l),this.y=Et(a+(c-a)*n-(s-i)*r,l),this},e.prototype.multiply=function(t){return this.x*=t,this.y*=t,this},e.prototype.distanceTo=function(t){var e=this.x-t.x,o=this.y-t.y;return Math.sqrt(e*e+o*o)},e.onCircle=function(t,o,n){var r=Vt(o);return new e(t.x-n*Math.cos(r),t.y-n*Math.sin(r))},e}(j.Class);var pe=function(t){function e(e,o,n,r){t.call(this),this.x1=e||0,this.y1=o||0,this.x2=n||0,this.y2=r||0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.equals=function(t){return this.x1===t.x1&&this.x2===t.x2&&this.y1===t.y1&&this.y2===t.y2},e.prototype.width=function(){return this.x2-this.x1},e.prototype.height=function(){return this.y2-this.y1},e.prototype.translate=function(t,e){return this.x1+=t,this.x2+=t,this.y1+=e,this.y2+=e,this},e.prototype.move=function(t,e){var o=this.height(),n=this.width();return zt(t)&&(this.x1=t,this.x2=this.x1+n),zt(e)&&(this.y1=e,this.y2=this.y1+o),this},e.prototype.wrap=function(t){return this.x1=Math.min(this.x1,t.x1),this.y1=Math.min(this.y1,t.y1),this.x2=Math.max(this.x2,t.x2),this.y2=Math.max(this.y2,t.y2),this},e.prototype.wrapPoint=function(t){var o=V(t),n=o?t[0]:t.x,r=o?t[1]:t.y;return this.wrap(new e(n,r,n,r)),this},e.prototype.snapTo=function(t,e){return e!==I&&e||(this.x1=t.x1,this.x2=t.x2),e!==A&&e||(this.y1=t.y1,this.y2=t.y2),this},e.prototype.alignTo=function(t,e){var o=this.height(),n=this.width(),r=e===O||e===a?A:I,i=r===A?o:n;if(e===s){var c=t.center(),l=this.center();this.x1+=c.x-l.x,this.y1+=c.y-l.y}else this[r+1]=e===O||e===g?t[r+1]-i:t[r+2];return this.x2=this.x1+n,this.y2=this.y1+o,this},e.prototype.shrink=function(t,e){return this.x2-=t,this.y2-=e,this},e.prototype.expand=function(t,e){return this.shrink(-t,-e),this},e.prototype.pad=function(t){var e=$(t);return this.x1-=e.left,this.x2+=e.right,this.y1-=e.top,this.y2+=e.bottom,this},e.prototype.unpad=function(t){var e=$(t);return e.left=-e.left,e.top=-e.top,e.right=-e.right,e.bottom=-e.bottom,this.pad(e)},e.prototype.clone=function(){return new e(this.x1,this.y1,this.x2,this.y2)},e.prototype.center=function(){return new he(this.x1+this.width()/2,this.y1+this.height()/2)},e.prototype.containsPoint=function(t){return t.x>=this.x1&&t.x<=this.x2&&t.y>=this.y1&&t.y<=this.y2},e.prototype.points=function(){return[new he(this.x1,this.y1),new he(this.x2,this.y1),new he(this.x2,this.y2),new he(this.x1,this.y2)]},e.prototype.getHash=function(){return[this.x1,this.y1,this.x2,this.y2].join(",")},e.prototype.overlaps=function(t){return!(t.y2<this.y1||this.y2<t.y1||t.x2<this.x1||this.x2<t.x1)},e.prototype.rotate=function(t){var e=this.width(),o=this.height(),n=this.center(),r=n.x,i=n.y,a=ue(0,0,r,i,t),s=ue(e,0,r,i,t),c=ue(e,o,r,i,t),l=ue(0,o,r,i,t);return e=Math.max(a.x,s.x,c.x,l.x)-Math.min(a.x,s.x,c.x,l.x),o=Math.max(a.y,s.y,c.y,l.y)-Math.min(a.y,s.y,c.y,l.y),this.x2=this.x1+e,this.y2=this.y1+o,this},e.prototype.toRect=function(){return new j.geometry.Rect([this.x1,this.y1],[this.width(),this.height()])},e.prototype.hasSize=function(){return 0!==this.width()&&0!==this.height()},e.prototype.align=function(t,e,o){var n=e+1,r=e+2,i=e===I?P:f,c=this[i]();pt(o,[g,O])?(this[n]=t[n],this[r]=this[n]+c):pt(o,[C,a])?(this[r]=t[r],this[n]=this[r]-c):o===s&&(this[n]=t[n]+(t[i]()-c)/2,this[r]=this[n]+c)},e}(j.Class);function ue(t,e,o,n,r){var i=Vt(r);return new he(o+(t-o)*Math.cos(i)+(e-n)*Math.sin(i),n-(t-o)*Math.sin(i)+(e-n)*Math.cos(i))}const ve=pe;var de=function(t){function e(e,o,n,r,i){t.call(this),this.center=e,this.innerRadius=o,this.radius=n,this.startAngle=r,this.angle=i}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.center,this.innerRadius,this.radius,this.startAngle,this.angle)},e.prototype.middle=function(){return this.startAngle+this.angle/2},e.prototype.setRadius=function(t,e){return e?this.innerRadius=t:this.radius=t,this},e.prototype.point=function(t,e){var o=Vt(t),n=Math.cos(o),r=Math.sin(o),i=e?this.innerRadius:this.radius,a=Et(this.center.x-n*i,l),s=Et(this.center.y-r*i,l);return new he(a,s)},e.prototype.adjacentBox=function(t,e,o){var n=this.clone().expand(t),r=n.middle(),i=n.point(r),a=e/2,s=o/2,c=Math.sin(Vt(r)),l=Math.cos(Vt(r)),h=i.x-a,p=i.y-s;return Math.abs(c)<.9&&(h+=a*-l/Math.abs(l)),Math.abs(l)<.9&&(p+=s*-c/Math.abs(c)),new ve(h,p,h+e,p+o)},e.prototype.containsPoint=function(t){var e=this.center,o=this.innerRadius,n=this.radius,r=this.startAngle,i=this.startAngle+this.angle,a=t.x-e.x,s=t.y-e.y,c=new he(a,s),h=this.point(r),p=new he(h.x-e.x,h.y-e.y),u=this.point(i),v=new he(u.x-e.x,u.y-e.y),d=Et(a*a+s*s,l);return(p.equals(c)||R(p,c))&&!R(v,c)&&d>=o*o&&d<=n*n},e.prototype.getBBox=function(){var t,e=new ve(b,b,x,x),o=Et(this.startAngle%360),n=Et((o+this.angle)%360),r=this.innerRadius,i=[0,90,180,270,o,n].sort(fe),a=i.indexOf(o),s=i.indexOf(n);t=o===n?i:a<s?i.slice(a,s+1):[].concat(i.slice(0,s+1),i.slice(a,i.length));for(var c=0;c<t.length;c++){var l=this.point(t[c]);e.wrapPoint(l),e.wrapPoint(l,r)}return r||e.wrapPoint(this.center),e},e.prototype.expand=function(t){return this.radius+=t,this},e}(j.Class);function fe(t,e){return t-e}const me=de;var ye=function(t){function e(e,o,n,r){t.call(this,e,0,o,n,r)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.expand=function(e){return t.prototype.expand.call(this,e)},e.prototype.clone=function(){return new e(this.center,this.radius,this.startAngle,this.angle)},e.prototype.setRadius=function(t){return this.radius=t,this},e}(me);const ge=ye;var be=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createRing=function(t,e){var o=t.startAngle+180,n=t.angle+o;t.angle>0&&o===n&&(n+=.001);var r=new j.geometry.Point(t.center.x,t.center.y),i=Math.max(t.radius,0),a=Math.max(t.innerRadius,0),s=new j.geometry.Arc(r,{startAngle:o,endAngle:n,radiusX:i,radiusY:i}),c=j.drawing.Path.fromArc(s,e).close();if(a){s.radiusX=s.radiusY=a;var l=s.pointAt(n);c.lineTo(l.x,l.y),c.arc(n,o,a,a,!0)}else c.lineTo(r.x,r.y);return c},e}(j.Class);be.current=new be;const xe=be;var we=function(t){function e(e){t.call(this),this.children=[],this.options=X({},this.options,this.initUserOptions(e))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){return t},e.prototype.reflow=function(t){for(var e,o=this.children,n=0;n<o.length;n++){var r=o[n];r.reflow(t),e=e?e.wrap(r.box):r.box.clone()}this.box=e||t},e.prototype.destroy=function(){var t=this.children;this.animation&&this.animation.destroy();for(var e=0;e<t.length;e++)t[e].destroy()},e.prototype.getRoot=function(){var t=this.parent;return t?t.getRoot():null},e.prototype.getSender=function(){var t=this.getService();if(t)return t.sender},e.prototype.getService=function(){for(var t=this;t;){if(t.chartService)return t.chartService;t=t.parent}},e.prototype.translateChildren=function(t,e){for(var o=this.children,n=o.length,r=0;r<n;r++)o[r].box.translate(t,e)},e.prototype.append=function(){for(var t=arguments,e=0;e<arguments.length;e++){var o=t[e];this.children.push(o),o.parent=this}},e.prototype.renderVisual=function(){!1!==this.options.visible&&(this.createVisual(),this.addVisual(),this.renderChildren(),this.createAnimation(),this.renderComplete())},e.prototype.addVisual=function(){this.visual&&(this.visual.chartElement=this,this.parent&&this.parent.appendVisual(this.visual))},e.prototype.renderChildren=function(){for(var t=this.children,e=t.length,o=0;o<e;o++)t[o].renderVisual()},e.prototype.createVisual=function(){this.visual=new j.drawing.Group({zIndex:this.options.zIndex,visible:Bt(this.options.visible,!0)})},e.prototype.createAnimation=function(){this.visual&&this.options.animation&&(this.animation=j.drawing.Animation.create(this.visual,this.options.animation))},e.prototype.appendVisual=function(t){t.chartElement||(t.chartElement=this),t.options.noclip?this.clipRoot().visual.append(t):zt(t.options.zIndex)?this.stackRoot().stackVisual(t):this.isStackRoot?this.stackVisual(t):this.visual?this.visual.append(t):this.parent.appendVisual(t)},e.prototype.clipRoot=function(){return this.parent?this.parent.clipRoot():this},e.prototype.stackRoot=function(){return this.parent?this.parent.stackRoot():this},e.prototype.stackVisual=function(t){var e,o=t.options.zIndex||0,n=this.visual.children,r=n.length;for(e=0;e<r;e++){var i=n[e];if(Bt(i.options.zIndex,0)>o)break}this.visual.insert(e,t)},e.prototype.traverse=function(t){for(var e=this.children,o=e.length,n=0;n<o;n++){var r=e[n];t(r),r.traverse&&r.traverse(t)}},e.prototype.closest=function(t){for(var e=this,o=!1;e&&!o;)(o=t(e))||(e=e.parent);if(o)return e},e.prototype.renderComplete=function(){},e.prototype.hasHighlight=function(){var t=(this.options||{}).highlight;return!(!this.createHighlight||t&&!1===t.visible||!1===this.visible)},e.prototype.toggleHighlight=function(t,e){var o=this,n=(this.options||{}).highlight||{},r=n.visual,i=this._highlight;if(!i){var a={fill:{color:H,opacity:e||.2},stroke:{color:H,width:1,opacity:e||.2}};if(r){if(!(i=this._highlight=r(Object.assign(this.highlightVisualArgs(),{createVisual:function(){return o.createHighlight(a)},sender:this.getSender(),series:this.series,dataItem:this.dataItem,category:this.category,value:this.value,percentage:this.percentage,runningTotal:this.runningTotal,total:this.total}))))return}else i=this._highlight=this.createHighlight(a);zt(i.options.zIndex)||(i.options.zIndex=Bt(n.zIndex,this.options.zIndex)),this.appendVisual(i)}i.visible(t)},e.prototype.createGradientOverlay=function(t,e,o){var n=new j.drawing.Path(Object.assign({stroke:{color:"none"},fill:this.createGradient(o),closed:t.options.closed},e));return n.segments.elements(t.segments.elements()),n},e.prototype.createGradient=function(t){if(this.parent)return this.parent.createGradient(t)},e.prototype.supportsPointInactiveOpacity=function(){return!0},e}(j.Class);we.prototype.options={};const _e=we;var ze=function(t){function e(e){t.call(this,e),this.options.margin=$(this.options.margin),this.options.padding=$(this.options.padding)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(e){var o,n=this,r=this.options,i=r.width,a=r.height,s=r.shrinkToFit,c=i&&a,l=r.margin,h=r.padding,p=r.border.width,u=function(){n.align(e,I,r.align),n.align(e,A,r.vAlign),n.paddingBox=o.clone().unpad(l).unpad(p)},v=e.clone();c&&(v.x2=v.x1+i,v.y2=v.y1+a),s&&v.unpad(l).unpad(p).unpad(h),t.prototype.reflow.call(this,v),o=c?this.box=new ve(0,0,i,a):this.box,s&&c?(u(),v=this.contentBox=this.paddingBox.clone().unpad(h)):(v=this.contentBox=o.clone(),o.pad(h).pad(p).pad(l),u()),this.translateChildren(o.x1-v.x1+l.left+p+h.left,o.y1-v.y1+l.top+p+h.top);for(var d=this.children,f=0;f<d.length;f++){var m=d[f];m.reflow(m.box)}},e.prototype.align=function(t,e,o){this.box.align(t,e,o)},e.prototype.hasBox=function(){var t=this.options;return t.border.width||t.background},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.options.visible&&this.hasBox()&&this.visual.append(j.drawing.Path.fromRect(this.paddingBox.toRect(),this.visualStyle()))},e.prototype.visualStyle=function(){var t=this.options,e=t.border||{};return{stroke:{width:e.width,color:e.color,opacity:Bt(e.opacity,t.opacity),dashType:e.dashType},fill:{color:t.background,opacity:t.opacity},cursor:t.cursor}},e}(_e);Rt(ze,{align:g,vAlign:O,margin:{},padding:{},border:{color:i,width:0},background:"",shrinkToFit:!1,width:0,height:0,visible:!0});const Ce=ze;var ke=function(t){function e(e,o){t.call(this,e),this.pointData=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getElement=function(){var t=this.options,e=this.paddingBox,o=t.type,n=t.rotation,r=e.center(),i=e.width()/2,a=e.height()/2;if(!t.visible||!this.hasBox())return null;var s,p=this.visualStyle();if(o===c)s=new j.drawing.Circle(new j.geometry.Circle([Et(e.x1+i,l),Et(e.y1+a,l)],Math.min(i,a)),p);else if("triangle"===o)s=j.drawing.Path.fromPoints([[e.x1+i,e.y1],[e.x1,e.y2],[e.x2,e.y2]],p).close();else if(o===h)(s=new j.drawing.MultiPath(p)).moveTo(e.x1,e.y1).lineTo(e.x2,e.y2),s.moveTo(e.x1,e.y2).lineTo(e.x2,e.y1);else{var u=e.toRect();if(o===k){var v=Bt(t.borderRadius,u.width()/5);u.setCornerRadius(v)}s=j.drawing.Path.fromRect(u,p)}return n&&s.transform(j.geometry.transform().rotate(-n,[r.x,r.y])),s.options.zIndex=t.zIndex,s},e.prototype.createElement=function(){var t=this,e=this.options.visual,o=this.pointData||{};return e?e({value:o.value,dataItem:o.dataItem,sender:this.getSender(),series:o.series,category:o.category,rect:this.paddingBox.toRect(),options:this.visualOptions(),createVisual:function(){return t.getElement()}}):this.getElement()},e.prototype.visualOptions=function(){var t=this.options;return{background:t.background,border:t.border,margin:t.margin,padding:t.padding,type:t.type,size:t.width,visible:t.visible}},e.prototype.createVisual=function(){this.visual=this.createElement()},e}(Ce);Rt(ke,{type:c,align:s,vAlign:s});const Me=ke;var Oe="radial";const Se={glass:{type:"linear",rotation:0,stops:[{offset:0,color:H,opacity:0},{offset:.25,color:H,opacity:.3},{offset:1,color:H,opacity:0}]},sharpBevel:{type:Oe,stops:[{offset:0,color:H,opacity:.55},{offset:.65,color:H,opacity:0},{offset:.95,color:H,opacity:.25}]},roundedBevel:{type:Oe,stops:[{offset:.33,color:H,opacity:.06},{offset:.83,color:H,opacity:.2},{offset:.95,color:H,opacity:0}]},roundedGlass:{type:Oe,supportVML:!1,stops:[{offset:0,color:H,opacity:0},{offset:.5,color:H,opacity:.3},{offset:.99,color:H,opacity:0}]},sharpGlass:{type:Oe,supportVML:!1,stops:[{offset:0,color:H,opacity:.2},{offset:.15,color:H,opacity:.15},{offset:.17,color:H,opacity:.35},{offset:.85,color:H,opacity:.05},{offset:.87,color:H,opacity:.15},{offset:.99,color:H,opacity:0}]},bubbleShadow:{type:Oe,center:[.5,.5],radius:.5}};function He(t,e){if(t.x1===e.x1&&t.y1===e.y1&&t.x2===e.x2&&t.y2===e.y2)return e;var o=Math.min(t.x1,e.x1),n=Math.max(t.x1,e.x1),r=Math.min(t.x2,e.x2),i=Math.max(t.x2,e.x2),a=Math.min(t.y1,e.y1),s=Math.max(t.y1,e.y1),c=Math.min(t.y2,e.y2),l=Math.max(t.y2,e.y2),h=[];return h[0]=new ve(n,a,r,s),h[1]=new ve(o,s,n,c),h[2]=new ve(r,s,i,c),h[3]=new ve(n,c,r,l),t.x1===o&&t.y1===a||e.x1===o&&e.y1===a?(h[4]=new ve(o,a,n,s),h[5]=new ve(r,c,i,l)):(h[4]=new ve(r,a,i,s),h[5]=new ve(o,c,n,l)),st(h,(function(t){return t.height()>0&&t.width()>0}))[0]}var Pe=function(t){function e(e){t.call(this,e);var o=this.options;o.width=parseInt(o.width,10),o.height=parseInt(o.height,10),this.gradients={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(){var t=this.options,e=this.children,o=new ve(0,0,t.width,t.height);this.box=o.unpad(t.margin);for(var n=0;n<e.length;n++)e[n].reflow(o),o=He(o,e[n].box)||new ve},e.prototype.createVisual=function(){this.visual=new j.drawing.Group,this.createBackground()},e.prototype.createBackground=function(){var t=this.options,e=t.border||{},o=this.box.clone().pad(t.margin).unpad(e.width),n=j.drawing.Path.fromRect(o.toRect(),{stroke:{color:e.width?e.color:"",width:e.width,dashType:e.dashType},fill:{color:t.background,opacity:t.opacity},zIndex:-10});this.visual.append(n)},e.prototype.getRoot=function(){return this},e.prototype.createGradient=function(t){var e,o=this.gradients,n=At(t),r=Se[t.gradient];if(o[n])e=o[n];else{var i=Object.assign({},r,t);"linear"===r.type?e=new j.drawing.LinearGradient(i):(t.innerRadius&&(i.stops=function(t){for(var e=t.stops,o=t.innerRadius/t.radius*100,n=e.length,r=[],i=0;i<n;i++){var a=Object.assign({},e[i]);a.offset=(a.offset*(100-o)+o)/100,r.push(a)}return r}(i)),(e=new j.drawing.RadialGradient(i)).supportVML=!1!==r.supportVML),o[n]=e}return e},e.prototype.cleanGradients=function(){var t=this.gradients;for(var e in t)t[e]._observers=[]},e.prototype.size=function(){var t=this.options;return new ve(0,0,t.width,t.height)},e}(_e);Rt(Pe,{width:600,height:400,background:H,border:{color:i,width:0},margin:$(5),zIndex:-2});const Ie=Pe;var Ae=function(t){function e(e){t.call(this,e),this._initDirection()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initDirection=function(){var t=this.options;t.vertical?(this.groupAxis=I,this.elementAxis=A,this.groupSizeField=P,this.elementSizeField=f,this.groupSpacing=t.spacing,this.elementSpacing=t.vSpacing):(this.groupAxis=A,this.elementAxis=I,this.groupSizeField=f,this.elementSizeField=P,this.groupSpacing=t.vSpacing,this.elementSpacing=t.spacing)},e.prototype.reflow=function(t){this.box=t.clone(),this.reflowChildren()},e.prototype.reflowChildren=function(){var t=this,e=this,o=e.box,n=e.elementAxis,r=e.groupAxis,i=e.elementSizeField,a=e.groupSizeField,s=this.groupOptions(),c=s.groups,l=s.groupsSize,h=s.maxGroupElementsSize,p=c.length,u=o[r+1]+this.alignStart(l,o[a]());if(p){for(var v=u,d=0;d<p;d++){for(var f=c[d],m=f.groupElements,y=o[n+1],g=m.length,b=0;b<g;b++){var x=m[b],w=t.elementSize(x),_=v+t.alignStart(w[a],f.groupSize),z=new ve;z[r+1]=_,z[r+2]=_+w[a],z[n+1]=y,z[n+2]=y+w[i],x.reflow(z),y+=w[i]+t.elementSpacing}v+=f.groupSize+t.groupSpacing}o[r+1]=u,o[r+2]=u+l,o[n+2]=o[n+1]+h}},e.prototype.alignStart=function(t,e){var o=0,n=this.options.align;return n===C||n===a?o=e-t:n===s&&(o=(e-t)/2),o},e.prototype.groupOptions=function(){for(var t=this,e=t.box,o=t.children,n=t.elementSizeField,r=t.groupSizeField,i=t.elementSpacing,a=t.groupSpacing,s=Et(e[n]()),c=o.length,l=[],h=0,p=0,u=0,v=0,d=[],f=0;f<c;f++){var m=o[f];m.box||m.reflow(e);var y=this.elementSize(m);this.options.wrap&&Et(p+i+y[n])>s&&(l.push({groupElements:d,groupSize:h,groupElementsSize:p}),v=Math.max(v,p),u+=a+h,h=0,p=0,d=[]),h=Math.max(h,y[r]),p>0&&(p+=i),p+=y[n],d.push(m)}return l.push({groupElements:d,groupSize:h,groupElementsSize:p}),{groups:l,groupsSize:u+=h,maxGroupElementsSize:v=Math.max(v,p)}},e.prototype.elementSize=function(t){return{width:t.box.width(),height:t.box.height()}},e.prototype.createVisual=function(){},e}(_e);Rt(Ae,{vertical:!0,wrap:!0,vSpacing:0,spacing:0});const Ve=Ae;var Ee=j.drawing.Text,Te=function(t){function e(e,o){t.call(this,o),this.content=e,this.reflow(new ve)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options,o=e.size=j.drawing.util.measureText(this.content,{font:e.font});this.baseline=o.baseline,this.box=new ve(t.x1,t.y1,t.x1+o.width,t.y1+o.height)},e.prototype.createVisual=function(){var t=this.options,e=t.font,o=t.color,n=t.opacity,r=t.cursor;this.visual=new Ee(this.content,this.box.toRect().topLeft(),{font:e,fill:{color:o,opacity:n},cursor:r})},e}(_e);Rt(Te,{font:u,color:i});const Be=Te;function je(t){var e=t.origin,o=t.bottomRight();return new ve(e.x,e.y,o.x,o.y)}var Le=/\n/m,Re=function(t){function e(e,o,n){t.call(this,o),this.content=e,this.data=n,this._initContainer(),!1!==this.options._autoReflow&&this.reflow(new ve)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initContainer=function(){var t=this.options,e=String(this.content).split(Le),o=new Ve({vertical:!0,align:t.align,wrap:!1}),n=X({},t,{opacity:1,animation:null});this.container=o,this.append(o);for(var r=0;r<e.length;r++){var i=new Be(e[r].trim(),n);o.append(i)}},e.prototype.reflow=function(e){var o=this.options,n=o.visual;if(this.container.options.align=o.align,n&&!this._boxReflow){var r=e;r.hasSize()||(this._boxReflow=!0,this.reflow(r),this._boxReflow=!1,r=this.box);var i=this.visual=n(this.visualContext(r));i&&(r=je(i.clippedBBox()||new j.geometry.Rect),i.options.zIndex=o.zIndex),this.box=this.contentBox=this.paddingBox=r}else if(t.prototype.reflow.call(this,e),o.rotation){var a=$(o.margin),s=this.box.unpad(a);this.targetBox=e,this.normalBox=s.clone(),(s=this.rotate()).translate(a.left-a.right,a.top-a.bottom),this.rotatedBox=s.clone(),s.pad(a)}},e.prototype.createVisual=function(){var t=this.options;if(this.visual=new j.drawing.Group({transform:this.rotationTransform(),zIndex:t.zIndex,noclip:t.noclip}),this.hasBox()){var e=j.drawing.Path.fromRect(this.paddingBox.toRect(),this.visualStyle());this.visual.append(e)}},e.prototype.renderVisual=function(){if(this.options.visible)if(this.options.visual){var e=this.visual;e&&!zt(e.options.noclip)&&(e.options.noclip=this.options.noclip),this.addVisual(),this.createAnimation()}else t.prototype.renderVisual.call(this)},e.prototype.visualContext=function(t){var e=this,o={text:this.content,rect:t.toRect(),sender:this.getSender(),options:this.options,createVisual:function(){return e._boxReflow=!0,e.reflow(t),e._boxReflow=!1,e.getDefaultVisual()}};return this.data&&Object.assign(o,this.data),o},e.prototype.getDefaultVisual=function(){this.createVisual(),this.renderChildren();var t=this.visual;return delete this.visual,t},e.prototype.rotate=function(){var t=this.options;return this.box.rotate(t.rotation),this.align(this.targetBox,I,t.align),this.align(this.targetBox,A,t.vAlign),this.box},e.prototype.rotationTransform=function(){var t=this.options.rotation;if(!t)return null;var e=this.normalBox.center(),o=e.x,n=e.y,r=this.rotatedBox.center();return j.geometry.transform().translate(r.x-o,r.y-n).rotate(t,[o,n])},e}(Ce);const De=Re;var Ne=function(t){function e(e){t.call(this,e),this._textBox=new De(this.options.text,Object.assign({},this.options,{vAlign:this.options.position})),this.append(this._textBox)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(e){t.prototype.reflow.call(this,e),this.box.snapTo(e,I)},e.buildTitle=function(t,o){var n,r=t;return"string"==typeof t&&(r={text:t}),(r=Object.assign({visible:!0},o,r))&&r.visible&&r.text&&(n=new e(r)),n},e.orderTitles=function(t){var e=[].concat(t),o=e.filter((function(t){return t&&t.options.position!==a})),n=e.filter((function(t){return t&&t.options.position===a}));return Fe(o),Fe(n),n.reverse(),o.concat(n)},e}(_e);function Fe(t){for(var e=1;e<t.length;e++){var o=t[e]._textBox,n=t[e-1]._textBox;n.options.margin=Object.assign($(n.options.margin),{bottom:0}),o.options.margin=Object.assign($(o.options.margin),{top:0})}}Rt(Ne,{color:i,position:O,align:s,margin:$(5),padding:$(5)});const Ue=Ne;var We=function(t){function e(e,o,n,r,i){t.call(this,o,i),this.text=o,this.value=e,this.index=n,this.dataItem=r,this.reflow(new ve)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.visualContext=function(e){var o=t.prototype.visualContext.call(this,e);return o.value=this.value,o.dataItem=this.dataItem,o.format=this.options.format,o.culture=this.options.culture,o},e.prototype.click=function(t,e){t.trigger("axisLabelClick",{element:St(e),value:this.value,text:this.text,index:this.index,dataItem:this.dataItem,axis:this.parent.options})},e.prototype.rotate=function(){if(this.options.alignRotation!==s){var e=this.normalBox.toRect(),o=this.rotationTransform();this.box=je(e.bbox(o.matrix()))}else t.prototype.rotate.call(this);return this.box},e.prototype.rotationTransform=function(){var e=this.options,o=e.rotation;if(!o)return null;if(e.alignRotation===s)return t.prototype.rotationTransform.call(this);var n=j.geometry.transform().rotate(o).matrix(),r=this.normalBox.toRect(),i=this.targetBox.toRect(),c=e.rotationOrigin||O,l=c===O||c===a?I:A,h=c===O||c===a?A:I,p=c===O||c===g?i.origin:i.bottomRight(),u=r.topLeft().transformCopy(n),d=r.topRight().transformCopy(n),f=r.bottomRight().transformCopy(n),m=r.bottomLeft().transformCopy(n),y=j.geometry.Rect.fromPoints(u,d,f,m),b={};b[h]=i.origin[h]-y.origin[h];var x,w,_=Math.abs(u[h]+b[h]-p[h]),z=Math.abs(d[h]+b[h]-p[h]);Et(_,v)===Et(z,v)?(x=u,w=d):z<_?(x=d,w=f):(x=u,w=m);var C=x[l]+(w[l]-x[l])/2;return b[l]=i.center()[l]-C,j.geometry.transform().translate(b.x,b.y).rotate(o)},e}(De);Rt(We,{_autoReflow:!1});const Ge=We;var Ke=function(t){function e(e,o,n){t.call(this,o),this.fields=e,this.chartService=n,this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hide=function(){this.options.visible=!1},e.prototype.show=function(){this.options.visible=!0},e.prototype.render=function(){var t=this,e=this.options;if(e.visible){var o,n,r=e.label,i=e.icon,a=new ve,s=function(){return t},l=i.size,h=this.fields.text;if(zt(r)&&r.visible){var p=nt(r);p?h=p(this.fields):r.format&&(h=this.chartService.format.auto(r.format,h)),r.color||(r.color=r.position===m?"#fff":i.background),this.label=new De(h,X({},r)),this.label.aliasFor=s,r.position!==m||zt(l)||(i.type===c?l=Math.max(this.label.box.width(),this.label.box.height()):(o=this.label.box.width(),n=this.label.box.height()),a.wrap(this.label.box))}i.width=o||l||7,i.height=n||l||7;var u=new Me(X({},i));u.aliasFor=s,this.marker=u,this.append(u),this.label&&this.append(this.label),u.reflow(new ve),this.wrapperBox=a.wrap(u.box)}},e.prototype.reflow=function(t){var e,o,n,r=this,i=r.options,s=r.label,c=r.marker,l=r.wrapperBox,h=t.center(),p=i.line.length,u=i.position;i.visible&&(pt(u,[g,C])?u===g?(n=l.alignTo(t,u).translate(-p,t.center().y-l.center().y),i.line.visible&&(e=[t.x1,h.y],this.linePoints=[e,[n.x2,h.y]],o=n.clone().wrapPoint(e))):(n=l.alignTo(t,u).translate(p,t.center().y-l.center().y),i.line.visible&&(e=[t.x2,h.y],this.linePoints=[e,[n.x1,h.y]],o=n.clone().wrapPoint(e))):u===a?(n=l.alignTo(t,u).translate(t.center().x-l.center().x,p),i.line.visible&&(e=[h.x,t.y2],this.linePoints=[e,[h.x,n.y1]],o=n.clone().wrapPoint(e))):(n=l.alignTo(t,u).translate(t.center().x-l.center().x,-p),i.line.visible&&(e=[h.x,t.y1],this.linePoints=[e,[h.x,n.y2]],o=n.clone().wrapPoint(e))),c&&c.reflow(n),s&&(s.reflow(n),c&&(i.label.position===z&&s.box.alignTo(c.box,u),s.reflow(s.box))),this.contentBox=n,this.targetBox=t,this.box=o||n)},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.visual.options.noclip=this.options.noclip,this.options.visible&&this.createLine()},e.prototype.renderVisual=function(){var e=this,o=this.options,n=o.visual;o.visible&&n?(this.visual=n(Object.assign(this.fields,{sender:this.getSender(),rect:this.targetBox.toRect(),options:{background:o.background,border:o.background,icon:o.icon,label:o.label,line:o.line,position:o.position,visible:o.visible},createVisual:function(){e.createVisual(),e.renderChildren();var t=e.visual;return delete e.visual,t}})),this.addVisual()):t.prototype.renderVisual.call(this)},e.prototype.createLine=function(){var t=this.options.line;if(this.linePoints){var e=j.drawing.Path.fromPoints(this.linePoints,{stroke:{color:t.color,width:t.width,dashType:t.dashType}});L(e),this.visual.append(e)}},e.prototype.click=function(t,e){var o=this.eventArgs(e);t.trigger("noteClick",o)||e.preventDefault()},e.prototype.over=function(t,e){var o=this.eventArgs(e);t.trigger("noteHover",o)||e.preventDefault()},e.prototype.out=function(t,e){var o=this.eventArgs(e);t.trigger("noteLeave",o)},e.prototype.eventArgs=function(t){var e=this.options;return Object.assign(this.fields,{element:St(t),text:zt(e.label)?e.label.text:"",visual:this.visual})},e}(Ce);Rt(Ke,{icon:{visible:!0,type:c},label:{position:m,visible:!0,align:s,vAlign:s},line:{visible:!0},visible:!0,position:O,zIndex:2});const Xe=Ke;var Ze={format:function(t,e){return e},toString:function(t){return t},parseDate:function(t){return new Date(t)},firstDay:function(){return 0}},Ye=function(){},qe={implementation:{configurable:!0}};Ye.register=function(t){Ze=t},qe.implementation.get=function(){return Ze},Object.defineProperties(Ye,qe);const Qe=Ye;var Je=/\{(\d+)(:[^\}]+)?\}/g,$e=function(t){this._intlService=t},to={intl:{configurable:!0}};to.intl.get=function(){return this._intlService||Qe.implementation},to.intl.set=function(t){this._intlService=t},$e.prototype.auto=function(t){for(var e=[],o=arguments.length-1;o-- >0;)e[o]=arguments[o+1];var n=this.intl;return N(t)&&t.match(d)?n.format.apply(n,[t].concat(e)):n.toString(e[0],t)},$e.prototype.localeAuto=function(t,e,o){var n=this.intl;return N(t)&&t.match(d)?t.replace(Je,(function(t,r,i){var a=e[parseInt(r,10)];return n.toString(a,i?i.substring(1):"",o)})):n.toString(e[0],t,o)},Object.defineProperties($e.prototype,to);const eo=$e;var oo=function(t,e){void 0===e&&(e={}),this._intlService=e.intlService,this.sender=e.sender||t,this.format=new eo(e.intlService),this.chart=t,this.rtl=Boolean(e.rtl)},no={intl:{configurable:!0}};no.intl.get=function(){return this._intlService||Qe.implementation},no.intl.set=function(t){this._intlService=t,this.format.intl=t},oo.prototype.notify=function(t,e){this.chart&&this.chart.trigger(t,e)},oo.prototype.isPannable=function(t){var e=((this.chart||{}).options||{}).pannable;return e&&e.lock!==t},Object.defineProperties(oo.prototype,no);const ro=oo;var io,ao=function(){};ao.register=function(t){io=t},ao.create=function(t,e){if(io)return io.create(t,e)};const so=ao;function co(t,e){var o=t.tickX,n=t.tickY,r=t.position,i=new j.drawing.Path({stroke:{width:e.width,color:e.color}});return t.vertical?i.moveTo(o,r).lineTo(o+e.size,r):i.moveTo(r,n).lineTo(r,n+e.size),L(i),i}function lo(t,e){var o=t.lineStart,n=t.lineEnd,r=t.position,i=new j.drawing.Path({stroke:{width:e.width,color:e.color,dashType:e.dashType}});return t.vertical?i.moveTo(o,r).lineTo(n,r):i.moveTo(r,o).lineTo(r,n),L(i),i}var ho=function(t){function e(e,o){void 0===o&&(o=new ro),t.call(this,e),this.chartService=o,this.options.visible||(this.options=X({},this.options,{labels:{visible:!1},line:{visible:!1},margin:0,majorTickSize:0,minorTickSize:0})),this.options.minorTicks=X({},{color:this.options.line.color,width:this.options.line.width,visible:this.options.minorTickType!==w},this.options.minorTicks,{size:this.options.minorTickSize,align:this.options.minorTickType}),this.options.majorTicks=X({},{color:this.options.line.color,width:this.options.line.width,visible:this.options.majorTickType!==w},this.options.majorTicks,{size:this.options.majorTickSize,align:this.options.majorTickType}),this.initFields(),this.options._deferLabels||this.createLabels(),this.createTitle(),this.createNotes()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){},e.prototype.labelsRange=function(){return{min:this.options.labels.skip,max:this.labelsCount()}},e.prototype.normalizeLabelRotation=function(t){var e=t.rotation;Z(e)&&(t.alignRotation=e.align,t.rotation=e.angle)},e.prototype.createLabels=function(){var t=this,e=this.options,o=e.vertical?C:s,n=X({},e.labels,{align:o,zIndex:e.zIndex}),r=Math.max(1,n.step);if(this.clearLabels(),n.visible){this.normalizeLabelRotation(n),"auto"===n.rotation&&(n.rotation=0,e.autoRotateLabels=!0);for(var i=this.labelsRange(),a=i.min;a<i.max;a+=r){var c={index:a,count:i.max},l=t.createAxisLabel(a,n,c);l&&(t.append(l),t.labels.push(l))}}},e.prototype.clearLabels=function(){this.children=st(this.children,(function(t){return!(t instanceof Ge)})),this.labels=[]},e.prototype.clearTitle=function(){var t=this;this.title&&(this.children=st(this.children,(function(e){return e!==t.title})),this.title=void 0)},e.prototype.clear=function(){this.clearLabels(),this.clearTitle()},e.prototype.lineBox=function(){var t=this.options,e=this.box,o=t.vertical,n=t.labels.mirror,r=n?e.x1:e.x2,i=n?e.y2:e.y1,a=t.line.width||0;return o?new ve(r,e.y1,r,e.y2-a):new ve(e.x1,i,e.x2-a,i)},e.prototype.createTitle=function(){var t=this.options,e=X({rotation:t.vertical?-90:0,text:"",zIndex:1,visualSize:!0},t.title);if(e.visible&&e.text){var o=new De(e.text,e);this.append(o),this.title=o}},e.prototype.createNotes=function(){var t=this,e=this.options,o=e.notes,n=o.data||[];this.notes=[];for(var r=0;r<n.length;r++){var i=X({},o,n[r]);i.value=t.parseNoteValue(i.value);var s=new Xe({value:i.value,text:i.label.text,dataItem:i},i,t.chartService);s.options.visible&&(zt(s.options.position)?e.vertical&&!pt(s.options.position,[g,C])?s.options.position=e.reverse?g:C:e.vertical||pt(s.options.position,[O,a])||(s.options.position=e.reverse?a:O):e.vertical?s.options.position=e.reverse?g:C:s.options.position=e.reverse?a:O,t.append(s),t.notes.push(s))}},e.prototype.parseNoteValue=function(t){return t},e.prototype.renderVisual=function(){t.prototype.renderVisual.call(this),this.createPlotBands()},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this.createBackground(),this.createLine()},e.prototype.gridLinesVisual=function(){var t=this._gridLines;return t||(t=this._gridLines=new j.drawing.Group({zIndex:-2}),this.appendVisual(this._gridLines)),t},e.prototype.createTicks=function(t){var e=this.options,o=this.lineBox(),n=e.labels.mirror,r=e.majorTicks.visible?e.majorUnit:0,i={vertical:e.vertical};function a(e,r,a){var s=e.length,c=Math.max(1,r.step);if(r.visible)for(var l=r.skip;l<s;l+=c)zt(a)&&l%a==0||(i.tickX=n?o.x2:o.x2-r.size,i.tickY=n?o.y1-r.size:o.y1,i.position=e[l],t.append(co(i,r)))}a(this.getMajorTickPositions(),e.majorTicks),a(this.getMinorTickPositions(),e.minorTicks,r/e.minorUnit)},e.prototype.createLine=function(){var t=this.options,e=t.line,o=this.lineBox();if(e.width>0&&e.visible){var n=new j.drawing.Path({stroke:{width:e.width,color:e.color,dashType:e.dashType}});n.moveTo(o.x1,o.y1).lineTo(o.x2,o.y2),t._alignLines&&L(n);var r=this._lineGroup=new j.drawing.Group;r.append(n),this.visual.append(r),this.createTicks(r)}},e.prototype.getActualTickSize=function(){var t=this.options,e=0;return t.majorTicks.visible&&t.minorTicks.visible?e=Math.max(t.majorTicks.size,t.minorTicks.size):t.majorTicks.visible?e=t.majorTicks.size:t.minorTicks.visible&&(e=t.minorTicks.size),e},e.prototype.createBackground=function(){var t=this.options,e=this.box,o=t.background;o&&(this._backgroundPath=j.drawing.Path.fromRect(e.toRect(),{fill:{color:o},stroke:null}),this.visual.append(this._backgroundPath))},e.prototype.createPlotBands=function(){var t=this,e=this.options,o=e.plotBands||[],n=e.vertical,r=this.plotArea;if(0!==o.length){for(var i=this._plotbandGroup=new j.drawing.Group({zIndex:-1}),a=st(this.pane.axes,(function(e){return e.options.vertical!==t.options.vertical}))[0],s=0;s<o.length;s++){var c=o[s],l=void 0,h=void 0,p=c.label,u=void 0;if(n?(l=(a||r.axisX).lineBox(),h=t.getSlot(c.from,c.to,!0)):(l=t.getSlot(c.from,c.to,!0),h=(a||r.axisY).lineBox()),p&&(p.vAlign=p.position||g,u=t.createPlotBandLabel(p,c,new ve(l.x1,h.y1,l.x2,h.y2))),0!==l.width()&&0!==h.height()){var v=new j.geometry.Rect([l.x1,h.y1],[l.width(),h.height()]),d=j.drawing.Path.fromRect(v,{fill:{color:c.color,opacity:c.opacity},stroke:null});i.append(d),u&&i.append(u)}}this.appendVisual(i)}},e.prototype.createPlotBandLabel=function(t,e,o){if(!1===t.visible)return null;var n,r=t.text;if(zt(t)&&t.visible){var i=nt(t);i?r=i({text:r,item:e}):t.format&&(r=this.chartService.format.auto(t.format,r)),t.color||(t.color=this.options.labels.color)}return(n=new De(r,t)).reflow(o),n.renderVisual(),n.visual},e.prototype.createGridLines=function(t){var e=this.options,o=e.minorGridLines,n=e.majorGridLines,r=e.minorUnit,i=e.vertical,a=t.options.line.visible,s=n.visible?e.majorUnit:0,c=t.lineBox(),l=c[i?"y1":"x1"],h={lineStart:c[i?"x1":"y1"],lineEnd:c[i?"x2":"y2"],vertical:i},p=[],u=this.gridLinesVisual();function v(t,e,o){var n=t.length,r=Math.max(1,e.step);if(e.visible)for(var i=e.skip;i<n;i+=r){var s=Et(t[i]);pt(s,p)||i%o==0||a&&l===s||(h.position=s,u.append(lo(h,e)),p.push(s))}}return v(this.getMajorTickPositions(),n),v(this.getMinorTickPositions(),o,s/r),u.children},e.prototype.reflow=function(t){for(var e=this,o=e.options,n=e.labels,r=e.title,i=o.vertical,a=n.length,s=i?P:f,c=r?r.box[s]():0,l=this.getActualTickSize()+o.margin+c,h=((this.getRoot()||{}).box||t)[s](),p=0,u=0;u<a;u++){var v=n[u].box[s]();v+l<=h&&(p=Math.max(p,v))}this.box=i?new ve(t.x1,t.y1,t.x1+p+l,t.y2):new ve(t.x1,t.y1,t.x2,t.y1+p+l),this.arrangeTitle(),this.arrangeLabels(),this.arrangeNotes()},e.prototype.getLabelsTickPositions=function(){return this.getMajorTickPositions()},e.prototype.labelTickIndex=function(t){return t.index},e.prototype.arrangeLabels=function(){for(var t=this.options,e=this.labels,o=this.labelsBetweenTicks(),n=t.vertical,r=t.labels.mirror,i=this.getLabelsTickPositions(),a=0;a<e.length;a++){var s=e[a],c=this.labelTickIndex(s),l=n?s.box.height():s.box.width(),h=i[c],p=i[c+1],u=void 0,v=void 0;n?v=u=o?h+(p-h)/2-l/2:h-l/2:o?(u=h,v=p):v=(u=h-l/2)+l,this.positionLabel(s,r,u,v)}},e.prototype.positionLabel=function(t,e,o,n){void 0===n&&(n=o);var r,i=this.options,s=i.vertical,c=this.lineBox(),l=this.getActualTickSize()+i.margin;if(s){var h=c.x2;e?(h+=l,t.options.rotationOrigin=g):(h-=l+t.box.width(),t.options.rotationOrigin=C),r=t.box.move(h,o)}else{var p=c.y1;e?(p-=l+t.box.height(),t.options.rotationOrigin=a):(p+=l,t.options.rotationOrigin=O),r=new ve(o,p,n,p+t.box.height())}t.reflow(r)},e.prototype.autoRotateLabelAngle=function(t,e){return t.width()<e?0:t.height()>e?-90:-45},e.prototype.autoRotateLabels=function(){if(!this.options.autoRotateLabels||this.options.vertical)return!1;for(var t=this.getMajorTickPositions(),e=this.labels,o=Math.min(e.length,t.length-1),n=0,r=0;r<o;r++){var i=Math.abs(t[r+1]-t[r]),a=e[r].box,s=this.autoRotateLabelAngle(a,i);if(0!==s&&(n=s),-90===n)break}if(0!==n){for(var c=0;c<e.length;c++)e[c].options.rotation=n,e[c].reflow(new ve);return!0}},e.prototype.arrangeTitle=function(){var t=this.options,e=this.title,o=t.labels.mirror,n=t.vertical;e&&(n?(e.options.align=o?C:g,e.options.vAlign=e.options.position):(e.options.align=e.options.position,e.options.vAlign=o?O:a),e.reflow(this.box))},e.prototype.arrangeNotes=function(){for(var t=this,e=0;e<this.notes.length;e++){var o=t.notes[e],n=o.options.value,r=void 0;zt(n)?(t.shouldRenderNote(n)?o.show():o.hide(),r=t.noteSlot(n)):o.hide(),o.reflow(r||t.lineBox())}},e.prototype.noteSlot=function(t){return this.getSlot(t)},e.prototype.alignTo=function(t){var e=t.lineBox(),o=this.options.vertical,n=o?A:I;this.box.snapTo(e,n),o?this.box.shrink(0,this.lineBox().height()-e.height()):this.box.shrink(this.lineBox().width()-e.width(),0),this.box[n+1]-=this.lineBox()[n+1]-e[n+1],this.box[n+2]-=this.lineBox()[n+2]-e[n+2]},e.prototype.axisLabelText=function(t,e,o){var n=this,r=nt(e),i=function(){return e.format?n.chartService.format.localeAuto(e.format,[t],e.culture):t};return r?r(Object.assign({},o,{get text(){return i()},value:t,format:e.format,culture:e.culture})):i()},e.prototype.slot=function(t,e,o){var n=this.getSlot(t,e,o);if(n)return n.toRect()},e.prototype.contentBox=function(){var t=this.box.clone(),e=this.labels;if(e.length){var o=this.options.vertical?A:I;if(this.chartService.isPannable(o)){var n=this.maxLabelOffset();t[o+1]-=n.start,t[o+2]+=n.end}else{e[0].options.visible&&t.wrap(e[0].box);var r=e[e.length-1];r.options.visible&&t.wrap(r.box)}}return t},e.prototype.maxLabelOffset=function(){for(var t=this.options,e=t.vertical,o=t.reverse,n=this.labelsBetweenTicks(),r=this.getLabelsTickPositions(),i=e?A:I,a=this.labels,s=o?1:0,c=o?0:1,l=0,h=0,p=0;p<a.length;p++){var u=a[p],v=this.labelTickIndex(u),d=void 0,f=void 0;n?(d=r[v+s],f=r[v+c]):d=f=r[v],l=Math.max(l,d-u.box[i+1]),h=Math.max(h,u.box[i+2]-f)}return{start:l,end:h}},e.prototype.limitRange=function(t,e,o,n,r){var i=this.options;if(t<o&&r<0&&(!zt(i.min)||i.min<=o)||n<e&&r>0&&(!zt(i.max)||n<=i.max))return null;if(e<o&&r>0||n<t&&r<0)return{min:t,max:e};var a=e-t,s=t,c=e;return t<o&&r<0?(s=It(t,o,n),c=It(t+a,o+a,n)):e>n&&r>0&&(c=It(e,o,n),s=It(e-a,o,n-a)),{min:s,max:c}},e.prototype.valueRange=function(){return{min:this.seriesMin,max:this.seriesMax}},e.prototype.lineDir=function(){var t=this.options;return(t.vertical?-1:1)*(t.reverse?-1:1)},e.prototype.lineInfo=function(){var t=this.options.vertical,e=this.lineBox(),o=t?e.height():e.width(),n=t?A:I,r=this.lineDir(),i=n+(1===r?1:2).toString();return{axis:n,axisOrigin:i,axisDir:r,lineBox:e,lineSize:o,lineStart:e[i]}},e.prototype.pointOffset=function(t){var e=this.lineInfo(),o=e.axis,n=e.axisDir,r=e.axisOrigin,i=e.lineBox,a=e.lineSize;return(n>0?t[o]-i[r]:i[r]-t[o])/a},e.prototype.scaleToDelta=function(t,e){var o=It(t,-.999,.999);return o>0?e*Math.min(1,o):e-e/(1+o)},e.prototype.labelsBetweenTicks=function(){return!this.options.justified},e.prototype.prepareUserOptions=function(){},e}(_e);Rt(ho,{labels:{visible:!0,rotation:0,mirror:!1,step:1,skip:0},line:{width:1,color:i,visible:!0},title:{visible:!0,position:s},majorTicks:{align:z,size:4,skip:0,step:1},minorTicks:{align:z,size:3,skip:0,step:1},axisCrossingValue:0,majorTickType:z,minorTickType:w,majorGridLines:{skip:0,step:1},minorGridLines:{visible:!1,width:1,color:i,skip:0,step:1},margin:5,visible:!0,reverse:!1,justified:!0,notes:{label:{text:""}},_alignLines:!0,_deferLabels:!1});const po=ho;var uo="milliseconds",vo="seconds",fo="minutes",mo="hours",yo="days",go="weeks",bo="months",xo="years",wo=1e3,_o=60*wo,zo=60*_o,Co=24*zo,ko=7*Co,Mo=31*Co,Oo=365*Co,So={years:Oo,months:Mo,weeks:ko,days:Co,hours:zo,minutes:_o,seconds:wo,milliseconds:1};function Ho(t,e){return t.getTime()-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*_o}function Po(t,e){return new Date(t.getTime()+e)}function Io(t){var e;return t instanceof Date?e=t:t&&(e=new Date(t)),e}function Ao(t,e){return 0===e&&23===t.getHours()&&(t.setHours(t.getHours()+2),!0)}function Vo(t,e,o,n){var r=t;if(t){var i=Io(t),a=i.getHours();o===xo?Ao(r=new Date(i.getFullYear()+e,0,1),0):o===bo?Ao(r=new Date(i.getFullYear(),i.getMonth()+e,1),a):o===go?(r=Vo(function(t,e){void 0===e&&(e=0);var o=0,n=t.getDay();if(!isNaN(n))for(;n!==e;)0===n?n=6:n--,o++;return Po(t,-o*Co)}(i,n),7*e,yo),Ao(r,a)):o===yo?Ao(r=new Date(i.getFullYear(),i.getMonth(),i.getDate()+e),a):o===mo?r=function(t,e){var o=new Date(t);o.setMinutes(0,0,0);var n=(t.getTimezoneOffset()-o.getTimezoneOffset())*_o;return Po(o,n+e*zo)}(i,e):o===fo?(r=Po(i,e*_o)).getSeconds()>0&&r.setSeconds(0):o===vo?r=Po(i,e*wo):o===uo&&(r=Po(i,e)),o!==uo&&r.getMilliseconds()>0&&r.setMilliseconds(0)}return r}function Eo(t,e,o){return Vo(Io(t),0,e,o)}function To(t,e,o){var n=Io(t);return n&&Eo(n,e,o).getTime()===n.getTime()?n:Vo(n,1,e,o)}function Bo(t,e){return t&&e?t.getTime()-e.getTime():-1}function jo(t,e){return t.getTime()-e}function Lo(t){if(V(t)){for(var e=[],o=0;o<t.length;o++)e.push(Lo(t[o]));return e}if(t)return Io(t).getTime()}function Ro(t,e){return t&&e?Lo(t)===Lo(e):t===e}function Do(t,e,o){return Ho(t,e)/So[o]}function No(t,e,o,n){var r=Io(t),i=Io(e);return(o===bo?r.getMonth()-i.getMonth()+12*(r.getFullYear()-i.getFullYear())+Do(r,new Date(r.getFullYear(),r.getMonth()),yo)/new Date(r.getFullYear(),r.getMonth()+1,0).getDate():o===xo?r.getFullYear()-i.getFullYear()+No(r,new Date(r.getFullYear(),0),bo,1)/12:o===yo||o===go?Do(r,i,o):jo(r,e)/So[o])/n}function Fo(t,e,o){return o===xo?e.getFullYear()-t.getFullYear():o===bo?12*Fo(t,e,xo)+e.getMonth()-t.getMonth():o===yo?Math.floor(jo(e,t)/Co):Math.floor(jo(e,t)/So[o])}function Uo(t,e){return N(e)&&t.parseDate(e)||Io(e)}function Wo(t,e){if(V(e)){for(var o=[],n=0;n<e.length;n++)o.push(Uo(t,e[n]));return o}return Uo(t,e)}function Go(t,e){return D(t.weekStartDay)?t.weekStartDay:e&&e.firstDay?e.firstDay():0}var Ko=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this._ticks={}},e.prototype.categoriesHash=function(){return""},e.prototype.clone=function(){var t=new e(Object.assign({},this.options,{categories:this.options.srcCategories}),this.chartService);return t.createLabels(),t},e.prototype.initUserOptions=function(t){var e=t.categories||[],o=zt(t.min),n=zt(t.max);if(t.srcCategories=t.categories=e,(o||n)&&e.length){var r,i=o?Math.floor(t.min):0;r=n?t.justified?Math.floor(t.max)+1:Math.ceil(t.max):e.length,t.categories=t.categories.slice(i,r)}return t},e.prototype.rangeIndices=function(){var t=this.options,e=t.categories.length||1;return{min:D(t.min)?t.min%1:0,max:D(t.max)&&t.max%1!=0&&t.max<this.totalRange().max?e-(1-t.max%1):e-(t.justified?1:0)}},e.prototype.range=function(){var t=this.options;return{min:D(t.min)?t.min:0,max:D(t.max)?t.max:this.totalRange().max}},e.prototype.roundedRange=function(){return this.range()},e.prototype.totalRange=function(){var t=this.options;return{min:0,max:Math.max(this._seriesMax||0,t.srcCategories.length)-(t.justified?1:0)}},e.prototype.scaleOptions=function(){var t=this.rangeIndices(),e=t.min,o=t.max,n=this.lineBox();return{scale:(this.options.vertical?n.height():n.width())/(o-e||1)*(this.options.reverse?-1:1),box:n,min:e,max:o}},e.prototype.arrangeLabels=function(){t.prototype.arrangeLabels.call(this),this.hideOutOfRangeLabels()},e.prototype.hideOutOfRangeLabels=function(){var t=this.box,e=this.labels;if(e.length>0){var o=this.options.vertical?A:I,n=t[o+1],r=t[o+2],i=e[0],a=Pt(e);(i.box[o+1]>r||i.box[o+2]<n)&&(i.options.visible=!1),(a.box[o+1]>r||a.box[o+2]<n)&&(a.options.visible=!1)}},e.prototype.getMajorTickPositions=function(){return this.getTicks().majorTicks},e.prototype.getMinorTickPositions=function(){return this.getTicks().minorTicks},e.prototype.getLabelsTickPositions=function(){return this.getTicks().labelTicks},e.prototype.tickIndices=function(t){for(var e=this.rangeIndices(),o=e.min,n=e.max,r=Math.ceil(n),i=Math.floor(o),a=[];i<=r;)a.push(i),i+=t;return a},e.prototype.getTickPositions=function(t){for(var e=this.options,o=e.vertical,n=e.reverse,r=this.scaleOptions(),i=r.scale,a=r.box,s=r.min,c=a[(o?A:I)+(n?2:1)],h=this.tickIndices(t),p=[],u=0;u<h.length;u++)p.push(c+Et(i*(h[u]-s),l));return p},e.prototype.getTicks=function(){var t=this.options,e=this._ticks,o=this.rangeIndices(),n=this.lineBox(),r=n.getHash()+o.min+","+o.max+t.reverse+t.justified;if(e._hash!==r){var i=t.minorTicks.visible||t.minorGridLines.visible;e._hash=r,e.labelTicks=this.getTickPositions(1),e.majorTicks=this.filterOutOfRangePositions(e.labelTicks,n),e.minorTicks=i?this.filterOutOfRangePositions(this.getTickPositions(.5),n):[]}return e},e.prototype.filterOutOfRangePositions=function(t,e){if(!t.length)return t;for(var o=this.options.vertical?A:I,n=function(t){return e[o+1]<=t&&t<=e[o+2]},r=t.length-1,i=0;!n(t[i])&&i<=r;)i++;for(var a=r;!n(t[a])&&a>=0;)a--;return t.slice(i,a+1)},e.prototype.lineInfo=function(){var t=this.options,e=t.vertical,o=t.reverse,n=this.lineBox(),r=e?n.height():n.width(),i=e?A:I,a=o?-1:1,s=i+(1===a?1:2).toString();return{axis:i,axisOrigin:s,axisDir:a,lineBox:n,lineSize:r,lineStart:n[s]}},e.prototype.lineDir=function(){return this.options.reverse?-1:1},e.prototype.getSlot=function(t,e,o){var n=this.options,r=n.reverse,i=n.justified,a=this.scaleOptions(),s=a.scale,c=a.box,l=a.min,h=this.lineInfo(),p=h.axis,u=h.lineStart,v=c.clone(),d=!zt(e),f=Bt(t,0),m=Bt(e,f);m=Math.max(m-1,f);var y=u+(f-l)*s,g=u+((m=Math.max(f,m))+1-l)*s;return d&&i&&(g=y),o&&(y=It(y,c[p+1],c[p+2]),g=It(g,c[p+1],c[p+2])),v[p+1]=r?g:y,v[p+2]=r?y:g,v},e.prototype.limitSlot=function(t){var e=this.options.vertical?A:I,o=this.lineBox(),n=t.clone();return n[e+1]=It(t[e+1],o[e+1],o[e+2]),n[e+2]=It(t[e+2],o[e+1],o[e+2]),n},e.prototype.slot=function(e,o,n){var r=Math.floor(this.options.min||0),i=e,a=o;return"string"==typeof i?i=this.categoryIndex(i):D(i)&&(i-=r),"string"==typeof a?a=this.categoryIndex(a):D(a)&&(a-=r),t.prototype.slot.call(this,i,a,n)},e.prototype.pointCategoryIndex=function(t){var e=this.options,o=e.reverse,n=e.justified,r=e.vertical?A:I,i=this.scaleOptions(),a=i.scale,s=i.box,c=i.min,l=i.max,h=o?l:c,p=s[r+1],u=s[r+2],v=t[r];if(v<p||v>u)return null;var d=h+(v-p)/a,f=d%1;return n?d=Math.round(d):0===f&&d>0&&d--,Math.floor(d)},e.prototype.getCategory=function(t){var e=this.pointCategoryIndex(t);return null===e?null:this.options.categories[e]},e.prototype.categoryIndex=function(t){return this.totalIndex(t)-Math.floor(this.options.min||0)},e.prototype.categoryAt=function(t,e){var o=this.options;return(e?o.srcCategories:o.categories)[t]},e.prototype.categoriesCount=function(){return(this.options.categories||[]).length},e.prototype.translateRange=function(t){var e=this.options,o=this.lineBox(),n=e.vertical?o.height():o.width(),r=e.categories.length,i=Et(t/(n/r),v);return{min:i,max:r+i}},e.prototype.scaleRange=function(t,e){var o=Math.abs(this.pointOffset(e)),n=this.limitedRangeIndices(),r=n.max-n.min,i=this.scaleToDelta(t,r),a=o*i,s=(1-o)*i,c=n.min+a,l=n.max-s;return l-c<.1&&(l=c+.1),{min:c,max:l}},e.prototype.zoomRange=function(t,e){var o=this.totalRange(),n=o.min,r=o.max,i=this.scaleRange(t,e);return{min:It(i.min,n,r),max:It(i.max,n,r)}},e.prototype.labelsCount=function(){var t=this.labelsRange();return t.max-t.min},e.prototype.labelsRange=function(){var t=this.options,e=t.justified,o=t.labels,n=this.limitedRangeIndices(!0),r=n.min,i=n.max,a=Math.floor(r);return e?(r=Math.ceil(r),i=Math.floor(i)):(r=Math.floor(r),i=Math.ceil(i)),{min:(r>o.skip?o.skip+o.step*Math.ceil((r-o.skip)/o.step):o.skip)-a,max:(t.categories.length?i+(e?1:0):0)-a}},e.prototype.createAxisLabel=function(t,e,o){var n=this.options,r=n.dataItems?n.dataItems[t]:null,i=Bt(n.categories[t],"");o.dataItem=r;var a=this.axisLabelText(i,e,o);return new Ge(i,a,t,r,e)},e.prototype.shouldRenderNote=function(t){var e=this.limitedRangeIndices();return Math.floor(e.min)<=t&&t<=Math.ceil(e.max)},e.prototype.noteSlot=function(t){var e=this.options,o=t-Math.floor(e.min||0);return this.getSlot(o)},e.prototype.arrangeNotes=function(){t.prototype.arrangeNotes.call(this),this.hideOutOfRangeNotes()},e.prototype.hideOutOfRangeNotes=function(){var t=this.notes,e=this.box;if(t&&t.length)for(var o=this.options.vertical?A:I,n=e[o+1],r=e[o+2],i=0;i<t.length;i++){var a=t[i];a.box&&(r<a.box[o+1]||a.box[o+2]<n)&&a.hide()}},e.prototype.pan=function(t){var e=this.limitedRangeIndices(!0),o=this.scaleOptions().scale,n=Et(t/o,v),r=this.totalRange(),i=e.min+n,a=e.max+n;return this.limitRange(i,a,0,r.max,n)},e.prototype.pointsRange=function(t,e){var o=this.options,n=o.reverse,r=o.vertical?A:I,i=this.limitedRangeIndices(!0),a=this.scaleOptions(),s=a.scale,c=a.box[r+(n?2:1)],l=t[r]-c,h=e[r]-c,p=i.min+l/s,u=i.min+h/s,v=Math.min(p,u),d=Math.max(p,u);if(d-v>=.01)return{min:v,max:d}},e.prototype.valueRange=function(){return this.range()},e.prototype.totalIndex=function(t){var e=this.options,o=this._categoriesMap?this._categoriesMap.get(t):function(t,e){if(t instanceof Date){for(var o=e.length,n=0;n<o;n++)if(Ro(e[n],t))return n;return-1}return e.indexOf(t)}(t,e.srcCategories);return o},e.prototype.currentRangeIndices=function(){var t=this.options,e=0;return D(t.min)&&(e=Math.floor(t.min)),{min:e,max:D(t.max)?t.justified?Math.floor(t.max):Math.ceil(t.max)-1:this.totalCount()-1}},e.prototype.limitedRangeIndices=function(t){var e,o=this.options,n=D(o.min)?o.min:0;if(e=D(o.max)?o.max:D(o.min)?n+o.categories.length:this.totalRange().max||1,t){var r=this.totalRange();n=It(n,0,r.max),e=It(e,0,r.max)}return{min:n,max:e}},e.prototype.totalRangeIndices=function(){return{min:0,max:this.totalRange().max||1}},e.prototype.mapCategories=function(){if(!this._categoriesMap)for(var t=this._categoriesMap=new ht,e=this.options.srcCategories,o=0;o<e.length;o++)t.set(e[o],o)},e.prototype.totalCount=function(){return Math.max(this.options.srcCategories.length,this._seriesMax||0)},e}(po);Rt(Ko,{type:"category",vertical:!1,majorGridLines:{visible:!1,width:1,color:i},labels:{zIndex:1},justified:!1,_deferLabels:!0});const Xo=Ko;var Zo={milliseconds:"HH:mm:ss.fff",seconds:"HH:mm:ss",minutes:"HH:mm",hours:"HH:mm",days:"M/d",weeks:"M/d",months:"MMM 'yy",years:"yyyy"},Yo=[uo,vo,fo,mo,yo,go,bo,xo],qo="fit";function Qo(t,e){e&&(t._range=void 0);var o=t._range;return o||((o=t._range=Xt(t)).min=Io(o.min),o.max=Io(o.max)),o}var Jo=function(t){this.options=t};Jo.prototype.displayIndices=function(){return{min:0,max:1}},Jo.prototype.displayRange=function(){return{}},Jo.prototype.total=function(){return{}},Jo.prototype.valueRange=function(){return{}},Jo.prototype.valueIndex=function(){return-1},Jo.prototype.values=function(){return[]},Jo.prototype.totalIndex=function(){return-1},Jo.prototype.valuesCount=function(){return 0},Jo.prototype.totalCount=function(){return 0},Jo.prototype.dateAt=function(){return null};var $o=function(t,e,o){this.options=o,o.baseUnitStep=o.baseUnitStep||1;var n=o.roundToBaseUnit,r=o.justified;this.start=Vo(t,0,o.baseUnit,o.weekStartDay);var i=this.roundToTotalStep(e),a=!r&&Ro(e,i)&&!o.justifyEnd;this.end=this.roundToTotalStep(e,!r,a?1:0);var s=o.min||t;this.valueStart=this.roundToTotalStep(s),this.displayStart=n?this.valueStart:s;var c=o.max;if(c){var l=!r&&Ro(c,this.roundToTotalStep(c))?-1:0;this.valueEnd=this.roundToTotalStep(c,!1,l),this.displayEnd=n?this.roundToTotalStep(c,!r):o.max}else this.valueEnd=i,this.displayEnd=n||a?this.end:e;this.valueEnd<this.valueStart&&(this.valueEnd=this.valueStart),this.displayEnd<=this.displayStart&&(this.displayEnd=this.roundToTotalStep(this.displayStart,!1,1))};function tn(t,e,o){for(var n,r,i,a=Qo(t.categories),s=(t.max||a.max)-(t.min||a.min),c=t.autoBaseUnitSteps,l=t.maxDateGroups,h=t.baseUnit===qo,p=e?Yo.indexOf(e):0,u=h?Yo[p++]:t.baseUnit,v=s/So[u],d=v;!r||v>=l;){n=n||c[u].slice(0);do{i=n.shift()}while(i&&e===u&&i<o);if(i)v=d/(r=i);else{if(u===Pt(Yo)){r=Math.ceil(d/l);break}if(!h){v>l&&(r=Math.ceil(d/l));break}u=Yo[p++]||Pt(Yo),d=s/So[u],n=null}}t.baseUnitStep=r,t.baseUnit=u}$o.prototype.displayRange=function(){return{min:this.displayStart,max:this.displayEnd}},$o.prototype.displayIndices=function(){if(!this._indices){var t=this.options,e=t.baseUnit,o=t.baseUnitStep,n=No(this.displayStart,this.valueStart,e,o),r=No(this.displayEnd,this.valueStart,e,o);this._indices={min:n,max:r}}return this._indices},$o.prototype.total=function(){return{min:this.start,max:this.end}},$o.prototype.totalCount=function(){return this.totalIndex(this.end)+(this.options.justified?1:0)},$o.prototype.valueRange=function(){return{min:this.valueStart,max:this.valueEnd}},$o.prototype.valueIndex=function(t){var e=this.options;return Math.floor(No(t,this.valueStart,e.baseUnit,e.baseUnitStep))},$o.prototype.totalIndex=function(t){var e=this.options;return Math.floor(No(t,this.start,e.baseUnit,e.baseUnitStep))},$o.prototype.dateIndex=function(t){var e=this.options;return No(t,this.valueStart,e.baseUnit,e.baseUnitStep)},$o.prototype.valuesCount=function(){return this.valueIndex(this.valueEnd)+1},$o.prototype.values=function(){var t=this._values;if(!t){var e=this.options,o=this.valueRange();this._values=t=[];for(var n=o.min;n<=o.max;)t.push(n),n=Vo(n,e.baseUnitStep,e.baseUnit,e.weekStartDay)}return t},$o.prototype.dateAt=function(t,e){var o=this.options;return Vo(e?this.start:this.valueStart,o.baseUnitStep*t,o.baseUnit,o.weekStartDay)},$o.prototype.roundToTotalStep=function(t,e,o){var n=this.options,r=n.baseUnit,i=n.baseUnitStep,a=n.weekStartDay,s=this.start,c=No(t,s,r,i),l=e?Math.ceil(c):Math.floor(c);return o&&(l+=o),Vo(s,l*i,r,a)};var en=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){var t=new e(Object.assign({},this.options),this.chartService);return t.createLabels(),t},e.prototype.categoriesHash=function(){var t=this.dataRange.total().min;return this.options.baseUnit+this.options.baseUnitStep+t},e.prototype.initUserOptions=function(t){return t},e.prototype.initFields=function(){t.prototype.initFields.call(this);var e=this.chartService,o=e.intl,n=this.options,r=n.categories||[];if(r._parsed||((r=Wo(o,r))._parsed=!0),n=X({roundToBaseUnit:!0},n,{categories:r,min:Uo(o,n.min),max:Uo(o,n.max),weekStartDay:Go(n,o)}),e.panning&&e.isPannable(n.vertical?A:I)&&(n.roundToBaseUnit=!1),n.userSetBaseUnit=n.userSetBaseUnit||n.baseUnit,n.userSetBaseUnitStep=n.userSetBaseUnitStep||n.baseUnitStep,this.options=n,n.srcCategories=r,r.length>0){var i=Qo(r,!0),a=n.maxDivisions,s=function(t){var e=(t.baseUnit||"").toLowerCase();return e!==qo&&!pt(e,Yo)&&function(t){for(var e,o,n=t.categories,r=zt(n)?n.length:0,i=b,a=0;a<r;a++){var s=n[a];if(s&&e){var c=Ho(s,e);c>0&&(o=(i=Math.min(i,c))>=Oo?xo:i>=Mo-3*Co?bo:i>=ko?go:i>=Co?yo:i>=zo?mo:i>=_o?fo:vo)}e=s}t.baseUnit=o||yo}(t),e!==qo&&"auto"!==t.baseUnitStep||tn(t),t}(n),c=n._forecast;if(c&&(c.before>0&&(i.min=Vo(i.min,-c.before,s.baseUnit,s.weekStartDay)),c.after>0&&(i.max=Vo(i.max,c.after,s.baseUnit,s.weekStartDay))),this.dataRange=new $o(i.min,i.max,s),a){var l=this.dataRange.displayRange(),h=Object.assign({},n,{justified:!0,roundToBaseUnit:!1,baseUnit:"fit",min:l.min,max:l.max,maxDateGroups:a}),p=this.dataRange.options;tn(h,p.baseUnit,p.baseUnitStep),this.divisionRange=new $o(i.min,i.max,h)}else this.divisionRange=this.dataRange}else n.baseUnit=n.baseUnit||yo,this.dataRange=this.divisionRange=new Jo(n);this.rangeLabels=[]},e.prototype.tickIndices=function(e){var o=this.dataRange,n=this.divisionRange,r=n.valuesCount();if(!this.options.maxDivisions||!r)return t.prototype.tickIndices.call(this,e);var i=[],a=n.values(),s=0;this.options.justified||(a=a.concat(n.dateAt(r)),s=.5);for(var c=0;c<a.length;c++)if(i.push(o.dateIndex(a[c])+s),1!==e&&c>=1){var l=i.length-1;i.splice(c,0,i[l-1]+(i[l]-i[l-1])*e)}return i},e.prototype.shouldRenderNote=function(t){var e=this.range(),o=this.options.categories||[];return Bo(t,e.min)>=0&&Bo(t,e.max)<=0&&o.length},e.prototype.parseNoteValue=function(t){return Uo(this.chartService.intl,t)},e.prototype.noteSlot=function(t){return this.getSlot(t)},e.prototype.translateRange=function(t){var e=this.options,o=e.baseUnit,n=e.weekStartDay,r=e.vertical,i=this.lineBox(),a=r?i.height():i.width(),s=this.range(),c=a/(s.max-s.min),l=Et(t/c,v);if(s.min&&s.max){var h=Po(e.min||s.min,l),p=Po(e.max||s.max,l);s={min:Vo(h,0,o,n),max:Vo(p,0,o,n)}}return s},e.prototype.labelsRange=function(){return{min:this.options.labels.skip,max:this.divisionRange.valuesCount()}},e.prototype.pan=function(t){if(this.isEmpty())return null;var e=this.options,o=this.lineBox(),n=e.vertical?o.height():o.width(),r=this.dataRange.displayRange(),i=r.min,a=r.max,s=this.dataRange.total(),c=Et(t/(n/(a-i)),v)*(e.reverse?-1:1),l=Po(i,c),h=Po(a,c),p=this.limitRange(Lo(l),Lo(h),Lo(s.min),Lo(s.max),c);return p?(p.min=Io(p.min),p.max=Io(p.max),p.baseUnit=e.baseUnit,p.baseUnitStep=e.baseUnitStep||1,p.userSetBaseUnit=e.userSetBaseUnit,p.userSetBaseUnitStep=e.userSetBaseUnitStep,p):void 0},e.prototype.pointsRange=function(e,o){if(this.isEmpty())return null;var n=t.prototype.pointsRange.call(this,e,o),r=this.dataRange.displayRange(),i=this.dataRange.displayIndices(),a=jo(r.max,r.min)/(i.max-i.min),s=this.options;return{min:Po(r.min,n.min*a),max:Po(r.min,n.max*a),baseUnit:s.userSetBaseUnit||s.baseUnit,baseUnitStep:s.userSetBaseUnitStep||s.baseUnitStep}},e.prototype.scaleRange=function(t,e){if(this.isEmpty())return{};var o=this.options,n=o.userSetBaseUnit===qo,r=this.dataRange.total(),i=this.dataRange.displayRange(),a=i.min,s=i.max,c=Math.abs(this.pointOffset(e)),l=s-a,h=this.scaleToDelta(t,l),p=Math.round(c*h),u=Math.round((1-c)*h),v=this.dataRange.options.baseUnit,d=new Date(a.getTime()+p),f=new Date(s.getTime()-u);if(n){var m,y,g=o.autoBaseUnitSteps,b=o.maxDateGroups,x=Pt(g[v])*b*So[v],w=jo(s,a),_=jo(f,d),z=Yo.indexOf(v);if(_<So[v]&&v!==uo)v=Yo[z-1],d=Po(a,y=(w-(b-1)*(m=Pt(g[v]))*So[v])/2),f=Po(s,-y);else if(_>x&&v!==xo){var C=0;do{z++,v=Yo[z],C=0,y=2*So[v];do{m=g[v][C],C++}while(C<g[v].length&&y*m<w)}while(v!==xo&&y*m<w);(y=(y*m-w)/2)>0&&(d=Po(a,-y),f=Po(s,y),d=Po(d,It(f,r.min,r.max)-f),f=Po(f,It(d,r.min,r.max)-d))}}return d&&f&&jo(f,d)>0?{min:d,max:f,baseUnit:o.userSetBaseUnit||o.baseUnit,baseUnitStep:o.userSetBaseUnitStep||o.baseUnitStep}:void 0},e.prototype.zoomRange=function(t,e){var o=this.dataRange.total(),n=this.scaleRange(t,e);return n&&(n.min<o.min&&(n.min=o.min),n.max>o.max&&(n.max=o.max)),n},e.prototype.range=function(){return this.dataRange.displayRange()},e.prototype.createLabels=function(){t.prototype.createLabels.call(this),this.createRangeLabels()},e.prototype.clearLabels=function(){t.prototype.clearLabels.call(this),this.rangeLabels=[]},e.prototype.arrangeLabels=function(){this.arrangeRangeLabels(),t.prototype.arrangeLabels.call(this)},e.prototype.arrangeRangeLabels=function(){var t=this.options,e=this.rangeLabels;if(0!==e.length){var o=this.lineBox(),n=t.vertical,r=t.rangeLabels.mirror||t.labels.mirror,i=e[0];if(i){var a=n?o.y1-i.box.height()/2:o.x1;this.positionLabel(i,r,a)}var s=e[1];if(s){var c=n?o.y2-s.box.height()/2:o.x2;this.positionLabel(s,r,c)}}},e.prototype.autoRotateLabels=function(){t.prototype.autoRotateLabels.call(this),this.autoRotateRangeLabels()},e.prototype.hideOutOfRangeLabels=function(){t.prototype.hideOutOfRangeLabels.call(this),this.hideOverlappingLabels()},e.prototype.hideOverlappingLabels=function(){var t=this.rangeLabels,e=this.labels;if(0!==t.length){var o=t[0];if(o&&o.options.visible)for(var n=0;n<e.length&&a(o,e[n]);n++);var r=t[1];if(r&&r.options.visible)for(var i=e.length-1;i>0&&a(r,e[i]);--i);}function a(t,e){return!(e.options.visible&&!e.box.overlaps(t.box)||(e.options.visible=!1,0))}},e.prototype.contentBox=function(){for(var e=t.prototype.contentBox.call(this),o=this.rangeLabels,n=0;n<o.length;n++){var r=o[n];r.options.visible&&e.wrap(r.box)}return e},e.prototype.createAxisLabel=function(t,e,o){void 0===o&&(o={});var n=this.options,r=n.dataItems&&!n.maxDivisions?n.dataItems[t]:null,i=this.divisionRange.dateAt(t),a=e.dateFormats[this.divisionRange.options.baseUnit];e.format=e.format||a,o.dataItem=r;var s=this.axisLabelText(i,e,o);if(s)return new Ge(i,s,t,r,e)},e.prototype.createRangeLabels=function(){var t=this,e=this.divisionRange,o=e.displayStart,n=e.displayEnd,r=this.options,i=Object.assign({},r.labels,r.rangeLabels,{align:s,zIndex:r.zIndex});if(!0===i.visible){this.normalizeLabelRotation(i),i.alignRotation=s,"auto"===i.rotation&&(i.rotation=0,r.autoRotateRangeLabels=!0);var a=i.dateFormats[this.divisionRange.options.baseUnit];i.format=i.format||a;var c=function(e,o,n){if(n){var r=new Ge(o,n,e,null,i);t.append(r),t.rangeLabels.push(r)}};c(0,o,this.axisLabelText(o,i,{index:0,count:2})),c(1,n,this.axisLabelText(n,i,{index:1,count:2}))}},e.prototype.autoRotateRangeLabels=function(){var t=this,e=this.rangeLabels;if(this.options.autoRotateRangeLabels&&!this.options.vertical&&2===e.length){var o=function(e,o,n){var r=2*Math.abs(o[n+1]-o[n]),i=t.autoRotateLabelAngle(e.box,r);0!==i&&(e.options.rotation=i,e.reflow(new ve))},n=this.getMajorTickPositions();o(e[0],n,0),o(e[1],n,n.length-2)}},e.prototype.categoryIndex=function(t){return this.dataRange.valueIndex(t)},e.prototype.slot=function(t,e,o){var n=this.dataRange,r=t,i=e;r instanceof Date&&(r=n.dateIndex(r)),i instanceof Date&&(i=n.dateIndex(i));var a=this.getSlot(r,i,o);if(a)return a.toRect()},e.prototype.getSlot=function(e,o,n){var r=e,i=o;return typeof r===_&&(r=this.categoryIndex(r)),typeof i===_&&(i=this.categoryIndex(i)),t.prototype.getSlot.call(this,r,i,n)},e.prototype.valueRange=function(){var t=Qo(this.options.srcCategories);return{min:Io(t.min),max:Io(t.max)}},e.prototype.categoryAt=function(t,e){return this.dataRange.dateAt(t,e)},e.prototype.categoriesCount=function(){return this.dataRange.valuesCount()},e.prototype.rangeIndices=function(){return this.dataRange.displayIndices()},e.prototype.labelsBetweenTicks=function(){return!this.divisionRange.options.justified},e.prototype.prepareUserOptions=function(){this.isEmpty()||(this.options.categories=this.dataRange.values())},e.prototype.getCategory=function(t){var e=this.pointCategoryIndex(t);return null===e?null:this.dataRange.dateAt(e)},e.prototype.totalIndex=function(t){return this.dataRange.totalIndex(t)},e.prototype.currentRangeIndices=function(){var t=this.dataRange.valueRange();return{min:this.dataRange.totalIndex(t.min),max:this.dataRange.totalIndex(t.max)}},e.prototype.totalRange=function(){return this.dataRange.total()},e.prototype.totalRangeIndices=function(){var t=this.dataRange.total();return{min:this.dataRange.totalIndex(t.min),max:this.dataRange.totalIndex(t.max)}},e.prototype.totalCount=function(){return this.dataRange.totalCount()},e.prototype.isEmpty=function(){return!this.options.srcCategories.length},e.prototype.roundedRange=function(){if(!1!==this.options.roundToBaseUnit||this.isEmpty())return this.range();var t=this.options,e=Qo(t.srcCategories);return new $o(e.min,e.max,Object.assign({},t,{justified:!1,roundToBaseUnit:!0,justifyEnd:!1})).displayRange()},e}(Xo);Rt(en,{type:p,labels:{dateFormats:Zo},rangeLabels:{visible:!1},autoBaseUnitSteps:{milliseconds:[1,10,100],seconds:[1,2,5,15,30],minutes:[1,2,5,15,30],hours:[1,2,3],days:[1,2,3],weeks:[1,2],months:[1,2,3,6],years:[1,2,3,5,10,25,50]},maxDateGroups:10});const on=en;function nn(t,e){return Et(Math.floor(t/e)*e,v)}function rn(t,e){return Et(Math.ceil(t/e)*e,v)}function an(t){return Math.max(Math.min(t,3e5),-3e5)}var sn=Math.pow(10,1-v),cn=function(t){function e(e,o,n,r){t.call(this,Object.assign({},n,{seriesMin:e,seriesMax:o}),r)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){var e=function(t,e,o){var n=o.narrowRange,r=function(t,e,o){if(!t&&!e)return 0;var n;if(t>=0&&e>=0){var r=t===e?0:t;if(!1===o||!o&&(e-r)/e>.2)return 0;n=Math.max(0,r-(e-r)/2)}else n=t;return n}(t,e,n),i=function(t,e,o){if(!t&&!e)return 1;var n;if(t<=0&&e<=0){var r=t===e?0:e,i=Math.abs((r-t)/r);if(!1===o||!o&&i>.2)return 0;n=Math.min(0,r-(t-r)/2)}else n=e;return n}(t,e,n),a=le(r,i),s={majorUnit:a};return!1!==o.roundToMajorUnit&&(r<0&&ln(r,a,1/3)&&(r-=a),i>0&&ln(i,a,1/3)&&(i+=a)),s.min=nn(r,a),s.max=rn(i,a),s}(t.seriesMin,t.seriesMax,t);return this.totalOptions=function(t,e){return{min:zt(e.min)?Math.min(t.min,e.min):t.min,max:zt(e.max)?Math.max(t.max,e.max):t.max,majorUnit:t.majorUnit}}(e,t),function(t,e){var o,n,r=e;if(e){!function(t,e){for(var o=0;o<e.length;o++){var n=e[o];null===t[n]&&(t[n]=void 0)}}(e,["min","max"]),o=zt(e.min),n=zt(e.max);var i=o||n;i&&e.min===e.max&&(e.min>0?e.min=0:e.max=1),e.majorUnit?(t.min=nn(t.min,e.majorUnit),t.max=rn(t.max,e.majorUnit)):i&&(r=X(t,e),t.majorUnit=le(r.min,r.max))}t.minorUnit=(r.majorUnit||t.majorUnit)/5;var a=X(t,r);return a.min>=a.max&&(o&&!n?a.max=a.min+a.majorUnit:!o&&n&&(a.min=a.max-a.majorUnit)),a}(e,t)},e.prototype.initFields=function(){this.totalMin=this.totalOptions.min,this.totalMax=this.totalOptions.max,this.totalMajorUnit=this.totalOptions.majorUnit,this.seriesMin=this.options.seriesMin,this.seriesMax=this.options.seriesMax},e.prototype.clone=function(){return new e(this.seriesMin,this.seriesMax,Object.assign({},this.options),this.chartService)},e.prototype.startValue=function(){return 0},e.prototype.range=function(){var t=this.options;return{min:t.min,max:t.max}},e.prototype.getDivisions=function(t){if(0===t)return 1;var e=this.options,o=e.max-e.min;return Math.floor(Et(o/t,l))+1},e.prototype.getTickPositions=function(t,e){var o=this.options,n=this.lineInfo(),r=n.axisDir,i=n.axisOrigin,a=n.lineBox,s=t*(n.lineSize/(o.max-o.min)),c=this.getDivisions(t),h=[],p=a[i],u=0;e&&(u=e/t);for(var v=0;v<c;v++)v%u!=0&&h.push(Et(p,l)),p+=s*r;return h},e.prototype.getMajorTickPositions=function(){return this.getTickPositions(this.options.majorUnit)},e.prototype.getMinorTickPositions=function(){return this.getTickPositions(this.options.minorUnit)},e.prototype.getSlot=function(t,e,o){void 0===o&&(o=!1);var n=this.options,r=this.lineInfo(),i=r.axis,a=r.axisDir,s=r.lineBox,c=r.lineSize,l=r.lineStart,h=a*(c/(n.max-n.min)),p=Bt(t,e||0),u=Bt(e,t||0);o&&(p=It(p,n.min,n.max),u=It(u,n.min,n.max));var v=Math.min(p,u)-n.min,d=Math.max(p,u)-n.min,f=new ve(s.x1,s.y1,s.x1,s.y1);return f[i+1]=an(l+h*(a>0?v:d)),f[i+2]=an(l+h*(a>0?d:v)),f},e.prototype.getValue=function(t){var e=this.options,o=Number(e.max),n=Number(e.min),r=this.pointOffset(t);return r<0||r>1?null:Et(n+r*(o-n),v)},e.prototype.translateRange=function(t){var e=this.options,o=e.vertical,n=e.reverse,r=e.max,i=e.min,a=this.lineInfo().lineSize,s=Et(t/(a/(r-i)),v);return!o&&!n||o&&n||(s=-s),{min:i+s,max:r+s,offset:s}},e.prototype.labelsCount=function(){return this.getDivisions(this.options.majorUnit)},e.prototype.createAxisLabel=function(t,e,o){var n=this.options,r=Et(n.min+t*n.majorUnit,v),i=this.axisLabelText(r,e,o);return new Ge(r,i,t,null,e)},e.prototype.shouldRenderNote=function(t){var e=this.range();return e.min<=t&&t<=e.max},e.prototype.pan=function(t){var e=this.translateRange(t);return this.limitRange(e.min,e.max,this.totalMin,this.totalMax,e.offset)},e.prototype.pointsRange=function(t,e){var o=this.getValue(t),n=this.getValue(e),r=Math.min(o,n),i=Math.max(o,n);if(this.isValidRange(r,i))return{min:r,max:i}},e.prototype.scaleRange=function(t,e){var o=Math.abs(this.pointOffset(e)),n=this.options.max-this.options.min,r=this.scaleToDelta(t,n),i=o*r,a=(1-o)*r,s=Et(this.options.min+i,v),c=Et(this.options.max-a,v);return c-s<sn&&(c=s+sn),{min:s,max:c}},e.prototype.zoomRange=function(t,e){var o=this.totalMin,n=this.totalMax,r=this.scaleRange(t,e);return{min:It(r.min,o,n),max:It(r.max,o,n),narrowRange:!1}},e.prototype.isValidRange=function(t,e){return e-t>sn},e}(po);function ln(t,e,o){var n=Et(Math.abs(t%e),v);return 0===n||n>e*(1-o)}Rt(cn,{type:"numeric",min:0,max:1,vertical:!0,majorGridLines:{visible:!0,width:1,color:i},labels:{format:"#.####################"},zIndex:1});const hn=cn;var pn=function(t){function e(e,o,n,r){var i=Io(e),a=Io(o),s=r.intl,c=n||{};c=function(t,e,o){var n,r,i=o.min||t,a=o.max||e,s=o.baseUnit||(a&&i?(n=Ho(a,i),r=mo,n>=Oo?r=xo:n>=Mo?r=bo:n>=ko?r=go:n>=Co&&(r=yo),r):mo),c=So[s],l=o.weekStartDay||0,h=Eo(Lo(i)-1,s,l)||Io(a),p=To(Lo(a)+1,s,l),u=(o.majorUnit?o.majorUnit:void 0)||rn(le(h.getTime(),p.getTime()),c)/c,v=Fo(h,p,s),d=rn(v,u)-v,f=Math.floor(d/2),m=d-f;return o.baseUnit||delete o.baseUnit,o.baseUnit=o.baseUnit||s,o.min=o.min||Vo(h,-f,s,l),o.max=o.max||Vo(p,m,s,l),o.minorUnit=o.minorUnit||u/5,o.majorUnit=u,o}(i,a,c=X(c||{},{min:Uo(s,c.min),max:Uo(s,c.max),axisCrossingValue:Wo(s,c.axisCrossingValues||c.axisCrossingValue),weekStartDay:Go(c,s)})),t.call(this,c,r),this.intlService=s,this.seriesMin=i,this.seriesMax=a;var l=c.weekStartDay||0;this.totalMin=Lo(Eo(Lo(i)-1,c.baseUnit,l)),this.totalMax=Lo(To(Lo(a)+1,c.baseUnit,l))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.seriesMin,this.seriesMax,Object.assign({},this.options),this.chartService)},e.prototype.range=function(){var t=this.options;return{min:t.min,max:t.max}},e.prototype.getDivisions=function(t){var e=this.options;return Math.floor(Fo(e.min,e.max,e.baseUnit)/t+1)},e.prototype.getTickPositions=function(t){for(var e=this.options,o=this.lineInfo(),n=o.axisDir,r=o.lineSize,i=o.lineStart,a=this.getDivisions(t),s=r/jo(e.max,e.min),c=e.weekStartDay||0,h=[i],p=1;p<a;p++){var u=i+jo(Vo(e.min,p*t,e.baseUnit,c),e.min)*s*n;h.push(Et(u,l))}return h},e.prototype.getMajorTickPositions=function(){return this.getTickPositions(this.options.majorUnit)},e.prototype.getMinorTickPositions=function(){return this.getTickPositions(this.options.minorUnit)},e.prototype.getSlot=function(t,e,o){return hn.prototype.getSlot.call(this,Uo(this.intlService,t),Uo(this.intlService,e),o)},e.prototype.getValue=function(t){var e=hn.prototype.getValue.call(this,t);return null!==e?Io(e):null},e.prototype.labelsCount=function(){return this.getDivisions(this.options.majorUnit)},e.prototype.createAxisLabel=function(t,e,o){var n=this.options,r=t*n.majorUnit,i=n.weekStartDay||0,a=n.min;r>0&&(a=Vo(a,r,n.baseUnit,i));var s=e.dateFormats[n.baseUnit];e.format=e.format||s;var c=this.axisLabelText(a,e,o);return new Ge(a,c,t,null,e)},e.prototype.translateRange=function(t){var e=this.options,o=this.lineBox(),n=e.vertical,r=e.reverse,i=n?o.height():o.width(),a=this.range(),s=i/jo(a.max,a.min),c=Et(t/s,v);return!n&&!r||n&&r||(c=-c),{min:Po(e.min,c),max:Po(e.max,c),offset:c}},e.prototype.shouldRenderNote=function(t){var e=this.range();return Bo(t,e.min)>=0&&Bo(t,e.max)<=0},e.prototype.pan=function(t){var e=this.translateRange(t,!0),o=this.limitRange(Lo(e.min),Lo(e.max),this.totalMin,this.totalMax,e.offset);if(o)return{min:Io(o.min),max:Io(o.max)}},e.prototype.pointsRange=function(t,e){var o=this.getValue(t),n=this.getValue(e),r=Math.min(o,n),i=Math.max(o,n);return{min:Io(r),max:Io(i)}},e.prototype.scaleRange=function(t,e){var o=Math.abs(this.pointOffset(e)),n=this.options.max-this.options.min,r=this.scaleToDelta(t,n),i=o*r,a=(1-o)*r,s=Io(Lo(this.options.min)+i),c=Io(Lo(this.options.max)-a);return c-s<1e3&&(c=Io(Lo(s)+1e3)),{min:s,max:c}},e.prototype.zoomRange=function(t,e){var o=this.scaleRange(t,e);return{min:Io(It(Lo(o.min),this.totalMin,this.totalMax)),max:Io(It(Lo(o.max),this.totalMin,this.totalMax))}},e}(po);Rt(pn,{type:p,majorGridLines:{visible:!0,width:1,color:i},labels:{dateFormats:Zo}});const un=pn;var vn=1e-6,dn=function(t){function e(e,o,n,r){var i=X({majorUnit:10,min:e,max:o},n),a=i.majorUnit,s=function(t,e){var o=Et(mn(t,e),v)%1;return t<=0?e:0!==o&&(o<.3||o>.9)?Math.pow(e,mn(t,e)+.2):Math.pow(e,Math.ceil(mn(t,e)))}(o,a),c=function(t,e,o){var n=o.majorUnit,r=t;return t<=0?r=e<=1?Math.pow(n,-2):1:o.narrowRange||(r=Math.pow(n,Math.floor(mn(t,n)))),r}(e,o,i),l=function(t,e,o,n){var r=o.min,i=o.max;return zt(o.axisCrossingValue)&&o.axisCrossingValue<=0&&fn(),zt(n.max)?n.max<=0&&fn():i=e,zt(n.min)?n.min<=0&&fn():r=t,{min:r,max:i}}(c,s,i,n);i.max=l.max,i.min=l.min,i.minorUnit=n.minorUnit||Et(a-1,v),t.call(this,i,r),this.totalMin=zt(n.min)?Math.min(c,n.min):c,this.totalMax=zt(n.max)?Math.max(s,n.max):s,this.logMin=Et(mn(l.min,a),v),this.logMax=Et(mn(l.max,a),v),this.seriesMin=e,this.seriesMax=o,this.createLabels()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.seriesMin,this.seriesMax,Object.assign({},this.options),this.chartService)},e.prototype.startValue=function(){return this.options.min},e.prototype.getSlot=function(t,e,o){var n=this,r=n.options,i=n.logMin,a=n.logMax,s=r.majorUnit,c=r.min,l=r.max,h=this.lineInfo(),p=h.axis,u=h.axisDir,v=h.lineBox,d=h.lineSize,f=h.lineStart,m=u*(d/(a-i)),y=Bt(t,e||1),g=Bt(e,t||1);if(y<=0||g<=0)return null;o&&(y=It(y,c,l),g=It(g,c,l)),y=mn(y,s),g=mn(g,s);var b=Math.min(y,g)-i,x=Math.max(y,g)-i,w=new ve(v.x1,v.y1,v.x1,v.y1);return w[p+1]=an(f+m*(u>0?b:x)),w[p+2]=an(f+m*(u>0?x:b)),w},e.prototype.getValue=function(t){var e=this,o=e.options,n=e.logMin,r=e.logMax,i=o.majorUnit,a=this.lineInfo(),s=a.axis,c=a.axisDir,l=a.lineStart,h=a.lineSize,p=(r-n)/h,u=c*(t[s]-l);if(u<0||u>h)return null;var d=n+u*p;return Et(Math.pow(i,d),v)},e.prototype.range=function(){var t=this.options;return{min:t.min,max:t.max}},e.prototype.translateRange=function(t){var e=this,o=e.options,n=e.logMin,r=e.logMax,i=o.reverse,a=o.vertical,s=o.majorUnit,c=this.lineBox(),l=a?c.height():c.width(),h=Et(t/(l/(r-n)),v);return!a&&!i||a&&i||(h=-h),{min:Math.pow(s,n+h),max:Math.pow(s,r+h),offset:h}},e.prototype.labelsCount=function(){var t=Math.floor(this.logMax);return Math.floor(t-this.logMin)+1},e.prototype.getMajorTickPositions=function(){var t=[];return this.traverseMajorTicksPositions((function(e){t.push(e)}),{step:1,skip:0}),t},e.prototype.createTicks=function(t){var e=this.options,o=e.majorTicks,n=e.minorTicks,r=e.vertical,i=e.labels.mirror,a=this.lineBox(),s={vertical:r};function c(e,o){s.tickX=i?a.x2:a.x2-o.size,s.tickY=i?a.y1-o.size:a.y1,s.position=e,t.append(co(s,o))}return o.visible&&this.traverseMajorTicksPositions(c,o),n.visible&&this.traverseMinorTicksPositions(c,n),[]},e.prototype.createGridLines=function(t){var e=this.options,o=e.minorGridLines,n=e.majorGridLines,r=e.vertical,i=t.lineBox(),a={lineStart:i[r?"x1":"y1"],lineEnd:i[r?"x2":"y2"],vertical:r},s=[],c=this.gridLinesVisual();function l(t,e){pt(t,s)||(a.position=t,c.append(lo(a,e)),s.push(t))}return n.visible&&this.traverseMajorTicksPositions(l,n),o.visible&&this.traverseMinorTicksPositions(l,o),c.children},e.prototype.traverseMajorTicksPositions=function(t,e){for(var o=this.lineInfo(),n=o.lineStart,r=o.step,i=this.logMin,a=this.logMax,s=Math.ceil(i)+e.skip;s<=a;s+=e.step)t(Et(n+r*(s-i),v),e)},e.prototype.traverseMinorTicksPositions=function(t,e){for(var o=this.options,n=o.min,r=o.max,i=o.minorUnit,a=o.majorUnit,s=this.lineInfo(),c=s.lineStart,l=s.step,h=this.logMin,p=this.logMax,u=Math.floor(h);u<p;u++)for(var d=this._minorIntervalOptions(u),f=e.skip;f<i;f+=e.step){var m=d.value+f*d.minorStep;if(m>r)break;m>=n&&t(Et(c+l*(mn(m,a)-h),v),e)}},e.prototype.createAxisLabel=function(t,e,o){var n=Math.ceil(this.logMin+t),r=Math.pow(this.options.majorUnit,n),i=this.axisLabelText(r,e,o);return new Ge(r,i,t,null,e)},e.prototype.shouldRenderNote=function(t){var e=this.range();return e.min<=t&&t<=e.max},e.prototype.pan=function(t){var e=this.translateRange(t);return this.limitRange(e.min,e.max,this.totalMin,this.totalMax,e.offset)},e.prototype.pointsRange=function(t,e){var o=this.getValue(t),n=this.getValue(e);return{min:Math.min(o,n),max:Math.max(o,n)}},e.prototype.scaleRange=function(t,e){var o=this.options.majorUnit,n=mn(this.options.min,o),r=mn(this.options.max,o),i=Math.abs(this.pointOffset(e)),a=r-n,s=this.scaleToDelta(t,a),c=Math.pow(o,n+i*s),l=Math.pow(o,r-(1-i)*s);return l-c<vn&&(l=c+vn),{min:c,max:l}},e.prototype.zoomRange=function(t,e){var o=this.scaleRange(t,e),n=this.totalMin,r=this.totalMax;return{min:It(o.min,n,r),max:It(o.max,n,r)}},e.prototype._minorIntervalOptions=function(t){var e=this.options,o=e.minorUnit,n=e.majorUnit,r=Math.pow(n,t);return{value:r,minorStep:(Math.pow(n,t+1)-r)/o}},e.prototype.lineInfo=function(){var e=t.prototype.lineInfo.call(this);return e.step=e.axisDir*(e.lineSize/(this.logMax-this.logMin)),e},e}(po);function fn(){throw new Error("Non positive values cannot be used for a logarithmic axis")}function mn(t,e){return Math.log(t)/Math.log(e)}Rt(dn,{type:"log",majorUnit:10,minorUnit:1,axisCrossingValue:1,vertical:!0,majorGridLines:{visible:!0,width:1,color:i},zIndex:1,_deferLabels:!0});const yn=dn,gn={createGridLines:function(t){var e,o,n=this.options,r=Math.abs(this.box.center().y-t.lineBox().y1),i=[],a=!1;return n.majorGridLines.visible&&(e=this.majorGridLineAngles(t),a=!0,i=this.renderMajorGridLines(e,r,n.majorGridLines)),n.minorGridLines.visible&&(o=this.minorGridLineAngles(t,a),wt(i,this.renderMinorGridLines(o,r,n.minorGridLines,t,a))),i},renderMajorGridLines:function(t,e,o){return this.renderGridLines(t,e,o)},renderMinorGridLines:function(t,e,o,n,r){var i=this.radiusCallback&&this.radiusCallback(e,n,r);return this.renderGridLines(t,e,o,i)},renderGridLines:function(t,e,o,n){for(var r={stroke:{width:o.width,color:o.color,dashType:o.dashType}},i=this.box.center(),a=new j.geometry.Circle([i.x,i.y],e),s=this.gridLinesVisual(),c=0;c<t.length;c++){var l=new j.drawing.Path(r);n&&(a.radius=n(t[c])),l.moveTo(a.center).lineTo(a.pointAt(t[c]+180)),s.append(l)}return s.children},gridLineAngles:function(t,e,o,n,r){var i=this,a=this.intervals(e,o,n,r),s=t.options,c=s.visible&&!1!==(s.line||{}).visible;return yt(a,(function(t){var e=i.intervalAngle(t);if(!c||90!==e)return e}))}};var bn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.range=function(){return{min:0,max:this.options.categories.length}},e.prototype.reflow=function(t){this.box=t,this.reflowLabels()},e.prototype.lineBox=function(){return this.box},e.prototype.reflowLabels=function(){for(var t=this.labels,e=this.options.labels,o=e.skip||0,n=e.step||1,r=new ve,i=0;i<t.length;i++){t[i].reflow(r);var a=t[i].box;t[i].reflow(this.getSlot(o+i*n).adjacentBox(0,a.width(),a.height()))}},e.prototype.intervals=function(t,e,o,n){void 0===n&&(n=!1);for(var r=this.options,i=r.categories.length/t||1,a=360/i,s=o||1,c=[],h=0,p=e||0;p<i;p+=s)h=r.reverse?360-p*a:p*a,h=Et(h,l)%360,n&&pt(h,n)||c.push(h);return c},e.prototype.majorIntervals=function(){return this.intervals(1)},e.prototype.minorIntervals=function(){return this.intervals(.5)},e.prototype.intervalAngle=function(t){return(360+t+this.options.startAngle)%360},e.prototype.majorAngles=function(){var t=this;return yt(this.majorIntervals(),(function(e){return t.intervalAngle(e)}))},e.prototype.createLine=function(){return[]},e.prototype.majorGridLineAngles=function(t){var e=this.options.majorGridLines;return this.gridLineAngles(t,1,e.skip,e.step)},e.prototype.minorGridLineAngles=function(t,e){var o=this.options,n=o.minorGridLines,r=o.majorGridLines,i=e?this.intervals(1,r.skip,r.step):null;return this.gridLineAngles(t,.5,n.skip,n.step,i)},e.prototype.radiusCallback=function(t,e,o){if(e.options.type!==r){var n=Vt(360/(2*this.options.categories.length)),i=Math.cos(n)*t,a=this.majorAngles();return function(e){return!o&&pt(e,a)?t:i}}},e.prototype.createPlotBands=function(){for(var t=this.options.plotBands||[],e=this._plotbandGroup=new j.drawing.Group({zIndex:-1}),o=0;o<t.length;o++){var n=t[o],r=this.plotBandSlot(n),i=this.getSlot(n.from),a=n.from-Math.floor(n.from);r.startAngle+=a*i.angle;var s=Math.ceil(n.to)-n.to;r.angle-=(s+a)*i.angle;var c=xe.current.createRing(r,{fill:{color:n.color,opacity:n.opacity},stroke:{opacity:n.opacity}});e.append(c)}this.appendVisual(e)},e.prototype.plotBandSlot=function(t){return this.getSlot(t.from,t.to-1)},e.prototype.getSlot=function(t,e){var o=this.options,n=o.justified,r=this.box,i=this.majorAngles(),a=i.length,s=360/a,c=t;o.reverse&&!n&&(c=(c+1)%a);var l=i[c=It(Math.floor(c),0,a-1)];n&&(l-=s/2)<0&&(l+=360);var h=s*(It(Math.ceil(e||c),c,a-1)-c+1);return new me(r.center(),0,r.height()/2,l,h)},e.prototype.slot=function(t,e){var o=this.getSlot(t,e),n=o.startAngle+180,r=n+o.angle;return new j.geometry.Arc([o.center.x,o.center.y],{startAngle:n,endAngle:r,radiusX:o.radius,radiusY:o.radius})},e.prototype.pointCategoryIndex=function(t){for(var e=this.options.categories.length,o=null,n=0;n<e;n++)if(this.getSlot(n).containsPoint(t)){o=n;break}return o},e}(Xo);Rt(bn,{startAngle:90,labels:{margin:$(10)},majorGridLines:{visible:!0},justified:!0}),X(bn.prototype,gn);const xn=bn;var wn=function(t){function e(e,o){t.call(this,e,o);var n=this.options;n.minorUnit=n.minorUnit||n.majorUnit/2}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getDivisions=function(t){return hn.prototype.getDivisions.call(this,t)-1},e.prototype.reflow=function(t){this.box=t,this.reflowLabels()},e.prototype.reflowLabels=function(){for(var t=this,e=t.options,o=t.labels,n=t.options.labels,r=n.skip||0,i=n.step||1,a=new ve,s=this.intervals(e.majorUnit,r,i),c=0;c<o.length;c++){o[c].reflow(a);var l=o[c].box;o[c].reflow(this.getSlot(s[c]).adjacentBox(0,l.width(),l.height()))}},e.prototype.lineBox=function(){return this.box},e.prototype.intervals=function(t,e,o,n){void 0===n&&(n=!1);for(var r=this.options.min,i=this.getDivisions(t),a=[],s=o||1,c=e||0;c<i;c+=s){var l=(360+r+c*t)%360;n&&pt(l,n)||a.push(l)}return a},e.prototype.majorIntervals=function(){return this.intervals(this.options.majorUnit)},e.prototype.minorIntervals=function(){return this.intervals(this.options.minorUnit)},e.prototype.intervalAngle=function(t){return(540-t-this.options.startAngle)%360},e.prototype.createLine=function(){return[]},e.prototype.majorGridLineAngles=function(t){var e=this.options.majorGridLines;return this.gridLineAngles(t,this.options.majorUnit,e.skip,e.step)},e.prototype.minorGridLineAngles=function(t,e){var o=this.options,n=o.minorGridLines,r=o.majorGridLines,i=e?this.intervals(o.majorUnit,r.skip,r.step):null;return this.gridLineAngles(t,o.minorUnit,n.skip,n.step,i)},e.prototype.plotBandSlot=function(t){return this.getSlot(t.from,t.to)},e.prototype.getSlot=function(t,e){var o=this.options,n=this.box,r=o.startAngle,i=It(t,o.min,o.max),a=It(e||i,i,o.max);if(o.reverse&&(i*=-1,a*=-1),(a=(540-a-r)%360)<(i=(540-i-r)%360)){var s=i;i=a,a=s}return new me(n.center(),0,n.height()/2,i,a-i)},e.prototype.slot=function(t,e){void 0===e&&(e=t);var o,n,r=this.options,i=360-r.startAngle,a=this.getSlot(t,e),s=Math.min(t,e),c=Math.max(t,e);return r.reverse?(o=s,n=c):(o=360-c,n=360-s),o=(o+i)%360,n=(n+i)%360,new j.geometry.Arc([a.center.x,a.center.y],{startAngle:o,endAngle:n,radiusX:a.radius,radiusY:a.radius})},e.prototype.getValue=function(t){var e=this.options,o=this.box.center(),n=t.x-o.x,r=t.y-o.y,i=Math.round(Ct(Math.atan2(r,n))),a=e.startAngle;return e.reverse||(i*=-1,a*=-1),(i+a+360)%360},e.prototype.valueRange=function(){return{min:0,max:2*Math.PI}},e}(po);Rt(wn,{type:"polar",startAngle:0,reverse:!1,majorUnit:60,min:0,max:360,labels:{margin:$(10)},majorGridLines:{color:i,visible:!0,width:1},minorGridLines:{color:"#aaa"}}),X(wn.prototype,gn,{createPlotBands:xn.prototype.createPlotBands,majorAngles:xn.prototype.majorAngles,range:hn.prototype.range,labelsCount:hn.prototype.labelsCount,createAxisLabel:hn.prototype.createAxisLabel});const _n=wn;var zn={options:{majorGridLines:{visible:!0}},createPlotBands:function(){var t=this.options,e=t.majorGridLines.type,o=t.plotBands;void 0===o&&(o=[]);for(var n=this.plotArea.polarAxis,i=n.majorAngles(),a=n.box.center(),s=this._plotbandGroup=new j.drawing.Group({zIndex:-1}),c=0;c<o.length;c++){var l,h=o[c],p={fill:{color:h.color,opacity:h.opacity},stroke:{opacity:h.opacity}},u=this.getSlot(h.from,h.to,!0),v=new me(a,a.y-u.y2,a.y-u.y1,0,360);l=e===r?xe.current.createRing(v,p):j.drawing.Path.fromPoints(this.plotBandPoints(v,i),p).close(),s.append(l)}this.appendVisual(s)},plotBandPoints:function(t,e){for(var o=[],n=[],r=[t.center.x,t.center.y],i=new j.geometry.Circle(r,t.innerRadius),a=new j.geometry.Circle(r,t.radius),s=0;s<e.length;s++)o.push(i.pointAt(e[s]+180)),n.push(a.pointAt(e[s]+180));return o.reverse(),o.push(o[0]),n.push(n[0]),n.concat(o)},createGridLines:function(t){var e=this.options,o=this.radarMajorGridLinePositions(),n=t.majorAngles(),r=t.box.center(),i=[];if(e.majorGridLines.visible&&(i=this.renderGridLines(r,o,n,e.majorGridLines)),e.minorGridLines.visible){var a=this.radarMinorGridLinePositions();wt(i,this.renderGridLines(r,a,n,e.minorGridLines))}return i},renderGridLines:function(t,e,o,n){var i={stroke:{width:n.width,color:n.color,dashType:n.dashType}},a=n.skip;void 0===a&&(a=0);var s=n.step;void 0===s&&(s=0);for(var c=this.gridLinesVisual(),l=a;l<e.length;l+=s){var h=t.y-e[l];if(h>0){var p=new j.geometry.Circle([t.x,t.y],h);if(n.type===r)c.append(new j.drawing.Circle(p,i));else{for(var u=new j.drawing.Path(i),v=0;v<o.length;v++)u.lineTo(p.pointAt(o[v]+180));u.close(),c.append(u)}}}return c.children},getValue:function(t){var e=this.lineBox(),o=this.plotArea.polarAxis,n=o.majorAngles(),i=o.box.center(),a=t.distanceTo(i),s=a;if(this.options.majorGridLines.type!==r&&n.length>1){var c=t.x-i.x,l=t.y-i.y,h=(Ct(Math.atan2(l,c))+540)%360;n.sort((function(t,e){return Cn(t,h)-Cn(e,h)}));var p=90-Cn(n[0],n[1])/2,u=180-Cn(h,n[0])-p;s=a*(Math.sin(Vt(u))/Math.sin(Vt(p)))}return this.axisType().prototype.getValue.call(this,new he(e.x1,e.y2-s))}};function Cn(t,e){return 180-Math.abs(Math.abs(t-e)-180)}const kn=zn;var Mn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.radarMajorGridLinePositions=function(){return this.getTickPositions(this.options.majorUnit)},e.prototype.radarMinorGridLinePositions=function(){var t=this.options,e=0;return t.majorGridLines.visible&&(e=t.majorUnit),this.getTickPositions(t.minorUnit,e)},e.prototype.axisType=function(){return t},e}(hn);X(Mn.prototype,kn);const On=Mn;var Sn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.radarMajorGridLinePositions=function(){var t=[];return this.traverseMajorTicksPositions((function(e){t.push(e)}),this.options.majorGridLines),t},e.prototype.radarMinorGridLinePositions=function(){var t=[];return this.traverseMinorTicksPositions((function(e){t.push(e)}),this.options.minorGridLines),t},e.prototype.axisType=function(){return t},e}(yn);X(Sn.prototype,kn);const Hn=Sn;function Pn(t){return t<=0?-1:1}const In=function(t){function e(e){t.call(this),this.closed=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.process=function(t){var e=t.slice(0),o=[],n=this.closed,r=e.length;if(r>2&&(this.removeDuplicates(0,e),r=e.length),r<2||2===r&&e[0].equals(e[1]))return o;var i,a,s=e[0],c=e[1],l=e[2];for(o.push(new j.geometry.Segment(s));s.equals(e[r-1]);)n=!0,e.pop(),r--;if(2===r){var h=this.tangent(s,c,I,A);return Pt(o).controlOut(this.firstControlPoint(h,s,c,I,A)),o.push(new j.geometry.Segment(c,this.secondControlPoint(h,s,c,I,A))),o}if(n){s=e[r-1],c=e[0],l=e[1];var p=this.controlPoints(s,c,l);i=p[1],a=p[0]}else{var u=this.tangent(s,c,I,A);i=this.firstControlPoint(u,s,c,I,A)}for(var v=i,d=0;d<=r-3;d++)if(this.removeDuplicates(d,e),d+3<=(r=e.length)){s=e[d],c=e[d+1],l=e[d+2];var f=this.controlPoints(s,c,l);Pt(o).controlOut(v),v=f[1];var m=f[0];o.push(new j.geometry.Segment(c,m))}if(n){s=e[r-2],c=e[r-1],l=e[0];var y=this.controlPoints(s,c,l);Pt(o).controlOut(v),o.push(new j.geometry.Segment(c,y[0])),Pt(o).controlOut(y[1]),o.push(new j.geometry.Segment(l,a))}else{var g=this.tangent(c,l,I,A);Pt(o).controlOut(v),o.push(new j.geometry.Segment(l,this.secondControlPoint(g,c,l,I,A)))}return o},e.prototype.removeDuplicates=function(t,e){for(;e[t+1]&&(e[t].equals(e[t+1])||e[t+1].equals(e[t+2]));)e.splice(t+1,1)},e.prototype.invertAxis=function(t,e,o){var n=!1;if(t.x===e.x)n=!0;else if(e.x===o.x)(e.y<o.y&&t.y<=e.y||o.y<e.y&&e.y<=t.y)&&(n=!0);else{var r=this.lineFunction(t,e),i=this.calculateFunction(r,o.x);t.y<=e.y&&o.y<=i||e.y<=t.y&&o.y>=i||(n=!0)}return n},e.prototype.isLine=function(t,e,o){var n=this.lineFunction(t,e),r=this.calculateFunction(n,o.x);return t.x===e.x&&e.x===o.x||Et(r,1)===Et(o.y,1)},e.prototype.lineFunction=function(t,e){var o=(e.y-t.y)/(e.x-t.x);return[t.y-o*t.x,o]},e.prototype.controlPoints=function(t,e,o){var n,r=I,i=A,a=!1,s=!1;if(this.isLine(t,e,o))n=this.tangent(t,e,I,A);else{var c={x:this.isMonotonicByField(t,e,o,I),y:this.isMonotonicByField(t,e,o,A)};c.x&&c.y?(n=this.tangent(t,o,I,A),a=!0):(this.invertAxis(t,e,o)&&(r=A,i=I),c[r]?n=0:(n=.01*(o[i]<t[i]&&t[i]<=e[i]||t[i]<o[i]&&e[i]<=t[i]?Pn((o[i]-t[i])*(e[r]-t[r])):-Pn((o[r]-t[r])*(e[i]-t[i]))),s=!0))}var l=this.secondControlPoint(n,t,e,r,i);if(s){var h=r;r=i,i=h}var p=this.firstControlPoint(n,e,o,r,i);return a&&(this.restrictControlPoint(t,e,l,n),this.restrictControlPoint(e,o,p,n)),[l,p]},e.prototype.restrictControlPoint=function(t,e,o,n){t.y<e.y?e.y<o.y?(o.x=t.x+(e.y-t.y)/n,o.y=e.y):o.y<t.y&&(o.x=e.x-(e.y-t.y)/n,o.y=t.y):o.y<e.y?(o.x=t.x-(t.y-e.y)/n,o.y=e.y):t.y<o.y&&(o.x=e.x+(t.y-e.y)/n,o.y=t.y)},e.prototype.tangent=function(t,e,o,n){var r=e[o]-t[o],i=e[n]-t[n];return 0===r?0:i/r},e.prototype.isMonotonicByField=function(t,e,o,n){return o[n]>e[n]&&e[n]>t[n]||o[n]<e[n]&&e[n]<t[n]},e.prototype.firstControlPoint=function(t,e,o,n,r){var i=e[n],a=.333*(o[n]-i);return this.point(i+a,e[r]+a*t,n,r)},e.prototype.secondControlPoint=function(t,e,o,n,r){var i=e[n],a=o[n],s=.333*(a-i);return this.point(a-s,o[r]-s*t,n,r)},e.prototype.point=function(t,e,o,n){var r=new j.geometry.Point;return r[o]=t,r[n]=e,r},e.prototype.calculateFunction=function(t,e){for(var o=t.length,n=0,r=0;r<o;r++)n+=Math.pow(e,r)*t[r];return n},e}(j.Class);var An=function(t){function e(e){t.call(this),this._axis=e,this.options=e.options}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.value=function(t){var e=this._axis;return e.getCategory?e.getCategory(t):e.getValue(t)},e.prototype.slot=function(t,e,o){return void 0===o&&(o=!0),this._axis.slot(t,e,o)},e.prototype.range=function(){return this._axis.range()},e.prototype.valueRange=function(){return this._axis.valueRange()},e}(j.Class);const Vn=An;function En(t,e){for(var o=0;o<e.length;o++)if(e[o].options.name===t)return e[o].prepareUserOptions(),new Vn(e[o])}var Tn=function(t){this.visual=t.visual,this.chartsVisual=t.chartContainer.visual,this._pane=t};Tn.prototype.findAxisByName=function(t){return En(t,this._pane.axes)};const Bn=Tn,jn=function(t){function e(e){t.call(this),this._plotArea=e,this.visual=e.visual,this.backgroundVisual=e._bgVisual}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(j.Class);function Ln(t){for(var e=t.length,o=0,n=0;n<e;n++)D(t[n])&&o++;return o}var Rn={min:function(t){for(var e=t.length,o=b,n=0;n<e;n++){var r=t[n];D(r)&&(o=Math.min(o,r))}return o===b?t[0]:o},max:function(t){for(var e=t.length,o=x,n=0;n<e;n++){var r=t[n];D(r)&&(o=Math.max(o,r))}return o===x?t[0]:o},sum:function(t){for(var e=t.length,o=0,n=0;n<e;n++){var r=t[n];D(r)&&(o+=r)}return o},sumOrNull:function(t){var e=null;return Ln(t)&&(e=Rn.sum(t)),e},count:function(t){for(var e=t.length,o=0,n=0;n<e;n++){var r=t[n];null!==r&&zt(r)&&o++}return o},avg:function(t){var e=Ln(t),o=t[0];return e>0&&(o=Rn.sum(t)/e),o},first:function(t){for(var e=t.length,o=0;o<e;o++){var n=t[o];if(null!==n&&zt(n))return n}return t[0]}};const Dn=Rn;function Nn(t,e){return null===e?e:at(t)(e)}var Fn=function(t){function e(){t.call(this),this._valueFields={},this._otherFields={},this._nullValue={},this._undefinedValue={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,o){var n=this;void 0===e&&(e=[S]),void 0===o&&(o={});for(var r=0;r<t.length;r++){var i=t[r];n._valueFields[i]=e,n._otherFields[i]=o,n._nullValue[i]=n._makeValue(e,null),n._undefinedValue[i]=n._makeValue(e,void 0)}},e.prototype.canonicalFields=function(t){return this.valueFields(t).concat(this.otherFields(t))},e.prototype.valueFields=function(t){return this._valueFields[t.type]||[S]},e.prototype.otherFields=function(t){return this._otherFields[t.type]||[S]},e.prototype.bindPoint=function(t,e,o){var n,r,i=t.data,a=zt(o)?o:i[e],s={valueFields:{value:a}},c=this.valueFields(t),l=this._otherFields[t.type];if(null===a)r=this._nullValue[t.type];else if(zt(a)){if(Array.isArray(a)){var h=a.slice(c.length);r=this._bindFromArray(a,c),n=this._bindFromArray(h,l)}else if("object"==typeof a){var p=this.sourceFields(t,c),u=this.sourceFields(t,l);r=this._bindFromObject(a,c,p),n=this._bindFromObject(a,l,u)}}else r=this._undefinedValue[t.type];return zt(r)&&(1===c.length?s.valueFields.value=r[c[0]]:s.valueFields=r),s.fields=n||{},s},e.prototype._makeValue=function(t,e){for(var o={},n=t.length,r=0;r<n;r++)o[t[r]]=e;return o},e.prototype._bindFromArray=function(t,e){var o={};if(e)for(var n=Math.min(e.length,t.length),r=0;r<n;r++)o[e[r]]=t[r];return o},e.prototype._bindFromObject=function(t,e,o){void 0===o&&(o=e);var n={};if(e)for(var r=e.length,i=0;i<r;i++){var a=e[i],s=o[i];null!==s&&(n[a]=Nn(s,t))}return n},e.prototype.sourceFields=function(t,e){var o=[];if(e)for(var n=e.length,r=0;r<n;r++){var i=e[r],a=i===S?"field":i+"Field";o.push(null!==t[a]?t[a]||i:null)}return o},e}(j.Class);Fn.current=new Fn;const Un=Fn;var Wn=/percent(?:\w*)\((\d+)\)/,Gn=new RegExp("^stddev(?:\\((\\d+(?:\\.\\d+)?)\\))?$"),Kn=function(t){function e(e,o,n){t.call(this),this.initGlobalRanges(e,o,n)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initGlobalRanges=function(t,e,o){var n=e.data,r=Gn.exec(t);if(r){this.valueGetter=this.createValueGetter(e,o);var i=this.getAverage(n),a=this.getStandardDeviation(n,i,!1),s=r[1]?parseFloat(r[1]):1,c={low:i.value-a*s,high:i.value+a*s};this.globalRange=function(){return c}}else if(t.indexOf&&t.indexOf("stderr")>=0){this.valueGetter=this.createValueGetter(e,o);var l=this.getStandardError(n,this.getAverage(n));this.globalRange=function(t){return{low:t-l,high:t+l}}}},e.prototype.createValueGetter=function(t,e){var o,n=t.data,r=Un.current,i=r.valueFields(t),a=zt(n[0])?n[0]:{};return V(a)?o=at("["+(e?i.indexOf(e):0)+"]"):D(a)?o=at():typeof a===_&&(o=at(r.sourceFields(t,i)[i.indexOf(e)])),o},e.prototype.getErrorRange=function(t,e){var o,n,r;if(!zt(e))return null;if(this.globalRange)return this.globalRange(t);if(V(e))o=t-e[0],n=t+e[1];else if(D(r=parseFloat(e)))o=t-r,n=t+r;else{if(!(r=Wn.exec(e)))throw new Error("Invalid ErrorBar value: "+e);var i=t*(parseFloat(r[1])/100);o=t-Math.abs(i),n=t+Math.abs(i)}return{low:o,high:n}},e.prototype.getStandardError=function(t,e){return this.getStandardDeviation(t,e,!0)/Math.sqrt(e.count)},e.prototype.getStandardDeviation=function(t,e,o){for(var n=t.length,r=o?e.count-1:e.count,i=0,a=0;a<n;a++){var s=this.valueGetter(t[a]);D(s)&&(i+=Math.pow(s-e.value,2))}return Math.sqrt(i/r)},e.prototype.getAverage=function(t){for(var e=t.length,o=0,n=0,r=0;r<e;r++){var i=this.valueGetter(t[r]);D(i)&&(o+=i,n++)}return{value:o/n,count:n}},e}(j.Class);const Xn=Kn;var Zn=j.support.browser||{},Yn=600,qn="fadeIn",Qn=.8,Jn=Zn.msie?.001:0,$n="errorLow",tr="errorHigh",er="zero",or="interpolate",nr="above",rr="below",ir="smooth",ar="step",sr="area",cr="bar",lr="boxPlot",hr="bubble",pr="bullet",ur="candlestick",vr="column",dr="donut",fr="funnel",mr="pyramid",yr="heatmap",gr="horizontalWaterfall",br="line",xr="ohlc",wr="pie",_r="polarArea",zr="polarLine",Cr="polarScatter",kr="radarArea",Mr="radarColumn",Or="radarLine",Sr="rangeArea",Hr="rangeBar",Pr="rangeColumn",Ir="scatter",Ar="scatterLine",Vr="verticalArea",Er="verticalBoxPlot",Tr="verticalBullet",Br="verticalLine",jr="verticalRangeArea",Lr="waterfall",Rr=[cr,vr,xr,ur,lr,Er,pr,Pr,Hr,Lr,gr],Dr="linearTrendline",Nr="movingAverageTrendline",Fr=[Dr,Nr],Ur="seriesClick",Wr="seriesHover",Gr="seriesOver",Kr="seriesLeave",Xr="plotAreaHover",Zr="plotAreaLeave",Yr="drag",qr="dragEnd",Qr="dragStart",Jr="zoomStart",$r="zoom",ti="zoomEnd",ei="selectStart",oi="select",ni="selectEnd",ri="showTooltip",ii="hideTooltip",ai="log",si="category",ci="insideEnd",li="outsideEnd",hi="wheel",pi="drilldown",ui=function(t){function e(e,o,n,r,i,a){t.call(this,a),this.low=e,this.high=o,this.isVertical=n,this.chart=r,this.series=i}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e,o=this.options.endCaps,n=this.isVertical,r=this.getAxis().getSlot(this.low,this.high),i=t.center(),a=this.getCapsWidth(t,n),s=n?i.x:i.y,c=s-a,l=s+a;n?(e=[new he(i.x,r.y1),new he(i.x,r.y2)],o&&e.push(new he(c,r.y1),new he(l,r.y1),new he(c,r.y2),new he(l,r.y2)),this.box=new ve(c,r.y1,l,r.y2)):(e=[new he(r.x1,i.y),new he(r.x2,i.y)],o&&e.push(new he(r.x1,c),new he(r.x1,l),new he(r.x2,c),new he(r.x2,l)),this.box=new ve(r.x1,c,r.x2,l)),this.linePoints=e},e.prototype.getCapsWidth=function(t,e){var o=e?t.width():t.height();return Math.min(Math.floor(o/2),4)||4},e.prototype.createVisual=function(){var t=this,e=this.options,o=e.visual;o?this.visual=o({low:this.low,high:this.high,rect:this.box.toRect(),sender:this.getSender(),options:{endCaps:e.endCaps,color:e.color,line:e.line},createVisual:function(){t.createDefaultVisual();var e=t.visual;return delete t.visual,e}}):this.createDefaultVisual()},e.prototype.createDefaultVisual=function(){var e=this.options,o=this.linePoints,n={stroke:{color:e.color,width:e.line.width,dashType:e.line.dashType}};t.prototype.createVisual.call(this);for(var r=0;r<o.length;r+=2){var i=new j.drawing.Path(n).moveTo(o[r].x,o[r].y).lineTo(o[r+1].x,o[r+1].y);L(i),this.visual.append(i)}},e}(_e);Rt(ui,{animation:{type:qn,delay:Yn},endCaps:!0,line:{width:2},zIndex:1});const vi=ui;var di=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getAxis=function(){return this.chart.seriesValueAxis(this.series)},e}(vi);const fi=di;function mi(t){for(var e=0;e<t.length;e++)if(zt(t[e].zIndex))return!0}function yi(t,e){null!==e&&t.push(e)}function gi(t){return Ln(t)===t.length}function bi(t,e,o){var n=e.visible;if(zt(n))return n;var r=t.pointVisibility;return r?r[o]:void 0}function xi(t){for(var e=t.data,o=[],n=0,r=0,i=0;i<e.length;i++){var a=Un.current.bindPoint(t,i),s=a.valueFields.value;N(s)&&(s=parseFloat(s)),D(s)?(a.visible=!1!==bi(t,a.fields,i),a.value=Math.abs(s),o.push(a),a.visible&&(n+=a.value),0!==s&&r++):o.push(null)}return{total:n,points:o,count:r}}function wi(t){for(var e=t.length,o=0,n=0;n<e;n++)o=Math.max(o,t[n].data.length);return o}function _i(t,e){return t&&e?t.toLowerCase()===e.toLowerCase():t===e}var zi=5;function Ci(t,e,o,n){void 0===o&&(o={}),void 0===n&&(n=!1);var r=o.defaults=o.defaults||{},i=o.depth=o.depth||0,a=!1;if(o.excluded=o.excluded||[],i>zi)return null;for(var s in t)if(!pt(s,o.excluded)&&t.hasOwnProperty(s)){var c=t[s];U(c)?(a=!0,n||(t[s]=Bt(c(e),r[s]))):Z(c)&&(n||(o.defaults=r[s]),o.depth++,a=Ci(c,e,o,n)||a,o.depth--)}return a}function ki(t,e){for(var o=[],n=[].concat(e),r=0;r<t.length;r++){var i=t[r];pt(i.type,n)&&o.push(i)}return o}function Mi(t,e,o){if(null===e)return e;var n="_date_"+t,r=e[n];return r||(r=Uo(o,at(t)(e)),e[n]=r),r}function Oi(t){var e=t.overlay;return e&&e.gradient&&"none"!==e.gradient}function Si(t){return zt(t)&&null!==t}function Hi(t,e){var o=t.type,n=e instanceof Date;return!o&&n||_i(o,p)}function Pi(t){return 1===t.length?t[0]:t}var Ii=/area/i;function Ai(t,e){var o=Un.current.bindPoint(t,null,e).valueFields;for(var n in o)if(F(o[n]))return!0}function Vi(t){var e,o,n=t.start,r=t.dir,i=t.min,a=t.max,s=t.getter,c=t.hasItem,l=t.series,h=n;do{c(h+=r)&&(e=Ai(l,(o=s(h)).item))}while(i<=h&&h<=a&&!e);if(e)return o}function Ei(t,e,o,n,r){var i=e.min,a=e.max,s=i>0&&i<o,c=a+1<o;if(s||c){var l,h,p,u=function(t){return t.missingValues?t.missingValues:Ii.test(t.type)||t.stack?er:or}(t);u!==or?(s&&(l=n(i-1)),c&&(h=n(a+1))):(s&&(l=Ai(t,(p=n(i-1)).item)?p:Vi({start:i,dir:-1,min:0,max:o-1,getter:n,hasItem:r,series:t})),c&&(h=Ai(t,(p=n(a+1)).item)?p:Vi({start:a,dir:1,min:0,max:o-1,getter:n,hasItem:r,series:t}))),l&&(t._outOfRangeMinPoint=l),h&&(t._outOfRangeMaxPoint=h)}}var Ti=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this.categoryAxis=e.seriesCategoryAxis(o.series[0]),this.valueAxisRanges={},this.points=[],this.categoryPoints=[],this.seriesPoints=[],this.seriesOptions=[],this._evalSeries=[],this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.traverseDataPoints(this.addValue.bind(this))},e.prototype.pointOptions=function(t,e){var o=this.seriesOptions[e];if(!o){var n=this.pointType().prototype.defaults;this.seriesOptions[e]=o=X({},n,{vertical:!this.options.invertAxes},t)}return o},e.prototype.plotValue=function(t){if(!t)return 0;if(this.options.isStacked100&&D(t.value)){for(var e=t.categoryIx,o=this.categoryPoints[e],n=[],r=0,i=0;i<o.length;i++){var a=o[i];if(a){var s=t.series.stack,c=a.series.stack;if(s&&c&&s.group!==c.group)continue;D(a.value)&&(r+=Math.abs(a.value),n.push(Math.abs(a.value)))}}if(r>0)return t.value/r}return t.value},e.prototype.plotRange=function(t,e){void 0===e&&(e=0);var o=this.categoryPoints[t.categoryIx];if(this.options.isStacked){for(var n=this.plotValue(t),r=n>=0,i=e,a=!1,s=0;s<o.length;s++){var c=o[s];if(t===c)break;var l=t.series.stack,h=c.series.stack;if(l&&h){if(typeof l===M&&l!==h)continue;if(l.group&&l.group!==h.group)continue}var p=this.plotValue(c);(p>=0&&r||p<0&&!r)&&(i+=p,n+=p,a=!0,this.options.isStacked100&&(n=Math.min(n,1)))}return a&&(i-=e),[i,n]}var u=t.series,v=this.seriesValueAxis(u),d=this.categoryAxisCrossingValue(v);return[d,F(t.value)?t.value:d]},e.prototype.stackLimits=function(t,e){for(var o=b,n=x,r=0;r<this.categoryPoints.length;r++){var i=this.categoryPoints[r];if(i)for(var a=0;a<i.length;a++){var s=i[a];if(s&&(s.series.stack===e||s.series.axis===t)){var c=this.plotRange(s,0)[1];zt(c)&&isFinite(c)&&(n=Math.max(n,c),o=Math.min(o,c))}}}return{min:o,max:n}},e.prototype.updateStackRange=function(){var t=this,e=this.options,o=e.isStacked,n=e.series,r={};if(o)for(var i=0;i<n.length;i++){var a=n[i],s=a.axis,c=s+a.stack,l=r[c];if(!l){l=t.stackLimits(s,a.stack);var h=t.errorTotals;h&&(h.negative.length&&(l.min=Math.min(l.min,Xt(h.negative).min)),h.positive.length&&(l.max=Math.max(l.max,Xt(h.positive).max))),l.min!==b||l.max!==x?r[c]=l:l=null}l&&(t.valueAxisRanges[s]=l)}},e.prototype.addErrorBar=function(t,e,o){var n,r=t.value,i=t.series,a=t.seriesIx,s=t.options.errorBars,c=e.fields[$n],l=e.fields[tr];D(c)&&D(l)?n={low:c,high:l}:s&&zt(s.value)&&(this.seriesErrorRanges=this.seriesErrorRanges||[],this.seriesErrorRanges[a]=this.seriesErrorRanges[a]||new Xn(s.value,i,S),n=this.seriesErrorRanges[a].getErrorRange(r,s.value)),n&&(t.low=n.low,t.high=n.high,this.addPointErrorBar(t,o))},e.prototype.addPointErrorBar=function(t,e){var o=!this.options.invertAxes,n=t.options.errorBars,r=t.series,i=t.low,a=t.high;if(this.options.isStacked){var s=this.stackedErrorRange(t,e);i=s.low,a=s.high}else{var c={categoryIx:e,series:r};this.updateRange({value:i},c),this.updateRange({value:a},c)}var l=new fi(i,a,o,this,r,n);t.errorBars=[l],t.append(l)},e.prototype.stackedErrorRange=function(t,e){var o=this.plotRange(t,0)[1]-t.value,n=t.low+o,r=t.high+o;return this.errorTotals=this.errorTotals||{positive:[],negative:[]},n<0&&(this.errorTotals.negative[e]=Math.min(this.errorTotals.negative[e]||0,n)),r>0&&(this.errorTotals.positive[e]=Math.max(this.errorTotals.positive[e]||0,r)),{low:n,high:r}},e.prototype.addValue=function(t,e){var o=e.categoryIx,n=e.series,r=e.seriesIx,i=this.categoryPoints[o];i||(this.categoryPoints[o]=i=[]);var a=this.seriesPoints[r];a||(this.seriesPoints[r]=a=[]);var s=this.createPoint(t,e);s&&(Object.assign(s,e),s.owner=this,s.noteText=t.fields.noteText,zt(s.dataItem)||(s.dataItem=n.data[o]),this.addErrorBar(s,t,o)),this.points.push(s),a.push(s),i.push(s),this.updateRange(t.valueFields,e)},e.prototype.evalPointOptions=function(t,e,o){var n=o.categoryIx,r=o.category,i=o.series,a=o.seriesIx,s={defaults:i._defaults,excluded:["data","aggregate","_events","tooltip","content","template","visual","toggle","_outOfRangeMinPoint","_outOfRangeMaxPoint","drilldownSeriesFactory"]},c=this._evalSeries[a];zt(c)||(this._evalSeries[a]=c=Ci(t,{},s,!0));var l=t;return c&&Ci(l=X({},l),{value:e,category:r,index:n,series:i,dataItem:i.data[n]},s),l},e.prototype.updateRange=function(t,e){var o=e.series.axis,n=t.value,r=this.valueAxisRanges[o];isFinite(n)&&null!==n&&((r=this.valueAxisRanges[o]=r||{min:b,max:x}).min=Math.min(r.min,n),r.max=Math.max(r.max,n))},e.prototype.seriesValueAxis=function(t){var e=this.plotArea,o=t.axis,n=o?e.namedValueAxes[o]:e.valueAxis;if(!n)throw new Error("Unable to locate value axis with name "+o);return n},e.prototype.reflow=function(t){var e=this,o=this.categorySlots=[],n=this.points,r=this.categoryAxis,i=0;this.traverseDataPoints((function(t,a){var s=a.categoryIx,c=a.series,l=e.seriesValueAxis(c),h=n[i++],p=o[s];if(p||(o[s]=p=e.categorySlot(r,s,l)),h){var u=e.plotRange(h,l.startValue()),v=e.valueSlot(l,u);if(v){var d=e.pointSlot(p,v);h.aboveAxis=e.aboveAxis(h,l),h.stackValue=u[1],e.options.isStacked100&&(h.percentage=e.plotValue(h)),e.reflowPoint(h,d)}else h.visible=!1}})),this.reflowCategories(o),!this.options.clip&&this.options.limitPoints&&this.points.length&&this.limitPoints(),this.box=t},e.prototype.valueSlot=function(t,e){return t.getSlot(e[0],e[1],!this.options.clip)},e.prototype.limitPoints=function(){for(var t=this.categoryPoints,e=t[0].concat(Pt(t)),o=0;o<e.length;o++)e[o]&&this.limitPoint(e[o])},e.prototype.limitPoint=function(t){var e=this.categoryAxis.limitSlot(t.box);e.equals(t.box)||t.reflow(e)},e.prototype.aboveAxis=function(t,e){var o=this.categoryAxisCrossingValue(e),n=t.value;return e.options.reverse?n<o:n>=o},e.prototype.categoryAxisCrossingValue=function(t){var e=this.categoryAxis,o=t.options;return[].concat(o.axisCrossingValues||o.axisCrossingValue)[e.axisIndex||0]||0},e.prototype.reflowPoint=function(t,e){t.reflow(e)},e.prototype.reflowCategories=function(){},e.prototype.pointSlot=function(t,e){var o=this.options.invertAxes,n=o?e:t,r=o?t:e;return new ve(n.x1,r.y1,n.x2,r.y2)},e.prototype.categorySlot=function(t,e){return t.getSlot(e)},e.prototype.traverseDataPoints=function(t){for(var e=this,o=this.options.series,n=wi(o),r=o.length,i=0;i<r;i++)e._outOfRangeCallback(o[i],"_outOfRangeMinPoint",i,t);for(var a=0;a<n;a++)for(var s=0;s<r;s++){var c=o[s],l=e.categoryAxis.categoryAt(a);t(e.plotArea.bindPoint(c,a),{category:l,categoryIx:a,categoriesCount:n,series:c,seriesIx:s})}for(var h=0;h<r;h++)e._outOfRangeCallback(o[h],"_outOfRangeMaxPoint",h,t)},e.prototype._outOfRangeCallback=function(t,e,o,n){var r=t[e];if(r){var i=r.categoryIx;n(this.plotArea.bindPoint(t,i,r.item),{category:r.category,categoryIx:i,series:t,seriesIx:o,dataItem:r.item})}},e.prototype.formatPointValue=function(t,e){return null===t.value?"":this.chartService.format.auto(e,t.value)},e.prototype.pointValue=function(t){return t.valueFields.value},e}(_e);Rt(Ti,{series:[],invertAxes:!1,isStacked:!1,clip:!0,limitPoints:!0});const Bi=Ti;var ji={click:function(t,e){return t.trigger(Ur,this.eventArgs(e))},hover:function(t,e){return t.trigger(Wr,this.eventArgs(e))},over:function(t,e){return t.trigger(Gr,this.eventArgs(e))},out:function(t,e){return t.trigger(Kr,this.eventArgs(e))},eventArgs:function(t){return{value:this.value,percentage:this.percentage,stackValue:this.stackValue,category:this.category,series:this.series,dataItem:this.dataItem,runningTotal:this.runningTotal,total:this.total,element:St(t),originalEvent:t,point:this}}};const Li=ji,Ri={createNote:function(){var t=this.options.notes,e=this.noteText||t.label.text;!1!==t.visible&&zt(e)&&null!==e&&(this.note=new Xe({value:this.value,text:e,dataItem:this.dataItem,category:this.category,series:this.series},this.options.notes,this.owner.chartService),this.append(this.note))}};var Di=function(t){function e(e,o){t.call(this),this.value=e,this.options=o,this.aboveAxis=Bt(this.options.aboveAxis,!0),this.tooltipTracking=!0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t=this.options,e=t.markers,o=t.labels;if(!this._rendered){if(this._rendered=!0,e.visible&&e.size&&(this.marker=this.createMarker(),this.append(this.marker)),o.visible){var n=nt(o),r=this.pointData(),i=this.value;n?i=n(r):o.format&&(i=this.formatValue(o.format)),this.label=new De(i,X({align:s,vAlign:s,margin:{left:5,right:5},zIndex:Bt(o.zIndex,this.series.zIndex)},o),r),this.append(this.label)}this.createNote(),this.errorBar&&this.append(this.errorBar)}},e.prototype.markerBorder=function(){var t=this.options.markers,e=t.background,o=X({color:this.color},t.border);return zt(o.color)||(o.color=new j.Color(e).brightness(Qn).toHex()),o},e.prototype.createVisual=function(){},e.prototype.createMarker=function(){var t=this.options.markers;return new Me({type:t.type,width:t.size,height:t.size,rotation:t.rotation,background:t.background,border:this.markerBorder(),opacity:t.opacity,zIndex:Bt(t.zIndex,this.series.zIndex),animation:t.animation,visual:t.visual},{dataItem:this.dataItem,value:this.value,series:this.series,category:this.category})},e.prototype.markerBox=function(){return this.marker||(this.marker=this.createMarker(),this.marker.reflow(this._childBox)),this.marker.box},e.prototype.reflow=function(t){var e=this.options,o=this.aboveAxis,n=e.vertical;this.render(),this.box=t;var r=t.clone();if(n?o?r.y1-=r.height():r.y2+=r.height():o?r.x1+=r.width():r.x2-=r.width(),this._childBox=r,this.marker&&this.marker.reflow(r),this.reflowLabel(r),this.errorBars)for(var i=0;i<this.errorBars.length;i++)this.errorBars[i].reflow(r);if(this.note){var a=this.markerBox();if(!e.markers.visible||!e.markers.size){var s=a.center();a=new ve(s.x,s.y,s.x,s.y)}this.note.reflow(a)}},e.prototype.reflowLabel=function(t){var e=this.options,o=this.label,n=e.labels.position;o&&(n=(n=n===nr?O:n)===rr?a:n,o.reflow(t),o.box.alignTo(this.markerBox(),n),o.reflow(o.box))},e.prototype.createHighlight=function(){var t=this.options.highlight.markers,e=this.markerBorder().color,o=this.options.markers,n=o.size+(o.border.width||0)+(t.border.width||0),r=new Me({type:o.type,width:n,height:n,rotation:o.rotation,background:t.color||e,border:{color:t.border.color,width:t.border.width,opacity:Bt(t.border.opacity,1)},opacity:Bt(t.opacity,1)});return r.reflow(this._childBox),r.getElement()},e.prototype.highlightVisual=function(){return(this.marker||{}).visual},e.prototype.highlightVisualArgs=function(){var t,e,o=this.marker;if(o)e=o.paddingBox.toRect(),t=o.visual;else{var n=this.options.markers.size,r=n/2,i=this.box.center();e=new j.geometry.Rect([i.x-r,i.y-r],[n,n])}return{options:this.options,rect:e,visual:t}},e.prototype.tooltipAnchor=function(){var t=this.markerBox(),e=this.owner.pane.clipBox();if(!e||e.overlaps(t)){var o,n,r=t.x2+5,i=g;return this.aboveAxis?(o=t.y1,n=a):(o=t.y2,n=O),{point:new he(r,o),align:{horizontal:i,vertical:n}}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.overlapsBox=function(t){return this.markerBox().overlaps(t)},e.prototype.unclipElements=function(){this.label&&(this.label.options.noclip=!0),this.note&&(this.note.options.noclip=!0)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,percentage:this.percentage,stackValue:this.stackValue,series:this.series}},e}(_e);Di.prototype.defaults={vertical:!0,markers:{visible:!0,background:H,size:8,type:c,border:{width:2},opacity:1},labels:{visible:!1,position:nr,margin:$(3),padding:$(4),animation:{type:qn,delay:Yn}},notes:{label:{}},highlight:{markers:{border:{color:"#fff",width:2}},zIndex:100},errorBars:{line:{width:1}}},X(Di.prototype,Li),X(Di.prototype,Ri);const Ni=Di;var Fi=function(t){function e(e,o,n){t.call(this),this.linePoints=e,this.series=o,this.seriesIx=n}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.points=function(){return this.toGeometryPoints(this.linePoints)},e.prototype.toGeometryPoints=function(t){for(var e=[],o=0,n=t.length;o<n;o++)t[o]&&!1!==t[o].visible&&e.push(t[o]._childBox.toRect().center());return e},e.prototype.createVisual=function(){var t=this,e=this.series.visual;e?(this.visual=e({points:this.toGeometryPoints(this.linePoints),series:this.series,sender:this.getSender(),createVisual:function(){return t.segmentVisual(),t.visual}}),this.visual&&!zt(this.visual.options.zIndex)&&(this.visual.options.zIndex=this.series.zIndex)):this.segmentVisual()},e.prototype.segmentVisual=function(){var t=this.options,e=this.series,o=e.color,n=e._defaults;U(o)&&n&&(o=n.color);var r=j.drawing.Path.fromPoints(this.points(),{stroke:{color:o,width:e.width,opacity:e.opacity,dashType:e.dashType},zIndex:e.zIndex});t.closed&&r.close(),this.visual=r},e.prototype.aliasFor=function(t,e){return this.parent.getNearestPoint(e.x,e.y,this.seriesIx)},e}(_e);Rt(Fi,{closed:!1});const Ui=Fi;var Wi={calculateStepPoints:function(t){for(var e=this.parent.plotArea.seriesCategoryAxis(this.series).options,o=e.justified,n=e.vertical,r=e.reverse,i=n?I:A,a=n?A:I,s=r?2:1,c=s,l=Gi(t[0],i,s,a,c),h=[l],p=1;p<t.length;p++){var u=Gi(t[p],i,s,a,c);if(l[i]!==u[i]){var v=new j.geometry.Point;v[i]=l[i],v[a]=u[a],h.push(v,u)}l=u}return o?l!==Pt(h)&&h.push(l):h.push(Gi(Pt(t),i,s,a,r?1:2)),h}};function Gi(t,e,o,n,r){var i=t.box,a=new j.geometry.Point;return a[e]=i[e+o],a[n]=i[n+r],a}const Ki=Wi;var Xi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.points=function(){return this.calculateStepPoints(this.linePoints)},e}(Ui);X(Xi.prototype,Ki);const Zi=Xi;var Yi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.segmentVisual=function(){var t=this.series,e=t._defaults,o=t.color;U(o)&&e&&(o=e.color);var n=new In(this.options.closed).process(this.points()),r=new j.drawing.Path({stroke:{color:o,width:t.width,opacity:t.opacity,dashType:t.dashType},zIndex:t.zIndex});r.segments.push.apply(r.segments,n),this.visual=r},e}(Ui);const qi=Yi;var Qi={renderSegments:function(){var t,e=this,o=this.options,n=this.seriesPoints,r=o.series,i=n.length;this._segments=[];for(var a=0;a<i;a++){for(var s=r[a],c=e.sortPoints(n[a]),l=c.length,h=[],p=0;p<l;p++){var u=c[p];u?h.push(u):e.seriesMissingValues(s)!==or&&(h.length>1&&(t=e.createSegment(h,s,a,t),e._addSegment(t)),h=[])}h.length>1&&(t=e.createSegment(h,s,a,t),e._addSegment(t))}this.children.unshift.apply(this.children,this._segments)},_addSegment:function(t){this._segments.push(t),t.parent=this},sortPoints:function(t){return t},seriesMissingValues:function(t){var e=t.missingValues;return!e&&this.options.isStacked?er:e||or},getNearestPoint:function(t,e,o){for(var n,r=new he(t,e),i=this.seriesPoints[o],a=b,s=0;s<i.length;s++){var c=i[s];if(c&&zt(c.value)&&null!==c.value&&!1!==c.visible){var l=c.box.center().distanceTo(r);l<a&&(n=c,a=l)}}return n}};const Ji=Qi;var $i=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this._setEnd(this.options.box.x1)},e.prototype.step=function(t){var e=this.options.box;this._setEnd(ut(e.x1,e.x2,t))},e.prototype._setEnd=function(t){var e=this.element,o=e.segments,n=o[1].anchor(),r=o[2].anchor();e.suspend(),n.setX(t),e.resume(),r.setX(t)},e}(j.drawing.Animation);Rt($i,{duration:Yn}),j.drawing.AnimationFactory.current.register("clip",$i);const ta=$i,ea={createAnimation:function(){var t=this.getRoot();if(t&&!1!==(t.options||{}).transitions){var e=t.size(),o=j.drawing.Path.fromRect(e.toRect());this.visual.clip(o),this.animation=new ta(o,{box:e}),mi(this.options.series)&&this._setChildrenAnimation(o)}},_setChildrenAnimation:function(t){for(var e=this.animationPoints(),o=0;o<e.length;o++){var n=e[o];n&&n.visual&&zt(n.visual.options.zIndex)&&n.visual.clip(t)}}};var oa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.updateStackRange(),this.renderSegments()},e.prototype.pointType=function(){return Ni},e.prototype.createPoint=function(t,e){var o=e.series,n=e.seriesIx,r=this.seriesMissingValues(o),i=t.valueFields.value;if(!zt(i)||null===i){if(r!==er)return null;i=0}var a=this.pointOptions(o,n);a=this.evalPointOptions(a,i,e);var s=t.fields.color||o.color;U(o.color)&&(s=a.color);var c=new Ni(i,a);return c.color=s,this.append(c),c},e.prototype.plotRange=function(t){var e=this.plotValue(t);if(this.options.isStacked)for(var o=t.categoryIx,n=this.categoryPoints[o],r=0;r<n.length;r++){var i=n[r];if(t===i)break;e+=this.plotValue(i),this.options.isStacked100&&(e=Math.min(e,1))}return[e,e]},e.prototype.createSegment=function(t,e,o){var n=e.style;return new(n===ar?Zi:n===ir?qi:Ui)(t,e,o)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++)e.push((t[o]||{}).marker);return e.concat(this._segments)},e.prototype.supportsPointInactiveOpacity=function(){return!1},e}(Bi);X(oa.prototype,Ji,ea);const na=oa;var ra=function(t){function e(e,o,n,r,i){t.call(this,e,o,n),this.prevSegment=r,this.stackPoints=i}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createVisual=function(){var t=this.series,e=t._defaults,o=t.line||{},n=t.color;U(n)&&e&&(n=e.color),this.visual=new j.drawing.Group({zIndex:t.zIndex}),this.createFill({fill:{color:n,opacity:t.opacity},stroke:null}),o.width>0&&!1!==o.visible&&this.createStroke({stroke:X({color:n,opacity:t.opacity,lineCap:"butt"},o)})},e.prototype.strokeSegments=function(){var t=this._strokeSegments;return t||(t=this._strokeSegments=this.createStrokeSegments()),t},e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.points())},e.prototype.stackSegments=function(){return this.prevSegment?this.prevSegment.createStackSegments(this.stackPoints):this.createStackSegments(this.stackPoints)},e.prototype.createStackSegments=function(t){return this.segmentsFromPoints(this.toGeometryPoints(t)).reverse()},e.prototype.segmentsFromPoints=function(t){return t.map((function(t){return new j.geometry.Segment(t)}))},e.prototype.createStroke=function(t){var e=new j.drawing.Path(t);e.segments.push.apply(e.segments,this.strokeSegments()),this.visual.append(e)},e.prototype.hasStackSegment=function(){return this.prevSegment||this.stackPoints&&this.stackPoints.length},e.prototype.createFill=function(t){var e=this.strokeSegments(),o=e.slice(0),n=this.hasStackSegment();if(n){var r=this.stackSegments();wt(o,r)}var i=new j.drawing.Path(t);i.segments.push.apply(i.segments,o),!n&&e.length>1&&this.fillToAxes(i),this.visual.append(i)},e.prototype.fillToAxes=function(t){var e=this.parent,o=e.options.invertAxes,n=e.seriesValueAxis(this.series),r=e.categoryAxisCrossingValue(n),i=n.getSlot(r,r,!0),a=this.strokeSegments(),s=a[0].anchor(),c=Pt(a).anchor(),l=o?i.x1:i.y1;o?t.lineTo(l,c.y).lineTo(l,s.y):t.lineTo(c.x,l).lineTo(s.x,l)},e}(Ui);const ia=ra;var aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.calculateStepPoints(this.linePoints))},e.prototype.createStackSegments=function(t){return this.segmentsFromPoints(this.calculateStepPoints(t)).reverse()},e}(ia);X(aa.prototype,Ki);const sa=aa;var ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){var t=new In(this.options.closed),e=this.points();return t.process(e)},e.prototype.createStackSegments=function(){for(var t=this.strokeSegments(),e=[],o=t.length-1;o>=0;o--){var n=t[o];e.push(new j.geometry.Segment(n.anchor(),n.controlOut(),n.controlIn()))}return e},e}(ia);const la=ca;var ha=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createSegment=function(t,e,o,n){var r,i,a=this.options.isStacked,s=(e.line||{}).style;return a&&o>0&&n&&("gap"!==this.seriesMissingValues(e)?(i=n.linePoints,r=n):i=this._gapStackPoints(t,o,s)),new(s===ar?sa:s===ir?la:ia)(t,e,o,r,i)},e.prototype.reflow=function(e){t.prototype.reflow.call(this,e);var o=this._stackPoints;if(o)for(var n=0;n<o.length;n++){var r=o[n],i=this.categoryAxis.getSlot(r.categoryIx);r.reflow(i)}},e.prototype._gapStackPoints=function(t,e,o){var n=this,r=this.seriesPoints,i=t[0].categoryIx,a=t.length;i<0&&(i=0,a--);var s=i+a,c=this.seriesOptions[0]._outOfRangeMinPoint?1:0,l=[];this._stackPoints=this._stackPoints||[];for(var h=i;h<s;h++){var p=h+c,u=e,v=void 0;do{v=r[--u][p]}while(u>0&&!v);if(v)o!==ar&&h>i&&!r[u][p-1]&&l.push(n._previousSegmentPoint(h,p,p-1,u)),l.push(v),o!==ar&&h+1<s&&!r[u][p+1]&&l.push(n._previousSegmentPoint(h,p,p+1,u));else{var d=n._createGapStackPoint(h);n._stackPoints.push(d),l.push(d)}}return l},e.prototype._previousSegmentPoint=function(t,e,o,n){for(var r,i=this.seriesPoints,a=n;a>0&&!r;)r=i[--a][o];return r?r=i[a][e]:(r=this._createGapStackPoint(t),this._stackPoints.push(r)),r},e.prototype._createGapStackPoint=function(t){var e=this.pointOptions({},0),o=new Ni(0,e);return o.categoryIx=t,o.series={},o},e.prototype.seriesMissingValues=function(t){return t.missingValues||er},e.prototype.supportsPointInactiveOpacity=function(){return!1},e}(na);const pa=ha;var ua=function(t){function e(){t.call(this),this.axisRanges={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.update=function(t){var e=this.axisRanges;for(var o in t){var n=t[o],r=e[o];e[o]=r=r||{min:b,max:x},r.min=Math.min(r.min,n.min),r.max=Math.max(r.max,n.max)}},e.prototype.reset=function(t){this.axisRanges[t]=void 0},e.prototype.query=function(t){return this.axisRanges[t]},e}(j.Class);const va=ua;var da=function(t){function e(e,o,n){t.call(this,o),this.textBox=new De(e,this.options,n),this.append(this.textBox)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createVisual=function(){this.textBox.options.noclip=this.options.noclip},e.prototype.reflow=function(t){var e=this.options,o=e.vertical,n=e.aboveAxis,r=this.children[0],i=r.options,c=r.box,l=r.options.padding,h=t;i.align=o?s:g,i.vAlign=o?O:s,e.position===ci?o?(i.vAlign=O,!n&&c.height()<t.height()&&(i.vAlign=a)):i.align=n?C:g:e.position===s?(i.vAlign=s,i.align=s):"insideBase"===e.position?o?i.vAlign=n?a:O:i.align=n?g:C:e.position===li&&(o?h=n?new ve(t.x1,t.y1-c.height(),t.x2,t.y1):new ve(t.x1,t.y2,t.x2,t.y2+c.height()):(i.align=s,h=n?new ve(t.x2,t.y1,t.x2+c.width(),t.y2):new ve(t.x1-c.width(),t.y1,t.x1,t.y2))),e.rotation||(o?l.left=l.right=(h.width()-r.contentBox.width())/2:l.top=l.bottom=(h.height()-r.contentBox.height())/2),r.reflow(h)},e.prototype.alignToClipBox=function(t){var e=this.options.vertical?A:I,o=e+"1",n=e+"2",r=this.children[0],i=this.parent.box;if(i[o]<t[o]||t[n]<i[n]){var a=r.paddingBox.clone();a[o]=Math.max(i[o],t[o]),a[n]=Math.min(i[n],t[n]),this.reflow(a)}},e}(_e);Rt(da,{position:li,margin:$(3),padding:$(4),color:i,background:"",border:{width:1,color:""},aboveAxis:!0,vertical:!1,animation:{type:qn,delay:Yn},zIndex:2});const fa=da;var ma=function(t){function e(e,o){t.call(this),this.options=o,this.color=o.color||H,this.aboveAxis=Bt(this.options.aboveAxis,!0),this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this._rendered||(this._rendered=!0,this.createLabel(),this.createNote(),this.errorBar&&this.append(this.errorBar))},e.prototype.createLabel=function(){var t=this.options,e=t.labels;if(e.visible){var o,n=this.pointData(),r=nt(e);o=r?r(n):this.formatValue(e.format),this.label=new fa(o,X({vertical:t.vertical},e),n),this.append(this.label)}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.reflow=function(t){this.render();var e=this.label;if(this.box=t,e&&(e.options.aboveAxis=this.aboveAxis,e.reflow(t)),this.note&&this.note.reflow(t),this.errorBars)for(var o=0;o<this.errorBars.length;o++)this.errorBars[o].reflow(t)},e.prototype.createVisual=function(){var e=this,o=this.box,n=this.options,r=n.visual;if(!1!==this.visible)if(t.prototype.createVisual.call(this),r){var i=this.rectVisual=r({category:this.category,dataItem:this.dataItem,value:this.value,sender:this.getSender(),series:this.series,percentage:this.percentage,stackValue:this.stackValue,runningTotal:this.runningTotal,total:this.total,rect:o.toRect(),createVisual:function(){var t=new j.drawing.Group;return e.createRect(t),t},options:n});i&&this.visual.append(i)}else o.width()>0&&o.height()>0&&this.createRect(this.visual)},e.prototype.createRect=function(t){var e=this.options,o=e.border,n=zt(o.opacity)?o.opacity:e.opacity,r=this.box.toRect();r.size.width=Math.round(r.size.width);var i=this.rectVisual=j.drawing.Path.fromRect(r,{fill:{color:this.color,opacity:e.opacity},stroke:{color:this.getBorderColor(),width:o.width,opacity:n,dashType:o.dashType}}),a=this.box.width(),s=this.box.height();if((e.vertical?a:s)>6&&(L(i),(a<1||s<1)&&(i.options.stroke.lineJoin="round")),t.append(i),Oi(e)){var c=this.createGradientOverlay(i,{baseColor:this.color},X({end:e.vertical?void 0:[0,1]},e.overlay));t.append(c)}},e.prototype.createHighlight=function(t){return L(j.drawing.Path.fromRect(this.box.toRect(),t))},e.prototype.highlightVisual=function(){return this.rectVisual},e.prototype.highlightVisualArgs=function(){return{options:this.options,rect:this.box.toRect(),visual:this.rectVisual}},e.prototype.getBorderColor=function(){var t=this.color,e=this.options.border,o=e._brightness||Qn,n=e.color;return zt(n)||(n=new j.Color(t).brightness(o).toHex()),n},e.prototype.tooltipAnchor=function(){var t,e,o=this,n=o.options,r=o.box,i=o.aboveAxis,s=this.owner.pane.clipBox()||r,c=g,l=O;if(n.vertical)t=Math.min(r.x2,s.x2)+5,i?e=Math.max(r.y1,s.y1):(e=Math.min(r.y2,s.y2),l=a);else{var h=Math.max(r.x1,s.x1),p=Math.min(r.x2,s.x2);n.isStacked?(l=a,i?(c=C,t=p):t=h,e=Math.max(r.y1,s.y1)-5):(i?t=p+5:(t=h-5,c=C),e=Math.max(r.y1,s.y1))}return{point:new he(t,e),align:{horizontal:c,vertical:l}}},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,percentage:this.percentage,stackValue:this.stackValue,runningTotal:this.runningTotal,total:this.total,series:this.series}},e}(_e);X(ma.prototype,Li),X(ma.prototype,Ri),ma.prototype.defaults={border:{width:1},vertical:!0,overlay:{gradient:"glass"},labels:{visible:!1,format:"{0}"},opacity:1,notes:{label:{}}};const ya=ma;function ga(t,e){t.forEach(e)}function ba(t,e){for(var o=t.length,n=o-1;n>=0;n--)e(t[n],n-o-1)}var xa=function(t){function e(e){t.call(this,e),this.forEach=e.rtl?ba:ga}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options,o=e.vertical,n=e.gap,r=e.spacing,i=this.children,a=i.length,s=o?A:I,c=a+n+r*(a-1),l=(o?t.height():t.width())/c,h=t[s+1]+l*(n/2);this.forEach(i,(function(e,o){var n=(e.box||t).clone();n[s+1]=h,n[s+2]=h+l,e.reflow(n),o<a-1&&(h+=l*r),h+=l}))},e}(_e);Rt(xa,{vertical:!1,gap:0,spacing:0});const wa=xa;var _a=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){for(var e=this.options.vertical?I:A,o=this.children,n=o.length,r=this.box=new ve,i=0;i<n;i++){var a=o[i];if(!1!==a.visible){var s=a.box.clone();s.snapTo(t,e),0===i&&(r=this.box=s.clone()),a.reflow(s),r.wrap(s)}}},e}(_e);Rt(_a,{vertical:!0});const za=_a;var Ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.updateStackRange()},e.prototype.pointType=function(){return ya},e.prototype.clusterType=function(){return wa},e.prototype.stackType=function(){return za},e.prototype.stackLimits=function(e,o){return t.prototype.stackLimits.call(this,e,o)},e.prototype.createPoint=function(t,e){var o=e.categoryIx,n=e.series,r=e.seriesIx,i=this.options,a=this.children,s=i.isStacked,c=this.pointValue(t),l=this.pointOptions(n,r),h=l.labels;s&&h.position===li&&(h.position=ci),l.isStacked=s;var p=t.fields.color||n.color;c<0&&l.negativeColor&&(p=l.negativeColor),l=this.evalPointOptions(l,c,e),U(n.color)&&(p=l.color);var u=new(this.pointType())(c,l);u.color=p;var v=a[o];return v||(v=new(this.clusterType())({vertical:i.invertAxes,gap:i.gap,spacing:i.spacing,rtl:!i.invertAxes&&(this.chartService||{}).rtl}),this.append(v)),s?this.getStackWrap(n,v).append(u):v.append(u),u},e.prototype.getStackWrap=function(t,e){var o,n=t.stack,r=n&&n.group||n,i=e.children;if(typeof r===M){for(var a=0;a<i.length;a++)if(i[a]._stackGroup===r){o=i[a];break}}else o=i[0];return o||((o=new(this.stackType())({vertical:!this.options.invertAxes}))._stackGroup=r,e.append(o)),o},e.prototype.categorySlot=function(t,e,o){var n=this.options,r=t.getSlot(e),i=o.startValue();if(n.isStacked){var a=o.getSlot(i,i,!0),s=n.invertAxes?I:A;r[s+1]=r[s+2]=a[s+1]}return r},e.prototype.reflowCategories=function(t){for(var e=this.children,o=e.length,n=0;n<o;n++)e[n].reflow(t[n])},e.prototype.createAnimation=function(){this._setAnimationOptions(),t.prototype.createAnimation.call(this),mi(this.options.series)&&this._setChildrenAnimation()},e.prototype._setChildrenAnimation=function(){for(var t=this.points,e=0;e<t.length;e++){var o=t[e],n=o.visual;n&&zt(n.options.zIndex)&&(o.options.animation=this.options.animation,o.createAnimation())}},e.prototype._setAnimationOptions=function(){var t,e=this.options,o=e.animation||{};if(e.isStacked){var n=this.seriesValueAxis(e.series[0]);t=n.getSlot(n.startValue())}else t=this.categoryAxis.getSlot(0);o.origin=new j.geometry.Point(t.x1,t.y1),o.vertical=!e.invertAxes},e}(Bi);Rt(Ca,{animation:{type:cr}});const ka=Ca;var Ma=function(t){function e(e,o){t.call(this,o),this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this,o=e.options,n=e.value,r=e.owner.seriesValueAxis(o),i=r.getSlot(n.open,n.close),a=r.getSlot(n.low,n.high);i.x1=a.x1=t.x1,i.x2=a.x2=t.x2,this.realBody=i;var s=a.center().x,c=[];c.push([[s,a.y1],[s,i.y1]]),c.push([[s,i.y2],[s,a.y2]]),this.lines=c,this.box=a.clone().wrap(i),this._rendered||(this._rendered=!0,this.createNote()),this.reflowNote()},e.prototype.reflowNote=function(){this.note&&this.note.reflow(this.box)},e.prototype.createVisual=function(){t.prototype.createVisual.call(this),this._mainVisual=this.mainVisual(this.options),this.visual.append(this._mainVisual),this.createOverlay()},e.prototype.mainVisual=function(t){var e=new j.drawing.Group;return this.createBody(e,t),this.createLines(e,t),e},e.prototype.createBody=function(t,e){var o=j.drawing.Path.fromRect(this.realBody.toRect(),{fill:{color:this.color,opacity:e.opacity},stroke:null});e.border.width>0&&o.options.set("stroke",{color:this.getBorderColor(),width:e.border.width,dashType:e.border.dashType,opacity:Bt(e.border.opacity,e.opacity)}),L(o),t.append(o),Oi(e)&&t.append(this.createGradientOverlay(o,{baseColor:this.color},X({end:e.vertical?void 0:[0,1]},e.overlay)))},e.prototype.createLines=function(t,e){this.drawLines(t,e,this.lines,e.line)},e.prototype.drawLines=function(t,e,o,n){if(o)for(var r={stroke:{color:n.color||this.color,opacity:Bt(n.opacity,e.opacity),width:n.width,dashType:n.dashType,lineCap:"butt"}},i=0;i<o.length;i++){var a=j.drawing.Path.fromPoints(o[i],r);L(a),t.append(a)}},e.prototype.getBorderColor=function(){var t=this.options.border,e=t.color;return zt(e)||(e=new j.Color(this.color).brightness(t._brightness).toHex()),e},e.prototype.createOverlay=function(){var t=j.drawing.Path.fromRect(this.box.toRect(),{fill:{color:H,opacity:0},stroke:null});this.visual.append(t)},e.prototype.createHighlight=function(){var t=this.options.highlight,e=this.color;this.color=t.color||this.color;var o=this.mainVisual(X({},this.options,{line:{color:this.getBorderColor()}},t));return this.color=e,o},e.prototype.highlightVisual=function(){return this._mainVisual},e.prototype.highlightVisualArgs=function(){return{options:this.options,rect:this.box.toRect(),visual:this._mainVisual}},e.prototype.tooltipAnchor=function(){var t=this.box,e=this.owner.pane.clipBox()||t;return{point:new he(t.x2+5,Math.max(t.y1,e.y1)+5),align:{horizontal:g,vertical:O}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e}(_e);Rt(Ma,{vertical:!0,border:{_brightness:.8},line:{width:2},overlay:{gradient:"glass"},tooltip:{format:"<table><tr><th colspan='2'>{4:d}</th></tr><tr><td>Open:</td><td>{0:C}</td></tr><tr><td>High:</td><td>{1:C}</td></tr><tr><td>Low:</td><td>{2:C}</td></tr><tr><td>Close:</td><td>{3:C}</td></tr></table>"},highlight:{opacity:1,border:{width:1,opacity:1},line:{width:1,opacity:1}},notes:{visible:!0,label:{}}}),X(Ma.prototype,Li),X(Ma.prototype,Ri);const Oa=Ma;var Sa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowCategories=function(t){for(var e=this.children,o=e.length,n=0;n<o;n++)e[n].reflow(t[n])},e.prototype.addValue=function(t,e){var o,n=e.categoryIx,r=e.category,i=e.series,a=e.seriesIx,s=this.children,c=this.options,l=t.valueFields,h=gi(this.splitValue(l)),p=i.data[n],u=this.categoryPoints[n];u||(this.categoryPoints[n]=u=[]),h&&(o=this.createPoint(t,e));var v=s[n];v||(v=new wa({vertical:c.invertAxes,gap:c.gap,spacing:c.spacing,rtl:!c.invertAxes&&(this.chartService||{}).rtl}),this.append(v)),o&&(this.updateRange(l,e),v.append(o),o.categoryIx=n,o.category=r,o.series=i,o.seriesIx=a,o.owner=this,o.dataItem=p,o.noteText=t.fields.noteText),this.points.push(o),u.push(o)},e.prototype.pointType=function(){return Oa},e.prototype.createPoint=function(t,e){var o=e.series,n=this.pointType(),r=t.valueFields,i=X({},o),a=t.fields.color||o.color;i=this.evalPointOptions(i,r,e),o.type!==ur&&o.type!==xr||r.open>r.close&&(a=t.fields.downColor||o.downColor||o.color),U(o.color)&&(a=i.color),i.vertical=!this.options.invertAxes;var s=new n(r,i);return s.color=a,s},e.prototype.splitValue=function(t){return[t.low,t.open,t.close,t.high]},e.prototype.updateRange=function(t,e){var o=e.series.axis,n=this.splitValue(t),r=this.valueAxisRanges[o];r=this.valueAxisRanges[o]=r||{min:b,max:x},r=this.valueAxisRanges[o]={min:Math.min.apply(Math,n.concat([r.min])),max:Math.max.apply(Math,n.concat([r.max]))}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.open,o.high,o.low,o.close,t.category)},e.prototype.animationPoints=function(){return this.points},e}(Bi);X(Sa.prototype,ea);const Ha=Sa;var Pa=function(t){function e(e,o){t.call(this,e,o),this.createNote()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e,o,n=this,r=n.options,i=n.value,a=n.owner.seriesValueAxis(r);this.boxSlot=o=a.getSlot(i.q1,i.q3),this.realBody=o,this.reflowBoxSlot(t),this.whiskerSlot=e=a.getSlot(i.lower,i.upper),this.reflowWhiskerSlot(t);var s=a.getSlot(i.median);if(i.mean){var c=a.getSlot(i.mean);this.meanPoints=this.calcMeanPoints(t,c)}this.whiskerPoints=this.calcWhiskerPoints(o,e),this.medianPoints=this.calcMedianPoints(t,s),this.box=e.clone().wrap(o),this.reflowNote()},e.prototype.reflowBoxSlot=function(t){this.boxSlot.x1=t.x1,this.boxSlot.x2=t.x2},e.prototype.reflowWhiskerSlot=function(t){this.whiskerSlot.x1=t.x1,this.whiskerSlot.x2=t.x2},e.prototype.calcMeanPoints=function(t,e){return[[[t.x1,e.y1],[t.x2,e.y1]]]},e.prototype.calcWhiskerPoints=function(t,e){var o=e.center().x;return[[[o-5,e.y1],[o+5,e.y1],[o,e.y1],[o,t.y1]],[[o-5,e.y2],[o+5,e.y2],[o,e.y2],[o,t.y2]]]},e.prototype.calcMedianPoints=function(t,e){return[[[t.x1,e.y1],[t.x2,e.y1]]]},e.prototype.renderOutliers=function(t){for(var e=this.value,o=e.outliers||[],n=3*Math.abs(e.q3-e.q1),r=[],i=t.markers||{},a=0;a<o.length;a++){var s=o[a],c=X({},(i=s<e.q3+n&&s>e.q1-n?t.outliers:t.extremes).border);zt(c.color)||(zt(this.color)?c.color=this.color:c.color=new j.Color(i.background).brightness(Qn).toHex());var l=new Me({type:i.type,width:i.size,height:i.size,rotation:i.rotation,background:i.background,border:c,opacity:i.opacity});l.value=s,r.push(l)}return this.reflowOutliers(r),r},e.prototype.reflowOutliers=function(t){for(var e=this,o=this.owner.seriesValueAxis(this.options),n=this.box.center(),r=0;r<t.length;r++){var i=t[r].value,a=o.getSlot(i);e.options.vertical?a.move(n.x):a.move(void 0,n.y),e.box=e.box.wrap(a),t[r].reflow(a)}},e.prototype.mainVisual=function(e){for(var o=t.prototype.mainVisual.call(this,e),n=this.renderOutliers(e),r=0;r<n.length;r++){var i=n[r].getElement();i&&o.append(i)}return o},e.prototype.createLines=function(t,e){this.drawLines(t,e,this.whiskerPoints,e.whiskers),this.drawLines(t,e,this.medianPoints,e.median),this.drawLines(t,e,this.meanPoints,e.mean)},e.prototype.getBorderColor=function(){return(this.options.border||{}).color?this.options.border.color:this.color?this.color:t.prototype.getBorderColor.call(this)},e}(Oa);Rt(Pa,{border:{_brightness:.8},line:{width:2},median:{color:"#f6f6f6"},mean:{width:2,dashType:"dash",color:"#f6f6f6"},overlay:{gradient:"glass"},tooltip:{format:"<table><tr><th colspan='2'>{6:d}</th></tr><tr><td>Lower:</td><td>{0:C}</td></tr><tr><td>Q1:</td><td>{1:C}</td></tr><tr><td>Median:</td><td>{2:C}</td></tr><tr><td>Mean:</td><td>{5:C}</td></tr><tr><td>Q3:</td><td>{3:C}</td></tr><tr><td>Upper:</td><td>{4:C}</td></tr></table>"},highlight:{opacity:1,border:{width:1,opacity:1},line:{width:1,opacity:1}},notes:{visible:!0,label:{}},outliers:{visible:!0,size:8,type:h,background:H,border:{width:2,opacity:1},opacity:0},extremes:{visible:!0,size:8,type:c,background:H,border:{width:2,opacity:1},opacity:0}}),X(Pa.prototype,Li);const Ia=Pa;var Aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowBoxSlot=function(t){this.boxSlot.y1=t.y1,this.boxSlot.y2=t.y2},e.prototype.reflowWhiskerSlot=function(t){this.whiskerSlot.y1=t.y1,this.whiskerSlot.y2=t.y2},e.prototype.calcMeanPoints=function(t,e){return[[[e.x1,t.y1],[e.x1,t.y2]]]},e.prototype.calcWhiskerPoints=function(t,e){var o=e.center().y;return[[[e.x1,o-5],[e.x1,o+5],[e.x1,o],[t.x1,o]],[[e.x2,o-5],[e.x2,o+5],[e.x2,o],[t.x2,o]]]},e.prototype.calcMedianPoints=function(t,e){return[[[e.x1,t.y1],[e.x1,t.y2]]]},e}(Ia);const Va=Aa;var Ea=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.addValue=function(t,e){var o,n=e.categoryIx,r=e.category,i=e.series,a=e.seriesIx,s=this.children,c=this.options,l=t.valueFields,h=gi(this.splitValue(l)),p=i.data[n],u=this.categoryPoints[n];u||(this.categoryPoints[n]=u=[]),h&&(o=this.createPoint(t,e));var v=s[n];v||(v=new wa({vertical:c.invertAxes,gap:c.gap,spacing:c.spacing,rtl:!c.invertAxes&&(this.chartService||{}).rtl}),this.append(v)),o&&(this.updateRange(l,e),v.append(o),o.categoryIx=n,o.category=r,o.series=i,o.seriesIx=a,o.owner=this,o.dataItem=p),this.points.push(o),u.push(o)},e.prototype.pointType=function(){return this.options.invertAxes?Va:Ia},e.prototype.splitValue=function(t){return[t.lower,t.q1,t.median,t.q3,t.upper]},e.prototype.updateRange=function(t,e){var o=e.series.axis,n=this.valueAxisRanges[o],r=this.splitValue(t).concat(this.filterOutliers(t.outliers));zt(t.mean)&&(r=r.concat(t.mean)),n=this.valueAxisRanges[o]=n||{min:b,max:x},n=this.valueAxisRanges[o]={min:Math.min.apply(Math,r.concat([n.min])),max:Math.max.apply(Math,r.concat([n.max]))}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.lower,o.q1,o.median,o.q3,o.upper,o.mean,t.category)},e.prototype.filterOutliers=function(t){for(var e=(t||[]).length,o=[],n=0;n<e;n++){var r=t[n];zt(r)&&null!==r&&o.push(r)}return o},e.prototype.supportsPointInactiveOpacity=function(){return!1},e}(Ha);const Ta=Ea;var Ba=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getAxis=function(){var t=this.chart.seriesAxes(this.series);return this.isVertical?t.y:t.x},e}(vi);const ja=Ba;var La=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this._initFields(),this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initFields=function(){this.xAxisRanges={},this.yAxisRanges={},this.points=[],this.seriesPoints=[],this.seriesOptions=[],this._evalSeries=[]},e.prototype.render=function(){this.traverseDataPoints(this.addValue.bind(this))},e.prototype.addErrorBar=function(t,e,o){var n,r=t.value[e],i=e+"Value",a=e+"ErrorLow",s=e+"ErrorHigh",c=o.seriesIx,l=o.series,h=t.options.errorBars,p=o[a],u=o[s];D(r)&&(D(p)&&D(u)&&(n={low:p,high:u}),h&&zt(h[i])&&(this.seriesErrorRanges=this.seriesErrorRanges||{x:[],y:[]},this.seriesErrorRanges[e][c]=this.seriesErrorRanges[e][c]||new Xn(h[i],l,e),n=this.seriesErrorRanges[e][c].getErrorRange(r,h[i])),n&&this.addPointErrorBar(n,t,e))},e.prototype.addPointErrorBar=function(t,e,o){var n=t.low,r=t.high,i=e.series,a=e.options.errorBars,s=o===A,c={};e[o+"Low"]=n,e[o+"High"]=r,e.errorBars=e.errorBars||[];var l=new ja(n,r,s,this,i,a);e.errorBars.push(l),e.append(l),c[o]=n,this.updateRange(c,i),c[o]=r,this.updateRange(c,i)},e.prototype.addValue=function(t,e){var o,n=t.x,r=t.y,i=e.seriesIx,a=this.options.series[i],s=this.seriesMissingValues(a),c=this.seriesPoints[i],l=t;Si(n)&&Si(r)||(l=this.createMissingValue(l,s)),l&&((o=this.createPoint(l,e))&&(Object.assign(o,e),this.addErrorBar(o,I,e),this.addErrorBar(o,A,e)),this.updateRange(l,e.series)),this.points.push(o),c.push(o)},e.prototype.seriesMissingValues=function(t){return t.missingValues},e.prototype.createMissingValue=function(){},e.prototype.updateRange=function(t,e){var o=this.chartService.intl,n=e.xAxis,r=e.yAxis,i=t.x,a=t.y,s=this.xAxisRanges[n],c=this.yAxisRanges[r];Si(i)&&(s=this.xAxisRanges[n]=s||{min:b,max:x},N(i)&&(i=Uo(o,i)),s.min=Math.min(s.min,i),s.max=Math.max(s.max,i)),Si(a)&&(c=this.yAxisRanges[r]=c||{min:b,max:x},N(a)&&(a=Uo(o,a)),c.min=Math.min(c.min,a),c.max=Math.max(c.max,a))},e.prototype.evalPointOptions=function(t,e,o){var n=o.series,r=o.seriesIx,i={defaults:n._defaults,excluded:["data","tooltip","content","template","visual","toggle","_outOfRangeMinPoint","_outOfRangeMaxPoint","drilldownSeriesFactory"]},a=this._evalSeries[r];zt(a)||(this._evalSeries[r]=a=Ci(t,{},i,!0));var s=t;return a&&Ci(s=X({},t),{value:e,series:n,dataItem:o.dataItem},i),s},e.prototype.pointType=function(){return Ni},e.prototype.pointOptions=function(t,e){var o=this.seriesOptions[e];if(!o){var n=this.pointType().prototype.defaults;this.seriesOptions[e]=o=X({},n,{markers:{opacity:t.opacity},tooltip:{format:this.options.tooltip.format},labels:{format:this.options.labels.format}},t)}return o},e.prototype.createPoint=function(t,e){var o=e.series,n=this.pointOptions(o,e.seriesIx),r=e.color||o.color;n=this.evalPointOptions(n,t,e),U(o.color)&&(r=n.color);var i=new Ni(t,n);return i.color=r,this.append(i),i},e.prototype.seriesAxes=function(t){var e=t.xAxis,o=t.yAxis,n=this.plotArea,r=e?n.namedXAxes[e]:n.axisX,i=o?n.namedYAxes[o]:n.axisY;if(!r)throw new Error("Unable to locate X axis with name "+e);if(!i)throw new Error("Unable to locate Y axis with name "+o);return{x:r,y:i}},e.prototype.reflow=function(t){var e=this,o=this.points,n=!this.options.clip,r=0;this.traverseDataPoints((function(t,i){var a=o[r++],s=e.seriesAxes(i.series),c=s.x.getSlot(t.x,t.x,n),l=s.y.getSlot(t.y,t.y,n);if(a)if(c&&l){var h=e.pointSlot(c,l);a.reflow(h)}else a.visible=!1})),this.box=t},e.prototype.pointSlot=function(t,e){return new ve(t.x1,e.y1,t.x2,e.y2)},e.prototype.traverseDataPoints=function(t){for(var e=this.options.series,o=this.seriesPoints,n=0;n<e.length;n++){var r=e[n];o[n]||(o[n]=[]);for(var i=0;i<r.data.length;i++){var a=this.plotArea.bindPoint(r,i),s=a.valueFields,c=a.fields;t(s,X({pointIx:i,series:r,seriesIx:n,dataItem:r.data[i],owner:this},c))}}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.x,o.y)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++)e.push((t[o]||{}).marker);return e},e}(_e);Rt(La,{series:[],tooltip:{format:"{0}, {1}"},labels:{format:"{0}, {1}"},clip:!0}),X(La.prototype,ea);const Ra=La;var Da=function(t){function e(e,o){t.call(this,e,o),this.category=e.category}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createHighlight=function(){var t=this.options.highlight,e=t.border,o=this.options.markers,n=this.box.center(),r=(o.size+o.border.width+e.width)/2,i=new j.drawing.Group,a=new j.drawing.Circle(new j.geometry.Circle([n.x,n.y+r/5+e.width/2],r+e.width/2),{stroke:{color:"none"},fill:this.createGradient({gradient:"bubbleShadow",color:o.background,stops:[{offset:0,color:o.background,opacity:.3},{offset:1,color:o.background,opacity:0}]})}),s=new j.drawing.Circle(new j.geometry.Circle([n.x,n.y],r),{stroke:{color:e.color||new j.Color(o.background).brightness(Qn).toHex(),width:e.width,opacity:e.opacity},fill:{color:o.background,opacity:t.opacity}});return i.append(a,s),i},e}(Ni);Da.prototype.defaults=X({},Da.prototype.defaults,{labels:{position:s},highlight:{opacity:1,border:{color:"#fff",width:2,opacity:1}}}),Da.prototype.defaults.highlight.zIndex=void 0;const Na=Da;var Fa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initFields=function(){this._maxSize=x,t.prototype._initFields.call(this)},e.prototype.addValue=function(e,o){null!==e.size&&(e.size>0||e.size<0&&o.series.negativeValues.visible)?(this._maxSize=Math.max(this._maxSize,Math.abs(e.size)),t.prototype.addValue.call(this,e,o)):(this.points.push(null),this.seriesPoints[o.seriesIx].push(null))},e.prototype.reflow=function(e){this.updateBubblesSize(e),t.prototype.reflow.call(this,e)},e.prototype.pointType=function(){return Na},e.prototype.createPoint=function(t,e){var o=e.series,n=o.data.length,r=e.pointIx*(Yn/n),i={delay:r,duration:Yn-r,type:hr},a=e.color||o.color;t.size<0&&o.negativeValues.visible&&(a=Bt(o.negativeValues.color,a));var s=X({labels:{animation:{delay:r,duration:Yn-r}}},this.pointOptions(o,e.seriesIx),{markers:{type:c,border:o.border,opacity:o.opacity,animation:i}});s=this.evalPointOptions(s,t,e),U(o.color)&&(a=s.color),s.markers.background=a;var l=new Na(t,s);return l.color=a,this.append(l),l},e.prototype.updateBubblesSize=function(t){for(var e=this.options.series,o=Math.min(t.width(),t.height()),n=0;n<e.length;n++)for(var r=e[n],i=this.seriesPoints[n],a=(r.minSize||Math.max(.02*o,10))/2,s=(r.maxSize||.2*o)/2,c=Math.PI*a*a,l=(Math.PI*s*s-c)/this._maxSize,h=0;h<i.length;h++){var p=i[h];if(p){var u=Math.abs(p.value.size)*l,v=Math.sqrt((c+u)/Math.PI),d=Bt(p.options.zIndex,0)+(1-v/s);X(p.options,{zIndex:d,markers:{size:2*v,zIndex:d},labels:{zIndex:d+1}})}}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.x,o.y,o.size,t.category)},e.prototype.createAnimation=function(){},e.prototype.createVisual=function(){},e}(Ra);Rt(Fa,{tooltip:{format:"{3}"},labels:{format:"{3}"}});const Ua=Fa;var Wa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Me);X(Wa.prototype,Li);const Ga=Wa;var Ka=function(t){function e(e,o){t.call(this,o),this.aboveAxis=this.options.aboveAxis,this.color=o.color||H,this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t=this.options;this._rendered||(this._rendered=!0,zt(this.value.target)&&(this.target=new Ga({type:t.target.shape,background:t.target.color||this.color,opacity:t.opacity,zIndex:t.zIndex,border:t.target.border,vAlign:O,align:C}),this.target.value=this.value,this.target.dataItem=this.dataItem,this.target.series=this.series,this.append(this.target)),this.createLabel(),this.createNote())},e.prototype.createLabel=function(){var t=this.options.labels;if(t.visible){var e,o=this.pointData(),n=nt(t);e=n?n(o):this.formatValue(t.format),this.label=new fa(e,t,o),this.append(this.label)}},e.prototype.reflow=function(t){this.render();var e=this,o=e.options,n=e.target,r=e.owner,i=o.invertAxes,a=r.seriesValueAxis(this.options),s=r.categorySlot(r.categoryAxis,o.categoryIx,a),c=a.getSlot(this.value.target),l=i?c:s,h=i?s:c;if(n){var p=new ve(l.x1,h.y1,l.x2,h.y2);n.options.height=i?p.height():o.target.line.width,n.options.width=i?o.target.line.width:p.width(),n.reflow(p)}var u=this.label;u&&(u.options.aboveAxis=this.aboveAxis,u.reflow(t)),this.note&&this.note.reflow(t),this.box=t},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e=this.options,o=j.drawing.Path.fromRect(this.box.toRect(),{fill:{color:this.color,opacity:e.opacity},stroke:null});e.border.width>0&&o.options.set("stroke",{color:e.border.color||this.color,width:e.border.width,dashType:e.border.dashType,opacity:Bt(e.border.opacity,e.opacity)}),this.bodyVisual=o,L(o),this.visual.append(o)},e.prototype.createAnimation=function(){this.bodyVisual&&(this.animation=j.drawing.Animation.create(this.bodyVisual,this.options.animation))},e.prototype.createHighlight=function(t){return j.drawing.Path.fromRect(this.box.toRect(),t)},e.prototype.highlightVisual=function(){return this.bodyVisual},e.prototype.highlightVisualArgs=function(){return{rect:this.box.toRect(),visual:this.bodyVisual,options:this.options}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,series:this.series}},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e}(_e);Ka.prototype.tooltipAnchor=ya.prototype.tooltipAnchor,Rt(Ka,{border:{width:1},vertical:!1,opacity:1,target:{shape:"",border:{width:0,color:"green"},line:{width:2}},labels:{visible:!1},tooltip:{format:"Current: {0}<br />Target: {1}"},notes:{label:{}}}),X(Ka.prototype,Li),X(Ka.prototype,Ri);const Xa=Ka;var Za=function(t){function e(e,o){!function(t){for(var e=t.series,o=0;o<e.length;o++){var n=e[o],r=n.data;!r||V(r[0])||Z(r[0])||(n.data=[r])}}(o),t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowCategories=function(t){for(var e=this.children,o=e.length,n=0;n<o;n++)e[n].reflow(t[n])},e.prototype.plotRange=function(t){var e=t.series,o=this.seriesValueAxis(e),n=this.categoryAxisCrossingValue(o);return[n,t.value.current||n]},e.prototype.createPoint=function(t,e){var o=e.categoryIx,n=e.series,r=this.options,i=this.children,a=t.valueFields,s=X({vertical:!r.invertAxes,overlay:n.overlay,categoryIx:o,invertAxes:r.invertAxes},n),c=t.fields.color||n.color;s=this.evalPointOptions(s,a,e),U(n.color)&&(c=s.color);var l=new Xa(a,s);l.color=c;var h=i[o];return h||(h=new wa({vertical:r.invertAxes,gap:r.gap,spacing:r.spacing,rtl:!r.invertAxes&&(this.chartService||{}).rtl}),this.append(h)),h.append(l),l},e.prototype.updateRange=function(t,e){var o=t.current,n=t.target,r=e.series.axis,i=this.valueAxisRanges[r];zt(o)&&!isNaN(o)&&zt(n&&!isNaN(n))&&((i=this.valueAxisRanges[r]=i||{min:b,max:x}).min=Math.min(i.min,o,n),i.max=Math.max(i.max,o,n))},e.prototype.formatPointValue=function(t,e){return this.chartService.format.auto(e,t.value.current,t.value.target)},e.prototype.pointValue=function(t){return t.valueFields.current},e.prototype.aboveAxis=function(t){return t.value.current>0},e.prototype.createAnimation=function(){var t=this.points;this._setAnimationOptions();for(var e=0;e<t.length;e++){var o=t[e];o.options.animation=this.options.animation,o.createAnimation()}},e}(Bi);Za.prototype._setAnimationOptions=ka.prototype._setAnimationOptions,Rt(Za,{animation:{type:cr}});const Ya=Za;var qa=function(t){function e(e,o){t.call(this),this.chartService=e,this.options=X({},this.options,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getStyle=function(t,e){var o=t.background,n=t.border.color;if(e){var r=e.color||e.options.color;o=Bt(o,r),n=Bt(n,r)}var i=$(t.padding||{},"auto");return{backgroundColor:o,borderColor:n,font:t.font,color:t.color,opacity:t.opacity,borderWidth:Y(t.border.width),paddingTop:Y(i.top),paddingBottom:Y(i.bottom),paddingLeft:Y(i.left),paddingRight:Y(i.right)}},e.prototype.show=function(t,e,o){t.format=e.format;var n=this.getStyle(e,o);t.style=n;var r=new j.Color(n.backgroundColor);zt(e.color)||r.isDark()||(t.className="k-chart-tooltip-inverse"),this.chartService.notify(ri,t),this.visible=!0},e.prototype.hide=function(){this.chartService&&this.chartService.notify(ii),this.visible=!1},e.prototype.destroy=function(){delete this.chartService},e}(j.Class);Rt(qa,{border:{width:1},opacity:1});const Qa=qa;var Ja=function(t){function e(e,o,n){t.call(this,e,n),this.crosshair=o,this.formatService=e.format,this.initAxisName()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initAxisName=function(){var t,e=this.crosshair.axis;t=e.plotArea.categoryAxis?e.getCategory?"categoryAxis":"valueAxis":e.options.vertical?"yAxis":"xAxis",this.axisName=t},e.prototype.showAt=function(t){var e=this.crosshair.axis,o=this.options,n=e[o.stickyMode?"getCategory":"getValue"](t),r=n;o.format?r=this.formatService.auto(o.format,n):e.options.type===p&&(r=this.formatService.auto(e.options.labels.dateFormats[e.options.baseUnit],n)),this.show({point:t,anchor:this.getAnchor(),crosshair:this.crosshair,value:r,axisName:this.axisName,axisIndex:this.crosshair.axis.axisIndex},this.options)},e.prototype.hide=function(){this.chartService.notify(ii,{crosshair:this.crosshair,axisName:this.axisName,axisIndex:this.crosshair.axis.axisIndex})},e.prototype.getAnchor=function(){var t,e,o,n=this.crosshair,r=this.options,i=r.position,c=r.padding,l=!n.axis.options.vertical,h=n.line.bbox();return l?(t=s,i===a?(e=O,o=h.bottomLeft().translate(0,c)):(e=a,o=h.topLeft().translate(0,-c))):(e=s,i===g?(t=C,o=h.topLeft().translate(-c,0)):(t=g,o=h.topRight().translate(c,0))),{point:o,align:{horizontal:t,vertical:e}}},e}(Qa);Rt(Ja,{padding:10});const $a=Ja;var ts=function(t){function e(e,o,n){t.call(this,n),this.axis=o,this.stickyMode=o instanceof Xo;var r=this.options.tooltip;r.visible&&(this.tooltip=new $a(e,this,X({},r,{stickyMode:this.stickyMode})))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.showAt=function(t){this.point=t,this.moveLine(),this.line.visible(!0),this.tooltip&&this.tooltip.showAt(t)},e.prototype.hide=function(){this.line.visible(!1),this.tooltip&&this.tooltip.hide()},e.prototype.moveLine=function(){var t,e=this.axis,o=this.point,n=e.options.vertical,r=this.getBox(),i=n?A:I,a=new j.geometry.Point(r.x1,r.y1);if(t=n?new j.geometry.Point(r.x2,r.y1):new j.geometry.Point(r.x1,r.y2),o)if(this.stickyMode){var s=e.getSlot(e.pointCategoryIndex(o));a[i]=t[i]=s.center()[i]}else a[i]=t[i]=o[i];this.box=r,this.line.moveTo(a).lineTo(t)},e.prototype.getBox=function(){for(var t,e=this.axis,o=e.pane.axes,n=o.length,r=e.options.vertical,i=e.lineBox().clone(),a=r?I:A,s=0;s<n;s++){var c=o[s];c.options.vertical!==r&&(t?t.wrap(c.lineBox()):t=c.lineBox().clone())}return i[a+1]=t[a+1],i[a+2]=t[a+2],i},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e=this.options;this.line=new j.drawing.Path({stroke:{color:e.color,width:e.width,opacity:e.opacity,dashType:e.dashType},visible:!1}),this.moveLine(),this.visual.append(this.line)},e.prototype.destroy=function(){this.tooltip&&this.tooltip.destroy(),t.prototype.destroy.call(this)},e}(_e);Rt(ts,{color:i,width:2,zIndex:-1,tooltip:{visible:!1}});const es=ts;var os=function(t){function e(e,o){t.call(this,e),this.pane=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.shouldClip=function(){for(var t=this.children,e=t.length,o=0;o<e;o++)if(!0===t[o].options.clip)return!0;return!1},e.prototype._clipBox=function(){return this.pane.chartsBox()},e.prototype.createVisual=function(){if(this.visual=new j.drawing.Group({zIndex:0}),this.shouldClip()){var t=(this.clipBox=this._clipBox()).toRect(),e=j.drawing.Path.fromRect(t);L(e),this.visual.clip(e),this.unclipLabels()}},e.prototype.stackRoot=function(){return this},e.prototype.unclipLabels=function(){for(var t=this.children,e=this.clipBox,o=0;o<t.length;o++)for(var n=t[o].points||{},r=n.length,i=0;i<r;i++){var a=n[i];if(a&&!1!==a.visible&&a.overlapsBox&&a.overlapsBox(e))if(a.unclipElements)a.unclipElements();else{var s=a.label,c=a.note;s&&s.options.visible&&(s.alignToClipBox&&s.alignToClipBox(e),s.options.noclip=!0),c&&c.options.visible&&(c.options.noclip=!0)}}},e.prototype.destroy=function(){t.prototype.destroy.call(this),delete this.parent},e}(_e);os.prototype.isStackRoot=!0;const ns=os;var rs=function(t){function e(e){t.call(this,e),this.id="pane"+is++,this.createTitle(),this.content=new _e,this.chartContainer=new ns({},this),this.append(this.content),this.axes=[],this.charts=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createTitle=function(){var t=this.options.title;Z(t)&&(t=X({},t,{align:t.position,position:O})),this.title=Ue.buildTitle(t,e.prototype.options.title),this.title&&this.append(this.title)},e.prototype.appendAxis=function(t){this.content.append(t),this.axes.push(t),t.pane=this},e.prototype.appendAxisAt=function(t,e){this.content.append(t),this.axes.splice(e,0,t),t.pane=this},e.prototype.appendChart=function(t){this.chartContainer.parent!==this.content&&this.content.append(this.chartContainer),this.charts.push(t),this.chartContainer.append(t),t.pane=this},e.prototype.empty=function(){var t=this.parent;if(t){for(var e=0;e<this.axes.length;e++)t.removeAxis(this.axes[e]);for(var o=0;o<this.charts.length;o++)t.removeChart(this.charts[o])}this.axes=[],this.charts=[],this.content.destroy(),this.content.children=[],this.chartContainer.children=[]},e.prototype.reflow=function(e){var o;Pt(this.children)===this.content&&(o=this.children.pop()),t.prototype.reflow.call(this,e),o&&this.children.push(o),this.title&&(this.contentBox.y1+=this.title.box.height())},e.prototype.visualStyle=function(){var e=t.prototype.visualStyle.call(this);return e.zIndex=-10,e},e.prototype.renderComplete=function(){this.options.visible&&this.createGridLines()},e.prototype.stackRoot=function(){return this},e.prototype.clipRoot=function(){return this},e.prototype.createGridLines=function(){for(var t=this.axes,e=t.concat(this.parent.axes),o=[],n=[],r=0;r<t.length;r++)for(var i=t[r],a=i.options.vertical,s=a?o:n,c=0;c<e.length;c++)if(0===s.length){var l=e[c];a!==l.options.vertical&&wt(s,i.createGridLines(l))}},e.prototype.refresh=function(){this.visual.clear(),this.content.parent=null,this.content.createGradient=this.createGradient.bind(this),this.content.renderVisual(),this.content.parent=this,this.title&&this.visual.append(this.title.visual),this.visual.append(this.content.visual),this.renderComplete(),this.notifyRender()},e.prototype.chartsBox=function(){for(var t=this.axes,e=t.length,o=new ve,n=0;n<e;n++){var r=t[n],i=r.options.vertical?A:I,a=r.lineBox();o[i+1]=a[i+1],o[i+2]=a[i+2]}if(0===o.x2)for(var s=this.parent.axes,c=s.length,l=0;l<c;l++){var h=s[l];if(!h.options.vertical){var p=h.lineBox();o.x1=p.x1,o.x2=p.x2}}return o},e.prototype.clipBox=function(){return this.chartContainer.clipBox},e.prototype.notifyRender=function(){var t=this.getService();t&&t.notify("paneRender",{pane:new Bn(this),index:this.paneIndex,name:this.options.name})},e}(Ce),is=1;rs.prototype.isStackRoot=!0,Rt(rs,{zIndex:-1,shrinkToFit:!0,title:{align:g},visible:!0});const as=rs;var ss=function(t){function e(e,o,n){t.call(this,o),this.initFields(e,o),this.series=e,this.initSeries(),this.charts=[],this.options.legend=this.options.legend||{},this.options.legend.items=[],this.axes=[],this.crosshairs=[],this.chartService=n,this.originalOptions=o,this.originalSeries=e,this._bindCache=new WeakMap,this.createPanes(),this.render(),this.createCrosshairs()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){},e.prototype.initSeries=function(){for(var t=this.series,e=0;e<t.length;e++)t[e].index=e},e.prototype.bindPoint=function(t,e,o){var n=this._bindCache.get(t);n||(n=[],this._bindCache.set(t,n));var r=n[e];return r||(r=n[e]=Un.current.bindPoint(t,e,o)),r},e.prototype.createPanes=function(){for(var t=this.options.title||{},e=this.options.paneDefaults,o=this.options.panes||[],n=Math.max(o.length,1),r=[],i=X({title:{color:t.color}},e),a=0;a<n;a++){var s=X({},i,o[a]);N(s.title)&&(s.title=X({text:s.title},i.title));var c=new as(s);c.paneIndex=a,r.push(c),this.append(c)}this.panes=r},e.prototype.crosshairOptions=function(t){return t.options.crosshair},e.prototype.createCrosshairs=function(t){var e=this;void 0===t&&(t=this.panes);for(var o=0;o<t.length;o++)for(var n=t[o],r=0;r<n.axes.length;r++){var i=n.axes[r],a=e.crosshairOptions(i);if(a&&a.visible){var s=new es(e.chartService,i,a);e.crosshairs.push(s),n.content.append(s)}}},e.prototype.removeCrosshairs=function(t){for(var e=this.crosshairs,o=t.axes,n=e.length-1;n>=0;n--)for(var r=0;r<o.length;r++)if(e[n].axis===o[r]){e.splice(n,1);break}},e.prototype.hideCrosshairs=function(){for(var t=this.crosshairs,e=0;e<t.length;e++)t[e].hide()},e.prototype.findPane=function(t){for(var e,o=this.panes,n=0;n<o.length;n++)if(o[n].options.name===t){e=o[n];break}return e||o[0]},e.prototype.findPointPane=function(t){for(var e,o=this.panes,n=0;n<o.length;n++)if(o[n].box.containsPoint(t)){e=o[n];break}return e},e.prototype.appendAxis=function(t){this.findPane(t.options.pane).appendAxis(t),this.axes.push(t),t.plotArea=this},e.prototype.removeAxis=function(t){for(var e=[],o=0;o<this.axes.length;o++){var n=this.axes[o];t!==n?e.push(n):n.destroy()}this.axes=e},e.prototype.appendChart=function(t,e){this.charts.push(t),e?e.appendChart(t):this.append(t)},e.prototype.removeChart=function(t){for(var e=[],o=0;o<this.charts.length;o++){var n=this.charts[o];n!==t?e.push(n):n.destroy()}this.charts=e},e.prototype.addToLegend=function(t){for(var e=t.length,o=this.options.legend,n=o.labels||{},r=o.inactiveItems||{},i=r.labels||{},a=[],s=0;s<e;s++){var c=t[s],l=!1!==c.visible;if(!1!==c.visibleInLegend){var h=c.name,p=l?nt(n):nt(i)||nt(n);p&&(h=p({text:Si(h)?h:"",series:c}));var u=c._defaults,v=c.color;U(v)&&u&&(v=u.color);var d=void 0,f=void 0;l?(d={},f=v):(d={color:i.color,font:i.font},f=r.markers.color),Si(h)&&""!==h&&a.push({text:h,labels:d,markerColor:f,series:c,active:l})}}wt(o.items,a)},e.prototype.groupAxes=function(t){for(var e=[],o=[],n=0;n<t.length;n++)for(var r=t[n].axes,i=0;i<r.length;i++){var a=r[i];a.options.vertical?o.push(a):e.push(a)}return{x:e,y:o,any:e.concat(o)}},e.prototype.groupSeriesByPane=function(){for(var t=this.series,e={},o=0;o<t.length;o++){var n=t[o],r=this.seriesPaneName(n);e[r]?e[r].push(n):e[r]=[n]}return e},e.prototype.filterVisibleSeries=function(t){for(var e=[],o=0;o<t.length;o++){var n=t[o];!1!==n.visible&&e.push(n)}return e},e.prototype.reflow=function(t){var e=this.options.plotArea,o=this.panes,n=$(e.margin);this.box=t.clone().unpad(n),this.reflowPanes(),this.detachLabels(),this.reflowAxes(o),this.reflowCharts(o)},e.prototype.redraw=function(t){var e=[].concat(t);this.initSeries();var o=this.getRoot();o&&o.cleanGradients();for(var n=0;n<e.length;n++)this.removeCrosshairs(e[n]),e[n].empty();this._bindCache=new WeakMap,this.render(e),this.detachLabels(),this.reflowAxes(this.panes),this.reflowCharts(e),this.createCrosshairs(e);for(var r=0;r<e.length;r++)e[r].refresh()},e.prototype.axisCrossingValues=function(t,e){for(var o=t.options,n=[].concat(o.axisCrossingValues||o.axisCrossingValue),r=e.length-n.length,i=n[0]||0,a=0;a<r;a++)n.push(i);return n},e.prototype.alignAxisTo=function(t,e,o,n){var r=t.getSlot(o,o,!0),i=t.options.reverse?2:1,a=e.getSlot(n,n,!0),s=e.options.reverse?2:1,c=t.box.translate(a[I+s]-r[I+i],a[A+s]-r[A+i]);t.pane!==e.pane&&c.translate(0,t.pane.box.y1-e.pane.box.y1),t.reflow(c)},e.prototype.alignAxes=function(t,e){for(var o=this,n=t[0],r=e[0],i=this.axisCrossingValues(n,e),s=this.axisCrossingValues(r,t),c={},h={},p={},u={},v=0;v<e.length;v++){var d=e[v],f=d.pane,m=f.id,y=!1!==d.options.visible,b=hs(t,f)||n,x=i;b!==n&&(x=o.axisCrossingValues(b,e)),o.alignAxisTo(d,b,s[v],x[v]),d.options._overlap||(Et(d.lineBox().x1)===Et(b.lineBox().x1)&&(c[m]&&d.reflow(d.box.alignTo(c[m].box,g).translate(-d.options.margin,0)),y&&(c[m]=d)),Et(d.lineBox().x2)===Et(b.lineBox().x2)&&(d._mirrored||(d.options.labels.mirror=!d.options.labels.mirror,d._mirrored=!0),o.alignAxisTo(d,b,s[v],x[v]),h[m]&&d.reflow(d.box.alignTo(h[m].box,C).translate(d.options.margin,0)),y&&(h[m]=d)),0!==v&&r.pane===d.pane&&(d.alignTo(r),d.reflow(d.box)))}for(var w=0;w<t.length;w++){var _=t[w],z=_.pane,k=z.id,M=!1!==_.options.visible,S=hs(e,z)||r,H=s;S!==r&&(H=o.axisCrossingValues(S,t)),o.alignAxisTo(_,S,i[w],H[w]),_.options._overlap||(Et(_.lineBox().y1)===Et(S.lineBox().y1)&&(_._mirrored||(_.options.labels.mirror=!_.options.labels.mirror,_._mirrored=!0),o.alignAxisTo(_,S,i[w],H[w]),p[k]&&_.reflow(_.box.alignTo(p[k].box,O).translate(0,-_.options.margin)),M&&(p[k]=_)),Et(_.lineBox().y2,l)===Et(S.lineBox().y2,l)&&(u[k]&&_.reflow(_.box.alignTo(u[k].box,a).translate(0,_.options.margin)),M&&(u[k]=_)),0!==w&&(_.alignTo(n),_.reflow(_.box)))}},e.prototype.shrinkAxisWidth=function(t){for(var e=this.groupAxes(t).any,o=ls(e),n=0,r=0;r<t.length;r++){var i=t[r];i.axes.length>0&&(n=Math.max(n,o.width()-i.contentBox.width()))}if(0!==n)for(var a=0;a<e.length;a++){var s=e[a];s.options.vertical||s.reflow(s.box.shrink(n,0))}},e.prototype.shrinkAxisHeight=function(t){for(var e,o=0;o<t.length;o++){var n=t[o],r=n.axes,i=Math.max(0,ls(r).height()-n.contentBox.height());if(0!==i){for(var a=0;a<r.length;a++){var s=r[a];s.options.vertical&&s.reflow(s.box.shrink(0,i))}e=!0}}return e},e.prototype.fitAxes=function(t){for(var e=this.groupAxes(t).any,o=0,n=0;n<t.length;n++){var r=t[n],i=r.axes,a=r.contentBox;if(i.length>0){var s=ls(i),c=Math.max(a.y1-s.y1,a.y2-s.y2);o=Math.max(o,a.x1-s.x1);for(var l=0;l<i.length;l++){var h=i[l];h.reflow(h.box.translate(0,c))}}}for(var p=0;p<e.length;p++){var u=e[p];u.reflow(u.box.translate(o,0))}},e.prototype.reflowAxes=function(t){for(var e=this.groupAxes(t),o=0;o<t.length;o++)this.reflowPaneAxes(t[o]);e.x.length>0&&e.y.length>0&&(this.alignAxes(e.x,e.y),this.shrinkAxisWidth(t),this.autoRotateAxisLabels(e),this.alignAxes(e.x,e.y),this.shrinkAxisWidth(t)&&this.alignAxes(e.x,e.y),this.shrinkAxisHeight(t),this.alignAxes(e.x,e.y),this.shrinkAxisHeight(t)&&this.alignAxes(e.x,e.y),this.fitAxes(t))},e.prototype.autoRotateAxisLabels=function(t){for(var e,o=this.panes,n=ps(o),r=0;r<n.length;r++)n[r].autoRotateLabels()&&(e=!0);if(e){for(var i=0;i<o.length;i++)this.reflowPaneAxes(o[i]);t.x.length>0&&t.y.length>0&&(this.alignAxes(t.x,t.y),this.shrinkAxisWidth(o))}},e.prototype.reflowPaneAxes=function(t){var e=t.axes,o=e.length;if(o>0)for(var n=0;n<o;n++)e[n].reflow(t.contentBox)},e.prototype.reflowCharts=function(t){for(var e=this.charts,o=e.length,n=this.box,r=0;r<o;r++){var i=e[r].pane;i&&!pt(i,t)||e[r].reflow(n)}},e.prototype.reflowPanes=function(){for(var t=this.box,e=this.panes,o=e.length,n=t.height(),r=0,i=t.y1,a=0;a<o;a++){var s=e[a],c=s.options.height;if(s.options.width=t.width(),s.options.height){if(c.indexOf&&c.indexOf("%")){var l=parseInt(c,10)/100;s.options.height=l*t.height()}s.reflow(t.clone()),n-=s.options.height}else r++}for(var h=0;h<o;h++){var p=e[h];p.options.height||(p.options.height=n/r)}for(var u=0;u<o;u++){var v=e[u],d=t.clone().move(t.x1,i);v.reflow(d),i+=v.options.height}},e.prototype.backgroundBox=function(){for(var t,e=this.axes,o=e.length,n=0;n<o;n++)for(var r=e[n],i=0;i<o;i++){var a=e[i];if(r.options.vertical!==a.options.vertical){var s=r.lineBox().clone().wrap(a.lineBox());t=t?t.wrap(s):s}}return t||this.box},e.prototype.chartsBoxes=function(){for(var t=this.panes,e=[],o=0;o<t.length;o++)e.push(t[o].chartsBox());return e},e.prototype.addBackgroundPaths=function(t){for(var e=this.chartsBoxes(),o=0;o<e.length;o++)t.paths.push(j.drawing.Path.fromRect(e[o].toRect()))},e.prototype.backgroundContainsPoint=function(t){for(var e=this.chartsBoxes(),o=0;o<e.length;o++)if(e[o].containsPoint(t))return!0},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e,o=this.options.plotArea,n=o.opacity,r=o.background,i=o.border;void 0===i&&(i={}),""!==(e=r)&&null!==e&&"none"!==e&&"transparent"!==e&&zt(e)||(r=H,n=0);var a=this._bgVisual=new j.drawing.MultiPath({fill:{color:r,opacity:n},stroke:{color:i.width?i.color:"",width:i.width,dashType:i.dashType},zIndex:-1});this.addBackgroundPaths(a),this.appendVisual(a)},e.prototype.pointsByCategoryIndex=function(t){var e=this.charts,o=[];if(null!==t)for(var n=0;n<e.length;n++)if("_navigator"!==e[n].pane.options.name){var r=e[n].categoryPoints[t];if(r&&r.length)for(var i=0;i<r.length;i++){var a=r[i];a&&zt(a.value)&&null!==a.value&&o.push(a)}}return o},e.prototype.pointsBySeriesIndex=function(t){return this.filterPoints((function(e){return e.series.index===t}))},e.prototype.pointsBySeriesName=function(t){return this.filterPoints((function(e){return e.series.name===t}))},e.prototype.filterPoints=function(t){for(var e=this.charts,o=[],n=0;n<e.length;n++)for(var r=e[n].points,i=0;i<r.length;i++){var a=r[i];a&&!1!==a.visible&&t(a)&&o.push(a)}return o},e.prototype.findPoint=function(t){for(var e=this.charts,o=0;o<e.length;o++)for(var n=e[o].points,r=0;r<n.length;r++){var i=n[r];if(i&&!1!==i.visible&&t(i))return i}},e.prototype.paneByPoint=function(t){for(var e=this.panes,o=0;o<e.length;o++){var n=e[o];if(n.box.containsPoint(t))return n}},e.prototype.detachLabels=function(){var t=this.groupAxes(this.panes),e=t.x,o=t.y;this.detachAxisGroupLabels(o,e),this.detachAxisGroupLabels(e,o)},e.prototype.detachAxisGroupLabels=function(t,e){for(var o=0,n=0;n<t.length;n++){var r=t[n],i=r.pane,a=hs(e,i)||e[0],s=n+o,c=this.createLabelAxis(r,s,a);if(c){o++;var l=i.axes.indexOf(r)+o;i.appendAxisAt(c,l)}}},e.prototype.createLabelAxis=function(t,e,o){var n=t.options.labels,r=n.position,i="end"!==r&&"start"!==r,a=n.visible;if(i||!1===a)return null;var s=this.groupAxes(this.panes),c=o.options.vertical?s.x:s.y,l=this.axisCrossingValues(o,c),h="end"===r,p=o.range(),u=h?p.max:p.min;if(It(l[e],p.min,p.max)-u==0)return null;l.splice(e+1,0,u),o.options.axisCrossingValues=l;var v=t.clone();return t.clear(),v.options.name=void 0,v.options.line.visible=!1,v.options.crosshair=void 0,v.options.notes=void 0,v.options.plotBands=void 0,v},e.prototype.isTrendline=function(t){return t&&pt(t.type,Fr)},e.prototype.trendlineFactory=function(){},e.prototype.createTrendlineSeries=function(){var t=this,e=[];return this.series=this.series.map((function(o){if(!t.isTrendline(o))return o;var n=t.seriesByName(o.for);if(!n)throw new Error('Invalid Configuration: Unable to locate linked series "'+o.for+'" for trendline "'+o.name+'".');var r=Un.current.valueFields(n),i=Pt(r),a=t.trendlineFactory(Object.assign({},{field:i},o),n);return a&&(!1===n.visible&&(a.visible=!1),a.color===y&&(a.color=n.color),e.push(a)),a})).filter((function(t){return null!==t})),e},e.prototype.seriesByName=function(t){return this.series.find((function(e){return e.name===t}))},e}(_e);function cs(t){return!t.pane.axes.some((function(e){return e.options.vertical===t.options.vertical&&e!==t&&!1!==e.options.visible}))}function ls(t){for(var e,o=t.length,n=0;n<o;n++){var r=t[n],i=!1!==r.options.visible;if(i||cs(r)){var a=i?r.contentBox():r.lineBox();e?e.wrap(a):e=a.clone()}}return e||new ve}function hs(t,e){for(var o=0;o<t.length;o++){var n=t[o];if(n&&n.pane===e)return n}}var ps=function(t){return t.reduce((function(t,e){return t.concat(e.axes)}),[])};Rt(ss,{series:[],plotArea:{margin:{}},background:"",border:{color:i,width:0},paneDefaults:{title:{}},legend:{inactiveItems:{labels:{color:"#919191"},markers:{color:"#919191"}}}});const us=ss;var vs={hover:function(t,e){this._dispatchEvent(t,e,Xr)},click:function(t,e){this._dispatchEvent(t,e,"plotAreaClick")}};const ds=vs;function fs(t,e,o){var n=e,r=t;if(t.indexOf(".")>-1){for(var i=t.split(".");i.length>1;)r=i.shift(),zt(n[r])||(n[r]={}),n=n[r];r=i.shift()}n[r]=o}const ms=function(t){function e(e,o,n){t.call(this);var r=o.canonicalFields(e),i=o.valueFields(e),a=o.sourceFields(e,r),s=this._seriesFields=[],c=n.query(e.type),l=e.aggregate||c;this._series=e,this._binder=o;for(var h=0;h<r.length;h++){var p=r[h],u=void 0;if(Z(l))u=l[p];else{if(0!==h&&!pt(p,i))break;u=l}u&&s.push({canonicalName:p,name:a[h],transform:U(u)?u:Dn[u]})}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.aggregatePoints=function(t,e){var o=this._series,n=this._seriesFields,r=this._bindPoints(t||[]),i=r.dataItems[0],a={};if(i&&!D(i)&&!V(i)){var s=function(){};s.prototype=i,a=new s}for(var c=0;c<n.length;c++){var l=n[c],h=this._bindField(r.values,l.canonicalName),p=l.transform(h,o,r.dataItems,e);if(!(null===p||!Z(p)||zt(p.length)||p instanceof Date)){a=p;break}zt(p)&&fs(l.name,a,p)}return a},e.prototype._bindPoints=function(t){for(var e=this._binder,o=this._series,n=[],r=[],i=0;i<t.length;i++){var a=t[i];n.push(e.bindPoint(o,a)),r.push(o.data[a])}return{values:n,dataItems:r}},e.prototype._bindField=function(t,e){for(var o=[],n=t.length,r=0;r<n;r++){var i,a=t[r],s=a.valueFields;i=zt(s[e])?s[e]:a.fields[e],o.push(i)}return o},e}(j.Class);var ys=function(t){function e(){t.call(this),this._defaults={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e){for(var o=0;o<t.length;o++)this._defaults[t[o]]=e},e.prototype.query=function(t){return this._defaults[t]},e}(j.Class);ys.current=new ys;const gs=ys;var bs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createLabel=function(){var t=this.options.labels,e=X({},t,t.from),o=X({},t,t.to);e.visible&&(this.labelFrom=this._createLabel(e),this.append(this.labelFrom)),o.visible&&(this.labelTo=this._createLabel(o),this.append(this.labelTo))},e.prototype._createLabel=function(t){var e,o=nt(t),n=this.pointData();return e=o?o(n):this.formatValue(t.format),new fa(e,X({vertical:this.options.vertical},t),n)},e.prototype.reflow=function(t){this.render();var e=this,o=e.labelFrom,n=e.labelTo,r=e.value;this.box=t,o&&(o.options.aboveAxis=r.from>r.to,o.reflow(t)),n&&(n.options.aboveAxis=r.to>r.from,n.reflow(t)),this.note&&this.note.reflow(t)},e}(ya);bs.prototype.defaults=X({},bs.prototype.defaults,{labels:{format:"{0} - {1}"},tooltip:{format:"{1}"}});const xs=bs;var ws=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointType=function(){return xs},e.prototype.pointValue=function(t){return t.valueFields},e.prototype.formatPointValue=function(t,e){return null===t.value.from&&null===t.value.to?"":this.chartService.format.auto(e,t.value.from,t.value.to)},e.prototype.plotRange=function(t){return t?[t.value.from,t.value.to]:0},e.prototype.updateRange=function(t,e){var o=e.series.axis,n=t.from,r=t.to,i=this.valueAxisRanges[o];null!==t&&D(n)&&D(r)&&((i=this.valueAxisRanges[o]=i||{min:b,max:x}).min=Math.min(i.min,n),i.max=Math.max(i.max,n),i.min=Math.min(i.min,r),i.max=Math.max(i.max,r))},e.prototype.aboveAxis=function(t){var e=t.value;return e.from<e.to},e}(ka);ws.prototype.plotLimits=Bi.prototype.plotLimits;const _s=ws;var zs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.aliasFor=function(){return this.parent},e}(Ni);const Cs=zs;var ks="auto",Ms=function(t){function e(e,o){t.call(this),this.value=e,this.options=o,this.aboveAxis=Bt(this.options.aboveAxis,!0),this.tooltipTracking=!0,this.initLabelsFormat()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){if(!this._rendered){this._rendered=!0;var t=this.options,e=t.markers,o=t.labels,n=this.value,r=this.fromPoint=new Cs(n,X({},this.options,{labels:o.from,markers:e.from})),i=this.toPoint=new Cs(n,X({},this.options,{labels:o.to,markers:e.to}));this.copyFields(r),this.copyFields(i),this.append(r),this.append(i)}},e.prototype.reflow=function(t){this.render();var e=t.from,o=t.to;this.positionLabels(e,o),this.fromPoint.reflow(e),this.toPoint.reflow(o),this.box=this.fromPoint.markerBox().clone().wrap(this.toPoint.markerBox())},e.prototype.createHighlight=function(){var t=new j.drawing.Group;return t.append(this.fromPoint.createHighlight()),t.append(this.toPoint.createHighlight()),t},e.prototype.highlightVisual=function(){return this.visual},e.prototype.highlightVisualArgs=function(){return{options:this.options,from:this.fromPoint.highlightVisualArgs(),to:this.toPoint.highlightVisualArgs()}},e.prototype.tooltipAnchor=function(){var t=this.owner.pane.clipBox();if(!t||t.overlaps(this.box)){var e,o,n,r=this.box,i=r.center(),c=g;return this.options.vertical?(e=i.x,o=r.y1-5,n=a):(e=r.x2+5,o=i.y,n=s),{point:new he(e,o),align:{horizontal:c,vertical:n}}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.unclipElements=function(){this.fromPoint.unclipElements(),this.toPoint.unclipElements()},e.prototype.initLabelsFormat=function(){var t=this.options.labels;t.format||(t.from&&t.from.format||(t.from=Object.assign({},t.from,{format:"{0}"})),t.to&&t.to.format||(t.to=Object.assign({},t.to,{format:"{1}"})))},e.prototype.positionLabels=function(t,e){var o,n,r=this.options,i=r.labels,a=r.vertical;i.position===ks&&(a?e.y1<=t.y1?(n=nr,o=rr):(n=rr,o=nr):e.x1<=t.x1?(n=g,o=C):(n=C,o=g),i.from&&i.from.position||(this.fromPoint.options.labels.position=o),i.to&&i.to.position||(this.toPoint.options.labels.position=n))},e.prototype.copyFields=function(t){t.dataItem=this.dataItem,t.category=this.category,t.series=this.series,t.color=this.color,t.owner=this.owner},e}(_e);X(Ms.prototype,Li),X(Ms.prototype,Ri),Ms.prototype.defaults={markers:{visible:!1,background:H,size:8,type:c,border:{width:2},opacity:1},labels:{visible:!1,margin:$(3),padding:$(4),animation:{type:qn,delay:Yn},position:ks},notes:{label:{}},highlight:{markers:{border:{color:H,width:2}},zIndex:100},tooltip:{format:"{0} - {1}"}};const Os=Ms;var Ss=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.toGeometryPoints(this.toPoints()))},e.prototype.stackSegments=function(){var t=this.fromSegments;return this.fromSegments||(t=this.fromSegments=this.segmentsFromPoints(this.toGeometryPoints(this.fromPoints().reverse()))),t},e.prototype.createStroke=function(t){var e=new j.drawing.Path(t),o=new j.drawing.Path(t);e.segments.push.apply(e.segments,this.strokeSegments()),o.segments.push.apply(o.segments,this.stackSegments()),this.visual.append(e),this.visual.append(o)},e.prototype.hasStackSegment=function(){return!0},e.prototype.fromPoints=function(){return this.linePoints.map((function(t){return t.fromPoint}))},e.prototype.toPoints=function(){return this.linePoints.map((function(t){return t.toPoint}))},e}(ia);const Hs=Ss;var Ps=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.createCurveSegments(this.toPoints())},e.prototype.stackSegments=function(){var t=this.fromSegments;return this.fromSegments||(t=this.fromSegments=this.createCurveSegments(this.fromPoints().reverse())),t},e.prototype.createCurveSegments=function(t){return(new In).process(this.toGeometryPoints(t))},e}(Hs);const Is=Ps;var As=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createStrokeSegments=function(){return this.segmentsFromPoints(this.calculateStepPoints(this.toPoints()))},e.prototype.stackSegments=function(){var t=this.fromSegments;return this.fromSegments||(t=this.fromSegments=this.segmentsFromPoints(this.calculateStepPoints(this.fromPoints()))).reverse(),t},e}(Hs);X(As.prototype,Ki);const Vs=As;var Es=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.renderSegments()},e.prototype.pointType=function(){return Os},e.prototype.createPoint=function(t,e){var o=e.series,n=e.seriesIx,r=t.valueFields;if(!Si(r.from)&&!Si(r.to)){if(this.seriesMissingValues(o)!==er)return null;r={from:0,to:0}}var i=this.pointOptions(o,n);i=this.evalPointOptions(i,r,e);var a=t.fields.color||o.color;U(o.color)&&(a=i.color);var s=new Os(r,i);return s.color=a,this.append(s),s},e.prototype.createSegment=function(t,e,o){var n=(e.line||{}).style;return new("smooth"===n?Is:"step"===n?Vs:Hs)(t,e,o)},e.prototype.plotRange=function(t,e){return t?[t.value.from,t.value.to]:[e,e]},e.prototype.valueSlot=function(t,e){var o=t.getSlot(e[0],e[0],!this.options.clip),n=t.getSlot(e[1],e[1],!this.options.clip);if(o&&n)return{from:o,to:n}},e.prototype.pointSlot=function(t,e){var o,n,r=e.from,i=e.to;return this.options.invertAxes?(o=new ve(r.x1,t.y1,r.x2,t.y2),n=new ve(i.x1,t.y1,i.x2,t.y2)):(o=new ve(t.x1,r.y1,t.x2,r.y2),n=new ve(t.x1,i.y1,t.x2,i.y2)),{from:o,to:n}},e.prototype.addValue=function(e,o){var n=e.valueFields;D(n.from)||(n.from=n.to),D(n.to)||(n.to=n.from),t.prototype.addValue.call(this,e,o)},e.prototype.updateRange=function(t,e){if(null!==t&&D(t.from)&&D(t.to)){var o=e.series.axis,n=this.valueAxisRanges[o]=this.valueAxisRanges[o]||{min:b,max:x},r=t.from,i=t.to;n.min=Math.min(n.min,r,i),n.max=Math.max(n.max,r,i)}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.from,o.to)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++){var n=t[o];n&&(e.push((n.fromPoint||{}).marker),e.push((n.toPoint||{}).marker))}return e.concat(this._segments)},e}(Bi);X(Es.prototype,Ji,ea);const Ts=Es;var Bs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this,o=e.options,n=e.value,r=e.owner.seriesValueAxis(o),i=[],a=[],s=[],c=r.getSlot(n.low,n.high),l=r.getSlot(n.open,n.open),h=r.getSlot(n.close,n.close);l.x1=h.x1=c.x1=t.x1,l.x2=h.x2=c.x2=t.x2;var p=c.center().x;i.push([l.x1,l.y1]),i.push([p,l.y1]),a.push([p,h.y1]),a.push([h.x2,h.y1]),s.push([p,c.y1]),s.push([p,c.y2]),this.lines=[i,a,s],this.box=c.clone().wrap(l.clone().wrap(h)),this.reflowNote()},e.prototype.createBody=function(){},e}(Oa);const js=Bs;var Ls=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointType=function(){return js},e}(Ha);const Rs=Ls;var Ds=function(t){function e(e,o,n){t.call(this),this.from=e,this.to=o,this.series=n}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.linePoints=function(){var t=this.from,e=this.from.box,o=this.to.box,n=[];if(t.isVertical){var r=t.aboveAxis?e.y1:e.y2;n.push([e.x1,r],[o.x2,r])}else{var i=t.aboveAxis?e.x2:e.x1;n.push([i,e.y1],[i,o.y2])}return n},e.prototype.createVisual=function(){t.prototype.createVisual.call(this);var e=this.series.line||{},o=j.drawing.Path.fromPoints(this.linePoints(),{stroke:{color:e.color,width:e.width,opacity:e.opacity,dashType:e.dashType}});L(o),this.visual.append(o)},e}(_e);Rt(Ds,{animation:{type:qn,delay:Yn}});const Ns=Ds;var Fs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.createSegments()},e.prototype.traverseDataPoints=function(t){for(var e=this.options.series,o=wi(e),n=!this.options.invertAxes,r=0;r<e.length;r++)for(var i=e[r],a=0,s=0,c=0;c<o;c++){var l=Un.current.bindPoint(i,c),h=l.valueFields.value,p=l.fields.summary,u=a,v=void 0;p?"total"===p.toLowerCase()?(l.valueFields.value=a,u=0,v=a):(l.valueFields.value=s,v=u-s,s=0):D(h)&&(s+=h,v=a+=h),t(l,{category:this.categoryAxis.categoryAt(c),categoryIx:c,series:i,seriesIx:r,total:a,runningTotal:s,from:u,to:v,isVertical:n})}},e.prototype.updateRange=function(e,o){t.prototype.updateRange.call(this,{value:o.to},o)},e.prototype.aboveAxis=function(t){return t.value>=0},e.prototype.plotRange=function(t){return[t.from,t.to]},e.prototype.createSegments=function(){for(var t=this.options.series,e=this.seriesPoints,o=this.segments=[],n=0;n<t.length;n++){var r=t[n],i=e[n];if(i)for(var a=void 0,s=0;s<i.length;s++){var c=i[s];if(c&&a){var l=new Ns(a,c,r);o.push(l),this.append(l)}a=c}}},e}(ka);const Us=Fs,Ws=function(t,e,o){var n=t[String(e)];return n?n(o):null},Gs=function(t,e){for(var o,n,r=0,i=0,a=0,s=0,c=0,l=Number.MAX_VALUE,h=Number.MIN_VALUE,p=0;p<t.length;p++){var u=e(t[p]),v=u.xValue,d=u.yValue;isFinite(v)&&null!==v&&isFinite(d)&&null!==d&&(l=Math.min(v,l),h=Math.max(v,h),c++,r+=v,i+=d,a+=Math.pow(v,2),s+=v*d)}return c>0&&(n=(i-(o=(c*s-r*i)/(c*a-Math.pow(r,2)))*r)/c),{slope:o,intercept:n,count:c,xMin:l,xMax:h}};const Ks=function(t,e,o){for(var n=[],r=[],i=Math.max(2,o)-1,a=0,s=0,c=0;c<t.length;c++){var l=e(t[c]),h=l.xValue,p=l.yValue;if(isFinite(p)&&null!==p?(r.push(p),s+=p,a=Math.max(c,a)):r.push(null),c>=i){var u=r.filter((function(t){return null!==t})).length,v=r.shift()||0;if(u>0){var d=s/u;n.push([h,d]),s-=v;continue}}n.push([h,null])}return n.slice(0,a+1)};var Xs={};Xs[Dr]=function(t){var e=t.options,o=t.categoryAxis,n=function(t){var e,o=t.categoryAxis,n=t.options,r=Gs((0,t.seriesValues)(),(e=n.field,function(t){return{xValue:t.categoryIx+1,yValue:t.valueFields[e]}})),i=r.slope,a=r.intercept;if(r.count>0){for(var s=[],c=o.totalRangeIndices(),l=o.currentRangeIndices(),h={min:Math.floor(Math.max(l.min-1,c.min)),max:Math.ceil(Math.min(l.max+2,c.max))},p=h.min;p<h.max;p++)s[p]={category:o.categoryAt(p,!0),value:i*(p+1)+a};return{data:s}}return{data:null}}({seriesValues:t.seriesValues,categoryAxis:o,options:e}),r=n.data;return r?Object.assign({},e,{type:"line",data:r,categoryField:"category",field:"value"}):null},Xs[Nr]=function(t){var e=t.options,o=function(t){var e=t.categoryAxis,o=function(t){var e,o=t.options,n=t.categoryAxis,r=t.seriesValues,i=(o.trendline||{}).period||2,a=n.totalRangeIndices(),s=n.currentRangeIndices(),c={min:Math.floor(Math.max(s.min-i,a.min)),max:Math.ceil(Math.min(s.max+i+2,a.max))};return Ks(r(c),(e=o.field,function(t){return{xValue:t.categoryIx,yValue:t.valueFields[e]}}),i)}(t),n=[];return o.forEach((function(t){var o=t[0],r=t[1];n[o]={category:e.categoryAt(o,!0),value:r}})),n.length>0?{data:n}:{data:null}}(t),n=o.data;return n?Object.assign({},e,{type:"line",data:n,categoryField:"category",field:"value"}):null};const Zs=Xs;var Ys=[sr,Vr,Sr,jr],qs=[br,Br].concat(Ys),Qs=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(t){if(this.namedCategoryAxes={},this.namedValueAxes={},this.valueAxisRangeTracker=new va,this._seriesPointsCache={},this._currentPointsCache={},t.length>0){this.invertAxes=pt(t[0].type,[cr,pr,Br,Vr,jr,Hr,gr,Er]);for(var e=0;e<t.length;e++){var o=t[e].stack;if(o&&"100%"===o.type){this.stack100=!0;break}}}},e.prototype.render=function(t){void 0===t&&(t=this.panes),this.series=[].concat(this.originalSeries),this.createCategoryAxes(t),this.aggregateCategories(t),this.createTrendlineSeries(t),this.createCategoryAxesLabels(t),this.createCharts(t),this.createValueAxes(t)},e.prototype.removeAxis=function(e){var o=e.options.name;t.prototype.removeAxis.call(this,e),e instanceof Xo?delete this.namedCategoryAxes[o]:(this.valueAxisRangeTracker.reset(o),delete this.namedValueAxes[o]),e===this.categoryAxis&&delete this.categoryAxis,e===this.valueAxis&&delete this.valueAxis},e.prototype.trendlineFactory=function(t,e){var o=this.seriesCategoryAxis(t),n=this.seriesValues.bind(this,e.index),r=Ws(Zs,t.type,{options:t,categoryAxis:o,seriesValues:n});return r?(r.categoryAxis=e.categoryAxis,r.valueAxis=e.valueAxis,this.filterSeries(r,o)):r},e.prototype.trendlineAggregateForecast=function(){return this.series.map((function(t){return(t.trendline||{}).forecast})).filter((function(t){return void 0!==t})).reduce((function(t,e){return{before:Math.max(t.before,e.before||0),after:Math.max(t.after,e.after||0)}}),{before:0,after:0})},e.prototype.seriesValues=function(t,e){var o=[],n=this.srcSeries[t],r=this.seriesCategoryAxis(n);_i(r.options.type,p)&&(this._seriesPointsCache={},this._currentPointsCache={},r.options.dataItems=[],n=this.aggregateSeries(n,r,r.totalRangeIndices()));for(var i=e?e.min:0,a=e?e.max:n.data.length,s=i;s<a;s++){var c=this.bindPoint(n,s);o.push({categoryIx:s,category:c.fields.category,valueFields:c.valueFields})}return o},e.prototype.createCharts=function(t){for(var e=this,o=this.groupSeriesByPane(),n=0;n<t.length;n++){var r=t[n],i=o[r.options.name||"default"]||[];e.addToLegend(i);var a=e.filterVisibleSeries(i);if(a)for(var s=e.groupSeriesByCategoryAxis(a),c=0;c<s.length;c++)e.createChartGroup(s[c],r)}},e.prototype.createChartGroup=function(t,e){this.createAreaChart(ki(t,[sr,Vr]),e),this.createRangeAreaChart(ki(t,[Sr,jr]),e),this.createBarChart(ki(t,[vr,cr]),e),this.createRangeBarChart(ki(t,[Pr,Hr]),e),this.createBulletChart(ki(t,[pr,Tr]),e),this.createCandlestickChart(ki(t,ur),e),this.createBoxPlotChart(ki(t,[lr,Er]),e),this.createOHLCChart(ki(t,xr),e),this.createWaterfallChart(ki(t,[Lr,gr]),e),this.createLineChart(ki(t,[br,Br]),e)},e.prototype.aggregateCategories=function(t){var e=this,o=[].concat(this.series),n=[];this._currentPointsCache={},this._seriesPointsCache=this._seriesPointsCache||{};for(var r=0;r<o.length;r++){var i=o[r];if(!e.isTrendline(i)){var a=e.seriesCategoryAxis(i),s=e.findPane(a.options.pane);i=(_i(a.options.type,p)||i.categoryField)&&pt(s,t)?e.aggregateSeries(i,a,a.currentRangeIndices()):e.filterSeries(i,a)}n.push(i)}this._seriesPointsCache=this._currentPointsCache,this._currentPointsCache=null,this.srcSeries=o,this.series=n},e.prototype.filterSeries=function(t,e){var o=(t.data||{}).length;if(e._seriesMax=Math.max(e._seriesMax||0,o),!zt(e.options.min)&&!zt(e.options.max))return t;var n=e.currentRangeIndices(),r=pt(t.type,qs),i=X({},t);return i.data=(i.data||[]).slice(n.min,n.max+1),r&&Ei(i,n,o,(function(o){return{item:t.data[o],category:e.categoryAt(o,!0),categoryIx:o-n.min}}),(function(e){return zt(t.data[e])})),i},e.prototype.clearSeriesPointsCache=function(){this._seriesPointsCache={}},e.prototype.seriesSourcePoints=function(t,e){var o=t.index+";"+e.categoriesHash();if(this._seriesPointsCache&&this._seriesPointsCache[o])return this._currentPointsCache[o]=this._seriesPointsCache[o],this._seriesPointsCache[o];var n=e.options,r=n.srcCategories,i=_i(n.type,p),a=t.data,s=i?Mi:Nn,c=[];i||e.mapCategories();for(var l=0;l<a.length;l++){var h;if(h=t.categoryField?s(t.categoryField,a[l],this.chartService.intl):r[l],zt(h)&&null!==h){var u=e.totalIndex(h);c[u]=c[u]||{items:[],category:h},c[u].items.push(l)}}return this._currentPointsCache[o]=c,c},e.prototype.aggregateSeries=function(t,e,o){if(!t.data.length)return t;for(var n=this.seriesSourcePoints(t,e),r=X({},t),i=new ms(X({},t),Un.current,gs.current),a=r.data=[],s=e.options.dataItems||[],c=function(t){var r=t-o.min,a=n[t];if(a||(a=n[t]={}),a.categoryIx=r,!a.item){var s=e.categoryAt(t,!0);a.category=s,a.item=i.aggregatePoints(a.items,s)}return a},l=o.min;l<=o.max;l++){var h=c(l);a[h.categoryIx]=h.item,h.items&&h.items.length&&(s[h.categoryIx]=h.item)}return pt(r.type,qs)&&Ei(r,o,e.totalCount(),c,(function(t){return n[t]})),e.options.dataItems=s,r},e.prototype.appendChart=function(e,o){var n=e.options.series,r=this.seriesCategoryAxis(n[0]),i=r.options.categories,a=Math.max(0,wi(n)-i.length);if(a>0)for(i=r.options.categories=r.options.categories.slice(0);a--;)i.push("");this.valueAxisRangeTracker.update(e.valueAxisRanges),t.prototype.appendChart.call(this,e,o)},e.prototype.seriesPaneName=function(t){var e=this.options,o=t.axis,n=st([].concat(e.valueAxis),(function(t){return t.name===o}))[0],r=((e.panes||[{}])[0]||{}).name||"default";return(n||{}).pane||r},e.prototype.seriesCategoryAxis=function(t){var e=t.categoryAxis,o=e?this.namedCategoryAxes[e]:this.categoryAxis;if(!o)throw new Error("Unable to locate category axis with name "+e);return o},e.prototype.stackableChartOptions=function(t,e){var o=t.stack;return{isStacked:o,isStacked100:o&&"100%"===o.type,clip:e.options.clip}},e.prototype.groupSeriesByCategoryAxis=function(t){for(var e=[],o={},n=0;n<t.length;n++){var r=t[n].categoryAxis||"$$default$$";o.hasOwnProperty(r)||(o[r]=!0,e.push(r))}for(var i=[],a=0;a<e.length;a++){var s=$s(t,e[a],a);0!==s.length&&i.push(s)}return i},e.prototype.createBarChart=function(t,e){if(0!==t.length){var o=t[0],n=new ka(this,Object.assign({series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing},this.stackableChartOptions(o,e)));this.appendChart(n,e)}},e.prototype.createRangeBarChart=function(t,e){if(0!==t.length){var o=t[0],n=new _s(this,{series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing});this.appendChart(n,e)}},e.prototype.createBulletChart=function(t,e){if(0!==t.length){var o=t[0],n=new Ya(this,{series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing,clip:e.options.clip});this.appendChart(n,e)}},e.prototype.createLineChart=function(t,e){if(0!==t.length){var o=t[0],n=new na(this,Object.assign({invertAxes:this.invertAxes,series:t},this.stackableChartOptions(o,e)));this.appendChart(n,e)}},e.prototype.createAreaChart=function(t,e){if(0!==t.length){var o=t[0],n=new pa(this,Object.assign({invertAxes:this.invertAxes,series:t},this.stackableChartOptions(o,e)));this.appendChart(n,e)}},e.prototype.createRangeAreaChart=function(t,e){if(0!==t.length){var o=new Ts(this,{invertAxes:this.invertAxes,series:t,clip:e.options.clip});this.appendChart(o,e)}},e.prototype.createOHLCChart=function(t,e){if(0!==t.length){var o=t[0],n=new Rs(this,{invertAxes:this.invertAxes,gap:o.gap,series:t,spacing:o.spacing,clip:e.options.clip});this.appendChart(n,e)}},e.prototype.createCandlestickChart=function(t,e){if(0!==t.length){var o=t[0],n=new Ha(this,{invertAxes:this.invertAxes,gap:o.gap,series:t,spacing:o.spacing,clip:e.options.clip});this.appendChart(n,e)}},e.prototype.createBoxPlotChart=function(t,e){if(0!==t.length){var o=t[0],n=new Ta(this,{invertAxes:this.invertAxes,gap:o.gap,series:t,spacing:o.spacing,clip:e.options.clip});this.appendChart(n,e)}},e.prototype.createWaterfallChart=function(t,e){if(0!==t.length){var o=t[0],n=new Us(this,{series:t,invertAxes:this.invertAxes,gap:o.gap,spacing:o.spacing});this.appendChart(n,e)}},e.prototype.axisRequiresRounding=function(t,e){for(var o=ki(this.series,Rr),n=0;n<this.series.length;n++){var r=this.series[n];if(pt(r.type,Ys)){var i=r.line;i&&i.style===ar&&o.push(r)}}for(var a=0;a<o.length;a++){var s=o[a].categoryAxis||"";if(s===t||!s&&0===e)return!0}},e.prototype.aggregatedAxis=function(t,e){for(var o=this.series,n=0;n<o.length;n++){var r=o[n].categoryAxis||"";if((r===t||!r&&0===e)&&o[n].categoryField)return!0}},e.prototype.createCategoryAxesLabels=function(){for(var t=this.axes,e=0;e<t.length;e++)t[e]instanceof Xo&&t[e].createLabels()},e.prototype.createCategoryAxes=function(t){for(var e=this,o=this.invertAxes,n=[].concat(this.options.categoryAxis),r=[],i=0;i<n.length;i++){var a=n[i];if(pt(e.findPane(a.pane),t)){var s=a.name,c=a.categories;void 0===c&&(c=[]),a=X({vertical:o,reverse:!o&&e.chartService.rtl,axisCrossingValue:o?b:0},a),zt(a.justified)||(a.justified=e.isJustified()),e.axisRequiresRounding(s,i)&&(a.justified=!1);var l=void 0;if(Hi(a,c[0])?(a._forecast=e.trendlineAggregateForecast(),l=new on(a,e.chartService)):l=new Xo(a,e.chartService),n[i].categories=l.options.srcCategories,s){if(e.namedCategoryAxes[s])throw new Error("Category axis with name "+s+" is already defined");e.namedCategoryAxes[s]=l}l.axisIndex=i,r.push(l),e.appendAxis(l)}}var h=this.categoryAxis||r[0];this.categoryAxis=h,o?this.axisY=h:this.axisX=h},e.prototype.isJustified=function(){for(var t=this.series,e=0;e<t.length;e++)if(!pt(t[e].type,Ys))return!1;return!0},e.prototype.createValueAxes=function(t){var e=this,o=this.valueAxisRangeTracker,n=o.query(),r=[].concat(this.options.valueAxis),i=this.invertAxes,a={vertical:!i,reverse:i&&this.chartService.rtl},s=[];this.stack100&&(a.roundToMajorUnit=!1,a.labels={format:"P0"});for(var c=0;c<r.length;c++){var l=r[c];if(pt(e.findPane(l.pane),t)){var h=l.name,p=_i(l.type,ai)?{min:.1,max:1}:{min:0,max:1},u=o.query(h)||n||p;0===c&&u&&n&&(u.min=Math.min(u.min,n.min),u.max=Math.max(u.max,n.max));var v=new(_i(l.type,ai)?yn:hn)(u.min,u.max,X({},a,l),e.chartService);if(h){if(e.namedValueAxes[h])throw new Error("Value axis with name "+h+" is already defined");e.namedValueAxes[h]=v}v.axisIndex=c,s.push(v),e.appendAxis(v)}}var d=this.valueAxis||s[0];this.valueAxis=d,i?this.axisX=d:this.axisY=d},e.prototype._dispatchEvent=function(t,e,o){var n=t._eventCoordinates(e),r=new he(n.x,n.y),i=this.pointPane(r),a=[],s=[];if(i){for(var c=i.axes,l=0;l<c.length;l++){var h=c[l];h.getValue?yi(s,h.getValue(r)):yi(a,h.getCategory(r))}0===a.length&&yi(a,this.categoryAxis.getCategory(r)),a.length>0&&s.length>0&&t.trigger(o,{element:St(e),originalEvent:e,category:Pi(a),value:Pi(s)})}},e.prototype.pointPane=function(t){for(var e=this.panes,o=0;o<e.length;o++){var n=e[o];if(n.contentBox.containsPoint(t))return n}},e.prototype.updateAxisOptions=function(t,e){Js(this.options,t,e),Js(this.originalOptions,t,e)},e}(us);function Js(t,e,o){X([].concat(e instanceof Xo?t.categoryAxis:t.valueAxis)[e.axisIndex],o)}function $s(t,e,o){return st(t,(function(t){return 0===o&&!t.categoryAxis||t.categoryAxis===e}))}Rt(Qs,{categoryAxis:{},valueAxis:{}}),X(Qs.prototype,ds);const tc=Qs;var ec=function(t){function e(){t.call(this),this._points=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._points=[]},e.prototype.show=function(t,e){var o=[].concat(t);this.hide();for(var n=0;n<o.length;n++){var r=o[n];r&&r.toggleHighlight&&r.hasHighlight()&&(this.togglePointHighlight(r,!0,e),this._points.push(r))}},e.prototype.togglePointHighlight=function(t,e,o){var n=(t.options.highlight||{}).toggle;if(n){var r={category:t.category,series:t.series,dataItem:t.dataItem,value:t.value,stackValue:t.stackValue,preventDefault:oc,visual:t.highlightVisual(),show:e};n(r),r._defaultPrevented||t.toggleHighlight(e,o)}else t.toggleHighlight(e,o)},e.prototype.hide=function(){for(var t=this._points;t.length;)this.togglePointHighlight(t.pop(),!1)},e.prototype.isHighlighted=function(t){for(var e=this._points,o=0;o<e.length;o++)if(t===e[o])return!0;return!1},e}(j.Class);function oc(){this._defaultPrevented=!0}const nc=ec;function rc(t,e){var o=(e||"").toLowerCase(),n=t.event;return"none"===o&&!(n.ctrlKey||n.shiftKey||n.altKey)||n[o+"Key"]}function ic(t){for(var e={},o=0;o<t.length;o++){var n=t[o];n.axis.options.name&&(e[n.axis.options.name]={min:n.range.min,max:n.range.max})}return e}var ac=function(t){function e(e,o){t.call(this),this.plotArea=e,this.options=X({},this.options,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.start=function(t){return this._active=rc(t,this.options.key),this._active},e.prototype.move=function(t){if(this._active){var e=this.axisRanges=this._panAxes(t,I).concat(this._panAxes(t,A));if(e.length)return this.axisRanges=e,ic(e)}},e.prototype.end=function(){var t=this._active;return this._active=!1,t},e.prototype.pan=function(){var t=this.plotArea,e=this.axisRanges;if(e.length){for(var o=0;o<e.length;o++){var n=e[o];t.updateAxisOptions(n.axis,n.range)}t.redraw(t.panes)}},e.prototype.destroy=function(){delete this.plotArea},e.prototype._panAxes=function(t,e){var o=this.plotArea,n=-t[e].delta,r=(this.options.lock||"").toLowerCase(),i=[];if(0!==n&&(r||"").toLowerCase()!==e)for(var a=o.axes,s=0;s<a.length;s++){var c=a[s];if(e===I&&!c.options.vertical||e===A&&c.options.vertical){var l=c.pan(n);l&&(l.limitRange=!0,i.push({axis:c,range:l}))}}return i},e}(j.Class);ac.prototype.options={key:"none",lock:"none"};const sc=ac;var cc=function(t){function e(e,o){t.call(this),this.chart=e,this.options=X({},this.options,o),this.createElement()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createElement=function(){var t=this._marquee=document.createElement("div");t.className="k-marquee";var e=document.createElement("div");e.className="k-marquee-color",t.appendChild(e)},e.prototype.removeElement=function(){this._marquee.parentNode&&this._marquee.parentNode.removeChild(this._marquee)},e.prototype.setStyles=function(t){J(this._marquee,t)},e.prototype.start=function(t){if(rc(t,this.options.key)){var e=this.chart,o=e._eventCoordinates(t),n=this._zoomPane=e._plotArea.paneByPoint(o),r=n?n.chartsBox().clone():null;if(n&&r){var i=this._elementOffset();return r.translate(i.left,i.top),this._zoomPaneClipBox=r,document.body.appendChild(this._marquee),this.setStyles({left:t.pageX+1,top:t.pageY+1,width:0,height:0}),!0}}return!1},e.prototype._elementOffset=function(){var t=this.chart.element,e=J(t,["paddingLeft","paddingTop"]),o=e.paddingLeft,n=e.paddingTop,r=kt(t);return{left:o+r.left,top:n+r.top}},e.prototype.move=function(t){this._zoomPane&&this.setStyles(this._selectionPosition(t))},e.prototype.end=function(t){if(this._zoomPane){var e=this._elementOffset(),o=this._selectionPosition(t);o.left-=e.left,o.top-=e.top;var n={x:o.left,y:o.top},r={x:o.left+o.width,y:o.top+o.height};return this._updateAxisRanges(n,r),this.removeElement(),delete this._zoomPane,ic(this.axisRanges)}},e.prototype.zoom=function(){var t=this.axisRanges;if(t&&t.length){for(var e=this.chart._plotArea,o=0;o<t.length;o++){var n=t[o];e.updateAxisOptions(n.axis,n.range)}e.redraw(e.panes)}},e.prototype.destroy=function(){this.removeElement(),delete this._marquee,delete this.chart},e.prototype._updateAxisRanges=function(t,e){for(var o=(this.options.lock||"").toLowerCase(),n=[],r=this._zoomPane.axes,i=0;i<r.length;i++){var a=r[i],s=a.options.vertical;if((o!==I||s)&&(o!==A||!s)&&zt(a.axisIndex)){var c=a.pointsRange(t,e);c&&n.push({axis:a,range:c})}}this.axisRanges=n},e.prototype._selectionPosition=function(t){var e=this._zoomPaneClipBox,o={x:t.x.startLocation,y:t.y.startLocation},n=t.x.location,r=t.y.location,i=(this.options.lock||"").toLowerCase(),a=Math.min(o.x,n),s=Math.min(o.y,r),c=Math.abs(o.x-n),l=Math.abs(o.y-r);return i===I&&(a=e.x1,c=e.width()),i===A&&(s=e.y1,l=e.height()),n>e.x2&&(c=e.x2-o.x),n<e.x1&&(c=o.x-e.x1),r>e.y2&&(l=e.y2-o.y),r<e.y1&&(l=o.y-e.y1),{left:Math.max(a,e.x1),top:Math.max(s,e.y1),width:c,height:l}},e}(j.Class);cc.prototype.options={key:"shift",lock:"none"};const lc=cc;var hc=function(t){function e(e,o){t.call(this),this.chart=e,this.options=X({rate:.3},this.options,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.updateRanges=function(t,e){for(var o=(this.options.lock||"").toLowerCase(),n=[],r=this.chart._plotArea.axes,i=0;i<r.length;i++){var a=r[i],s=a.options.vertical;if((o!==I||s)&&(o!==A||!s)&&a.zoomRange){var c=It(this.options.rate,.01,.9),l=a.zoomRange(-t*c,e);l&&n.push({axis:a,range:l})}}return this.axisRanges=n,ic(n)},e.prototype.zoom=function(){var t=this.axisRanges,e=this.chart._plotArea;if(t&&t.length&&e.updateAxisOptions){for(var o=0;o<t.length;o++){var n=t[o];e.updateAxisOptions(n.axis,n.range)}e.redraw(e.panes)}},e.prototype.destroy=function(){delete this.chart},e}(j.Class);const pc=hc;var uc=function(t){function e(e,o){t.call(this,e),this.chartService=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t=this.children,e=this.options,o=e.vertical;this.visual=new j.drawing.Layout(null,{spacing:o?0:e.spacing,lineSpacing:o?e.spacing:0,orientation:o?"vertical":"horizontal",reverse:e.rtl,alignItems:o?"start":"center"});for(var n=0;n<t.length;n++){var r=t[n];r.reflow(new ve),r.renderVisual()}},e.prototype.reflow=function(t){this.visual.rect(t.toRect()),this.visual.reflow();var e=this.visual.clippedBBox();this.box=e?je(e):new ve},e.prototype.renderVisual=function(){this.addVisual()},e.prototype.createVisual=function(){},e}(_e);const vc=uc;var dc=function(t){function e(e){t.call(this,e),this.createContainer(),e.rtl?(this.createLabel(),this.createMarker()):(this.createMarker(),this.createLabel())}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createContainer=function(){this.container=new Ve({vertical:!1,wrap:!1,align:s,spacing:this.options.spacing}),this.append(this.container)},e.prototype.createMarker=function(){this.container.append(new Me(this.markerOptions()))},e.prototype.markerOptions=function(){var t=this.options,e=t.markerColor;return X({},t.markers,{background:e,border:{color:e}})},e.prototype.createLabel=function(){var t=this.options,e=X({},t.labels);this.container.append(new De(t.text,e))},e.prototype.renderComplete=function(){t.prototype.renderComplete.call(this);var e=this.options.cursor||{},o=this._itemOverlay=j.drawing.Path.fromRect(this.container.box.toRect(),{fill:{color:H,opacity:0},stroke:null,cursor:e.style||e});this.appendVisual(o)},e.prototype.click=function(t,e){var o=this.eventArgs(e);!t.trigger("legendItemClick",o)&&e&&"contextmenu"===e.type&&e.preventDefault()},e.prototype.over=function(t,e){var o=this.eventArgs(e);return t.trigger("legendItemHover",o)||t._legendItemHover(o.seriesIndex,o.pointIndex),!0},e.prototype.out=function(t,e){t._unsetActivePoint(),t.trigger("legendItemLeave",this.eventArgs(e))},e.prototype.eventArgs=function(t){var e=this.options;return{element:St(t),text:e.text,series:e.series,seriesIndex:e.series.index,pointIndex:e.pointIndex}},e.prototype.renderVisual=function(){var e=this,o=this.options,n=o.visual;n?(this.visual=n({active:o.active,series:o.series,sender:this.getSender(),pointIndex:o.pointIndex,options:{markers:this.markerOptions(),labels:o.labels},createVisual:function(){e.createVisual(),e.renderChildren(),e.renderComplete();var t=e.visual;return delete e.visual,t}}),this.addVisual()):t.prototype.renderVisual.call(this)},e}(Ce);const fc=dc;var mc="horizontal",yc="custom",gc=function(t){function e(e,o){void 0===o&&(o={}),t.call(this,e),this.chartService=o,pt(this.options.position,[O,C,a,g,yc])||(this.options.position=C),this.createContainers(),this.createLegendTitle(e.title),this.createItems()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createContainers=function(){var t=this.options,e=t.position,o=t.align,n=e,r=s;e===yc?n=g:pt(e,[O,a])?(n="start"===o?g:"end"===o?C:s,r=e):o&&("start"===o?r=O:"end"===o&&(r=a)),this.container=new Ce({margin:t.margin,padding:t.padding,background:t.background,border:t.border,vAlign:r,align:n,zIndex:t.zIndex,shrinkToFit:!0}),this.hasTitle()?this.itemsContainer=new Ce({vAlign:r,align:n,zIndex:t.zIndex,shrinkToFit:!0}):this.itemsContainer=this.container,this.append(this.container)},e.prototype.createItems=function(){var t=this.getService(),e=this.options,o=this.isVertical(),n=new vc({vertical:o,spacing:e.spacing,rtl:t.rtl},t),r=e.items;e.reverse&&(r=r.slice(0).reverse());for(var i=r.length,a=0;a<i;a++){var s=r[a];n.append(new fc(X({},{markers:e.markers,labels:e.labels,rtl:t.rtl},e.item,s)))}n.render(),this.itemsContainer.append(n)},e.prototype.isVertical=function(){var t=this.options,e=t.orientation,o=t.position;return o===yc&&e!==mc||(zt(e)?e!==mc:pt(o,[g,C]))},e.prototype.hasItems=function(){return this.container.children[0].children.length>0},e.prototype.reflow=function(t){var e=this.options,o=t.clone();this.hasItems()?(e.position===yc?(this.containerCustomReflow(o),this.box=o):this.containerReflow(o),this.hasTitle()&&this.title.reflow(new ve(this.container.box.x1,this.title.box.y1,this.container.box.x2,this.title.box.y2))):this.box=o},e.prototype.containerReflow=function(t){var e=this.options,o=this.container,n=e.position,r=e.width,i=e.height,s=n===O||n===a?I:A,c=this.isVertical(),l=t.clone(),h=t.clone();n!==g&&n!==C||(h.y1=l.y1=0),c&&i?(h.y2=h.y1+i,h.align(l,A,o.options.vAlign)):!c&&r&&(h.x2=h.x1+r,h.align(l,I,o.options.align)),o.reflow(h);var p=(h=o.box).clone();(e.offsetX||e.offsetY)&&(h.translate(e.offsetX,e.offsetY),o.reflow(h)),p[s+1]=t[s+1],p[s+2]=t[s+2],this.box=p},e.prototype.containerCustomReflow=function(t){var e=this.options,o=this.container,n=e.offsetX,r=e.offsetY,i=e.width,a=e.height,s=this.isVertical(),c=t.clone();s&&a?c.y2=c.y1+a:!s&&i&&(c.x2=c.x1+i),o.reflow(c),c=o.box,o.reflow(new ve(n,r,n+c.width(),r+c.height()))},e.prototype.renderVisual=function(){this.hasItems()&&t.prototype.renderVisual.call(this)},e.prototype.createLegendTitle=function(t){var e=X({},{color:i,position:O,align:s},t),o=e.text;if(t&&!1!==t.visible){if(zt(e)&&e.visible){var n=nt(e);n?o=n({text:o}):e.format&&(o=this.chartService.format.auto(e.format,o))}this.title=new De(o,e),this.createTitleLayout(),this.appendTitleLayoutContent()}},e.prototype.createTitleLayout=function(){this.layout=new Ve({vertical:!0,wrap:!1}),this.container.append(this.layout)},e.prototype.hasTitle=function(){return Boolean(this.options.title&&!1!==this.options.title.visible)},e.prototype.appendTitleLayoutContent=function(){this.options.title.position===a?(this.layout.append(this.itemsContainer),this.layout.append(this.title)):(this.layout.append(this.title),this.layout.append(this.itemsContainer))},e}(_e);Rt(gc,{position:C,items:[],offsetX:0,offsetY:0,margin:$(5),padding:$(5),border:{color:i,width:0},item:{cursor:"pointer",spacing:6},spacing:6,background:"",zIndex:1,markers:{border:{width:0},width:15,height:3,type:"rect",align:g,vAlign:s}});const bc=gc;var xc=function(t){function e(){t.call(this),this._registry=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e){this._registry.push({type:t,seriesTypes:e})},e.prototype.create=function(t,e,o){for(var n,r=this._registry,i=r[0],a=0;a<r.length;a++){var s=r[a];n=ki(t,s.seriesTypes);var c=ki(t,Fr);if(n.length-c.length>0){i=s;break}}return new i.type(n,e,o)},e}(j.Class);xc.current=new xc;const wc=xc;function _c(t){var e=document.createElement("div");return t&&(e.className=t),e}function zc(t){for(var e=t;e&&!ct(e,"k-handle");)e=e.parentNode;return e}var Cc=function(t){function e(e,o,n,r){t.call(this);var i=e.element;this.options=X({},this.options,n),this.chart=e,this.observer=r,this.chartElement=i,this.categoryAxis=o,this._dateAxis=this.categoryAxis instanceof on,this.initOptions(),this.visible=this.options.visible&&i.offsetHeight,this.visible&&(this.createElements(),this.set(this._index(this.options.from),this._index(this.options.to)),this.bindEvents())}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onPane=function(t){return this.categoryAxis.pane===t},e.prototype.createElements=function(){var t=this.options,e=this.wrapper=_c("k-selector k-pointer-events-none");J(e,{top:t.offset.top,left:t.offset.left,width:t.width,height:t.height,direction:"ltr"});var o=this.selection=_c("k-selection k-pointer-events-none");this.leftMask=_c("k-mask k-pointer-events-none"),this.rightMask=_c("k-mask k-pointer-events-none"),e.appendChild(this.leftMask),e.appendChild(this.rightMask),e.appendChild(o);var n=this.body=_c("k-selection-bg k-pointer-events-none");o.appendChild(n);var r=this.leftHandle=_c("k-handle k-left-handle k-pointer-events-auto"),i=this.rightHandle=_c("k-handle k-right-handle k-pointer-events-auto");r.appendChild(_c()),i.appendChild(_c()),o.appendChild(r),o.appendChild(i),this.chartElement.appendChild(e);var a=J(o,["borderLeftWidth","borderRightWidth","height"]),s=J(r,"height").height,c=J(i,"height").height;t.selection={border:{left:a.borderLeftWidth,right:a.borderRightWidth}},J(r,{top:(a.height-s)/2}),J(i,{top:(a.height-c)/2}),e.style.cssText=e.style.cssText},e.prototype.bindEvents=function(){var t;!1!==this.options.mousewheel&&(this._mousewheelHandler=this._mousewheel.bind(this),_t(this.chartElement,((t={})[hi]=this._mousewheelHandler,t))),this._domEvents=so.create(this.chartElement,{stopPropagation:!0,start:this._start.bind(this),move:this._move.bind(this),end:this._end.bind(this),tap:this._tap.bind(this),press:this._press.bind(this),gesturestart:this._gesturestart.bind(this),gesturechange:this._gesturechange.bind(this),gestureend:this._gestureend.bind(this)})},e.prototype.initOptions=function(){var t=this.options,e=this.categoryAxis.pane.chartsBox(),o=this.chart.chartService.intl;this._dateAxis&&X(t,{min:Uo(o,t.min),max:Uo(o,t.max),from:Uo(o,t.from),to:Uo(o,t.to)});var n=J(this.chartElement,["paddingLeft","paddingTop"]),r=n.paddingLeft,i=n.paddingTop;this.options=X({},{width:e.width(),height:e.height()+.1,padding:{left:r,top:i},offset:{left:e.x1+r,top:e.y1+i},from:t.min,to:t.max},t)},e.prototype.destroy=function(){var t;this._domEvents&&(this._domEvents.destroy(),delete this._domEvents),clearTimeout(this._mwTimeout),this._state=null,this.wrapper&&(this._mousewheelHandler&&(Tt(this.chartElement,((t={})[hi]=this._mousewheelHandler,t)),this._mousewheelHandler=null),this.chartElement.removeChild(this.wrapper),this.wrapper=null)},e.prototype._rangeEventArgs=function(t){return{axis:this.categoryAxis.options,from:this._value(t.from),to:this._value(t.to)}},e.prototype._pointInPane=function(t,e){var o=this.categoryAxis.pane.box,n=this.chart._toModelCoordinates(t,e);return o.containsPoint(n)},e.prototype._start=function(t){var e=this.options,o=St(t);if(!this._state&&o){var n=Ot(t);if(this._pointInPane(n.x,n.y)){var r=zc(o),i=this.body.getBoundingClientRect(),a=!r&&n.x>=i.x&&n.x<=i.x+i.width&&n.y>=i.y&&n.y<=i.y+i.height;this.chart._unsetActivePoint(),this._state={moveTarget:r,startLocation:t.x?t.x.location:0,inBody:a,range:{from:this._index(e.from),to:this._index(e.to)}};var s=this._rangeEventArgs({from:this._index(e.from),to:this._index(e.to)});this.trigger(ei,s)&&(this._state=null)}}},e.prototype._press=function(t){var e;(e=this._state?this._state.moveTarget:zc(St(t)))&&E(e,"k-handle-active")},e.prototype._move=function(t){if(this._state){var e=this,o=e._state,n=e.options,r=e.categoryAxis,i=o.range,a=o.moveTarget,s=r.options.reverse,c=this._index(n.from),l=this._index(n.to),h=this._index(n.min),p=this._index(n.max),u=o.startLocation-t.x.location,v=i.from,d=i.to,f=i.to-i.from,m=J(this.wrapper,"width").width/(r.categoriesCount()-1),y=Math.round(u/m)*(s?-1:1);if(a||o.inBody){var g=a&&ct(a,"k-left-handle"),b=a&&ct(a,"k-right-handle");o.inBody?(i.from=Math.min(Math.max(h,c-y),p-f),i.to=Math.min(i.from+f,p)):g&&!s||b&&s?(i.from=Math.min(Math.max(h,c-y),p-1),i.to=Math.max(i.from+1,i.to)):(g&&s||b&&!s)&&(i.to=Math.min(Math.max(h+1,l-y),p),i.from=Math.min(i.to-1,i.from)),i.from===v&&i.to===d||(this.move(i.from,i.to),this.trigger(oi,this._rangeEventArgs(i)))}}},e.prototype._end=function(){if(this._state){var t=this._state.moveTarget;t&&B(t,"k-handle-active");var e=this._state.range;this.set(e.from,e.to),this.trigger(ni,this._rangeEventArgs(e)),delete this._state}},e.prototype._tap=function(t){var e=this.options,o=this.categoryAxis,n=this.chart._eventCoordinates(t),r=o.pointCategoryIndex(new he(n.x,o.box.y1)),i=this._index(e.from),a=this._index(e.to),s=this._index(e.min),c=this._index(e.max),l=a-i,h=i+l/2,p={},u=3===t.event.which,v=Math.round(h-r);this._state||u||(this.chart._unsetActivePoint(),o.options.justified||v--,p.from=Math.min(Math.max(s,i-v),c-l),p.to=Math.min(p.from+l,c),this._start(t),this._state&&(this._state.range=p,this.trigger(oi,this._rangeEventArgs(p)),this._end()))},e.prototype._mousewheel=function(t){var e=this,o=bt(t);if(this._start(t),this._state){var n=this._state.range;t.preventDefault(),t.stopPropagation(),Math.abs(o)>1&&(o*=3),this.options.mousewheel.reverse&&(o*=-1),this.expand(o)&&this.trigger(oi,{axis:this.categoryAxis.options,delta:o,originalEvent:t,from:this._value(n.from),to:this._value(n.to)}),this._mwTimeout&&clearTimeout(this._mwTimeout),this._mwTimeout=setTimeout((function(){e._end()}),150)}},e.prototype._gesturestart=function(t){var e=this.options,o=t.touches[0];if(this._pointInPane(o.pageX,o.pageY)){this._state={range:{from:this._index(e.from),to:this._index(e.to)}};var n=this._rangeEventArgs(this._state.range);this.trigger(ei,n)?this._state=null:t.preventDefault()}},e.prototype._gestureend=function(){this._state&&(this.trigger(ni,this._rangeEventArgs(this._state.range)),delete this._state)},e.prototype._gesturechange=function(t){if(this._state){var e=this,o=e.chart,n=e._state,r=e.options,i=e.categoryAxis,a=n.range,s=o._toModelCoordinates(t.touches[0].x.location).x,c=o._toModelCoordinates(t.touches[1].x.location).x,l=Math.min(s,c),h=Math.max(s,c);t.preventDefault(),a.from=i.pointCategoryIndex(new he(l))||r.min,a.to=i.pointCategoryIndex(new he(h))||r.max,this.move(a.from,a.to),this.trigger(oi,this._rangeEventArgs(a))}},e.prototype._index=function(t){var e=t;return t instanceof Date&&(e=this.categoryAxis.categoryIndex(t)),e},e.prototype._value=function(t){var e=t;return this._dateAxis&&(e=this.categoryAxis.categoryAt(t))>this.options.max&&(e=this.options.max),e},e.prototype._slot=function(t){var e=this.categoryAxis,o=this._index(t);return e.getSlot(o,o,!0)},e.prototype.move=function(t,e){var o=this.options,n=this.categoryAxis.options.reverse,r=o.offset,i=o.padding,a=o.selection.border,s=n?e:t,c=n?t:e,l="x"+(n?2:1),h=this._slot(s),p=Et(h[l]-r.left+i.left);J(this.leftMask,{width:p}),J(this.selection,{left:p}),h=this._slot(c);var u=Et(o.width-(h[l]-r.left+i.left));J(this.rightMask,{width:u});var v=o.width-u;v!==o.width&&(v+=a.right),J(this.rightMask,{left:v}),J(this.selection,{width:Math.max(o.width-(p+u)-a.right,0)})},e.prototype.set=function(t,e){var o=this.options,n=this._index(o.min),r=this._index(o.max),i=It(this._index(t),n,r),a=It(this._index(e),i+1,r);o.visible&&this.move(i,a),o.from=this._value(i),o.to=this._value(a)},e.prototype.expand=function(t){var e=this.options,o=this._index(e.min),n=this._index(e.max),r=e.mousewheel.zoom,i=this._index(e.from),a=this._index(e.to),s={from:i,to:a},c=X({},s);if(this._state&&(s=this._state.range),r!==C&&(s.from=It(It(i-t,0,a-1),o,n)),r!==g&&(s.to=It(It(a+t,s.from+1,n),o,n)),s.from!==c.from||s.to!==c.to)return this.set(s.from,s.to),!0},e.prototype.zoom=function(t,e){var o=this.options,n=this._index(o.min),r=this._index(o.max),i=this._index(o.from),a=this._index(o.to),s={from:i,to:a},c=X({},s),l=this.categoryAxis.options.reverse,h=I+(l?"2":"1"),p=this.categoryAxis.lineBox(),u=Math.abs(p[h]-e[I]),v=p.width(),d=Et(u/v,2),f=Et(d*t),m=Et((1-d)*t);if(this._state&&(s=this._state.range),s.from=It(It(i-f,0,a-1),n,r),s.to=It(It(a+m,s.from+1,r),n,r),s.from!==c.from||s.to!==c.to)return this.set(s.from,s.to),!0},e.prototype.trigger=function(t,e){return(this.observer||this.chart).trigger(t,e)},e}(j.Class);Rt(Cc,{visible:!0,mousewheel:{zoom:"both"},min:x,max:b});const kc=Cc;var Mc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.show=function(e){if(e&&e.tooltipAnchor&&(!this._current||this._current!==e)){var o=X({},this.options,e.options.tooltip),n=e.tooltipAnchor();n?(this._current=e,t.prototype.show.call(this,{point:e,anchor:n},o,e)):this.hide()}},e.prototype.hide=function(){delete this._current,t.prototype.hide.call(this)},e}(Qa);const Oc=Mc;var Sc=function(t){function e(e,o){t.call(this,e.chartService,o),this.plotArea=e,this.formatService=e.chartService.format}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.showAt=function(t,e){var o=st(t,(function(t){var e=t.series.tooltip;return!(e&&!1===e.visible)}));if(o.length>0){var n=o[0],r=this.plotArea.categoryAxis.getSlot(n.categoryIx),i=e?this._slotAnchor(e,r):this._defaultAnchor(n,r);this.show({anchor:i,shared:!0,points:t,category:n.category,categoryText:this.formatService.auto(this.options.categoryFormat,n.category),series:this.plotArea.series},this.options)}},e.prototype._slotAnchor=function(t,e){return this.plotArea.categoryAxis.options.vertical||(t.x=e.center().x),{point:t,align:{horizontal:"left",vertical:"center"}}},e.prototype._defaultAnchor=function(t,e){var o=t.owner.pane.chartsBox(),n=this.plotArea.categoryAxis.options.vertical,r=o.center(),i=e.center();return{point:n?new he(r.x,i.y):new he(i.x,r.y),align:{horizontal:"center",vertical:"center"}}},e}(Qa);Rt(Sc,{categoryFormat:"{0:d}"});const Hc=Sc;var Pc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.element,e=this.options;if(t.bbox()){this.origin=e.origin;var o=e.vertical?A:I,n=this.fromScale=new j.geometry.Point(1,1);n[o]=Jn,t.transform(j.geometry.transform().scale(n.x,n.y))}else this.abort()},e.prototype.step=function(t){var e=ut(this.fromScale.x,1,t),o=ut(this.fromScale.y,1,t);this.element.transform(j.geometry.transform().scale(e,o,this.origin))},e.prototype.abort=function(){t.prototype.abort.call(this),this.element.transform(null)},e}(j.drawing.Animation);Rt(Pc,{duration:Yn}),j.drawing.AnimationFactory.current.register(cr,Pc);var Ic=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.center=this.element.bbox().center();this.element.transform(j.geometry.transform().scale(Jn,Jn,t))},e.prototype.step=function(t){this.element.transform(j.geometry.transform().scale(t,t,this.center))},e}(j.drawing.Animation);Rt(Ic,{easing:"easeOutElastic"}),j.drawing.AnimationFactory.current.register(hr,Ic);var Ac=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this.fadeTo=this.element.opacity(),this.element.opacity(0)},e.prototype.step=function(t){this.element.opacity(t*this.fadeTo)},e}(j.drawing.Animation);Rt(Ac,{duration:200,easing:"linear"}),j.drawing.AnimationFactory.current.register(qn,Ac);var Vc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this.element.transform(j.geometry.transform().scale(Jn,Jn,this.options.center))},e.prototype.step=function(t){this.element.transform(j.geometry.transform().scale(t,t,this.options.center))},e}(j.drawing.Animation);Rt(Vc,{easing:"easeOutElastic",duration:Yn}),j.drawing.AnimationFactory.current.register(wr,Vc);const Ec=Vc;var Tc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){t.prototype.render.call(this),this.renderSegments()},e.prototype.createSegment=function(t,e,o){return new(e.style===ir?qi:Ui)(t,e,o)},e.prototype.animationPoints=function(){return t.prototype.animationPoints.call(this).concat(this._segments)},e.prototype.createMissingValue=function(t,e){if(e===er){var o={x:t.x,y:t.y};return Si(o.x)||(o.x=0),Si(o.y)||(o.y=0),o}},e}(Ra);X(Tc.prototype,Ji);const Bc=Tc,jc=function(t){return function(e){var o=e.valueFields;return{xValue:o.x,yValue:o[t]}}};var Lc={};Lc[Dr]=function(t){var e=t.options,o=function(t){var e=t.options,o=Gs((0,t.seriesValues)(),jc(e.field)),n=o.slope,r=o.intercept,i=o.count,a=o.xMin,s=o.xMax;if(i>0){var c=[],l=(e.trendline||{}).forecast;l&&(l.before>0&&(a-=l.before),l.after>0&&(s+=l.after));var h=(e.trendline||{}).samplingInterval,p=Bt(h,le(a,s)/10);h<=0&&(p=s-a);for(var u=a;u<=s;u+=p)c.push([u,n*u+r]);return c}return null}({seriesValues:t.seriesValues,options:e});return o?Object.assign({},e,{type:"scatterLine",data:o}):null},Lc[Nr]=function(t){var e=t.options,o=function(t){var e=t.options,o=t.seriesValues,n=(e.trendline||{}).period||2,r=Ks(o({before:n,after:n}),jc(e.field),n);return r.length>0?r:null}(t);return o?Object.assign({},e,{type:"scatterLine",data:o}):null};const Rc=Lc;var Dc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this.namedXAxes={},this.namedYAxes={},this.xAxisRangeTracker=new va,this.yAxisRangeTracker=new va},e.prototype.render=function(t){var e=this;void 0===t&&(t=this.panes),this.series=[].concat(this.originalSeries),this.createTrendlineSeries();for(var o=this.groupSeriesByPane(),n=0;n<t.length;n++){var r=t[n],i=o[r.options.name||"default"]||[];e.addToLegend(i);var a=e.filterVisibleSeries(i);a&&(e.createScatterChart(ki(a,Ir),r),e.createScatterLineChart(ki(a,Ar),r),e.createBubbleChart(ki(a,hr),r))}this.createAxes(t)},e.prototype.appendChart=function(e,o){this.xAxisRangeTracker.update(e.xAxisRanges),this.yAxisRangeTracker.update(e.yAxisRanges),t.prototype.appendChart.call(this,e,o)},e.prototype.removeAxis=function(e){var o=e.options.name;t.prototype.removeAxis.call(this,e),e.options.vertical?(this.yAxisRangeTracker.reset(o),delete this.namedYAxes[o]):(this.xAxisRangeTracker.reset(o),delete this.namedXAxes[o]),e===this.axisX&&delete this.axisX,e===this.axisY&&delete this.axisY},e.prototype.seriesPaneName=function(t){var e=this.options,o=t.xAxis,n=st([].concat(e.xAxis),(function(t){return t.name===o}))[0],r=t.yAxis,i=st([].concat(e.yAxis),(function(t){return t.name===r}))[0],a=(e.panes||[{}])[0].name||"default";return(n||{}).pane||(i||{}).pane||a},e.prototype.createScatterChart=function(t,e){t.length>0&&this.appendChart(new Ra(this,{series:t,clip:e.options.clip}),e)},e.prototype.createScatterLineChart=function(t,e){t.length>0&&this.appendChart(new Bc(this,{series:t,clip:e.options.clip}),e)},e.prototype.createBubbleChart=function(t,e){t.length>0&&this.appendChart(new Ua(this,{series:t,clip:e.options.clip}),e)},e.prototype.createXYAxis=function(t,e,o){for(var n,r=t.name,i=e?this.namedYAxes:this.namedXAxes,a=e?this.yAxisRangeTracker:this.xAxisRangeTracker,s=X({reverse:!e&&this.chartService.rtl},t,{vertical:e}),c=_i(s.type,ai),l=a.query(),h=c?{min:.1,max:1}:{min:0,max:1},u=a.query(r)||l||h,v=[s.min,s.max],d=this.series,f=0;f<d.length;f++){var m=d[f],y=m[e?"yAxis":"xAxis"];if(y===s.name||0===o&&!y){var g=Un.current.bindPoint(m,0).valueFields;v.push(g[e?"y":"x"]);break}}0===o&&l&&(u.min=Math.min(u.min,l.min),u.max=Math.max(u.max,l.max));for(var b=0;b<v.length;b++)if(v[b]instanceof Date){n=!0;break}var x=new(_i(s.type,p)||!s.type&&n?un:c?yn:hn)(u.min,u.max,s,this.chartService);if(x.axisIndex=o,r){if(i[r])throw new Error((e?"Y":"X")+" axis with name "+r+" is already defined");i[r]=x}return this.appendAxis(x),x},e.prototype.createAxes=function(t){for(var e=this,o=this.options,n=[].concat(o.xAxis),r=[],i=[].concat(o.yAxis),a=[],s=0;s<n.length;s++)pt(e.findPane(n[s].pane),t)&&r.push(e.createXYAxis(n[s],!1,s));for(var c=0;c<i.length;c++)pt(e.findPane(i[c].pane),t)&&a.push(e.createXYAxis(i[c],!0,c));this.axisX=this.axisX||r[0],this.axisY=this.axisY||a[0]},e.prototype._dispatchEvent=function(t,e,o){for(var n=t._eventCoordinates(e),r=new he(n.x,n.y),i=this.axes,a=i.length,s=[],c=[],l=0;l<a;l++){var h=i[l],p=h.options.vertical?c:s,u=h.getValue(r);null!==u&&p.push(u)}s.length>0&&c.length>0&&t.trigger(o,{element:St(e),originalEvent:e,x:Pi(s),y:Pi(c)})},e.prototype.updateAxisOptions=function(t,e){var o=t.options.vertical,n=this.groupAxes(this.panes),r=(o?n.y:n.x).indexOf(t);Nc(this.options,r,o,e),Nc(this.originalOptions,r,o,e)},e.prototype.trendlineFactory=function(t,e){var o=this.seriesValues.bind(this,e.index),n=Ws(Rc,t.type,{options:t,seriesValues:o});return n&&(n.xAxis=e.xAxis,n.yAxis=e.yAxis),n},e.prototype.seriesValues=function(t){for(var e=[],o=this.series[t],n=0;n<o.data.length;n++){var r=this.bindPoint(o,n);e.push({pointIx:n,valueFields:r.valueFields})}return e},e}(us);function Nc(t,e,o,n){X([].concat(o?t.yAxis:t.xAxis)[e],n)}Rt(Dc,{xAxis:{},yAxis:{}}),X(Dc.prototype,ds);const Fc=Dc;var Uc=function(t){function e(e,o,n){t.call(this,n),this.value=e,this.sector=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){var t=this.options.labels,e=this.owner.chartService,o=this.value;if(!this._rendered&&!1!==this.visible){this._rendered=!0;var n=nt(t),r=this.pointData();if(n?o=n(r):t.format&&(o=e.format.auto(t.format,o)),t.visible&&(o||0===o)){if(t.position===s||t.position===ci)t.color||(t.color=$t(this.options.color)),t.background||(t.background=this.options.color);else{var i=e.theme.seriesDefaults.labels;t.color=t.color||i.color,t.background=t.background||i.background}this.label=new De(o,X({},t,{align:s,vAlign:"",animation:{type:qn,delay:this.animationDelay}}),r),this.append(this.label)}}},e.prototype.reflow=function(t){this.render(),this.box=t,this.reflowLabel()},e.prototype.reflowLabel=function(){var t=this.options.labels,e=this.label,o=this.sector.clone(),n=t.distance,r=o.middle();if(e){var i,a=e.box.height(),c=e.box.width();if(t.position===s)o.radius=Math.abs((o.radius-a)/2)+a,i=o.point(r),e.reflow(new ve(i.x,i.y-a/2,i.x,i.y));else if(t.position===ci)o.radius=o.radius-a/2,i=o.point(r),e.reflow(new ve(i.x,i.y-a/2,i.x,i.y));else{var l;(i=o.clone().expand(n).point(r)).x>=o.center.x?(l=i.x+c,e.orientation=C):(l=i.x-c,e.orientation=g),e.reflow(new ve(l,i.y-a,i.x,i.y))}}},e.prototype.createVisual=function(){var e=this,o=this.sector,n=this.options;if(t.prototype.createVisual.call(this),this.value)if(n.visual){var r=(o.startAngle+180)%360,i=n.visual({category:this.category,dataItem:this.dataItem,value:this.value,series:this.series,percentage:this.percentage,center:new j.geometry.Point(o.center.x,o.center.y),radius:o.radius,innerRadius:o.innerRadius,startAngle:r,endAngle:r+o.angle,options:n,sender:this.getSender(),createVisual:function(){var t=new j.drawing.Group;return e.createSegmentVisual(t),t}});i&&this.visual.append(i)}else this.createSegmentVisual(this.visual)},e.prototype.createSegmentVisual=function(t){var e=this.sector,o=this.options,n=o.border||{},r=n.width>0?{stroke:{color:n.color,width:n.width,opacity:n.opacity,dashType:n.dashType}}:{},i=o.color,a={color:i,opacity:o.opacity},s=this.createSegment(e,X({fill:a,stroke:{opacity:o.opacity},zIndex:o.zIndex},r));t.append(s),Oi(o)&&t.append(this.createGradientOverlay(s,{baseColor:i,fallbackFill:a},X({center:[e.center.x,e.center.y],innerRadius:e.innerRadius,radius:e.radius,userSpace:!0},o.overlay)))},e.prototype.createSegment=function(t,e){return e.singleSegment?new j.drawing.Circle(new j.geometry.Circle(new j.geometry.Point(t.center.x,t.center.y),t.radius),e):xe.current.createRing(t,e)},e.prototype.createAnimation=function(){var e=this.options,o=this.sector.center;X(e,{animation:{center:[o.x,o.y],delay:this.animationDelay}}),t.prototype.createAnimation.call(this)},e.prototype.createHighlight=function(t){var e=this.options.highlight||{},o=e.border||{};return this.createSegment(this.sector,X({},t,{fill:{color:e.color,opacity:e.opacity},stroke:{opacity:o.opacity,width:o.width,color:o.color}}))},e.prototype.highlightVisual=function(){return this.visual.children[0]},e.prototype.highlightVisualArgs=function(){var t=this.sector;return{options:this.options,radius:t.radius,innerRadius:t.innerRadius,center:new j.geometry.Point(t.center.x,t.center.y),startAngle:t.startAngle,endAngle:t.angle+t.startAngle,visual:this.visual}},e.prototype.tooltipAnchor=function(){var t,e,o,n,r=this.sector.clone().expand(5),i=r.middle();return{point:r.point(i),align:(t=i+180,e=Vt(t),o=Et(Math.sin(e),v),n=Et(Math.cos(e),v),{horizontal:Math.abs(o)>Gc?s:n<0?C:g,vertical:Math.abs(o)<Wc?s:o<0?a:O})}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.pointData=function(){return{dataItem:this.dataItem,category:this.category,value:this.value,series:this.series,percentage:this.percentage}},e}(_e),Wc=Et(Vt(30),v),Gc=Et(Vt(60),v);Rt(Uc,{color:H,overlay:{gradient:"roundedBevel"},border:{width:.5},labels:{visible:!1,distance:35,font:u,margin:$(.5),align:c,zIndex:1,position:li},animation:{type:wr},highlight:{visible:!0,border:{width:1}},visible:!0}),X(Uc.prototype,Li);const Kc=Uc,Xc={createLegendItem:function(t,e,o){var n=this.options.legend||{},r=n.labels||{},i=n.inactiveItems||{},a=i.labels||{};if(o&&!1!==o.visibleInLegend){var s,c,l=!1!==o.visible,h=l?nt(r):nt(a)||nt(r),p=o.category;h&&(p=h({text:p,series:o.series,dataItem:o.dataItem,percentage:o.percentage,value:t})),l?(s={},c=e.color):(s={color:a.color,font:a.font},c=(i.markers||{}).color),Si(p)&&""!==p&&this.legendItems.push({active:l,pointIndex:o.index,text:p,series:o.series,markerColor:c,labels:s})}}};var Zc=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this.points=[],this.legendItems=[],this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.traverseDataPoints(this.addValue.bind(this))},e.prototype.traverseDataPoints=function(t){var e=this.options,o=this.plotArea.options.seriesColors;void 0===o&&(o=[]);for(var n=o.length,r=e.series,i=r.length,a=0;a<i;a++){var c=r[a],l=c.data,h=xi(c),p=h.total,u=h.points,v=h.count,d=360/p,f=void 0;isFinite(d)||(f=360/v);var m=void 0;m=zt(c.startAngle)?c.startAngle:e.startAngle,a!==i-1&&c.labels.position===li&&(c.labels.position=s);for(var y=0;y<u.length;y++){var g=u[y];if(g){var b=g.fields,x=g.value,w=g.visible,_=0!==x?f||x*d:0,z=1!==l.length&&Boolean(b.explode);U(c.color)||(c.color=b.color||o[y%n]),t(x,new me(null,0,0,m,_),{owner:this,category:zt(b.category)?b.category:"",index:y,series:c,seriesIx:a,dataItem:l[y],percentage:0!==p?x/p:0,explode:z,visibleInLegend:b.visibleInLegend,visible:w,zIndex:i-a,animationDelay:this.animationDelay(y,a,i)}),!1!==w&&(m+=_)}}}},e.prototype.evalSegmentOptions=function(t,e,o){var n=o.series;Ci(t,{value:e,series:n,dataItem:o.dataItem,category:o.category,percentage:o.percentage},{defaults:n._defaults,excluded:["data","content","template","visual","toggle"]})},e.prototype.addValue=function(t,e,o){var n=X({},o.series,{index:o.index});if(this.evalSegmentOptions(n,t,o),this.createLegendItem(t,n,o),!1!==o.visible){var r=new Kc(t,e,n);Object.assign(r,o),this.append(r),this.points.push(r)}},e.prototype.reflow=function(t){var e=this,o=e.options,n=e.points,r=e.seriesConfigs;void 0===r&&(r=[]);var i=n.length,a=t.clone(),s=Math.min(a.width(),a.height()),c=s/2,l=s-.85*s,h=new ve(a.x1,a.y1,a.x1+s,a.y1+s),p=h.center(),u=a.center(),v=o.series.length,d=[],f=[],m=Bt(o.padding,l);this.targetBox=t,m=m>c-5?c-5:m,h.translate(u.x-p.x,u.y-p.y);for(var y=c-m,g=new he(y+h.x1+m,y+h.y1+m),b=0;b<i;b++){var x=n[b],w=x.sector,_=x.seriesIx;if(w.radius=y,w.center=g,r.length){var z=r[_];w.innerRadius=z.innerRadius,w.radius=z.radius}_===v-1&&x.explode&&(w.center=w.clone().setRadius(.15*w.radius).point(w.middle())),x.reflow(h);var k=x.label;k&&k.options.position===li&&_===v-1&&(k.orientation===C?f.push(k):d.push(k))}d.length>0&&(d.sort(this.labelComparator(!0)),this.leftLabelsReflow(d)),f.length>0&&(f.sort(this.labelComparator(!1)),this.rightLabelsReflow(f)),this.box=h},e.prototype.leftLabelsReflow=function(t){var e=this.distanceBetweenLabels(t);this.distributeLabels(e,t)},e.prototype.rightLabelsReflow=function(t){var e=this.distanceBetweenLabels(t);this.distributeLabels(e,t)},e.prototype.distanceBetweenLabels=function(t){var e=Pt(this.points),o=e.sector,n=t.length-1,r=o.radius+e.options.labels.distance,i=[],a=t[0].box,s=Et(a.y1-(o.center.y-r-a.height()-a.height()/2));i.push(s);for(var c=0;c<n;c++){var l=t[c+1].box;a=t[c].box,s=Et(l.y1-a.y2),i.push(s)}return s=Et(o.center.y+r-t[n].box.y2-t[n].box.height()/2),i.push(s),i},e.prototype.distributeLabels=function(t,e){for(var o,n,r,i=t.length,a=0;a<i;a++)for(r=-t[a],o=n=a;r>0&&(o>=0||n<i);)r=this._takeDistance(t,a,--o,r),r=this._takeDistance(t,a,++n,r);this.reflowLabels(t,e)},e.prototype._takeDistance=function(t,e,o,n){var r=n;if(t[o]>0){var i=Math.min(t[o],r);r-=i,t[o]-=i,t[e]+=i}return r},e.prototype.reflowLabels=function(t,e){var o,n=Pt(this.points),r=n.sector,i=n.options.labels,a=e.length,s=i.distance,l=r.center.y-(r.radius+s)-e[0].box.height();t[0]+=2;for(var h=0;h<a;h++){var p=e[h],u=p.box;l+=t[h],o=this.hAlignLabel(u.x2,r.clone().expand(s),l,l+u.height(),p.orientation===C),p.orientation===C?(i.align!==c&&(o=r.radius+r.center.x+s),p.reflow(new ve(o+u.width(),l,o,l))):(i.align!==c&&(o=r.center.x-r.radius-s),p.reflow(new ve(o-u.width(),l,o,l))),l+=u.height()}},e.prototype.createVisual=function(){var e=this,o=this.options.connectors,n=this.points,r=n.length;t.prototype.createVisual.call(this),this._connectorLines=[];for(var i=0;i<r;i++){var a=n[i],s=a.sector,c=a.label,l=s.middle(),h=(a.options.connectors||{}).color||o.color;if(c){var p=new j.drawing.Path({stroke:{color:h,width:o.width},animation:{type:qn,delay:a.animationDelay}});if(c.options.position===li){var u=c.box,v=s.center,d=s.point(l),f=new he(u.x1,u.center().y),m=void 0,y=void 0,g=void 0;d=s.clone().expand(o.padding).point(l),p.moveTo(d.x,d.y),c.orientation===C?(g=Yc(v,d,f,y=new he(u.x1-o.padding,u.center().y)),f=new he(y.x-4,y.y),(g=g||f).x=Math.min(g.x,f.x),e.pointInCircle(g,s.center,s.radius+4)||g.x<s.center.x?(m=s.center.x+s.radius+4,a.options.labels.align!==vr?m<f.x?p.lineTo(m,d.y):p.lineTo(d.x+8,d.y):p.lineTo(m,d.y),p.lineTo(f.x,y.y)):(g.y=y.y,p.lineTo(g.x,g.y))):(g=Yc(v,d,f,y=new he(u.x2+o.padding,u.center().y)),f=new he(y.x+4,y.y),(g=g||f).x=Math.max(g.x,f.x),e.pointInCircle(g,s.center,s.radius+4)||g.x>s.center.x?(m=s.center.x-s.radius-4,a.options.labels.align!==vr?m>f.x?p.lineTo(m,d.y):p.lineTo(d.x-8,d.y):p.lineTo(m,d.y),p.lineTo(f.x,y.y)):(g.y=y.y,p.lineTo(g.x,g.y))),p.lineTo(y.x,y.y),e._connectorLines.push(p),e.visual.append(p)}}}},e.prototype.renderVisual=function(){if(t.prototype.renderVisual.call(this),Zt(this.options.series,(function(t){return t.autoFit}))){var e=this.targetBox,o=this.box.center(),n=this.visual.bbox();if(!n)return;var r=n.bottomRight(),i=Math.min((o.y-e.y1)/(o.y-n.origin.y),(e.y2-o.y)/(r.y-o.y),(o.x-e.x1)/(o.x-n.origin.x),(e.x2-o.x)/(r.x-o.x));i<1&&this.visual.transform(j.geometry.transform().scale(i,i,[o.x,o.y]))}},e.prototype.labelComparator=function(t){var e=t?-1:1;return function(t,o){return((t.parent.sector.middle()+270)%360-(o.parent.sector.middle()+270)%360)*e}},e.prototype.hAlignLabel=function(t,e,o,n,r){var i=e.radius,a=e.center,s=a.x,c=a.y,l=Math.min(Math.abs(c-o),Math.abs(c-n));return l>i?t:s+Math.sqrt(i*i-l*l)*(r?1:-1)},e.prototype.pointInCircle=function(t,e,o){return Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2)<Math.pow(o,2)},e.prototype.formatPointValue=function(t,e){return this.chartService.format.auto(e,t.value)},e.prototype.animationDelay=function(t){return 70*t},e.prototype.stackRoot=function(){return this},e}(_e);function Yc(t,e,o,n){var r,i=(n.x-o.x)*(t.y-o.y)-(n.y-o.y)*(t.x-o.x),a=(n.y-o.y)*(e.x-t.x)-(n.x-o.x)*(e.y-t.y);if(0!==a){var s=i/a;r=new he(t.x+s*(e.x-t.x),t.y+s*(e.y-t.y))}return r}Rt(Zc,{startAngle:90,connectors:{width:2,color:"#939393",padding:8},inactiveItems:{markers:{},labels:{}}}),X(Zc.prototype,Xc),Zc.prototype.isStackRoot=!0;const qc=Zc;var Qc=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.createPieChart(this.series)},e.prototype.createPieChart=function(t){var e=t[0],o=new qc(this,{series:t,padding:e.padding,startAngle:e.startAngle,connectors:e.connectors,legend:this.options.legend});this.appendChart(o)},e.prototype.appendChart=function(e,o){t.prototype.appendChart.call(this,e,o),wt(this.options.legend.items,e.legendItems)},e}(us);const Jc=Qc;var $c=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflowLabel=function(){var e=this.options.labels,o=this.label,n=this.sector.clone(),r=n.middle();if(o){var i=o.box.height();if(e.position===s){n.radius-=(n.radius-n.innerRadius)/2;var a=n.point(r);o.reflow(new ve(a.x,a.y-i/2,a.x,a.y))}else t.prototype.reflowLabel.call(this)}},e.prototype.createSegment=function(t,e){return xe.current.createRing(t,e)},e}(Kc);Rt($c,{overlay:{gradient:"roundedGlass"},labels:{position:s},animation:{type:wr}}),X($c.prototype,Li);const tl=$c;var el=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.addValue=function(t,e,o){var n=X({},o.series,{index:o.index});if(this.evalSegmentOptions(n,t,o),this.createLegendItem(t,n,o),!1!==o.visible){var r=new tl(t,e,n);Object.assign(r,o),this.append(r),this.points.push(r)}},e.prototype.reflow=function(e){for(var o,n=this.options,r=e.clone(),i=Math.min(r.width(),r.height()),a=i/2,s=i-.85*i,c=n.series,l=c.length,h=Bt(n.padding,s),p=a-(h=h>a-5?a-5:h),u=0,v=0;v<l;v++){var d=c[v];0===v&&zt(d.holeSize)&&(o=d.holeSize,p-=d.holeSize),zt(d.size)?p-=d.size:u++,zt(d.margin)&&v!==l-1&&(p-=d.margin)}zt(o)||(p-=o=(a-h)/(l+.75)*.75);var f,m=o,y=0;this.seriesConfigs=[];for(var g=0;g<l;g++){var b=c[g];f=(m+=y)+Bt(b.size,p/u),this.seriesConfigs.push({innerRadius:m,radius:f}),y=b.margin||0,m=f}t.prototype.reflow.call(this,e)},e.prototype.animationDelay=function(t,e,o){return 50*t+Yn*(e+1)/(o+1)},e}(qc);Rt(el,{startAngle:90,connectors:{width:2,color:"#939393",padding:8}});const ol=el;var nl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.createDonutChart(this.series)},e.prototype.createDonutChart=function(t){var e=t[0],o=new ol(this,{series:t,padding:e.padding,connectors:e.connectors,legend:this.options.legend});this.appendChart(o)},e}(Jc);const rl=nl;var il=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this.valueAxisRangeTracker=new va},e.prototype.render=function(){this.addToLegend(this.series),this.createPolarAxis(),this.createCharts(),this.createValueAxis()},e.prototype.alignAxes=function(){var t=this.valueAxis,e=t.range(),o=t.options.reverse?e.max:e.min,n=t.getSlot(o),r=this.polarAxis.getSlot(0).center,i=t.box.translate(r.x-n.x1,r.y-n.y1);t.reflow(i)},e.prototype.createValueAxis=function(){var t,e,o=this.valueAxisRangeTracker,n=o.query(),r=this.valueAxisOptions({roundToMajorUnit:!1,zIndex:-1});r.type===ai?(t=Hn,e={min:.1,max:1}):(t=On,e={min:0,max:1});var i=o.query(name)||n||e;i&&n&&(i.min=Math.min(i.min,n.min),i.max=Math.max(i.max,n.max));var a=new t(i.min,i.max,r,this.chartService);this.valueAxis=a,this.appendAxis(a)},e.prototype.reflowAxes=function(){var t=this,e=t.options.plotArea,o=t.valueAxis,n=t.polarAxis,r=t.box,i=.15*Math.min(r.width(),r.height()),a=$(e.padding||{},i),c=r.clone().unpad(a),l=c.clone();l.y2=l.y1+Math.min(l.width(),l.height()),l.align(c,A,s);var h=l.clone().shrink(0,l.height()/2);n.reflow(l),o.reflow(h);var p=o.lineBox().height()-o.box.height();o.reflow(o.box.unpad({top:p})),this.axisBox=l,this.alignAxes(l)},e.prototype.backgroundBox=function(){return this.box},e.prototype.detachLabels=function(){},e}(us);const al=il;var sl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointSlot=function(t,e){var o=t.center.y-e.y1,n=he.onCircle(t.center,t.startAngle,o);return new ve(n.x,n.y,n.x,n.y)},e}(Ra);Rt(sl,{clip:!1});const cl=sl;var ll=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Bc);ll.prototype.pointSlot=cl.prototype.pointSlot,Rt(ll,{clip:!1});const hl=ll;var pl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(t){var e=this._polarAxisCenter();t.lineTo(e.x,e.y)},e.prototype._polarAxisCenter=function(){return this.parent.plotArea.polarAxis.box.center()},e.prototype.strokeSegments=function(){var t=this._strokeSegments;if(!t){var e=this._polarAxisCenter(),o=new In(!1),n=this.points();n.push(e),(t=this._strokeSegments=o.process(n)).pop()}return t},e}(la);const ul=pl;var vl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(t){var e=this.parent.plotArea.polarAxis.box.center(),o=new j.geometry.Segment([e.x,e.y]);t.segments.unshift(o),t.segments.push(o)},e}(ia);const dl=vl;var fl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createSegment=function(t,e,o){return(e.line||{}).style===ir?new ul(t,e,o):new dl(t,e,o)},e.prototype.createMissingValue=function(t,e){var o;return Si(t.x)&&e!==or&&(o={x:t.x,y:t.y},e===er&&(o.y=0)),o},e.prototype.seriesMissingValues=function(t){return t.missingValues||er},e.prototype._hasMissingValuesGap=function(){for(var t=this.options.series,e=0;e<t.length;e++)if("gap"===this.seriesMissingValues(t[e]))return!0},e.prototype.sortPoints=function(t){if(t.sort(ml),this._hasMissingValuesGap())for(var e=0;e<t.length;e++){var o=t[e];o&&(Si(o.value.y)||"gap"!==this.seriesMissingValues(o.series)||delete t[e])}return t},e}(hl);function ml(t,e){return t.value.x-e.value.x}const yl=fl;var gl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createPolarAxis=function(){var t=new _n(this.options.xAxis,this.chartService);this.polarAxis=t,this.axisX=t,this.appendAxis(t)},e.prototype.render=function(){this.series=[].concat(this.originalSeries),this.createTrendlineSeries(),t.prototype.render.call(this)},e.prototype.valueAxisOptions=function(t){return X(t,{majorGridLines:{type:r},minorGridLines:{type:r}},this.options.yAxis)},e.prototype.createValueAxis=function(){t.prototype.createValueAxis.call(this),this.axisY=this.valueAxis},e.prototype.trendlineFactory=function(t,e){var o=Fc.prototype.trendlineFactory.call(this,t,e);return o&&(o.type=zr),o},e.prototype.appendChart=function(t,e){this.valueAxisRangeTracker.update(t.yAxisRanges),us.prototype.appendChart.call(this,t,e)},e.prototype.createCharts=function(){var t=this.filterVisibleSeries(this.series),e=this.panes[0];this.createLineChart(ki(t,[zr]),e),this.createScatterChart(ki(t,[Cr]),e),this.createAreaChart(ki(t,[_r]),e)},e.prototype.createLineChart=function(t,e){if(0!==t.length){var o=new hl(this,{series:t});this.appendChart(o,e)}},e.prototype.createScatterChart=function(t,e){if(0!==t.length){var o=new cl(this,{series:t});this.appendChart(o,e)}},e.prototype.createAreaChart=function(t,e){if(0!==t.length){var o=new yl(this,{series:t});this.appendChart(o,e)}},e.prototype._dispatchEvent=function(t,e,o){var n=t._eventCoordinates(e),r=new he(n.x,n.y),i=this.axisX.getValue(r),a=this.axisY.getValue(r);null!==i&&null!==a&&t.trigger(o,{element:St(e),x:i,y:a})},e.prototype.createCrosshairs=function(){},e}(al);Rt(gl,{xAxis:{},yAxis:{}}),X(gl.prototype,ds,{seriesValues:Fc.prototype.seriesValues});const bl=gl;var xl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointSlot=function(t,e){var o=t.center.y-e.y1,n=he.onCircle(t.center,t.middle(),o);return new ve(n.x,n.y,n.x,n.y)},e.prototype.renderSegments=function(){if(t.prototype.renderSegments.call(this),this._segments&&this._segments.length>1)for(var e=function(t){for(var e=[],o=0;o<t.length;o++){var n=t[o];e[n.seriesIx]=e[n.seriesIx]||[],e[n.seriesIx].push(n)}return e}(this._segments),o=0;o<e.length;o++){var n=e[o];if(n&&n.length>1){var r=n[0].linePoints[0],i=Pt(n),a=Pt(i.linePoints),s=0===r.categoryIx,c=a.categoryIx===a.categoriesCount-1;s&&c&&Pt(n).linePoints.push(r)}}},e.prototype.createSegment=function(t,e,o){var n=new(e.style===ir?qi:Ui)(t,e,o),r=this.seriesMissingValues(e);return t.length!==e.data.length&&r!==or||(n.options.closed=!0),n},e}(na);Rt(xl,{clip:!1,limitPoints:!1});const wl=xl;var _l=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(){},e}(la);const zl=_l;var Cl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.fillToAxes=function(){},e}(ia);const kl=Cl;var Ml=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createSegment=function(t,e,o,n){var r,i,a,s=this.options.isStacked,c=(e.line||{}).style;return s&&o>0&&n&&(i=n.linePoints.slice(0),r=n),c===ir?(a=new zl(t,e,o,r,i)).options.closed=!0:(t.push(t[0]),a=new kl(t,e,o,r,i)),a},e.prototype.seriesMissingValues=function(t){return t.missingValues||er},e}(wl);const Ol=Ml;var Sl=function(t){function e(e,o){t.call(this,e,null,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(tl);Rt(Sl,{overlay:{gradient:"none"},labels:{distance:10}});const Hl=Sl;var Pl=function(t){function e(e){t.call(this,e),this.forEach=e.rtl?ba:ga}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options,o=this.children,n=e.gap,r=e.spacing,i=o.length,a=i+n+r*(i-1),s=t.angle/a,c=t.startAngle+s*(n/2);this.forEach(o,(function(e){var o=t.clone();o.startAngle=c,o.angle=s,e.sector&&(o.radius=e.sector.radius),e.reflow(o),e.sector=o,c+=s+s*r}))},e}(_e);Rt(Pl,{gap:1,spacing:0});const Il=Pl;var Al=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.options.reverse,o=this.children,n=o.length,r=e?n-1:0,i=e?-1:1;this.box=new ve;for(var a=r;a>=0&&a<n;a+=i){var s=o[a].sector;s.startAngle=t.startAngle,s.angle=t.angle}},e}(_e);const Vl=Al;var El=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointType=function(){return Hl},e.prototype.clusterType=function(){return Il},e.prototype.stackType=function(){return Vl},e.prototype.categorySlot=function(t,e){return t.getSlot(e)},e.prototype.pointSlot=function(t,e){var o=t.clone(),n=t.center.y;return o.radius=n-e.y1,o.innerRadius=n-e.y2,o},e.prototype.reflowPoint=function(t,e){t.sector=e,t.reflow()},e.prototype.createAnimation=function(){this.options.animation.center=this.box.toRect().center(),t.prototype.createAnimation.call(this)},e}(ka);El.prototype.reflow=Bi.prototype.reflow,Rt(El,{clip:!1,limitPoints:!1,animation:{type:"pie"}});const Tl=El;var Bl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createPolarAxis=function(){var t=new xn(this.options.categoryAxis,this.chartService);this.polarAxis=t,this.categoryAxis=t,this.appendAxis(t),this.aggregateCategories(),this.createTrendlineSeries(),this.createCategoryAxesLabels()},e.prototype.valueAxisOptions=function(t){return this._hasBarCharts&&X(t,{majorGridLines:{type:r},minorGridLines:{type:r}}),this._isStacked100&&X(t,{roundToMajorUnit:!1,labels:{format:"P0"}}),X(t,this.options.valueAxis)},e.prototype.aggregateCategories=function(){tc.prototype.aggregateCategories.call(this,this.panes)},e.prototype.createCategoryAxesLabels=function(){tc.prototype.createCategoryAxesLabels.call(this,this.panes)},e.prototype.filterSeries=function(t){return t},e.prototype.trendlineFactory=function(t,e){var o=tc.prototype.trendlineFactory.call(this,t,e);return o&&(o.type=Or),o},e.prototype.createCharts=function(){var t=this.filterVisibleSeries(this.series),e=this.panes[0];this.createAreaChart(ki(t,[kr]),e),this.createLineChart(ki(t,[Or]),e),this.createBarChart(ki(t,[Mr]),e)},e.prototype.chartOptions=function(t){var e={series:t},o=t[0];if(o){var n=this.filterVisibleSeries(t),r=o.stack;e.isStacked=r&&n.length>1,e.isStacked100=r&&"100%"===r.type&&n.length>1,e.isStacked100&&(this._isStacked100=!0)}return e},e.prototype.createAreaChart=function(t,e){if(0!==t.length){var o=new Ol(this,this.chartOptions(t));this.appendChart(o,e)}},e.prototype.createLineChart=function(t,e){if(0!==t.length){var o=new wl(this,this.chartOptions(t));this.appendChart(o,e)}},e.prototype.createBarChart=function(t,e){if(0!==t.length){var o=t[0],n=this.chartOptions(t);n.gap=o.gap,n.spacing=o.spacing;var r=new Tl(this,n);this.appendChart(r,e),this._hasBarCharts=!0}},e.prototype.seriesCategoryAxis=function(){return this.categoryAxis},e.prototype._dispatchEvent=function(t,e,o){var n=t._eventCoordinates(e),r=new he(n.x,n.y),i=this.categoryAxis.getCategory(r),a=this.valueAxis.getValue(r);null!==i&&null!==a&&t.trigger(o,{element:St(e),category:i,value:a})},e.prototype.createCrosshairs=function(){},e}(al);X(Bl.prototype,ds,{appendChart:tc.prototype.appendChart,aggregateSeries:tc.prototype.aggregateSeries,seriesSourcePoints:tc.prototype.seriesSourcePoints,seriesValues:tc.prototype.seriesValues}),Rt(Bl,{categoryAxis:{categories:[]},valueAxis:{}});const jl=Bl;var Ll=function(t){function e(e,o,n){t.call(this,o),this.value=e,this.options.index=n.index}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.points,o=this.children[0];this.box=new ve(e[0].x,e[0].y,e[1].x,e[2].y),o&&o.reflow(new ve(t.x1,e[0].y,t.x2,e[2].y))},e.prototype.createVisual=function(){var e,o=this,n=this.options;t.prototype.createVisual.call(this),(e=n.visual?n.visual({category:this.category,dataItem:this.dataItem,value:this.value,series:this.series,percentage:this.percentage,points:this.points,options:n,sender:this.getSender(),createVisual:function(){return o.createPath()}}):this.createPath())&&this.visual.append(e)},e.prototype.createPath=function(){var t=this.options,e=t.border;return j.drawing.Path.fromPoints(this.points,{fill:{color:t.color,opacity:t.opacity},stroke:{color:e.color,opacity:e.opacity,width:e.width}}).close()},e.prototype.createHighlight=function(t){return j.drawing.Path.fromPoints(this.points,t)},e.prototype.highlightVisual=function(){return this.visual.children[0]},e.prototype.highlightVisualArgs=function(){var t=j.drawing.Path.fromPoints(this.points).close();return{options:this.options,path:t}},e.prototype.tooltipAnchor=function(){var t=this.box;return{point:new he(t.center().x,t.y1),align:{horizontal:"center",vertical:"top"}}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e}(_e);Rt(Ll,{color:H,border:{width:1}}),X(Ll.prototype,Li);const Rl=Ll;var Dl=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this.points=[],this.labels=[],this.legendItems=[],this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.formatPointValue=function(t,e){return this.chartService.format.auto(e,t.value)},e.prototype.render=function(){var t=this,e=this.options,o=this.plotArea.options.seriesColors;void 0===o&&(o=[]);var n=e.series[0],r=n.data;if(r)for(var i=xi(n),a=i.total,s=i.points,c=0;c<s.length;c++){var l=s[c];if(l){var h=l.fields;U(n.color)||(n.color=h.color||o[c%o.length]),h=X({index:c,owner:t,series:n,dataItem:r[c],percentage:l.value/a},h,{visible:l.visible});var p=l.valueFields.value,u=t.createSegment(p,h),v=t.createLabel(p,h);u&&v&&u.append(v)}}},e.prototype.evalSegmentOptions=function(t,e,o){var n=o.series;Ci(t,{value:e,series:n,dataItem:o.dataItem,index:o.index},{defaults:n._defaults,excluded:["data","content","template","toggle","visual"]})},e.prototype.createSegment=function(t,e){var o=X({},e.series);if(this.evalSegmentOptions(o,t,e),this.createLegendItem(t,o,e),!1!==e.visible){var n=new Rl(t,o,e);return Object.assign(n,e),this.append(n),this.points.push(n),n}},e.prototype.createLabel=function(t,e){var o=e.series,n=e.dataItem,r=X({},this.options.labels,o.labels),i=t;if(r.visible){var a=nt(r),s={dataItem:n,value:t,percentage:e.percentage,category:e.category,series:o};a?i=a(s):r.format&&(i=this.chartService.format.auto(r.format,i)),r.color||(r.color=$t(o.color),r.background||(r.background=o.color)),this.evalSegmentOptions(r,t,e);var c=new De(i,X({vAlign:r.position},r),s);return this.labels.push(c),c}},e.prototype.labelPadding=function(){for(var t=this.labels,e={left:0,right:0},o=0;o<t.length;o++){var n=t[o].options.align;if(n!==s){var r=t[o].box.width();n===g?e.left=Math.max(e.left,r):e.right=Math.max(e.right,r)}}return e},e.prototype.dynamicSlopeReflow=function(t,e,o){for(var n=this.options,r=this.points,i=r.length,a=r[0],s=a,c=0;c<r.length;c++)r[c].percentage>s.percentage&&(s=r[c]);for(var l=a.percentage/s.percentage*e,h=(e-l)/2,p=0,u=0;u<i;u++){var v=r[u].percentage,d=r[u+1],f=d?d.percentage:v,m=r[u].points=[],y=n.dynamicHeight?o*v:o/i,g=void 0;g=It(g=v?(e-l*(f/v))/2:f?0:e/2,0,e),m.push(new j.geometry.Point(t.x1+h,t.y1+p)),m.push(new j.geometry.Point(t.x1+e-h,t.y1+p)),m.push(new j.geometry.Point(t.x1+e-g,t.y1+y+p)),m.push(new j.geometry.Point(t.x1+g,t.y1+y+p)),h=g,p+=y+n.segmentSpacing,l=It(e-2*g,0,e)}},e.prototype.constantSlopeReflow=function(t,e,o){for(var n=this.options,r=this.points,i=r.length,a=n.neckRatio<=1,s=a?n.neckRatio*e:e,c=a?0:(e-e/n.neckRatio)/2,l=((a?e:e-2*c)-s)/2,h=0,p=0;p<i;p++){var u=r[p].points=[],v=r[p].percentage,d=n.dynamicHeight?l*v:l/i,f=n.dynamicHeight?o*v:o/i;u.push(new j.geometry.Point(t.x1+c,t.y1+h)),u.push(new j.geometry.Point(t.x1+e-c,t.y1+h)),u.push(new j.geometry.Point(t.x1+e-c-d,t.y1+f+h)),u.push(new j.geometry.Point(t.x1+c+d,t.y1+f+h)),c+=d,h+=f+n.segmentSpacing}},e.prototype.reflow=function(t){var e=this.points,o=e.length;if(o){var n=this.options,r=t.clone().unpad(this.labelPadding()),i=r.height()-n.segmentSpacing*(o-1),a=r.width();n.dynamicSlope?this.dynamicSlopeReflow(r,a,i):this.constantSlopeReflow(r,a,i);for(var s=0;s<o;s++)e[s].reflow(t)}},e}(_e);Rt(Dl,{neckRatio:.3,width:300,dynamicSlope:!1,dynamicHeight:!0,segmentSpacing:0,labels:{visible:!1,align:s,position:s,zIndex:1}}),X(Dl.prototype,Xc);const Nl=Dl;var Fl=function(t){function e(e,o){o.dynamicSlope=!1,o.neckRatio=1e6,t.call(this,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Nl);const Ul=Fl;var Wl=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this.createChart(Nl,ki(this.series,[fr])),this.createChart(Ul,ki(this.series,[mr]))},e.prototype.createChart=function(t,e){var o=e[0];if(o){var n=new t(this,{series:e,legend:this.options.legend,neckRatio:o.neckRatio,dynamicHeight:o.dynamicHeight,dynamicSlope:o.dynamicSlope,segmentSpacing:o.segmentSpacing,highlight:o.highlight});this.appendChart(n)}},e.prototype.appendChart=function(e,o){t.prototype.appendChart.call(this,e,o),wt(this.options.legend.items,e.legendItems)},e}(us);const Gl=Wl;var Kl=function(t){function e(e,o){t.call(this),this.options=o,this.color=o.color||H,this.value=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.render=function(){this._rendered||(this._rendered=!0,this.createMarker(),this.createLabel(),this.createNote())},e.prototype.createLabel=function(){var t=this.options.labels;if(t.visible){var e,o=this.pointData(),n=nt(t),r=t.color;e=n?n(o):this.formatValue(t.format),r||(r=$t(this.color)),this.label=new De(e,X({align:s,vAlign:s,margin:{left:5,right:5},zIndex:Bt(t.zIndex,this.series.zIndex)},t,{color:r}),o),this.append(this.label)}},e.prototype.formatValue=function(t){return this.owner.formatPointValue(this,t)},e.prototype.reflow=function(t){this.render();var e=this.label;this.box=t,e&&e.reflow(this.markerBox()),this.note&&this.note.reflow(t),this.marker.reflow(this.markerBox())},e.prototype.markerBox=function(){var t=this.options.markers,e=t.border,o=this.box.toRect(),n=Bt(t.type,"rect")===k,r=Bt(e.width,n?1:0),i=Math.round(r/2);if(t.size){var a=o.center();o.size.width=o.size.height=t.size,o.origin.x=Math.round(a.x-o.size.width/2),o.origin.y=Math.round(a.y-o.size.height/2)}return o.size.width-=r,o.size.height-=r,o.origin.y+=i+.5,o.origin.x+=i+.5,je(o)},e.prototype.markerBorder=function(){var t=this.options,e=t.markers.border,o=Bt(e.opacity,t.opacity);return{color:e.color||this.color,width:e.width,opacity:o,dashType:e.dashType}},e.prototype.createMarker=function(){var t=this.options,e=t.markers,o=new Me({type:Bt(e.type,"rect"),width:e.size,height:e.size,rotation:e.rotation,background:this.color,border:this.markerBorder(),borderRadius:e.borderRadius,opacity:this.series.opacity||t.opacity,zIndex:Bt(t.zIndex,this.series.zIndex),animation:t.animation,visual:t.visual},{dataItem:this.dataItem,value:this.value,series:this.series,category:this.category});this.marker=o,this.append(o)},e.prototype.createHighlight=function(t){var e=this.options,o=this.options.highlight.markers||this.options.markers,n=new Me({type:Bt(o.type,"rect"),width:o.size,height:o.size,rotation:o.rotation,background:o.color||this.color,border:this.markerBorder(),borderRadius:o.borderRadius,opacity:this.series.opacity||e.opacity,zIndex:Bt(e.zIndex,this.series.zIndex)});n.reflow(this.markerBox());var r=n.getElement();return r.options.fill=t.fill,r.options.stroke=t.stroke,r},e.prototype.highlightVisual=function(){return this.rectVisual},e.prototype.highlightVisualArgs=function(){return{options:this.options,rect:this.box.toRect(),visual:this.rectVisual}},e.prototype.tooltipAnchor=function(){var t=this.box.center().x,e=this.box.y1-5;return{point:new he(t,e),align:{horizontal:s,vertical:a}}},e.prototype.overlapsBox=function(t){return this.box.overlaps(t)},e.prototype.unclipElements=function(){},e.prototype.pointData=function(){return{x:this.value.x,y:this.value.y,value:this.value.value,dataItem:this.dataItem,series:this.series}},e}(_e);X(Kl.prototype,Li),X(Kl.prototype,Ri),Kl.prototype.defaults={markers:{type:"rect",borderRadius:4,border:{color:"transparent"}},padding:{top:1},labels:{visible:!1,padding:3},opacity:1,notes:{label:{}}};const Xl=Kl;var Zl=function(t){function e(e,o){t.call(this,o),this.plotArea=e,this.chartService=e.chartService,this._initFields(),this.render()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initFields=function(){this.points=[],this.seriesOptions=[],this.valueRange={min:b,max:x},this._evalSeries=[]},e.prototype.render=function(){this.setRange(),this.traverseDataPoints(this.addValue.bind(this))},e.prototype.setRange=function(){for(var t=this,e=this.options.series,o=0;o<e.length;o++)for(var n=e[o],r=0;r<n.data.length;r++){var i=t.plotArea.bindPoint(n,r).valueFields;zt(i.value)&&null!==i.value&&(t.valueRange.min=Math.min(t.valueRange.min,i.value),t.valueRange.max=Math.max(t.valueRange.max,i.value))}},e.prototype.addValue=function(t,e){var o;t&&zt(t.value)&&null!==t.value&&(o=this.createPoint(t,e))&&Object.assign(o,e),this.points.push(o)},e.prototype.evalPointOptions=function(t,e,o){var n=o.series,r=o.seriesIx,i={defaults:n._defaults,excluded:["data","tooltip","content","template","visual","toggle","drilldownSeriesFactory"]},a=this._evalSeries[r];zt(a)||(this._evalSeries[r]=a=Ci(t,{},i,!0));var s=t;return a&&Ci(s=X({},t),{value:e,series:n,dataItem:o.dataItem,min:this.valueRange.min,max:this.valueRange.max},i),s},e.prototype.pointType=function(){return Xl},e.prototype.pointOptions=function(t,e){var o=this.seriesOptions[e];if(!o){var n=this.pointType().prototype.defaults;this.seriesOptions[e]=o=X({},n,{markers:{opacity:t.opacity},tooltip:{format:this.options.tooltip.format},labels:{format:this.options.labels.format}},t)}return o},e.prototype.createPoint=function(t,e){var o=e.series,n=this.pointOptions(o,e.seriesIx),r=e.color||o.color;n=this.evalPointOptions(n,t,e),U(o.color)?r=n.color:0!==this.valueRange.max&&(r=function(t,e){void 0===e&&(e=.05);var o=(0,j.parseColor)(t),n=1-e;return function(t){var e=o.toHSL(),r=100-e.l,i=n-t;return e.l+=Math.min(i*r,r),e.toCss()}}(r)(t.value/this.valueRange.max));var i=new Xl(t,n);return i.color=r,this.append(i),i},e.prototype.seriesAxes=function(t){var e=t.xAxis,o=t.yAxis,n=this.plotArea,r=e?n.namedXAxes[e]:n.axisX,i=o?n.namedYAxes[o]:n.axisY;if(!r)throw new Error("Unable to locate X axis with name "+e);if(!i)throw new Error("Unable to locate Y axis with name "+o);return{xAxis:r,yAxis:i}},e.prototype.reflow=function(t){var e=this,o=this.points,n=!this.options.clip,r=0;this.traverseDataPoints((function(t,i){var a=o[r++],s=e.seriesAxes(i.series),c=s.xAxis,l=s.yAxis,h=c.categoryIndex(t.x),p=l.categoryIndex(t.y),u=c.getSlot(h,h,n),v=l.getSlot(p,p,n);if(a)if(u&&v){var d=e.pointSlot(u,v);a.reflow(d)}else a.visible=!1})),this.box=t},e.prototype.pointSlot=function(t,e){return new ve(t.x1,e.y1,t.x2,e.y2)},e.prototype.traverseDataPoints=function(t){for(var e=this,o=this.options.series,n=0;n<o.length;n++)for(var r=o[n],i=e.seriesAxes(r),a=i.xAxis,s=i.yAxis,c=a.currentRangeIndices(),l=s.currentRangeIndices(),h=0;h<r.data.length;h++){var p=e.plotArea.bindPoint(r,h),u=p.valueFields,v=p.fields,d=a.totalIndex(u.x),f=s.totalIndex(u.y),m=c.min<=d&&d<=c.max,y=l.min<=f&&f<=l.max;m&&y&&t(u,X({pointIx:h,series:r,seriesIx:n,dataItem:r.data[h],owner:e},v))}},e.prototype.formatPointValue=function(t,e){var o=t.value;return this.chartService.format.auto(e,o.x,o.y,o.value)},e.prototype.animationPoints=function(){for(var t=this.points,e=[],o=0;o<t.length;o++)e.push((t[o]||{}).marker);return e},e}(_e);Rt(Zl,{series:[],tooltip:{format:"{0}, {1}: {2}"},labels:{format:"{2}"},clip:!0});const Yl=Zl;var ql=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initFields=function(){this.namedXAxes={},this.namedYAxes={}},e.prototype.render=function(t){void 0===t&&(t=this.panes),this.bindCategories(),this.createAxes(t),this.createCharts(t),this.createAxisLabels()},e.prototype.bindCategories=function(){for(var t=this.srcSeries||this.series,e=0;e<t.length;e++){for(var o=t[e],n=o.data||[],r=this.seriesAxes(o),i=r.xAxis,a=r.yAxis,s=ae(i.categories||[]),c=ae(a.categories||[]),l=0;l<n.length;l++){var h=Un.current.bindPoint(o,l).valueFields,p=h.x,u=h.y;s.has(p)||s.add(p),c.has(u)||c.add(u)}i.categories=s.values(),a.categories=c.values()}},e.prototype.createCharts=function(t){for(var e=this,o=this.groupSeriesByPane(),n=0;n<t.length;n++){var r=t[n],i=o[r.options.name||"default"]||[];e.addToLegend(i);var a=e.filterVisibleSeries(i);a&&e.createHeatmapChart(ki(a,[yr]),r)}},e.prototype.createHeatmapChart=function(t,e){var o=new Yl(this,{series:t});this.appendChart(o,e)},e.prototype.seriesPaneName=function(t){var e=this.options,o=t.xAxis,n=st([].concat(e.xAxis),(function(t){return t.name===o}))[0],r=t.yAxis,i=st([].concat(e.yAxis),(function(t){return t.name===r}))[0],a=(e.panes||[{}])[0].name||"default";return(n||{}).pane||(i||{}).pane||a},e.prototype.seriesAxes=function(t){var e,o,n=this.options,r=[].concat(n.xAxis),i=t.xAxis;e=i?r.find((function(t){return t.name===i})):r[0];var a=[].concat(n.yAxis),s=t.yAxis;if(o=s?a.find((function(t){return t.name===s})):a[0],!e)throw new Error("Unable to locate X axis with name "+i);if(!o)throw new Error("Unable to locate Y axis with name "+s);return{xAxis:e,yAxis:o}},e.prototype.createAxisLabels=function(){for(var t=this.axes,e=0;e<t.length;e++)t[e].createLabels()},e.prototype.createXYAxis=function(t,e,o){for(var n,r=t.name,i=e?this.namedYAxes:this.namedXAxes,a=Object.assign({axisCrossingValue:0},t,{vertical:e,reverse:e||this.chartService.rtl?!t.reverse:t.reverse,justified:!1}),s=a.categories?a.categories[0]:null,c=[a.min,a.max,s],l=this.series,h=0;h<l.length;h++){var u=l[h],v=u[e?"yAxis":"xAxis"];if(v===a.name||0===o&&!v){var d=Un.current.bindPoint(u,0).valueFields;c.push(d[e?"y":"x"]);break}}for(var f=0;f<c.length;f++)if(c[f]instanceof Date){n=!0;break}var m=new(_i(a.type,p)||!a.type&&n?on:Xo)(a,this.chartService);if(m.axisIndex=o,r){if(i[r])throw new Error((e?"Y":"X")+" axis with name "+r+" is already defined");i[r]=m}return this.appendAxis(m),m.mapCategories(),m},e.prototype.createAxes=function(t){for(var e=this,o=this.options,n=[].concat(o.xAxis),r=[],i=[].concat(o.yAxis),a=[],s=0;s<n.length;s++)pt(e.findPane(n[s].pane),t)&&r.push(e.createXYAxis(n[s],!1,s));for(var c=0;c<i.length;c++)pt(e.findPane(i[c].pane),t)&&a.push(e.createXYAxis(i[c],!0,c));this.axisX=this.axisX||r[0],this.axisY=this.axisY||a[0]},e.prototype.removeAxis=function(e){var o=e.options.name;t.prototype.removeAxis.call(this,e),e.options.vertical?delete this.namedYAxes[o]:delete this.namedXAxes[o],e===this.axisX&&delete this.axisX,e===this.axisY&&delete this.axisY},e.prototype._dispatchEvent=function(t,e,o){for(var n=t._eventCoordinates(e),r=new he(n.x,n.y),i=this.axes,a=i.length,s=[],c=[],l=0;l<a;l++){var h=i[l];yi(h.options.vertical?c:s,h.getCategory(r))}s.length>0&&c.length>0&&t.trigger(o,{element:St(e),originalEvent:e,x:Pi(s),y:Pi(c)})},e.prototype.updateAxisOptions=function(t,e){var o=t.options.vertical,n=this.groupAxes(this.panes),r=(o?n.y:n.x).indexOf(t);Ql(this.options,r,o,e),Ql(this.originalOptions,r,o,e)},e.prototype.crosshairOptions=function(t){return Object.assign({},t.options.crosshair,{zIndex:0})},e}(us);function Ql(t,e,o,n){X([].concat(o?t.yAxis:t.xAxis)[e],n)}Rt(ql,{xAxis:{},yAxis:{}}),X(ql.prototype,ds);const Jl=ql;var $l="color",th="first",eh="max",oh="min",nh="noteText";wc.current.register(tc,[cr,vr,br,Br,sr,Vr,ur,xr,pr,Tr,lr,Er,Pr,Hr,Lr,gr,Sr,jr].concat(Fr)),wc.current.register(Fc,[Ir,Ar,hr].concat(Fr)),wc.current.register(Jc,[wr]),wc.current.register(rl,[dr]),wc.current.register(Gl,[fr,mr]),wc.current.register(bl,[_r,zr,Cr].concat(Fr)),wc.current.register(jl,[kr,Mr,Or].concat(Fr)),wc.current.register(Jl,[yr]),Un.current.register([cr,vr,br,Br,sr,Vr],[S],[si,$l,nh,$n,tr,pi]),Un.current.register([Pr,Hr,Sr,jr],["from","to"],[si,$l,nh,pi]),Un.current.register([Lr,gr],[S],[si,$l,nh,"summary",pi]),Un.current.register([_r,zr,Cr],[I,A],[$l,pi]),Un.current.register([kr,Mr,Or],[S],[$l,pi]),Un.current.register([fr,mr],[S],[si,$l,"visibleInLegend","visible",pi]),gs.current.register([cr,vr,br,Br,sr,Vr,Lr,gr],{value:eh,color:th,noteText:th,errorLow:oh,errorHigh:eh}),gs.current.register([Pr,Hr,Sr,jr],{from:oh,to:eh,color:th,noteText:th}),gs.current.register([kr,Mr,Or],{value:eh,color:th}),Un.current.register([Ir,Ar,hr],[I,A],[$l,nh,"xErrorLow","xErrorHigh","yErrorLow","yErrorHigh"]),Un.current.register([hr],[I,A,"size"],[$l,si,nh]),Un.current.register([yr],[I,A,S],[$l,nh]),Un.current.register([ur,xr],["open","high","low","close"],[si,$l,"downColor",nh]),gs.current.register([ur,xr],{open:eh,high:eh,low:oh,close:eh,color:th,downColor:th,noteText:th}),Un.current.register([lr,Er],["lower","q1","median","q3","upper","mean","outliers"],[si,$l,nh,pi]),gs.current.register([lr,Er],{lower:eh,q1:eh,median:eh,q3:eh,upper:eh,mean:eh,outliers:th,color:th,noteText:th}),Un.current.register([pr,Tr],["current","target"],[si,$l,"visibleInLegend",nh,pi]),gs.current.register([pr,Tr],{current:eh,target:eh,color:th,noteText:th}),Un.current.register([wr,dr],[S],[si,$l,"explode","visibleInLegend","visible",pi]);var rh=[si,S,I,A],ih="mousemove",ah="contextmenu",sh="mouseleave",ch=function(t){function e(e,o,n,r){var i=this;void 0===r&&(r={}),t.call(this),this.observers=[],this.addObserver(r.observer),this.chartService=new ro(this,r),this.chartService.theme=n,this._initElement(e);var a=X({},this.options,o);this._originalOptions=X({},a),this._theme=n,this._initTheme(a,n),this._initHandlers(),this._initSurface(),this.bindCategories(),Lt.preloadFonts(o,(function(){i.fontLoaded=!0,i._destroyed||(i.trigger("init"),i._redraw(),i._attachEvents())}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initElement=function(t){for(this._setElementClass(t),t.style.position="relative";t.firstChild;)t.removeChild(t.firstChild);this.element=t},e.prototype._setElementClass=function(t){E(t,"k-chart")},e.prototype._initTheme=function(t,e){for(var o=[],n=t.series||[],r=0;r<n.length;r++)o.push(Object.assign({},n[r]));t.series=o,function(t){for(var e=rh,o=0;o<e.length;o++){var n=e[o]+"Axes";t[n]&&(t[e[o]+"Axis"]=t[n],delete t[n])}}(t),this.applyDefaults(t,e),null===t.seriesColors&&delete t.seriesColors,N(t.title)&&(t.title={text:t.title}),this.options=X({},e,t),this.applySeriesColors()},e.prototype.getSize=function(){var t=this.options.chartArea||{};return{width:t.width?parseInt(t.width,10):Math.floor(this.element.offsetWidth),height:t.height?parseInt(t.height,10):Math.floor(this.element.offsetHeight)}},e.prototype.resize=function(t){var e=this.getSize(),o=this._size,n=e.width>0||e.height>0;t||n&&(!o||e.width!==o.width||e.height!==o.height)?(this._size=e,this._resize(e,t),this.trigger("resize",e)):n&&this._selections&&Zt(this._selections,(function(t){return!t.visible}))&&(this._destroySelections(),this._setupSelection())},e.prototype._resize=function(){this._noTransitionsRedraw()},e.prototype.redraw=function(t){if(this.applyDefaults(this.options),this.applySeriesColors(),t){var e=this._model._plotArea,o=e.findPane(t);e.redraw(o)}else this._redraw()},e.prototype.getAxis=function(t){return En(t,this._plotArea.axes)},e.prototype.findAxisByName=function(t){return this.getAxis(t)},e.prototype.findPaneByName=function(t){for(var e=this._plotArea.panes,o=0;o<e.length;o++)if(e[o].options.name===t)return new Bn(e[o])},e.prototype.findPaneByIndex=function(t){var e=this._plotArea.panes;if(e[t])return new Bn(e[t])},e.prototype.plotArea=function(){return new jn(this._plotArea)},e.prototype.toggleHighlight=function(t,e){var o,n,r,i=this._plotArea,a=(i.srcSeries||i.series||[])[0];U(e)?o=i.filterPoints(e):(Z(e)?(n=e.series,r=e.category):n=r=e,o=a.type===dr?lh(i.pointsBySeriesName(n),r):pt(a.type,[wr,fr,mr])?lh((i.charts[0]||{}).points,r):i.pointsBySeriesName(n)),o&&this.togglePointsHighlight(t,o)},e.prototype.togglePointsHighlight=function(t,e){for(var o=this._highlight,n=0;n<e.length;n++)o.togglePointHighlight(e[n],t)},e.prototype.showTooltip=function(t){var e,o,n=this._sharedTooltip(),r=this._tooltip,i=this._plotArea;if(U(t)?(e=i.findPoint(t))&&n&&(o=e.categoryIx):n&&zt(t)&&(o=i.categoryAxis.categoryIndex(t)),n){if(o>=0){var a=this._plotArea.pointsByCategoryIndex(o);r.showAt(a)}}else e&&r.show(e)},e.prototype.hideTooltip=function(){this._tooltip.hide()},e.prototype._initSurface=function(){var t=this.surface,e=this._surfaceWrap(),o=this.options.chartArea||{};o.width&&Mt(e,{width:o.width}),o.height&&Mt(e,{height:o.height}),t&&t.options.type===this.options.renderAs?(this.surface.clear(),this.surface.resize()):(this._destroySurface(),this.surface=j.drawing.Surface.create(e,{type:this.options.renderAs}),this.surface.bind("mouseenter",this._surfaceMouseenterHandler),this.surface.bind("mouseleave",this._surfaceMouseleaveHandler))},e.prototype._surfaceWrap=function(){return this.element},e.prototype._redraw=function(){var t=this._getModel();this._size={width:t.options.width,height:t.options.height},this._destroyView(),this._model=t,this._plotArea=t._plotArea,t.renderVisual(),!1!==this.options.transitions&&t.traverse((function(t){t.animation&&t.animation.setup()})),this._initSurface(),this.surface.draw(t.visual),!1!==this.options.transitions&&t.traverse((function(t){t.animation&&t.animation.play()})),this._tooltip=this._createTooltip(),this._highlight=new nc,this._setupSelection(),this._createPannable(),this._createZoomSelection(),this._createMousewheelZoom(),this.trigger("render"),dh(this._plotArea.panes),this._navState||this._cancelDomEvents()},e.prototype.exportVisual=function(t){var e;if(t&&(t.width||t.height||t.options)){var o=this.options,n=X({},t.options,{chartArea:{width:t.width,height:t.height}});vh(this._originalOptions,n),this.options=X({},this._originalOptions,n),this._initTheme(this.options,this._theme),this.bindCategories();var r=this._getModel();r.renderVisual(),dh(r._plotArea.panes),e=r.visual,this.options=o}else e=this.surface.exportVisual();return e},e.prototype._sharedTooltip=function(){return this._plotArea instanceof tc&&this.options.tooltip&&this.options.tooltip.shared},e.prototype._createPannable=function(){var t=this.options;!1!==t.pannable&&(this._pannable=new sc(this._plotArea,t.pannable))},e.prototype._createZoomSelection=function(){var t=this.options.zoomable,e=(t||{}).selection;!1!==t&&!1!==e&&(this._zoomSelection=new lc(this,e))},e.prototype._createMousewheelZoom=function(){var t=this.options.zoomable,e=(t||{}).mousewheel;!1!==t&&!1!==e&&(this._mousewheelZoom=new pc(this,e))},e.prototype._toggleDragZoomEvents=function(){var t=this.options.pannable,e=this.options.zoomable,o=(e||{}).selection,n=(e||{}).mousewheel,r=!(t||!1!==e&&!1!==o||this.requiresHandlers([Qr,Yr,qr])),i=(!1===e||!1===n)&&!this.requiresHandlers([Jr,$r,ti]),a=this.element;this._dragZoomEnabled&&r&&i?(a.style.touchAction=this._touchAction||"",this._dragZoomEnabled=!1):this._dragZoomEnabled||r&&i||(a.style.touchAction="none",this._dragZoomEnabled=!0),this._toggleDomEvents(!r,!i)},e.prototype._toggleDomEvents=function(t,e){var o=this.domEvents;o&&(o.toggleDrag&&o.toggleDrag(t),o.toggleZoom&&o.toggleZoom(e))},e.prototype._createTooltip=function(){var t=this.options.tooltip;return this._sharedTooltip()?this._createSharedTooltip(t):new Oc(this.chartService,t)},e.prototype._createSharedTooltip=function(t){return new Hc(this._plotArea,t)},e.prototype.applyDefaults=function(t,e){!function(t,e){var o,n,r,i=(e||{}).axisDefaults||{};function a(t){var e=(t||{}).color||n.color,r=X({},i,i[o],n,n[o],{line:{color:e},labels:{color:e},title:{color:e}},t);return delete r[o],r}for(var s=0;s<rh.length;s++)o=rh[s]+"Axis",n=t.axisDefaults||{},r=(r=[].concat(t[o])).map(a),t[o]=r.length>1?r:r[0]}(t,e),function(t,e){var o=t.series,n=o.length,r=t.seriesDefaults,i=X({},t.seriesDefaults),a=e?X({},e.seriesDefaults):{},s=X({},a);hh(i),hh(s);for(var c=0;c<n;c++){var l=o[c].type||t.seriesDefaults.type,h=X({data:[]},s,a[l],{tooltip:t.tooltip},i,r[l]);o[c]._defaults=h,o[c]=X({},h,o[c]),o[c].data=o[c].data||[]}}(t,e)},e.prototype.applySeriesColors=function(){for(var t=this.options,e=t.series,o=t.seriesColors||[],n=0;n<e.length;n++){var r=e[n],i=o[n%o.length],a=r._defaults;r.color=r.color||i,a&&(a.color=a.color||i)}},e.prototype._getModel=function(){var t=this.options,e=this._createPlotArea(),o=new Ie(this._modelOptions());o.chart=this,o._plotArea=e;var n=Ue.buildTitle(t.title),r=Ue.buildTitle(t.subtitle,{align:t.title.align,position:t.title.position});return o.append.apply(o,Ue.orderTitles([n,r])),t.legend&&t.legend.visible&&o.append(new bc(e.options.legend,this.chartService)),o.append(e),o.reflow(),o},e.prototype._modelOptions=function(){var t=this.options,e=this.getSize();return X({transitions:t.transitions,width:e.width||600,height:e.height||400},t.chartArea)},e.prototype._createPlotArea=function(t){var e=this.options;return wc.current.create(t?[]:e.series,e,this.chartService)},e.prototype._setupSelection=function(){for(var t=this._plotArea.axes,e=this._selections=[],o=0;o<t.length;o++){var n=t[o],r=n.options;if(n instanceof Xo&&r.select&&!r.vertical){var i=n.range(),a=new kc(this,n,X({min:i.min,max:i.max},r.select));e.push(a)}}},e.prototype._selectStart=function(t){return this.trigger(ei,t)},e.prototype._select=function(t){return this.trigger(oi,t)},e.prototype._selectEnd=function(t){return this.trigger(ni,t)},e.prototype._initHandlers=function(){this._clickHandler=this._click.bind(this),this._mousewheelHandler=this._mousewheel.bind(this),this._mouseleaveHandler=this._mouseleave.bind(this),this._surfaceMouseenterHandler=this._mouseover.bind(this),this._surfaceMouseleaveHandler=this._mouseout.bind(this),this._mousemove=(0,j.throttle)(this._mousemove.bind(this),20)},e.prototype.addObserver=function(t){t&&this.observers.push(t)},e.prototype.removeObserver=function(t){var e=this.observers.indexOf(t);e>=0&&this.observers.splice(e,1)},e.prototype.requiresHandlers=function(t){for(var e=this.observers,o=0;o<e.length;o++)if(e[o].requiresHandlers(t))return!0},e.prototype.trigger=function(t,e){void 0===e&&(e={}),e.sender=this,t===ri?e.anchor.point=this._toDocumentCoordinates(e.anchor.point):t===Gr?this._updateDrilldownPoint(e.point):t===Kr?this._resetDrilldownPoint():t===Ur&&this._startDrilldown(e.point);for(var o=this.observers,n=!1,r=0;r<o.length;r++)o[r].trigger(t,e)&&(n=!0);return n},e.prototype._attachEvents=function(){var t,e,o=this.element;this._touchAction=o.style.touchAction,_t(o,((t={})[ah]=this._clickHandler,t[hi]=this._mousewheelHandler,t[sh]=this._mouseleaveHandler,t)),this._shouldAttachMouseMove()&&_t(o,((e={})[ih]=this._mousemove,e)),this.domEvents=so.create(this.element,{start:this._start.bind(this),move:this._move.bind(this),end:this._end.bind(this),tap:this._tap.bind(this),gesturestart:this._gesturestart.bind(this),gesturechange:this._gesturechange.bind(this),gestureend:this._gestureend.bind(this)}),this._toggleDragZoomEvents()},e.prototype._mouseleave=function(t){this._hoveredPoint&&(this._hoveredPoint.out(this,t),this._hoveredPoint=null),this._plotAreaHovered&&(this._plotAreaHovered=!1,this.trigger(Zr)),this._hasInactiveOpacity()&&this._activeChartInstance&&(this._applySeriesOpacity(this._activeChartInstance.children,null,!0),this._updateSeriesOpacity(null,!0))},e.prototype._cancelDomEvents=function(){this.domEvents&&this.domEvents.cancel&&this.domEvents.cancel()},e.prototype._gesturestart=function(t){this._mousewheelZoom&&!this._stopChartHandlers(t)&&(this._gestureDistance=t.distance,this._unsetActivePoint(),this.surface.suspendTracking())},e.prototype._gestureend=function(t){this._zooming&&!this._stopChartHandlers(t)&&(this.surface&&this.surface.resumeTracking(),this._zooming=!1,this.trigger(ti,{}))},e.prototype._gesturechange=function(t){var e=this._mousewheelZoom;if(e&&!this._stopChartHandlers(t)){t.preventDefault();var o=this._gestureDistance,n=-t.distance/o+1;if(Math.abs(n)>=.1){n=Math.round(10*n),this._gestureDistance=t.distance;var r={delta:n,axisRanges:ph(this._plotArea.axes),originalEvent:t};if(this._zooming||!this.trigger(Jr,r)){var i=this._eventCoordinates(t);this._zooming||(this._zooming=!0),(r.axisRanges=e.updateRanges(n,i))&&!this.trigger($r,r)&&e.zoom()}}}},e.prototype._mouseout=function(t){if(t.element){var e=this._drawingChartElement(t.element,t);e&&e.leave&&e.leave(this,t.originalEvent)}},e.prototype._start=function(t){var e=this._eventCoordinates(t);!this._stopChartHandlers(t)&&this._plotArea.backgroundContainsPoint(e)&&(this.requiresHandlers([Qr,Yr,qr])&&this._startNavigation(t,e,Qr),this._pannable&&this._pannable.start(t)&&(this.surface.suspendTracking(),this._unsetActivePoint(),this._suppressHover=!0,this.chartService.panning=!0),this._zoomSelection&&this._zoomSelection.start(t)&&this.trigger(Jr,{axisRanges:ph(this._plotArea.axes),originalEvent:t}))},e.prototype._move=function(t){var e=this._navState,o=this._pannable;if(!this._stopChartHandlers(t)){if(o){var n=o.move(t);n&&!this.trigger(Yr,{axisRanges:n,originalEvent:t})&&o.pan()}else if(e){for(var r={},i=e.axes,a=0;a<i.length;a++){var s=i[a];if(s.options.name){var c=s.options.vertical?t.y:t.x,l=c.startLocation-c.location;0!==l&&(r[s.options.name]=s.translateRange(l))}}e.axisRanges=r,this.trigger(Yr,{axisRanges:r,originalEvent:t})}this._zoomSelection&&this._zoomSelection.move(t)}},e.prototype._end=function(t){if(!this._stopChartHandlers(t)){var e=this._pannable;if(e&&e.end(t)?(this.surface.resumeTracking(),this.trigger(qr,{axisRanges:ph(this._plotArea.axes),originalEvent:t}),this._suppressHover=!1,this.chartService.panning=!1):this._endNavigation(t,qr),this._zoomSelection){var o=this._zoomSelection.end(t);o&&!this.trigger($r,{axisRanges:o,originalEvent:t})&&(this._zoomSelection.zoom(),this.trigger(ti,{axisRanges:o,originalEvent:t}))}}},e.prototype._stopChartHandlers=function(t){var e=this._selections||[];if(!e.length)return!1;var o=this._eventCoordinates(t),n=this._plotArea.paneByPoint(o);if(n)for(var r=0;r<e.length;r++)if(e[r].onPane(n))return!0},e.prototype._mousewheelZoomRate=function(){var t=(this.options.zoomable||{}).mousewheel||{};return Bt(t.rate,.3)},e.prototype._mousewheel=function(t){var e=this,o=bt(t),n=this._mousewheelZoom,r=this._eventCoordinates(t);if(!this._stopChartHandlers(t)&&this._plotArea.backgroundContainsPoint(r))if(n){var i={delta:o,axisRanges:ph(this._plotArea.axes),originalEvent:t};!this._zooming&&this.trigger(Jr,i)||(t.preventDefault(),this._zooming||(this._unsetActivePoint(),this.surface.suspendTracking(),this._zooming=!0),this._mwTimeout&&clearTimeout(this._mwTimeout),i.axisRanges=n.updateRanges(o,r),i.axisRanges&&!this.trigger($r,i)&&n.zoom(),this._mwTimeout=setTimeout((function(){e.trigger(ti,i),e._zooming=!1,e.surface&&e.surface.resumeTracking()}),150))}else{var a=this._navState;if(a||this._startNavigation(t,r,Jr)||(a=this._navState),a){var s=a.totalDelta||o;a.totalDelta=s+o;for(var c=this._navState.axes,l={},h=0;h<c.length;h++){var p=c[h],u=p.options.name;u&&(l[u]=p.scaleRange(-s*e._mousewheelZoomRate(),r))}this.trigger($r,{delta:o,axisRanges:l,originalEvent:t}),this._mwTimeout&&clearTimeout(this._mwTimeout),this._mwTimeout=setTimeout((function(){e._endNavigation(t,ti)}),150)}}},e.prototype._startNavigation=function(t,e,o){var n=this._model._plotArea,r=n.findPointPane(e),i=n.axes.slice(0);if(r){var a=ph(i);this.trigger(o,{axisRanges:a,originalEvent:t})?this._cancelDomEvents():(this._suppressHover=!0,this._unsetActivePoint(),this._navState={axisRanges:a,pane:r,axes:i})}},e.prototype._endNavigation=function(t,e){this._navState&&(this.trigger(e,{axisRanges:this._navState.axisRanges,originalEvent:t}),this._suppressHover=!1,this._navState=null)},e.prototype._getChartElement=function(t,e){var o=this.surface.eventTarget(t);if(o)return this._drawingChartElement(o,t,e)},e.prototype._drawingChartElement=function(t,e,o){for(var n,r=t;r&&!n;)n=r.chartElement,r=r.parent;if(n)return n.aliasFor&&(n=n.aliasFor(e,this._eventCoordinates(e))),o&&(n=n.closest(o))&&n.aliasFor&&(n=n.aliasFor()),n},e.prototype._eventCoordinates=function(t){var e=Ot(t);return this._toModelCoordinates(e.x,e.y)},e.prototype._elementPadding=function(){if(!this._padding){var t=J(this.element,["paddingLeft","paddingTop"]),e=t.paddingLeft,o=t.paddingTop;this._padding={top:o,left:e}}return this._padding},e.prototype._toDocumentCoordinates=function(t){var e=this._elementPadding(),o=kt(this.element);return{left:Et(t.x+e.left+o.left),top:Et(t.y+e.top+o.top)}},e.prototype._toModelCoordinates=function(t,e){var o=this.element,n=kt(o),r=this._elementPadding(),i=Jt(o).invert(),a=new j.geometry.Point(t-n.left-r.left,e-n.top-r.top).transform(i);return new he(a.x,a.y)},e.prototype._tap=function(t){var e=this,o=this.surface.eventTarget(t),n=this._drawingChartElement(o,t),r=this._sharedTooltip();this._startHover(o,t)||r||this._unsetActivePoint(),r&&this._trackSharedTooltip(this._eventCoordinates(t),t,!0),this._propagateClick(n,t),this.handlingTap=!0,setTimeout((function(){e.handlingTap=!1}),0)},e.prototype._click=function(t){var e=this._getChartElement(t);this._propagateClick(e,t)},e.prototype._propagateClick=function(t,e){for(var o=t;o;)o.click&&o.click(this,e),o=o.parent},e.prototype._startHover=function(t,e){if(this._suppressHover)return!1;var o=this._drawingChartElement(t,e,(function(t){return(t.hover||t.over)&&!(t instanceof us)}));return this._showInactiveOpacity(o,e),o},e.prototype._displayTooltip=function(t){X({},this.options.tooltip,t.options.tooltip).visible&&this._tooltip.show(t)},e.prototype._displayInactiveOpacity=function(t,e,o){var n=this._activeChartInstance=this._chartInstanceFromPoint(t);if(n)if(e)this._updateSeriesOpacity(t),this._applySeriesOpacity(n.children,null,!0),this._applySeriesOpacity(n.children,t.series),this._highlight.show(o||t);else{var r;if(!n.supportsPointInactiveOpacity())return void this._highlight.show(t);(r=this._getInactivePoints(t,n))&&r.length&&this._highlight.show(r,1-this._getInactiveOpacityForSeries(t.series))}},e.prototype._getInactivePoints=function(t,e){return this._getAllPointsOfType(e,t.constructor).filter((function(e){return e!==t}))},e.prototype._getAllPointsOfType=function(t,e){for(var o=[],n=0;n<t.children.length;n++){var r=t.children[n];r.constructor===e?o.push(r):r.children&&r.children.length&&(o=o.concat(this._getAllPointsOfType(r,e)))}return o},e.prototype._updateHoveredPoint=function(t,e){var o=this._hoveredPoint;o&&o!==t&&(o.out(this,e),this._hoveredPoint=null),t&&o!==t&&t.over&&(this._hoveredPoint=t,t.over(this,e))},e.prototype._updateDrilldownPoint=function(t){t&&t.series&&Un.current.bindPoint(t.series,null,t.dataItem).fields.drilldown&&(this._drilldownState={cursor:this.element.style.cursor},this.element.style.cursor="pointer")},e.prototype._resetDrilldownPoint=function(){this._drilldownState&&(this.element.style.cursor=this._drilldownState.cursor,this._drilldownState=null)},e.prototype._startDrilldown=function(t){if(t&&t.series){var e=t.series,o=Un.current.bindPoint(e,null,t.dataItem).fields.drilldown;if(o){var n={series:e,point:t,value:o,sender:this};this.trigger("drilldown",n)}}},e.prototype._updateSeriesOpacity=function(t,e){for(var o=this._plotArea,n=o.series.length,r=0;r<n;r++){var i=o.series[r],a=this._getDefaultOpacityForSeries(i),s=this._getInactiveOpacityForSeries(i);e||i===t.series?(i.opacity=a,i.line&&(i.line.opacity=a)):(i.defaultOpacity=a,i.opacity=s,i.line&&(i.line.opacity=s))}},e.prototype._applySeriesOpacity=function(t,e,o,n){for(var r=0;r<t.length;r++){var i=t[r],a=i.series||n;if(a&&(a.highlight||{}).visible&&i.visual){var s=n?n.opacity:i.series.opacity;(a!==e||o)&&i.visual.opacity(o?1:s)}i.children&&i.children.length&&this._applySeriesOpacity(i.children,e,o,i.series)}},e.prototype._chartInstanceFromPoint=function(t){for(var e=t.parent;e&&!e.plotArea;)e=e.parent;return e},e.prototype._showInactiveOpacity=function(t,e){var o=this._activePoint,n=this._plotArea.series.length>1,r=this._hasInactiveOpacity();return this._updateHoveredPoint(t,e),t&&o!==t&&t.hover&&(this._activePoint=t,this._sharedTooltip()||t.hover(this,e)||(this._displayTooltip(t),r?this._displayInactiveOpacity(t,n):this._highlight.show(t))),t},e.prototype._hideInactiveOpacity=function(t){var e=this._plotArea.series.length>1;this._hasInactiveOpacity()&&(e&&this._activeChartInstance&&(this._updateSeriesOpacity(t,!0),this._applySeriesOpacity(this._activeChartInstance.children,null,!0),this._activeChartInstance=null),this._highlight&&this._highlight.hide(),this._activePoint=null)},e.prototype._hasInactiveOpacity=function(){var t=void 0!==this.options.seriesDefaults.highlight.inactiveOpacity,e=this.options.series.filter((function(t){return void 0!==t.highlight.inactiveOpacity})).length>0;return t||e},e.prototype._getInactiveOpacityForSeries=function(t){var e=this.options.seriesDefaults.highlight.inactiveOpacity;return t.highlight.inactiveOpacity||e||t.opacity||1},e.prototype._getDefaultOpacityForSeries=function(t){return t.defaultOpacity||t.opacity||1},e.prototype._mouseover=function(t){var e,o=this._startHover(t.element,t.originalEvent);o&&o.tooltipTracking&&!this._mouseMoveTrackHandler&&!this._sharedTooltip()&&(this._mouseMoveTrackHandler=this._mouseMoveTracking.bind(this),_t(document,((e={})[ih]=this._mouseMoveTrackHandler,e)))},e.prototype._mouseMoveTracking=function(t){var e,o=this,n=o.options,r=o._tooltip,i=o._highlight,a=o._activePoint,s=this._eventCoordinates(t);if(this._plotArea.box.containsPoint(s)){if(a&&a.tooltipTracking&&a.series&&a.parent.getNearestPoint){var c=a.parent.getNearestPoint(s.x,s.y,a.seriesIx);c&&c!==a&&(this._activePoint=c,c.hover(this,t)||(X({},n.tooltip,c.options.tooltip).visible&&r.show(c),i.show(c)))}}else Tt(document,((e={})[ih]=this._mouseMoveTrackHandler,e)),this._unsetActivePoint(),this._mouseMoveTrackHandler=null,this._hideInactiveOpacity(a)},e.prototype._mousemove=function(t){var e=this._eventCoordinates(t),o=this._plotArea;if(this._trackCrosshairs(e),o.hover){var n=o.backgroundContainsPoint(e);n?(this._plotAreaHovered=!0,this._plotArea.hover(this,t)):this._plotAreaHovered&&!n&&(this._plotAreaHovered=!1,this.trigger(Zr))}this._sharedTooltip()&&this._trackSharedTooltip(e,t)},e.prototype._trackCrosshairs=function(t){for(var e=this._plotArea.crosshairs,o=0;o<e.length;o++){var n=e[o];n.box.containsPoint(t)?n.showAt(t):n.hide()}},e.prototype._trackSharedTooltip=function(t,e,o){if(!this._suppressHover){var n=this,r=n.options.tooltip,i=n._plotArea,a=n._plotArea.categoryAxis,s=n._tooltip,c=n._highlight;if(i.backgroundContainsPoint(t)){var l=a.pointCategoryIndex(t);if(l!==this._tooltipCategoryIx||!this._sharedHighlight&&o){var h=i.pointsByCategoryIndex(l),p=h.map((function(t){return t.eventArgs(e)})),u=p[0]||{};u.categoryPoints=p,h.length>0&&!this.trigger(Wr,u)?(r.visible&&s.showAt(h,t),c.show(h),this._sharedHighlight=!0):s.hide(),this._tooltipCategoryIx=l}else o&&this._sharedHighlight&&(c.hide(),s.hide(),this._sharedHighlight=!1)}else this._sharedHighlight&&(c.hide(),s.hide(),this._tooltipCategoryIx=null,this._sharedHighlight=!1)}},e.prototype.hideElements=function(t){var e=this._plotArea;this._mousemove.cancel(),e.hideCrosshairs(),this._unsetActivePoint(t)},e.prototype._unsetActivePoint=function(t){var e=this._tooltip,o=this._highlight;this._activePoint=null,this._hoveredPoint=null,!e||t&&t.keepTooltipOpen||e.hide(),this._tooltipCategoryIx=null,this._sharedHighlight=!1,o&&o.hide()},e.prototype._deferRedraw=function(){this._redraw()},e.prototype._clearRedrawTimeout=function(){this._redrawTimeout&&(clearInterval(this._redrawTimeout),this._redrawTimeout=null)},e.prototype.bindCategories=function(){for(var t=this.options,e=[].concat(t.categoryAxis),o=0;o<e.length;o++){var n=e[o];!1!==n.autoBind&&this.bindCategoryAxisFromSeries(n,o)}},e.prototype.bindCategoryAxisFromSeries=function(t,e){for(var o,n=this.options.series,r=n.length,i=new ht,a=[],s=!1,c=0;c<r;c++){var l=n[c],h=l.categoryAxis===t.name||!l.categoryAxis&&0===e,p=l.data,u=p.length,v=l.categoryField&&h;if(s=v||s,v&&u>0)for(var d=(o=Hi(t,Nn(l.categoryField,p[0])))?Mi:Nn,f=0;f<u;f++){var m=p[f],y=d(l.categoryField,m,this.chartService.intl);!o&&i.get(y)||(a.push([y,m]),o||i.set(y,!0))}}if(a.length>0){o&&(a=function(t,e){void 0===e&&(e=Bo);for(var o=function(t,e){void 0===e&&(e=Bo);for(var o=1,n=t.length;o<n;o++)if(e(t[o],t[o-1])<0){t.sort(e);break}return t}(t,e),n=o.length,r=n>0?[o[0]]:[],i=1;i<n;i++)0!==e(o[i],Pt(r))&&r.push(o[i]);return r}(a,(function(t,e){return Bo(t[0],e[0])})));var g=function(t){for(var e=t.length,o=[],n=0;n<e;n++)for(var r=t[n],i=r.length,a=0;a<i;a++)o[a]=o[a]||[],o[a].push(r[a]);return o}(a);t.categories=g[0]}else s&&(t.categories=[])},e.prototype._isBindable=function(t){for(var e=Un.current.valueFields(t),o=!0,n=0;n<e.length;n++){var r=e[n];if(r===S?r="field":r+="Field",!zt(t[r])){o=!1;break}}return o},e.prototype._noTransitionsRedraw=function(){var t,e=this.options;!1!==e.transitions&&(e.transitions=!1,t=!0),this._redraw(),t&&(e.transitions=!0)},e.prototype._legendItemHover=function(t,e){var o,n=this._plotArea,r=this._highlight,i=(n.srcSeries||n.series)[t];if(o=pt(i.type,[wr,dr,fr,mr])?n.findPoint((function(o){return o.series.index===t&&o.index===e})):n.pointsBySeriesIndex(t),this._hasInactiveOpacity()&&i.visible&&o){var a=n.series.length>1,s=o.length?o[0]:o;this._displayInactiveOpacity(s,a,o)}else r.show(o)},e.prototype._shouldAttachMouseMove=function(){return this._plotArea.crosshairs.length||this._tooltip&&this._sharedTooltip()||this.requiresHandlers([Xr,Zr])},e.prototype.updateMouseMoveHandler=function(){var t,e;Tt(this.element,((t={})[ih]=this._mousemove,t)),this._shouldAttachMouseMove()&&_t(this.element,((e={})[ih]=this._mousemove,e))},e.prototype.applyOptions=function(t,e){vh(this._originalOptions,t),this._originalOptions=X(this._originalOptions,t),this.options=X({},this._originalOptions),e&&(this._theme=e,this.chartService.theme=e),this._initTheme(this.options,this._theme),this._toggleDragZoomEvents()},e.prototype.setOptions=function(t,e){this.applyOptions(t,e),this.bindCategories(),this.redraw(),this.updateMouseMoveHandler()},e.prototype.setDirection=function(t){this.chartService.rtl=Boolean(t),this.surface&&"svg"===this.surface.type&&this._destroySurface()},e.prototype.setIntlService=function(t){this.chartService.intl=t},e.prototype.noTransitionsRedraw=function(){this._noTransitionsRedraw()},e.prototype.destroy=function(){var t,e;this._destroyed=!0,Tt(this.element,((t={})[ah]=this._clickHandler,t[hi]=this._mousewheelHandler,t[ih]=this._mousemove,t[sh]=this._mouseleaveHandler,t)),this.domEvents&&(this.domEvents.destroy(),delete this.domEvents),this._mouseMoveTrackHandler&&Tt(document,((e={})[ih]=this._mouseMoveTrackHandler,e)),this._destroyView(),this._destroySurface(),this._clearRedrawTimeout()},e.prototype._destroySurface=function(){var t=this.surface;t&&(t.unbind("mouseenter",this._surfaceMouseenterHandler),t.unbind("mouseleave",this._surfaceMouseleaveHandler),t.destroy(),this.surface=null)},e.prototype._destroySelections=function(){var t=this._selections;if(t)for(;t.length>0;)t.shift().destroy()},e.prototype._destroyView=function(){var t=this._model;t&&(t.destroy(),this._model=null),this._unsetActivePoint(),this._resetDrilldownPoint(),this._destroySelections(),this._tooltip&&this._tooltip.destroy(),this._highlight&&this._highlight.destroy(),this._zoomSelection&&(this._zoomSelection.destroy(),delete this._zoomSelection),this._pannable&&(this._pannable.destroy(),delete this._pannable),this._mousewheelZoom&&(this._mousewheelZoom.destroy(),delete this._mousewheelZoom)},e}(j.Class);function lh(t,e){if(t)for(var o=0;o<t.length;o++)if(t[o].category===e)return[t[o]]}function hh(t){delete t.bar,delete t.column,delete t.rangeColumn,delete t.line,delete t.verticalLine,delete t.pie,delete t.donut,delete t.area,delete t.verticalArea,delete t.scatter,delete t.scatterLine,delete t.bubble,delete t.candlestick,delete t.ohlc,delete t.boxPlot,delete t.bullet,delete t.verticalBullet,delete t.polarArea,delete t.polarLine,delete t.radarArea,delete t.radarLine,delete t.waterfall}function ph(t){for(var e={},o=0;o<t.length;o++){var n=t[o],r=n.options.name;r&&(e[r]=n.range())}return e}var uh=["data","categories"];function vh(t,e){for(var o in e)if(!pt(o,uh)&&e.hasOwnProperty(o)){var n=e[o],r=t[o];if(zt(r)){var i=null===n;i||!zt(n)?(delete t[o],i&&delete e[o]):r&&Z(n)&&Z(r)&&vh(r,n)}}}function dh(t){for(var e=0;e<t.length;e++)t[e].notifyRender()}Rt(ch,{renderAs:"",chartArea:{},legend:{visible:!0,labels:{}},categoryAxis:{},seriesDefaults:{type:vr,data:[],highlight:{visible:!0},labels:{},negativeValues:{visible:!1}},series:[],seriesColors:null,tooltip:{visible:!1},transitions:!0,valueAxis:{},plotArea:{},title:{},xAxis:{},yAxis:{},panes:[{}],pannable:!1,zoomable:!1});const fh=ch;var mh=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._slotAnchor=function(t,e){var o=this.plotArea.categoryAxis.options.vertical,n=o?{horizontal:"left",vertical:"center"}:{horizontal:"center",vertical:"bottom"};return{point:o?new he(this.plotArea.box.x2,e.center().y):new he(e.center().x,-2),align:n}},e.prototype._defaultAnchor=function(t,e){return this._slotAnchor({},e)},e}(Hc);const yh=mh;var gh=[cr,pr];function bh(t){for(var e=[],o=0;o<t.length;o++){var n=t[o];e[o]=n.style.display,n.style.display="none"}return e}function xh(t,e){for(var o=0;o<t.length;o++)t[o].style.display=e[o]}function wh(t){return D(t)?[t]:t}var _h=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._setElementClass=function(t){E(t,"k-sparkline")},e.prototype._initElement=function(e){t.prototype._initElement.call(this,e),this._initialWidth=Math.floor(Mt(e).width)},e.prototype._resize=function(){var e=this.element,o=bh(e.childNodes);this._initialWidth=Math.floor(Mt(e).width),xh(e.childNodes,o),t.prototype._resize.call(this)},e.prototype._modelOptions=function(){var t=this.options,e=this._surfaceWrap(),o=bh(e.childNodes),n=document.createElement("span");n.innerHTML=" ",e.appendChild(n);var r=X({width:this._autoWidth,height:Mt(e).height,transitions:t.transitions},t.chartArea,{inline:!0,align:!1});return Mt(e,{width:r.width,height:r.height}),e.removeChild(n),xh(e.childNodes,o),this.surface&&this.surface.resize(),r},e.prototype._surfaceWrap=function(){if(!this.stage){var t=this.stage=document.createElement("span");this.element.appendChild(t)}return this.stage},e.prototype._createPlotArea=function(e){var o=t.prototype._createPlotArea.call(this,e);return this._autoWidth=this._initialWidth||this._calculateWidth(o),o},e.prototype._calculateWidth=function(t){for(var e=this.options,o=$(e.chartArea.margin),n=t.charts,r=this._surfaceWrap(),i=0,a=0;a<n.length;a++){var s=n[a],c=(s.options.series||[])[0];if(c){if(c.type===cr)return 150;if(c.type===pr)return 150;if(c.type===wr)return Mt(r).height;var l=s.categoryAxis;if(l){var h=l.categoriesCount()*(!s.options.isStacked&&pt(c.type,[vr,Tr])?s.seriesOptions.length:1);i=Math.max(i,h)}}}var p=i*e.pointWidth;return p>0&&(p+=o.left+o.right),p},e.prototype._createSharedTooltip=function(t){return new yh(this._plotArea,t)},e.normalizeOptions=function(t){var e=wh(t);return(e=V(e)?{seriesDefaults:{data:e}}:X({},e)).series||(e.series=[{data:wh(e.data)}]),X(e,{seriesDefaults:{type:e.type}}),(pt(e.series[0].type,gh)||pt(e.seriesDefaults.type,gh))&&(e=X({},{categoryAxis:{crosshair:{visible:!1}}},e)),e},e}(fh);Rt(_h,{chartArea:{margin:2},axisDefaults:{visible:!1,majorGridLines:{visible:!1},valueAxis:{narrowRange:!0}},seriesDefaults:{type:"line",area:{line:{width:.5}},bar:{stack:!0},padding:2,width:.5,overlay:{gradient:null},highlight:{visible:!1},border:{width:0},markers:{size:2,visible:!1}},tooltip:{visible:!0,shared:!0},categoryAxis:{crosshair:{visible:!0,tooltip:{visible:!1}}},legend:{visible:!1},transitions:!1,pointWidth:5,panes:[{clip:!1}]});const zh=_h;var Ch=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){this._initialOpacity=parseFloat(J(this.element,"opacity").opacity)},e.prototype.step=function(t){J(this.element,{opacity:String(ut(this._initialOpacity,0,t))})},e.prototype.abort=function(){t.prototype.abort.call(this),J(this.element,{display:"none",opacity:String(this._initialOpacity)})},e.prototype.cancel=function(){t.prototype.abort.call(this),J(this.element,{opacity:String(this._initialOpacity)})},e}(j.drawing.Animation);const kh=Ch;function Mh(t,e){var o=document.createElement("div");return o.className=t,e&&(o.style.cssText=e),o}var Oh=function(t){function e(e,o,n){t.call(this),this.options=X({},this.options,n),this.container=e,this.chartService=o;var r=J(e,["paddingLeft","paddingTop"]);this.chartPadding={top:r.paddingTop,left:r.paddingLeft},this.createElements(),e.appendChild(this.element)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createElements=function(){var t=this.element=Mh("k-navigator-hint","display: none; position: absolute; top: 1px; left: 1px;"),e=this.tooltip=Mh("k-tooltip k-chart-tooltip"),o=this.scroll=Mh("k-scroll");e.innerHTML=" ",t.appendChild(e),t.appendChild(o)},e.prototype.show=function(t,e,o){var n=this,r=n.element,i=n.options,a=n.scroll,s=n.tooltip,c=Io(Lo(t)+Lo(e-t)/2),l=.4*o.width(),h=o.center().x-l,p=(o.center().x-h)/(i.max-i.min),u=c-i.min,v=this.chartService.intl.format(i.format,t,e),d=nt(i);this.clearHideTimeout(),this._visible||(J(r,{visibility:"hidden",display:"block"}),this._visible=!0),d&&(v=d({from:t,to:e})),s.innerHTML=v,J(s,{left:o.center().x-s.offsetWidth/2,top:o.y1});var f=J(s,["marginTop","borderTopWidth","height"]);J(a,{width:l,left:h+u*p,top:o.y1+f.marginTop+f.borderTopWidth+f.height/2}),J(r,{visibility:"visible"})},e.prototype.clearHideTimeout=function(){this._hideTimeout&&clearTimeout(this._hideTimeout),this._hideAnimation&&this._hideAnimation.cancel()},e.prototype.hide=function(){var t=this;this.clearHideTimeout(),this._hideTimeout=setTimeout((function(){t._visible=!1,t._hideAnimation=new kh(t.element),t._hideAnimation.setup(),t._hideAnimation.play()}),this.options.hideDelay)},e.prototype.destroy=function(){this.clearHideTimeout(),this.container&&this.container.removeChild(this.element),delete this.container,delete this.chartService,delete this.element,delete this.tooltip,delete this.scroll},e}(j.Class);Rt(Oh,{format:"{0:d} - {1:d}",hideDelay:500});const Sh=Oh;var Hh="_navigator",Ph=Hh,Ih="_default",Ah=function(t){function e(e){var o;t.call(this),this.chart=e;var n=this.options=X({},this.options,e.options.navigator),r=n.select;r&&(r.from=this.parseDate(r.from),r.to=this.parseDate(r.to)),zt(n.hint.visible)||(n.hint.visible=n.visible),this.chartObserver=new ft(this,((o={})[Yr]="_drag",o[qr]="_dragEnd",o[$r]="_zoom",o[ti]="_zoomEnd",o)),e.addObserver(this.chartObserver)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.parseDate=function(t){return Uo(this.chart.chartService.intl,t)},e.prototype.clean=function(){this.selection&&(this.selection.destroy(),this.selection=null),this.hint&&(this.hint.destroy(),this.hint=null)},e.prototype.destroy=function(){this.chart&&(this.chart.removeObserver(this.chartObserver),delete this.chart),this.clean()},e.prototype.redraw=function(){this._redrawSelf(),this.initSelection()},e.prototype.initSelection=function(){var t,e=this.chart,o=this.options,n=this.mainAxis(),r=n.roundedRange(),i=r.min,a=r.max,s=o.select,c=s.from,l=s.to,h=s.mousewheel,p=(t=n,Vh.prototype=t,new Vh);0!==n.categoriesCount()&&(this.clean(),p.box=n.box,this.selection=new kc(e,p,{min:i,max:a,from:c||i,to:l||a,mousewheel:Bt(h,{zoom:"left"}),visible:o.visible},new ft(this,{selectStart:"_selectStart",select:"_select",selectEnd:"_selectEnd"})),o.hint.visible&&(this.hint=new Sh(e.element,e.chartService,{min:i,max:a,template:nt(o.hint),format:o.hint.format})))},e.prototype.setRange=function(){var t=this.chart._createPlotArea(!0).namedCategoryAxes[Ph].roundedRange(),e=t.min,o=t.max,n=this.options.select||{},r=n.from||e;r<e&&(r=e);var i=n.to||o;i>o&&(i=o),this.options.select=X({},n,{from:r,to:i}),this.filterAxes()},e.prototype._redrawSelf=function(t){var e=this.chart._plotArea;e&&e.redraw(Pt(e.panes),t)},e.prototype.redrawSlaves=function(){var t=this.chart,e=t._plotArea,o=e.panes.filter((function(t){return t.options.name!==Hh}));e.srcSeries=t.options.series,e.options.categoryAxis=t.options.categoryAxis,e.clearSeriesPointsCache(),e.redraw(o)},e.prototype._drag=function(t){var e,o=this.chart,n=this.selection,r=o._eventCoordinates(t.originalEvent),i=this.mainAxis(),a=i.roundedRange(),s=i.pane.box.containsPoint(r),c=o._plotArea.categoryAxis,l=t.axisRanges[c.options.name],h=this.options.select;if(l&&!s&&n){e=h.from&&h.to?Lo(h.to)-Lo(h.from):Lo(n.options.to)-Lo(n.options.from);var p=Io(It(Lo(l.min),a.min,Lo(a.max)-e)),u=Io(It(Lo(p)+e,Lo(a.min)+e,a.max));this.options.select={from:p,to:u},this.options.liveDrag&&(this.filterAxes(),this.redrawSlaves()),n.set(p,u),this.showHint(p,u)}},e.prototype._dragEnd=function(){this.filterAxes(),this.filter(),this.redrawSlaves(),this.hint&&this.hint.hide()},e.prototype.readSelection=function(){var t=this.selection.options,e=t.from,o=t.to,n=this.options.select;n.from=e,n.to=o},e.prototype.filterAxes=function(){var t=this.options.select;void 0===t&&(t={});for(var e=this.chart.options.categoryAxis,o=t.from,n=t.to,r=0;r<e.length;r++){var i=e[r];i.pane!==Hh&&(i.min=o,i.max=n)}},e.prototype.filter=function(){var t=this.chart,e=this.options.select;if(t.requiresHandlers(["navigatorFilter"])){var o=this.mainAxis(),n={from:e.from,to:e.to};if("category"!==o.options.type){var r=new on(X({baseUnit:"fit"},t.options.categoryAxis[0],{categories:[e.from,e.to]}),t.chartService).options;n.from=Vo(r.min,-r.baseUnitStep,r.baseUnit),n.to=Vo(r.max,r.baseUnitStep,r.baseUnit)}this.chart.trigger("navigatorFilter",n)}},e.prototype._zoom=function(t){var e=this,o=e.chart._plotArea.categoryAxis,n=e.selection,r=e.options,i=r.select,a=r.liveDrag,s=this.mainAxis(),c=t.delta;if(n){var l=s.categoryIndex(n.options.from),h=s.categoryIndex(n.options.to),p=this.chart._eventCoordinates(t.originalEvent);t.originalEvent.preventDefault(),Math.abs(c)>1&&(c*=3),h-l>1?(n.zoom(c,p),this.readSelection()):(o.options.min=i.from,i.from=o.scaleRange(-t.delta*this.chart._mousewheelZoomRate(),p).min),a&&(this.filterAxes(),this.redrawSlaves()),n.set(i.from,i.to),this.showHint(this.options.select.from,this.options.select.to)}},e.prototype._zoomEnd=function(t){this._dragEnd(t)},e.prototype.showHint=function(t,e){var o=this.chart._plotArea;this.hint&&this.hint.show(t,e,o.backgroundBox())},e.prototype._selectStart=function(t){return this.chart._selectStart(t)},e.prototype._select=function(t){return this.showHint(t.from,t.to),this.chart._select(t)},e.prototype._selectEnd=function(t){return this.hint&&this.hint.hide(),this.readSelection(),this.filterAxes(),this.filter(),this.redrawSlaves(),this.chart._selectEnd(t)},e.prototype.mainAxis=function(){var t=this.chart._plotArea;if(t)return t.namedCategoryAxes[Ph]},e.prototype.select=function(t,e){var o=this.options.select;return t&&e&&(o.from=this.parseDate(t),o.to=this.parseDate(e),this.filterAxes(),this.filter(),this.redrawSlaves(),this.selection.set(t,e)),{from:o.from,to:o.to}},e.setup=function(t,o){if(void 0===t&&(t={}),void 0===o&&(o={}),!t.__navi){t.__navi=!0;var n=X({},o.navigator,t.navigator),r=t.panes=[].concat(t.panes),i=X({},n.pane,{name:Hh});n.visible||(i.visible=!1,i.height=.1),"top"!==t.navigator.position?r.push(i):r.unshift(i),r.forEach((function(t){return t.name=t.name||Ih})),e.attachAxes(t,n),e.attachSeries(t,n,o)}},e.attachAxes=function(t,e){var o=e.series||[],n=t.categoryAxis=[].concat(t.categoryAxis),r=t.valueAxis=[].concat(t.valueAxis);n.concat(r).forEach((function(t){return t.pane=t.pane||Ih}));var i=0===ki(o,Rr).length,a=X({type:"date",pane:Hh,roundToBaseUnit:!i,justified:i,_collapse:!1,majorTicks:{visible:!0},tooltip:{visible:!1},labels:{step:1},autoBind:e.autoBindElements,autoBaseUnitSteps:{minutes:[1],hours:[1,2],days:[1,2],weeks:[],months:[1],years:[1]}}),s=e.categoryAxis;n.push(X({},a,{maxDateGroups:200},s,{name:Ph,title:null,baseUnit:"fit",baseUnitStep:"auto",labels:{visible:!1},majorTicks:{visible:!1}}),X({},a,s,{name:Ph+"_labels",maxDateGroups:20,baseUnitStep:"auto",labels:{position:""},plotBands:[],autoBaseUnitSteps:{minutes:[]},_overlap:!0}),X({},a,s,{name:Ph+"_ticks",maxDateGroups:200,majorTicks:{width:.5},plotBands:[],title:null,labels:{visible:!1,mirror:!0},_overlap:!0})),r.push(X({name:Ph,pane:Hh,majorGridLines:{visible:!1},visible:!1},e.valueAxis))},e.attachSeries=function(t,e,o){for(var n=t.series=t.series||[],r=[].concat(e.series||[]),i=o.seriesColors,a=e.seriesDefaults,s=0;s<r.length;s++)n.push(X({color:i[s%i.length],categoryField:e.dateField,visibleInLegend:!1,tooltip:{visible:!1}},a,r[s],{axis:Ph,categoryAxis:Ph,autoBind:e.autoBindElements}))},e}(j.Class);function Vh(){}const Eh=Ah;var Th=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.applyDefaults=function(e,o){var n=Mt(this.element).width||600,r=o,i={seriesDefaults:{categoryField:e.dateField},axisDefaults:{categoryAxis:{name:"default",majorGridLines:{visible:!1},labels:{step:2},majorTicks:{visible:!1},maxDateGroups:Math.floor(n/28)}}};r&&(r=X({},r,i)),Eh.setup(e,r),t.prototype.applyDefaults.call(this,e,r)},e.prototype._setElementClass=function(t){E(t,"k-chart k-stockchart")},e.prototype.setOptions=function(e){this.destroyNavigator(),t.prototype.setOptions.call(this,e)},e.prototype.noTransitionsRedraw=function(){var t=this.options.transitions;this.options.transitions=!1,this._fullRedraw(),this.options.transitions=t},e.prototype._resize=function(){this.noTransitionsRedraw()},e.prototype._redraw=function(){var t=this.navigator;!this._dirty()&&t&&t.options.partialRedraw?t.redrawSlaves():this._fullRedraw()},e.prototype._dirty=function(){var t=this.options,e=st([].concat(t.series,t.navigator.series),(function(t){return t&&t.visible})).length,o=this._seriesCount!==e;return this._seriesCount=e,o},e.prototype._fullRedraw=function(){var e=this.navigator;e||(e=this.navigator=new Eh(this),this.trigger("navigatorCreated",{navigator:e})),e.clean(),e.setRange(),t.prototype._redraw.call(this),e.initSelection()},e.prototype._trackSharedTooltip=function(e){var o=this._plotArea.paneByPoint(e);o&&o.options.name===Hh?this._unsetActivePoint():t.prototype._trackSharedTooltip.call(this,e)},e.prototype.bindCategories=function(){t.prototype.bindCategories.call(this),this.copyNavigatorCategories()},e.prototype.copyNavigatorCategories=function(){for(var t,e=[].concat(this.options.categoryAxis),o=0;o<e.length;o++){var n=e[o];n.name===Ph?t=n.categories:t&&n.pane===Hh&&(n.categories=t)}},e.prototype.destroyNavigator=function(){this.navigator&&(this.navigator.destroy(),this.navigator=null)},e.prototype.destroy=function(){this.destroyNavigator(),t.prototype.destroy.call(this)},e.prototype._stopChartHandlers=function(e){var o=this._eventCoordinates(e),n=this._plotArea.paneByPoint(o);return t.prototype._stopChartHandlers.call(this,e)||n&&n.options.name===Hh},e.prototype._toggleDragZoomEvents=function(){this._dragZoomEnabled||(this.element.style.touchAction="none",this._dragZoomEnabled=!0)},e}(fh);Rt(Th,{dateField:"date",axisDefaults:{categoryAxis:{type:"date",baseUnit:"fit",justified:!0},valueAxis:{narrowRange:!0,labels:{format:"C"}}},navigator:{select:{},seriesDefaults:{markers:{visible:!1},tooltip:{visible:!1},highlight:{visible:!1},line:{width:2}},hint:{},visible:!0},tooltip:{visible:!0},legend:{visible:!1}});const Bh=Th;var jh=150,Lh="arrowPointer",Rh="barPointer",Dh=.5,Nh=Math.PI/180,Fh="inside",Uh="linear",Wh="outside",Gh="radialPointer",Kh="radialRangePointer";function Xh(t,e){var o=t.getOrigin(),n=t.getSize(),r=$(e);return t.setOrigin([o.x-r.left,o.y-r.top]),t.setSize([n.width+(r.left+r.right),n.height+(r.top+r.bottom)]),t}var Zh=j.drawing.Group,Yh=j.drawing.Path,qh=j.drawing.Text;function Qh(t,e){var o=t.box,n=t.children[0].box,r=e.border||{},i=e.background||"",a=Yh.fromRect(new j.geometry.Rect([o.x1,o.y1],[o.width(),o.height()]),{stroke:{}}),s=new qh(t.text,new j.geometry.Point(n.x1,n.y1),{font:e.font,fill:{color:e.color}}),c=Xh(s.bbox().clone(),e.padding),l=Yh.fromRect(c,{stroke:{color:r.width?r.color:"",width:r.width,opacity:r.opacity,dashType:r.dashType,lineJoin:"round",lineCap:"round"},fill:{color:i}}),h=new Zh;return h.append(a),h.append(l),h.append(s),h}function Jh(t,e,o){var n=zt(t.from)?t.from:x,r=zt(t.to)?t.to:b;return t.from=Math.max(Math.min(r,n),e),t.to=Math.min(Math.max(r,n),o),t}function $h(t,e){var o=$(e);return o.left=-o.left,o.top=-o.top,o.right=-o.right,o.bottom=-o.bottom,Xh(t,o)}var tp=j.drawing.Path,ep=j.drawing.Surface,op=function(t){function e(e,o,n,r){void 0===r&&(r={}),t.call(this),this.element=e,this.theme=n,this.contextService=new ro(this,r),this._originalOptions=X({},this.options,o),this.options=X({},this._originalOptions),this._initTheme(n),this.redraw()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.surface&&(this.surface.destroy(),this.surface=null),delete this.element,delete this.surfaceElement},e.prototype.value=function(t){var e=this.pointers[0];if(0===arguments.length)return e.value();e.value(t),this._setValueOptions(t)},e.prototype._draw=function(){var t=this.surface;t.clear(),t.draw(this._visuals)},e.prototype.exportVisual=function(){return this._visuals},e.prototype.allValues=function(t){var e=this.pointers,o=[];if(0===arguments.length){for(var n=0;n<e.length;n++)o.push(e[n].value());return o}if(V(t))for(var r=0;r<t.length;r++)D(t[r])&&e[r].value(t[r]);this._setValueOptions(t)},e.prototype._setValueOptions=function(t){for(var e=[].concat(this.options.pointer),o=[].concat(t),n=0;n<o.length;n++)e[n].value=o[n]},e.prototype.resize=function(){this.noTransitionsRedraw()},e.prototype.noTransitionsRedraw=function(){var t=this.options.transitions;this._toggleTransitions(!1),this.redraw(),this._toggleTransitions(t)},e.prototype.redraw=function(){var t=this._surfaceSize(),e=new j.geometry.Rect([0,0],[t.width,t.height]);this._initSurface(),this.gaugeArea=this._createGaugeArea(),this._createModel();var o=$h(e.bbox(),this._gaugeAreaMargin);this.reflow(o)},e.prototype.setOptions=function(t,e){this._originalOptions=X(this._originalOptions,t),this.options=X({},this._originalOptions),this._initTheme(e),this.redraw()},e.prototype.setDirection=function(t){this.contextService.rtl=Boolean(t),this.surface&&"svg"===this.surface.type&&(this.surface.destroy(),this.surface=null)},e.prototype.setIntlService=function(t){this.contextService.intl=t},e.prototype._initTheme=function(t){var e=t||this.theme||{};this.theme=e,this.options=X({},e,this.options);var o=this.options,n=o.pointer;if(V(n)){for(var r=[],i=0;i<n.length;i++)r.push(X({},e.pointer,n[i]));o.pointer=r}},e.prototype._createGaugeArea=function(){var t=this.options.gaugeArea,e=this.surface.size(),o=t.border||{},n=new j.geometry.Rect([0,0],[e.width,e.height]);return this._gaugeAreaMargin=t.margin||5,o.width>0&&(n=$h(n,o.width)),tp.fromRect(n,{stroke:{color:o.width?o.color:"",width:o.width,dashType:o.dashType,lineJoin:"round",lineCap:"round"},fill:{color:t.background}})},e.prototype._initSurface=function(){var t=this.options,e=this.surface,o=this._surfaceElement(),n=this._surfaceSize();Mt(o,n),e&&e.options.type===t.renderAs?(this.surface.clear(),this.surface.resize()):(e&&e.destroy(),this.surface=ep.create(o,{type:t.renderAs}))},e.prototype._surfaceSize=function(){var t=this.options,e=this._getSize();return t.gaugeArea&&X(e,t.gaugeArea),e},e.prototype._surfaceElement=function(){return this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.element.appendChild(this.surfaceElement)),this.surfaceElement},e.prototype.getSize=function(){return this._getSize()},e.prototype._getSize=function(){var t=this.element,e=this._defaultSize(),o=t.offsetWidth,n=t.offsetHeight;return o||(o=e.width),n||(n=e.height),{width:o,height:n}},e.prototype._defaultSize=function(){return{width:200,height:200}},e.prototype._toggleTransitions=function(t){this.options.transitions=t;for(var e=0;e<this.pointers.length;e++)this.pointers[e].options.animation.transitions=t},e}(j.Class);Rt(op,{plotArea:{},theme:"default",renderAs:"",pointer:{},scale:{},gaugeArea:{}});const np=op;var rp=j.drawing.Path,ip=j.drawing.Group,ap=j.geometry.Point;function sp(t,e){var o,n,r=t.position,i=t.tickX,a=t.tickY;return t.vertical?(o=new ap(i,r),n=new ap(i+e.size,r)):(o=new ap(r,a),n=new ap(r,a+e.size)),new rp({stroke:{color:e.color,width:e.width}}).moveTo(o).lineTo(n)}function cp(t,e,o,n){var r=e.length;if(n.visible)for(var i=o.mirror,a=o.lineBox,s=n.skip;s<r;s+=n.step)s%n.skipUnit!=0&&(o.tickX=i?a.x2:a.x2-n.size,o.tickY=i?a.y1-n.size:a.y1,o.position=e[s],t.append(sp(o,n)))}var lp=function(t){function e(e,o){var n=e||{};!zt(n.reverse)&&!1===n.vertical&&(o||{}).rtl&&(n=Object.assign({},n,{reverse:!0})),t.call(this,0,1,n,o),this.options.minorUnit=this.options.minorUnit||this.options.majorUnit/10}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){var e=X({},this.options,t);return(e=X({},e,{labels:{mirror:e.mirror}})).majorUnit=e.majorUnit||le(e.min,e.max),e},e.prototype.initFields=function(){},e.prototype.render=function(){var t=this.elements=new ip,e=this.renderLabels(),o=this.renderLine(),n=this.renderTicks(),r=this.renderRanges();return t.append(o,e,n,r),t},e.prototype.renderRanges=function(){for(var t=this,e=this.options,o=e.min,n=e.max,r=e.vertical,i=e.labels.mirror,a=e.ranges||[],s=new ip,c=a.length,l=e.rangeSize||e.minorTicks.size/2,h=0;h<c;h++){var p=Jh(a[h],o,n),u=t.getSlot(p.from,p.to),v=r?t.lineBox():u,d=r?u:t.lineBox();r?v.x1-=l*(i?-1:1):d.y2+=l*(i?-1:1),s.append(rp.fromRect(new j.geometry.Rect([v.x1,d.y1],[v.x2-v.x1,d.y2-d.y1]),{fill:{color:p.color,opacity:p.opacity},stroke:{}}))}return s},e.prototype.renderLabels=function(){for(var t=this.labels,e=this.options,o=new ip,n=0;n<t.length;n++)o.append(Qh(t[n],e.labels));return o},e.prototype.renderLine=function(){var t=this.options.line,e=this.lineBox(),o=new ip;if(t.width>0&&t.visible){var n=new rp({stroke:{color:t.color,dashType:t.dashType,width:t.width}});n.moveTo(e.x1,e.y1).lineTo(e.x2,e.y2),o.append(n)}return o},e.prototype.renderTicks=function(){var t=new ip,e=this.options,o=e.majorTicks.visible?e.majorUnit:0,n={vertical:e.vertical,mirror:e.labels.mirror,lineBox:this.lineBox()};return cp(t,this.getMajorTickPositions(),n,e.majorTicks),cp(t,this.getMinorTickPositions(),n,X({},{skipUnit:o/e.minorUnit},e.minorTicks)),t},e}(hn);Rt(lp,{min:0,max:50,majorTicks:{size:15,align:Fh,color:i,width:Dh,visible:!0},minorTicks:{size:10,align:Fh,color:i,width:Dh,visible:!0},line:{width:Dh},labels:{position:Fh,padding:2},mirror:!1,_alignLines:!1});const hp=lp;var pp=function(t){function e(e,o){t.call(this);var n=e.options,r=n.min,i=n.max,a=this.options=X({},this.options,o);a.fill=a.color,this.scale=e,zt(a.value)?a.value=It(a.value,r,i):a.value=r}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.value=function(t){var e=this.options,o=e.value;if(0===arguments.length)return o;var n=this.scale.options,r=n.min,i=n.max;e._oldValue=zt(e._oldValue)?e.value:r,e.value=It(t,r,i),this.elements&&this.repaint()},e}(j.Class);Rt(pp,{color:i});const up=pp;var vp=function(t){function e(e,o){t.call(this,e,o),this.options=X({track:{visible:zt(o.track)}},this.options)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(){var t,e,o,n=this.options,r=this.scale,i=r.options,a=i.mirror,s=i.vertical,c=r.lineBox(),l=n.track.size||n.size,h=n.size/2,p=$(n.margin),u=s?p[a?"left":"right"]:p[a?"bottom":"top"];u=a?-u:u,s?(o=new ve(c.x1+u,c.y1,c.x1+u,c.y2),a?o.x1-=l:o.x2+=l,n.shape!==Rh&&(t=e=new ve(c.x2+u,c.y1-h,c.x2+u,c.y2+h))):(o=new ve(c.x1,c.y1-u,c.x2,c.y1-u),a?o.y2+=l:o.y1-=l,n.shape!==Rh&&(t=e=new ve(c.x1-h,c.y1-u,c.x2+h,c.y1-u))),this.trackBox=o,this.pointerRangeBox=e,this.box=t||o.clone().pad(n.border.width)},e.prototype.getElementOptions=function(){var t=this.options;return{fill:{color:t.color,opacity:t.opacity},stroke:zt(t.border)?{color:t.border.width?t.border.color||t.color:"",width:t.border.width,dashType:t.border.dashType,opacity:t.opacity}:null}},e.prototype._margin=function(){var t=this.scale,e=this.options,o=t.options,n=o.mirror,r=o.vertical,i=$(e.margin);return r?i[n?"left":"right"]:i[n?"bottom":"top"]},e}(up);Rt(vp,{shape:Rh,track:{border:{width:1}},color:i,border:{width:1},opacity:1,margin:$(3),animation:{type:Rh},visible:!0});const dp=vp;var fp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.options,e=t.margin,o=t.from,n=t.to,r=t.vertical,i=r?"x1":"y1";t.mirror===r?(o[i]-=e,n[i]-=e):(o[i]+=e,n[i]+=e);var a=this.fromScale=new j.geometry.Point(o.x1,o.y1),s=this.toScale=new j.geometry.Point(n.x1,n.y1);0!==t.duration&&(t.duration=Math.max(a.distanceTo(s)/t.duration*1e3,1))},e.prototype.step=function(t){var e=ut(this.fromScale.x,this.toScale.x,t),o=ut(this.fromScale.y,this.toScale.y,t);this.element.transform(j.geometry.transform().translate(e,o))},e}(j.drawing.Animation);Rt(fp,{easing:Uh,duration:250}),j.drawing.AnimationFactory.current.register(Lh,fp);const mp=fp;var yp=j.geometry.Point,gp=j.drawing.Path,bp=function(t){function e(e,o){t.call(this,e,o),zt(this.options.size)||(this.options.size=.6*this.scale.options.majorTicks.size)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointerShape=function(){var t=this.scale,e=this.options.size,o=e/2,n=t.options.mirror?-1:1;return t.options.vertical?[new yp(0,0-o),new yp(0-n*e,0),new yp(0,0+o)]:[new yp(0-o,0),new yp(0,0+n*e),new yp(0+o,0)]},e.prototype.repaint=function(){var t=this.scale,e=this.options,o=new mp(this.elements,X(e.animation,{vertical:t.options.vertical,mirror:t.options.mirror,margin:this._margin(e.margin),from:t.getSlot(e._oldValue),to:t.getSlot(e.value)}));!1===e.animation.transitions&&(o.options.duration=0),o.setup(),o.play()},e.prototype.render=function(){var t=this.scale,e=this.options,o=this.getElementOptions(),n=this.pointerShape(e.value);e.animation.type=Lh;var r=new gp({stroke:o.stroke,fill:o.fill}).moveTo(n[0]).lineTo(n[1]).lineTo(n[2]).close(),i=t.getSlot(e.value);return r.transform(j.geometry.transform().translate(i.x1,i.y1)),this.elements=r,r},e}(dp);const xp=bp;var wp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setup=function(){var t=this.options,e=this.axis=t.vertical?A:I,o=this.to=t.newPoints[0][e],n=this.from=t.oldPoints[0][e];0!==t.duration&&(t.duration=Math.max(Math.abs(o-n)/t.speed*1e3,1)),this._set(n)},e.prototype.step=function(t){var e=ut(this.from,this.to,t);this._set(e)},e.prototype._set=function(t){var e="set"+this.axis.toUpperCase(),o=this.options.newPoints;o[0][e](t),o[1][e](t)},e}(j.drawing.Animation);Rt(wp,{easing:Uh,speed:250}),j.drawing.AnimationFactory.current.register(Rh,wp);const _p=wp;var zp=j.drawing.Group,Cp=j.drawing.Path,kp=function(t){function e(e,o){t.call(this,e,o),zt(this.options.size)||(this.options.size=.3*this.scale.options.majorTicks.size)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.pointerShape=function(t){var e=this.scale,o=this.options,n=e.options,r=n.mirror,i=n.vertical,a=r===i?-1:1,s=o.size*a,c=e.getSlot(e.options.min),l=e.getSlot(t),h=i?A:I,p=i?I:A,u=this._margin()*a,v=new j.geometry.Point;v[h]=c[h+"1"],v[p]=c[p+"1"];var d=new j.geometry.Point;d[h]=l[h+"1"],d[p]=l[p+"1"],i?(v.translate(u,0),d.translate(u,0)):(v.translate(0,u),d.translate(0,u));var f=d.clone(),m=v.clone();return i?(f.translate(s,0),m.translate(s,0)):(f.translate(0,s),m.translate(0,s)),[v,d,f,m]},e.prototype.repaint=function(){var t=this.scale,e=this.options,o=this.pointerShape(e.value),n=this.pointerPath,r=this.pointerShape(e._oldValue);n.moveTo(o[0]).lineTo(o[1]).lineTo(o[2]).lineTo(o[3]).close();var i=new _p(n,X(e.animation,{reverse:t.options.reverse,vertical:t.options.vertical,oldPoints:[r[1],r[2]],newPoints:[o[1],o[2]]}));!1===e.animation.transitions&&(i.options.duration=0),i.setup(),i.play()},e.prototype.render=function(){var t=new zp,e=this.getElementOptions();this.options.track.visible&&t.append(this.renderTrack());var o=this.pointerPath=new Cp({stroke:e.stroke,fill:e.fill});return t.append(o),this.elements=t,t},e.prototype.renderTrack=function(){var t=this.options.track,e=t.border||{},o=this.trackBox.clone().pad(e.width||0);return new Cp.fromRect(o.toRect(),{fill:{color:t.color,opacity:t.opacity},stroke:{color:e.width?e.color||t.color:"",width:e.width,dashType:e.dashType}})},e}(dp);const Mp=kp;var Op=j.drawing.Group,Sp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this.pointers,o=t.origin.x,n=t.origin.y,r=new ve(o,n,o+t.width(),n+t.height());this.scale.reflow(r),this._shrinkScaleWidth(r);for(var i=0;i<e.length;i++)e[i].reflow();this.bbox=this._getBox(r),this._alignElements(),this._shrinkElements(),this._buildVisual(),this._draw()},e.prototype._buildVisual=function(){var t=new Op,e=this.scale.render(),o=this.pointers;t.append(this.gaugeArea),t.append(e);for(var n=0;n<o.length;n++){var r=o[n];t.append(r.render()),r.value(r.options.value)}this._visuals=t},e.prototype._createModel=function(){var t=this.options,e=this.scale=new hp(t.scale,this.contextService);this.pointers=[];var o=t.pointer;o=V(o)?o:[o];for(var n=0;n<o.length;n++){var r=X({},o[n],{animation:{transitions:t.transitions}}),i="arrow"===r.shape?xp:Mp;this.pointers.push(new i(e,r))}},e.prototype._defaultSize=function(){var t=this.options.scale.vertical;return{width:t?60:200,height:t?200:60}},e.prototype._getBox=function(t){for(var e,o=this.scale,n=this.pointers,r=t.center(),i=n[0].box.clone().wrap(o.box),a=0;a<n.length;a++)i.wrap(n[a].box.clone());return o.options.vertical?(e=i.width()/2,i=new ve(r.x-e,t.y1,r.x+e,t.y2)):(e=i.height()/2,i=new ve(t.x1,r.y-e,t.x2,r.y+e)),i},e.prototype._alignElements=function(){for(var t,e=this.scale,o=this.pointers,n=e.box,r=o[0].box.clone().wrap(e.box),i=this.bbox,a=0;a<o.length;a++)r.wrap(o[a].box.clone());e.options.vertical?(t=i.center().x-r.center().x,e.reflow(new ve(n.x1+t,i.y1,n.x2+t,i.y2))):(t=i.center().y-r.center().y,e.reflow(new ve(n.x1,n.y1+t,n.x2,n.y2+t)));for(var s=0;s<o.length;s++)o[s].reflow(this.bbox)},e.prototype._shrinkScaleWidth=function(t){var e=this.scale;if(!e.options.vertical){var o=e.contentBox().width()-t.width();o>0&&(e.box.shrink(o,0),e.box.alignTo(t,"center"),e.reflow(e.box))}},e.prototype._shrinkElements=function(){for(var t=this.scale,e=this.pointers,o=t.box.clone(),n=t.options.vertical?"y":"x",r=e[0].box,i=0;i<e.length;i++)r.wrap(e[i].box.clone());o[n+1]+=Math.max(o[n+1]-r[n+1],0),o[n+2]-=Math.max(r[n+2]-o[n+2],0),t.reflow(o);for(var a=0;a<e.length;a++)e[a].reflow(this.bbox)},e}(np);Rt(Sp,{transitions:!0,gaugeArea:{background:""},scale:{vertical:!0}});const Hp=Sp;var Pp=180,Ip=j.drawing.Arc,Ap=j.drawing.Path,Vp=j.drawing.Group;function Ep(t,e,o,n){var r=new Vp,i=t.center,a=t.getRadiusX();if(n.visible)for(var s=0;s<e.length;s++){var c=t.pointAt(e[s]),l=new j.geometry.Point(i.x+a-n.size,i.y).rotate(e[s],i);r.append(new Ap({stroke:{color:n.color,width:n.width}}).moveTo(c).lineTo(l))}return r}function Tp(t,e,o,n){return{from:t,to:e,color:o,opacity:n}}var Bp=function(t){function e(e,o){t.call(this,0,1,e,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initUserOptions=function(t){var e=X({},this.options,t);return e.majorUnit=e.majorUnit||le(e.min,e.max),e.minorUnit=e.minorUnit||e.majorUnit/10,e},e.prototype.initFields=function(){},e.prototype.render=function(t,e){var o=this.renderArc(t,e);this.bbox=o.bbox(),this.labelElements=this.renderLabels(),this.ticks=this.renderTicks(),this.ranges=this.renderRanges()},e.prototype.reflow=function(t){var e=t.center(),o=Math.min(t.height(),t.width())/2;if(!zt(this.bbox))return this.render(e,o);this.bbox=this.arc.bbox(),this.radius(this.arc.getRadiusX()),this.repositionRanges(),this.renderLabels()},e.prototype.slotAngle=function(t){var e=this.options,o=e.min,n=e.max,r=e.reverse,i=e.startAngle,a=e.endAngle,s=a-i;return(r?a-(t-o)/(n-o)*s:(t-o)/(n-o)*s+i)+Pp},e.prototype.hasRanges=function(){var t=this.options.ranges;return t&&t.length},e.prototype.ticksSize=function(){var t=this.options,e=t.majorTicks,o=t.minorTicks,n=0;return e.visible&&(n=e.size),o.visible&&(n=Math.max(o.size,n)),n},e.prototype.labelsCount=function(){var e=t.prototype.labelsCount.call(this),o=this.options;return o.endAngle-o.startAngle>=360&&o.max%o.majorUnit==0&&(e-=1),e},e.prototype.renderLabels=function(){var t=this,e=this.options,o=this.arc.clone(),n=o.getRadiusX(),r=this.tickAngles(o,e.majorUnit),i=e.rangeSize=e.rangeSize||.1*n,a=new Vp,s=.05*n;zt(e.rangeDistance)?s=e.rangeDistance:e.rangeDistance=s;var c=e.labels,l=c.position===Fh,h=zt(this.labelElements);l&&(n-=this.ticksSize(),this.hasRanges()&&!h&&(n-=i+s),o.setRadiusX(n).setRadiusY(n));for(var p=this.labels,u=p.length,v=$(c.padding),d=(v.left+v.right)/2,f=(v.top+v.bottom)/2,m=0;m<u;m++){var y=p[m],g=y.box.width()/2,b=y.box.height()/2,x=r[m],w=(x-Pp)*Nh,_=o.pointAt(x),z=_.x+Math.cos(w)*(g+d)*(l?1:-1),C=_.y+Math.sin(w)*(b+f)*(l?1:-1);y.reflow(new ve(z-g,C-b,z+g,C+b));var k=new j.geometry.Point(y.box.x1,y.box.y1),M=void 0;if(h){var O=(M=t.labelElements.children[m]).bbox().origin,S=M.transform()||j.geometry.transform();S.translate(k.x-O.x,k.y-O.y),M.transform(S)}else M=Qh(y,e.labels),a.append(M);t.bbox=j.geometry.Rect.union(t.bbox,M.bbox())}return a},e.prototype.repositionRanges=function(){var t=this.ranges.children;if(t.length>0){var e=this.options,o=e.rangeDistance,n=e.rangeSize,r=this.getRangeRadius();this.options.labels.position===Fh&&(r+=n+o);for(var i=r+n/2,a=0;a<t.length;a++)t[a]._geometry.setRadiusX(i).setRadiusY(i);this.bbox=j.geometry.Rect.union(this.bbox,this.ranges.bbox())}},e.prototype.renderRanges=function(){var t=this,e=this.rangeSegments(),o=e.length,n=new Vp;if(o){var r=this.options,i=r.rangeSize,a=r.reverse,s=r.rangeDistance,c=this.getRangeRadius();this.radius(this.radius()-i-s);for(var l=0;l<o;l++){var h=e[l],p=t.slotAngle(h[a?"to":"from"]),u=t.slotAngle(h[a?"from":"to"]);u-p!=0&&n.append(t.createRange(p,u,c,h))}}return n},e.prototype.createRange=function(t,e,o,n){var r=this.options.rangeSize,i=new j.geometry.Arc(this.arc.center,{radiusX:o+r/2,radiusY:o+r/2,startAngle:t,endAngle:e});return new Ip(i,{stroke:{width:r,color:n.color,opacity:n.opacity,lineCap:n.lineCap}})},e.prototype.rangeSegments=function(){var t=this.options,e=t.ranges||[],o=e.length,n=[];if(o){var r=t.min,i=t.max,a=t.rangePlaceholderColor;n.push(Tp(r,i,a));for(var s=0;s<o;s++)for(var c=Jh(e[s],r,i),l=n.length,h=0;h<l;h++){var p=n[h];if(p.from<=c.from&&c.from<=p.to){n.push(Tp(c.from,c.to,c.color,c.opacity)),p.from<=c.to&&c.to<=p.to&&n.push(Tp(c.to,p.to,a,c.opacity)),p.to=c.from;break}}}return n},e.prototype.getRangeRadius=function(){var t=this.arc,e=this.options,o=e.rangeSize,n=e.rangeDistance,r=e.majorTicks.size;return e.labels.position===Wh?t.getRadiusX()-r-n-o:t.getRadiusX()-o},e.prototype.renderArc=function(t,e){var o=this.options;return this.arc=new j.geometry.Arc(t,{radiusX:e,radiusY:e,startAngle:o.startAngle+Pp,endAngle:o.endAngle+Pp})},e.prototype.renderTicks=function(){var t=this.arc,e=this.options,o=t.clone();this.majorTickAngles=this.tickAngles(t,e.majorUnit),this.majorTicks=Ep(o,this.majorTickAngles,e.majorUnit,e.majorTicks);var n=new Vp;n.append(this.majorTicks);var r=e.majorTicks.size,i=e.minorTicks.size;if(this._tickDifference=r-i,e.labels.position===Wh){var a=o.getRadiusX();o.setRadiusX(a-r+i).setRadiusY(a-r+i)}return this.minorTickAngles=this.normalizeTickAngles(this.tickAngles(t,e.minorUnit)),this.minorTicks=Ep(o,this.minorTickAngles,e.minorUnit,e.minorTicks),n.append(this.minorTicks),n},e.prototype.normalizeTickAngles=function(t){for(var e=this.options,o=e.majorUnit/e.minorUnit,n=t.length-1;n>=0;n--)n%o==0&&t.splice(n,1);return t},e.prototype.tickAngles=function(t,e){var o=this.options,n=o.reverse,r=o.max-o.min,i=t.endAngle-t.startAngle,a=r/e,s=t.startAngle,c=i/a;n&&(s+=i,c=-c),i>=360&&o.max%e==0&&(a-=1);for(var h=[],p=0;p<a;p++)h.push(Et(s,l)),s+=c;return Et(s)<=t.endAngle&&h.push(s),h},e.prototype.radius=function(t){if(!t)return this.arc.getRadiusX();this.arc.setRadiusX(t).setRadiusY(t),this.repositionTicks(this.majorTicks.children,this.majorTickAngles),this.repositionTicks(this.minorTicks.children,this.minorTickAngles,!0)},e.prototype.repositionTicks=function(t,e,o){var n=o&&this._tickDifference||0,r=this.arc,i=r.getRadiusX();o&&this.options.labels.position===Wh&&0!==n&&(r=this.arc.clone()).setRadiusX(i-n).setRadiusY(i-n);for(var a=0;a<t.length;a++){var s=r.pointAt(e[a]),c=t[a].segments,l=s.x-c[0].anchor().x,h=s.y-c[0].anchor().y;t[a].transform((new j.geometry.transform).translate(l,h))}},e}(hn);Rt(Bp,{min:0,max:100,majorTicks:{size:15,align:Fh,color:i,width:Dh,visible:!0},minorTicks:{size:10,align:Fh,color:i,width:Dh,visible:!0},startAngle:-30,endAngle:210,labels:{position:Fh,padding:2}});const jp=Bp;var Lp=function(t){function e(e,o){t.call(this,e,o);var n=this.options;n.duration=Math.max(Math.abs(n.newAngle-n.oldAngle)/n.duration*1e3,1)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.step=function(t){var e=this.options,o=ut(e.oldAngle,e.newAngle,t);this.element.transform(j.geometry.transform().rotate(o,e.center))},e}(j.drawing.Animation);Rt(Lp,{easing:Uh,duration:jh}),j.drawing.AnimationFactory.current.register(Gh,Lp);const Rp=Lp;var Dp=j.drawing.Circle,Np=j.drawing.Group,Fp=j.drawing.Path,Up=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setAngle=function(t){this.elements.transform(j.geometry.transform().rotate(t,this.center))},e.prototype.repaint=function(){var t=this.scale,e=this.options,o=t.slotAngle(e._oldValue),n=t.slotAngle(e.value);!1===e.animation.transitions?this.setAngle(n):new Rp(this.elements,X(e.animation,{oldAngle:o,newAngle:n})).play()},e.prototype.render=function(){var t=this.scale,e=this.options,o=new Np;return!1!==e.animation&&X(e.animation,{startAngle:0,center:t.arc.center,reverse:t.options.reverse}),o.append(this._renderNeedle(),this._renderCap()),this.elements=o,this.setAngle(Nh),o},e.prototype.reflow=function(t){var e=this.center=t.center,o=It(this.options.length||1,.1,1.5),n=this.radius=t.getRadiusX()*o,r=this.capSize=Math.round(n*this.options.cap.size);this.bbox=j.geometry.Rect.fromPoints(new j.geometry.Point(e.x-r,e.y-r),new j.geometry.Point(e.x+r,e.y+r))},e.prototype._renderNeedle=function(){var t=this.scale.options.minorTicks.size,e=this.center,o=this.options.color,n=new Fp({fill:{color:o},stroke:{color:o,width:Dh}});return n.moveTo(e.x+this.radius-t,e.y).lineTo(e.x,e.y-this.capSize/2).lineTo(e.x,e.y+this.capSize/2).close(),n},e.prototype._renderCap=function(){var t=this.options,e=t.cap.color||t.color,o=new j.geometry.Circle(this.center,this.capSize);return new Dp(o,{fill:{color:e},stroke:{color:e}})},e}(up);Rt(Up,{cap:{size:.05},arrow:{width:16,height:14},animation:{type:Gh,duration:jh}});const Wp=Up;var Gp=j.drawing.Group,Kp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reflow=function(t){var e=this,o=this.pointers;this.scale.reflow(t),this._initialPlotArea=this.scale.bbox;for(var n=0;n<o.length;n++)o[n].reflow(e.scale.arc),e._initialPlotArea=j.geometry.Rect.union(e._initialPlotArea,o[n].bbox);this.fitScale(t),this.alignScale(t),this._buildVisual(this.gaugeArea,o,this.scale),this._draw()},e.prototype._buildVisual=function(t,e,o){var n=this._visuals=new Gp;n.append(t),n.append(o.ticks),n.append(o.ranges),this._buildPointers(e),n.append(o.labelElements)},e.prototype._buildPointers=function(t){for(var e=0;e<t.length;e++){var o=t[e];o.render(),this._visuals.append(o.elements),o.value(o.options.value)}},e.prototype.fitScale=function(t){for(var e,o,n,r,i,a=this,s=this.scale.arc,c=this._initialPlotArea,h=Math.abs(this.getDiff(c,t)),p=Et(h,l),u=Et(-h,l),v=0,d=0;!(!(d++<100)||(v=i===n?v+1:0)>5||p!==r&&0<=(e=a.getPlotBox(p,t,s))&&e<=2||u!==r&&0<=(n=a.getPlotBox(u,t,s))&&n<=2||(r=e>0&&n>0?2*p:e<0&&n<0?2*u:Et((p+u)/2||1,l),0<=(o=a.getPlotBox(r,t,s))&&o<=2));)i=n,o>0?(u=r,n=o):(p=r,e=o)},e.prototype.getPlotBox=function(t,e,o){var n=this.scale,r=this.pointers,i=o.getRadiusX(),a=o.clone();a.setRadiusX(i+t).setRadiusY(i+t),n.arc=a,n.reflow(e),this.plotBbox=n.bbox;for(var s=0;s<r.length;s++)r[s].reflow(a),this.plotBbox=j.geometry.Rect.union(this.plotBbox,r[s].bbox);return this.getDiff(this.plotBbox,e)},e.prototype.getDiff=function(t,e){return Math.min(e.width()-t.width(),e.height()-t.height())},e.prototype.alignScale=function(t){var e=this.plotBbox.center(),o=t.center(),n=e.x-o.x,r=e.y-o.y,i=this.scale,a=this.pointers;i.arc.center.x-=n,i.arc.center.y-=r,i.reflow(t);for(var s=0;s<a.length;s++)a[s].reflow(i.arc),this.plotBbox=j.geometry.Rect.union(i.bbox,a[s].bbox)},e.prototype._createModel=function(){var t=this.options,e=t.pointer,o=this.scale=new jp(t.scale,this.contextService);this.pointers=[];for(var n=V(e)?e:[e],r=0;r<n.length;r++){var i=new Wp(o,X({},n[r],{animation:{transitions:t.transitions}}));this.pointers.push(i)}},e}(np);Rt(Kp,{transitions:!0,gaugeArea:{background:""}});const Xp=Kp;var Zp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.rangeSegments=function(){var t=this.options;return[{from:t.min,to:t.max,color:t.rangePlaceholderColor,lineCap:t.rangeLineCap}]},e.prototype.hasRanges=function(){return!0},e.prototype.placeholderRangeAngle=function(t){var e=this.ranges.children[0].geometry();this.options.reverse?e.setEndAngle(t):e.setStartAngle(t)},e.prototype.addRange=function(t,e,o){var n=this.options.reverse,r=this.slotAngle(n?e:t),i=this.slotAngle(n?t:e),a=this.createRange(r,i,this.getRangeRadius(),o);return this.ranges.append(a),a},e}(jp);Rt(Zp,{min:0,max:100,majorTicks:{visible:!1},minorTicks:{visible:!1},labels:{visible:!1},startAngle:0,endAngle:180,rangeLineCap:"round"});const Yp=Zp;var qp=function(t){function e(e,o){t.call(this,e,o);var n=this.options,r=Math.abs(n.newAngle-n.oldAngle)/n.duration*1e3;n.duration=It(r,jh,800);var i=e.elements.options.get("stroke.color"),a=e.currentColor();i!==a&&(this.startColor=new j.Color(i),this.color=new j.Color(a))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.step=function(t){var e=this,o=e.options,n=e.startColor,r=e.color,i=ut(o.oldAngle,o.newAngle,t);if(this.element.angle(i),r){var a=Et(ut(n.r,r.r,t)),s=Et(ut(n.g,r.g,t)),c=Et(ut(n.b,r.b,t));this.element.stroke(new j.Color(a,s,c).toHex())}},e}(j.drawing.Animation);Rt(qp,{easing:Uh,duration:jh}),j.drawing.AnimationFactory.current.register(Kh,qp);const Qp=qp;var Jp=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.repaint=function(){var t=this.scale,e=this.options,o=t.slotAngle(e._oldValue),n=t.slotAngle(e.value);this.animation&&this.animation.abort(),!1===e.animation.transitions?(this.angle(n),this.stroke(this.currentColor())):(this.animation=new Qp(this,X(e.animation,{oldAngle:o,newAngle:n})),this.animation.play())},e.prototype.angle=function(t){var e=this.elements.geometry();this.scale.options.reverse?e.setStartAngle(t):e.setEndAngle(t),this.scale.placeholderRangeAngle(t)},e.prototype.stroke=function(t){this.elements.stroke(t)},e.prototype.render=function(){if(!this.elements){var t=this.scale,e=this.options;!1!==e.animation&&X(e.animation,{startAngle:0,center:t.arc.center,reverse:t.options.reverse}),this.elements=t.addRange(t.options.min,this.options.value,{color:this.currentColor(),opacity:e.opacity,lineCap:t.options.rangeLineCap})}},e.prototype.currentColor=function(){var t=this.scale.options,e=t.min,o=t.max,n=this.options,r=n.colors,i=n.color,a=n.value,s=D(a)?a:e;if(r)for(var c=0;c<r.length;c++){var l=r[c],h=l.color,p=l.from;void 0===p&&(p=e);var u=l.to;if(void 0===u&&(u=o),p<=s&&s<=u)return h}return i},e.prototype.reflow=function(){this.render(),this.bbox=this.elements.bbox()},e}(up);Rt(Jp,{animation:{type:Kh,duration:jh}});const $p=Jp;var tu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initTheme=function(e){t.prototype._initTheme.call(this,e),this.options.color=this.options.color||(this.theme.pointer||{}).color},e.prototype._createModel=function(){var t=this.options,e=this.scale=new Yp(t.scale,this.contextService),o=new $p(e,X({},{colors:t.colors,color:t.color,value:t.value,opacity:t.opacity,animation:{transitions:t.transitions}}));this.pointers=[o]},e.prototype._buildPointers=function(t){for(var e=0;e<t.length;e++){var o=t[e];o.render(),o.value(o.options.value)}},e.prototype._setValueOptions=function(t){this.options.value=t},e.prototype.currentColor=function(){var t=this.pointers[0];if(t)return t.currentColor()},e.prototype.centerLabelPosition=function(t,e){var o=this.getSize(),n=this.scale.arc.center,r=n.x-t/2,i=n.y-e/2;if(t<o.width){var a=r+t;r=Math.max(r,0),a>o.width&&(r-=a-o.width)}if(e<o.height){var s=this.scale.bbox,c=s.bottomRight().y,l=i+e;i=Math.max(i,s.origin.y),l>c&&(i-=l-c)}return{left:r,top:i}},e}(Xp);const eu=tu;var ou=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._createModel=function(){var e=this.options.scale;"number"!=typeof e.startAngle&&(e.startAngle=90),e.endAngle=e.startAngle+360,t.prototype._createModel.call(this)},e}(eu);const nu=ou;var ru=function(t){function e(e){t.call(this),this.setOptions(e),this.initProperties()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){},e.prototype.setOptions=function(t){this.options=Object.assign({},this.options,t),this.quietZoneLength=this.options.addQuietZone?2*this.options.quietZoneLength:0},e.prototype.encode=function(t,e,o){var n=zt(t)?String(t):t;return this.initValue(n,e,o),this.options.addQuietZone&&this.addQuietZone(),this.addData(),this.options.addQuietZone&&this.addQuietZone(),{baseUnit:this.baseUnit,pattern:this.pattern}},e.prototype.initValue=function(){},e.prototype.addQuietZone=function(){this.pattern.push(this.options.quietZoneLength||10)},e.prototype.addData=function(){},e.prototype.invalidCharacterError=function(t){throw new Error('Character "'+t+'" is not valid for symbology '+this.name+".")},e}(j.Class);Rt(ru,{quietZoneLength:10,addQuietZone:!0,addCheckSum:!0});var iu=Object.assign,au=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),iu(this,{name:"Code 11",characterMap:["111121","211121","121121","221111","112121","212111","122111","111221","211211","211111","112111"],cCheckSumTotal:10,kCheckSumTotal:9,kCheckSumMinLength:10,checkSumMod:11,DASH_VALUE:10,DASH:"-",START:"112211",STOP:"11221"})},e.prototype.initValue=function(t,e){this.pattern=[],this.value=t,this.width=e,this.totalUnits=0},e.prototype.addData=function(){var t=this.value;this.addPattern(this.START);for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.addCheckSum(),this.addPattern(this.STOP),this.setBaseUnit()},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(this.totalUnits+this.quietZoneLength)},e.prototype.addCheckSum=function(){var t=this.value,e=t.length,o=this.getWeightedSum(t,e,this.cCheckSumTotal)%this.checkSumMod;if(this.checksum=String(o),this.addPattern(this.characterMap[o]),++e>=this.kCheckSumMinLength){var n=(o+this.getWeightedSum(t,e,this.kCheckSumTotal))%this.checkSumMod;this.checksum+=n,this.addPattern(this.characterMap[n])}},e.prototype.getWeightedSum=function(t,e,o){for(var n=0,r=0;r<t.length;r++)n+=this.weightedValue(this.getValue(t.charAt(r)),e,r,o);return n},e.prototype.weightedValue=function(t,e,o,n){return((e-o)%n||n)*t},e.prototype.getValue=function(t){return isNaN(t)?(t!==this.DASH&&this.invalidCharacterError(t),this.DASH_VALUE):parseInt(t,10)},e.prototype.addCharacter=function(t){var e=this.getValue(t),o=this.characterMap[e];this.addPattern(o)},e.prototype.addPattern=function(t){for(var e,o=0;o<t.length;o++)e=parseInt(t.charAt(o),10),this.pattern.push(e),this.totalUnits+=e},e}(ru);Rt(au,{addCheckSum:!0});var su=Object.assign,cu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),su(this,{minBaseUnitLength:.7})},e.prototype.addData=function(){var t=this.value;this.addStart();for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.pushCheckSum(),this.addStop(),this.prepareValues()},e.prototype.addCharacter=function(t){var e=this.characterMap[t];e||this.invalidCharacterError(t),this.addBase(e)},e.prototype.addBase=function(){},e}(ru),lu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),su(this,{name:"Code 39",checkSumMod:43,minRatio:2.5,maxRatio:3,gapWidth:1,splitCharacter:"|",patternMappings:{b:"1|",w:"1|",B:"ratio|",W:"ratio|"},characterMap:{0:{pattern:"bwbWBwBwb",value:0},1:{pattern:"BwbWbwbwB",value:1},2:{pattern:"bwBWbwbwB",value:2},3:{pattern:"BwBWbwbwb",value:3},4:{pattern:"bwbWBwbwB",value:4},5:{pattern:"BwbWBwbwb",value:5},6:{pattern:"bwBWBwbwb",value:6},7:{pattern:"bwbWbwBwB",value:7},8:{pattern:"BwbWbwBwb",value:8},9:{pattern:"bwBWbwBwb",value:9},A:{pattern:"BwbwbWbwB",value:10},B:{pattern:"bwBwbWbwB",value:11},C:{pattern:"BwBwbWbwb",value:12},D:{pattern:"bwbwBWbwB",value:13},E:{pattern:"BwbwBWbwb",value:14},F:{pattern:"bwBwBWbwb",value:15},G:{pattern:"bwbwbWBwB",value:16},H:{pattern:"BwbwbWBwb",value:17},I:{pattern:"bwBwbWBwb",value:18},J:{pattern:"bwbwBWBwb",value:19},K:{pattern:"BwbwbwbWB",value:20},L:{pattern:"bwBwbwbWB",value:21},M:{pattern:"BwBwbwbWb",value:22},N:{pattern:"bwbwBwbWB",value:23},O:{pattern:"BwbwBwbWb",value:24},P:{pattern:"bwBwBwbWb",value:25},Q:{pattern:"bwbwbwBWB",value:26},R:{pattern:"BwbwbwBWb",value:27},S:{pattern:"bwBwbwBWb",value:28},T:{pattern:"bwbwBwBWb",value:29},U:{pattern:"BWbwbwbwB",value:30},V:{pattern:"bWBwbwbwB",value:31},W:{pattern:"BWBwbwbwb",value:32},X:{pattern:"bWbwBwbwB",value:33},Y:{pattern:"BWbwBwbwb",value:34},Z:{pattern:"bWBwBwbwb",value:35},"-":{pattern:"bWbwbwBwB",value:36},".":{pattern:"BWbwbwBwb",value:37}," ":{pattern:"bWBwbwBwb",value:38},$:{pattern:"bWbWbWbwb",value:39},"/":{pattern:"bWbWbwbWb",value:40},"+":{pattern:"bWbwbWbWb",value:41},"%":{pattern:"bwbWbWbWb",value:42},START:{pattern:"bWbwBwBwb"}}})},e.prototype.initValue=function(t,e,o){this.width=e,this.height=o,this.value=t,this.dataLength=t.length,this.pattern=[],this.patternString=""},e.prototype.prepareValues=function(){var t,e=this.minBaseUnitLength,o=this.minRatio,n=Math.ceil(Math.max(.15*this.width,24)),r=this.maxRatio;if(this.height<n)throw new Error("Insufficient height for Code39 encoding: the current height is "+this.height+"px and the minimum height is "+n+"px.");for(t=this.getBaseUnit(r);t<e&&r>o;)r=parseFloat((r-.1).toFixed(1)),t=this.getBaseUnit(r);if(t<e){var i=Math.ceil(this.getBaseWidth(o)*e);throw new Error("Insufficient width for Code39 encoding: the current width is "+this.width+'px and the minimum width for value "'+this.value+'" is '+i+"px.")}this.ratio=r,this.baseUnit=t,this.patternString=this.patternString.substring(0,this.patternString.length-1),this.pattern=this.pattern.concat(this.patternString.replace(/ratio/g,r).split(this.splitCharacter))},e.prototype.getBaseUnit=function(t){return this.width/this.getBaseWidth(t)},e.prototype.getBaseWidth=function(t){var e=3*(t+2);return this.quietZoneLength+e*(this.dataLength+2)+this.gapWidth*(this.dataLength+1)},e.prototype.addStart=function(){this.addPattern(this.characterMap.START.pattern),this.addCharacterGap()},e.prototype.addBase=function(t){this.addPattern(t.pattern),this.addCharacterGap()},e.prototype.addStop=function(){this.addPattern(this.characterMap.START.pattern)},e.prototype.addPattern=function(t){for(var e=0;e<t.length;e++)this.patternString+=this.patternMappings[t.charAt(e)]},e.prototype.addCharacterGap=function(){this.patternString+=this.gapWidth+this.splitCharacter},e}(cu);Rt(lu,{addCheckSum:!1});var hu={addCharacter:function(t){this.characterMap[t]?this.addBase(this.characterMap[t]):t.charCodeAt(0)>127?this.invalidCharacterError(t):this.addExtended(t.charCodeAt(0))},addExtended:function(t){for(var e,o=this,n=0;n<this.extendedMappings.length;n++)if(e=o.extendedMappings[n].call(o,t)){for(var r=0;r<e.length;r++){var i=e[r];o.addBase(i)}return void(o.dataLength+=e.length-1)}},extendedMappings:[function(t){if(97<=t&&t<=122)return[this.characterMap[this.shiftCharacters[0]],this.characterMap[String.fromCharCode(t-32)]]},function(t){if(33<=t&&t<=58)return[this.characterMap[this.shiftCharacters[1]],this.characterMap[String.fromCharCode(t+32)]]},function(t){if(1<=t&&t<=26)return[this.characterMap[this.shiftCharacters[2]],this.characterMap[String.fromCharCode(t+64)]]},function(t){var e,o,n=this;if(this.specialAsciiCodes[t]){e=[];for(var r=0;r<this.specialAsciiCodes[t].length;r++)e.push(n.characterMap[n.shiftCharacters[3]]),e.push(n.characterMap[n.specialAsciiCodes[t][r]])}else o=6*Math.floor(t/32)+(t-27)%32+64,e=[this.characterMap[this.shiftCharacters[3]],this.characterMap[String.fromCharCode(o)]];return e}],specialAsciiCodes:{0:["U"],64:["V"],96:["W"],127:["T","X","Y","Z"]},shiftValuesAsciiCodes:{39:36,40:47,41:43,42:37},characterMap:{"+":!1,"/":!1,$:!1,"%":!1},shiftCharacters:["SHIFT0","SHIFT1","SHIFT2","SHIFT3"]},pu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),X(this,hu,{name:"Code 39 extended",characterMap:{SHIFT0:{pattern:"bWbwbWbWb",value:41},SHIFT1:{pattern:"bWbWbwbWb",value:40},SHIFT2:{pattern:"bWbWbWbwb",value:39},SHIFT3:{pattern:"bwbWbWbWb",value:42}}})},e}(lu),uu=Object.assign,vu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),uu(this,{name:"Code 93",cCheckSumTotal:20,kCheckSumTotal:15,checkSumMod:47,characterMap:{0:{pattern:"131112",value:0},1:{pattern:"111213",value:1},2:{pattern:"111312",value:2},3:{pattern:"111411",value:3},4:{pattern:"121113",value:4},5:{pattern:"121212",value:5},6:{pattern:"121311",value:6},7:{pattern:"111114",value:7},8:{pattern:"131211",value:8},9:{pattern:"141111",value:9},A:{pattern:"211113",value:10},B:{pattern:"211212",value:11},C:{pattern:"211311",value:12},D:{pattern:"221112",value:13},E:{pattern:"221211",value:14},F:{pattern:"231111",value:15},G:{pattern:"112113",value:16},H:{pattern:"112212",value:17},I:{pattern:"112311",value:18},J:{pattern:"122112",value:19},K:{pattern:"132111",value:20},L:{pattern:"111123",value:21},M:{pattern:"111222",value:22},N:{pattern:"111321",value:23},O:{pattern:"121122",value:24},P:{pattern:"131121",value:25},Q:{pattern:"212112",value:26},R:{pattern:"212211",value:27},S:{pattern:"211122",value:28},T:{pattern:"211221",value:29},U:{pattern:"221121",value:30},V:{pattern:"222111",value:31},W:{pattern:"112122",value:32},X:{pattern:"112221",value:33},Y:{pattern:"122121",value:34},Z:{pattern:"123111",value:35},"-":{pattern:"121131",value:36},".":{pattern:"311112",value:37}," ":{pattern:"311211",value:38},$:{pattern:"321111",value:39},"/":{pattern:"112131",value:40},"+":{pattern:"113121",value:41},"%":{pattern:"211131",value:42},SHIFT0:{pattern:"122211",value:46},SHIFT1:{pattern:"311121",value:45},SHIFT2:{pattern:"121221",value:43},SHIFT3:{pattern:"312111",value:44},START:{pattern:"111141"},TERMINATION_BAR:"1"}})},e.prototype.initValue=function(t,e,o){this.value=t,this.width=e,this.height=o,this.pattern=[],this.values=[],this.dataLength=t.length},e.prototype.prepareValues=function(){var t=Math.ceil(Math.max(.15*this.width,24));if(this.height<t)throw new Error("Insufficient height for Code93 encoding: the current height is "+this.height+"px, the minimum required height is "+t+"px.");if(this.setBaseUnit(),this.baseUnit<this.minBaseUnitLength){var e=Math.ceil(this.minBaseUnitLength*(this.width/this.baseUnit));throw new Error("Insufficient width for Code93 encoding: the current width is "+this.width+'px and the minimum required width for value "'+this.value+'" is '+e+"px.")}},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(9*(this.dataLength+2+2)+this.quietZoneLength+1)},e.prototype.addStart=function(){var t=this.characterMap.START.pattern;this.addPattern(t)},e.prototype.addStop=function(){this.addStart(),this.pattern.push(this.characterMap.TERMINATION_BAR)},e.prototype.addBase=function(t){this.addPattern(t.pattern),this.values.push(t.value)},e.prototype.pushCheckSum=function(){var t,e=this,o=this._getCheckValues();this.checksum=o.join("");for(var n=0;n<o.length;n++)t=e.characterMap[e._findCharacterByValue(o[n])],e.addPattern(t.pattern)},e.prototype._getCheckValues=function(){var t,e,o=this,n=this.values,r=n.length,i=0;for(e=r-1;e>=0;e--)i+=o.weightedValue(n[e],r-e,o.cCheckSumTotal);for(t=i%this.checkSumMod,i=this.weightedValue(t,1,this.kCheckSumTotal),e=r-1;e>=0;e--)i+=o.weightedValue(n[e],r-e+1,o.kCheckSumTotal);return[t,i%this.checkSumMod]},e.prototype._findCharacterByValue=function(t){for(var e in this.characterMap)if(this.characterMap[e].value===t)return e},e.prototype.weightedValue=function(t,e,o){return(e%o||o)*t},e.prototype.addPattern=function(t){for(var e,o=0;o<t.length;o++)e=parseInt(t.charAt(o),10),this.pattern.push(e)},e}(cu),du=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),X(this,hu,{name:"Code 93 extended",pushCheckSum:function(){var t,e=this,o=this._getCheckValues();this.checksum=o.join("");for(var n=0;n<o.length;n++)if(t=o[n],e.shiftValuesAsciiCodes[t])e.addExtended(e.shiftValuesAsciiCodes[t]);else{var r=e._findCharacterByValue(t);e.addPattern(e.characterMap[r].pattern)}}})},e}(vu),fu=/^\d+$/,mu=Object.assign,yu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),mu(this,{name:"Postnet",START:"2",VALID_CODE_LENGTHS:[5,9,11],DIGIT_SEPARATOR:"-",characterMap:["22111","11122","11212","11221","12112","12121","12211","21112","21121","21211"]})},e.prototype.initValue=function(t,e,o){this.height=o,this.width=e,this.baseHeight=o/2,this.value=t.replace(new RegExp(this.DIGIT_SEPARATOR,"g"),""),this.pattern=[],this.validate(this.value),this.checkSum=0,this.setBaseUnit()},e.prototype.addData=function(){var t=this.value;this.addPattern(this.START);for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.addCheckSum(),this.addPattern(this.START),this.pattern.pop()},e.prototype.addCharacter=function(t){var e=this.characterMap[t];this.checkSum+=parseInt(t,10),this.addPattern(e)},e.prototype.addCheckSum=function(){this.checksum=(10-this.checkSum%10)%10,this.addCharacter(this.checksum)},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(10*(this.value.length+1)+3+this.quietZoneLength)},e.prototype.validate=function(t){if(fu.test(t)||this.invalidCharacterError(t.match(/[^0-9]/)[0]),!pt(t.length,this.VALID_CODE_LENGTHS))throw new Error("Invalid value length. Valid lengths for the Postnet symbology are "+this.VALID_CODE_LENGTHS.join(",")+".")},e.prototype.addPattern=function(t){for(var e,o=this,n=0;n<t.length;n++)e=o.height-o.baseHeight*t.charAt(n),o.pattern.push({width:1,y1:e,y2:o.height}),o.pattern.push(1)},e}(ru),gu=/^\d+$/,bu=/^[a-z0-9]+$/i,xu=Object.assign,wu=function(t){function e(e){t.call(this),this.encoding=e,this.initProperties()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){},e.prototype.addStart=function(){},e.prototype.is=function(){},e.prototype.isCode=function(){return!1},e.prototype.move=function(){},e.prototype.pushState=function(){},e}(j.Class),_u=function(t){function e(e,o){t.call(this,e),this.states=o,this._initMoves(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),X(this,{FNC4:"FNC4",SHIFT:98})},e.prototype.addStart=function(){this.encoding.addPattern(this.START)},e.prototype.is=function(t,e){var o=t.charCodeAt(e);return this.isCode(o)},e.prototype.move=function(t){for(var e=0;!this._moves[e].call(this,t)&&e<this._moves.length;)e++},e.prototype.pushState=function(t){var e,o=this.states,n=t.value,r=n.length;if(pt("C",o)){var i=n.substr(t.index).match(/\d{4,}/g);i&&(r=n.indexOf(i[0],t.index))}for(;(e=t.value.charCodeAt(t.index))>=0&&this.isCode(e)&&t.index<r;)this.encoding.addPattern(this.getValue(e)),t.index++},e.prototype._initMoves=function(t){this._moves=[],pt(this.FNC4,t)&&this._moves.push(this._moveFNC),pt(this.shiftKey,t)&&this._moves.push(this._shiftState),this._moves.push(this._moveState)},e.prototype._moveFNC=function(t){if(t.fnc)return t.fnc=!1,t.previousState===this.key},e.prototype._shiftState=function(t){if(t.previousState===this.shiftKey&&(t.index+1>=t.value.length||this.encoding[this.shiftKey].is(t.value,t.index+1)))return this.encoding.addPattern(this.SHIFT),t.shifted=!0,!0},e.prototype._moveState=function(){return this.encoding.addPattern(this.MOVE),!0},e}(wu),zu={};zu.A=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{key:"A",shiftKey:"B",MOVE:101,START:103})},e.prototype.isCode=function(t){return 0<=t&&t<96},e.prototype.getValue=function(t){return t<32?t+64:t-32},e}(_u),zu.B=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{key:"B",shiftKey:"A",MOVE:100,START:104})},e.prototype.isCode=function(t){return 32<=t&&t<128},e.prototype.getValue=function(t){return t-32},e}(_u),zu.C=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{key:"C",MOVE:99,START:105})},e.prototype.addStart=function(){this.encoding.addPattern(this.START)},e.prototype.is=function(t,e){var o=Pu(t,e,4);return(e+4<=t.length||2===t.length)&&gu.test(o)},e.prototype.move=function(){this.encoding.addPattern(this.MOVE)},e.prototype.pushState=function(t){for(var e;(e=Pu(t.value,t.index,2))&&gu.test(e)&&2===e.length;)this.encoding.addPattern(parseInt(e,10)),t.index+=2},e.prototype.getValue=function(t){return t},e}(wu),zu.FNC4=function(t){function e(e,o){t.call(this,e),this._initSubStates(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{key:"FNC4",dependentStates:["A","B"]})},e.prototype.addStart=function(t){var e=t.value.charCodeAt(0)-128,o=this._getSubState(e);this.encoding[o].addStart()},e.prototype.is=function(t,e){var o=t.charCodeAt(e);return this.isCode(o)},e.prototype.isCode=function(t){return 128<=t&&t<256},e.prototype.pushState=function(t){var e,o=this._initSubState(t),n=this.encoding,r=o.value.length;if(t.index+=r,r<3)for(;o.index<r;o.index++)e=o.value.charCodeAt(o.index),o.state=this._getSubState(e),o.previousState!==o.state&&(o.previousState=o.state,n[o.state].move(o)),n.addPattern(n[o.state].MOVE),n.addPattern(n[o.state].getValue(e));else o.state!==o.previousState&&n[o.state].move(o),this._pushStart(o),n.pushData(o,this.subStates),t.index<t.value.length&&this._pushStart(o);t.fnc=!0,t.state=o.state},e.prototype._pushStart=function(t){this.encoding.addPattern(this.encoding[t.state].MOVE),this.encoding.addPattern(this.encoding[t.state].MOVE)},e.prototype._initSubState=function(t){var e={value:this._getAll(t.value,t.index),index:0};return e.state=this._getSubState(e.value.charCodeAt(0)),e.previousState=t.previousState===this.key?e.state:t.previousState,e},e.prototype._initSubStates=function(t){this.subStates=[];for(var e=0;e<t.length;e++)pt(t[e],this.dependentStates)&&this.subStates.push(t[e])},e.prototype._getSubState=function(t){for(var e=this,o=0;o<this.subStates.length;o++)if(e.encoding[e.subStates[o]].isCode(t))return e.subStates[o]},e.prototype._getAll=function(t,e){for(var o,n="",r=e;(o=t.charCodeAt(r++))&&this.isCode(o);)n+=String.fromCharCode(o-128);return n},e}(wu),zu.FNC1=function(t){function e(e,o){t.call(this,e),this.states=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{key:"FNC1",startState:"C",startAI:"(",endAI:")",dependentStates:["C","B"],applicationIdentifiers:{22:{max:29,type:"alphanumeric"},402:{length:17},7004:{max:4,type:"alphanumeric"},242:{max:6,type:"alphanumeric"},8020:{max:25,type:"alphanumeric"},703:{min:3,max:30,type:"alphanumeric"},8008:{min:8,max:12,type:"alphanumeric"},253:{min:13,max:17,type:"alphanumeric"},8003:{min:14,max:30,type:"alphanumeric"},multiKey:[{ids:["15","17","8005","8100"],ranges:[[11,13],[310,316],[320,336],[340,369]],type:{length:6}},{ids:["240","241","250","251","400","401","403","7002","8004","8007","8110"],ranges:[[-9]],type:{max:30,type:"alphanumeric"}},{ids:["7001"],ranges:[[410,414]],type:{length:13}},{ids:["10","21","254","420","8002"],type:{max:20,type:"alphanumeric"}},{ids:["00","8006","8017","8018"],type:{length:18}},{ids:["01","02","8001"],type:{length:14}},{ids:["422"],ranges:[[424,426]],type:{length:3}},{ids:["20","8102"],type:{length:2}},{ids:["30","37"],type:{max:8,type:"alphanumeric"}},{ids:["390","392"],type:{max:15,type:"alphanumeric"}},{ids:["421","423"],type:{min:3,max:15,type:"alphanumeric"}},{ids:["391","393"],type:{min:3,max:18,type:"alphanumeric"}},{ids:["7003","8101"],type:{length:10}}]},START:102})},e.prototype.addStart=function(){this.encoding[this.startState].addStart()},e.prototype.is=function(){return pt(this.key,this.states)},e.prototype.pushState=function(t){var e,o,n,r=this,i=this.encoding,a=t.value.replace(/\s/g,""),s=new RegExp("["+this.startAI+this.endAI+"]","g"),c=t.index,l={state:this.startState};for(i.addPattern(this.START);;){if(l.index=0,(e=(n=a.charAt(c)===r.startAI?2:0)>0?r.getBySeparator(a,c):r.getByLength(a,c)).ai.length)o=c+n+e.id.length+e.ai.length;else if((o=a.indexOf(r.startAI,c+1))<0){if(c+e.ai.max+e.id.length+n<a.length)throw new Error("Separators are required after variable length identifiers");o=a.length}if(l.value=a.substring(c,o).replace(s,""),r.validate(e,l.value),i.pushData(l,r.dependentStates),o>=a.length)break;c=o,l.state!==r.startState&&(i[r.startState].move(l),l.state=r.startState),e.ai.length||i.addPattern(r.START)}t.index=t.value.length},e.prototype.validate=function(t,e){var o=e.substr(t.id.length),n=t.ai;if(!n.type&&!gu.test(o))throw new Error("Application identifier "+t.id+" is numeric only but contains non numeric character(s).");if("alphanumeric"===n.type&&!bu.test(o))throw new Error("Application identifier "+t.id+" is alphanumeric only but contains non alphanumeric character(s).");if(n.length&&n.length!==o.length)throw new Error("Application identifier "+t.id+" must be "+n.length+" characters long.");if(n.min&&n.min>o.length)throw new Error("Application identifier "+t.id+" must be at least "+n.min+" characters long.");if(n.max&&n.max<o.length)throw new Error("Application identifier "+t.id+" must be at most "+n.max+" characters long.")},e.prototype.getByLength=function(t,e){for(var o,n,r=2;r<=4;r++)if(o=Pu(t,e,r),n=this.getApplicationIdentifier(o)||this.getApplicationIdentifier(o.substring(0,o.length-1)))return{id:o,ai:n};this.unsupportedAIError(o)},e.prototype.unsupportedAIError=function(t){throw new Error("'"+t+"' is not a supported Application Identifier")},e.prototype.getBySeparator=function(t,e){var o=t.indexOf(this.startAI,e),n=t.indexOf(this.endAI,o),r=t.substring(o+1,n),i=this.getApplicationIdentifier(r)||this.getApplicationIdentifier(r.substr(r.length-1));return i||this.unsupportedAIError(r),{ai:i,id:r}},e.prototype.getApplicationIdentifier=function(t){var e=this.applicationIdentifiers,o=e.multiKey;if(e[t])return e[t];for(var n=0;n<o.length;n++){if(o[n].ids&&pt(t,o[n].ids))return o[n].type;if(o[n].ranges)for(var r=o[n].ranges,i=0;i<r.length;i++)if(r[i][0]<=t&&t<=r[i][1])return o[n].type}},e}(wu);var Cu=function(t){function e(e){t.call(this,e),this._initStates()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{characterMap:[212222,222122,222221,121223,121322,131222,122213,122312,132212,221213,221312,231212,112232,122132,122231,113222,123122,123221,223211,221132,221231,213212,223112,312131,311222,321122,321221,312212,322112,322211,212123,212321,232121,111323,131123,131321,112313,132113,132311,211313,231113,231311,112133,112331,132131,113123,113321,133121,313121,211331,231131,213113,213311,213131,311123,311321,331121,312113,312311,332111,314111,221411,431111,111224,111422,121124,121421,141122,141221,112214,112412,122114,122411,142112,142211,241211,221114,413111,241112,134111,111242,121142,121241,114212,124112,124211,411212,421112,421211,212141,214121,412121,111143,111341,131141,114113,114311,411113,411311,113141,114131,311141,411131,211412,211214,211232,2331112],STOP:106})},e.prototype._initStates=function(){for(var t=this,e=0;e<this.states.length;e++)t[t.states[e]]=new zu[t.states[e]](t,t.states)},e.prototype.initValue=function(t,e,o){this.pattern=[],this.value=t,this.width=e,this.height=o,this.checkSum=0,this.totalUnits=0,this.index=0,this.position=1},e.prototype.addData=function(){var t={value:this.value,index:0,state:""};0!==this.value.length&&(t.state=t.previousState=this.getNextState(t,this.states),this.addStart(t),this.pushData(t,this.states),this.addCheckSum(),this.addStop(),this.setBaseUnit())},e.prototype.pushData=function(t,e){for(var o=this;o[t.state].pushState(t),!(t.index>=t.value.length);)if(t.shifted){var n=t.state;t.state=t.previousState,t.previousState=n,t.shifted=!1}else t.previousState=t.state,t.state=o.getNextState(t,e),o[t.state].move(t)},e.prototype.addStart=function(t){this[t.state].addStart(t),this.position=1},e.prototype.addCheckSum=function(){this.checksum=this.checkSum%103,this.addPattern(this.checksum)},e.prototype.addStop=function(){this.addPattern(this.STOP)},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(this.totalUnits+this.quietZoneLength)},e.prototype.addPattern=function(t){for(var e,o=this.characterMap[t].toString(),n=0;n<o.length;n++)e=parseInt(o.charAt(n),10),this.pattern.push(e),this.totalUnits+=e;this.checkSum+=t*this.position++},e.prototype.getNextState=function(t,e){for(var o=0;o<e.length;o++)if(this[e[o]].is(t.value,t.index))return e[o];this.invalidCharacterError(t.value.charAt(t.index))},e}(ru),ku=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{name:"Code 128 A",states:["A"]})},e}(Cu),Mu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{name:"Code 128 B",states:["B"]})},e}(Cu),Ou=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{name:"Code 128 C",states:["C"]})},e}(Cu),Su=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{name:"Code 128",states:["C","B","A","FNC4"]})},e}(Cu),Hu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),xu(this,{name:"Code GS1-128",states:["FNC1","C","B"]})},e}(Cu);function Pu(t,e,o){return t.substring(e,e+o)}var Iu=Object.assign,Au=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Iu(this,{characterMap:["12121212","12121221","12122112","12122121","12211212","12211221","12212112","12212121","21121212","21121221"],START:"21",STOP:"121",checkSumType:"",checkSums:ju})},e.prototype.initValue=function(t,e){this.pattern=[],this.value=t,this.checkSumLength=0,this.width=e},e.prototype.setBaseUnit=function(){this.baseUnit=this.width/(12*(this.value.length+this.checkSumLength)+this.quietZoneLength+7)},e.prototype.addData=function(){var t=this.value;this.addPattern(this.START);for(var e=0;e<t.length;e++)this.addCharacter(t.charAt(e));this.options.addCheckSum&&this.addCheckSum(),this.addPattern(this.STOP),this.setBaseUnit()},e.prototype.addCharacter=function(t){var e=this.characterMap[t];e||this.invalidCharacterError(t),this.addPattern(e)},e.prototype.addPattern=function(t){for(var e=0;e<t.length;e++)this.pattern.push(parseInt(t.charAt(e),10))},e.prototype.addCheckSum=function(){var t=this,e=this.checkSums[this.checkSumType].call(this.checkSums,this.value);this.checksum=e.join("");for(var o=0;o<e.length;o++)t.checkSumLength++,t.addPattern(t.characterMap[e[o]])},e}(ru),Vu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Iu(this,{name:"MSI Modulo10",checkSumType:"Modulo10"})},e}(Au),Eu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Iu(this,{name:"MSI Modulo11",checkSumType:"Modulo11"})},e}(Au),Tu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Iu(this,{name:"MSI Modulo10 Modulo10",checkSumType:"Modulo10Modulo10"})},e}(Au),Bu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Iu(this,{name:"MSI Modulo11 Modulo10",checkSumType:"Modulo11Modulo10"})},e}(Au),ju={Modulo10:function(t){var e,o,n,r=[0,""],i=t.length%2;for(e=0;e<t.length;e++)r[(e+i)%2]+=parseInt(t.charAt(e),10);for(n=r[0],o=(2*r[1]).toString(),e=0;e<o.length;e++)n+=parseInt(o.charAt(e),10);return[(10-n%10)%10]},Modulo11:function(t){for(var e,o=0,n=t.length,r=0;r<n;r++)o+=(((n-r)%6||6)+1)*t.charAt(r);return 10!=(e=(11-o%11)%11)?[e]:[1,0]},Modulo11Modulo10:function(t){var e,o=this.Modulo11(t);return e=t+o[0],o.concat(this.Modulo10(e))},Modulo10Modulo10:function(t){var e,o=this.Modulo10(t);return e=t+o[0],o.concat(this.Modulo10(e))}},Lu=Object.assign,Ru=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Lu(this,{name:"EAN 13",keyTable:["000000","001011","001101","001110","010011","011001","011100","010101","010110","011010"],characterMap:{digits:[[3,2,1,1],[2,2,2,1],[2,1,2,2],[1,4,1,1],[1,1,3,2],[1,2,3,1],[1,1,1,4],[1,3,1,2],[1,2,1,3],[3,1,1,2]],start:[1,1,1],middle:[1,1,1,1,1]}})},e.prototype.initValue=function(t,e,o){var n=String(t);if(12!==n.length||/\D/.test(n))throw new Error('The value of the "EAN13" encoding should be 12 symbols');this.pattern=[],this.options.height=o,this.baseUnit=e/(95+this.quietZoneLength),this.value=n,this.checksum=this.calculateChecksum(),this.leftKey=n[0],this.leftPart=n.substr(1,6),this.rightPart=n.substr(7)+this.checksum},e.prototype.addData=function(){this.addPieces(this.characterMap.start),this.addSide(this.leftPart,this.leftKey),this.addPieces(this.characterMap.middle),this.addSide(this.rightPart),this.addPieces(this.characterMap.start)},e.prototype.addSide=function(t,e){for(var o=this,n=0;n<t.length;n++)e&&parseInt(o.keyTable[e].charAt(n),10)?o.addPieces(Array.prototype.slice.call(o.characterMap.digits[t.charAt(n)]).reverse(),!0):o.addPieces(o.characterMap.digits[t.charAt(n)],!0)},e.prototype.addPieces=function(t,e){for(var o=this,n=0;n<t.length;n++)e?o.pattern.push({y1:0,y2:.95*o.options.height,width:t[n]}):o.pattern.push(t[n])},e.prototype.calculateChecksum=function(){for(var t=0,e=0,o=this.value.split("").reverse().join(""),n=0;n<o.length;n++)n%2?e+=parseInt(o.charAt(n),10):t+=parseInt(o.charAt(n),10);return(10-(3*t+e)%10)%10},e}(ru),Du=Object.assign,Nu=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Du(this,{name:"EAN 8"})},e.prototype.initValue=function(t,e,o){if(7!==t.length||/\D/.test(t))throw new Error("Invalid value provided");this.value=t,this.options.height=o,this.checksum=this.calculateChecksum(this.value),this.leftPart=this.value.substr(0,4),this.rightPart=this.value.substr(4)+this.checksum,this.pattern=[],this.baseUnit=e/(67+this.quietZoneLength)},e}(Ru),Fu={code11:au,code39:lu,code39extended:pu,code93:vu,code93extended:du,code128:Su,code128a:ku,code128b:Mu,code128c:Ou};function Uu(t,e){var o=t.style.display;"canvas"===e&&(t.style.display="block");var n={width:t.clientWidth,height:t.clientHeight};return t.style.display=o,n}Fu["gs1-128"]=Hu,Fu.msimod10=Vu,Fu.msimod11=Eu,Fu.msimod1010=Tu,Fu.msimod1110=Bu,Fu.postnet=yu,Fu.ean8=Nu,Fu.ean13=Ru;var Wu=function(t){function e(e,o,n){void 0===n&&(n=se),t.call(this),this.options=X({},this.options,o),this.element=e,this.onError=n,this._initElement(),this._initSurface(),this._setOptions(o),o&&zt(o.value)&&this.redraw()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._destroySurface()},e.prototype._initElement=function(){E(this.element,"k-barcode")},e.prototype._initSurface=function(){var t=this.options,e=this.surface;e&&e.options.type===t.renderAs||(this._destroySurface(),this._initSurfaceElement(),this.surface=this._createSurface())},e.prototype._createSurface=function(){return j.drawing.Surface.create(this.surfaceElement,{type:this.options.renderAs})},e.prototype._destroySurface=function(){this.surface&&(this.surface.destroy(),this.surface=null,this._destroySurfaceElement())},e.prototype._initSurfaceElement=function(){this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.surfaceElement.style.position="relative",this.element.appendChild(this.surfaceElement))},e.prototype._destroySurfaceElement=function(){this.surfaceElement&&this.surfaceElement.parentNode&&(this.surfaceElement.parentNode.removeChild(this.surfaceElement),this.surfaceElement=null)},e.prototype.setOptions=function(t){this._setOptions(t),this._initSurface(),this.redraw()},e.prototype.redraw=function(){var t=this._getSize();this.surface.clear(),this.surface.setSize({width:t.width,height:t.height}),this.createVisual(),this.surface.draw(this.visual)},e.prototype.getSize=function(){return{width:this.element.offsetWidth,height:this.element.offsetHeight}},e.prototype._resize=function(){this.redraw()},e.prototype.createVisual=function(){this.visual=this._render()},e.prototype._render=function(){var t,e,o=this.options,n=o.value,r=o.text,i=$(r.margin),a=this._getSize(),s=o.border||{},c=this.encoding,l=new ve(0,0,a.width,a.height).unpad(s.width).unpad(o.padding),h=l.height(),p=new j.drawing.Group;this.contentBox=l,p.append(this._getBackground(a)),r.visible&&(h-=j.drawing.util.measureText(n,{font:r.font}).height+i.top+i.bottom);try{t=c.encode(n,l.width(),h)}catch(t){return this.onError(t),p}return r.visible&&(e=n,o.checksum&&zt(c.checksum)&&(e+=" "+c.checksum),p.append(this._getText(e))),this.barHeight=h,this._bandsGroup=this._getBands(t.pattern,t.baseUnit),p.append(this._bandsGroup),p},e.prototype.exportVisual=function(){return this._render()},e.prototype._getSize=function(){var t=Uu(this.element,this.options.renderAs),e=new j.geometry.Size(300,100);return t.width>0&&(e.width=t.width),t.height>0&&(e.height=t.height),this.options.width&&(e.width=this.options.width),this.options.height&&(e.height=this.options.height),e},e.prototype.value=function(t){if(!zt(t))return this.options.value;this.options.value=String(t),this.redraw()},e.prototype._getBands=function(t,e){for(var o,n,r=this.contentBox,i=r.x1,a=new j.drawing.Group,s=0;s<t.length;s++){if(o=(n=Z(t[s])?t[s]:{width:t[s],y1:0,y2:this.barHeight}).width*e,s%2){var c=j.geometry.Rect.fromPoints(new j.geometry.Point(i,n.y1+r.y1),new j.geometry.Point(i+o,n.y2+r.y1)),l=j.drawing.Path.fromRect(c,{fill:{color:this.options.color},stroke:null});a.append(l)}i+=o}return a},e.prototype._getBackground=function(t){var e=this.options,o=e.border||{},n=new ve(0,0,t.width,t.height).unpad(o.width/2);return j.drawing.Path.fromRect(n.toRect(),{fill:{color:e.background},stroke:{color:o.width?o.color:"",width:o.width,dashType:o.dashType}})},e.prototype._getText=function(t){var e=this.options.text,o=this._textbox=new De(t,{font:e.font,color:e.color,align:"center",vAlign:"bottom",margin:e.margin});return o.reflow(this.contentBox),o.renderVisual(),o.visual},e.prototype._setOptions=function(t){if(this.type=(t.type||this.options.type).toLowerCase(),"upca"===this.type&&(this.type="ean13",t.value="0"+t.value),"upce"===this.type&&(this.type="ean8",t.value="0"+t.value),!Fu[this.type])throw new Error("Encoding '"+this.type+"' is not supported.");this.encoding=new Fu[this.type],this.options=X({},this.options,t)},e}(j.Class);Rt(Wu,{name:"Barcode",renderAs:"svg",value:"",type:"code39",checksum:!1,width:0,height:0,color:"black",background:"white",text:{visible:!0,font:"16px Consolas, Monaco, Sans Mono, monospace, sans-serif",color:"black",margin:{top:0,bottom:0,left:0,right:0}},border:{width:0,dashType:"solid",color:"black"},padding:{top:0,bottom:0,left:0,right:0}});const Gu=Wu;var Ku={width:500,height:100};const Xu=function(t,e){if(void 0===e&&(e=Ku),!t)throw new Error("Please specify barcode type to validate.");var o=t.toLowerCase(),n="";if("upca"===o?(o="ean13",n="0"):"upce"===o&&(o="ean8",n="0"),!Fu[o])throw new Error("Encoding '"+t+"' is not supported.");return function(t,e,o){return function(n){try{t.encode(o+n,e.width,e.height)}catch(t){return{valid:!1,error:t}}return{valid:!0}}}(new Fu[o],e,n)};var Zu=Object.assign;function Yu(t,e){for(var o=[],n=0;n<t.length;)o.push(t.substring(n,n+e)),n+=e;return o}function qu(t,e){var o=Number(t).toString(2);return o.length<e&&(o=new Array(e-o.length+1).join(0)+o),o}function Qu(t){return parseInt(t,2)}var Ju=function(t){function e(e){t.call(this),this.matrix=e,this.row=e.length-1,this.column=e.length-1,this.startColumn=this.column,this.dir=-1,this.c=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.move=function(){this.row+=this.dir*this.c,this.c^=1,this.column=this.startColumn-this.c},e.prototype.getNextCell=function(){for(var t=this;void 0!==this.matrix[this.row][this.column];)t.move(),(t.row<0||t.row>=t.matrix.length)&&(t.dir=-t.dir,t.startColumn-=8!==t.startColumn?2:3,t.column=t.startColumn,t.row=t.dir<0?t.matrix.length-1:0);return{row:this.row,column:this.column}},e.prototype.getNextRemainderCell=function(){if(this.move(),void 0===this.matrix[this.row][this.column])return{row:this.row,column:this.column}},e}(j.Class),$u=function(t){function e(e,o){t.call(this),this.dataString=e,this.version=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(j.Class),tv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getEncodingResult=function(t,e){var o=function(t){var e,o=[],n=0,r=t;for(o.push(Rv(r,Mv,Ov,Sv,e)),e=o[0].mode,r=r.substr(o[0].modeString.length);r.length>0;){var i=Rv(r,Hv,Pv,Iv,e);i.mode!==e?(e=i.mode,o.push(i),n++):o[n].modeString+=i.modeString,r=r.substr(i.modeString.length)}return o}(t),n=function(t){for(var e=0,o=0;o<t.length;o++)e+=iv[t[o].mode].getStringBitsLength(t[o].modeString.length);return Math.ceil(e/8)}(o),r=Dv(n,e),i=function(t,e){for(var o="",n=0;n<t.length;n++)o+=iv[t[n].mode].encode(t[n].modeString,e);return o}(o,r);return new $u(i,r)},e}(j.Class),ev=function(t){function e(){t.call(this),this.initProperties()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){Zu(this,{modeIndicator:"",bitsInCharacterCount:[]})},e.prototype.getVersionIndex=function(t){return t<10?0:t>26?2:1},e.prototype.getBitsCharacterCount=function(t){return this.bitsInCharacterCount[this.getVersionIndex(t||40)]},e.prototype.getModeCountString=function(t,e){return this.modeIndicator+qu(t,this.getBitsCharacterCount(e))},e.prototype.encode=function(){},e.prototype.getStringBitsLength=function(){},e.prototype.getValue=function(){},e}(j.Class),ov=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Zu(this,{bitsInCharacterCount:[10,12,14],modeIndicator:"0001"})},e.prototype.getValue=function(t){return parseInt(t,10)},e.prototype.encode=function(t,e){var o,n=Yu(t,3),r=this.getModeCountString(t.length,e);for(o=0;o<n.length-1;o++)r+=qu(n[o],10);return r+qu(n[o],1+3*n[o].length)},e.prototype.getStringBitsLength=function(t,e){var o=t%3;return 4+this.getBitsCharacterCount(e)+10*Math.floor(t/3)+3*o+(0===o?0:1)},e}(ev),nv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Zu(this,{characters:{0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,G:16,H:17,I:18,J:19,K:20,L:21,M:22,N:23,O:24,P:25,Q:26,R:27,S:28,T:29,U:30,V:31,W:32,X:33,Y:34,Z:35," ":36,$:37,"%":38,"*":39,"+":40,"-":41,".":42,"/":43,":":44},bitsInCharacterCount:[9,11,13],modeIndicator:"0010"})},e.prototype.getValue=function(t){return this.characters[t]},e.prototype.encode=function(t,e){var o,n=Yu(t,2),r=this.getModeCountString(t.length,e);for(o=0;o<n.length-1;o++)r+=qu(45*this.getValue(n[o].charAt(0))+this.getValue(n[o].charAt(1)),11);return r+qu(2===n[o].length?45*this.getValue(n[o].charAt(0))+this.getValue(n[o].charAt(1)):this.getValue(n[o].charAt(0)),1+5*n[o].length)},e.prototype.getStringBitsLength=function(t,e){return 4+this.getBitsCharacterCount(e)+11*Math.floor(t/2)+t%2*6},e}(ev),rv=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),Zu(this,{bitsInCharacterCount:[8,16,16],modeIndicator:"0100"})},e.prototype.getValue=function(t){var e=t.charCodeAt(0);if(e<=127||160<=e&&e<=255)return e;throw new Error('Unsupported character in QR Code: "'+t+'".')},e.prototype.encode=function(t,e){for(var o=this.getModeCountString(t.length,e),n=0;n<t.length;n++)o+=qu(this.getValue(t.charAt(n)),8);return o},e.prototype.getStringBitsLength=function(t,e){return 4+this.getBitsCharacterCount(e)+8*t},e}(ev),iv={};iv.numeric=new ov,iv.alphanumeric=new nv,iv.byte=new rv;var av=function(t){function e(){t.call(this),this.initProperties(),this.mode=iv[this.encodingMode]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){Zu(this,{encodingMode:"byte",utfBOM:"111011111011101110111111",initialModeCountStringLength:20,ranges:[128,2048,65536,2097152,67108864]})},e.prototype.getEncodingResult=function(t,e){var o=this.encode(t),n=Dv(this.getDataCodewordsCount(o),e),r=this.mode.getModeCountString(o.length/8,n)+o;return new $u(r,n)},e.prototype.getDataCodewordsCount=function(t){var e=t.length;return Math.ceil((this.initialModeCountStringLength+e)/8)},e.prototype.encode=function(t){for(var e=this.utfBOM,o=0;o<t.length;o++)e+=this.encodeCharacter(t.charCodeAt(o));return e},e.prototype.encodeCharacter=function(t){var e=this.getBytesCount(t),o=e-1,n="";if(1===e)n=qu(t,8);else{for(var r=8-e,i=0;i<o;i++)n=qu(t>>6*i&63|128,8)+n;n=(t>>6*o|255>>r<<r).toString(2)+n}return n},e.prototype.getBytesCount=function(t){for(var e=this.ranges,o=0;o<e.length;o++)if(t<e[o])return o+1},e}(j.Class),sv=[{L:{groups:[[1,19]],totalDataCodewords:19,errorCodewordsPerBlock:7},M:{groups:[[1,16]],totalDataCodewords:16,errorCodewordsPerBlock:10},Q:{groups:[[1,13]],totalDataCodewords:13,errorCodewordsPerBlock:13},H:{groups:[[1,9]],totalDataCodewords:9,errorCodewordsPerBlock:17}},{L:{groups:[[1,34]],totalDataCodewords:34,errorCodewordsPerBlock:10},M:{groups:[[1,28]],totalDataCodewords:28,errorCodewordsPerBlock:16},Q:{groups:[[1,22]],totalDataCodewords:22,errorCodewordsPerBlock:22},H:{groups:[[1,16]],totalDataCodewords:16,errorCodewordsPerBlock:28}},{L:{groups:[[1,55]],totalDataCodewords:55,errorCodewordsPerBlock:15},M:{groups:[[1,44]],totalDataCodewords:44,errorCodewordsPerBlock:26},Q:{groups:[[2,17]],totalDataCodewords:34,errorCodewordsPerBlock:18},H:{groups:[[2,13]],totalDataCodewords:26,errorCodewordsPerBlock:22}},{L:{groups:[[1,80]],totalDataCodewords:80,errorCodewordsPerBlock:20},M:{groups:[[2,32]],totalDataCodewords:64,errorCodewordsPerBlock:18},Q:{groups:[[2,24]],totalDataCodewords:48,errorCodewordsPerBlock:26},H:{groups:[[4,9]],totalDataCodewords:36,errorCodewordsPerBlock:16}},{L:{groups:[[1,108]],totalDataCodewords:108,errorCodewordsPerBlock:26},M:{groups:[[2,43]],totalDataCodewords:86,errorCodewordsPerBlock:24},Q:{groups:[[2,15],[2,16]],totalDataCodewords:62,errorCodewordsPerBlock:18},H:{groups:[[2,11],[2,12]],totalDataCodewords:46,errorCodewordsPerBlock:22}},{L:{groups:[[2,68]],totalDataCodewords:136,errorCodewordsPerBlock:18},M:{groups:[[4,27]],totalDataCodewords:108,errorCodewordsPerBlock:16},Q:{groups:[[4,19]],totalDataCodewords:76,errorCodewordsPerBlock:24},H:{groups:[[4,15]],totalDataCodewords:60,errorCodewordsPerBlock:28}},{L:{groups:[[2,78]],totalDataCodewords:156,errorCodewordsPerBlock:20},M:{groups:[[4,31]],totalDataCodewords:124,errorCodewordsPerBlock:18},Q:{groups:[[2,14],[4,15]],totalDataCodewords:88,errorCodewordsPerBlock:18},H:{groups:[[4,13],[1,14]],totalDataCodewords:66,errorCodewordsPerBlock:26}},{L:{groups:[[2,97]],totalDataCodewords:194,errorCodewordsPerBlock:24},M:{groups:[[2,38],[2,39]],totalDataCodewords:154,errorCodewordsPerBlock:22},Q:{groups:[[4,18],[2,19]],totalDataCodewords:110,errorCodewordsPerBlock:22},H:{groups:[[4,14],[2,15]],totalDataCodewords:86,errorCodewordsPerBlock:26}},{L:{groups:[[2,116]],totalDataCodewords:232,errorCodewordsPerBlock:30},M:{groups:[[3,36],[2,37]],totalDataCodewords:182,errorCodewordsPerBlock:22},Q:{groups:[[4,16],[4,17]],totalDataCodewords:132,errorCodewordsPerBlock:20},H:{groups:[[4,12],[4,13]],totalDataCodewords:100,errorCodewordsPerBlock:24}},{L:{groups:[[2,68],[2,69]],totalDataCodewords:274,errorCodewordsPerBlock:18},M:{groups:[[4,43],[1,44]],totalDataCodewords:216,errorCodewordsPerBlock:26},Q:{groups:[[6,19],[2,20]],totalDataCodewords:154,errorCodewordsPerBlock:24},H:{groups:[[6,15],[2,16]],totalDataCodewords:122,errorCodewordsPerBlock:28}},{L:{groups:[[4,81]],totalDataCodewords:324,errorCodewordsPerBlock:20},M:{groups:[[1,50],[4,51]],totalDataCodewords:254,errorCodewordsPerBlock:30},Q:{groups:[[4,22],[4,23]],totalDataCodewords:180,errorCodewordsPerBlock:28},H:{groups:[[3,12],[8,13]],totalDataCodewords:140,errorCodewordsPerBlock:24}},{L:{groups:[[2,92],[2,93]],totalDataCodewords:370,errorCodewordsPerBlock:24},M:{groups:[[6,36],[2,37]],totalDataCodewords:290,errorCodewordsPerBlock:22},Q:{groups:[[4,20],[6,21]],totalDataCodewords:206,errorCodewordsPerBlock:26},H:{groups:[[7,14],[4,15]],totalDataCodewords:158,errorCodewordsPerBlock:28}},{L:{groups:[[4,107]],totalDataCodewords:428,errorCodewordsPerBlock:26},M:{groups:[[8,37],[1,38]],totalDataCodewords:334,errorCodewordsPerBlock:22},Q:{groups:[[8,20],[4,21]],totalDataCodewords:244,errorCodewordsPerBlock:24},H:{groups:[[12,11],[4,12]],totalDataCodewords:180,errorCodewordsPerBlock:22}},{L:{groups:[[3,115],[1,116]],totalDataCodewords:461,errorCodewordsPerBlock:30},M:{groups:[[4,40],[5,41]],totalDataCodewords:365,errorCodewordsPerBlock:24},Q:{groups:[[11,16],[5,17]],totalDataCodewords:261,errorCodewordsPerBlock:20},H:{groups:[[11,12],[5,13]],totalDataCodewords:197,errorCodewordsPerBlock:24}},{L:{groups:[[5,87],[1,88]],totalDataCodewords:523,errorCodewordsPerBlock:22},M:{groups:[[5,41],[5,42]],totalDataCodewords:415,errorCodewordsPerBlock:24},Q:{groups:[[5,24],[7,25]],totalDataCodewords:295,errorCodewordsPerBlock:30},H:{groups:[[11,12],[7,13]],totalDataCodewords:223,errorCodewordsPerBlock:24}},{L:{groups:[[5,98],[1,99]],totalDataCodewords:589,errorCodewordsPerBlock:24},M:{groups:[[7,45],[3,46]],totalDataCodewords:453,errorCodewordsPerBlock:28},Q:{groups:[[15,19],[2,20]],totalDataCodewords:325,errorCodewordsPerBlock:24},H:{groups:[[3,15],[13,16]],totalDataCodewords:253,errorCodewordsPerBlock:30}},{L:{groups:[[1,107],[5,108]],totalDataCodewords:647,errorCodewordsPerBlock:28},M:{groups:[[10,46],[1,47]],totalDataCodewords:507,errorCodewordsPerBlock:28},Q:{groups:[[1,22],[15,23]],totalDataCodewords:367,errorCodewordsPerBlock:28},H:{groups:[[2,14],[17,15]],totalDataCodewords:283,errorCodewordsPerBlock:28}},{L:{groups:[[5,120],[1,121]],totalDataCodewords:721,errorCodewordsPerBlock:30},M:{groups:[[9,43],[4,44]],totalDataCodewords:563,errorCodewordsPerBlock:26},Q:{groups:[[17,22],[1,23]],totalDataCodewords:397,errorCodewordsPerBlock:28},H:{groups:[[2,14],[19,15]],totalDataCodewords:313,errorCodewordsPerBlock:28}},{L:{groups:[[3,113],[4,114]],totalDataCodewords:795,errorCodewordsPerBlock:28},M:{groups:[[3,44],[11,45]],totalDataCodewords:627,errorCodewordsPerBlock:26},Q:{groups:[[17,21],[4,22]],totalDataCodewords:445,errorCodewordsPerBlock:26},H:{groups:[[9,13],[16,14]],totalDataCodewords:341,errorCodewordsPerBlock:26}},{L:{groups:[[3,107],[5,108]],totalDataCodewords:861,errorCodewordsPerBlock:28},M:{groups:[[3,41],[13,42]],totalDataCodewords:669,errorCodewordsPerBlock:26},Q:{groups:[[15,24],[5,25]],totalDataCodewords:485,errorCodewordsPerBlock:30},H:{groups:[[15,15],[10,16]],totalDataCodewords:385,errorCodewordsPerBlock:28}},{L:{groups:[[4,116],[4,117]],totalDataCodewords:932,errorCodewordsPerBlock:28},M:{groups:[[17,42]],totalDataCodewords:714,errorCodewordsPerBlock:26},Q:{groups:[[17,22],[6,23]],totalDataCodewords:512,errorCodewordsPerBlock:28},H:{groups:[[19,16],[6,17]],totalDataCodewords:406,errorCodewordsPerBlock:30}},{L:{groups:[[2,111],[7,112]],totalDataCodewords:1006,errorCodewordsPerBlock:28},M:{groups:[[17,46]],totalDataCodewords:782,errorCodewordsPerBlock:28},Q:{groups:[[7,24],[16,25]],totalDataCodewords:568,errorCodewordsPerBlock:30},H:{groups:[[34,13]],totalDataCodewords:442,errorCodewordsPerBlock:24}},{L:{groups:[[4,121],[5,122]],totalDataCodewords:1094,errorCodewordsPerBlock:30},M:{groups:[[4,47],[14,48]],totalDataCodewords:860,errorCodewordsPerBlock:28},Q:{groups:[[11,24],[14,25]],totalDataCodewords:614,errorCodewordsPerBlock:30},H:{groups:[[16,15],[14,16]],totalDataCodewords:464,errorCodewordsPerBlock:30}},{L:{groups:[[6,117],[4,118]],totalDataCodewords:1174,errorCodewordsPerBlock:30},M:{groups:[[6,45],[14,46]],totalDataCodewords:914,errorCodewordsPerBlock:28},Q:{groups:[[11,24],[16,25]],totalDataCodewords:664,errorCodewordsPerBlock:30},H:{groups:[[30,16],[2,17]],totalDataCodewords:514,errorCodewordsPerBlock:30}},{L:{groups:[[8,106],[4,107]],totalDataCodewords:1276,errorCodewordsPerBlock:26},M:{groups:[[8,47],[13,48]],totalDataCodewords:1e3,errorCodewordsPerBlock:28},Q:{groups:[[7,24],[22,25]],totalDataCodewords:718,errorCodewordsPerBlock:30},H:{groups:[[22,15],[13,16]],totalDataCodewords:538,errorCodewordsPerBlock:30}},{L:{groups:[[10,114],[2,115]],totalDataCodewords:1370,errorCodewordsPerBlock:28},M:{groups:[[19,46],[4,47]],totalDataCodewords:1062,errorCodewordsPerBlock:28},Q:{groups:[[28,22],[6,23]],totalDataCodewords:754,errorCodewordsPerBlock:28},H:{groups:[[33,16],[4,17]],totalDataCodewords:596,errorCodewordsPerBlock:30}},{L:{groups:[[8,122],[4,123]],totalDataCodewords:1468,errorCodewordsPerBlock:30},M:{groups:[[22,45],[3,46]],totalDataCodewords:1128,errorCodewordsPerBlock:28},Q:{groups:[[8,23],[26,24]],totalDataCodewords:808,errorCodewordsPerBlock:30},H:{groups:[[12,15],[28,16]],totalDataCodewords:628,errorCodewordsPerBlock:30}},{L:{groups:[[3,117],[10,118]],totalDataCodewords:1531,errorCodewordsPerBlock:30},M:{groups:[[3,45],[23,46]],totalDataCodewords:1193,errorCodewordsPerBlock:28},Q:{groups:[[4,24],[31,25]],totalDataCodewords:871,errorCodewordsPerBlock:30},H:{groups:[[11,15],[31,16]],totalDataCodewords:661,errorCodewordsPerBlock:30}},{L:{groups:[[7,116],[7,117]],totalDataCodewords:1631,errorCodewordsPerBlock:30},M:{groups:[[21,45],[7,46]],totalDataCodewords:1267,errorCodewordsPerBlock:28},Q:{groups:[[1,23],[37,24]],totalDataCodewords:911,errorCodewordsPerBlock:30},H:{groups:[[19,15],[26,16]],totalDataCodewords:701,errorCodewordsPerBlock:30}},{L:{groups:[[5,115],[10,116]],totalDataCodewords:1735,errorCodewordsPerBlock:30},M:{groups:[[19,47],[10,48]],totalDataCodewords:1373,errorCodewordsPerBlock:28},Q:{groups:[[15,24],[25,25]],totalDataCodewords:985,errorCodewordsPerBlock:30},H:{groups:[[23,15],[25,16]],totalDataCodewords:745,errorCodewordsPerBlock:30}},{L:{groups:[[13,115],[3,116]],totalDataCodewords:1843,errorCodewordsPerBlock:30},M:{groups:[[2,46],[29,47]],totalDataCodewords:1455,errorCodewordsPerBlock:28},Q:{groups:[[42,24],[1,25]],totalDataCodewords:1033,errorCodewordsPerBlock:30},H:{groups:[[23,15],[28,16]],totalDataCodewords:793,errorCodewordsPerBlock:30}},{L:{groups:[[17,115]],totalDataCodewords:1955,errorCodewordsPerBlock:30},M:{groups:[[10,46],[23,47]],totalDataCodewords:1541,errorCodewordsPerBlock:28},Q:{groups:[[10,24],[35,25]],totalDataCodewords:1115,errorCodewordsPerBlock:30},H:{groups:[[19,15],[35,16]],totalDataCodewords:845,errorCodewordsPerBlock:30}},{L:{groups:[[17,115],[1,116]],totalDataCodewords:2071,errorCodewordsPerBlock:30},M:{groups:[[14,46],[21,47]],totalDataCodewords:1631,errorCodewordsPerBlock:28},Q:{groups:[[29,24],[19,25]],totalDataCodewords:1171,errorCodewordsPerBlock:30},H:{groups:[[11,15],[46,16]],totalDataCodewords:901,errorCodewordsPerBlock:30}},{L:{groups:[[13,115],[6,116]],totalDataCodewords:2191,errorCodewordsPerBlock:30},M:{groups:[[14,46],[23,47]],totalDataCodewords:1725,errorCodewordsPerBlock:28},Q:{groups:[[44,24],[7,25]],totalDataCodewords:1231,errorCodewordsPerBlock:30},H:{groups:[[59,16],[1,17]],totalDataCodewords:961,errorCodewordsPerBlock:30}},{L:{groups:[[12,121],[7,122]],totalDataCodewords:2306,errorCodewordsPerBlock:30},M:{groups:[[12,47],[26,48]],totalDataCodewords:1812,errorCodewordsPerBlock:28},Q:{groups:[[39,24],[14,25]],totalDataCodewords:1286,errorCodewordsPerBlock:30},H:{groups:[[22,15],[41,16]],totalDataCodewords:986,errorCodewordsPerBlock:30}},{L:{groups:[[6,121],[14,122]],totalDataCodewords:2434,errorCodewordsPerBlock:30},M:{groups:[[6,47],[34,48]],totalDataCodewords:1914,errorCodewordsPerBlock:28},Q:{groups:[[46,24],[10,25]],totalDataCodewords:1354,errorCodewordsPerBlock:30},H:{groups:[[2,15],[64,16]],totalDataCodewords:1054,errorCodewordsPerBlock:30}},{L:{groups:[[17,122],[4,123]],totalDataCodewords:2566,errorCodewordsPerBlock:30},M:{groups:[[29,46],[14,47]],totalDataCodewords:1992,errorCodewordsPerBlock:28},Q:{groups:[[49,24],[10,25]],totalDataCodewords:1426,errorCodewordsPerBlock:30},H:{groups:[[24,15],[46,16]],totalDataCodewords:1096,errorCodewordsPerBlock:30}},{L:{groups:[[4,122],[18,123]],totalDataCodewords:2702,errorCodewordsPerBlock:30},M:{groups:[[13,46],[32,47]],totalDataCodewords:2102,errorCodewordsPerBlock:28},Q:{groups:[[48,24],[14,25]],totalDataCodewords:1502,errorCodewordsPerBlock:30},H:{groups:[[42,15],[32,16]],totalDataCodewords:1142,errorCodewordsPerBlock:30}},{L:{groups:[[20,117],[4,118]],totalDataCodewords:2812,errorCodewordsPerBlock:30},M:{groups:[[40,47],[7,48]],totalDataCodewords:2216,errorCodewordsPerBlock:28},Q:{groups:[[43,24],[22,25]],totalDataCodewords:1582,errorCodewordsPerBlock:30},H:{groups:[[10,15],[67,16]],totalDataCodewords:1222,errorCodewordsPerBlock:30}},{L:{groups:[[19,118],[6,119]],totalDataCodewords:2956,errorCodewordsPerBlock:30},M:{groups:[[18,47],[31,48]],totalDataCodewords:2334,errorCodewordsPerBlock:28},Q:{groups:[[34,24],[34,25]],totalDataCodewords:1666,errorCodewordsPerBlock:30},H:{groups:[[20,15],[61,16]],totalDataCodewords:1276,errorCodewordsPerBlock:30}}],cv="0000",lv="numeric",hv="alphanumeric",pv="byte",uv={1:0},vv={0:1},dv={15:20,16:20,18:24,19:24,22:20,24:22,26:24,28:20,30:20,31:24,32:28,33:24,36:18,37:22,39:20,40:24},fv=[1,0,1,1,1],mv=[1,0,1],yv={L:"01",M:"00",Q:"11",H:"10"},gv=["11101100","00010001"],bv=93,xv=[function(t,e){return(t+e)%2==0},function(t,e){return t%2==0},function(t,e){return e%3==0},function(t,e){return(t+e)%3==0},function(t,e){return(Math.floor(t/2)+Math.floor(e/3))%2==0},function(t,e){return t*e%2+t*e%3==0},function(t,e){return(t*e%2+t*e%3)%2==0},function(t,e){return((t+e)%2+t*e%3)%2==0}],wv=/^\d+/,_v="A-Z0-9 $%*+./:-",zv=new RegExp("^[A-Z $%*+./:-]+"),Cv=new RegExp("^["+_v+"]+"),kv=new RegExp("^[^"+_v+"]+"),Mv=8,Ov=5,Sv=8,Hv=17,Pv=9,Iv=16,Av=[[1,0],[1,25,0]];function Vv(t,e,o,n){for(var r=0;r<t.length;r++)t[r][o][n]=e}function Ev(t,e,o,n){for(var r=0;r<xv.length;r++)t[r][o][n]=xv[r](o,n)?1^e:parseInt(e,10)}function Tv(t,e){for(var o=[],n=t.length-2;n>=0;n--)o[n]=t[n]^e[n];return o}function Bv(t,e){for(var o=[],n=0;n<t.length;n++)for(var r=0;r<e.length;r++)void 0===o[n+r]?o[n+r]=(t[n]+(e[r]>=0?e[r]:0))%255:o[n+r]=uv[vv[o[n+r]]^vv[(t[n]+e[r])%255]];return o}function jv(t,e){var o=[],n=t.length-1;do{o[n]=vv[(t[n]+e)%255],n--}while(void 0!==t[n]);return o}function Lv(t,e){var o,n,r=Av[e-1],i=new Array(e).concat(t),a=new Array(i.length-r.length).concat(r),s=t.length,c=[];for(n=0;n<s;n++)o=jv(a,uv[i[i.length-1]]),a.splice(0,1),i=Tv(o,i);for(n=i.length-1;n>=0;n--)c[e-1-n]=qu(i[n],8);return c}function Rv(t,e,o,n,r){var i,a,s=wv.exec(t),c=s?s[0]:"",l=zv.exec(t),h=l?l[0]:"",p=Cv.exec(t),u=p?p[0]:"";return c&&(c.length>=e||t.length===c.length||c.length>=o&&!Cv.test(t.charAt(c.length)))?(i=lv,a=c):u&&(t.length===u.length||u.length>=n||r===hv)?(i=hv,a=c||h):(i=pv,a=u?u+kv.exec(t.substring(u.length))[0]:kv.exec(t)[0]),{mode:i,modeString:a}}function Dv(t,e){var o=0,n=sv.length-1,r=Math.floor(sv.length/2);do{t<sv[r][e].totalDataCodewords?n=r:o=r,r=o+Math.floor((n-o)/2)}while(n-o>1);return t<=sv[o][e].totalDataCodewords?r+1:n+1}function Nv(t,e,o){var n=Qu(e),r=e.length-1,i=t<<r,a=qu(t,o-r),s=function(t,e){var o=e.toString(2).length,n=t.toString(2).length,r=t;do{n=(r^=e<<n-o).toString(2).length}while(n>=o);return r}(i,n);return a+qu(s,r)}function Fv(t,e){return parseInt(t.charAt(e),10)}function Uv(t,e){var o,n,r=t[0],i=0,a=e.length;for(o=0,n=8;o<=8;o++)6!==o&&Vv(t,Fv(e,a-1-i++),o,n);for(o=8,n=7;n>=0;n--)6!==n&&Vv(t,Fv(e,a-1-i++),o,n);for(i=0,n=r.length-1,o=8;n>=r.length-8;n--)Vv(t,Fv(e,a-1-i++),o,n);for(Vv(t,1,r.length-8,8),o=r.length-7,n=8;o<r.length;o++)Vv(t,Fv(e,a-1-i++),o,n)}function Wv(t,e){for(var o,n,r,i=t[0].length,a=i-11,s=i-11,c=0;c<e.length;c++)o=Math.floor(c/3),n=c%3,Vv(t,r=Fv(e,e.length-c-1),0+o,a+n),Vv(t,r,s+n,0+o)}function Gv(t,e,o,n){for(var r,i=e.length+2,a=e.length+1,s=0;s<e.length;s++)for(var c=s;c<i-s;c++)Vv(t,r=e[s],o+c,n+s),Vv(t,r,o+s,n+c),Vv(t,r,o+a-c,n+a-s),Vv(t,r,o+a-s,n+a-c)}function Kv(t,e,o,n){var r=o,i=n,a=t[0];do{Vv(t,0,r,n),Vv(t,0,o,i),r+=e[0],i+=e[1]}while(r>=0&&r<a.length)}function Xv(t,e,o,n,r){e[t][n]=(e[t][n]<<1^r)%128,e[t][n]===bv&&(o[t]+=40)}function Zv(t,e,o,n,r,i){o[t][i]===n?r[t][i]++:(o[t][i]=n,r[t][i]>=5&&(e[t]+=3+r[t][i]-5),r[t][i]=1)}function Yv(t,e){var o=Math.floor(t/e*100),n=o%5,r=Math.abs(o-n-50),i=Math.abs(o+5-n-50);return 10*Math.min(r/5,i/5)}function qv(t,e,o){var n=function(t){return t&&t.toLowerCase().indexOf("utf_8")>=0?new av:new tv}(o),r=n.getEncodingResult(t,e),i=r.version,a=sv[i-1][e],s=function(t,e){for(var o,n,r,i,a,s=0,c=[],l=[],h=e.groups,p=0;p<h.length;p++){r=h[p][0];for(var u=0;u<r;u++){n=h[p][1],o=[],i=[];for(var v=1;v<=n;v++)a=t.substring(s,s+8),o.push(a),i[n-v]=Qu(a),s+=8;c.push(o),l.push(Lv(i,e.errorCodewordsPerBlock))}}return[c,l]}(function(t,e){for(var o=8*e,n=0,r=0,i=t;i.length<o&&n<4;)i+=cv.charAt(n++);for(i.length%8!=0&&(i+=new Array(9-i.length%8).join("0"));i.length<o;)i+=gv[r],r^=1;return i}(r.dataString,a.totalDataCodewords),a),c=function(t){for(var e=[],o=17+4*t,n=0;n<xv.length;n++){e[n]=new Array(o);for(var r=0;r<o;r++)e[n][r]=new Array(o)}return e}(i);!function(t){var e=t[0].length;Gv(t,fv,0,0),Kv(t,[-1,-1],7,7),Gv(t,fv,e-7,0),Kv(t,[1,-1],e-8,7),Gv(t,fv,0,e-7),Kv(t,[-1,1],7,e-8)}(c),function(t,e){if(!(e<2)){var o,n,r=t[0],i=r.length,a=Math.floor(e/7),s=[6],c=0;for((o=dv[e])?n=(i-13-o)/a:o=n=(i-13)/(a+1),s.push(s[c++]+o);s[c]+n<i;)s.push(s[c++]+n);for(var l=0;l<s.length;l++)for(var h=0;h<s.length;h++)void 0===r[s[l]][s[h]]&&Gv(t,mv,s[l]-2,s[h]-2)}}(c,i),function(t){for(var e=1,o=t[0].length,n=8;n<o-8;n++)Vv(t,e,6,n),Vv(t,e,n,6),e^=1}(c),i>=7&&Wv(c,qu(0,18)),Uv(c,qu(0,15)),function(t,e){for(var o,n,r,i=new Ju(t[0]),a=0;a<e.length;a++)for(o=e[a],n=0;o.length>0;){for(var s=0;s<o.length;s++)for(var c=0;c<8;c++)r=i.getNextCell(),Ev(t,o[s][n].charAt(c),r.row,r.column);for(n++;o[0]&&n===o[0].length;)o.splice(0,1)}for(;r=i.getNextRemainderCell();)Ev(t,0,r.row,r.column)}(c,s);var l=function(t){var e,o,n=[],r=[],i=[],a=[],s=[],c=t[0].length;for(o=0;o<t.length;o++)n[o]=0,i[o]=0,s[o]=[0,0],a[o]=[0,0],r[o]=[];for(var l=0;l<c;l++)for(var h=0;h<c;h++)for(var p=0;p<t.length;p++)e=t[p],i[p]+=parseInt(e[l][h],10),r[p][0]===e[l][h]&&l+1<c&&h-1>=0&&e[l+1][h]===r[p][0]&&e[l+1][h-1]===r[p][0]&&(n[p]+=3),Xv(p,a,n,0,e[l][h]),Xv(p,a,n,1,e[h][l]),Zv(p,n,r,e[l][h],s,0),Zv(p,n,r,e[h][l],s,1);var u,v=c*c,d=Number.MAX_VALUE;for(o=0;o<n.length;o++)n[o]+=Yv(i[o],v),n[o]<d&&(d=n[o],u=o);return u}(c),h=c[l];return i>=7&&Wv([h],function(t){return Nv(t,"1111100100101",18)}(i)),Uv([h],function(t){var e,o="";if(0===Qu(t))return"101010000010010";e=Nv(Qu(t),"10100110111",15);for(var n=0;n<e.length;n++)o+=e.charAt(n)^"101010000010010".charAt(n);return o}(yv[e]+qu(l,3))),h}!function(){var t,e;for(e=1;e<255;e++)(t=2*vv[e-1])>255&&(t^=285),vv[e]=t,uv[t]=e;t=2*vv[e-1]^285,vv[e]=t,vv[-1]=0}(),function(){for(var t=2;t<=68;t++){var e=Av[t-1],o=[t,0];Av[t]=Bv(e,o)}}();var Qv=Math.round,Jv=[[0,1],[1,1],[1,2],[2,2],[2,1],[3,1],[3,0],[2,0],[2,-1],[1,-1],[1,0]],$v=[[0,1],[1,1],[1,0]],td=function(t){function e(e,o,n){void 0===n&&(n=se),t.call(this),this.options=X({},this.options,o),this.element=e,this.wrapper=this.element,this.onError=n,this._initElement(),this._initSurface(),this.setOptions(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._destroySurface()},e.prototype._initElement=function(){E(this.element,"k-qrcode")},e.prototype._initSurface=function(){var t=this.options,e=this.surface;e&&e.options.type===t.renderAs||(this._destroySurface(),this._initSurfaceElement(),this.surface=this._createSurface())},e.prototype._createSurface=function(){return j.drawing.Surface.create(this.surfaceElement,{type:this.options.renderAs})},e.prototype._destroySurface=function(){this.surface&&(this.surface.destroy(),this.surface=null,this._destroySurfaceElement())},e.prototype._initSurfaceElement=function(){this.surfaceElement||(this.surfaceElement=document.createElement("div"),this.surfaceElement.style.position="relative",this.element.appendChild(this.surfaceElement))},e.prototype._destroySurfaceElement=function(){this.surfaceElement&&this.surfaceElement.parentNode&&(this.surfaceElement.parentNode.removeChild(this.surfaceElement),this.surfaceElement=null)},e.prototype.redraw=function(){var t=this._getSize();this.surface.clear(),this.surface.setSize({width:t,height:t}),this.createVisual(),this.surface.draw(this.visual)},e.prototype.getSize=function(){var t=this.element,e=t.clientWidth,o=t.clientHeight,n={width:0,height:0};return e>0&&(n.width=e),o&&(n.height=o),n},e.prototype._resize=function(){this.redraw()},e.prototype.createVisual=function(){this.visual=this._render()},e.prototype.exportVisual=function(){return this._render()},e.prototype._render=function(){var t,e,o,n,r,i=this._value,a=this.options.border||{},s=this.options.padding||0,c=a.width||0;a.width=c;var l=new j.drawing.Group;try{i&&(o=qv(i,this.options.errorCorrection,this.options.encoding),r=(n=this._getSize())-2*(c+s),t=this._calculateBaseUnit(r,o.length),e=c+s+(r-o.length*t)/2,l.append(this._renderBackground(n,a)),l.append(this._renderMatrix(o,t,e)),this._hasCustomLogo()?l.append(this._renderLogo(n,t)):this._isSwiss()&&l.append(this._renderSwissCode(n,t)))}catch(t){this.onError(t)}return l},e.prototype._renderLogo=function(t,e){var o,n=Qv(t/2),r=this._getLogoSize(7*e),i=this.options.overlay.imageUrl,a={x:n-r.width/2,y:n-r.height/2};return o=new j.geometry.Rect(new j.geometry.Point(a.x,a.y),new j.geometry.Size(r.width,r.height)),new j.drawing.Image(i,o)},e.prototype._renderSwissCode=function(t,e){var o=this._getLogoSize(7*e),n=(o=Math.max(o.width,o.height))/4,r=n/2,i=t/2,a={},s=new j.drawing.Group;return a.x=a.y=Math.ceil(i-e-o/2),s.append(this._renderShape(a,Math.ceil(o+2*e),$v,"#fff")),a.x=a.y=i-o/2,s.append(this._renderShape(a,o,$v,this.options.color)),a.x=i+r-o/2,a.y=i+r+n-o/2,s.append(this._renderShape(a,n,Jv,"#fff")),s},e.prototype._renderShape=function(t,e,o,n){var r=new j.drawing.MultiPath({fill:{color:n},stroke:null});r.moveTo(t.x,t.y);for(var i=0;i<o.length;i++)r.lineTo(t.x+e*o[i][0],t.y+e*o[i][1]);return r.close(),r},e.prototype._getSize=function(){var t;if(this.options.size)t=parseInt(this.options.size,10);else{var e=Uu(this.element,this.options.renderAs),o=Math.min(e.width,e.height);t=o>0?o:200}return t},e.prototype._calculateBaseUnit=function(t,e){var o=Math.floor(t/e);if(o<1){var n=Math.ceil(1*e);this.onError(new Error("Insufficient size for QR Code: the current size is "+t+"px and the minimum size is "+n+"px."))}else o*e>=t&&o-1>=1&&o--;return o},e.prototype._renderMatrix=function(t,e,o){for(var n=new j.drawing.MultiPath({fill:{color:this.options.color},stroke:null}),r=0;r<t.length;r++)for(var i=o+r*e,a=0;a<t.length;){for(;0===t[r][a]&&a<t.length;)a++;if(a<t.length){for(var s=a;1===t[r][a];)a++;var c=Qv(o+s*e),l=Qv(i),h=Qv(o+a*e),p=Qv(i+e);n.moveTo(c,l).lineTo(c,p).lineTo(h,p).lineTo(h,l).close()}}return n},e.prototype._renderBackground=function(t,e){var o=new ve(0,0,t,t).unpad(e.width/2);return j.drawing.Path.fromRect(o.toRect(),{fill:{color:this.options.background},stroke:{color:e.color,width:e.width}})},e.prototype.setOptions=function(t){var e=t||{};this.options=Zu(this.options,e),void 0!==t.value&&(this._value=String(this.options.value)),this._initSurface(),this.redraw()},e.prototype.value=function(t){if(void 0===t)return this._value;this._value=String(t),this.redraw()},e.prototype._hasCustomLogo=function(){return Boolean(this.options.overlay.imageUrl)},e.prototype._isSwiss=function(){return"swiss"===this.options.overlay.type},e.prototype._getLogoSize=function(t){var e=this.options.overlay.width,o=this.options.overlay.height;return e||o?e&&!o?o=e:!e&&o&&(e=o):e=o=t,{width:e,height:o}},e}(j.Class);Rt(td,{name:"QRCode",renderAs:"svg",encoding:"ISO_8859_1",value:"",errorCorrection:"L",background:"#fff",color:"#000",size:"",padding:0,border:{color:"",width:0},overlay:{type:"image",imageUrl:"",width:0,height:0}});const ed=td,od=function(t){return void 0===t&&(t="ISO_8859_1"),function(e){try{qv(e,"L",t)}catch(t){return{valid:!1,error:t}}return{valid:!0}}};var nd={WGS84:{a:6378137,b:6356752.314245179,f:.0033528106647474805,e:.08181919084262149}};function rd(t){return t*t}var id=Math,ad=id.abs,sd=id.atan,cd=id.atan2,ld=id.cos,hd=id.sin,pd=id.tan,ud=function(t){function e(e,o){t.call(this),this.initProperties(),1===arguments.length?(this.lat=e[0],this.lng=e[1]):(this.lat=e,this.lng=o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){X(this,{DISTANCE_ITERATIONS:100,DISTANCE_CONVERGENCE:1e-12,DISTANCE_PRECISION:2,FORMAT:"{0:N6}{1:N6}"})},e.prototype.toArray=function(){return[this.lat,this.lng]},e.prototype.equals=function(t){return t&&t.lat===this.lat&&t.lng===this.lng},e.prototype.clone=function(){return new e(this.lat,this.lng)},e.prototype.round=function(t){return this.lng=Et(this.lng,t),this.lat=Et(this.lat,t),this},e.prototype.wrap=function(){return this.lng=this.lng%180,this.lat=this.lat%90,this},e.prototype.distanceTo=function(t,e){return this.greatCircleTo(t,e).distance},e.prototype.destination=function(t,o,n){var r=Vt(o),i=n||nd.WGS84,a=Vt(this.lat),s=Vt(this.lng),c=t/i.a,l=id.asin(hd(a)*ld(c)+ld(a)*hd(c)*ld(r)),h=s+cd(hd(r)*hd(c)*ld(a),ld(c)-hd(a)*hd(l));return new e(Ct(l),Ct(h))},e.prototype.greatCircleTo=function(t,o){var n=e.create(n),r=o||nd.WGS84;if(!n||this.clone().round(8).equals(n.clone().round(8)))return{distance:0,azimuthFrom:0,azimuthTo:0};for(var i,a,s,c,l,h,p,u,v=r.a,d=r.b,f=r.f,m=Vt(n.lng-this.lng),y=sd((1-f)*pd(Vt(this.lat))),g=hd(y),b=ld(y),x=sd((1-f)*pd(Vt(n.lat))),w=hd(x),_=ld(x),z=m,C=this.DISTANCE_ITERATIONS,k=!1;!k&&C-- >0;){a=hd(z),s=ld(z),c=id.sqrt(rd(_*a)+rd(b*w-g*_*s)),u=cd(c,h=g*w+b*_*s);var M=b*_*a/c;p=0,0!=(l=1-rd(M))&&(p=h-2*g*w/l),i=z;var O=f/16*l*(4+f*(4-3*l));z=m+(1-O)*f*M*(u+O*c*(p+O*h*(2*rd(p)-1))),k=ad(z-i)<=this.DISTANCE_CONVERGENCE}var S=l*(rd(v)-rd(d))/rd(d),H=1+S/16384*(4096+S*(S*(320-175*S)-768)),P=S/1024*(256+S*(S*(74-47*S)-128)),I=P*c*(p+P/4*(h*(2*rd(p)-1)-P/6*p*(4*rd(c)-3)*(4*rd(p)-3))),A=cd(_*a,b*w-g*_*s),V=cd(b*a,-g*_+b*w*s);return{distance:Et(d*H*(u-I),this.DISTANCE_PRECISION),azimuthFrom:Ct(A),azimuthTo:Ct(V)}},e.prototype.toString=function(){return String(this.lat)+","+String(this.lng)},e.fromLngLat=function(t){return new e(t[1],t[0])},e.fromLatLng=function(t){return new e(t[0],t[1])},e.create=function(t,o){if(zt(t))return t instanceof e?t.clone():1===arguments.length&&2===t.length?e.fromLatLng(t):new e(t,o)},e}(j.Class),vd=Math,dd=vd.atan,fd=vd.exp,md=vd.pow,yd=vd.sin,gd=vd.log,bd=vd.tan,xd=j.geometry.Point,wd=vd.PI,_d=wd/2,zd=wd/4,Cd=wd/180,kd=nd.WGS84,Md=function(t){function e(e){t.call(this),this.initProperties(),this._initOptions(e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype.initProperties=function(){X(this,{MAX_LNG:180,MAX_LAT:85.0840590501,INVERSE_ITERATIONS:15,INVERSE_CONVERGENCE:1e-12})},e.prototype.forward=function(t,e){var o=this,n=o.options,r=n.datum.a,i=n.centralMeridian,a=It(t.lat,-o.MAX_LAT,o.MAX_LAT),s=e?It(t.lng,-o.MAX_LNG,o.MAX_LNG):t.lng,c=Vt(s-i)*r,l=o._projectLat(a);return new xd(c,l)},e.prototype._projectLat=function(t){var e=this.options.datum,o=e.e,n=e.a,r=Vt(t),i=bd(zd+r/2),a=o*yd(r),s=md((1-a)/(1+a),o/2);return n*gd(i*s)},e.prototype.inverse=function(t,e){var o=this,n=o.options,r=n.datum.a,i=n.centralMeridian,a=t.x/(Cd*r)+i,s=It(o._inverseY(t.y),-o.MAX_LAT,o.MAX_LAT);return e&&(a=It(a,-o.MAX_LNG,o.MAX_LNG)),new ud(s,a)},e.prototype._inverseY=function(t){var e,o=this,n=o.options.datum,r=n.a,i=n.e,a=i/2,s=fd(-t/r),c=_d-2*dd(s);for(e=0;e<=o.INVERSE_ITERATIONS;e++){var l=i*yd(c),h=md((1-l)/(1+l),a),p=_d-2*dd(s*h)-c;if(c+=p,vd.abs(p)<=o.INVERSE_CONVERGENCE)break}return Ct(c)},e}(j.Class);Rt(Md,{centralMeridian:0,datum:kd});var Od=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initProperties=function(){t.prototype.initProperties.call(this),X(this,{MAX_LAT:85.0511287798})},e.prototype._projectLat=function(t){var e=this.options.datum.a,o=Vt(t),n=bd(zd+o/2);return e*gd(n)},e.prototype._inverseY=function(t){var e=this.options.datum.a,o=fd(-t/e);return Ct(_d-2*dd(o))},e}(Md),Sd=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.forward=function(t){return new xd(t.lng,t.lat)},e.prototype.inverse=function(t){return new ud(t.y,t.x)},e}(j.Class),Hd=function(t){function e(){t.call(this);var e=this._proj=new Od,o=this.c=2*wd*e.options.datum.a;this._tm=j.geometry.transform().translate(.5,.5).scale(1/o,-1/o),this._itm=j.geometry.transform().scale(o,-o).translate(-.5,-.5)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toPoint=function(t,e,o){return this._proj.forward(t,o).transform(this._tm).scale(e||1)},e.prototype.toLocation=function(t,e,o){var n=t.clone().scale(1/(e||1)).transform(this._itm);return this._proj.inverse(n,o)},e}(j.Class),Pd=(function(t){function e(){t.call(this),this._proj=new Md}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toPoint=function(t){return this._proj.forward(t)},e.prototype.toLocation=function(t){return this._proj.inverse(t)}}(j.Class),function(t){function e(){t.call(this),this._proj=new Sd}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toPoint=function(t){return this._proj.forward(t)},e.prototype.toLocation=function(t){return this._proj.inverse(t)}}(j.Class),Object.defineProperty),Id=(Object.assign,function(t){var e=document.createElement("div");return e.innerHTML=t,e.firstChild}),Ad=function(t){for(;t.firstChild;)t.removeChild(t.firstChild)},Vd=function(t,e){e.insertBefore(t,e.firstChild)},Ed=function(t){return t.replace(/([a-z][A-Z])/g,(function(t){return t.charAt(0)+"-"+t.charAt(1).toLowerCase()}))},Td=function(t){return t&&String(t).endsWith("px")?t:String(t)+"px"},Bd=function(t){var e,o=!1,n=[],r={wp:/(Windows Phone(?: OS)?)\s(\d+)\.(\d+(\.\d+)?)/,fire:/(Silk)\/(\d+)\.(\d+(\.\d+)?)/,android:/(Android|Android.*(?:Opera|Firefox).*?\/)\s*(\d+)\.?(\d+(\.\d+)?)?/,iphone:/(iPhone|iPod).*OS\s+(\d+)[\._]([\d\._]+)/,ipad:/(iPad).*OS\s+(\d+)[\._]([\d_]+)/,meego:/(MeeGo).+NokiaBrowser\/(\d+)\.([\d\._]+)/,webos:/(webOS)\/(\d+)\.(\d+(\.\d+)?)/,blackberry:/(BlackBerry|BB10).*?Version\/(\d+)\.(\d+(\.\d+)?)/,playbook:/(PlayBook).*?Tablet\s*OS\s*(\d+)\.(\d+(\.\d+)?)/,windows:/(MSIE)\s+(\d+)\.(\d+(\.\d+)?)/,tizen:/(tizen).*?Version\/(\d+)\.(\d+(\.\d+)?)/i,sailfish:/(sailfish).*rv:(\d+)\.(\d+(\.\d+)?).*firefox/i,ffos:/(Mobile).*rv:(\d+)\.(\d+(\.\d+)?).*Firefox/},i={ios:/^i(phone|pad|pod)$/i,android:/^android|fire$/i,blackberry:/^blackberry|playbook/i,windows:/windows/,wp:/wp/,flat:/sailfish|ffos|tizen/i,meego:/meego/},a={tablet:/playbook|ipad|fire/i},s={omini:/Opera\sMini/i,omobile:/Opera\sMobi/i,firefox:/Firefox|Fennec/i,mobilesafari:/version\/.*safari/i,ie:/MSIE|Windows\sPhone/i,chrome:/chrome|crios/i,webkit:/webkit/i};for(var c in r)if(r.hasOwnProperty(c)&&(n=t.match(r[c]))){if("windows"===c&&"plugins"in navigator)return!1;(o={}).device=c,o.tablet=jd(c,a,!1),o.browser=jd(t,s,"default"),o.name=jd(c,i),o[o.name]=!0,o.majorVersion=n[2],o.minorVersion=(n[3]||"0").replace("_","."),e=o.minorVersion.replace(".","").substr(0,2),o.flatVersion=o.majorVersion+e+new Array(3-(e.length<3?e.length:2)).join("0");break}return o};function jd(t,e,o){for(var n in e)if(e.hasOwnProperty(n)&&e[n].test(t))return n;return void 0!==o?o:t}var Ld=function(){var t={down:"touchstart mousedown",move:"mousemove touchmove",up:"mouseup touchend touchcancel",cancel:"mouseleave touchcancel"},e=Rd();return e.touch&&(e.mobileOS.ios||e.mobileOS.android)?t={down:"touchstart",move:"touchmove",up:"touchend touchcancel",cancel:"touchcancel"}:e.pointers?t={down:"pointerdown",move:"pointermove",up:"pointerup",cancel:"pointercancel pointerleave"}:e.msPointers&&(t={down:"MSPointerDown",move:"MSPointerMove",up:"MSPointerUp",cancel:"MSPointerCancel MSPointerLeave"}),t},Rd=function(){var t=Bd(navigator.userAgent),e=function(t){var e=!1,o=[],n={edge:/(edge)[ \/]([\w.]+)/i,webkit:/(chrome|crios)[ \/]([\w.]+)/i,safari:/(webkit)[ \/]([\w.]+)/i,opera:/(opera)(?:.*version|)[ \/]([\w.]+)/i,msie:/(msie\s|trident.*? rv:)([\w.]+)/i,mozilla:/(mozilla)(?:.*? rv:([\w.]+)|)/i};for(var r in n)if(n.hasOwnProperty(r)&&(o=t.match(n[r]))){(e={})[r]=!0,e[o[1].toLowerCase().split(" ")[0].split("/")[0]]=!0,e.version=parseInt(document.documentMode||o[2],10);break}return e}(navigator.userAgent),o=e.chrome,n=e.crios,r=e.mozilla,i=e.safari,a={};a.mobileOS=t,a.touch="ontouchstart"in window,a.pointers=!o&&!n&&!r&&!i&&window.PointerEvent,a.msPointers=!o&&window.MSPointerEvent,a.mouseAndTouchPresent=a.touch&&!(a.mobileOS.ios||a.mobileOS.android),a.eventCapture=document.documentElement.addEventListener;var s=document.createElement("table"),c=a.transitions=!1,l=a.transforms=!1,h="string";return["Moz","webkit","O","ms"].forEach((function(t){var e=typeof s.style[t+"Transition"]===h;if(e||typeof s.style[t+"Transform"]===h){var o=t.toLowerCase();return l={css:"ms"!==o?"-"+o+"-":"",prefix:t,event:"o"===o||"webkit"===o?o:""},e&&((c=l).event=c.event?c.event+"TransitionEnd":"transitionend"),!1}})),s=null,a.transforms=l,a.transitions=c,a.delayedClick=function(){if(a.touch){if(a.mobileOS.ios)return!0;if(a.mobileOS.android){if(!a.browser.chrome)return!0;if(a.browser.version<32)return!1;var t=document.querySelector("meta[name=viewport]");return!(t?t.getAttribute("content"):"").match(/user-scalable=no/i)}}return!1},a},Dd=function(t,e){return t.bind(e)},Nd=function(t,e,o,n,r){Fd(t,e,o,n,r)},Fd=function(t,e,o,n,r){(V(e)?e:(e||"").split(" ")).forEach((function(e){Ud(t,e,o,n,r)}))},Ud=function(t,e,o,n,r){var i,a=n;o&&U(o)&&!n?a=o:o&&"string"==typeof o&&U(a)&&(i=o),t.addEventListener(e,(function(e){var o=e.target?e.target.closest(i):null;if(!i||i&&e.target&&o){var n=i?o:e.currentTarget;Pd(e,"currentTarget",{value:n}),Pd(e,"delegateTarget",{value:t}),a(e)}}),Boolean(r))},Wd=function(t,e,o,n,r){Gd(t,e,o,n,r)},Gd=function(t,e,o,n){(V(e)?e:(e||"").split(" ")).forEach((function(e){Kd(t,e,o,n)}))},Kd=function(t,e,o,n){t.removeEventListener(e,o,Boolean(n))},Xd=function(t){var e=Ld(navigator.userAgent);return t.replace(/([^ ]+)/g,(function(t){return e[t]||t}))},Zd=function(t,e){var o=t.prototype;o.events?e.forEach((function(t){o.events.indexOf(t)<0&&o.events.push(t)})):o.events=e},Yd=function(){return Number(new Date)},qd=function(){},Qd=function(t){var e=[];if(t)for(var o=Ed(t).split("-"),n=0;n<o.length;n++)e.push("k-pos-"+o[n]);return e.join(" ")},Jd="string",$d="function",tf=function(){this._defaultPrevented=!0},ef=function(){return!0===this._defaultPrevented},of=function(t){function e(){t.call(this),this._events={}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.unbind()},e.prototype.bind=function(t,e,o){var n,r,i,a,s=this,c=typeof t===Jd?[t]:t||[],l=typeof e===$d;if(void 0===e){for(n in t)s.bind(n,t[n]);return s}var h=function(){var t=c[n];(a=l?e:e[t])&&(o&&(i=a,a=function(){s.unbind(t,a),i.apply(s,arguments)},a.original=i),(s._events[t]=s._events[t]||[]).push(a))};for(n=0,r=c.length;n<r;n++)h();return s},e.prototype.one=function(t,e){return this.bind(t,e,!0)},e.prototype.first=function(t,e){var o,n,r,i=this,a=typeof t===Jd?[t]:t,s=typeof e===$d;for(o=0,n=a.length;o<n;o++){var c=a[o];(r=s?e:e[c])&&(i._events[c]=i._events[c]||[]).unshift(r)}return i},e.prototype.trigger=function(t,e){var o,n,r=this,i=r._events[t];if(i){var a=e||{};for(a.sender=r,a._defaultPrevented=!1,a.preventDefault=tf,a.isDefaultPrevented=ef,o=0,n=(i=i.slice()).length;o<n;o++)i[o].call(r,a);return!0===a._defaultPrevented}return!1},e.prototype.unbind=function(t,e){var o,n=this,r=n._events[t];if(void 0===t)n._events={};else if(r)if(e)for(o=r.length-1;o>=0;o--)r[o]!==e&&r[o].original!==e||r.splice(o,1);else n._events[t]=[];return n},e.prototype._setEvents=function(t){for(var e=this,o=(this.events||[]).length,n=0;n<o;n++){var r=e.events[n];e.options[r]&&t[r]&&(e.unbind(r,e.options[r]),e._events&&e._events[r]&&delete e._events[r])}this.bind(this.events,t)},e}(j.Class),nf=function(t){function e(e,o){t.call(this),this.element=e,this._initOptions(o),this.items=[],E(this.element,"k-widget k-attribution")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype.filter=function(t,e){this._extent=t,this._zoom=e,this._render()},e.prototype.add=function(t){var e=t;zt(t)&&("string"==typeof t&&(e={text:t}),this.items.push(e),this._render())},e.prototype.remove=function(t){for(var e=[],o=0;o<this.items.length;o++){var n=this.items[o];n.text!==t&&e.push(n)}this.items=e,this._render()},e.prototype.clear=function(){this.items=[],Ad(this.element)},e.prototype._render=function(){for(var t=[],e=0;e<this.items.length;e++){var o=this.items[e],n=this._itemText(o);""!==n&&t.push(n)}t.length>0?(Ad(this.element),function(t,e){var o=document.createElement("div");for(o.innerHTML=t;o.childNodes.length>0;)e.appendChild(o.childNodes[0])}(t.join(this.options.separator),this.element),this.showElement()):this.hideElement()},e.prototype.hideElement=function(){this.element.style.display="none"},e.prototype.showElement=function(){this.element.style.display=""},e.prototype._itemText=function(t){var e="",o=this._inZoomLevel(t.minZoom,t.maxZoom),n=this._inArea(t.extent);return o&&n&&(e+=t.text),e},e.prototype._inZoomLevel=function(t,e){var o=Bt(t,-Number.MAX_VALUE),n=Bt(e,Number.MAX_VALUE);return this._zoom>o&&this._zoom<n},e.prototype._inArea=function(t){var e=!0;return t&&(e=t.contains(this._extent)),e},e}(of);Rt(nf,{name:"Attribution",separator:" | "});var rf={up:{className:"k-navigator-n",iconClass:"k-i-caret-alt-up"},down:{className:"k-navigator-s",iconClass:"k-i-caret-alt-down"},right:{className:"k-navigator-e",iconClass:"k-i-caret-alt-right"},left:{className:"k-navigator-w",iconClass:"k-i-caret-alt-left"}};function af(t,e){var o='<button class="k-button k-button-square k-rounded-full k-button-flat k-button-flat-base k-icon-button '+rf[t].className+'" aria-label="move '+t+'">'+Kt({icon:"caret-alt-"+t,iconClass:"k-button-icon",svgIcons:e.svgIcons,type:e.type})+"</button>";return Id(o)}var sf=function(t){function e(e,o){t.call(this),this.element=e,this._initOptions(o);var n=af("up",o.icons),r=af("right",o.icons),i=af("down",o.icons),a=af("left",o.icons);this.element.appendChild(n),this.element.appendChild(r),this.element.appendChild(i),this.element.appendChild(a),E(this.element,"k-widget k-navigator"),Nd(this.element,"click",".k-button",Dd(this._click,this));var s=this.element.parentNode.closest("[data-role]");this._keyroot=s||this.element,this._tabindex(this._keyroot),this._keydownHandler=Dd(this._keydown,this),Nd(this._keyroot,"keydown",this._keydownHandler)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.dispose()},e.prototype.dispose=function(){Wd(this._keyroot,"keydown",this._keydownHandler)},e.prototype._tabindex=function(t){var e=t||this.wrapper||this.element,o=this.element,n="tabindex",r=e.getAttribute(n)||o.getAttribute(n);o.removeAttribute(n),e.setAttribute(n,isNaN(r)?0:r)},e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype._pan=function(t,e){var o=this.options.panStep;this.trigger("pan",{x:t*o,y:e*o})},e.prototype._click=function(t){var e=0,o=0,n=t.currentTarget;n.matches(".k-navigator-n")?o=1:n.matches(".k-navigator-s")?o=-1:n.matches(".k-navigator-e")?e=1:n.matches(".k-navigator-w")&&(e=-1),this._pan(e,o),t.preventDefault()},e.prototype._keydown=function(t){switch(t.which){case ce.UP:this._pan(0,1),t.preventDefault();break;case ce.DOWN:this._pan(0,-1),t.preventDefault();break;case ce.RIGHT:this._pan(1,0),t.preventDefault();break;case ce.LEFT:this._pan(-1,0),t.preventDefault()}},e}(of);function cf(t,e,o){var n='<button class="k-button k-button-md k-rounded-md k-button-solid k-button-solid-base k-icon-button k-zoom-'+t+'" title="zoom-'+t+'" aria-label="zoom-'+t+'">'+Kt({icon:e,iconClass:"k-button-icon",svgIcons:o.svgIcons,type:o.type})+"</button>";return Id(n)}Rt(sf,{name:"Navigator",panStep:1}),Zd(sf,["pan"]);var lf="change",hf=function(t){function e(e,o,n){t.call(this),this.element=e,this._initOptions(o);var r=cf("in","plus",n),i=cf("out","minus",n);this.element.appendChild(r),this.element.appendChild(i),E(this.element,"k-widget k-zoom-control k-button-group k-group-horizontal"),this._clickHandler=this._click.bind(this),Nd(this.element,"click",".k-button",this._clickHandler);var a=this.element.parentNode.closest("[data-role]");this._keyroot=a||this.element,this._tabindex(this._keyroot),this._keydownHandler=this._keydown.bind(this),Nd(this._keyroot,"keydown",this._keydownHandler)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.element&&Wd(this.element,"click",this._clickHandler),this._keyroot&&Wd(this._keyroot,"keydown",this._keydownHandler)},e.prototype._tabindex=function(t){var e=t||this.wrapper||this.element,o=this.element,n="tabindex",r=e.getAttribute(n)||o.getAttribute(n);o.removeAttribute(n),e.setAttribute(n,isNaN(r)?0:r)},e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype._change=function(t){var e=this.options.zoomStep;this.trigger(lf,{delta:t*e})},e.prototype._click=function(t){var e=1;ct(t.currentTarget,"k-zoom-out")&&(e=-1),this._change(e),t.preventDefault()},e.prototype._keydown=function(t){switch(t.which){case ce.NUMPAD_PLUS:case 187:case 61:this._change(1);break;case ce.NUMPAD_MINUS:case 189:case 173:this._change(-1)}},e}(of);Rt(hf,{name:"ZoomControl",zoomStep:1}),Zd(hf,[lf]);var pf=Math,uf=pf.max,vf=pf.min,df=function(t){function e(e,o){t.call(this);var n=ud.create(e),r=ud.create(o);n.lng+180>r.lng+180&&n.lat+90<r.lat+90?(this.se=n,this.nw=r):(this.se=r,this.nw=n)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var o={World:{configurable:!0}};return e.prototype.contains=function(t){var e=this.nw,o=this.se,n=Bt(t.lng,t[1]),r=Bt(t.lat,t[0]);return t&&n+180>=e.lng+180&&n+180<=o.lng+180&&r+90>=o.lat+90&&r+90<=e.lat+90},e.prototype.center=function(){var t=this.nw,e=this.se,o=t.lng+(e.lng-t.lng)/2,n=t.lat+(e.lat-t.lat)/2;return new ud(n,o)},e.prototype.containsAny=function(t){for(var e=!1,o=0;o<t.length;o++)e=e||this.contains(t[o]);return e},e.prototype.include=function(t){var e=this.nw,o=this.se,n=Bt(t.lng,t[1]),r=Bt(t.lat,t[0]);e.lng=vf(e.lng,n),e.lat=uf(e.lat,r),o.lng=uf(o.lng,n),o.lat=vf(o.lat,r)},e.prototype.includeAll=function(t){for(var e=0;e<t.length;e++)this.include(t[e])},e.prototype.edges=function(){var t=this.nw,e=this.se;return{nw:this.nw,ne:new ud(t.lat,e.lng),se:this.se,sw:new ud(e.lat,t.lng)}},e.prototype.toArray=function(){var t=this.nw,e=this.se;return[t,new ud(t.lat,e.lng),e,new ud(e.lat,t.lng)]},e.prototype.overlaps=function(t){return this.containsAny(t.toArray())||t.containsAny(this.toArray())},e.create=function(t,o){return t instanceof e?t:t&&o?new e(t,o):t&&4===t.length&&!o?new e([t[0],t[1]],[t[2],t[3]]):void 0},o.World.get=function(){return new e([90,-180],[-90,180])},Object.defineProperties(e,o),e}(j.Class),ff="centerChange",mf=function(t){function e(e,o){t.call(this),this.widgetService=e,this.options=X({},this.options,o),this.offset={x:0,y:0}}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var o={anchor:{configurable:!0}};return e.prototype.show=function(t,e){this.location!==e.location&&(this.anchor=t,this.location=e.location,this.widgetService.notify("showTooltip",Object.assign({anchor:this.anchor},e)),this.visible=!0)},e.prototype.hide=function(){this.widgetService&&this.widgetService.notify("hideTooltip"),this.visible=!1,this.location=null},o.anchor.get=function(){return this._anchor},o.anchor.set=function(t){var e=this.widgetService.widget._toDocumentCoordinates({x:t.left-this.offset.x,y:t.top-this.offset.y});this._anchor={left:e.left,top:e.top}},e.prototype.destroy=function(){this.widgetService=null},Object.defineProperties(e.prototype,o),e}(j.Class);Rt(mf,{border:{width:1},opacity:1});var yf=function(t){function e(e,o){t.call(this),this.support=Rd(),this._initOptions(o),this.map=e;var n=document.createElement("div");E(n,"k-layer"),n.style.zIndex=this.options.zIndex,n.style.opacity=this.options.opacity,this.element=n,e.scrollElement.appendChild(this.element),this._beforeReset=this._beforeReset.bind(this),this._reset=this._reset.bind(this),this._resize=this._resize.bind(this),this._panEnd=this._panEnd.bind(this),this._activate(),this._updateAttribution()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this._deactivate()},e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype.show=function(){this.reset(),this._activate(),this._applyExtent(!0)},e.prototype.hide=function(){this._deactivate(),this._setVisibility(!1)},e.prototype.reset=function(){this._beforeReset(),this._reset()},e.prototype._reset=function(){this._applyExtent()},e.prototype._beforeReset=function(){},e.prototype._resize=function(){},e.prototype._panEnd=function(){this._applyExtent()},e.prototype._applyExtent=function(){var t=this.options,e=this.map.zoom(),o=!zt(t.minZoom)||e>=t.minZoom,n=!zt(t.maxZoom)||e<=t.maxZoom,r=df.create(t.extent),i=!r||r.overlaps(this.map.extent());this._setVisibility(o&&n&&i)},e.prototype._setVisibility=function(t){this.element.style.display=t?"":"none"},e.prototype._activate=function(){var t=this.map;this._deactivate(),t.bind("beforeReset",this._beforeReset),t.bind("reset",this._reset),t.bind("resize",this._resize),t.bind("panEnd",this._panEnd)},e.prototype._deactivate=function(){var t=this.map;t.unbind("beforeReset",this._beforeReset),t.unbind("reset",this._reset),t.unbind("resize",this._resize),t.unbind("panEnd",this._panEnd)},e.prototype._updateAttribution=function(){var t=this.map.attribution;t&&t.add(this.options.attribution)},e.prototype._readData=function(){return this.options.data||[]},e.prototype._hasData=function(){return this._data&&this._data.length>0},e.prototype._layerIndex=function(){return(this.map.layers||[]).indexOf(this)},e}(j.Class),gf=Math,bf=j.geometry.Point;function xf(t){return U(t)?t:ot.compile(t)}function wf(t){return new bf(Et(t.x),Et(t.y))}function _f(t){var e=t;return"string"!=typeof t&&(e+="px"),e}var zf=function(t){function e(e,o){t.call(this,e,o),"string"==typeof this.options.subdomains&&(this.options.subdomains=this.options.subdomains.split(""));var n=this._viewType();this._view=new n(this.element,this.options)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){t.prototype.destroy.call(this),this._view.destroy(),this._view=null},e.prototype._beforeReset=function(){var t=this.map,e=t.locationToLayer(t.extent().nw).round();this._view.viewOrigin(e)},e.prototype._reset=function(){t.prototype._reset.call(this),this._updateView(),this._view.reset()},e.prototype._viewType=function(){return Cf},e.prototype._activate=function(){t.prototype._activate.call(this),this.support.mobileOS||(this._pan||(this._pan=(0,j.throttle)(this._render.bind(this),100)),this.map.bind("pan",this._pan))},e.prototype._deactivate=function(){t.prototype._deactivate.call(this),this._pan&&this.map.unbind("pan",this._pan)},e.prototype._updateView=function(){var t=this._view,e=this.map,o=e.extent(),n={nw:e.locationToLayer(o.nw).round(),se:e.locationToLayer(o.se).round()};t.center(e.locationToLayer(e.center())),t.extent(n),t.zoom(e.zoom())},e.prototype._resize=function(){this._render()},e.prototype._panEnd=function(e){t.prototype._panEnd.call(this,e),this._render()},e.prototype._render=function(){this._updateView(),this._view.render()},e}(yf);Rt(zf,{tileSize:256,subdomains:["a","b","c"],urlTemplate:"",zIndex:1});var Cf=function(t){function e(e,o){t.call(this),this.element=e,this._initOptions(o),this.pool=new Mf}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype.center=function(t){this._center=t},e.prototype.extent=function(t){this._extent=t},e.prototype.viewOrigin=function(t){this._viewOrigin=t},e.prototype.zoom=function(t){this._zoom=t},e.prototype.pointToTileIndex=function(t){return new bf(gf.floor(t.x/this.options.tileSize),gf.floor(t.y/this.options.tileSize))},e.prototype.tileCount=function(){var t=this.size(),e=this.pointToTileIndex(this._extent.nw),o=this._extent.nw,n=this.indexToPoint(e).translate(-o.x,-o.y);return{x:gf.ceil((gf.abs(n.x)+t.width)/this.options.tileSize),y:gf.ceil((gf.abs(n.y)+t.height)/this.options.tileSize)}},e.prototype.size=function(){var t=this._extent.nw,e=this._extent.se.clone().translate(-t.x,-t.y);return{width:e.x,height:e.y}},e.prototype.indexToPoint=function(t){var e=t.x,o=t.y;return new bf(e*this.options.tileSize,o*this.options.tileSize)},e.prototype.subdomainText=function(){var t=this.options.subdomains;return t[this.subdomainIndex++%t.length]},e.prototype.destroy=function(){Ad(this.element),this.pool.empty()},e.prototype.reset=function(){this.pool.reset(),this.subdomainIndex=0,this.render()},e.prototype.render=function(){var t,e,o,n=this.tileCount(),r=this.pointToTileIndex(this._extent.nw);for(e=0;e<n.x;e++)for(o=0;o<n.y;o++)(t=this.createTile({x:r.x+e,y:r.y+o})).visible||t.show()},e.prototype.createTile=function(t){var e=this.tileOptions(t),o=this.pool.get(this._center,e);return o.element.parentNode||this.element.append(o.element),o},e.prototype.tileOptions=function(t){var e=this.wrapIndex(t),o=this.indexToPoint(t),n=this._viewOrigin,r=o.clone().translate(-n.x,-n.y);return{index:e,currentIndex:t,point:o,offset:wf(r),zoom:this._zoom,size:this.options.tileSize,subdomain:this.subdomainText(),urlTemplate:this.options.urlTemplate,errorUrlTemplate:this.options.errorUrlTemplate}},e.prototype.wrapIndex=function(t){var e=gf.pow(2,this._zoom);return{x:this.wrapValue(t.x,e),y:It(t.y,0,e-1)}},e.prototype.wrapValue=function(t,e){var o=gf.abs(t)%e;return t>=0?o:e-(0===o?e:o)},e}(j.Class),kf=function(t){function e(e,o){t.call(this),this.id=e,this.visible=!0,this._initOptions(o),this.createElement(),this.show()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){var t=this.element,e=t?t.parentNode:null;t&&(e&&e.removeChild(t),this.element=null)},e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype.createElement=function(){var t=document.createElement("img"),e=this.options.size+"px";t.style.position="absolute",t.style.display="block",t.style.width=t.style.maxWidth=e,t.style.height=t.style.maxHeight=e,this.element=t},e.prototype.show=function(){var t=this.element;t.style.top=_f(this.options.offset.y),t.style.left=_f(this.options.offset.x);var e=this.url();e&&t.setAttribute("src",e),t.style.visibility="visible",this.visible=!0},e.prototype.hide=function(){this.element.style.visibility="hidden",this.visible=!1},e.prototype.url=function(){return xf(this.options.urlTemplate)(this.urlOptions())},e.prototype.errorUrl=function(){return xf(this.options.errorUrlTemplate)(this.urlOptions())},e.prototype.urlOptions=function(){var t=this.options;return{zoom:t.zoom,subdomain:t.subdomain,z:t.zoom,x:t.index.x,y:t.index.y,s:t.subdomain,quadkey:t.quadkey,q:t.quadkey,culture:t.culture,c:t.culture}},e}(j.Class);Rt(kf,{urlTemplate:"",errorUrlTemplate:""});var Mf=function(t){function e(){t.call(this),this._items=[]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t,e){return this._items.length>=this.options.maxSize&&this._remove(t),this._create(e)},e.prototype.empty=function(){for(var t=this._items,e=0;e<t.length;e++)t[e].destroy();this._items=[]},e.prototype.reset=function(){for(var t=this._items,e=0;e<t.length;e++)t[e].hide()},e.prototype._create=function(t){for(var e,o=this._items,n=Ht(t.point.toString()+t.offset.toString()+t.zoom+t.urlTemplate),r=0;r<o.length;r++)if(o[r].id===n){e=o[r];break}return e?e.show():(e=new kf(n,t),this._items.push(e)),e},e.prototype._remove=function(t){for(var e=this._items,o=-1,n=-1,r=0;r<e.length;r++){var i=e[r].options.point.distanceTo(t);i>o&&!e[r].visible&&(n=r,o=i)}-1!==n&&(e[n].destroy(),e.splice(n,1))},e}(j.Class);Rt(Mf,{maxSize:100});var Of=Object.assign,Sf="change",Hf=function(t){function e(e,o){t.call(this);var n=this,r=e[0]||e;n.capture=!1;var i=Ld(navigator.userAgent);r.addEventListener?(i.down.split(" ").forEach((function(t){r.addEventListener(t,Dd(n._press,n),!0)})),i.up.split(" ").forEach((function(t){r.addEventListener(t,Dd(n._release,n),!0)}))):(i.down.split(" ").forEach((function(t){r.attachEvent(t,Dd(n._press,n))})),i.up.split(" ").forEach((function(t){r.attachEvent(t,Dd(n._release,n))}))),n.bind(["press","release"],o||{})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.captureNext=function(){this.capture=!0},e.prototype.cancelCapture=function(){this.capture=!1},e.prototype._press=function(t){this.trigger("press"),this.capture&&t.preventDefault()},e.prototype._release=function(t){var e=this;e.trigger("release"),e.capture&&(t.preventDefault(),e.cancelCapture())},e}(of),Pf=function(t){function e(e){t.call(this);var o=this;o.forcedEnabled=!1,Of(o,e),o.scale=1,o.horizontal?(o.measure="offsetWidth",o.scrollSize="scrollWidth",o.axis="x"):(o.measure="offsetHeight",o.scrollSize="scrollHeight",o.axis="y")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.makeVirtual=function(){Of(this,{virtual:!0,forcedEnabled:!0,_virtualMin:0,_virtualMax:0})},e.prototype.virtualSize=function(t,e){this._virtualMin===t&&this._virtualMax===e||(this._virtualMin=t,this._virtualMax=e,this.update())},e.prototype.outOfBounds=function(t){return t>this.max||t<this.min},e.prototype.forceEnabled=function(){this.forcedEnabled=!0},e.prototype.getSize=function(){return this.container[this.measure]},e.prototype.getTotal=function(){return this.element[this.scrollSize]},e.prototype.rescale=function(t){this.scale=t},e.prototype.update=function(t){var e=this,o=e.virtual?e._virtualMax:e.getTotal(),n=o*e.scale,r=e.getSize();(0!==o||e.forcedEnabled)&&(e.max=e.virtual?-e._virtualMin:0,e.size=r,e.total=n,e.min=Math.min(e.max,r-n),e.minScale=r/o,e.centerOffset=(n-r)/2,e.enabled=e.forcedEnabled||n>r,t||e.trigger(Sf,e))},e}(of),If=function(t){function e(e){t.call(this);var o=this;o.x=new Pf(Of({horizontal:!0},e)),o.y=new Pf(Of({horizontal:!1},e)),o.container=e.container,o.forcedMinScale=e.minScale,o.maxScale=e.maxScale||100,o.bind(Sf,e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.rescale=function(t){this.x.rescale(t),this.y.rescale(t),this.refresh()},e.prototype.centerCoordinates=function(){return{x:Math.min(0,-this.x.centerOffset),y:Math.min(0,-this.y.centerOffset)}},e.prototype.refresh=function(){var t=this;t.x.update(),t.y.update(),t.enabled=t.x.enabled||t.y.enabled,t.minScale=t.forcedMinScale||Math.min(t.x.minScale,t.y.minScale),t.fitScale=Math.max(t.x.minScale,t.y.minScale),t.trigger(Sf)},e}(of),Af=function(t){function e(e){t.call(this),Of(this,e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.outOfBounds=function(){return this.dimension.outOfBounds(this.movable[this.axis])},e.prototype.dragMove=function(t){var e=this,o=e.dimension,n=e.axis,r=e.movable,i=r[n]+t;if(o.enabled){var a=t;(i<o.min&&t<0||i>o.max&&t>0)&&(a*=e.resistance),r.translateAxis(n,a),e.trigger(Sf,e)}},e}(of),Vf=function(t){function e(e){t.call(this);var o,n,r,i,a=this;Of(a,{elastic:!0},e),r=a.elastic?.5:0,i=a.movable,a.x=o=new Af({axis:"x",dimension:a.dimensions.x,resistance:r,movable:i}),a.y=n=new Af({axis:"y",dimension:a.dimensions.y,resistance:r,movable:i}),a.userEvents.bind(["press","move","end","gesturestart","gesturechange"],{gesturestart:function(t){a.gesture=t,a.offset=kt(a.dimensions.container)},press:function(t){var e=t.event.target.closest("a");e&&e.matches("[data-navigate-on-press=true]")&&t.sender.cancel()},gesturechange:function(t){var e,r=a.gesture,s=r.center,c=t.center,l=t.distance/r.distance,h=a.dimensions.minScale,p=a.dimensions.maxScale;i.scale<=h&&l<1&&(l+=.8*(1-l)),i.scale*l>=p&&(l=p/i.scale);var u=i.x+a.offset.left,v=i.y+a.offset.top;e={x:(u-s.x)*l+c.x-u,y:(v-s.y)*l+c.y-v},i.scaleWith(l),o.dragMove(e.x),n.dragMove(e.y),a.dimensions.rescale(i.scale),a.gesture=t,t.preventDefault()},move:function(t){t.event.target.tagName.match(/textarea|input/i)||(o.dimension.enabled||n.dimension.enabled?(o.dragMove(t.x.delta),n.dragMove(t.y.delta),t.preventDefault()):t.touch.skip())},end:function(t){t.preventDefault()}})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(j.Class),Ef=function(t,e,o){return"translate3d("+t+"px,"+e+"px,0) scale("+o+")"},Tf=function(t){function e(e){t.call(this);var o=this;o.support=Rd(),this.transformStyle=this.support.transitions.prefix+"Transform",o.element=e,o.element.style.webkitTransformOrigin="left top",o.x=0,o.y=0,o.scale=1;var n=Ef(o.x,o.y,o.scale);o.element.style[this.transformStyle]=n,o._saveCoordinates(n)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.translateAxis=function(t,e){this[t]+=e,this.refresh()},e.prototype.scaleTo=function(t){this.scale=t,this.refresh()},e.prototype.scaleWith=function(t){this.scale*=t,this.refresh()},e.prototype.translate=function(t){this.x+=t.x,this.y+=t.y,this.refresh()},e.prototype.moveAxis=function(t,e){this[t]=e,this.refresh()},e.prototype.moveTo=function(t){Of(this,t),this.refresh()},e.prototype.refresh=function(){var t,e=this,o=e.x,n=e.y;e.round&&(o=Math.round(o),n=Math.round(n)),(t=Ef(o,n,e.scale))!==e.coordinates&&(e.element.style[this.transformStyle]=t,e._saveCoordinates(t),e.trigger(Sf))},e.prototype._saveCoordinates=function(t){this.coordinates=t},e}(of),Bf=j.drawing.Group,jf=function(t){function e(e,o){t.call(this,e,o),this._pan=Dd(this._pan,this),this.surface=j.drawing.Surface.create(this.element,{width:e.scrollElement.clientWidth,height:e.scrollElement.clientHeight}),this._initRoot(),this.movable=new Tf(this.surface.element),this._markers=[],this._click=this._handler("shapeClick"),this.surface.bind("click",this._click),this._mouseleave=this._handler("shapeMouseLeave"),this.surface.bind("mouseleave",this._mouseleave),this.surface.bind("mouseenter",this._mouseenter.bind(this))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){t.prototype.destroy.call(this),this.surface.destroy()},e.prototype._reset=function(){t.prototype._reset.call(this),this._translateSurface(),this._data=this._readData(),this._hasData()&&this._load(this._data)},e.prototype._initRoot=function(){this._root=new Bf,this.surface.draw(this._root)},e.prototype._beforeReset=function(){this.surface.clear(),this._initRoot()},e.prototype._resize=function(){this.surface.size(this.map.size())},e.prototype._readData=function(){var e=t.prototype._readData.call(this);return"FeatureCollection"===e.type?e.features:"GeometryCollection"===e.type?e.geometries:e},e.prototype._load=function(t){this._data=t,this._clearMarkers(),this._loader||(this._loader=new Lf(this.map,this.options.style,this));for(var e=new Bf,o=0;o<t.length;o++){var n=this._loader.parse(t[o]);n&&e.append(n)}this._root.clear(),this._root.append(e)},e.prototype.shapeCreated=function(t){var e=!1;if(t instanceof j.drawing.Circle&&this.map.options.renderPointsAsMarkers&&(e=zt(this._createMarker(t))),!e){var o={layer:this,shape:t};e=this.map.trigger("shapeCreated",o)}return e},e.prototype.featureCreated=function(t){t.layer=this,this.map.trigger("shapeFeatureCreated",t)},e.prototype._createMarker=function(t){var e=this.map.markers.bind({location:t.location},t.dataItem);return e&&this._markers.push(e),e},e.prototype._clearMarkers=function(){for(var t=0;t<this._markers.length;t++)this.map.markers.remove(this._markers[t]);this._markers=[]},e.prototype._pan=function(){this._panning||(this._panning=!0,this.surface.suspendTracking())},e.prototype._panEnd=function(e){t.prototype._panEnd.call(this,e),this._translateSurface(),this.surface.resumeTracking(),this._panning=!1},e.prototype._translateSurface=function(){var t=this.map,e=t.locationToView(t.extent().nw);this.surface.translate&&(this.surface.translate(e),this.movable.moveTo({x:e.x,y:e.y}))},e.prototype._eventArgs=function(t){return{layer:this,layerIndex:this._layerIndex(),shape:t.element,shapeIndex:(this._data||[]).indexOf(t.element.dataItem),originalEvent:t.originalEvent}},e.prototype._handler=function(t){var e=this;return function(o){o.element&&e.map.trigger(t,e._eventArgs(o))}},e.prototype._mouseenter=function(t){if(t.element){this.map.trigger("shapeMouseEnter",this._eventArgs(t));var e=t.element,o=this._tooltipAnchor(t);this.map._tooltip.show(o,this._tooltipContext(e))}},e.prototype._tooltipContext=function(t){return{type:"shape",layerIndex:this._layerIndex(),className:"k-map-shape-tooltip",dataItem:t.dataItem,location:t.location}},e.prototype._tooltipAnchor=function(t){var e=this.map.eventOffset(t.originalEvent);return{top:e.y,left:e.x}},e.prototype._activate=function(){t.prototype._activate.call(this),this._panHandler=Dd(this._pan,this),this.map.bind("pan",this.panHandler)},e.prototype._deactivate=function(){t.prototype._deactivate.call(this),this.map.unbind("pan",this._panHandler)},e}(yf);Rt(jf,{autoBind:!0,zIndex:100});var Lf=function(t){function e(e,o,n){t.call(this),this.observer=n,this.locator=e,this.style=o}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.parse=function(t){var e=new Bf,o=!0;return"Feature"===t.type?(o=!1,this._loadGeometryTo(e,t.geometry,t),this._featureCreated(e,t)):this._loadGeometryTo(e,t,t),o&&e.children.length<2&&(e=e.children[0]),e},e.prototype._shapeCreated=function(t){var e=!1;return this.observer&&this.observer.shapeCreated&&(e=this.observer.shapeCreated(t)),e},e.prototype._featureCreated=function(t,e){this.observer&&this.observer.featureCreated&&this.observer.featureCreated({group:t,dataItem:e,properties:e.properties})},e.prototype._loadGeometryTo=function(t,e,o){var n,r,i=this,a=e.coordinates;switch(e.type){case"LineString":r=this._loadPolygon(t,[a],o),this._setLineFill(r);break;case"MultiLineString":for(n=0;n<a.length;n++)r=i._loadPolygon(t,[a[n]],o),i._setLineFill(r);break;case"Polygon":this._loadPolygon(t,a,o);break;case"MultiPolygon":for(n=0;n<a.length;n++)i._loadPolygon(t,a[n],o);break;case"Point":this._loadPoint(t,a,o);break;case"MultiPoint":for(n=0;n<a.length;n++)i._loadPoint(t,a[n],o)}},e.prototype._setLineFill=function(t){var e=t.segments;(e.length<4||!e[0].anchor().equals(Pt(e).anchor()))&&(t.options.fill=null)},e.prototype._loadShape=function(t,e){return this._shapeCreated(e)||t.append(e),e},e.prototype._loadPolygon=function(t,e,o){var n=this._buildPolygon(e);return n.dataItem=o,n.location=this.locator.viewToLocation(n.bbox().center()),this._loadShape(t,n)},e.prototype._buildPolygon=function(t){for(var e=new(t.length>1?j.drawing.MultiPath:j.drawing.Path)(this.style),o=0;o<t.length;o++)for(var n=0;n<t[o].length;n++){var r=this.locator.locationToView(ud.fromLngLat(t[o][n]));0===n?e.moveTo(r.x,r.y):e.lineTo(r.x,r.y)}return e},e.prototype._loadPoint=function(t,e,o){var n=ud.fromLngLat(e),r=this.locator.locationToView(n),i=new j.geometry.Circle(r,10),a=new j.drawing.Circle(i,this.style);return a.dataItem=o,a.location=n,this._loadShape(t,a)},e}(j.Class),Rf=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._readData=function(){return this.options.data||[]},e.prototype._load=function(t){var e=this;if(this._data=t,this.surface.clear(),0!==t.length){var o=this.options,n=at(o.valueField),r=t.slice(0);r.sort((function(t,e){return n(e)-n(t)}));for(var i,a=this._scaleType(),s=at(this.options.locationField),c=0;c<r.length;c++){var l=r[c],h=s(l),p=n(l);if(zt(h)&&zt(p)){i||(i=new a([0,p],[o.minSize,o.maxSize])),h=ud.create(h);var u=e.map.locationToView(h),v=i.map(p),d=e._createSymbol({center:u,size:v,style:o.style,dataItem:l,location:h});d.dataItem=l,d.location=h,d.value=p,e._drawSymbol(d)}}}},e.prototype._scaleType=function(){var t=this.options.scale;return U(t)?t:Df[t]},e.prototype._createSymbol=function(t){var e=this.options.symbol;return U(e)||(e=Nf[e]),e(t)},e.prototype._drawSymbol=function(t){var e={layer:this,shape:t};this.map.trigger("shapeCreated",e)||this.surface.draw(t)},e.prototype._tooltipContext=function(t){return{type:"bubble",layerIndex:this._layerIndex(),className:"k-map-bubble-tooltip",dataItem:t.dataItem,location:t.location,value:t.value}},e.prototype._tooltipAnchor=function(t){var e=t.element.bbox().center();return{top:e.y,left:e.x}},e}(jf);Rt(Rf,{locationField:"location",valueField:"value",minSize:0,maxSize:100,scale:"sqrt",symbol:"circle",zIndex:200});var Df={sqrt:function(t){function e(e,o){t.call(this),this._domain=e,this._range=o;var n=Math.sqrt(e[1])-Math.sqrt(e[0]),r=o[1]-o[0];this._ratio=r/n}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.map=function(t){var e=(Math.sqrt(t)-Math.sqrt(this._domain[0]))*this._ratio;return this._range[0]+e},e}(j.Class)},Nf={circle:function(t){var e=new j.geometry.Circle(t.center,t.size/2);return new j.drawing.Circle(e,t.style)},square:function(t){var e=new j.drawing.Path(t.style),o=t.size/2,n=t.center;return e.moveTo(n.x-o,n.y-o).lineTo(n.x+o,n.y-o).lineTo(n.x+o,n.y+o).lineTo(n.x-o,n.y+o).close(),e}},Ff="click",Uf="mouseenter",Wf="mouseleave",Gf=Object.assign,Kf="k-marker",Xf="."+Kf,Zf=function(t){function e(e,o){t.call(this,e,o),this._markerClickHandler=Dd(this._markerClick,this),Nd(this.element,Ff,Xf,this._markerClickHandler),this.items=[],this._load(this._readData())}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){t.prototype.destroy.call(this),Wd(this.element,Ff,this._markerClickHandler),this.clear()},e.prototype.add=function(t){if(!V(t))return this._addOne(t);for(var e=0;e<t.length;e++)this._addOne(t[e])},e.prototype.remove=function(t){t.destroy();var e=(this.items||[]).indexOf(t);e>-1&&this.items.splice(e,1)},e.prototype.clear=function(){for(var t=0;t<this.items.length;t++)this.items[t].destroy();this.items=[]},e.prototype.update=function(t){var e=t.location();if(e){t.showAt(this.map.locationToView(e));var o={marker:t,layer:this};this.map.trigger("markerActivate",o)}},e.prototype._reset=function(){t.prototype._reset.call(this);for(var e=this.items,o=0;o<e.length;o++)this.update(e[o])},e.prototype.bind=function(t,e){var o=Yf.create(t,this.options);o.dataItem=e;var n={marker:o,layer:this};if(!this.map.trigger("markerCreated",n))return this.add(o),o},e.prototype._addOne=function(t){var e=Yf.create(t,this.options);return e.addTo(this),e},e.prototype._readData=function(){return this.options.data||[]},e.prototype._load=function(t){this._data=t,this.clear();for(var e=at(this.options.locationField),o=at(this.options.titleField),n=0;n<t.length;n++){var r=t[n];this.bind({location:e(r),title:o(r)},r)}},e.prototype._markerClick=function(t){var e=t.currentTarget._kendoNode,o={layer:this,layerIndex:this._layerIndex(),marker:e,markerIndex:(this.items||[]).indexOf(e),originalEvent:t};this.map.trigger("markerClick",o)},e.prototype._markerMouseEnter=function(t){var e=this._createMarkerEventArgs(t);this.map.trigger("markerMouseEnter",e)},e.prototype._markerMouseLeave=function(t){var e=this._createMarkerEventArgs(t);this.map.trigger("markerMouseLeave",e)},e.prototype._createMarkerEventArgs=function(t){var e=t.marker;return Gf({},{layer:this,layerIndex:this._layerIndex(),marker:e,markerIndex:(this.items||[]).indexOf(e)},t)},e}(yf);Rt(Zf,{zIndex:1e3,autoBind:!0,locationField:"location",titleField:"title",template:""});var Yf=function(t){function e(e){t.call(this),this.options=e||{}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.layer=null,this.unbindEvents(),this.hide()},e.prototype.addTo=function(t){this.layer=t.markers||t,this.layer.items.push(this),this.layer.update(this)},e.prototype.location=function(t){return t?(this.options.location=ud.create(t).toArray(),this.layer&&this.layer.update(this),this):ud.create(this.options.location)},e.prototype.showAt=function(t){this.render(),this._anchor={left:Math.round(t.x),top:Math.round(t.y)},this.element.style.left=Td(this._anchor.left),this.element.style.top=Td(this._anchor.top)},e.prototype.hide=function(){this.element&&(this.element.remove(),this.element=null)},e.prototype.bindEvents=function(){this.element&&(this._mouseEnterHandler=Dd(this._mouseEnter,this),Nd(this.element,Uf,Xf,this._mouseEnterHandler),this._mouseLeaveHandler=Dd(this._mouseLeave,this),Nd(this.element,Wf,Xf,this._mouseLeaveHandler))},e.prototype.unbindEvents=function(){this.element&&(Wd(this.element,Uf,this._mouseEnterHandler),Wd(this.element,Wf,this._mouseLeaveHandler))},e.prototype.render=function(){if(!this.element){var t=this.options,e=this.layer,o=document.createElement("span");if(E(o,Kf),this.options.template){var n=this._compileTemplate(this.options.template)(this.dataItem),r=Id(n);o.appendChild(r)}else if(t.svgIcon)Kt(o,{icon:t.svgIcon,iconClass:"k-icon-xxl",svgIcons:this.options.icons.svgIcons,type:"svg"});else{var i={icon:"map-marker",iconClass:"k-icon-xxl",svgIcons:this.options.icons.svgIcons,type:this.options.icons.type};t.shape?"pinTarget"===t.shape?(i.icon="map-marker-target",Kt(o,i)):"pin"===t.shape?Kt(o,i):E(o,"k-icon k-icon-xxl k-i-marker-"+Ed(t.shape||"pin")):Kt(o,i)}t.title&&o.setAttribute("title",t.title);var a=t.attributes||{};Object.keys(a).forEach((function(t){o.setAttribute(t,a[t])})),o._kendoNode=this,o.style.zIndex=t.zIndex,this.element=o,e&&e.element.appendChild(this.element),this.bindEvents()}},e.prototype._mouseEnter=function(t){var e=this._createEventArgs(t);this.layer._markerMouseEnter(e),this.layer.map._tooltip.show({top:this._anchor.top-this.element.offsetHeight,left:this._anchor.left},this._tooltipContext())},e.prototype._tooltipContext=function(){return{type:"marker",layerIndex:this.layer._layerIndex(),className:"k-map-marker-tooltip",dataItem:this.dataItem,title:this.options.title,location:this.location()}},e.prototype._mouseLeave=function(t){var e=this._createEventArgs(t);this.layer._markerMouseLeave(e)},e.prototype._createEventArgs=function(t){return{marker:this,originalEvent:t}},e.prototype._compileTemplate=function(t){return ot.compile(t,{paramName:"dataItem",useWithBlock:!1})},e.create=function(t,o){return t instanceof e?t:new e(X({},o,t))},e}(j.Class),qf=Object.assign;function Qf(t){window.requestAnimationFrame(t)}var Jf=function(t){function e(){t.call(this);var e=this;e._tickProxy=Dd(e._tick,e),e._started=!1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.tick=function(){},e.prototype.done=function(){},e.prototype.onEnd=function(){},e.prototype.onCancel=function(){},e.prototype.start=function(){this.enabled()&&(this.done()?this.onEnd():(this._started=!0,Qf(this._tickProxy)))},e.prototype.enabled=function(){return!0},e.prototype.cancel=function(){this._started=!1,this.onCancel()},e.prototype._tick=function(){var t=this;t._started&&(t.tick(),t.done()?(t._started=!1,t.onEnd()):Qf(t._tickProxy))},e}(j.Class),$f=function(t){function e(e){t.call(this),qf(this,e)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.done=function(){return this.timePassed()>=this.duration},e.prototype.timePassed=function(){return Math.min(this.duration,Yd()-this.startDate)},e.prototype.moveTo=function(t){var e=this,o=e.movable;e.initial=o[e.axis],e.delta=t.location-e.initial,e.duration="number"==typeof t.duration?t.duration:300,e.tick=e._easeProxy(t.ease),e.startDate=Yd(),e.start()},e.prototype._easeProxy=function(t){var e=this;return function(){e.movable.moveAxis(e.axis,t(e.timePassed(),e.initial,e.delta,e.duration))}},e.easeOutExpo=function(t,e,o,n){return t===n?e+o:o*(1-Math.pow(2,-10*t/n))+e},e}(Jf),tm=Object.assign,em=function(t){t.preventDefault()},om=800,nm=0,rm="press",im="hold",am="select",sm="start",cm="move",lm="end",hm="cancel",pm="tap",um="doubleTap",vm="release",dm="gesturechange",fm="gestureend",mm="gesturetap",ym={api:0,touch:0,mouse:9,pointer:9};function gm(t){var e,o,n,r=Rd(),i=[],a=t.originalEvent||t,s=t.currentTarget,c=0;if(t.api)i.push({id:2,event:t,target:t.target,currentTarget:t.target,location:t,type:"api"});else if(t.type.match(/touch/))for(e=(o=a?a.changedTouches:[]).length;c<e;c++)n=o[c],i.push({location:n,event:t,target:n.target,currentTarget:s,id:n.identifier,type:"touch"});else r.pointers||r.msPointers?i.push({location:a,event:t,target:t.target,currentTarget:s,id:a.pointerId,type:"pointer"}):i.push({id:1,event:t,target:t.target,currentTarget:s,location:t,type:"mouse"});return i}var bm=function(t){function e(e,o){t.call(this);var n=this;n.support=Rd(),n.invalidZeroEvents=this.support.mobileOS&&this.support.mobileOS.android,n.axis=e,n._updateLocationData(o),n.startLocation=n.location,n.velocity=n.delta=0,n.timeStamp=Yd()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.move=function(t){var e=this,o=t["page"+e.axis],n=Yd(),r=n-e.timeStamp||1;!o&&this.invalidZeroEvents||(e.delta=o-e.location,e._updateLocationData(t),e.initialDelta=o-e.startLocation,e.velocity=e.delta/r,e.timeStamp=n)},e.prototype._updateLocationData=function(t){var e=this,o=e.axis;e.location=t["page"+o],e.client=t["client"+o],e.screen=t["screen"+o]},e}(j.Class),xm=function(t){function e(e,o,n){t.call(this),tm(this,{x:new bm("X",n.location),y:new bm("Y",n.location),type:n.type,useClickAsTap:e.useClickAsTap,threshold:e.threshold||ym[n.type],userEvents:e,target:o,currentTarget:n.currentTarget,initialTouch:n.target,id:n.id,pressEvent:n,_clicks:e._clicks,supportDoubleTap:e.supportDoubleTap,_moved:!1,_finished:!1})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.press=function(){this._holdTimeout=setTimeout(Dd(this._hold,this),this.userEvents.minHold),this._trigger(rm,this.pressEvent)},e.prototype._tap=function(t){var e=this;e.userEvents._clicks++,1===e.userEvents._clicks&&(e._clickTimeout=setTimeout((function(){1===e.userEvents._clicks?e._trigger(pm,t):e._trigger(um,t),e.userEvents._clicks=0}),300))},e.prototype._hold=function(){this._trigger(im,this.pressEvent)},e.prototype.move=function(t){var e=this,o="api"!==t.type&&e.userEvents._shouldNotMove;if(!e._finished&&!o){if(e.x.move(t.location),e.y.move(t.location),!e._moved){if(e._withinIgnoreThreshold())return;if(_m.current&&_m.current!==e.userEvents)return e.dispose();e._start(t)}e._finished||e._trigger(cm,t)}},e.prototype.end=function(t){this.endTime=Yd(),this._finished||(this._finished=!0,this._trigger(vm,t),this._moved?this._trigger(lm,t):this.useClickAsTap||(this.supportDoubleTap?this._tap(t):this._trigger(pm,t)),clearTimeout(this._holdTimeout),this.dispose())},e.prototype.dispose=function(){var t=this.userEvents.touches||[];this._finished=!0,this.pressEvent=null,clearTimeout(this._holdTimeout);var e=t.indexOf(this);t.splice(e,1)},e.prototype.skip=function(){this.dispose()},e.prototype.cancel=function(){this.dispose()},e.prototype.isMoved=function(){return this._moved},e.prototype._start=function(t){clearTimeout(this._holdTimeout),this.startTime=Yd(),this._moved=!0,this._trigger(sm,t)},e.prototype._trigger=function(t,e){var o=this,n=e.event,r={touch:o,x:o.x,y:o.y,target:o.target,event:n};o.userEvents.notify(t,r)&&n.preventDefault()},e.prototype._withinIgnoreThreshold=function(){var t=this.x.initialDelta,e=this.y.initialDelta;return Math.sqrt(t*t+e*e)<=this.threshold},e}(j.Class);function wm(t){for(var e=Ld(navigator.userAgent).up.split(" "),o=0,n=e.length;o<n;o++)t(e[o])}var _m=function(t){function e(e,o){t.call(this);var n,r=this,i=Rd();this.support=i,o=o||{},this.options=o,n=r.filter=o.filter,r.threshold=o.threshold||nm,r.minHold=o.minHold||om,r.touches=[],r._maxTouches=o.multiTouch?2:1,r.allowSelection=o.allowSelection,r.captureUpIfMoved=o.captureUpIfMoved,r.useClickAsTap=!o.fastTap&&!i.delayedClick(),r._clicks=0,r.supportDoubleTap=o.supportDoubleTap;var a=!i.touch||i.mouseAndTouchPresent;if(tm(r,{element:e,surface:o.global&&a?e.ownerDocument.documentElement:o.surface||e,stopPropagation:o.stopPropagation,pressed:!1}),this._surfaceMoveHandler=Dd(this._move,this),Nd(r.surface,Xd("move"),this._surfaceMoveHandler),this._surfaceEndHandler=Dd(this._end,this),Nd(r.surface,Xd("up cancel"),this._surfaceEndHandler),this._elementStartHandler=Dd(this._start,this),Nd(e,Xd("down"),n,this._elementStartHandler),r.useClickAsTap&&(this._elementClickHandler=Dd(this._click,this),Nd(e,Xd("click"),n,this._elementClickHandler)),i.pointers||i.msPointers)if(i.browser.version<11){var s="pinch-zoom double-tap-zoom";e.style["-ms-touch-action"]=o.touchAction&&"none"!==o.touchAction?s+" "+o.touchAction:s}else e.style["touch-action"]=o.touchAction||"none";if(o.preventDragEvent&&(this._elementDragStartHandler=em,Nd(e,Xd("dragstart"),this._elementDragStartHandler)),this._elementSelectHandler=Dd(this._select,this),Nd(e,Xd("mousedown"),n,this._elementSelectHandler),r.captureUpIfMoved&&i.eventCapture){var c=r.surface,l=Dd(r.preventIfMoving,r);wm((function(t){c.addEventListener(t,l,!0)}))}r.bind([rm,im,pm,um,sm,cm,lm,vm,hm,"gesturestart",dm,fm,mm,am],o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.preventIfMoving=function(t){this._isMoved()&&t.preventDefault()},e.prototype.destroy=function(){var t=this,e=this.options,o=this.element;if(!t._destroyed){if(t._destroyed=!0,t.captureUpIfMoved&&this.support.eventCapture){var n=t.surface;wm((function(e){n.removeEventListener(e,t.preventIfMoving)}))}Wd(t.surface,Xd("move"),this._surfaceMoveHandler),Wd(t.surface,Xd("up cancel"),this._surfaceEndHandler),Wd(o,Xd("down"),this._elementStartHandler),t.useClickAsTap&&Wd(o,Xd("click"),this._elementClickHandler),e.preventDragEvent&&Wd(o,Xd("dragstart"),this._elementDragStartHandler),Wd(o,Xd("mousedown"),this._elementSelectHandler),t._disposeAll(),t.unbind(),delete t.surface,delete t.element,delete t.currentTarget}},e.prototype.capture=function(){e.current=this},e.prototype.cancel=function(){this._disposeAll(),this.trigger(hm)},e.prototype.notify=function(t,e){var o,n,r,i,a,s,c,l,h=this.touches,p=t;if(this._isMultiTouch()){switch(p){case cm:p=dm;break;case lm:p=fm;break;case pm:p=mm}tm(e,{touches:h},(o=h[0],n=h[1],r=o.x.location,i=o.y.location,c=r-(a=n.x.location),l=i-(s=n.y.location),{center:{x:(r+a)/2,y:(i+s)/2},distance:Math.sqrt(c*c+l*l)}))}return this.trigger(p,tm(e,{type:p}))},e.prototype.press=function(t,e,o){this._apiCall("_start",t,e,o)},e.prototype.move=function(t,e){this._apiCall("_move",t,e)},e.prototype.end=function(t,e){this._apiCall("_end",t,e)},e.prototype._isMultiTouch=function(){return this.touches.length>1},e.prototype._maxTouchesReached=function(){return this.touches.length>=this._maxTouches},e.prototype._disposeAll=function(){for(var t=this.touches;t.length>0;)t.pop().dispose()},e.prototype._isMoved=function(){return st(this.touches,(function(t){return t.isMoved()})).length},e.prototype._select=function(t){this.allowSelection&&!this.trigger(am,{event:t})||t.preventDefault()},e.prototype._start=function(t){var o,n,r=this,i=0,a=r.filter,s=gm(t),c=s.length,l=t.which;if(!(l&&l>1||r._maxTouchesReached()))for(e.current=null,r.currentTarget=t.currentTarget,r.stopPropagation&&t.stopPropagation();i<c&&!r._maxTouchesReached();i++)n=s[i],(o=a?n.currentTarget:r.element)&&0===o.length||(n=new xm(r,o,n),r.touches.push(n),n.press(),r._isMultiTouch()&&r.notify("gesturestart",{}))},e.prototype._move=function(t){this._eachTouch("move",t)},e.prototype._end=function(t){this._eachTouch("end",t)},e.prototype._click=function(t){var e={touch:{initialTouch:t.target,target:t.currentTarget,endTime:Yd(),x:{location:t.pageX,client:t.clientX},y:{location:t.pageY,client:t.clientY}},x:t.pageX,y:t.pageY,target:t.currentTarget,event:t,type:"tap"};this.trigger("tap",e)&&t.preventDefault()},e.prototype._eachTouch=function(t,e){var o,n,r,i,a={},s=gm(e),c=this.touches;for(o=0;o<c.length;o++)a[(n=c[o]).id]=n;for(o=0;o<s.length;o++)(i=a[(r=s[o]).id])&&i[t](r)},e.prototype._apiCall=function(t,e,o,n){this[t]({api:!0,pageX:e,pageY:o,clientX:e,clientY:o,target:n||this.element,stopPropagation:qd,preventDefault:qd})},e.defaultThreshold=function(t){nm=t},e.minHold=function(t){om=t},e}(of),zm=Object.assign,Cm=Math.abs,km="change",Mm="scroll",Om=function(t){function e(e){t.call(this,e);var o=this;zm(o,e),o.userEvents.bind("gestureend",o.start.bind(this)),o.tapCapture.bind("press",o.cancel.bind(this))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.enabled=function(){return this.movable.scale<this.dimensions.minScale},e.prototype.done=function(){return this.dimensions.minScale-this.movable.scale<.01},e.prototype.tick=function(){var t=this.movable;t.scaleWith(1.1),this.dimensions.rescale(t.scale)},e.prototype.onEnd=function(){var t=this.movable;t.scaleTo(this.dimensions.minScale),this.dimensions.rescale(t.scale)},e}(Jf),Sm=function(t){function e(e){t.call(this);var o=this;zm(o,e,{transition:new $f({axis:e.axis,movable:e.movable,onEnd:function(){o._end()}})}),o.tapCapture.bind("press",(function(){o.cancel()})),o.userEvents.bind("end",Dd(o.start,o)),o.userEvents.bind("gestureend",Dd(o.start,o)),o.userEvents.bind("tap",Dd(o.onEnd,o))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onCancel=function(){this.transition.cancel()},e.prototype.freeze=function(t){this.cancel(),this._moveTo(t)},e.prototype.onEnd=function(){var t=this;t.paneAxis.outOfBounds()?t._snapBack():t._end()},e.prototype.done=function(){return Cm(this.velocity)<1},e.prototype.start=function(e){var o,n=this;n.dimension.enabled&&(n.paneAxis.outOfBounds()?n.transition._started?(n.transition.cancel(),n.velocity=Math.min(e.touch[n.axis].velocity*n.velocityMultiplier,55),t.prototype.start.call(this)):n._snapBack():(o=2===e.touch.id?0:e.touch[n.axis].velocity,n.velocity=Math.max(Math.min(o*n.velocityMultiplier,55),-55),n.tapCapture.captureNext(),t.prototype.start.call(this)))},e.prototype.tick=function(){var t=this,e=t.dimension,o=t.paneAxis.outOfBounds()?.5:t.friction,n=t.velocity*=o,r=t.movable[t.axis]+n;!t.elastic&&e.outOfBounds(r)&&(r=Math.max(Math.min(r,e.max),e.min),t.velocity=0),t.movable.moveAxis(t.axis,r)},e.prototype._end=function(){this.tapCapture.cancelCapture(),this.end()},e.prototype._snapBack=function(){var t=this,e=t.dimension,o=t.movable[t.axis]>e.max?e.max:e.min;t._moveTo(o)},e.prototype._moveTo=function(t){this.transition.moveTo({location:t,duration:500,ease:$f.easeOutExpo})},e}(Jf),Hm=function(t){function e(e){t.call(this,e),zm(this,e,{origin:{},destination:{},offset:{}})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.tick=function(){this._updateCoordinates(),this.moveTo(this.origin)},e.prototype.done=function(){return Cm(this.offset.y)<5&&Cm(this.offset.x)<5},e.prototype.onEnd=function(){this.moveTo(this.destination),this.callback&&this.callback.call()},e.prototype.setCoordinates=function(t,e){this.offset={},this.origin=t,this.destination=e},e.prototype.setCallback=function(t){t&&U(t)?this.callback=t:t=void 0},e.prototype._updateCoordinates=function(){this.offset={x:(this.destination.x-this.origin.x)/4,y:(this.destination.y-this.origin.y)/4},this.origin={y:this.origin.y+this.offset.y,x:this.origin.x+this.offset.x}},e}(Jf),Pm=function(t){function e(e){t.call(this);var o=this,n="x"===e.axis,r=Id('<div class="km-touch-scrollbar km-'+(n?"horizontal":"vertical")+'-scrollbar" />');zm(o,e,{element:r,elementSize:0,movable:new Tf(r),scrollMovable:e.movable,alwaysVisible:e.alwaysVisible,size:n?"width":"height"}),o.scrollMovable.bind(km,o.refresh.bind(o)),o.container.appendChild(r),e.alwaysVisible&&o.show()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.refresh=function(){var t=this,e=t.axis,o=t.dimension,n=o.size,r=t.scrollMovable,i=n/o.total,a=Math.round(-r[e]*i),s=Math.round(n*i);this.element.style.display=i>=1?"none":"",a+s>n?s=n-a:a<0&&(s+=a,a=0),t.elementSize!==s&&(t.element.style[t.size]=s+"px",t.elementSize=s),t.movable.moveAxis(e,a)},e.prototype.show=function(){this.element.style.opacity=.7,this.element.style.visibility="visible"},e.prototype.hide=function(){this.alwaysVisible||(this.element.style.opacity=0)},e}(j.Class),Im=function(t){function e(e,o){t.call(this);var n=this;this.element=e,this._initOptions(o);var r,i,a=(r=navigator.userAgent,(i=Bd(r)).ios||i.android);n._native=n.options.useNative&&a;var s=Id('<div class="km-scroll-header"/>');if(n._native)return E(e,"km-native-scroller"),Vd(s,e),void zm(n,{scrollElement:e,fixedContainer:e.children[0]});e.style.overflow="hidden",E(e,"km-scroll-wrapper"),function(t,e){for(t.appendChild(e);t.firstChild!==e;)e.appendChild(t.firstChild)}(e,Id('<div class="km-scroll-container"/>')),Vd(s,e);var c=e.children[1],l=new Hf(e),h=new Tf(c),p=new If({element:c,container:e,forcedEnabled:n.options.zoom}),u=this.options.avoidScrolling,v=new _m(e,{touchAction:"pan-y",fastTap:!0,allowSelection:!0,preventDragEvent:!0,captureUpIfMoved:!0,multiTouch:n.options.zoom,supportDoubleTap:n.options.supportDoubleTap,start:function(t){p.refresh();var e=Cm(t.x.velocity),o=Cm(t.y.velocity),r=2*e>=o,i=function(t,e){return t===e||function(t,e){if(!e)return!1;for(var o=e.parentNode;null!==o;){if(o===t)return!0;o=o.parentNode}return!1}(t,e)}(n.fixedContainer,t.event.target),a=2*o>=e;!i&&!u(t)&&n.enabled&&(p.x.enabled&&r||p.y.enabled&&a)?v.capture():v.cancel()}}),d=new Vf({movable:h,dimensions:p,userEvents:v,elastic:n.options.elastic}),f=new Om({movable:h,dimensions:p,userEvents:v,tapCapture:l}),m=new Hm({moveTo:function(t){n.scrollTo(t.x,t.y)}});h.bind(km,(function(){n.scrollTop=-h.y,n.scrollLeft=-h.x,n.trigger(Mm,{scrollTop:n.scrollTop,scrollLeft:n.scrollLeft})})),n.options.mousewheelScrolling&&(this._wheelScrollHandler=this._wheelScroll.bind(this),Nd(e,"wheel",this._wheelScrollHandler)),zm(n,{movable:h,dimensions:p,zoomSnapBack:f,animatedScroller:m,userEvents:v,pane:d,tapCapture:l,pulled:!1,enabled:!0,scrollElement:c,scrollTop:0,scrollLeft:0,fixedContainer:e.children[0]}),n._initAxis("x"),n._initAxis("y"),n._wheelEnd=function(){n._wheel=!1,n.userEvents.end(0,n._wheelY)},p.refresh(),n.options.pullToRefresh&&n._initPullToRefresh()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype._wheelScroll=function(t){if(!t.ctrlKey){this._wheel||(this._wheel=!0,this._wheelY=0,this.userEvents.press(0,this._wheelY)),clearTimeout(this._wheelTimeout),this._wheelTimeout=setTimeout(this._wheelEnd,50);var e=function(t){var e,o=t.originalEvent||t,n=o.wheelDeltaY;return o.wheelDelta?(void 0===n||n)&&(e=o.wheelDelta):o.detail&&o.axis===o.VERTICAL_AXIS&&(e=10*-o.detail),e}(t);e&&(this._wheelY+=e,this.userEvents.move(0,this._wheelY)),t.preventDefault()}},e.prototype.makeVirtual=function(){this.dimensions.y.makeVirtual()},e.prototype.virtualSize=function(t,e){this.dimensions.y.virtualSize(t,e)},e.prototype.height=function(){return this.dimensions.y.size},e.prototype.scrollHeight=function(){return this.scrollElement.scrollHeight},e.prototype.scrollWidth=function(){return this.scrollElement.scrollWidth},e.prototype._resize=function(){this._native||this.contentResized()},e.prototype.setOptions=function(t){this._initOptions(t),t.pullToRefresh&&this._initPullToRefresh()},e.prototype.reset=function(){this._native?this.scrollElement.scrollTop(0):(this.movable.moveTo({x:0,y:0}),this._scale(1))},e.prototype.contentResized=function(){this.dimensions.refresh(),this.pane.x.outOfBounds()&&this.movable.moveAxis("x",this.dimensions.x.min),this.pane.y.outOfBounds()&&this.movable.moveAxis("y",this.dimensions.y.min)},e.prototype.zoomOut=function(){var t=this.dimensions;t.refresh(),this._scale(t.fitScale),this.movable.moveTo(t.centerCoordinates())},e.prototype.enable=function(){this.enabled=!0},e.prototype.disable=function(){this.enabled=!1},e.prototype.scrollTo=function(t,e){this._native?(this.scrollElement.scrollLeft(Cm(t)),this.scrollElement.scrollTop(Cm(e))):(this.dimensions.refresh(),this.movable.moveTo({x:t,y:e}))},e.prototype.animatedScrollTo=function(t,e,o){var n,r;this._native?this.scrollTo(t,e):(n={x:this.movable.x,y:this.movable.y},r={x:t,y:e},this.animatedScroller.setCoordinates(n,r),this.animatedScroller.setCallback(o),this.animatedScroller.start())},e.prototype.pullHandled=function(){},e.prototype.destroy=function(){var t=this.element;Wd(t,"wheel",this._wheelScrollHandler),this.userEvents&&this.userEvents.destroy()},e.prototype._scale=function(t){this.dimensions.rescale(t),this.movable.scaleTo(t)},e.prototype._initPullToRefresh=function(){},e.prototype._dragEnd=function(){},e.prototype._paneChange=function(){},e.prototype._initAxis=function(t){var e=this,o=e.movable,n=e.dimensions[t],r=e.tapCapture,i=e.pane[t],a=new Pm({axis:t,movable:o,dimension:n,container:e.element,alwaysVisible:e.options.visibleScrollHints});n.bind(km,(function(){a.refresh()})),i.bind(km,(function(){a.show()})),e[t+"inertia"]=new Sm({axis:t,paneAxis:i,movable:o,tapCapture:r,userEvents:e.userEvents,dimension:n,elastic:e.options.elastic,friction:e.options.friction||.96,velocityMultiplier:e.options.velocityMultiplier||10,end:function(){a.hide(),e.trigger("scrollEnd",{axis:t,scrollTop:e.scrollTop,scrollLeft:e.scrollLeft})}})},e}(of);Rt(Im,{name:"Scroller",zoom:!1,pullOffset:140,visibleScrollHints:!1,elastic:!0,useNative:!1,mousewheelScrolling:!0,avoidScrolling:function(){return!1},pullToRefresh:!1,messages:{pullTemplate:"Pull to refresh",releaseTemplate:"Release to refresh",refreshTemplate:"Refreshing"}}),Zd(Im,["pull",Mm,"resize"]);var Am=function(t,e){void 0===e&&(e={}),this.sender=e.sender||t,this.widget=t,this.rtl=Boolean(e.rtl)};Am.prototype.notify=function(t,e){this.widget&&this.widget.trigger(t,e)};const Vm=Am;var Em=Math,Tm=Em.min,Bm=Em.pow,jm=j.geometry.Point,Lm="marker",Rm="location",Dm="wheel",Nm={bubble:Rf,shape:jf,tile:zf};Nm[Lm]=Zf;var Fm=function(t){function e(e,o,n,r){void 0===o&&(o={}),void 0===n&&(n={}),void 0===r&&(r={}),t.call(this),this._init(e,o,n,r)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.destroy=function(){this.scroller.destroy(),this._tooltip&&this._tooltip.destroy(),this.navigator&&this.navigator.destroy(),this.attribution&&this.attribution.destroy(),this.zoomControl&&this.zoomControl.destroy(),V(this.markers)?this.markers.forEach((function(t){t.destroy()})):this.markers.destroy();for(var e=0;e<this.layers.length;e++)this.layers[e].destroy();Wd(this.element,Dm,this._mousewheelHandler),t.prototype.destroy.call(this)},e.prototype._init=function(t,e,o,n){void 0===e&&(e={}),void 0===o&&(o={}),void 0===n&&(n={}),this.support=Rd(),this.context=n,this.initObserver(n),this.initServices(n),this._notifyObserver("init"),this._initOptions(e),this._setEvents(e),this.crs=new Hd,this._initElement(t),this._viewOrigin=this._getOrigin(),this._tooltip=this._createTooltip(),this._initScroller(),this._initMarkers(),this._initControls(),this._initLayers(),this._reset();var r=(0,j.throttle)(this._mousewheel.bind(this),50);this._mousewheelHandler=function(t){t.preventDefault(),r(t)},Nd(this.element,Dm,this._mousewheelHandler)},e.prototype._initOptions=function(t){this.options=X({},this.options,t)},e.prototype._initElement=function(t){this.element=t,E(t,"k-map"),t.style.position="relative",t.setAttribute("data-role","map"),Ad(t);var e=Id("<div />");this.element.appendChild(e)},e.prototype.initServices=function(t){void 0===t&&(t={}),this.widgetService=new Vm(this,t)},e.prototype.initObserver=function(t){void 0===t&&(t={}),this.observers=[],this.addObserver(t.observer)},e.prototype.addObserver=function(t){t&&this.observers.push(t)},e.prototype.removeObserver=function(t){var e=this.observers.indexOf(t);e>=0&&this.observers.splice(e,1)},e.prototype.requiresHandlers=function(t){for(var e=this.observers,o=0;o<e.length;o++)if(e[o].requiresHandlers(t))return!0},e.prototype.trigger=function(e,o){void 0===o&&(o={}),o.sender=this;for(var n=this.observers,r=!1,i=0;i<n.length;i++)n[i].trigger(e,o)&&(r=!0);return r||t.prototype.trigger.call(this,e,o),r},e.prototype._notifyObserver=function(t,e){void 0===e&&(e={}),e.sender=this;for(var o=this.observers,n=!1,r=0;r<o.length;r++)o[r].trigger(t,e)&&(n=!0);return n},e.prototype.zoom=function(t){var e,o=this.options;if(zt(t)){var n=Em.round(It(t,o.minZoom,o.maxZoom));o.zoom!==n&&(o.zoom=n,this.widgetService.notify("zoomChange",{zoom:o.zoom}),this._reset()),e=this}else e=o.zoom;return e},e.prototype.center=function(t){var e;if(t){var o=ud.create(t),n=ud.create(this.options.center);o.equals(n)||(this.options.center=o.toArray(),this.widgetService.notify(ff,{center:this.options.center}),this._reset()),e=this}else e=ud.create(this.options.center);return e},e.prototype.extent=function(t){var e;return t?(this._setExtent(t),e=this):e=this._getExtent(),e},e.prototype.setOptions=function(t){void 0===t&&(t={});var e=this.element;this.destroy(),Ad(e),this._init(e,t,{},this.context),this._reset()},e.prototype.locationToLayer=function(t,e){var o=!this.options.wraparound,n=ud.create(t);return this.crs.toPoint(n,this._layerSize(e),o)},e.prototype.layerToLocation=function(t,e){var o=!this.options.wraparound,n=jm.create(t);return this.crs.toLocation(n,this._layerSize(e),o)},e.prototype.locationToView=function(t){var e=ud.create(t),o=this.locationToLayer(this._viewOrigin);return this.locationToLayer(e).translateWith(o.scale(-1))},e.prototype.viewToLocation=function(t,e){var o=this.locationToLayer(this._getOrigin(),e),n=jm.create(t).clone().translateWith(o);return this.layerToLocation(n,e)},e.prototype.eventOffset=function(t){var e,o,n=kt(this.element);if(t.x&&t.x[Rm]||t.y&&t.y[Rm])e=t.x[Rm]-n.left,o=t.y[Rm]-n.top;else{var r=t.originalEvent||t;e=Bt(r.pageX,r.clientX)-n.left,o=Bt(r.pageY,r.clientY)-n.top}return new j.geometry.Point(e,o)},e.prototype.eventToView=function(t){var e=this.eventOffset(t);return this.locationToView(this.viewToLocation(e))},e.prototype.eventToLayer=function(t){return this.locationToLayer(this.eventToLocation(t))},e.prototype.eventToLocation=function(t){var e=this.eventOffset(t);return this.viewToLocation(e)},e.prototype.viewSize=function(){var t=this.element,e=this._layerSize(),o=t.clientWidth;return this.options.wraparound||(o=Tm(e,o)),{width:o,height:Tm(e,t.clientHeight)}},e.prototype.exportVisual=function(){return this._reset(),!1},e.prototype.hideTooltip=function(){this._tooltip&&this._tooltip.hide()},e.prototype._setOrigin=function(t,e){var o,n=this.viewSize(),r=this._origin=ud.create(t);return(o=this.locationToLayer(r,e)).x+=n.width/2,o.y+=n.height/2,this.options.center=this.layerToLocation(o,e).toArray(),this.widgetService.notify(ff,{center:this.options.center}),this},e.prototype._getOrigin=function(t){var e,o=this.viewSize();return!t&&this._origin||((e=this.locationToLayer(this.center())).x-=o.width/2,e.y-=o.height/2,this._origin=this.layerToLocation(e)),this._origin},e.prototype._setExtent=function(t){var e=df.create(t),o=e.se.clone();this.options.wraparound&&o.lng<0&&t.nw.lng>0&&(o.lng=180+(180+o.lng));var n=new df(e.nw,o);this.center(n.center());var r,i=this.element.clientWidth,a=this.element.clientHeight;for(r=this.options.maxZoom;r>=this.options.minZoom;r--){var s=this.locationToLayer(n.nw,r),c=this.locationToLayer(n.se,r),l=Em.abs(c.x-s.x),h=Em.abs(c.y-s.y);if(l<=i&&h<=a)break}this.zoom(r)},e.prototype._getExtent=function(){var t=this._getOrigin(),e=this.locationToLayer(t),o=this.viewSize();e.x+=o.width,e.y+=o.height;var n=this.layerToLocation(e);return new df(t,n)},e.prototype._zoomAround=function(t,e){this._setOrigin(this.layerToLocation(t,e),e),this.zoom(e)},e.prototype._initControls=function(){var t=this.options.controls;t.attribution&&this._createAttribution(t.attribution),this.support.mobileOS||(t.navigator&&this._createNavigator(t.navigator),t.zoom&&this._createZoomControl(t.zoom))},e.prototype._createControlElement=function(t,e){var o=t.position||e,n="."+Qd(o).replace(" ","."),r=this.element.querySelector(".k-map-controls"+n)||[];if(0===r.length){var i=document.createElement("div");E(i,"k-map-controls "+Qd(o)),r=i,this.element.appendChild(r)}var a=document.createElement("div");return r.appendChild(a),a},e.prototype._createAttribution=function(t){var e=this._createControlElement(t,"bottomRight");this.attribution=new nf(e,t)},e.prototype._createNavigator=function(t){var e=this._createControlElement(t,"topLeft"),o=this.navigator=new sf(e,X({},t,{icons:this.options.icons}));this._navigatorPan=this._navigatorPan.bind(this),o.bind("pan",this._navigatorPan),this._navigatorCenter=this._navigatorCenter.bind(this),o.bind("center",this._navigatorCenter)},e.prototype._navigatorPan=function(t){var e=this.scroller,o=e.scrollLeft+t.x,n=e.scrollTop-t.y,r=this._virtualSize,i=this.element.clientWidth,a=this.element.clientHeight;o=It(o,r.x.min,r.x.max-i),n=It(n,r.y.min,r.y.max-a),this.scroller.one("scroll",Dd(this._scrollEnd,this)),this.scroller.scrollTo(-o,-n)},e.prototype._navigatorCenter=function(){this.center(this.options.center)},e.prototype._createZoomControl=function(t){var e=this._createControlElement(t,"topLeft"),o=this.zoomControl=new hf(e,t,this.options.icons);this._zoomControlChange=this._zoomControlChange.bind(this),o.bind("change",this._zoomControlChange)},e.prototype._zoomControlChange=function(t){this.trigger("zoomStart",{originalEvent:t})||(this.zoom(this.zoom()+t.delta),this.trigger("zoomEnd",{originalEvent:t}))},e.prototype._initScroller=function(){var t=this.support.mobileOS?.93:.9,e=!1!==this.options.zoomable,o=this.scroller=new Im(this.element.children[0],{friction:t,velocityMultiplier:5,zoom:e,mousewheelScrolling:!1,supportDoubleTap:!0});o.bind("scroll",Dd(this._scroll,this)),o.bind("scrollEnd",Dd(this._scrollEnd,this)),o.userEvents.bind("gesturestart",Dd(this._scaleStart,this)),o.userEvents.bind("gestureend",Dd(this._scale,this)),o.userEvents.bind("doubleTap",Dd(this._doubleTap,this)),o.userEvents.bind("tap",Dd(this._tap,this)),this.scrollElement=o.scrollElement},e.prototype._initLayers=function(){for(var t=this.options.layers,e=this.layers=[],o=0;o<t.length;o++){var n=t[o],r=this._createLayer(n);e.push(r)}},e.prototype._createLayer=function(t){var e=t.type||"shape",o=this.options.layerDefaults[e],n=e===Lm?X({},this.options.markerDefaults,t,{icons:this.options.icons}):X({},o,t),r=new(0,Nm[e])(this,n);return e===Lm&&(this.markers=r),r},e.prototype._createTooltip=function(){return new mf(this.widgetService,this.options.tooltip)},e.prototype._initMarkers=function(){(this.options.layers||[]).filter((function(t){return t&&t.type===Lm})).length>0||(this.markers=new Zf(this,X({},this.options.markerDefaults,{icons:this.options.icons})),this.markers.add(this.options.markers))},e.prototype._scroll=function(t){var e=this.locationToLayer(this._viewOrigin).round(),o=t.sender.movable,n=new j.geometry.Point(o.x,o.y).scale(-1).scale(1/o.scale);e.x+=n.x,e.y+=n.y,this._scrollOffset=n,this._tooltip.offset=n,this.hideTooltip(),this._setOrigin(this.layerToLocation(e)),this.trigger("pan",{originalEvent:t,origin:this._getOrigin(),center:this.center()})},e.prototype._scrollEnd=function(t){this._scrollOffset&&this._panComplete()&&(this._scrollOffset=null,this._panEndTimestamp=Yd(),this.trigger("panEnd",{originalEvent:t,origin:this._getOrigin(),center:this.center()}))},e.prototype._panComplete=function(){return Yd()-(this._panEndTimestamp||0)>50},e.prototype._scaleStart=function(t){if(this.trigger("zoomStart",{originalEvent:t})){var e=t.touches[1];e&&e.cancel()}},e.prototype._scale=function(t){var e=this.scroller.movable.scale,o=this._scaleToZoom(e),n=new j.geometry.Point(t.center.x,t.center.y),r=this.viewToLocation(n,o),i=this.locationToLayer(r,o).translate(-n.x,-n.y);this._zoomAround(i,o),this.trigger("zoomEnd",{originalEvent:t})},e.prototype._scaleToZoom=function(t){var e=this._layerSize()*t/this.options.minSize,o=Em.log(e)/Em.log(2);return Em.round(o)},e.prototype._reset=function(){this.attribution&&this.attribution.filter(this.center(),this.zoom()),this._viewOrigin=this._getOrigin(!0),this._resetScroller(),this.hideTooltip(),this.trigger("beforeReset"),this.trigger("reset")},e.prototype._resetScroller=function(){var t=this.scroller,e=t.dimensions.x,o=t.dimensions.y,n=this._layerSize(),r=this.extent().nw,i=this.locationToLayer(r).round();t.movable.round=!0,t.reset(),t.userEvents.cancel();var a=this.zoom();t.dimensions.forcedMinScale=Bm(2,this.options.minZoom-a),t.dimensions.maxScale=Bm(2,this.options.maxZoom-a);var s={min:-i.x,max:n-i.x},c={min:-i.y,max:n-i.y};if(this.options.wraparound&&(s.max=20*n,s.min=-s.max),!1===this.options.pannable){var l=this.viewSize();s.min=c.min=0,s.max=l.width,c.max=l.height}e.makeVirtual(),o.makeVirtual(),e.virtualSize(s.min,s.max),o.virtualSize(c.min,c.max),this._virtualSize={x:s,y:c}},e.prototype._renderLayers=function(){},e.prototype._layerSize=function(t){var e=Bt(t,this.options.zoom);return this.options.minSize*Bm(2,e)},e.prototype._tap=function(t){if(this._panComplete()){var e=this.eventOffset(t);this.hideTooltip(),this.trigger("click",{originalEvent:t,location:this.viewToLocation(e)})}},e.prototype._doubleTap=function(t){if(!1!==this.options.zoomable&&!this.trigger("zoomStart",{originalEvent:t})){var e=this.zoom()+1,o=this.eventOffset(t),n=this.viewToLocation(o),r=this.locationToLayer(n,e).translate(-o.x,-o.y);this._zoomAround(r,e),this.trigger("zoomEnd",{originalEvent:t})}},e.prototype._mousewheel=function(t){var e=bt(t)>0?-1:1,o=this.options,n=this.zoom(),r=It(n+e,o.minZoom,o.maxZoom);if(!1!==o.zoomable&&r!==n&&!this.trigger("zoomStart",{originalEvent:t})){var i=this.eventOffset(t),a=this.viewToLocation(i),s=this.locationToLayer(a,r).translate(-i.x,-i.y);this._zoomAround(s,r),this.trigger("zoomEnd",{originalEvent:t})}},e.prototype._toDocumentCoordinates=function(t){var e=kt(this.element);return{left:Et(t.x+e.left),top:Et(t.y+e.top)}},e}(of);Rt(Fm,{name:"Map",controls:{attribution:!0,navigator:{panStep:100},zoom:!0},layers:[],layerDefaults:{shape:{style:{fill:{color:"#fff"},stroke:{color:"#aaa",width:.5}}},bubble:{style:{fill:{color:"#fff",opacity:.5},stroke:{color:"#aaa",width:.5}}},marker:{shape:"pinTarget",tooltip:{position:"top"}}},center:[0,0],icons:{type:"font",svgIcons:{}},zoom:3,minSize:256,minZoom:1,maxZoom:19,markers:[],markerDefaults:{shape:"pinTarget",tooltip:{position:"top"}},wraparound:!0,renderPointsAsMarkers:!1}),Zd(Fm,["beforeReset","click","markerActivate","markerClick","markerCreated","markerMouseEnter","markerMouseLeave","pan","panEnd","reset","shapeClick","shapeCreated","shapeFeatureCreated","shapeMouseEnter","shapeMouseLeave","zoomEnd","zoomStart"]);const Um=Fm;var Wm=1.5,Gm=.4,Km="#000",Xm="Arial, Helvetica, sans-serif",Zm="11px "+Xm,Ym="12px "+Xm,qm="16px "+Xm,Qm="transparent",Jm="#fff",$m=function(){return{icon:{border:{width:1}},label:{font:Ym,padding:3},line:{length:10,width:2},visible:!0}},ty=function(){return{outliersField:"",meanField:"",border:{_brightness:.8,width:1},downColor:Jm,gap:1,highlight:{border:{opacity:1,width:2},whiskers:{width:3},mean:{width:2},median:{width:2}},mean:{width:2},median:{width:2},spacing:.3,whiskers:{width:2}}},ey=function(){return{gap:Wm,spacing:Gm,target:{color:"#ff0000"}}},oy=function(){return{gap:.5,line:{color:Km,width:1},spacing:Gm}},ny=function(){return{labels:{background:"",color:"",padding:{top:5,bottom:5,left:7,right:7}}}},ry=function(t){return Object.assign({visible:!0,labels:{font:Zm},overlay:t.gradients?{}:{gradient:"none"},area:{highlight:{markers:{border:{}}},line:{opacity:1,width:0},markers:{size:6,visible:!1},opacity:.4},rangeArea:{highlight:{markers:{border:{}}},line:{opacity:1,width:0},markers:{size:6,visible:!1},opacity:.4},verticalRangeArea:{highlight:{markers:{border:{}}},line:{opacity:1,width:0},markers:{size:6,visible:!1},opacity:.4},bar:{gap:Wm,spacing:Gm},boxPlot:ty(),bubble:{border:{width:0},labels:{background:Qm},opacity:.6},bullet:ey(),candlestick:{border:{_brightness:.8,width:1},downColor:Jm,gap:1,highlight:{border:{opacity:1,width:2},line:{width:2}},line:{color:Km,width:1},spacing:.3},column:{gap:Wm,spacing:Gm},heatmap:{labels:{color:"",background:Qm,visible:!0},highlight:{border:{width:0}}},pie:{labels:{background:"",color:"",padding:{top:5,bottom:5,left:7,right:7}}},donut:{margin:1},funnel:{labels:{background:"",color:"",padding:{top:5,bottom:5,left:7,right:7}}},pyramid:ny(),horizontalWaterfall:oy(),line:{width:2},notes:$m(),ohlc:{gap:1,highlight:{line:{opacity:1,width:3}},line:{width:1},spacing:.3},radarArea:{line:{opacity:1,width:0},markers:{size:6,visible:!1},opacity:.5},radarLine:{markers:{visible:!1},width:2},polarArea:{line:{opacity:1,width:0},markers:{size:6,visible:!1},opacity:.5},polarLine:{markers:{visible:!1},width:2},rangeBar:{gap:Wm,spacing:Gm},rangeColumn:{gap:Wm,spacing:Gm},scatterLine:{width:1},verticalArea:{highlight:{markers:{border:{}}},line:{opacity:1,width:0},markers:{size:6,visible:!1},opacity:.4},verticalBoxPlot:ty(),verticalBullet:ey(),verticalLine:{width:2},waterfall:oy()},Fr.reduce((function(t,e){return t[e]={color:y,trendline:{},markers:{visible:!1},width:1,dashType:"longDash"},t}),{}))},iy=function(t){return void 0===t&&(t={}),{axisDefaults:{labels:{font:Ym},notes:$m(),title:{font:qm,margin:5}},categoryAxis:{majorGridLines:{visible:!0}},navigator:{pane:{height:90,margin:{top:10}}},seriesDefaults:ry(t),title:{font:qm},subtitle:{font:Ym},legend:{labels:{font:Ym}}}}},8696:(t,e,o)=>{o.r(e),o.d(e,{accessibilityIcon:()=>Jo,aggregateFieldsIcon:()=>_l,alignBottomIcon:()=>Zi,alignCenterIcon:()=>qi,alignItemsBaselineAltIcon:()=>li,alignItemsBaselineIcon:()=>ri,alignItemsCenterAltIcon:()=>ai,alignItemsCenterIcon:()=>ei,alignItemsEndAltIcon:()=>si,alignItemsEndIcon:()=>oi,alignItemsStartAltIcon:()=>ii,alignItemsStartIcon:()=>ti,alignItemsStretchAltIcon:()=>ci,alignItemsStretchIcon:()=>ni,alignJustifyIcon:()=>Ji,alignLeftIcon:()=>Yi,alignMiddleIcon:()=>Xi,alignRemoveIcon:()=>$i,alignRightIcon:()=>Qi,alignSelfCenterAltIcon:()=>Cr,alignSelfCenterIcon:()=>wr,alignSelfEndAltIcon:()=>kr,alignSelfEndIcon:()=>_r,alignSelfStartAltIcon:()=>zr,alignSelfStartIcon:()=>xr,alignSelfStretchAltIcon:()=>$r,alignSelfStretchIcon:()=>Jr,alignToGridIcon:()=>Er,alignTopIcon:()=>Ki,allIcon:()=>Ai,anchorIcon:()=>Hs,applyFormatIcon:()=>ds,arrowDownIcon:()=>S,arrowLeftIcon:()=>H,arrowOverflowDownIcon:()=>w,arrowRightIcon:()=>O,arrowRotateCcwIcon:()=>Se,arrowRotateCcwSmallIcon:()=>Ie,arrowRotateCwIcon:()=>He,arrowRotateCwSmallIcon:()=>Ae,arrowUpIcon:()=>M,arrowsAxesIcon:()=>E,arrowsLeftRightIcon:()=>ot,arrowsMoveIcon:()=>Lo,arrowsNoChangeIcon:()=>x,arrowsNoRepeatIcon:()=>Pe,arrowsSwapIcon:()=>T,arrowsTopBottomIcon:()=>nt,barcodeIcon:()=>tn,barcodeOutlineIcon:()=>$o,barcodeQrCodeScannerIcon:()=>an,barcodeScannerIcon:()=>en,behanceBoxIcon:()=>cl,behanceIcon:()=>sl,bellIcon:()=>Dn,binocularsIcon:()=>rs,bloggerBoxIcon:()=>Pc,bloggerIcon:()=>Hc,blurIcon:()=>ur,boldIcon:()=>wi,bookIcon:()=>Xa,borderBottomIcon:()=>ga,borderColorIcon:()=>Ce,borderLeftIcon:()=>ba,borderRadiusBottomLeftIcon:()=>rt,borderRadiusBottomRightIcon:()=>it,borderRadiusIcon:()=>ct,borderRadiusTopLeftIcon:()=>at,borderRadiusTopRightIcon:()=>st,borderRightIcon:()=>xa,borderStyleBottomIcon:()=>lt,borderStyleIcon:()=>vt,borderStyleLeftIcon:()=>ht,borderStyleRightIcon:()=>pt,borderStyleTopIcon:()=>ut,borderTopIcon:()=>ya,borderTypeIcon:()=>ke,bordersAllIcon:()=>ua,bordersInsideHorizontalIcon:()=>fa,bordersInsideIcon:()=>da,bordersInsideVerticalIcon:()=>ma,bordersNoneIcon:()=>wa,bordersOutsideIcon:()=>va,bordersShowHideIcon:()=>_a,boxSizingIcon:()=>dt,brightnessContrastIcon:()=>sr,bringBackwardIcon:()=>br,bringForwardIcon:()=>gr,bringToBackIcon:()=>yr,bringToFrontIcon:()=>mr,brushIcon:()=>nr,buildingBlocksIcon:()=>zs,buttonIcon:()=>Oa,calculatorIcon:()=>Ro,calendarDateIcon:()=>Ha,calendarIcon:()=>Ee,cameraIcon:()=>Wn,cancelCircleIcon:()=>Ye,cancelIcon:()=>Xe,cancelOutlineIcon:()=>Ze,caretAltDownIcon:()=>l,caretAltExpandIcon:()=>b,caretAltLeftIcon:()=>h,caretAltRightIcon:()=>c,caretAltToBottomIcon:()=>v,caretAltToLeftIcon:()=>d,caretAltToRightIcon:()=>u,caretAltToTopIcon:()=>p,caretAltUpIcon:()=>s,caretBlIcon:()=>i,caretBrIcon:()=>r,caretDoubleAltDownIcon:()=>y,caretDoubleAltLeftIcon:()=>g,caretDoubleAltRightIcon:()=>m,caretDoubleAltUpIcon:()=>f,caretTlIcon:()=>a,caretTrIcon:()=>n,cartIcon:()=>Do,categorizeIcon:()=>j,cellSplitHorizontallyIcon:()=>Ks,cellSplitVerticallyIcon:()=>Xs,cellsMergeHorizontallyIcon:()=>Ws,cellsMergeIcon:()=>Us,cellsMergeVerticallyIcon:()=>Gs,changeManuallyIcon:()=>La,chartAreaClusteredIcon:()=>Qh,chartAreaRangeIcon:()=>tp,chartAreaStacked100Icon:()=>$h,chartAreaStackedIcon:()=>Jh,chartBarClusteredIcon:()=>Xh,chartBarRangeIcon:()=>qh,chartBarStacked100Icon:()=>Yh,chartBarStackedIcon:()=>Zh,chartBubbleIcon:()=>dp,chartCandlestickIcon:()=>fp,chartChoroplethIcon:()=>wp,chartColumnClusteredIcon:()=>Uh,chartColumnRangeIcon:()=>Kh,chartColumnStacked100Icon:()=>Gh,chartColumnStackedIcon:()=>Wh,chartDoughnutIcon:()=>cp,chartLineIcon:()=>ep,chartLineMarkersIcon:()=>rp,chartLineStacked100Icon:()=>np,chartLineStacked100MarkersIcon:()=>ap,chartLineStackedIcon:()=>op,chartLineStackedMarkersIcon:()=>ip,chartOhlcIcon:()=>mp,chartPieIcon:()=>sp,chartRadarFilledIcon:()=>bp,chartRadarIcon:()=>yp,chartRadarMarkersIcon:()=>gp,chartRoseIcon:()=>xp,chartScatterIcon:()=>lp,chartScatterSmoothLinesIcon:()=>pp,chartScatterSmoothLinesMarkersIcon:()=>hp,chartScatterStraightLinesIcon:()=>vp,chartScatterStraightLinesMarkersIcon:()=>up,checkCircleIcon:()=>Je,checkIcon:()=>qe,checkOutlineIcon:()=>Qe,checkboxCheckedIcon:()=>En,checkboxIcon:()=>Vn,checkboxIndeterminateIcon:()=>Tn,checkboxNullIcon:()=>Bn,chevronDoubleDownIcon:()=>ft,chevronDoubleLeftIcon:()=>mt,chevronDoubleRightIcon:()=>yt,chevronDoubleUpIcon:()=>gt,chevronDownIcon:()=>C,chevronLeftIcon:()=>k,chevronRightIcon:()=>z,chevronUpIcon:()=>_,circleIcon:()=>jn,clearCssIcon:()=>fs,clipboardCodeIcon:()=>cs,clipboardHtmlIcon:()=>ps,clipboardIcon:()=>ss,clipboardMarkdownIcon:()=>us,clipboardTextIcon:()=>vs,clipboardWordAltIcon:()=>hs,clipboardWordIcon:()=>ls,clockArrowRotateIcon:()=>vn,clockIcon:()=>Ve,closedCaptionsIcon:()=>zn,cloudIcon:()=>ql,codeIcon:()=>Nl,codeSnippetIcon:()=>ka,colResizeIcon:()=>V,columnFreezeIcon:()=>Qs,columnsIcon:()=>Z,commentIcon:()=>Qa,commentRemoveIcon:()=>Ja,commentsRemoveIcon:()=>$a,connectorIcon:()=>No,convertLowercaseIcon:()=>Mi,convertUppercaseIcon:()=>Oi,copyFormatIcon:()=>ms,copyIcon:()=>is,cropIcon:()=>qn,crosstabIcon:()=>dc,crosstabWizardIcon:()=>fc,csIcon:()=>Xl,csprojIcon:()=>Gl,css3Icon:()=>Rl,cssIcon:()=>Fl,customFormatIcon:()=>cc,customIconIcon:()=>Ka,cutIcon:()=>as,dataCsvIcon:()=>hh,dataIcon:()=>$l,dataJsonIcon:()=>ph,dataOdsIcon:()=>bt,dataRestIcon:()=>Vh,dataSdsIcon:()=>ae,dataSqlIcon:()=>uh,dataWebIcon:()=>vh,decimalDecreaseIcon:()=>hc,decimalIncreaseIcon:()=>lc,decreaseHorizontalSpacingIcon:()=>Nr,decreaseVerticalSpacingIcon:()=>Gr,deliciousBoxIcon:()=>Ac,deliciousIcon:()=>Ic,detailSectionIcon:()=>ah,diggBoxIcon:()=>Ec,diggIcon:()=>Vc,dimensionsIcon:()=>Qr,displayBlockIcon:()=>wt,displayFlexIcon:()=>_t,displayInlineBlockIcon:()=>le,displayInlineFlexIcon:()=>zt,divIcon:()=>Ii,divideIcon:()=>Qo,documentManagerIcon:()=>Ga,dollarIcon:()=>ac,downloadIcon:()=>zo,downloadLightIcon:()=>se,dragAndDropIcon:()=>B,dribbbleBoxIcon:()=>hl,dribbbleIcon:()=>ll,dropletIcon:()=>ir,dropletSlashIcon:()=>Ar,dropletSliderIcon:()=>Ct,editToolsIcon:()=>Ba,envelopBoxIcon:()=>Bc,envelopIcon:()=>Tc,envelopLinkIcon:()=>Ss,envelopeBoxIcon:()=>ve,envelopeIcon:()=>fe,envelopeLinkIcon:()=>de,equalIcon:()=>Xo,exclamationCircleIcon:()=>Un,exeIcon:()=>Wl,exportIcon:()=>Nh,eyeIcon:()=>Eo,eyeSlashIcon:()=>ce,eyedropperIcon:()=>Xr,facebookBoxIcon:()=>Lc,facebookIcon:()=>jc,fileAddIcon:()=>Cl,fileAscxIcon:()=>Tl,fileAudioIcon:()=>zh,fileBacIcon:()=>Bl,fileConfigIcon:()=>El,fileCsvIcon:()=>Ml,fileDataIcon:()=>Mh,fileDiscImageIcon:()=>Oh,fileErrorIcon:()=>Ih,fileExcelIcon:()=>Ol,fileFlashIcon:()=>Vl,fileFooterIcon:()=>eh,fileHeaderIcon:()=>th,fileHorizontalIcon:()=>Ql,fileIcon:()=>zl,fileImageIcon:()=>Ch,fileMdbIcon:()=>Hl,filePdfIcon:()=>Il,filePptIcon:()=>Pl,filePresentationIcon:()=>kh,fileProgrammingIcon:()=>Sh,filePsdIcon:()=>Al,fileReportIcon:()=>kt,fileTxtIcon:()=>kl,fileTypescriptIcon:()=>Eh,fileVideoIcon:()=>_h,fileWordIcon:()=>Sl,fileWrenchIcon:()=>xi,fileZipIcon:()=>jl,filesErrorIcon:()=>Ah,filmIcon:()=>Ll,filterAddExpressionIcon:()=>bo,filterAddGroupIcon:()=>xo,filterClearIcon:()=>fo,filterIcon:()=>vo,filterSmallIcon:()=>mo,filterSortAscSmallIcon:()=>yo,filterSortDescSmallIcon:()=>go,flashManagerIcon:()=>ns,flipHorizontalIcon:()=>Jn,flipVerticalIcon:()=>$n,folderAddIcon:()=>bl,folderIcon:()=>yl,folderMoreIcon:()=>wl,folderOpenIcon:()=>gl,folderUpIcon:()=>xl,fontFamilyIcon:()=>Ci,fontGrowIcon:()=>ge,fontShrinkIcon:()=>be,fontSizeIcon:()=>pc,foregroundColorIcon:()=>ki,formElementIcon:()=>Ca,formIcon:()=>za,formatCodeBlockIcon:()=>_s,formulaFxIcon:()=>nc,forwardIcon:()=>gn,fullscreenExitIcon:()=>Ir,fullscreenIcon:()=>Pr,gapColumnIcon:()=>Mt,gapRowIcon:()=>Ot,gaugeLinearIcon:()=>pe,gaugeRadialIcon:()=>ue,gearIcon:()=>Io,gearsIcon:()=>Ao,globeIcon:()=>wc,globeLinkIcon:()=>Ms,globeOutlineIcon:()=>xc,globeUnlinkIcon:()=>Os,googleBoxIcon:()=>Dc,googleIcon:()=>Rc,googlePlusBoxIcon:()=>Fc,googlePlusIcon:()=>Nc,graphIcon:()=>Fh,grayscaleIcon:()=>pr,greaterOrEqualIcon:()=>qo,gridIcon:()=>L,gridLayoutIcon:()=>R,groupBoxIcon:()=>Pa,groupCollectionIcon:()=>dh,groupFooterSectionIcon:()=>nh,groupHeaderSectionIcon:()=>oh,groupIcon:()=>D,groupSectionIcon:()=>ch,h1Icon:()=>Vi,h2Icon:()=>Ei,h3Icon:()=>Ti,h4Icon:()=>Bi,h5Icon:()=>ji,h6Icon:()=>Li,handIcon:()=>cn,handleDragIcon:()=>F,handleResizeAltIcon:()=>St,handleResizeIcon:()=>Ht,hdIcon:()=>_n,heartIcon:()=>Pn,heartOutlineIcon:()=>Hn,homeIcon:()=>et,horizontalRuleIcon:()=>ea,html5Icon:()=>Dl,hyperlinkOpenIcon:()=>ko,hyperlinkOpenSmIcon:()=>Mo,imageAbsolutePositionIcon:()=>uc,imageAddIcon:()=>Za,imageEditIcon:()=>Ya,imageExportIcon:()=>Kn,imageIcon:()=>Gn,imageMapEditorIcon:()=>qa,imageResizeIcon:()=>Yn,imagesIcon:()=>Pt,importIcon:()=>Dh,inboxIcon:()=>Sc,increaseHorizontalSpacingIcon:()=>Dr,increaseVerticalSpacingIcon:()=>Wr,indentIcon:()=>Ni,infoCircleIcon:()=>Nn,inheritedIcon:()=>wh,insertBottomIcon:()=>Gi,insertMiddleIcon:()=>Wi,insertTopIcon:()=>Ui,invertColorsIcon:()=>lr,italicIcon:()=>_i,jsIcon:()=>Ul,justifyContentAroundAltIcon:()=>bi,justifyContentAroundIcon:()=>di,justifyContentBetweenAltIcon:()=>gi,justifyContentBetweenIcon:()=>vi,justifyContentCenterAltIcon:()=>mi,justifyContentCenterIcon:()=>pi,justifyContentEndAltIcon:()=>yi,justifyContentEndIcon:()=>ui,justifyContentStartAltIcon:()=>fi,justifyContentStartIcon:()=>hi,kpiStatusDenyIcon:()=>Wo,kpiStatusHoldIcon:()=>Go,kpiStatusOpenIcon:()=>Ko,launchIcon:()=>Oo,layout1By4Icon:()=>W,layout2By2Icon:()=>G,layoutIcon:()=>U,layoutSideBySideIcon:()=>K,layoutStackedIcon:()=>X,lessOrEqualIcon:()=>Yo,letterSpaceIcon:()=>It,levelDownIcon:()=>P,levelToTopIcon:()=>A,levelUpIcon:()=>I,lineHeightIcon:()=>At,linkAddIcon:()=>ks,linkIcon:()=>Ne,linkVerticalIcon:()=>Ue,linkedinBoxIcon:()=>Wc,linkedinIcon:()=>Uc,listLatinBigIcon:()=>Vt,listLatinSmallIcon:()=>Et,listOrderedIcon:()=>Ri,listRomanBigIcon:()=>Tt,listRomanLowerIcon:()=>Rh,listRomanSmallIcon:()=>Bt,listRomanUpperIcon:()=>Lh,listUnorderedIcon:()=>Di,listUnorderedOutlineIcon:()=>jt,listUnorderedSquareIcon:()=>Lt,lockIcon:()=>Ge,loginIcon:()=>wo,logoutIcon:()=>_o,makeHorizontalSpacingEqualIcon:()=>Rr,makeSameHeightIcon:()=>Lr,makeSameSizeIcon:()=>Br,makeSameWidthIcon:()=>jr,makeVerticalSpacingEqualIcon:()=>Ur,mapMarkerIcon:()=>_c,mapMarkerTargetIcon:()=>zc,maxHeightIcon:()=>Rt,maxWidthIcon:()=>Dt,mediaManagerIcon:()=>es,menuIcon:()=>Q,minHeightIcon:()=>Nt,minWidthIcon:()=>Ft,minusCircleIcon:()=>so,minusIcon:()=>io,minusOutlineIcon:()=>ao,minusSmIcon:()=>Uo,mirrorIcon:()=>Qn,moreHorizontalIcon:()=>$,moreVerticalIcon:()=>J,musicNotesIcon:()=>kn,myspaceBoxIcon:()=>Kc,myspaceIcon:()=>Gc,nonRecurrenceIcon:()=>xt,notEqualIcon:()=>Zo,outdentIcon:()=>Fi,outlineOffsetIcon:()=>Ut,outlineWidthIcon:()=>Wt,overlapIcon:()=>tt,paddingBottomIcon:()=>Gt,paddingIcon:()=>Yt,paddingLeftIcon:()=>Kt,paddingRightIcon:()=>Xt,paddingTopIcon:()=>Zt,pageFooterSectionIcon:()=>ih,pageHeaderSectionIcon:()=>rh,paletteIcon:()=>rr,paneFreezeIcon:()=>Ys,paperPlaneIcon:()=>he,paperclipAltIcon:()=>De,paperclipIcon:()=>Re,paragraphAddIcon:()=>Ta,parameterBooleanIcon:()=>fh,parameterDateTimeIcon:()=>mh,parameterFloatIcon:()=>yh,parameterIntegerIcon:()=>gh,parameterStringIcon:()=>bh,parametersByteArrayIcon:()=>Hh,parametersIcon:()=>lh,parametersUnknownIcon:()=>Ph,passwordIcon:()=>Ea,pauseIcon:()=>fn,pauseSmIcon:()=>On,pencilIcon:()=>je,percentIcon:()=>sc,photosIcon:()=>Vr,pinIcon:()=>Cc,pinterestBoxIcon:()=>Zc,pinterestIcon:()=>Xc,playIcon:()=>dn,playSmIcon:()=>Mn,playlistIcon:()=>Cn,plusCircleIcon:()=>ro,plusIcon:()=>oo,plusOutlineIcon:()=>no,plusSmIcon:()=>Fo,pointerIcon:()=>ln,positionBottomIcon:()=>qt,positionLeftIcon:()=>Qt,positionRightIcon:()=>Jt,positionTopIcon:()=>$t,printIcon:()=>Be,puzzlePieceIcon:()=>Cs,qrCodeIcon:()=>nn,qrCodeOutlineIcon:()=>on,qrCodeScannerIcon:()=>rn,questionCircleIcon:()=>Fn,radiobuttonCheckedIcon:()=>Rn,radiobuttonIcon:()=>Ln,redditBoxIcon:()=>qc,redditIcon:()=>Yc,redoIcon:()=>Oe,regularExpressionIcon:()=>te,removeHorizontalSpacingIcon:()=>Fr,removeVerticalSpacingIcon:()=>Kr,reorderIcon:()=>q,replaceAllIcon:()=>ee,replaceSingleIcon:()=>oe,reportElementIcon:()=>ne,rewindIcon:()=>yn,rightDoubleQuotesIcon:()=>re,rotateIcon:()=>tr,rotateLeftIcon:()=>or,rotateRightIcon:()=>er,roundCornersIcon:()=>fr,rowFreezeIcon:()=>qs,rowsIcon:()=>Y,rssBoxIcon:()=>ul,rssIcon:()=>pl,saveIcon:()=>Te,searchIcon:()=>To,selectAllIcon:()=>Ma,selectBoxIcon:()=>Sa,setColumnPositionIcon:()=>un,shapeLineIcon:()=>ar,shapesIcon:()=>dr,shareIcon:()=>Mc,sharpenIcon:()=>vr,signatureIcon:()=>sn,silverlightIcon:()=>ts,sizeToGridIcon:()=>Tr,slidersIcon:()=>cr,slnIcon:()=>Yl,snapGridIcon:()=>Zr,snapToGridlinesIcon:()=>Yr,snapToSnaplinesIcon:()=>qr,sortAscIcon:()=>co,sortAscSmallIcon:()=>po,sortClearIcon:()=>ho,sortDescIcon:()=>lo,sortDescSmallIcon:()=>uo,spellCheckerIcon:()=>$s,starIcon:()=>An,starOutlineIcon:()=>In,stickIcon:()=>hn,stopIcon:()=>mn,stopSmIcon:()=>Sn,strikethroughIcon:()=>Si,stripAllFormattingIcon:()=>ys,stripCssFormatIcon:()=>gs,stripFontElementsIcon:()=>bs,stripSpanElementsIcon:()=>xs,stripWordFormattingIcon:()=>ws,stumbleUponBoxIcon:()=>Jc,stumbleUponIcon:()=>Qc,subreportIcon:()=>Jl,subscriptIcon:()=>Hi,sumIcon:()=>rc,supscriptIcon:()=>Pi,symbolIcon:()=>ic,tableAddIcon:()=>Ps,tableAlignBottomCenterIcon:()=>la,tableAlignBottomLeftIcon:()=>ca,tableAlignBottomRightIcon:()=>ha,tableAlignMiddleCenterIcon:()=>aa,tableAlignMiddleLeftIcon:()=>ia,tableAlignMiddleRightIcon:()=>sa,tableAlignRemoveIcon:()=>pa,tableAlignTopCenterIcon:()=>na,tableAlignTopLeftIcon:()=>oa,tableAlignTopRightIcon:()=>ra,tableBodyIcon:()=>mc,tableCellDeleteIcon:()=>Ns,tableCellIcon:()=>Vs,tableCellPropertiesIcon:()=>Es,tableColumnDeleteIcon:()=>Rs,tableColumnGroupsIcon:()=>yc,tableColumnInsertLeftIcon:()=>Ts,tableColumnInsertRightIcon:()=>Bs,tableCornerIcon:()=>gc,tableDeleteIcon:()=>Fs,tableIcon:()=>Is,tablePositionCenterIcon:()=>Bh,tablePositionEndIcon:()=>jh,tablePositionStartIcon:()=>Th,tablePropertiesIcon:()=>As,tableRowDeleteIcon:()=>Ds,tableRowGroupsIcon:()=>bc,tableRowInsertAboveIcon:()=>js,tableRowInsertBelowIcon:()=>Ls,tableUnmergeIcon:()=>Zs,tableWizardIcon:()=>vc,tellAFriendBoxIcon:()=>tl,tellAFriendIcon:()=>$c,templateManagerIcon:()=>ja,textClipIcon:()=>ze,textOverflowIcon:()=>xe,textTruncateIcon:()=>_e,textWrapArrowIcon:()=>we,textWrapIcon:()=>ta,textareaIcon:()=>Ia,textboxHiddenIcon:()=>Va,textboxIcon:()=>Aa,thumbnailsDownIcon:()=>Sr,thumbnailsLeftIcon:()=>Hr,thumbnailsRightIcon:()=>Or,thumbnailsUpIcon:()=>Mr,tocSectionIcon:()=>sh,tocSectionLevelIcon:()=>xh,toggleFullScreenModeIcon:()=>oc,toolbarFloatIcon:()=>Js,trackChangesAcceptAllIcon:()=>Fa,trackChangesAcceptIcon:()=>Na,trackChangesEnableIcon:()=>Da,trackChangesIcon:()=>Ra,trackChangesRejectAllIcon:()=>Wa,trackChangesRejectIcon:()=>Ua,transparencyIcon:()=>hr,trashIcon:()=>Le,tumblrBoxIcon:()=>ol,tumblrIcon:()=>el,twitterBoxIcon:()=>rl,twitterIcon:()=>nl,underlineIcon:()=>zi,undoIcon:()=>Me,ungroupIcon:()=>N,unlinkIcon:()=>Fe,unlinkVerticalIcon:()=>We,unlockIcon:()=>Ke,unpinIcon:()=>kc,unstickIcon:()=>pn,uploadIcon:()=>Co,userIcon:()=>Oc,validationDataIcon:()=>ec,validationXhtmlIcon:()=>tc,vbIcon:()=>Zl,vbprojIcon:()=>Kl,videoExternalIcon:()=>os,vimeoBoxIcon:()=>dl,vimeoIcon:()=>vl,volumeDownIcon:()=>bn,volumeMuteIcon:()=>wn,volumeUpIcon:()=>xn,warningCircleIcon:()=>me,warningTriangleIcon:()=>ye,wholeWordIcon:()=>ie,windowIcon:()=>So,windowMinimizeIcon:()=>Po,windowRestoreIcon:()=>Ho,wrenchIcon:()=>Vo,xCircleIcon:()=>eo,xIcon:()=>$e,xOutlineIcon:()=>to,yammerBoxIcon:()=>al,yammerIcon:()=>il,youtubeBoxIcon:()=>ml,youtubeIcon:()=>fl,zoomActualSizeIcon:()=>Xn,zoomBestFitIcon:()=>Zn,zoomInIcon:()=>Bo,zoomOutIcon:()=>jo});const n={name:"caret-tr",content:'<path d="M352 160v192L160 160h192z" />',viewBox:"0 0 512 512"},r={name:"caret-br",content:'<path d="M352 352H160l192-192v192z" />',viewBox:"0 0 512 512"},i={name:"caret-bl",content:'<path d="M160 352V160l192 192H160z" />',viewBox:"0 0 512 512"},a={name:"caret-tl",content:'<path d="M160 160h192L160 352V160z" />',viewBox:"0 0 512 512"},s={name:"caret-alt-up",content:'<path d="m256 160 128 192H128l128-192z" />',viewBox:"0 0 512 512"},c={name:"caret-alt-right",content:'<path d="M352 256 160 384V128l192 128z" />',viewBox:"0 0 512 512"},l={name:"caret-alt-down",content:'<path d="M256 352 128 160h256L256 352z" />',viewBox:"0 0 512 512"},h={name:"caret-alt-left",content:'<path d="m160 256 192-128v256L160 256z" />',viewBox:"0 0 512 512"},p={name:"caret-alt-to-top",content:'<path d="m128 352 128-192 128 192H128zm256-224H128v32h256v-32z" />',viewBox:"0 0 512 512"},u={name:"caret-alt-to-right",content:'<path d="m128 128 192 128-192 128V128zm224 256V128h-32v256h32z" />',viewBox:"0 0 512 512"},v={name:"caret-alt-to-bottom",content:'<path d="M384 128 256 320 128 128h256zM128 352h256v-32H128v32z" />',viewBox:"0 0 512 512"},d={name:"caret-alt-to-left",content:'<path d="M352 384 160 256l192-128v256zM128 128v256h32V128h-32z" />',viewBox:"0 0 512 512"},f={name:"caret-double-alt-up",content:'<path d="m128 448 128-192 128 192H128zM256 64 128 256h256L256 64z" />',viewBox:"0 0 512 512"},m={name:"caret-double-alt-right",content:'<path d="m64 128 192 128L64 384V128zm384 128L256 128v256l192-128z" />',viewBox:"0 0 512 512"},y={name:"caret-double-alt-down",content:'<path d="M384 64 256 256 128 64h256zM256 448l128-192-128 1H128l128 191z" />',viewBox:"0 0 512 512"},g={name:"caret-double-alt-left",content:'<path d="M448 384 256 256.001l192-128V384zM64 256.001 256 384V128L64 256.001z" />',viewBox:"0 0 512 512"},b={name:"caret-alt-expand",content:'<path d="M128 288h256L256 480 128 288zM256 32 128 224h256.001L256 32z" />',viewBox:"0 0 512 512"},x={name:"arrows-no-change",content:'<path d="M256 160 128 352 0 160h256zm96 0L224 352h256.001L352 160z" />',viewBox:"0 0 512 512"},w={name:"arrow-overflow-down",content:'<path d="M384 160 256 352 128 160h256zM128 96v32h256V96H128z" />',viewBox:"0 0 512 512"},_={name:"chevron-up",content:'<path d="m129.941 353.941 126.06-126.06 126.061 126.06L416 320 256.001 160 96 320l33.941 33.941z" />',viewBox:"0 0 512 512"},z={name:"chevron-right",content:'<path d="m158.059 129.941 126.06 126.06-126.06 126.061L192 416l160-159.999L192 96l-33.941 33.941z" />',viewBox:"0 0 512 512"},C={name:"chevron-down",content:'<path d="m382.059 158.059-126.06 126.06-126.061-126.06L96 192l159.999 160L416 192l-33.941-33.941z" />',viewBox:"0 0 512 512"},k={name:"chevron-left",content:'<path d="m353.941 382.059-126.06-126.06 126.06-126.061L320 96 160 255.999 320 416l33.941-33.941z" />',viewBox:"0 0 512 512"},M={name:"arrow-up",content:'<path d="M384 288h-96v128h-64l-.001-128H128L255.999 96 384 288z" />',viewBox:"0 0 512 512"},O={name:"arrow-right",content:'<path d="M224 384v-96H96v-64h128v-96l192 128-192 128z" />',viewBox:"0 0 512 512"},S={name:"arrow-down",content:'<path d="M128 224h96V96h64l.001 128H384L256.001 416 128 224z" />',viewBox:"0 0 512 512"},H={name:"arrow-left",content:'<path d="M288 128v96h128v64l-128 .001V384L96 256.001 288 128z" />',viewBox:"0 0 512 512"},P={name:"level-down",content:'<path d="M288 192v64h64l-80 128-80-128h64v-64H128v-32h288v32H288z" />',viewBox:"0 0 512 512"},I={name:"level-up",content:'<path d="m128 288 80-128 80 128h-64v64h192v32H192v-96h-64z" />',viewBox:"0 0 512 512"},A={name:"level-to-top",content:'<path d="m128 288 80-128 80 128h-64v64h192v32H192v-96h-64zm288-160H96v32h320v-32z" />',viewBox:"0 0 512 512"},V={name:"col-resize",content:'<path d="M128 255h64v33h-64v64.6L0 271.9l128-80.7V255zm96 225h64V32h-64v448zm288-207.9-128-80.7V256h-64v33h64v63.9l128-80.8z" />',viewBox:"0 0 512 512"},E={name:"arrows-axes",content:'<path d="M352 480v-64H128v64H96v-64H32v-32h64V160H32l80-128 80 128h-64v224h224v-64l128 80-128 80z" />',viewBox:"0 0 512 512"},T={name:"arrows-swap",content:'<path d="M256 160h-64v224h-32V160H96l80-128 80 128zm96 192V128h-32v224h-64l80 128 80-128h-64z" />',viewBox:"0 0 512 512"},B={name:"drag-and-drop",content:'<path d="m32 128 192 112L32 352V128zm224 96v32h224v-32H256z" />',viewBox:"0 0 512 512"},j={name:"categorize",content:'<path d="M32 32v192l160-96L32 32zm0 448V288l160 96-160 96zM192 64h288v32H192V64zm0 96h288v32H192v-32zm0 160h288v32H192v-32zm0 96h288v32H192v-32z" />',viewBox:"0 0 512 512"},L={name:"grid",content:'<path d="M32 32h128v128H32V32zm160 448h128V352H192v128zm-160 0h128V352H32v128zm0-160h128V192H32v128zm160 0h128V192H192v128zM352 32v128h128V32H352zm0 288h128V192H352v128zM192 160h128V32H192v128zm160 320h128V352H352v128z" />',viewBox:"0 0 512 512"},R={name:"grid-layout",content:'<path d="M32 32h96v96H32V32zm128 0v96h320V32H160zM32 288h96v-96H32v96zm128 0h320v-96H160v96zM32 448h96v-96H32v96zm128 0h320v-96H160v96z" />',viewBox:"0 0 512 512"},D={name:"group",content:'<path d="M32 256h192v192H32V256zm0-32h192V32H32v192zm224 224h192V256H256v192zm0-416v192h192V32H256z" />',viewBox:"0 0 512 512"},N={name:"ungroup",content:'<path d="M32 256h192v192H32V256zm32-64h128V64H64v128zm224 224h128V288H288v128zM256 32v192h192V32H256z" />',viewBox:"0 0 512 512"},F={name:"handle-drag",content:'<path d="M160 64h64v384h-64V64zm96 0v384h64V64h-64z" />',viewBox:"0 0 512 512"},U={name:"layout",content:'<path d="M192 416h256v64H192v-64zm0-32h256v-64H192v64zM32 480h128V128H32v352zm160-288h256v-64H192v64zm0 96h256v-64H192v64zM32 0v96h416V0H32z" />',viewBox:"0 0 512 512"},W={name:"layout-1-by-4",content:'<path d="M32 0h192v480H32V0zm224 0v96h192V0H256zm0 224h192v-96H256v96zm0 128h192v-96H256v96zm0 128h192v-96H256v96z" />',viewBox:"0 0 512 512"},G={name:"layout-2-by-2",content:'<path d="M32 224h192V0H32v224zm224 0h192V0H256v224zM32 480h192V256H32v224zm224 0h192V256H256v224z" />',viewBox:"0 0 512 512"},K={name:"layout-side-by-side",content:'<path d="M32 384h416v96H32v-96zm0-32h416v-96H32v96zm0-128h416v-96H32v96zM32 0v96h416V0H32z" />',viewBox:"0 0 512 512"},X={name:"layout-stacked",content:'<path d="M32 256h192v96H32v-96zm0 224h192v-96H32v96zm224-128h192v-96H256v96zM32 0v224h416V0H32zm224 480h192v-96H256v96z" />',viewBox:"0 0 512 512"},Z={name:"columns",content:'<path d="M64 32h96v448H64V32zm128 448h96V32h-96v448zM320 32v448h96V32h-96z" />',viewBox:"0 0 512 512"},Y={name:"rows",content:'<path d="M480 64v96H32V64h448zM32 192v96h448v-96H32zm448 128H32v96h448v-96z" />',viewBox:"0 0 512 512"},q={name:"reorder",content:'<path d="M480 128v64H32v-64h448zM32 224v64h448v-64H32zm448 96H32v64h448v-64z" />',viewBox:"0 0 512 512"},Q={name:"menu",content:'<path d="M480 32v96H32V32h448zM32 192v96h448v-96H32zm448 160H32v96h448v-96z" />',viewBox:"0 0 512 512"},J={name:"more-vertical",content:'<path d="M240 128c26.4 0 48-21.6 48-48s-21.6-48-48-48-48 21.6-48 48 21.6 48 48 48zm0 64c-26.4 0-48 21.6-48 48s21.6 48 48 48 48-21.6 48-48-21.6-48-48-48zm0 160c-26.4 0-48 21.6-48 48s21.6 48 48 48 48-21.6 48-48-21.6-48-48-48z" />',viewBox:"0 0 512 512"},$={name:"more-horizontal",content:'<path d="M128 240c0-26.4-21.6-48-48-48s-48 21.6-48 48 21.6 48 48 48 48-21.6 48-48zm64 0c0 26.4 21.6 48 48 48s48-21.6 48-48-21.6-48-48-48-48 21.6-48 48zm160 0c0 26.4 21.6 48 48 48s48-21.6 48-48-21.6-48-48-48-48 21.6-48 48z" />',viewBox:"0 0 512 512"},tt={name:"overlap",content:'<path d="M320 320V64H64v256h256zM192 448h256V192h-96v160H192v96z" />',viewBox:"0 0 512 512"},et={name:"home",content:'<path d="M480 256c0 17.7-14.3 32-32 32-9.1 0-17.4-3.8-23.2-10l-8.8-8.7V416c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-96h-64v96c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32V268.6l-8.3 8.9C81.8 284 73.4 288 64 288c-17.7 0-32-14.3-32-32 0-8.5 3.3-16.1 8.6-21.9l.2-.2 1-1 191-191.3 1-1c5.8-5.5 13.6-8.9 22.2-8.9 9.1 0 17.3 3.8 23.1 9.9L470.3 233l.7.7.3.3c5.4 5.8 8.7 13.5 8.7 22z" />',viewBox:"0 0 512 512"},ot={name:"arrows-left-right",content:'<path d="m512 240-128-80v64H128v-64L0 240l128 80v-64h256v64z" />',viewBox:"0 0 512 512"},nt={name:"arrows-top-bottom",content:'<path d="m240 512 80-128h-64V128h64L240 0l-80 128h64v256h-64z" />',viewBox:"0 0 512 512"},rt={name:"border-radius-bottom-left",content:'<path d="M384 368c0 8.8-7.2 16-16 16h-64c-97 0-176-79-176-176v-64c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 79.4 64.6 144 144 144h64c8.8 0 16 7.2 16 16z" />',viewBox:"0 0 512 512"},it={name:"border-radius-bottom-right",content:'<path d="M368 128c8.8 0 16 7.2 16 16v64c0 97-79 176-176 176h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16h64c79.4 0 144-64.6 144-144v-64c0-8.8 7.2-16 16-16z" />',viewBox:"0 0 512 512"},at={name:"border-radius-top-left",content:'<path d="M144 384c-8.8 0-16-7.2-16-16v-64c0-97 79-176 176-176h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-79.4 0-144 64.6-144 144v64c0 8.8-7.2 16-16 16z" />',viewBox:"0 0 512 512"},st={name:"border-radius-top-right",content:'<path d="M128 144c0-8.8 7.2-16 16-16h64c97 0 176 79 176 176v64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-64c0-79.4-64.6-144-144-144h-64c-8.8 0-16-7.2-16-16z" />',viewBox:"0 0 512 512"},ct={name:"border-radius",content:'<path d="M64 32h96v32H64v96H32V32h32zm384 416h-96v32h128V352h-32v96zM352 32v32h96v96h32V32H352zM64 352H32v128h128v-32H64v-96z" />',viewBox:"0 0 512 512"},lt={name:"border-style-bottom",content:'<path d="M96 480v-64h320v64H96zm1-416h320V32H97v32zM64 416V96H32v320h32zm416 0V96h-32v320h32z" />',viewBox:"0 0 512 512"},ht={name:"border-style-left",content:'<path d="M32 96h64v320H32V96zm416 1v320h32V97h-32zM96 64h320V32H96v32zm0 416h320v-32H96v32z" />',viewBox:"0 0 512 512"},pt={name:"border-style-right",content:'<path d="M480 416h-64V96h64v320zm-416-1V95H32v320h32zm352 33H96v32h320v-32zm0-416H96v32h320V32z" />',viewBox:"0 0 512 512"},ut={name:"border-style-top",content:'<path d="M416 32v64H96V32h320zm-1 416H95v32h320v-32zm33-352v320h32V96h-32zM32 96v320h32V96H32z" />',viewBox:"0 0 512 512"},vt={name:"border-style",content:'<path d="M32 96h32v320H32zm416 1h32v320h-32zM96 32h320v32H96zm0 416h320v32H96z" />',viewBox:"0 0 512 512"},dt={name:"box-sizing",content:'<path d="M32 0H0v480h480V0H32zm416 448H32V32h416v416zm-96-320h-32V96h32v32zM96 192H64v-32h32v32zm0-64H64V96h32v32zm64 0h-32V96h32v32zm64 0h-32V96h32v32zm64 0h-32V96h32v32zM96 256H64v-32h32v32zm320-128h-32V96h32v32zm0 128h-32v-32h32v32zm0-64h-32v-32h32v32zM96 384H64v-32h32v32zm256 0h-32v-32h32v32zm-192 0h-32v-32h32v32zm64 0h-32v-32h32v32zm64 0h-32v-32h32v32zm128 0h-32v-32h32v32zM96 320H64v-32h32v32zm320 0h-32v-32h32v32z" />',viewBox:"0 0 512 512"},ft={name:"chevron-double-down",content:'<path d="M382.1 224 256 350.1 129.9 224 96 257.9l160 160 160-160-33.9-33.9zm0-128L256 222.1 129.9 96 96 129.9l160 160 160-160L382.1 96z" />',viewBox:"0 0 512 512"},mt={name:"chevron-double-left",content:'<path d="M289 383 162.9 257 289 130.9 255 97 95 257l160 160 34-34zm128 0L290.9 257 417 130.9 383 97 223 257l160 160 34-34z" />',viewBox:"0 0 512 512"},yt={name:"chevron-double-right",content:'<path d="M223 130.9 349.1 257 223 383l34 34 160-160L257 97l-34 33.9zm-128 0L221.1 257 95 383l34 34 160-160L129 97l-34 33.9z" />',viewBox:"0 0 512 512"},gt={name:"chevron-double-up",content:'<path d="m129.9 289.9 126.1-126L382.1 290l33.9-34L256 96 96 256l33.9 33.9zm0 128 126.1-126L382.1 418l33.9-34-160-160L96 384l33.9 33.9z" />',viewBox:"0 0 512 512"},bt={name:"data-ods",content:'<path d="M415.94 93.61v.33c-.53 33.88-86.26 61.29-191.93 61.29S32.6 127.82 32.07 93.94v-.33C32.06 59.59 118 32 224 32s191.94 27.59 191.94 61.61Zm-.06 46.39v.32c-.53 33.88-86.26 61.29-191.93 61.29S32.54 174.2 32 140.32V140l.12 86.81v.32c.53 33.88 86.26 61.29 191.93 61.29S415.46 261 416 227.13v-.32Zm.12 180-.07-52v.32c-.34 21.73-35.73 40.8-88.93 51.68Zm-256 6.11C85.73 317.69 32.43 295 32 268.32V268l.12 86.81v.32C32.55 381.8 85.8 404.47 160 412.9Zm73.5 123.55q-22.26 0-36.28-14.49t-14-37.76q0-24.57 14.24-39.74t37.72-15.18q22.18 0 35.88 14.53t13.69 38.3q0 24.42-14.2 39.38t-37.05 14.96Zm1-87.08q-12.28 0-19.51 9.22t-7.23 24.39q0 15.39 7.23 24.35a23.15 23.15 0 0 0 18.93 9q12.07 0 19.15-8.71t7.08-24.17q0-16.11-6.86-25.08t-18.78-9Zm68.9 85.28V344.23h36.71q55.22 0 55.21 50.51 0 24.21-15.06 38.66t-40.15 14.46Zm23.34-84.63v65.69h11.57q15.17 0 23.81-9.1t8.64-24.82q0-14.82-8.56-23.31t-24-8.49Zm82.49 80.65v-23.12a44.75 44.75 0 0 0 13.66 7.91 43.91 43.91 0 0 0 14.89 2.64 33.06 33.06 0 0 0 7.7-.8 18 18 0 0 0 5.49-2.2 9.67 9.67 0 0 0 3.29-3.33 8.29 8.29 0 0 0 1.08-4.15 9 9 0 0 0-1.73-5.42 18.77 18.77 0 0 0-4.74-4.41 49 49 0 0 0-7.12-3.9q-4.11-1.87-8.89-3.83-12.14-5.06-18.1-12.36a27 27 0 0 1-6-17.63 28.05 28.05 0 0 1 3.25-13.91 27.71 27.71 0 0 1 8.85-9.58 39.85 39.85 0 0 1 13-5.53 66.6 66.6 0 0 1 15.61-1.77 93.91 93.91 0 0 1 14.34 1 56.36 56.36 0 0 1 11.53 3v21.6a35.76 35.76 0 0 0-5.68-3.18 44.84 44.84 0 0 0-6.32-2.27 48.64 48.64 0 0 0-6.47-1.34 45.54 45.54 0 0 0-6.1-.43 31.65 31.65 0 0 0-7.23.76 18.18 18.18 0 0 0-5.49 2.13 10.47 10.47 0 0 0-3.47 3.29 7.77 7.77 0 0 0-1.23 4.3 8.27 8.27 0 0 0 1.37 4.66 15.88 15.88 0 0 0 3.91 3.9 40.85 40.85 0 0 0 6.14 3.61q3.61 1.77 8.16 3.65a91.56 91.56 0 0 1 11.17 5.53 39.85 39.85 0 0 1 8.49 6.61 25.82 25.82 0 0 1 5.42 8.42 29.82 29.82 0 0 1 1.88 11q0 8.67-3.29 14.56a26.68 26.68 0 0 1-8.92 9.54 38.57 38.57 0 0 1-13.12 5.24 75.82 75.82 0 0 1-15.79 1.59 88.11 88.11 0 0 1-16.22-1.44 49.18 49.18 0 0 1-13.31-4.34Z" />',viewBox:"0 0 512 512"},xt={name:"non-recurrence",content:'<path d="m321 434.2 47.5 47.5C335.5 501 297 512 256 512 132.3 512 32 411.7 32 288c0-41 11-79.5 30.3-112.6l47.5 47.5c-8.9 19.9-13.8 41.9-13.8 65 0 88.2 71.8 160 160 160 23.1.1 45.2-4.8 65-13.7Zm118.3-17.5c12.9-18.3 23.1-38.7 30.1-60.4 6.9-21.5 10.6-44.5 10.6-68.3 0-40.8-10.9-79.1-30-112l-55.5 32c13.6 23.5 21.5 50.9 21.5 80 0 4.8-.2 9.5-.6 14.2-2.2 24.8-10.1 47.9-22.3 68.2L173.6 150.9c20.3-12.2 43.4-20.1 68.2-22.3 4.7-.4 9.4-.6 14.2-.6v64l160-96L256 0v64c-23.8 0-46.7 3.7-68.3 10.6-21.8 7-42.1 17.2-60.4 30.1L22.6 0 0 22.6 489.4 512l22.6-22.6-72.7-72.7Z" />',viewBox:"0 0 512 512"},wt={name:"display-block",content:'<path d="M32 32h448v32H32zm0 416h448v32H32zm0-64h448V128H32v256zm64-192h320v128H96V192z" />',viewBox:"0 0 512 512"},_t={name:"display-flex",content:'<path d="M32 32v448h448V32H32zm416 416H64V64h384v384zM128 128h96v256h-96zm160 0h96v256h-96z" />',viewBox:"0 0 512 512"},zt={name:"display-inline-flex",content:'<path d="M96 416h320V96H96v320zm32-288h256v256H128V128zm32 32h64v192h-64zm128 0h64v192h-64zM32 32h32v448H32zm416 0h32v448h-32z" />',viewBox:"0 0 512 512"},Ct={name:"droplet-slider",content:'<path d="M192 384v32c-53 0-96-43-96-96h32c0 35.3 28.7 64 64 64zm160-72c0 92.8-71.6 168-160 168S32 404.8 32 312C32 181.3 192 32 192 32s160 149.3 160 280zm-32 0c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-47.8 64.3-73 122.8-73 169 0 75 57.4 136 128 136s128-61 128-136zm128-88h-32v256h32V224zm0-192h-32v64h32V32zm-64 96v64h96v-64h-96z" />',viewBox:"0 0 512 512"},kt={name:"file-report",content:'<path d="M416 32H96a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32Zm0 416H96V64h320Zm-96-96-160 .14V384l160-.14Zm32-64-192 .17V320l192-.17ZM223.15 127.9a64 64 0 1 0 64 64h-64Zm32-32v64h64a64 64 0 0 0-63.99-64Z" />',viewBox:"0 0 512 512"},Mt={name:"gap-column",content:'<path d="M32 32v448h448V32H32zm416 416H64V64h384v384zM96 96h96v320H96zm224 0h96v320h-96z" />',viewBox:"0 0 512 512"},Ot={name:"gap-row",content:'<path d="M480 32H32v448h448V32zM64 448V64h384v384H64zM96 96h320v96H96zm0 224h320v96H96z" />',viewBox:"0 0 512 512"},St={name:"handle-resize-alt",content:'<path d="M480 224v256H224v-64h192V224h64z" />',viewBox:"0 0 512 512"},Ht={name:"handle-resize",content:'<path d="m379.5 475.5-22.6-22.6 96-96 22.6 22.6-96 96zm79.7-208.2-22.6-22.6-191.9 191.9 22.6 22.6 191.9-191.9z" />',viewBox:"0 0 512 512"},Pt={name:"images",content:'<path d="M256 288c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm96-64v192c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32zm-31.8 0c-.1-.1-.1-.1 0 0l-256.1-.1-.1.1v149.9l74.6-70 85.3 80 53.3-50 42.7 40 .3-149.9zm63.8-96H128c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32zm64-64H192c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32z" />',viewBox:"0 0 512 512"},It={name:"letter-space",content:'<path d="m310 336 26 80h48L280 96h-48L128 416h48l26-80h108zm-54-166.2L294.4 288h-76.8L256 169.8zM448 32h32v448h-32zM32 32h32v448H32z" />',viewBox:"0 0 512 512"},At={name:"line-height",content:'<path d="m310 336 26 80h48L280 96h-48L128 416h48l26-80h108zm-54-166.2L294.4 288h-76.8L256 169.8zM32 32h448v32H32zm0 416h448v32H32z" />',viewBox:"0 0 512 512"},Vt={name:"list-latin-big",content:'<path d="M115.1 136H72.6l-7.4 24H32.1L79.3 31.5h29.1L155.9 160h-33.3l-7.5-24zm-35-23.9h27.6L93.8 67.5l-13.7 44.6zM42.1 320V191.5h46.2c16.5 0 29.1 3 37.7 9.1 8.6 6.1 12.9 14.9 12.9 26.4 0 6.6-1.5 12.3-4.6 17-3.1 4.7-7.6 8.2-13.5 10.4 6.7 1.8 11.9 5.1 15.4 9.9 3.6 4.8 5.4 10.7 5.4 17.7 0 12.6-4 22.1-12 28.4-8 6.3-19.8 9.5-35.4 9.7H42.1zm31-74.9h16.2c6.8-.1 11.6-1.3 14.5-3.7 2.9-2.4 4.3-6 4.3-10.7 0-5.4-1.6-9.3-4.7-11.7-3.1-2.4-8.2-3.6-15.1-3.6H73.1v29.7zm0 20.3v30.8h20.3c5.6 0 9.9-1.3 12.9-3.8 3-2.6 4.5-6.2 4.5-10.8 0-10.7-5.3-16.1-16-16.2H73.1zm73 171.1c-.4 8.9-2.8 16.8-7.2 23.7-4.4 6.9-10.6 12.2-18.6 15.9-8 3.8-17.1 5.6-27.3 5.6-16.9 0-30.2-5.5-39.9-16.5s-14.6-26.5-14.6-46.6v-6.4c0-12.6 2.2-23.6 6.6-33.1 4.4-9.4 10.7-16.7 18.9-21.9 8.2-5.1 17.8-7.7 28.6-7.7 15.6 0 28.1 4.1 37.6 12.3 9.5 8.2 14.9 19.5 16.2 33.9h-30.9c-.2-7.8-2.2-13.4-5.9-16.9-3.7-3.4-9.4-5.1-16.9-5.1-7.7 0-13.4 2.9-16.9 8.6-3.6 5.8-5.5 15-5.6 27.6v9.1c0 13.7 1.7 23.5 5.2 29.4 3.4 5.9 9.4 8.8 17.8 8.8 7.1 0 12.6-1.7 16.3-5 3.8-3.4 5.8-8.7 6-16h30.6zM192 96h288v32H192V96zm0 160h288v32H192v-32zm0 160h288v32H192v-32z" />',viewBox:"0 0 512 512"},Et={name:"list-latin-small",content:'<path d="M94.5 152c-1.1-1.9-2-4.8-2.8-8.6-5.5 6.9-13.1 10.3-22.9 10.3-9 0-16.7-2.7-22.9-8.2-6.3-5.4-9.4-12.3-9.4-20.5 0-10.4 3.8-18.2 11.5-23.5 7.6-5.3 18.8-7.9 33.4-7.9h9.2v-5.1c0-8.8-3.8-13.2-11.4-13.2-7.1 0-10.6 3.5-10.6 10.5H38.7c0-9.2 3.9-16.7 11.8-22.5s17.9-8.6 30.1-8.6 21.8 3 28.9 8.9c7.1 5.9 10.7 14.1 10.9 24.4v42.3c.1 8.8 1.5 15.5 4.1 20.1v1.5l-30 .1zm-18.6-19.4c3.7 0 6.8-.8 9.2-2.4 2.4-1.6 4.2-3.4 5.3-5.4v-15.3h-8.6c-10.4 0-15.5 4.6-15.5 13.9 0 2.7.9 4.9 2.7 6.6 1.8 1.7 4.1 2.6 6.9 2.6zM129.4 280c0 15.7-3.2 27.7-9.7 36.1s-15.6 12.6-27.4 12.6c-9.7 0-17.5-3.9-23.5-11.6l-1.2 9.8H41V191.4h29.7v47.7c5.5-6.3 12.7-9.4 21.4-9.4 11.9 0 21.1 4.3 27.5 12.8 6.5 8.5 9.7 20.5 9.7 36l.1 1.5zm-29.8-1.9c0-9.2-1.2-15.7-3.7-19.6-2.4-3.9-6.2-5.9-11.3-5.9-6.7 0-11.4 2.6-13.9 7.7v37.9c2.5 5.1 7.2 7.6 14.1 7.6 7 0 11.4-3.4 13.3-10.2 1-3.4 1.5-9.2 1.5-17.5zM81.1 452.8c4.2 0 7.4-1.1 9.7-3.4s3.4-5.4 3.4-9.5h27.9c0 10.5-3.8 19.1-11.3 25.8-7.5 6.7-17.2 10.1-29 10.1-13.9 0-24.8-4.4-32.8-13.1s-12-20.8-12-36.2v-1.2c0-9.6 1.8-18.2 5.3-25.6 3.6-7.4 8.7-13.1 15.4-17 6.7-4 14.7-6 23.8-6 12.4 0 22.3 3.4 29.6 10.3 7.3 6.9 10.9 16.2 10.9 28H94.2c0-4.9-1.2-8.7-3.6-11.4-2.4-2.6-5.6-4-9.7-4-7.7 0-12.2 4.9-13.5 14.7-.4 3.1-.6 7.4-.6 12.9 0 9.6 1.1 16.2 3.4 19.9s5.9 5.7 10.9 5.7zM192 96h288v32H192V96zm0 160h288v32H192v-32zm0 160h288v32H192v-32z" />',viewBox:"0 0 512 512"},Tt={name:"list-roman-big",content:'<path d="M32 32h32v128H32V32zm0 288h32V192H32v128zm64 0h32V192H96v128zM32 480h32V352H32v128zm64 0h32V352H96v128zm64 0h32V352h-32v128zM128 96h352v32H128V96zm64 160h288v32H192v-32zm64 160h224v32H256v-32zM96 152c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z" />',viewBox:"0 0 512 512"},Bt={name:"list-roman-small",content:'<path d="M32 64h16v96H32V64zm0 256h16v-96H32v96zm32 0h16v-96H64v96zM32 480h16v-96H32v96zm32 0h16v-96H64v96zm32 0h16v-96H96v96zM48 40c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zM48 200c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zM48 360c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zM128 96h352v32H128V96zm32 160h320v32H160v-32zm32 160h288v32H192v-32z" />',viewBox:"0 0 512 512"},jt={name:"list-unordered-outline",content:'<path d="M192 80h288v32H192V80zm0 160h288v32H192v-32zm0 160h288v32H192v-32zM80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 192c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 192c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" />',viewBox:"0 0 512 512"},Lt={name:"list-unordered-square",content:'<path d="M128 160H32V64h96v96zm0 64H32v96h96v-96zm0 160H32v96h96v-96zm64-256h288V96H192v32zm0 160h288v-32H192v32zm0 160h288v-32H192v32z" />',viewBox:"0 0 512 512"},Rt={name:"max-height",content:'<path d="M384 0H96v32h288zm0 479H240.6L320 352h-64V160h64L240 32l-80 128h64v192h-64l79.4 127H96v32h288z" />',viewBox:"0 0 512 512"},Dt={name:"max-width",content:'<path d="M0 96v288h32V96zm479 0v143.4L352 160v64H160v-64L32 240l128 80v-64h192v64l127-79.4V384h32V96z" />',viewBox:"0 0 512 512"},Nt={name:"min-height",content:'<path d="M240 192H96v32h288v-32zm144 96H96v32h288zM160 448h160l-80-128zm64 0h32v64h-32zm32-384V0h-32v64h-64l80 128 80-128z" />',viewBox:"0 0 512 512"},Ft={name:"min-width",content:'<path d="M192 240v144h32V96h-32zm96-144v288h32V96zm160 224V160l-128 80zm0-96h64v32h-64zm-384 0H0v32h64v64l128-80-128-80z" />',viewBox:"0 0 512 512"},Ut={name:"outline-offset",content:'<path d="M448 32H32v448h448V32h-32zm0 416H64V64h384v384zM160 320v32h192V160H160v160zm32-128h128v128H192V192z" />',viewBox:"0 0 512 512"},Wt={name:"outline-width",content:'<path d="M416 32H32v448h448V32h-64zm0 384H96V96h320v320zm-256-32h224V128H128v256h32zm0-224h192v192H160V160z" />',viewBox:"0 0 512 512"},Gt={name:"padding-bottom",content:'<path d="M288.2 352H256v64h64v64H160v-64h64v-64h-32v-64h96.2v64zM160 32h64v96h-32.2v32H288v-32h-32V32h64V0H160v32zm192 192v-32.2h-32V288h32v-32h96v64h32V160h-32v64h-96zm-224 32v32.2h32V192h-32v32H32v-64H0v160h32v-64h96z" />',viewBox:"0 0 512 512"},Kt={name:"padding-left",content:'<path d="M128 288.2V256H64v64H0V160h64v64h64v-32h64v96.2h-64zM448 160v64h-96v-32.2h-32V288h32v-32h96v64h32V160h-32zM256 352h32.2v-32H192v32h32v96h-64v32h160v-32h-64v-96zm-32-224h-32.2v32H288v-32h-32V32h64V0H160v32h64v96z" />',viewBox:"0 0 512 512"},Xt={name:"padding-right",content:'<path d="M352 191.8V224h64v-64h64v160h-64v-64h-64v32h-64v-96.2h64zM32 320v-64h96v32.2h32V192h-32v32H32v-64H0v160h32zm192-192h-32.2v32H288v-32h-32V32h64V0H160v32h64v96zm32 224h32.2v-32H192v32h32v96h-64v32h160v-32h-64v-96z" />',viewBox:"0 0 512 512"},Zt={name:"padding-top",content:'<path d="M191.8 128H224V64h-64V0h160v64h-64v64h32v64h-96.2v-64zM320 448h-64v-96h32.2v-32H192v32h32v96h-64v32h160v-32zM128 256v32.2h32V192h-32v32H32v-64H0v160h32v-64h96zm224-32v-32.2h-32V288h32v-32h96v64h32V160h-32v64h-96z" />',viewBox:"0 0 512 512"},Yt={name:"padding",content:'<path d="M128 288.2V256H32v64H0V160h32v64h96v-32h32v96.2h-32zM448 160v64h-96v-32.2h-32V288h32v-32h96v64h32V160h-32zM256 352h32.2v-32H192v32h32v96h-64v32h160v-32h-64v-96zm-32-224h-32.2v32H288v-32h-32V32h64V0H160v32h64v96z" />',viewBox:"0 0 512 512"},qt={name:"position-bottom",content:'<path d="M32 64v416h448V32H32v32zm416 0v384H64V64h384zM96 320h320v96H96z" />',viewBox:"0 0 512 512"},Qt={name:"position-left",content:'<path d="M448 32H32v448h448V32h-32zm0 416H64V64h384v384zM96 96h96v320H96z" />',viewBox:"0 0 512 512"},Jt={name:"position-right",content:'<path d="M64 480h416V32H32v448h32zm0-416h384v384H64V64zm256 32h96v320h-96z" />',viewBox:"0 0 512 512"},$t={name:"position-top",content:'<path d="M480 448V32H32v448h448v-32zm-416 0V64h384v384H64zM96 96h320v96H96z" />',viewBox:"0 0 512 512"},te={name:"regular-expression",content:'<path d="M442.6 299.7 352 247.4V352h-64V247.4l-90.6 52.3-32-55.4L256 192l-90.6-52.3 32-55.4 90.6 52.3V32h64v104.6l90.6-52.3 32 55.4L384 192l90.6 52.3-32 55.4zM80 384c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" />',viewBox:"0 0 512 512"},ee={name:"replace-all",content:'<path d="M288 288h192v192H288V288zm64-64H224V32h128v192zM320 64h-64v128h64V64zM160 352H96V160h96V96H96c-35.3 0-64 28.7-64 64v192c0 35.3 28.7 64 64 64h64v64l96-96-96-96v64zM448 32v192h32V32h-32zm-32 0h-32v192h32V32z" />',viewBox:"0 0 512 512"},oe={name:"replace-single",content:'<path d="M288 288h192v192H288V288zM32 160v192c0 35.3 28.7 64 64 64h64v64l96-96-96-96v64H96V160h160V96H96c-35.3 0-64 28.7-64 64zM480 32v192H288V32h192zm-32 32H320v128h128V64z" />',viewBox:"0 0 512 512"},ne={name:"report-element",content:'<path d="M480 320V192H160v48H96v-80h256V32H32v128h32v320h32v-48h64v48h256V352H160v48H96V272h64v48ZM64 64h256v64H64Zm128 320h192v64H192v-64Z" />',viewBox:"0 0 512 512"},re={name:"right-double-quotes",content:'<path d="M136 100.2c-57.4 0-104 46.6-104 104s46.6 104 104 104c20.1 0 38.9-5.7 54.8-15.6-14.2 30.5-37.4 55.2-69.2 73.7-44 25.6-89.1 29.6-89.6 29.6l1.3 15.9 1.3 15.9c2.1-.2 51.8-4.4 102-33.2 47.1-27 103.3-81.3 103.3-186.1.1-1.4.1-2.8.1-4.3 0-57.3-46.6-103.9-104-103.9zm344 104c0-57.4-46.6-104-104-104s-104 46.6-104 104 46.6 104 104 104c20.1 0 38.9-5.7 54.8-15.6-14.2 30.5-37.4 55.2-69.2 73.7-44 25.6-89.1 29.6-89.6 29.6l2.6 31.9c2.1-.2 51.8-4.4 102-33.2 47.1-27 103.3-81.3 103.3-186.1.1-1.4.1-2.8.1-4.3z" />',viewBox:"0 0 512 512"},ie={name:"whole-word",content:'<path d="M379 243.6c-2.7-9.3-6.5-17.2-11.7-23.8-5-6.4-11.4-11.4-18.6-15-7.4-3.5-15.9-5.2-25.3-5.2-16.3 0-30 6.9-41.4 20.5V160h-26v192h26v-14.8c10.8 9.8 24.1 14.8 39.7 14.8 8.7 0 16.9-1.8 24.3-5.4 7.5-3.8 14-8.9 19.5-15.5 5.5-6.8 9.7-14.9 12.9-24.4 3-9.6 4.6-20.3 4.6-32.1 0-11.5-1.3-21.8-4-31zm-31.8 73.7c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.3-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.1 9.2 9.3 22.9 9.3 41 0 18.9-3.3 33.3-9.7 42.7zm-139-107.8c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 44.6h26.1c.7-16.2 12.8-24.4 36-24.4 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.4 6.2 5.1 1.5 1.8 2.5 4 3.2 6.6s1.1 5.6 1.4 9.4c.1 3.6.1 8.3.1 13.5h-12.8c-59.3.1-89.1 17.3-89.1 51.5 0 6.4 1.3 12 3.8 17.2 2.4 5.3 5.9 9.6 10.4 13.4 4.4 3.8 9.8 6.7 16 8.7 6.1 2.2 12.7 3.2 20 3.2 20.9 0 51.8-18.6 51.8-18.6V351h26v-97.5c0-22-5.4-36.6-15.8-44zm-10.2 100c-2.3 3.4-5.1 6.3-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8-3.9 1.8-8 3.3-12.2 4.3s-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4.1-8.3-9.8-8.3-17.2 0-20.6 18.9-30.9 56.9-30.9h18v32.5zM448 96h-32v320h32V96zm0-32H64V32h384v32zm0 415.6H64v-32h384v32z" />',viewBox:"0 0 512 512"},ae={name:"data-sds",content:'<path d="M224 152.54c105.6 0 191.4-27.4 191.9-61.3v-.3c0-34-85.9-61.6-191.9-61.6S32.1 56.94 32.1 90.94v.3c.5 33.9 86.3 61.3 191.9 61.3Zm-191.9 71.9c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.5c-.5 33.9-86.3 61.3-191.9 61.3s-191.49-27.4-192-61.29l.1 86.49v.3Zm-.1 41.21.1 86.49v.3c.4 26.7 53.7 49.3 127.9 57.8v-86.8c-74.29-8.4-127.59-31.1-128-57.79Zm320 37.69 105 70-105 70v-52.5H189v-35h163v-52.5Z" />',viewBox:"0 0 512 512"},se={name:"download-light",content:'<path d="M368 256 256 384 144 256h96V32h32v224h96Zm112 192H32v32h448v-32Z" />',viewBox:"0 0 512 512"},ce={name:"eye-slash",content:'<path d="m245.43 358.68 24.92 24.92c-4.75.26-9.54.4-14.34.4-94.7 0-179.7-51.5-224-128 13.19-22.83 30.01-43.43 49.65-61.1l23.01 23.01C91.46 229.29 79.51 242.07 69.8 256c26.33 33.77 54.15 53.86 72.6 65.1 39.18 23.88 77.54 33.37 103.03 37.58m131.42-4.44L480 457.39 457.39 480 345.51 368.12s-.07.03-.1.04L232.2 254.94l.11-.03-39.21-39.21-.03.11-26.8-26.8s.04-.05.06-.08l-7.01-7.01s-.06.03-.09.04l-24.17-24.17s.06-.03.09-.05L32 54.61 54.61 32l111.87 111.87A260.193 260.193 0 0 1 256 128c94.8 0 179.8 51.5 224 128-24 41.53-60.05 75.69-103.15 98.24Zm-7.25-33.14c27.8-16.4 54.1-38.7 72.6-65.1-18.4-26.4-44.8-48.7-72.6-65.1-12.2-7.2-25.1-13.2-38.4-17.9 22.6 20.5 36.8 50.1 36.8 83 0 25.15-8.31 48.37-22.32 67.08l7.01 7.01c5.76-2.76 11.41-5.74 16.91-8.99Z" />',viewBox:"0 0 512 512"},le={name:"display-inline-block",content:'<path d="M448 32h32v448h-32zM32 32h32v448H32zm64 352h320V128H96v256zm64-192h192v128H160V192z" />',viewBox:"0 0 512 512"},he={name:"paper-plane",content:'<path d="M469.783 271.879 54.329 446.734c-13.149 5.534-26.266-8.042-21.225-21.967l48.3-133.404c2.16-5.966 7.298-10.169 13.326-10.901C312.467 256 239.85 263.839 312.467 256c-72.618-7.839 0 0-217.739-24.462-6.027-.732-11.165-4.935-13.325-10.901l-48.3-133.404C28.063 73.308 41.18 59.732 54.33 65.266l415.454 174.855c13.623 5.734 13.623 26.024 0 31.758Z" />',viewBox:"0 0 512 512"},pe={name:"gauge-linear",content:'<path d="M16 164h480v184H16V164ZM90 58h110l-55 74-55-74ZM16 380h36v74H16v-74Zm444 0h36v74h-36v-74Zm-222 0h36v74h-36v-74Zm-111 0h36v36h-36v-36Zm222 0h36v36h-36v-36Z" />',viewBox:"0 0 512 512"},ue={name:"gauge-radial",content:'<path d="M256 16C123.5 16 16 123.5 16 256s107.5 240 240 240 240-107.5 240-240S388.5 16 256 16Zm0 445.7c-113.4 0-205.7-92.3-205.7-205.7 0-113.4 92.3-205.7 205.7-205.7 113.4 0 205.7 92.3 205.7 205.7 0 113.4-92.3 205.7-205.7 205.7Zm0-377.1c94.7 0 171.4 76.7 171.5 171.5h-68.6c0-56.8-46.2-102.9-102.9-102.9-22.2 0-42.8 7-59.6 19l37.4 37.4c6.7-3.2 14.3-5 22.2-5 28.4 0 51.4 23 51.4 51.4s-23 51.4-51.4 51.4-51.4-23-51.4-51.4c0-8 1.8-15.5 5-22.2l-37.4-37.4c-11.9 16.9-19 37.4-19 59.6H84.6c0-41.2 14.5-78.9 38.7-108.5l-12.7-12.7 24.2-24.2 12.7 12.7c29.6-24.2 67.3-38.7 108.5-38.7Z" />',viewBox:"0 0 512 512"},ve={name:"envelope-box",content:'<path d="m377 182.4-88.8 88.8-31.2 29-33.2-29-88.8-88.8c-7.7 2-13.8 8.1-15.8 15.8l73 73-73 73c2 7.7 8.1 13.8 15.8 15.8l73-73 49 44.8 47-44.8 73 73c7.7-2 13.8-8.1 15.8-15.8l-73-73 73-73c-2-7.7-8.1-13.8-15.8-15.8zM448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-32 329.6c0 12.4-10 22.4-22.4 22.4H118.4C106 384 96 374 96 361.6V182.4c0-12.4 10-22.4 22.4-22.4h275.2c12.4 0 22.4 10 22.4 22.4v179.2z" />',viewBox:"0 0 512 512"},de={name:"envelope-link",content:'<path d="M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48zm208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80zm0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16zM32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H32zm23.7 32L224 200.3 392.3 32c11 2.9 19.7 11.6 22.6 22.6L310.6 158.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L288 181.5l-64 64-64-64L55.7 285.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L33.1 54.6C36 43.6 44.7 34.9 55.7 32z" />',viewBox:"0 0 512 512"},fe={name:"envelope",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm23.7 32L256 296.3 424.3 128c11 2.9 19.7 11.6 22.6 22.6L342.6 254.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L320 277.5l-64 64-64-64L87.7 381.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L65.1 150.6c2.9-11 11.6-19.7 22.6-22.6z" />',viewBox:"0 0 512 512"},me={name:"warning-circle",content:'<path d="M256 480c123.7 0 224-100.3 224-224S379.7 32 256 32 32 132.3 32 256s100.3 224 224 224Zm-32-352v160h64V128h-64Zm0 256v-64h64v64h-64Z" />',viewBox:"0 0 512 512"},ye={name:"warning-triangle",content:'<path d="M256 32 0 480h512L256 32Zm-32 160h64v160h-64V192Zm0 256v-64h64v64h-64Z" />',viewBox:"0 0 512 512"},ge={name:"font-grow",content:'<path d="m384 32-96 128h192L384 32ZM222 96h-60L32 480h60l32.4-96h135.2l32.4 96h60L222 96Zm-78 230.4 48-141.7 48 141.7h-96Z" />',viewBox:"0 0 512 512"},be={name:"font-shrink",content:'<path d="m384 160 96-128H288l96 128Zm-152 0h-48L80 480h48l25.9-80h108.2l25.9 80h48L232 160Zm-62.4 192L208 233.9 246.4 352h-76.8Z" />',viewBox:"0 0 512 512"},xe={name:"text-overflow",content:'<path d="M288 304v176h32V304h-32zm0-272v176h32V32h-32zM64 32v448h32V32H64zm288 288v-48H128v-32h224v-48l96 64-96 64z" />',viewBox:"0 0 512 512"},we={name:"text-wrap-arrow",content:'<path d="M64 176v32h384v-32H64Zm0-64v32h384v-32H64Zm0 256v32h160v-32H64Zm0-64v32h160v-32H64Zm0 128v32h160v-32H64Zm288-32v.12c5.22.04 10.43.04 16.04-.12H352Zm94.44-64.64c-1.28 7.68-4.16 15.04-8 22.4-2.06 3.65-4.27 7.06-6.65 10.24-15.2 20.5-36.6 31.17-63.75 32H352v48l-96-64 96-64v48h14.12c18.88 0 33.28-7.68 43.2-23.68 2.24-3.84 3.84-7.68 5.12-11.52 2.24-8.32 2.24-16.96 0-24.96-2.88-10.56-9.28-20.48-18.88-26.88-8.64-6.08-18.24-8.96-28.8-8.96H64v-32h305.32c34.24.32 65.6 24.32 75.2 56.96.96 3.2 1.6 6.08 1.92 9.28 1.92 9.92 2.24 19.52 0 29.12ZM64 48v32h384V48H64Z" />',viewBox:"0 0 512 512"},_e={name:"text-truncate",content:'<path d="M448 32v384h-32V64H95.92L96 480H64V32h384Zm0 416h-32v32h32v-32Zm-64 .08h-31.92V480H384v-31.92Zm-64-.08h-32v32h32v-32Z" />',viewBox:"0 0 512 512"},ze={name:"text-clip",content:'<path d="M64 32v448h32V32H64Zm384 448V32h-32v448h32ZM320 320v-48H128v-32h192v-48l96 64-96 64Z" />',viewBox:"0 0 512 512"},Ce={name:"border-color",content:'<path d="M480 384v96H168l95.9-96H480Zm-80-182.14L121.86 480H32v-89.86L310.14 112 400 201.86Zm-65.28-24.89-22.4-22.4L82.56 384.01l-5.44 5.44 22.72 22.72L128 384.01l206.72-207.04Zm136.02-45.98L426.03 176 336 86.29l45.01-45.02c12.36-12.36 32.33-12.36 45.01 0l44.71 45.02c12.36 12.04 12.36 32.33 0 44.69l.01.01Z" />',viewBox:"0 0 512 512"},ke={name:"border-type",content:'<path d="M479 96H33v64h446V96ZM96 384c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32Zm128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32Zm128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32Zm128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32ZM224 224H32v64h192v-64Zm256 0H288v64h192v-64Z" />',viewBox:"0 0 512 512"},Me={name:"undo",content:'<path d="M479.9 416c-57.7-56.6-136.7-96-223.9-96v128L32 256 256 64v128c122.2 0 221.5 102.4 223.9 224z" />',viewBox:"0 0 512 512"},Oe={name:"redo",content:'<path d="M256 192V64l224 192-224 192V320c-87.2 0-166.2 39.4-223.9 96C34.5 294.4 133.9 192 256 192z" />',viewBox:"0 0 512 512"},Se={name:"arrow-rotate-ccw",content:'<path d="m62 176 55.5 32C103.8 231.6 96 258.9 96 288c0 88.2 71.8 160 160 160s160-71.8 160-160-71.8-160-160-160v64L96 96 256 0v64c123.7 0 224 100.3 224 224S379.7 512 256 512 32 411.7 32 288c0-40.8 10.9-79.1 30-112z" />',viewBox:"0 0 512 512"},He={name:"arrow-rotate-cw",content:'<path d="M480 288c0 123.7-100.3 224-224 224S32 411.7 32 288 132.3 64 256 64V0l160 96-160 96v-64c-88.2 0-160 71.8-160 160s71.8 160 160 160 160-71.8 160-160c0-29.1-7.8-56.4-21.5-80l55.5-32c19.1 32.9 30 71.2 30 112z" />',viewBox:"0 0 512 512"},Pe={name:"arrows-no-repeat",content:'<path d="m321 434.2 47.5 47.5C335.5 501 297 512 256 512 132.3 512 32 411.7 32 288c0-41 11-79.5 30.3-112.6l47.5 47.5c-8.9 19.9-13.8 41.9-13.8 65 0 88.2 71.8 160 160 160 23.1.1 45.2-4.8 65-13.7zm118.3-17.5c12.9-18.3 23.1-38.7 30.1-60.4 6.9-21.5 10.6-44.5 10.6-68.3 0-40.8-10.9-79.1-30-112l-55.5 32c13.6 23.5 21.5 50.9 21.5 80 0 4.8-.2 9.5-.6 14.2-2.2 24.8-10.1 47.9-22.3 68.2L173.6 150.9c20.3-12.2 43.4-20.1 68.2-22.3 4.7-.4 9.4-.6 14.2-.6v64l160-96L256 0v64c-23.8 0-46.7 3.7-68.3 10.6-21.8 7-42.1 17.2-60.4 30.1L22.6 0 0 22.6 489.4 512l22.6-22.6-72.7-72.7z" />',viewBox:"0 0 512 512"},Ie={name:"arrow-rotate-ccw-small",content:'<path d="m101.4 238.6 46.4 12.4c-2.5 9.3-3.8 19-3.8 29 0 61.8 50.2 112 112 112s112-50.2 112-112-50.2-112-112-112v56l-128-80 128-80v56c88.4 0 160 71.6 160 160s-71.6 160-160 160S96 368.4 96 280c0-14.3 1.9-28.2 5.4-41.4z" />',viewBox:"0 0 512 512"},Ae={name:"arrow-rotate-cw-small",content:'<path d="M416 280c0 88.4-71.6 160-160 160S96 368.4 96 280s71.6-160 160-160V64l128 80-128 80v-56c-61.8 0-112 50.2-112 112s50.2 112 112 112 112-50.2 112-112c0-10-1.3-19.7-3.8-29l46.4-12.4c3.5 13.2 5.4 27.1 5.4 41.4z" />',viewBox:"0 0 512 512"},Ve={name:"clock",content:'<path d="M256 128h-32v160h160v-32H256V128zm0-96C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm0 416c-105.9 0-192-86.1-192-192S150.1 64 256 64s192 86.1 192 192-86.1 192-192 192z" />',viewBox:"0 0 512 512"},Ee={name:"calendar",content:'<path d="M416 416H288V288h128v128zm64-352v384c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h64V0h64v32h128V0h64v32h64c17.6 0 32 14.4 32 32zm-32 128H64v255.9l.1.1 383.9-.1V192zm0-127.9c-.1-.1-.1-.1 0 0l-64-.1v32h-64V64H192v32h-64V64H64.1l-.1.1V160h384V64.1z" />',viewBox:"0 0 512 512"},Te={name:"save",content:'<path d="M384 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V128l-96-96zm-64 32v128h-64V64h64zm128 384-383.9.1-.1-.1V64.1l.1-.1H96v160h256V64h18.7l77.3 77.3V448z" />',viewBox:"0 0 512 512"},Be={name:"print",content:'<path d="M448 160h-32V96l-64-64H128c-17.7 0-32 14.3-32 32v96H64c-17.6 0-32 14.4-32 32v160c0 17.6 14.4 32 32 32h32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32v-64h32c17.6 0 32-14.4 32-32V192c0-17.6-14.4-32-32-32zM128 64h192v64h64v64H128V64zm320 256h-64v127.9l-.1.1H128.1l-.1-.1V320H64v-32h384v32zm-288 0h192v32H160v-32zm0 64h160v32H160v-32z" />',viewBox:"0 0 512 512"},je={name:"pencil",content:'<path d="m334.9 86.6 45.3-45.3c12.4-12.4 32.8-12.4 45.3 0l45.3 45.3c12.4 12.4 12.4 32.8 0 45.3l-45.3 45.3-90.6-90.6zm-22.6 22.6L32 389.5V480h90.5l280.3-280.3-90.5-90.5zM99.9 412.1l-22.6-22.6 235-235 22.6 22.6-235 235z" />',viewBox:"0 0 512 512"},Le={name:"trash",content:'<path d="M416 96h-96V64c0-17.6-14.4-32-32-32h-96c-17.6 0-32 14.4-32 32v32H64v64h32v288c0 17.6 14.4 32 32 32h224c17.6 0 32-14.4 32-32V160h32V96zM192 64h95.9l.1.1V96h-96c.1-.1.1-32.1 0-32zm160 384H128.1l-.1-.1V160h32v256h32V160h32v256h32V160h32v256h32V160h32v288z" />',viewBox:"0 0 512 512"},Re={name:"paperclip",content:'<path d="M384 128v256h-32V128c0-52.9-43.1-96-96-96s-96 43.1-96 96v288c0 35.3 28.7 64 64 64s64-28.7 64-64V128c0-17.6-14.4-32-32-32s-32 14.4-32 32v256h-32V128c0-35.3 28.7-64 64-64s64 28.7 64 64v288c0 52.9-43.1 96-96 96s-96-43.1-96-96V128C128 57.4 185.4 0 256 0s128 57.4 128 128z" />',viewBox:"0 0 512 512"},De={name:"paperclip-alt",content:'<path d="M407 452.1c-18.6 18.6-43 27.9-67.5 27.9s-48.9-9.3-67.6-27.9L69.3 249.4c-49.7-49.7-49.7-130.5 0-180.2s130.5-49.7 180.2 0l180.2 180.2-22.7 22.5L226.9 91.8c-37.2-37.2-97.9-37.2-135.1 0-37.2 37.2-37.2 97.9 0 135.1l202.7 202.7c24.8 24.8 65.2 24.8 90.1 0 24.8-24.8 24.8-65.2 0-90.1L181.9 136.8c-12.4-12.4-32.7-12.4-45 0s-12.4 32.7 0 45L317 362l-22.5 22.5-180.2-180.1c-24.8-24.8-24.8-65.2 0-90.1s65.2-24.8 90.1 0L407 317c37.3 37.2 37.3 97.9 0 135.1z" />',viewBox:"0 0 512 512"},Ne={name:"link",content:'<path d="M384 384c-47.4 0-88.7-25.8-110.8-64H384c35.4 0 64-28.6 64-64s-28.7-64-64-64H273.2c22.1-38.2 63.5-64 110.8-64 70.7 0 128 57.3 128 128s-57.3 128-128 128zM96 256c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32zm-32 0c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.4 0-64 28.6-64 64z" />',viewBox:"0 0 512 512"},Fe={name:"unlink",content:'<path d="M384 384c-47.4 0-88.7-25.8-110.8-64H384c35.4 0 64-28.6 64-64s-28.7-64-64-64H273.2c22.1-38.2 63.5-64 110.8-64 70.7 0 128 57.3 128 128s-57.3 128-128 128zM64 256c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.3 0-64 28.6-64 64zM272 97.6V0h-32v97.6c5.2-1 10.5-1.6 16-1.6s10.8.6 16 1.6zm-60.1 11.7-69-69-22.6 22.6 69 69c5.9-9 13.6-16.7 22.6-22.6zm110.8 22.6 69-69-22.6-22.6-69 69c9 5.9 16.7 13.6 22.6 22.6zM256 416c-5.5 0-10.8-.6-16-1.6V512h32v-97.6c-5.2 1-10.5 1.6-16 1.6zm-66.7-35.9-69 69 22.6 22.6 69-69c-9-5.9-16.7-13.6-22.6-22.6zm110.8 22.6 69 69 22.6-22.6-69-69c-5.9 9-13.6 16.7-22.6 22.6z" />',viewBox:"0 0 512 512"},Ue={name:"link-vertical",content:'<path d="M128 384c0-47.4 25.8-88.7 64-110.8V384c0 35.4 28.6 64 64 64s64-28.7 64-64V273.2c38.2 22.1 64 63.5 64 110.8 0 70.7-57.3 128-128 128s-128-57.3-128-128zM256 96c17.7 0 32 14.3 32 32v256c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32zm0-32c-35.4 0-64 28.6-64 64v110.8c-38.2-22.1-64-63.5-64-110.8C128 57.3 185.3 0 256 0s128 57.3 128 128c0 47.4-25.8 88.7-64 110.8V128c0-35.4-28.6-64-64-64z" />',viewBox:"0 0 512 512"},We={name:"unlink-vertical",content:'<path d="M414.4 272H512v-32h-97.6c1 5.2 1.6 10.5 1.6 16s-.5 10.8-1.6 16zm-11.6-60.1 69-69-22.6-22.6-69 69c8.9 5.9 16.6 13.6 22.6 22.6zm-22.7 110.8 69 69 22.6-22.6-69-69c-5.9 9-13.6 16.7-22.6 22.6zM96 256c0-5.5.6-10.8 1.6-16H0v32h97.6c-1-5.2-1.6-10.5-1.6-16zm35.9-66.8-69-69-22.6 22.6 69 69c5.9-8.9 13.6-16.6 22.6-22.6zm-22.6 110.9-69 69 22.6 22.6 69-69c-9-5.9-16.7-13.6-22.6-22.6zM128 384c0-47.4 25.8-88.7 64-110.8V384c0 35.4 28.6 64 64 64s64-28.7 64-64V273.2c38.2 22.1 64 63.5 64 110.8 0 70.7-57.3 128-128 128s-128-57.3-128-128zM256 64c-35.4 0-64 28.6-64 64v110.8c-38.2-22.1-64-63.5-64-110.8C128 57.3 185.3 0 256 0s128 57.3 128 128c0 47.4-25.8 88.7-64 110.8V128c0-35.4-28.6-64-64-64z" />',viewBox:"0 0 512 512"},Ge={name:"lock",content:'<path d="M384 224h-32v-96c0-53-43-96-96-96s-96 43-96 96v96h-32c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V256c0-17.6-14.4-32-32-32zm-192-96c0-35.3 28.7-64 64-64s64 28.7 64 64v96H192v-96zm64 256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" />',viewBox:"0 0 512 512"},Ke={name:"unlock",content:'<path d="M416 224H224v-96c0-53-43-96-96-96s-96 43-96 96v128h32V128c0-35.3 28.7-64 64-64s64 28.7 64 64v96h-32c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V256c0-17.6-14.4-32-32-32zM288 384c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" />',viewBox:"0 0 512 512"},Xe={name:"cancel",content:'<path d="M256 32c-50.3 0-96.8 16.6-134.1 44.6-17.2 12.8-32.4 28.1-45.3 45.3C48.6 159.2 32 205.7 32 256c0 123.7 100.3 224 224 224 50.3 0 96.8-16.6 134.1-44.6 17.2-12.8 32.4-28.1 45.3-45.3 28-37.4 44.6-83.8 44.6-134.1 0-123.7-100.3-224-224-224zm0 384c-88.2 0-160-71.8-160-160 0-32.6 9.8-62.9 26.6-88.2l221.6 221.6C318.9 406.2 288.6 416 256 416zm133.4-71.8L167.8 122.6C193.1 105.8 223.4 96 256 96c88.2 0 160 71.8 160 160 0 32.6-9.8 62.9-26.6 88.2z" />',viewBox:"0 0 512 512"},Ze={name:"cancel-outline",content:'<path d="M256 32c-56.1 0-107.4 20.6-146.7 54.7-8.1 7-15.6 14.6-22.6 22.6C52.6 148.6 32 199.9 32 256c0 123.7 100.3 224 224 224 56.1 0 107.4-20.6 146.7-54.7 8.1-7 15.6-14.6 22.6-22.6C459.4 363.4 480 312.1 480 256c0-123.7-100.3-224-224-224zm0 416c-106 0-192-86-192-192 0-47.2 17.1-90.5 45.4-124L380 402.6c-33.5 28.3-76.8 45.4-124 45.4zm146.6-68L132 109.4C165.5 81.1 208.8 64 256 64c106 0 192 86 192 192 0 47.2-17.1 90.5-45.4 124z" />',viewBox:"0 0 512 512"},Ye={name:"cancel-circle",content:'<path d="m169.4 214.6 128 128c-12.5 6-26.6 9.4-41.4 9.4-52.9 0-96-43.1-96-96 0-14.8 3.4-28.8 9.4-41.4zM256 160c-14.8 0-28.8 3.4-41.4 9.4l128 128c6-12.5 9.4-26.6 9.4-41.4 0-52.9-43.1-96-96-96zm224 96c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224zm-64 0c0-88.2-71.8-160-160-160-32.6 0-62.9 9.8-88.2 26.6-17.9 11.9-33.4 27.3-45.3 45.3C105.8 193.1 96 223.4 96 256c0 88.2 71.8 160 160 160 32.6 0 62.9-9.8 88.2-26.6 17.9-11.9 33.4-27.3 45.3-45.3 16.7-25.2 26.5-55.5 26.5-88.1z" />',viewBox:"0 0 512 512"},qe={name:"check",content:'<path d="M434.7 82.7 480 128 192 416 32 256l45.3-45.3L192 325.5 434.7 82.7z" />',viewBox:"0 0 512 512"},Qe={name:"check-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192zm-32-154-83-83-45 45 128 128 176-176-45-45-131 131z" />',viewBox:"0 0 512 512"},Je={name:"check-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm-32 352L96 256l45-45 83 83 147-147 45 45-192 192z" />',viewBox:"0 0 512 512"},$e={name:"x",content:'<path d="M416 141.3 301.3 256 416 370.7 370.7 416 256 301.3 141.3 416 96 370.7 210.7 256 96 141.3 141.3 96 256 210.7 370.7 96l45.3 45.3z" />',viewBox:"0 0 512 512"},to={name:"x-outline",content:'<path d="M384 338.7 338.7 384 256 301.3 173.3 384 128 338.7l82.7-82.7-82.7-82.7 45.3-45.3 82.7 82.7 82.7-82.7 45.3 45.3-82.7 82.7 82.7 82.7zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192z" />',viewBox:"0 0 512 512"},eo={name:"x-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm128 306.7L338.7 384 256 301.3 173.3 384 128 338.7l82.7-82.7-82.7-82.7 45.3-45.3 82.7 82.7 82.7-82.7 45.3 45.3-82.7 82.7 82.7 82.7z" />',viewBox:"0 0 512 512"},oo={name:"plus",content:'<path d="M288 224V96h-64v128H96v64h128v128h64V288h128v-64H288z" />',viewBox:"0 0 512 512"},no={name:"plus-outline",content:'<path d="M288 288v96h-64v-96h-96v-64h96v-96h64v96h96v64h-96zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192z" />',viewBox:"0 0 512 512"},ro={name:"plus-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm32 256v96h-64v-96h-96v-64h96v-96h64v96h96v64h-96z" />',viewBox:"0 0 512 512"},io={name:"minus",content:'<path d="M96 224v64h320v-64H96z" />',viewBox:"0 0 512 512"},ao={name:"minus-outline",content:'<path d="M128 224h256v64H128v-64zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192z" />',viewBox:"0 0 512 512"},so={name:"minus-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zM128 288v-64h256v64H128z" />',viewBox:"0 0 512 512"},co={name:"sort-asc",content:'<path d="M96 352h320v64H96v-64zm0-128h224v64H96v-64zm0-128h128v64H96V96z" />',viewBox:"0 0 512 512"},lo={name:"sort-desc",content:'<path d="M96 96h320v64H96V96zm0 128h224v64H96v-64zm0 128h128v64H96v-64z" />',viewBox:"0 0 512 512"},ho={name:"sort-clear",content:'<path d="m110.9 224 64 64H96v-64h14.9zM96 416h128v-64H96v64zm214.6-128h9.4v-64h-73.4l-64-64H416V96H118.6l-64-64L32 54.6 457.4 480l22.6-22.6L310.6 288z" />',viewBox:"0 0 512 512"},po={name:"sort-asc-small",content:'<path d="M256 192v224h-32V192h-96L240 64l112 128h-96z" />',viewBox:"0 0 512 512"},uo={name:"sort-desc-small",content:'<path d="M352 288 240 416 128 288h96V64h32v224h96z" />',viewBox:"0 0 512 512"},vo={name:"filter",content:'<path d="M64 64v32l160 160v224l64-64V256L448 96V64H64z" />',viewBox:"0 0 512 512"},fo={name:"filter-clear",content:'<path d="m143.5 64 168.2 168.2L288 256v160l-64 64V256L64 96V64h79.5zm236.1 100.4L448 96V64H279.3l-64-64L192 22l298 298 22-23.3-132.4-132.3z" />',viewBox:"0 0 512 512"},mo={name:"filter-small",content:'<path d="M128 128h256v32l-96 96v96l-64 64V256l-96-96v-32z" />',viewBox:"0 0 512 512"},yo={name:"filter-sort-asc-small",content:'<path d="M448 128v32l-96 96v64l-32 64V256l-96-96v-32h224zM64 224h64v160h32V224h64l-80-96-80 96z" />',viewBox:"0 0 512 512"},go={name:"filter-sort-desc-small",content:'<path d="M448 128v32l-96 96v64l-32 64V256l-96-96v-32h224zM144 384l80-96h-64V128h-32v160H64l80 96z" />',viewBox:"0 0 512 512"},bo={name:"filter-add-expression",content:'<path d="M480 64v32H32V64h448zm-192 96h192v-32H288v32zm0 128h192v-64H288v64zm0 96h192v-32H288v32zm0 64h192v-32H288v32zM96 352h64v-64h64v-64h-64v-64H96v64H32v64h64v64z" />',viewBox:"0 0 512 512"},xo={name:"filter-add-group",content:'<path d="M352 352v32h-32v64h32v32h-64V352h64zm64 0v32h32v64h-32v32h64V352h-64zM160 160H96v64H32v64h64v64h64v-64h64v-64h-64v-64zm128 0h192v-32H288v32zM32 64v32h448V64H32zm256 224h192v-64H288v64z" />',viewBox:"0 0 512 512"},wo={name:"login",content:'<path d="M384 480h96V32h-96v448zM32 224v64h128v96l160-128-160-128v96H32z" />',viewBox:"0 0 512 512"},_o={name:"logout",content:'<path d="M128 32H32v448h96V32zm64 192v64h128v96l160-128-160-128v96H192z" />',viewBox:"0 0 512 512"},zo={name:"download",content:'<path d="M32 384v96h448v-96H32zM288 32h-64v128h-96l128 160 128-160h-96V32z" />',viewBox:"0 0 512 512"},Co={name:"upload",content:'<path d="M32 384v96h448v-96H32zm192-64h64V192h96L256 32 128 192h96v128z" />',viewBox:"0 0 512 512"},ko={name:"hyperlink-open",content:'<path d="M32 480h448V256h-32v192H64V64h192V32H32v448zM320 32l56.9 56.9.5.5L224 242.7l45.3 45.3 153.3-153.4L480 192V32H320z" />',viewBox:"0 0 512 512"},Mo={name:"hyperlink-open-sm",content:'<path d="M96 416h320v-96h-32v64H128V128h64V96H96v320zM256 96h160v160l-57.4-57.4L237.3 320 192 274.7l121.4-121.4-.5-.5L256 96z" />',viewBox:"0 0 512 512"},Oo={name:"launch",content:'<path d="M96 96v320h96v-32h-64V128h256v64h32V96H96zm320 160v160H256l57.4-57.4L192 237.3l45.3-45.3 121.4 121.4.5-.5L416 256z" />',viewBox:"0 0 512 512"},So={name:"window",content:'<path d="M96 96v320h320V96H96zm288 288H128V192h256v192z" />',viewBox:"0 0 512 512"},Ho={name:"window-restore",content:'<path d="M448 32v288h-32V128H160V32h288zM64 192h288v288H64V192zm32 256h224V288H96v160z" />',viewBox:"0 0 512 512"},Po={name:"window-minimize",content:'<path d="M416 288v64H96v-64h320z" />',viewBox:"0 0 512 512"},Io={name:"gear",content:'<path d="m462.7 317.9-41.5-31.4c1.8-9.9 2.8-20.1 2.8-30.5 0-10.4-1-20.6-2.8-30.5l41.5-31.4c6.4-4.9 8.2-13.8 4.2-20.8L433 114.6c-4-7-12.6-9.9-20.1-6.7l-48 20.2c-15.4-13.2-33.3-23.6-52.8-30.5L305.8 46c-1-8-7.8-14-15.9-14h-67.8c-8.1 0-14.9 6-15.9 14l-6.5 51.6c-19.5 6.9-37.4 17.3-52.8 30.5l-48-20.2c-7.4-3.1-16-.2-20.1 6.7l-33.9 58.7c-4 7-2.2 15.9 4.2 20.8l41.5 31.4C89 235.4 88 245.6 88 256c0 10.4 1 20.6 2.8 30.5l-41.5 31.4c-6.4 4.9-8.2 13.8-4.2 20.8L79 397.4c4 7 12.6 9.9 20.1 6.7l48-20.2c15.4 13.2 33.3 23.6 52.8 30.5l6.5 51.6c1 8 7.8 14 15.9 14h67.8c8.1 0 14.9-6 15.9-14l6.5-51.6c19.5-6.9 37.4-17.3 52.8-30.5l48 20.2c7.4 3.1 16 .2 20.1-6.7l33.9-58.7c3.7-7 1.9-15.9-4.6-20.8zM256 340c-46.4 0-84-37.6-84-84s37.6-84 84-84 84 37.6 84 84-37.6 84-84 84z" />',viewBox:"0 0 512 512"},Ao={name:"gears",content:'<path d="m331.9 364.2-29.6-22.4c1.3-7.1 2-14.3 2-21.8 0-7.4-.7-14.7-2-21.8l29.6-22.4c4.6-3.5 5.9-9.8 3-14.8l-24.2-42c-2.9-5-9-7.1-14.3-4.8L262 228.7c-11-9.4-23.8-16.9-37.7-21.8l-4.6-36.9c-.7-5.7-5.6-10-11.3-10H160c-5.8 0-10.6 4.3-11.3 10l-4.6 36.9c-13.9 4.9-26.7 12.4-37.7 21.8l-34.3-14.5c-5.3-2.2-11.5-.2-14.3 4.8l-24.3 42c-2.9 5-1.6 11.3 3 14.8l29.6 22.4c-1.3 7.1-2 14.3-2 21.8 0 7.4.7 14.7 2 21.8l-29.6 22.4c-4.6 3.5-5.9 9.8-3 14.8l24.2 42c2.9 5 9 7.1 14.3 4.8l34.3-14.5c11 9.4 23.8 16.9 37.7 21.8l4.6 36.9c.7 5.7 5.6 10 11.3 10h48.4c5.8 0 10.6-4.3 11.3-10l4.6-36.9c13.9-4.9 26.7-12.4 37.7-21.8l34.3 14.5c5.3 2.2 11.5.2 14.3-4.8l24.2-41.9c3-5 1.8-11.4-2.8-14.9zM184.2 380c-33.1 0-60-26.9-60-60s26.9-60 60-60 60 26.9 60 60-26.9 60-60 60zm293.1-225.5L459.4 141c.8-4.2 1.2-8.6 1.2-13 0-4.5-.4-8.8-1.2-13l17.8-13.4c2.7-2.1 3.5-5.9 1.8-8.9l-14.5-25.2c-1.8-3-5.4-4.2-8.6-2.8l-20.6 8.7c-6.7-5.7-14.3-10.1-22.7-13.1L409.9 38c-.4-3.4-3.3-6-6.8-6h-29c-3.4 0-6.4 2.5-6.8 6l-2.7 22.2c-8.3 2.9-16 7.5-22.7 13.1l-20.6-8.7c-3.2-1.4-6.9-.1-8.6 2.8l-14.5 25.2c-1.8 3-1 6.9 1.8 8.9l17.8 13.4c-.8 4.2-1.2 8.6-1.2 13 0 4.5.4 8.8 1.2 13L300 154.5c-2.7 2.1-3.5 5.9-1.8 8.9l14.5 25.2c1.8 3 5.4 4.2 8.6 2.8l20.6-8.7c6.7 5.7 14.3 10.1 22.7 13.1l2.7 22.2c.4 3.4 3.3 6 6.8 6h29c3.4 0 6.4-2.5 6.8-6l2.7-22.2c8.3-2.9 16-7.5 22.7-13.1l20.6 8.7c3.2 1.4 6.9.1 8.6-2.8l14.5-25.2c1.8-3 1-6.9-1.7-8.9zm-88.7 9.5c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1c19.9 0 36.1 16.2 36.1 36.1-.1 19.9-16.1 36.1-36.1 36.1z" />',viewBox:"0 0 512 512"},Vo={name:"wrench",content:'<path d="M470.7 402.7 306 238.1c9-18.8 14-39.8 14-62.1 0-79.5-64.5-144-144-144-22.2 0-43.3 5-62.1 14l76.4 76.4c12.4 12.4 12.4 32.8 0 45.3l-22.6 22.6c-12.4 12.4-32.8 12.4-45.3 0L46 113.9c-9 18.8-14 39.9-14 62.1 0 79.5 64.5 144 144 144 22.3 0 43.4-5.1 62.2-14.1l164.7 164.7c12.3 12.5 32.7 12.5 45.1.1l22.7-22.7c12.4-12.4 12.4-32.8 0-45.3zM448 425.5 425.4 448 265.8 288.5c8.3-6.7 15.9-14.3 22.6-22.6L448 425.5z" />',viewBox:"0 0 512 512"},Eo={name:"eye",content:'<path d="M256 128c-94.8 0-179.8 51.5-224 128 44.3 76.5 129.3 128 224 128s179.8-51.5 224-128c-44.2-76.5-129.2-128-224-128zm-32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM69.8 256c18.4-26.4 44.8-48.7 72.6-65.1 12.2-7.2 25.1-13.2 38.4-17.9-22.6 20.5-36.8 50.1-36.8 83s14.2 62.5 36.8 83c-13.3-4.7-26.2-10.7-38.4-17.9-27.8-16.4-54.2-38.7-72.6-65.1zm299.8 65.1c-12.2 7.2-25.1 13.2-38.4 17.9 22.6-20.5 36.8-50.1 36.8-83s-14.2-62.5-36.8-83c13.3 4.7 26.2 10.7 38.4 17.9 27.8 16.4 54.2 38.7 72.6 65.1-18.5 26.4-44.8 48.7-72.6 65.1z" />',viewBox:"0 0 512 512"},To={name:"search",content:'<path d="M365.3 320h-22.7l-26.7-26.7C338.5 265.7 352 230.4 352 192c0-88.4-71.6-160-160-160S32 103.6 32 192s71.6 160 160 160c38.4 0 73.7-13.5 101.3-36.1l26.7 26.7v22.7L434.7 480l45.3-45.3L365.3 320zM64 192c0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128S64 262.7 64 192z" />',viewBox:"0 0 512 512"},Bo={name:"zoom-in",content:'<path d="M288 224h-64v64h-64v-64H96v-64h64V96h64v64h64v64zm192 210.7L434.7 480 320 365.3v-22.7l-26.7-26.7C265.7 338.5 230.4 352 192 352c-88.4 0-160-71.6-160-160S103.6 32 192 32s160 71.6 160 160c0 38.4-13.5 73.7-36.1 101.3l26.7 26.7h22.7L480 434.7zM192 320c70.7 0 128-57.3 128-128S262.7 64 192 64 64 121.3 64 192s57.3 128 128 128z" />',viewBox:"0 0 512 512"},jo={name:"zoom-out",content:'<path d="M288 224H96v-64h192v64zm192 210.7L434.7 480 320 365.3v-22.7l-26.7-26.7C265.7 338.5 230.4 352 192 352c-88.4 0-160-71.6-160-160S103.6 32 192 32s160 71.6 160 160c0 38.4-13.5 73.7-36.1 101.3l26.7 26.7h22.7L480 434.7zM192 320c70.7 0 128-57.3 128-128S262.7 64 192 64 64 121.3 64 192s57.3 128 128 128z" />',viewBox:"0 0 512 512"},Lo={name:"arrows-move",content:'<path d="M384 320v-32h-96v96h32l-64 96-64-96h32v-96h-96v32l-96-64 96-64v32h96v-96h-32l64-96 64 96h-32v96h96v-32l96 64-96 64z" />',viewBox:"0 0 512 512"},Ro={name:"calculator",content:'<path d="M64 64v384h384V64H64zm96 352H96v-64h64v64zm0-96H96v-64h64v64zm96 96h-64v-64h64v64zm0-96h-64v-64h64v64zm160 96h-96V256h96v160zm0-224H96V96h320v96z" />',viewBox:"0 0 512 512"},Do={name:"cart",content:'<path d="M192 368c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm144-48c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM128 96V64H32v32h64v192h288v-32H128V96zm32 128h256v-32H160v32zm0-96v32h288v-32H160z" />',viewBox:"0 0 512 512"},No={name:"connector",content:'<path d="M416 112c0 26.51-21.49 48-48 48-20.898 0-38.667-13.359-45.258-32H256v288h-98.742c-6.591 18.641-24.36 32-45.258 32-26.51 0-48-21.49-48-48s21.49-48 48-48c20.898 0 38.667 13.359 45.258 32H224V96h98.742c6.591-18.641 24.36-32 45.258-32 26.51 0 48 21.49 48 48z" />',viewBox:"0 0 512 512"},Fo={name:"plus-sm",content:'<path d="M352 224v64h-64v64h-64v-64h-64v-64h64v-64h64v64h64z" />',viewBox:"0 0 512 512"},Uo={name:"minus-sm",content:'<path d="M352 224v64H160v-64h192z" />',viewBox:"0 0 512 512"},Wo={name:"kpi-status-deny",content:'<path d="M480 256 256 480 32 256 256 32l224 224z" />',viewBox:"0 0 512 512"},Go={name:"kpi-status-hold",content:'<path d="M256 64 32 448h448L256 64z" />',viewBox:"0 0 512 512"},Ko={name:"kpi-status-open",content:'<path d="M480 256c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224z" />',viewBox:"0 0 512 512"},Xo={name:"equal",content:'<path d="M96 288h320v64H96v-64zm0-128v64h320v-64H96z" />',viewBox:"0 0 512 512"},Zo={name:"not-equal",content:'<path d="m290.7 224-37.3 64H416v64H216l-56 96h-48l56-96H96v-64h109.3l37.3-64H96v-64h184l56-96h48l-56 96h88v64H290.7z" />',viewBox:"0 0 512 512"},Yo={name:"less-or-equal",content:'<path d="m318.1 352-160-160 160-160L352 65.9 225.9 192 352 318.1 318.1 352zM128 416v32h256v-32H128z" />',viewBox:"0 0 512 512"},qo={name:"greater-or-equal",content:'<path d="M160 318.1 286.1 192 160 65.9 193.9 32l160 160-160 160-33.9-33.9zM128 416v32h256v-32H128z" />',viewBox:"0 0 512 512"},Qo={name:"divide",content:'<path d="M416 64 192 448h-64L352 64h64z" />',viewBox:"0 0 512 512"},Jo={name:"accessibility",content:'<path d="M208 48c0-26.5 21.5-48 48-48s48 21.5 48 48-21.5 48-48 48-48-21.5-48-48zm240 112v-32H64v32l128 16v80l-32 224h48l32-160h32l32 160h48l-32-224v-80l128-16z" />',viewBox:"0 0 512 512"},$o={name:"barcode-outline",content:'<path d="M96 384H64V128h32v256zm96-256h-64v224h64V128zm64 0h-32v224h32V128zm64 0h-32v224h32V128zm64 0h-32v224h32V128zm64 0h-32v256h32V128zm64-32v320c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h448c17.7 0 32 14.3 32 32zm-32 0H32v320h448V96z" />',viewBox:"0 0 512 512"},tn={name:"barcode",content:'<path d="M480 64H32C14.3 64 0 78.3 0 96v320c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zM96 384H64V128h32v256zm96-32h-64V128h64v224zm64 0h-32V128h32v224zm64 0h-32V128h32v224zm64 0h-32V128h32v224zm64 32h-32V128h32v256z" />',viewBox:"0 0 512 512"},en={name:"barcode-scanner",content:'<path d="M32 96H0V0h96v32H32v64zm0 288H0v96h96v-32H32v-64zM416 0v32h64v64h32V0h-96zm64 448h-64v32h96v-96h-32v64zm-192-32h32V288h-32v128zm32-352h-32v128h32V64zm-64 0h-32v128h32V64zM128 416h64V288h-64v128zm-64 0h32V288H64v128zM192 64h-64v128h64V64zm32 352h32V288h-32v128zM64 64v128h32V64H64zm384 0h-32v128h32V64zm0 352V288h-32v128h32zm-96 0h32V288h-32v128zm32-352h-32v128h32V64zm96 160H32v32h448v-32z" />',viewBox:"0 0 512 512"},on={name:"qr-code-outline",content:'<path d="M192 224v32h-32v-32h32zm-64 64h32v-32h-32v32zm-32-64v32h32v-32H96zm-32 64h32v-32H64v32zm128 0h32v-32h-32v32zm64-64h-32v32h32v-32zm32-32h-32v32h32v-32zm-64-32v32h32v-32h-32zm64-32h-32v32h32v-32zm-64-32v32h32V96h-32zm64-32h-32v32h32V64zm32 192v-32h-32v32h32zm-96 32v32h32v-32h-32zm64-32h-32v32h32v-32zm0 64h-32v32h32v-32zm-64 32v32h32v-32h-32zm32 32v32h32v-32h-32zm-32 64h32v-32h-32v32zm64-96v32h32v-32h-32zm32-32v-32h-32v32h32zm32-32v-32h-32v32h32zm32-64h-32v32h32v-32zm32 64v-32h-32v32h32zm32-64h-32v32h32v-32zm-64 96v-32h-32v32h32zm-32 32v-32h-32v32h32zm0 32h32v-32h-32v32zm32-32h32v-32h-32v32zm64-32v-32h-32v32h32zm-128 64v32h32v-32h-32zm-32 64h32v-32h-32v32zm64 0h32v-32h-32v32zm32-32h32v-32h-32v32zm64-32v-32h-32v32h32zm0 64v-32h-32v32h32zM512 0v512H0V0h512zm-32 32H32v448h448V32zm-32 160H320V64h128v128zm-32-32-.5-64H352v64h64zm-224 32H64V64h128v128zm-32-32-.5-64H96v64h64zm32 288H64V320h128v128zm-32-32-.5-64H96v64h64z" />',viewBox:"0 0 512 512"},nn={name:"qr-code",content:'<path d="M320 0v192h192V0H320zm160 160H352V32h128v128zm-32-32h-64V64h64v64zM0 0v192h192V0H0zm160 160H32V32h128v128zm-32-32H64V64h64v64zM0 320v192h192V320H0zm160 160H32V352h128v128zm-32-32H64v-64h64v64zm32-224h32v32h-32v-32zm0 64h-32v-32h32v32zm-64-64h32v32H96v-32zm-32 32H32v-32h32v32zm32 32H64v-32h32v32zm128 0h-32v-32h32v32zm32-32h-32v-32h32v32zm0-64h32v32h-32v-32zm0 0h-32v-32h32v32zm0-64h32v32h-32v-32zm0 0h-32V96h32v32zm0-64h32v32h-32V64zm0 0h-32V32h32v32zm64 192h-32v-32h32v32zm-96 32h32v32h-32v-32zm64 0h-32v-32h32v32zm0 64h-32v-32h32v32zm-32 32h-32v-32h32v32zm0 0h32v32h-32v-32zm0 64h-32v-32h32v32zm64-64h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h32v32h-32v-32zm64 0h-32v-32h32v32zm32 32h-32v-32h32v32zm32-32h-32v-32h32v32zm-96 32h32v32h-32v-32zm0 64h-32v-32h32v32zm0 0h32v32h-32v-32zm32-32h32v32h-32v-32zm32-32h32v32h-32v-32zm-96 96h32v32h-32v-32zm0 64h-32v-32h32v32zm-32 32h-32v-32h32v32zm192-192h-32v-32h32v32zM352 416h32v32h-32v-32zm0 64h-32v-32h32v32zm64-64h-32v-32h32v32zm32-96h32v32h-32v-32zm0 64h-32v-32h32v32zm-32 32h32v32h-32v-32zm0 64h-32v-32h32v32zm64-64h-32v-32h32v32zm0 64h-32v-32h32v32zm32-32h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32v-32h32v32zM256 512h-32v-32h32v32zm64 0h-32v-32h32v32zm32-32h32v32h-32v-32zm64 0h32v32h-32v-32zm96 32h-32v-32h32v32z" />',viewBox:"0 0 512 512"},rn={name:"qr-code-scanner",content:'<path d="M512 0v96h-32V32h-64V0h96zm-32 448h-64v32h96v-96h-32v64zM64 64h128v128H64V64zm32 96h64V96H96v64zM32 32h64V0H0v96h32V32zm0 224h448v-32H32v32zm0 128H0v96h96v-32H32v-64zM288 96h-32v32h32V96zm-64-32v32h32V64h-32zm224 128H320V64h128v128zm-32-96h-64v64h64V96zm-128 96v-32h-32v32h32zm-32-64h-32v32h32v-32zM64 288h128v128H64V288zm32 96h64v-64H96v64zm192-64h-32v32h32v-32zm-64-32v32h32v-32h-32zm32 128h32v-32h-32v32zm-32-64v32h32v-32h-32zm96-64h-32v32h32v-32zm-32 64v32h32v-32h-32zm64 0v-32h-32v32h32zm-32 64h32v-32h-32v32zm64-128h-32v32h32v-32zm-32 64v32h32v-32h-32zm64 0v-32h-32v32h32zm0 64v-32h-32v32h32zm32-128h-32v32h32v-32zm0 96v-32h-32v32h32z" />',viewBox:"0 0 512 512"},an={name:"barcode-qr-code-scanner",content:'<path d="M256 288h32v128h-32V288zm64 128h64V288h-64v128zm128 0V288h-32v128h32zM32 32h64V0H0v96h32V32zm0 352H0v96h96v-32H32v-64zM416 0v32h64v64h32V0h-96zm64 448h-64v32h96v-96h-32v64zm0-224H32v32h448v-32zM288 64h-32v128h32V64zm96 0h-64v128h64V64zm64 0h-32v128h32V64zM64 64h96v96H64V64zm32 64h32V96H96v32zm128 32h-32v32h32v-32zm0-96h-32v64h32V64zM64 320h96v96H64v-96zm32 64h32v-32H96v32zm96 0v32h32v-64h-32v32zm0-64h32v-32h-32v32z" />',viewBox:"0 0 512 512"},sn={name:"signature",content:'<path d="M32 448h448v32H32v-32zM448 32H288v64h160V32zm-96 340.9L256 224l32-96h160l32 96-96 148.9V416h-32v-43.1zm0-59.1V256h32v57.8l60.8-94.3-19.9-59.5H311.1l-19.9 59.6 60.8 94.2zM78.8 377.3c8.7-10.3 23.9-25.6 37.2-17.3 14.9 9.3 25.1 42.1 56.9 43.8 27.2-.6 18.9-34.6 36.7-33.2 16.6 0 19.5 47.8 46.5 47.9 25.7.1 37.4-14.5 37.3-28 .1-29-62.5-87.7-85.4-98-21.4-9.6-34-2.3-39.7 6-5.3 7.9 9.3 34.5-13.7 41.2-17.3 1.5-29.2-33.2-62.1-33.2S77 354.1 32 352c13.1 6 32.8 42 46.8 25.3z" />',viewBox:"0 0 512 512"},cn={name:"hand",content:'<path d="M442.5 130.7c-15.5-6.7-33.7-.2-41.4 15.1-8.2 21.3-23.3 79.9-25.8 87.6-2.1 6.5-5 12-11.3 9.7-4.7-1.7-3.5-7.2-2.4-12.6l2.7-17 18.1-112.4c2.8-17.4-9-33.8-26.5-36.6-17.4-2.8-33.8 9-36.6 26.5L304 197.9s-2.1 14.1-3 18.7c-1 5.2-1.4 12.3-7.7 11.9-5-.3-5.3-3.8-5.3-7.3V64c0-17.6-14.2-31.9-31.8-32h.1-.3c-17.7 0-32 14.3-32 32v.4c0 1.1.9 140.6.6 149.7-.2 5.4-.7 9.5-6.8 10.3-7.8 1.1-8.6-8-8.6-8l-3.1-20.9v.7L190 90.8v.1c-2.6-17.5-18.9-29.5-36.2-26.9-17.5 2.6-29.5 18.9-26.9 36.2 0 .1 0 .2.1.3l24.8 165.3 2.4 15.9c.5 3.2-.7 6.6-3.3 8.6l-.1.1c-4.1 3.1-10 2.5-13.5-1.4l-12.2-13.2-37.3-41-.1-.1c-11.9-13-32.1-14-45.3-2.1-13 11.9-14 32.1-2.1 45.2l55.7 61s34.1 49 62.5 88.4c28.3 39.3 72.3 52.4 129.5 52.4s113.9-21.8 126.9-95.4c13.7-78.5 6.5-107.9 23.7-150.4 11.6-28.9 15.1-45.8 21.1-63.2 5.4-15.6-1.9-33.3-17.2-39.9z" />',viewBox:"0 0 512 512"},ln={name:"pointer",content:'<path d="m285.5 326.1 43.9 124.4-83.5 29.5-43.8-124.2L128 416V32l256 288-98.5 6.1z" />',viewBox:"0 0 512 512"},hn={name:"stick",content:'<path d="M192 96c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32v32h128V96zm128 160c0 35.3-28.7 64-64 64s-64-28.7-64-64v-96H64v96c0 106 86 192 192 192s192-86 192-192v-96H320v96zm96-192h-64c-17.7 0-32 14.3-32 32v32h128V96c0-17.7-14.3-32-32-32z" />',viewBox:"0 0 512 512"},pn={name:"unstick",content:'<path d="M290.6 131.4c12.4-12.4 12.4-32.6 0-45l-45-45c-12.4-12.4-32.6-12.4-45 0L178 63.8l90.1 90 22.5-22.4zM268.1 334c-24.9 24.9-65.2 24.9-90.1 0s-24.9-65.2 0-90.1l67.5-67.5-90-90.1L88 153.9C13.4 228.5 13.4 349.4 88 424s195.5 74.6 270.1 0l67.5-67.5-90-90.1-67.5 67.6zm202.6-67.5-45-45c-12.4-12.4-32.6-12.4-45 0L358.2 244l90 90 22.5-22.5c12.4-12.4 12.4-32.6 0-45z" />',viewBox:"0 0 512 512"},un={name:"set-column-position",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM192 416H96V96h96v320zm224 0H224v-32h192v32zm0-64H224v-64h192v64zm0-96H224v-64h192v64zm0-96H224V96h192v64z" />',viewBox:"0 0 512 512"},vn={name:"clock-arrow-rotate",content:'<path d="M256 32C132.3 32 32 132.3 32 256h32c0-105.9 86.1-192 192-192s192 86.1 192 192-86.1 192-192 192c-57 0-108.3-25-143.5-64.5L176 320H32v144l57.8-57.8C130.8 451.5 190 480 256 480c123.7 0 224-100.3 224-224S379.7 32 256 32Zm-32 96v160h160v-32H256V128h-32Z" />',viewBox:"0 0 512 512"},dn={name:"play",content:'<path d="M0 512V0l512 256L0 512z" />',viewBox:"0 0 512 512"},fn={name:"pause",content:'<path d="M320 0h160v512H320V0zM32 512h160V0H32v512z" />',viewBox:"0 0 512 512"},mn={name:"stop",content:'<path d="M512 512H0V0h512v512z" />',viewBox:"0 0 512 512"},yn={name:"rewind",content:'<path d="M256 256 512 96v320L256 256zm0 160V96L0 256l256 160z" />',viewBox:"0 0 512 512"},gn={name:"forward",content:'<path d="M0 416V96l256 160L0 416zm512-160L256 96v320l256-160z" />',viewBox:"0 0 512 512"},bn={name:"volume-down",content:'<path d="M0 352h96l128 128V32L96 160H0v192zm288 28V132c55.2 14.2 96 64.3 96 124s-40.8 109.8-96 124z" />',viewBox:"0 0 512 512"},xn={name:"volume-up",content:'<path d="M0 352h96l128 128V32L96 160H0v192zm288 28V132c55.2 14.2 96 64.3 96 124s-40.8 109.8-96 124zm0-380v44.8c45.2 0 88.3 20.8 121.2 58.4C444.6 143.6 464 197.8 464 256s-19.4 112.4-54.8 152.8c-33 37.7-76 58.4-121.2 58.4V512c123.7 0 224-114.6 224-256S411.7 0 288 0z" />',viewBox:"0 0 512 512"},wn={name:"volume-mute",content:'<path d="M96 160 224 32v448L96 352H0V160h96zm416 29.3L466.7 144 400 210.7 333.2 144 288 189.3l66.7 66.7-66.7 66.7 45.3 45.3 66.7-66.7 66.7 66.7 45.3-45.3-66.8-66.7 66.8-66.7z" />',viewBox:"0 0 512 512"},_n={name:"hd",content:'<path d="M480 64H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h448c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32zM256 384h-64v-96h-64v96H64V128h64v96h64v-96h64v256zm210.3-68.9c-5.1 16.2-11.8 29.4-19.8 39.1-8.2 9.8-18.2 17.4-29.8 22.4-11.5 4.9-26.3 7.4-43.9 7.4H288V128h82.6c20.3 0 35.4 2.2 46.1 6.8 10.7 4.6 20.6 12.2 29.5 22.8 8.7 10.5 15.7 24.1 20.6 40.6 4.8 16.2 7.3 36.5 7.3 60.3-.1 21.5-2.7 40.6-7.8 56.6zm-54.2-94.2c2.6 8.5 3.9 20.5 3.9 35.6 0 14.5-1.3 26.3-3.9 35.1-2.5 8.4-5.5 14.4-8.9 18-3.3 3.5-7.5 6-12.8 7.7-3.8 1.2-11.8 2.7-28.3 2.7H336V192h12.9c21.4 0 30.6.9 34.5 1.7 6.9 1.4 12.6 4.1 17.5 8.4 4.9 4.5 8.7 10.8 11.2 18.8z" />',viewBox:"0 0 512 512"},zn={name:"closed-captions",content:'<path d="M480 64H32S0 64 0 96v320c0 32 32 32 32 32h448c32 0 32-32 32-32V96s0-32-32-32zM240 205c-6.1-4.5-13.5-7.8-21.9-10.1-8.5-2.3-17.1-3.5-25.8-3.5-18 0-32.2 5.8-42.6 17.4-10.4 11.6-15.6 27.4-15.6 47.3 0 19.8 5.2 35.4 15.6 46.9 10.4 11.5 24.3 17.2 41.7 17.2 16.1 0 32.3-4.6 47.6-13.8V373c-17.2 7.4-38.2 11-62.1 11-23.4 0-43.6-5-60.6-15.1s-29.9-24.4-38.9-43-13.4-40-13.4-64.3c0-26.1 5-49.4 15-69.7 10-20.4 24.2-36.1 42.5-47.2s39.4-16.7 63.2-16.7c19 0 37.4 2.6 55.3 7.8V205zm208 0c-6.1-4.5-13.5-7.8-21.9-10.1-8.5-2.3-17.1-3.5-25.8-3.5-18 0-32.2 5.8-42.6 17.4-10.4 11.6-15.6 27.4-15.6 47.3 0 19.8 5.2 35.4 15.6 46.9s24.3 17.2 41.7 17.2c16.1 0 32.3-4.6 47.6-13.8V373c-17.2 7.4-38.2 11-62.1 11-23.4 0-43.6-5-60.6-15.1s-29.9-24.4-38.9-43-13.4-40-13.4-64.3c0-26.1 5-49.4 15-69.7 10-20.4 24.2-36.1 42.5-47.2s39.4-16.7 63.2-16.7c19 0 37.4 2.6 55.3 7.8V205z" />',viewBox:"0 0 512 512"},Cn={name:"playlist",content:'<path d="M0 256h320v64H0v-64zM512 64H0V0h512v64zm-128 64.8V397c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V193h96v-65l-128 .8zM0 128v64h320v-64H0z" />',viewBox:"0 0 512 512"},kn={name:"music-notes",content:'<path d="M160 170v-64m0-.2v259c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V162.5l256-59.1v165.4c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V32l-320 73.8z" />',viewBox:"0 0 512 512"},Mn={name:"play-sm",content:'<path d="M96 416V96l320 160L96 416z" />',viewBox:"0 0 512 512"},On={name:"pause-sm",content:'<path d="M288 96h96v320h-96V96zM96 416h96V96H96v320z" />',viewBox:"0 0 512 512"},Sn={name:"stop-sm",content:'<path d="M416 416H96V96h320v320z" />',viewBox:"0 0 512 512"},Hn={name:"heart-outline",content:'<path d="M447.2 96.8c-43.7-43.7-114.7-43.7-158.4 0L256 129.6l-32.8-32.8c-43.7-43.7-114.7-43.7-158.4 0s-43.7 116.3 0 160l32.8 32.8L256 448l158.4-158.4 32.8-32.8c43.7-43.7 43.7-116.3 0-160zm-22.6 137.4L256 402.7 87.4 234.2C72.3 219.1 64 198.7 64 176.8s8.3-42.3 23.4-57.4C102.5 104.3 122.6 96 144 96s41.5 8.3 56.6 23.4l55.4 55.4 55.4-55.4C326.5 104.3 346.6 96 368 96s41.5 8.3 56.6 23.4c15.1 15.1 23.4 35.5 23.4 57.4s-8.3 42.3-23.4 57.4z" />',viewBox:"0 0 512 512"},Pn={name:"heart",content:'<path d="m447.2 256.8-32.8 32.8L256 448 97.6 289.6l-32.8-32.8c-43.7-43.7-43.7-116.3 0-160s114.7-43.7 158.4 0l32.8 32.8 32.8-32.8c43.7-43.7 114.7-43.7 158.4 0s43.7 116.3 0 160z" />',viewBox:"0 0 512 512"},In={name:"star-outline",content:'<path d="M480 202.4 319.1 188 256 32l-63.1 156L32 202.4l122 111.7L117.2 480 256 391.5 394.8 480 358 314.1l122-111.7zM256 353.6l-90.8 57.9 24-108.5-82.1-75.2 108.1-9.7L256 117.3l40.8 100.8 108.1 9.7-82.1 75.2 24.1 108.5-90.9-57.9z" />',viewBox:"0 0 512 512"},An={name:"star",content:'<path d="M256 391.5 117.2 480 154 314.1 32 202.4 192.9 188 256 32l63.1 156L480 202.4 358 314.1 394.8 480 256 391.5z" />',viewBox:"0 0 512 512"},Vn={name:"checkbox",content:'<path d="M64 64v384h384V64H64zm352 352H96V96h320v320z" />',viewBox:"0 0 512 512"},En={name:"checkbox-checked",content:'<path d="M64 64v384h384V64H64zm352 352H96V96h320v320zm-77.3-269.3L384 192 224 352l-96-96 45.3-45.3 50.7 50.7 114.7-114.7z" />',viewBox:"0 0 512 512"},Tn={name:"checkbox-indeterminate",content:'<path d="M128 128h256v256H128V128zM64 64v384h384V64H64zm352 352H96V96h320v320z" />',viewBox:"0 0 512 512"},Bn={name:"checkbox-null",content:'<path d="M192 64h128v32H192V64zm224 0h-64v32h64v64h32V64h-32zm0 256h32V192h-32v128zm0 96h-64v32h96v-96h-32v64zm-224 32h128v-32H192v32zm-96-96H64v96h96v-32H96v-64zm0-160H64v128h32V192zM64 64v96h32V96h64V64H64z" />',viewBox:"0 0 512 512"},jn={name:"circle",content:'<path d="M384 256c0 70.7-57.3 128-128 128s-128-57.3-128-128 57.3-128 128-128 128 57.3 128 128z" />',viewBox:"0 0 512 512"},Ln={name:"radiobutton",content:'<path d="M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64zm0 352c-88.4 0-160-71.6-160-160S167.6 96 256 96s160 71.6 160 160-71.6 160-160 160z" />',viewBox:"0 0 512 512"},Rn={name:"radiobutton-checked",content:'<path d="M351.6 255.3c0 53.2-43.1 96.4-96.4 96.4s-96.4-43.1-96.4-96.4 43.1-96.4 96.4-96.4 96.4 43.2 96.4 96.4zM256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64zm0 352c-88.4 0-160-71.6-160-160S167.6 96 256 96s160 71.6 160 160-71.6 160-160 160z" />',viewBox:"0 0 512 512"},Dn={name:"bell",content:'<path d="M192 416h128c0 35.3-28.7 64-64 64s-64-28.7-64-64zm160-256c0-42-26.9-77.6-64.4-90.7.3-1.7.4-3.5.4-5.3 0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1.8.2 3.6.4 5.3C186.9 82.4 160 118 160 160c0 88.4-43 160-96 160v64h384v-64c-53 0-96-71.6-96-160z" />',viewBox:"0 0 512 512"},Nn={name:"info-circle",content:'<path d="M288 352h32v32H192v-32h32v-96h-32v-32h96v128zm0-224h-64v64h64v-64zm192 128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224zm-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192z" />',viewBox:"0 0 512 512"},Fn={name:"question-circle",content:'<path d="M352 192c0 45.2-23.4 65.9-40.6 81-15.1 13.3-23.4 20.7-23.4 47h-64c0-55.2 27.1-79.2 45.1-95 13.8-12.1 18.9-16.7 18.9-33 0-17.6-14.4-32-32-32s-32 14.4-32 32h-64c0-53 43-96 96-96s96 43 96 96zM224 416h64v-64h-64v64zm256-160c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224zm-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192z" />',viewBox:"0 0 512 512"},Un={name:"exclamation-circle",content:'<path d="M224 128h64v160h-64V128zm0 256h64v-64h-64v64zm256-128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224zm-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192z" />',viewBox:"0 0 512 512"},Wn={name:"camera",content:'<path d="M448 128h-64l-64-64H192l-64 64H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V160c0-17.6-14.4-32-32-32zM256 416c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112zm64-112c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64z" />',viewBox:"0 0 512 512"},Gn={name:"image",content:'<path d="M304 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm144-96H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32zm-.1 272-64-64-80 80L176 224 64 336V96.1l.1-.1h383.8l.1.1-.1 239.9z" />',viewBox:"0 0 512 512"},Kn={name:"image-export",content:'<path d="M384 384v-79.9l-32-32-80 80-128-128-112 112v-240l.1-.1h383.8l.1.1-.1 223.9H448V96c0-17.6-14.4-32-32-32H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h256v-64h96zM272 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm48 288h96v64l96-80-96-80v64h-96v32z" />',viewBox:"0 0 512 512"},Xn={name:"zoom-actual-size",content:'<path d="M0 32v128L128 32H0zm384 0 128 128V32H384zm-260.6 96c-15.1 0-27.4 12.3-27.4 27.4v201.2c0 15.1 12.3 27.4 27.4 27.4h265.2c15.1 0 27.4-12.3 27.4-27.4V155.4c0-15.1-12.3-27.4-27.4-27.4H123.4zM384 160v160l-48-64-48 64-80-96-80 96V160h256zm-96 32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM0 352v128h128L0 352zm512 0L384 480h128V352z" />',viewBox:"0 0 512 512"},Zn={name:"zoom-best-fit",content:'<path d="M388.6 128H123.4c-15.1 0-27.4 12.3-27.4 27.4v201.2c0 15.1 12.3 27.4 27.4 27.4h265.2c15.1 0 27.4-12.3 27.4-27.4V155.4c0-15.1-12.3-27.4-27.4-27.4zM384 320l-48-64-48 64-80-96-80 96V160h256v160zM0 160l96 96-96 96V160zm160 320 96-96 96 96H160zM352 32l-96 96-96-96h192zm160 128v192l-96-96 96-96zm-256 64c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32z" />',viewBox:"0 0 512 512"},Yn={name:"image-resize",content:'<path d="M427.3 404.7 352 329.4V32H32v320h297.4l75.3 75.3L352 480h128V352l-52.7 52.7zM64 320V64h256v233.4L203.3 180.7 256 128H128v128l52.7-52.7L297.4 320H64z" />',viewBox:"0 0 512 512"},qn={name:"crop",content:'<path d="M0 96h64v64H0V96zm448 256v64h64v-64h-64zm-32-224c0-17.6-14.4-32-32-32H192v64h160v320h64V128zM96 384c0 17.6 14.4 32 32 32h192v-64H160V32H96v352z" />',viewBox:"0 0 512 512"},Qn={name:"mirror",content:'<path d="M192 64H32v384h160V64zm-31 352s0 .1 0 0l-96.9.1-.1-.1V96.1l.1-.1H160v320h1zm95 64h-32V32h32v448zm32-416h160v384H288V64z" />',viewBox:"0 0 512 512"},Jn={name:"flip-horizontal",content:'<path d="M448 448H288V64l160 384zm-384 0L224 64v384H64zm128-224-80 192h80V224z" />',viewBox:"0 0 512 512"},$n={name:"flip-vertical",content:'<path d="M64 288h384L64 448V288zm0-224v160h384L64 64zm32 128v-80l192 80H96z" />',viewBox:"0 0 512 512"},tr={name:"rotate",content:'<path d="M256 448c8.2 0 16.2-.6 24-1.8v32.3c-7.9 1-15.9 1.5-24 1.5s-16.1-.5-24-1.5v-32.3c7.8 1.2 15.8 1.8 24 1.8zm-116-7c12.7 9.7 26.6 17.8 41.5 24l16.2-28c-15.1-5.9-29.1-14.1-41.5-24.1L140 441zm-61-78.5c6.3 14.9 14.4 28.8 24 41.5l28-16.2c-10-12.5-18.1-26.4-24.1-41.5L79 362.5zM256 128v64l128-80-128-80v64c-8.1 0-16.1.5-24 1.5-17.7 2.2-34.6 6.8-50.5 13.5-14.9 6.3-28.8 14.4-41.5 24-14 10.6-26.4 23-37 37-9.7 12.7-17.8 26.6-24 41.5-6.7 15.9-11.3 32.8-13.5 50.5-1 7.9-1.5 15.9-1.5 24s.5 16.1 1.5 24h32.3c-1.2-7.8-1.8-15.8-1.8-24s.6-16.2 1.8-24c1.8-11.9 4.9-23.4 9.2-34.3 5.9-15.1 14.1-29.1 24.1-41.5 7.4-9.3 15.8-17.7 25.1-25.1 12.5-10 26.4-18.1 41.5-24.1 10.9-4.3 22.4-7.4 34.3-9.2 7.8-1.2 15.8-1.8 24-1.8zm190.5 136h-32.3c1.2 7.8 1.8 15.8 1.8 24s-.6 16.2-1.8 24h32.3c1-7.9 1.5-15.9 1.5-24s-.5-16.1-1.5-24zm-65.6 123.8 28 16.2c9.7-12.7 17.8-26.6 24-41.5l-28-16.2c-5.8 15.1-14 29.1-24 41.5zM314.3 437l16.2 28c14.9-6.3 28.8-14.4 41.5-24l-16.2-28c-12.4 9.9-26.4 18.1-41.5 24z" />',viewBox:"0 0 512 512"},er={name:"rotate-right",content:'<path d="M320 448V64l160 384H320zm-32 0H32l256-160v160zm-32-102.3L143.6 416H256v-70.3zM64 160v128h32v-96h96v64l96-80-96-80v64H64z" />',viewBox:"0 0 512 512"},or={name:"rotate-left",content:'<path d="M32 448 192 64v384H32zm192-160 256 160H224V288zm32 128h112.4L256 345.7V416zm64-256V96l-96 80 96 80v-64h96v96h32V160H320z" />',viewBox:"0 0 512 512"},nr={name:"brush",content:'<path d="M32 480s46.4-5.6 96-16c22.3-4.7 46.9-14 70.7-37.7 56.9-56.9.2-112.9.2-112.9s-56.7-56.9-113.3-.2c-23.4 23.4-20.1 57.1-19.7 89.8.8 59.7-33.9 77-33.9 77zM470.7 64 448 41.3c-12.4-12.4-32.8-12.4-45.3 0L204.3 239.8c11.5 5.8 20.8 12.2 27.7 17.6 5.3 4.2 9.2 7.7 11.3 9.8l.8.8.8.8c2.1 2.1 5.6 5.9 9.7 11.1 5.4 6.8 11.8 16.2 17.6 27.6l23.5-23.5 174.9-174.9c12.5-12.3 12.5-32.7.1-45.1zM448 86.6 277.4 257.3c-4.8-5.8-8.6-9.9-10.6-11.9-2.3-2.3-6.3-6.1-12-10.7L425.4 64h.1L448 86.6z" />',viewBox:"0 0 512 512"},rr={name:"palette",content:'<path d="m206 256.6 160-160c-2.2-5.7-4.8-11.1-7.9-16.3-24.2-40.8-60.1-66-107.8-75.9-2.3-.5-4.7-1-7.1-1.4C192-5.8 143.1 4.8 96.5 34.6 49.3 64.7 19.2 107.2 6.1 162c-13 54.8-5.2 106.4 23.4 154.6 14.2 23.8 31.3 43.2 51.4 58.4 3.8-25.2 13.4-52 36.4-75 31.3-31.4 64-41.3 88.7-43.4zM288 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-96-32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM64 256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm0-128c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm438.7 12.9L480 118.3c-12.4-12.4-32.8-12.4-45.3 0L281.1 271.9c11.5 5.8 20.8 12.2 27.7 17.6 5.3 4.2 9.2 7.7 11.3 9.8l11.3 12.7c5.4 6.8 11.8 16.2 17.6 27.6l153.5-153.5c12.6-12.4 12.6-32.8.2-45.2zM354.3 289.3c-4.8-5.8-8.6-9.9-10.6-11.9-2.3-2.3-6.3-6.1-12-10.7L457.4 141h.1l22.5 22.5-125.7 125.8zm-78.7 169c-23.8 23.7-48.4 33-70.7 37.7-49.6 10.4-96 16-96 16s34.7-17.3 33.9-77c-.4-32.7-3.7-66.4 19.7-89.8 56.6-56.7 113.3.2 113.3.2s56.7 56-.2 112.9z" />',viewBox:"0 0 512 512"},ir={name:"droplet",content:'<path d="M256 384v32c-53 0-96-43-96-96h32c0 35.3 28.7 64 64 64zm160-72c0 92.8-71.6 168-160 168S96 404.8 96 312C96 181.3 256 32 256 32s160 149.3 160 280zm-32 0c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-47.8 64.3-73 122.8-73 169 0 75 57.4 136 128 136s128-61 128-136z" />',viewBox:"0 0 512 512"},ar={name:"shape-line",content:'<path d="M480 54.6 54.6 480 32 457.4 457.4 32 480 54.6z" />',viewBox:"0 0 512 512"},sr={name:"brightness-contrast",content:'<path d="M165.5 346.5c12.4 12.5 12.4 32.9 0 45.3l-22.6 22.6c-12.5 12.4-32.8 12.4-45.3 0-12.4-12.5-12.4-32.9 0-45.3l22.6-22.6c12.5-12.4 32.9-12.4 45.3 0zM256 128c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v32c0 17.6 14.4 32 32 32zm135.8 37.5 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6c-12.4 12.4-12.4 32.8 0 45.3 12.5 12.4 32.8 12.4 45.3 0zm-271.6 0c12.4 12.4 32.8 12.4 45.3 0 12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0-12.4 12.5-12.4 32.8 0 45.3l22.6 22.6zM128 256c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32s14.4 32 32 32h32c17.6 0 32-14.4 32-32zm263.8 90.5c-12.4-12.4-32.8-12.4-45.3 0-12.4 12.5-12.4 32.8 0 45.3l22.6 22.6c12.4 12.4 32.8 12.4 45.3 0 12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6zM448 224h-32c-17.6 0-32 14.4-32 32s14.4 32 32 32h32c17.6 0 32-14.4 32-32s-14.4-32-32-32zm-96 32c0 53-43 96-96 96s-96-43-96-96 43-96 96-96 96 43 96 96zm-32 0c0-35.3-28.7-64-64-64v128c35.3 0 64-28.7 64-64zm-64 128c-17.6 0-32 14.4-32 32v32c0 17.6 14.4 32 32 32s32-14.4 32-32v-32c0-17.6-14.4-32-32-32z" />',viewBox:"0 0 512 512"},cr={name:"sliders",content:'<path d="M480 96v32H285.3c-6.6 18.6-24.4 32-45.3 32s-38.7-13.4-45.3-32H32V96h162.7c6.6-18.6 24.4-32 45.3-32s38.7 13.4 45.3 32H480zm-112 96c-20.9 0-38.7 13.4-45.3 32H32v32h290.7c6.6 18.6 24.4 32 45.3 32s38.7-13.4 45.3-32H480v-32h-66.7c-6.6-18.6-24.4-32-45.3-32zM176 320c-20.9 0-38.7 13.4-45.3 32H32v32h98.7c6.6 18.6 24.4 32 45.3 32s38.7-13.4 45.3-32H480v-32H221.3c-6.6-18.6-24.4-32-45.3-32z" />',viewBox:"0 0 512 512"},lr={name:"invert-colors",content:'<path d="m320 32-64 48 64 48V96h64v64h-32l48 64 48-64h-32V64h-96V32zM32 64v192h192V64H32zm192 192v192h192V256H224zM64 96h128v128H64V96z" />',viewBox:"0 0 512 512"},hr={name:"transparency",content:'<path d="M64 64v352h352V64H64zm32 32h96v96h96V96h96v96h-96v96h96v96h-96v-96h-96v96H96v-96h96v-96H96V96z" />',viewBox:"0 0 512 512"},pr={name:"grayscale",content:'<path d="M32 64C14.3 64 0 78.3 0 96v320c0 17.7 14.3 32 32 32h416c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32H32zm0 32h416v320H32V96zm48 32c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16zm0 4c6.6 0 12 5.4 12 12v224c0 6.6-5.4 12-12 12s-12-5.4-12-12V144c0-6.6 5.4-12 12-12zm-64 1c6.1 0 11 4.9 11 11v224c0 6.1-4.9 11-11 11s-11-4.9-11-11V144c0-6.1 4.9-11 11-11zm-64 2c5 0 9 4 9 9v224c0 5-4 9-9 9s-9-4-9-9V144c0-5 4-9 9-9zm-64 1c4.4 0 8 3.6 8 8v224c0 4.4-3.6 8-8 8s-8-3.6-8-8V144c0-4.4 3.6-8 8-8zm-64 4c2.2 0 4 1.8 4 4v224c0 2.2-1.8 4-4 4s-4-1.8-4-4V144c0-2.2 1.8-4 4-4z" />',viewBox:"0 0 512 512"},ur={name:"blur",content:'<path d="M384 320c0 64-32 128-128 128-64 0-128-48-128-128 0-96 128-128 128-256 0 0 128 129.1 128 256z" />',viewBox:"0 0 512 512"},vr={name:"sharpen",content:'<path d="M256 32 128 480h256L256 32zm0 116.5L341.6 448H170.4L256 148.5z" />',viewBox:"0 0 512 512"},dr={name:"shapes",content:'<path d="M480 32H160v131.204C86.969 178.029 32 242.594 32 320c0 88.365 71.635 160 160 160 77.406 0 141.972-54.969 156.797-128H480V32zM192 448c-70.692 0-128-57.308-128-128 0-59.643 40.793-109.758 96-123.967 1.173-.302 2.354-.583 3.539-.852.357-.081.717-.156 1.076-.234a125.086 125.086 0 0 1 3.764-.762 126.34 126.34 0 0 1 2.557-.448c.369-.061.736-.125 1.105-.184 2.423-.379 4.869-.69 7.335-.932.379-.037.759-.067 1.139-.101a132.167 132.167 0 0 1 3.913-.29c.872-.051 1.747-.091 2.623-.125.392-.015.782-.033 1.174-.045 1.254-.036 2.512-.06 3.775-.06 70.692 0 128 57.308 128 128 0 1.264-.023 2.521-.06 3.775-.012.393-.03.782-.045 1.174a126.511 126.511 0 0 1-.207 3.922c-.06.874-.13 1.744-.207 2.613-.034.38-.064.761-.102 1.14a127.326 127.326 0 0 1-.933 7.339c-.057.365-.121.728-.181 1.092a128.132 128.132 0 0 1-.683 3.785c-.17.86-.349 1.718-.535 2.571-.075.346-.147.692-.226 1.037a135.047 135.047 0 0 1-.855 3.552c-14.208 55.207-64.323 96-123.966 96zm256-128h-96c0-88.365-71.635-160-160-160V64h256v256z" />',viewBox:"0 0 512 512"},fr={name:"round-corners",content:'<path d="M448 320c0 70.692-57.308 128-128 128H192c-70.692 0-128-57.308-128-128V192c0-70.692 57.308-128 128-128h128c70.692 0 128 57.308 128 128v128z" />',viewBox:"0 0 512 512"},mr={name:"bring-to-front",content:'<path d="M96 128V96h96V64H64v128h32v-64zm224 256h64V128H128v256h192zm96-64v96h-96v32h128V320h-32z" />',viewBox:"0 0 512 512"},yr={name:"bring-to-back",content:'<path d="M128 192h64V64H64v128h64zM96 96h64v64H96V96zm192 192h96V128H224v96h-96v160h160v-96zm128 32h-96v128h128V320h-32zm0 96h-64v-64h64v64z" />',viewBox:"0 0 512 512"},gr={name:"bring-forward",content:'<path d="M448 192v256H192V320H64V64h256v128h128zm-32 32h-96v96h-96v96h192V224z" />',viewBox:"0 0 512 512"},br={name:"bring-backward",content:'<path d="M192 192v256h256V192H192zm224 224H224V224h192v192zM320 64H64v256h96V160h160V64z" />',viewBox:"0 0 512 512"},xr={name:"align-self-start",content:'<path d="M31 32h32v448H31V32zm288 64H95v128h224V96zm128 192v128H95V288h352zm-32 32H127v64h288v-64z" />',viewBox:"0 0 512 512"},wr={name:"align-self-center",content:'<path d="M255 288v-64h96V96h-96V32h-32v64h-96v128h96v64H63v128h160v64h32v-64h160V288H255zm128 96H95v-64h288v64z" />',viewBox:"0 0 512 512"},_r={name:"align-self-end",content:'<path d="M64 416h352V288H64v128zm32-96h288v64H96v-64zm96-224h224v128H192V96zm288-64v448h-32V32h32z" />',viewBox:"0 0 512 512"},zr={name:"align-self-start-alt",content:'<path d="M95 96h128v224H95V96zm192 0h128v352H287V96zm32 320h64V128h-64v288zM31 32v32h448V32H31z" />',viewBox:"0 0 512 512"},Cr={name:"align-self-center-alt",content:'<path d="M415 224V64H287v160h-64v-96H95v96H31v32h64v96h128v-96h64v160h128V256h64v-32h-64zm-32 0v160h-64V96h64v128z" />',viewBox:"0 0 512 512"},kr={name:"align-self-end-alt",content:'<path d="M479 449v32H31v-32h448zM223 193H95v224h128V193zm192 224H287V65h128v352zM383 97h-64v288h64V97z" />',viewBox:"0 0 512 512"},Mr={name:"thumbnails-up",content:'<path d="M352 32h96v96h-96V32zm-160 0h96v96h-96V32zM32 32h96v96H32V32zm0 160h416v256H32V192z" />',viewBox:"0 0 512 512"},Or={name:"thumbnails-right",content:'<path d="M352 352h96v96h-96v-96zm0-160h96v96h-96v-96zm0-160h96v96h-96V32zM32 32h256v416H32V32z" />',viewBox:"0 0 512 512"},Sr={name:"thumbnails-down",content:'<path d="M352 352h96v96h-96v-96zm-160 0h96v96h-96v-96zm-160 0h96v96H32v-96zm0-320h416v256H32V32z" />',viewBox:"0 0 512 512"},Hr={name:"thumbnails-left",content:'<path d="M32 32v96h96V32H32zm160 0v416h256V32H192zM32 192v96h96v-96H32zm0 160v96h96v-96H32z" />',viewBox:"0 0 512 512"},Pr={name:"fullscreen",content:'<path d="M0 32h160v64H64v96H0V32zm64 288H0v160h160v-64H64v-96zM352 32v64h96v96h64V32H352zm96 384h-96v64h160V320h-64v96z" />',viewBox:"0 0 512 512"},Ir={name:"fullscreen-exit",content:'<path d="M160 32H96v96H0v64h160V32zM96 480h64V320H0v64h96v96zm416-288v-64h-96V32h-64v160h160zm-96 192h96v-64H352v160h64v-96z" />',viewBox:"0 0 512 512"},Ar={name:"droplet-slash",content:'<path d="m317.9 431 23.2 23.2C316.5 470.6 287.3 480 256 480c-88.4 0-160-75.2-160-168 0-27.8 7.2-56.4 18.6-84.2l24.8 24.8C131.9 274 128 293.9 128 312c0 75 57.4 136 128 136 22.4 0 43.5-6.2 61.9-17zM256 416v-32c-35.3 0-64-28.7-64-64h-32c0 53 43 96 96 96zm224 41.4L457.4 480 32 54.6 54.6 32l108.7 108.7C207 77.7 256 32 256 32s160 149.3 160 280c0 24.1-4.9 47.1-13.6 67.8l77.6 77.6zM384 312c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-1.4 1.9-2.7 3.7-4.1 5.6-.8 1.1-1.5 2.1-2.3 3.2l-1.5 2.1-3 4.2c-.2.3-.4.5-.6.8-1 1.5-2.1 3-3.1 4.5-.1.1-.1.2-.2.3l191.2 191.2c.5-1.6 1-3.3 1.4-4.9 0-.2.1-.4.1-.5.4-1.5.8-2.9 1.1-4.4.1-.3.1-.6.2-.9.3-1.4.6-2.7.9-4.1.1-.4.2-.8.2-1.2.2-1.3.5-2.6.7-3.9.1-.5.2-1 .2-1.5.2-1.2.3-2.5.5-3.7.1-.5.1-1.1.2-1.6l.3-3.6c0-.6.1-1.1.1-1.7.1-1.3.2-2.5.2-3.8 0-.5.1-1 .1-1.6.4-1.9.4-3.7.4-5.5z" />',viewBox:"0 0 512 512"},Vr={name:"photos",content:'<path d="M256 288c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm96-64v192c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32zm-31.8 0c-.1-.1-.1-.1 0 0l-256.1-.1-.1.1v149.9l74.6-70 85.3 80 53.3-50 42.7 40 .3-149.9zm63.8-96H128c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32zm64-64H192c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32z" />',viewBox:"0 0 512 512"},Er={name:"align-to-grid",content:'<path d="M320 320H128V128h192v192zM96 0H64v512h32V0zm352 0h-32v512h32V0zm64 64H0v32h512V64zm0 352H0v32h512v-32z" />',viewBox:"0 0 512 512"},Tr={name:"size-to-grid",content:'<path d="M384 384H128V128h256v256zM96 0H64v512h32V0zm352 0h-32v512h32V0zm64 64H0v32h512V64zm0 352H0v32h512v-32z" />',viewBox:"0 0 512 512"},Br={name:"make-same-size",content:'<path d="M288 192v96h-96v-96h96zM240.1 0l-48.4 64H224v64h33V64h31.6L240.1 0zM256 416v-64h-32v64h-32l48 64 48-64h-32zm224-175.9-64-48.4V224h-64v33h64v31.6l64-48.5zM64 224v-32L0 240l64 48v-32h64v-32H64zM128 0H0v128h32V32h96V0zm320 0h-96v32h96v96h32V0h-32zM32 448v-96H0v128h128v-32H32zm416-96v96h-96v32h128V352h-32z" />',viewBox:"0 0 512 512"},jr={name:"make-same-width",content:'<path d="M480 128H0V32h480v96zm-192 96h-96v96h96v-96zm192 48.1-64-48.4V256h-64v33h64v31.6l64-48.5zM64 256v-32L0 272l64 48v-32h64v-32H64zm384 96v96h-96v32h128V352h-32zM32 448v-96H0v128h128v-32H32z" />',viewBox:"0 0 512 512"},Lr={name:"make-same-height",content:'<path d="M128 0v480H32V0h96zm96 192v96h96v-96h-96zM272.1 0l-48.4 64H256v64h33V64h31.6L272.1 0zM288 416v-64h-32v64h-32l48 64 48-64h-32zM448 0h-96v32h96v96h32V0h-32zm0 352v96h-96v32h128V352h-32z" />',viewBox:"0 0 512 512"},Rr={name:"make-horizontal-spacing-equal",content:'<path d="M480 160v160h-96v-64h-96v160h-96V256H96v96H32V128h64v96h96V64h96v160h96v-64h96z" />',viewBox:"0 0 512 512"},Dr={name:"increase-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96h96zM335.7 352l-22.6 22.6 57.4 57.4-57.4 57.4 22.6 22.6 80-80-80-80zM64 432l80 80 22.6-22.6-57.3-57.4 57.4-57.4L144 352l-80 80z" />',viewBox:"0 0 512 512"},Nr={name:"decrease-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96h96zM111.6 352 89 374.6l57.4 57.4L89 489.4l22.6 22.6 80-80-80-80zM288 432l80 80 22.6-22.6-57.3-57.4 57.4-57.4L368 352l-80 80z" />',viewBox:"0 0 512 512"},Fr={name:"remove-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96h96zm-32.5 278.2-22.6-22.6-57.4 57.4-57.4-57.4-22.6 22.6 57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4 57.4-57.4zm-256 0-22.6-22.6-57.4 57.4-57.4-57.4-22.6 22.6 57.4 57.4L31.5 489l22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4 57.4-57.4z" />',viewBox:"0 0 512 512"},Ur={name:"make-vertical-spacing-equal",content:'<path d="M256 320v96h96v64H128v-64h96v-96H64v-96h160v-96h-64V32h160v96h-64v96h160v96H256z" />',viewBox:"0 0 512 512"},Wr={name:"increase-vertical-spacing",content:'<path d="M192 320v96h96v64H64v-64h96v-96H0v-96h160v-96H96V32h160v96h-64v96h160v96H192zm320 48.1-22.6-22.6-57.4 57.3-57.4-57.4-22.6 22.7 80 80 80-80zM432 96l-80 80 22.6 22.6 57.4-57.4 57.4 57.4L512 176l-80-80z" />',viewBox:"0 0 512 512"},Gr={name:"decrease-vertical-spacing",content:'<path d="M191 320v96h96v64H63v-64h96v-96H-1v-96h160v-96H95V32h160v96h-64v96h160v96H191zm160 105.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-80-80-80 80zm80-226.8 80-80L488.4 96 431 153.4 373.6 96 351 118.6l80 80z" />',viewBox:"0 0 512 512"},Kr={name:"remove-vertical-spacing",content:'<path d="M192 320v96h96v64H64v-64h96v-96H0v-96h160v-96H96V32h160v96h-64v96h160v96H192zm320 22.6L489.4 320 432 377.4 374.6 320 352 342.6l57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4 57.4-57.4zm0-288L489.4 32 432 89.4 374.6 32 352 54.6l57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4L512 54.6z" />',viewBox:"0 0 512 512"},Xr={name:"eyedropper",content:'<path d="m461.1 56.9-6.2-6.2c-25-25-65.5-25-90.5 0l-60.8 60.8-4.3-4.3c-6.2-6.2-16.4-6.2-22.6 0l-9.4 9.4c-6.2 6.2-6.2 16.4 0 22.6l4.3 4.3L70.8 344.4c-8.2 8.2-14 18.5-16.8 29.7l-21.5 85.7c-2.2 8.6 3.1 17.4 11.7 19.5 2.6.6 5.2.6 7.8 0l85.7-21.4c11.3-2.8 21.5-8.6 29.7-16.8l200.8-200.8 4.4 4.4c6.2 6.2 16.4 6.2 22.6 0l9.4-9.4c6.2-6.2 6.2-16.4 0-22.6l-4.4-4.4 60.8-60.8c25-25 24.9-65.5.1-90.6zM224 320h-64l144-144 32 32-112 112z" />',viewBox:"0 0 512 512"},Zr={name:"snap-grid",content:'<path d="M480 128V96h-96V0h-32v96h-96V0h-32v96h-96V0H96v96H0v32h96v96H0v32h96v96H0v32h96v96h32v-96h96v96h32v-96h96v96h32v-96h96v-32h-96v-96h96v-32h-96v-96h96zm-352 0h96v96h-96v-96zm0 224v-96h96v96h-96zm224 0h-96v-96h96v96zm0-128h-96v-96h96v96z" />',viewBox:"0 0 512 512"},Yr={name:"snap-to-gridlines",content:'<path d="M160 32H0v416h288V32H160zm-32 384H32v-96h96v96zm0-128H32v-96h96v96zm0-128H32V64h96v96zm128 256h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96zm256 80c0 44.2-35.8 80-80 80h-32v-32h32c26.5 0 48-21.5 48-48s-21.5-48-48-48h-32v-32h32c44.2 0 80 35.8 80 80zm-160-48h32v-32h-32v32zm0 128h32v-32h-32v32z" />',viewBox:"0 0 512 512"},qr={name:"snap-to-snaplines",content:'<path d="M224 128h96V96h-96V32h-32v64h-64V32H96v64H32v32h64v256H32v32h64v64h32v-64h64v64h32v-64h256v-32H224V128zm-32 256h-64V128h64v256zm208-64h-32v-32h32c26.5 0 48-21.5 48-48s-21.5-48-48-48h-32v-32h32c44.2 0 80 35.8 80 80s-35.8 80-80 80zm-48-160h-32v32h32v-32zm-32 160h32v-32h-32v32z" />',viewBox:"0 0 512 512"},Qr={name:"dimensions",content:'<path d="M320 0H0v512h128V128h384V0H320zM32 32h64v64H32V32zm64 352H64v32h32v64H32V320h64v64zm0-192H64v32h32v64H32V128h64v64zm128-96V64h-32v32h-64V32h160v64h-64zm256 0h-64V64h-32v32h-64V32h160v64z" />',viewBox:"0 0 512 512"},Jr={name:"align-self-stretch",content:'<path d="M95 96h320v128H95V96zM31 480h32V32H31v448zm64-192h320v128H95V288zm32 96h256v-64H127v64zM447 32v448h32V32h-32z" />',viewBox:"0 0 512 512"},$r={name:"align-self-stretch-alt",content:'<path d="M223 96v320H95V96h128zM31 480h448v-32H31v32zM415 96v320H287V96h128zm-32 32h-64v256h64V128zM31 32v32h448V32H31z" />',viewBox:"0 0 512 512"},ti={name:"align-items-start",content:'<path d="M319 224H95V96h224v128zM31 480h32V32H31v448zm64-192v128h352V288H95z" />',viewBox:"0 0 512 512"},ei={name:"align-items-center",content:'<path d="M415 416H255v64h-32v-64H63V288h160v-64h-96V96h96V32h32v64h96v128h-96v64h160v128z" />',viewBox:"0 0 512 512"},oi={name:"align-items-end",content:'<path d="M192 96h224v128H192V96zm256-64v448h32V32h-32zM64 416h352V288H64v128z" />',viewBox:"0 0 512 512"},ni={name:"align-items-stretch",content:'<path d="M415 224H95V96h320v128zM31 480h32V32H31v448zM447 32v448h32V32h-32zM96 416h320V288H96v128z" />',viewBox:"0 0 512 512"},ri={name:"align-items-baseline",content:'<path d="M415 224V64H287v160h-64v-96H95v96H31v32h64v96h128v-96h64v160h128V256h64v-32h-64zm-224 96h-64v-64h64v64zm192 64h-64V256h64v128z" />',viewBox:"0 0 512 512"},ii={name:"align-items-start-alt",content:'<path d="M96 96h128v224H96V96zM32 32v32h448V32H32zm256 416h128V96H288v352z" />',viewBox:"0 0 512 512"},ai={name:"align-items-center-alt",content:'<path d="M479 256h-64v160H287V256h-64v96H95v-96H31v-32h64v-96h128v96h64V64h128v160h64v32z" />',viewBox:"0 0 512 512"},si={name:"align-items-end-alt",content:'<path d="M223 417H95V193h128v224zM31 449v32h448v-32H31zM415 65H287v352h128V65z" />',viewBox:"0 0 512 512"},ci={name:"align-items-stretch-alt",content:'<path d="M223 96v320H95V96h128zM31 480h448v-32H31v32zm0-448v32h448V32H31zm256 63v320h128V95H287z" />',viewBox:"0 0 512 512"},li={name:"align-items-baseline-alt",content:'<path d="M255 288v-64h96V96h-96V32h-32v64h-96v128h96v64H63v128h160v64h32v-64h160V288H255zm-32 96H95v-64h128v64zm0-192h-64v-64h64v64z" />',viewBox:"0 0 512 512"},hi={name:"justify-content-start",content:'<path d="M95 96h128v320H95V96zM31 480h32V32H31v448zM255 95v320h128V95H255z" />',viewBox:"0 0 512 512"},pi={name:"justify-content-center",content:'<path d="M63 96h128v320H63V96zm160 384h32V32h-32v448zm64-385v320h128V95H287z" />',viewBox:"0 0 512 512"},ui={name:"justify-content-end",content:'<path d="M128 96h128v320H128V96zm320-64v448h32V32h-32zM288 415h128V95H288v320z" />',viewBox:"0 0 512 512"},vi={name:"justify-content-between",content:'<path d="M63 96h128v320H63V96zm416-64v448h32V32h-32zM319 415h128V95H319v320zM-1 480h32V32H-1v448z" />',viewBox:"0 0 512 512"},di={name:"justify-content-around",content:'<path d="M95 96h128v320H95V96zm384-64v448h32V32h-32zM287 415h128V95H287v320zM-1 480h32V32H-1v448z" />',viewBox:"0 0 512 512"},fi={name:"justify-content-start-alt",content:'<path d="M415 224H95V96h320v128zM31 32v32h448V32H31zm65 352h320V256H96v128z" />',viewBox:"0 0 512 512"},mi={name:"justify-content-center-alt",content:'<path d="M415 192H95V64h320v128zM31 224v32h448v-32H31zm65 192h320V288H96v128z" />',viewBox:"0 0 512 512"},yi={name:"justify-content-end-alt",content:'<path d="M415 257H95V129h320v128zM31 449v32h448v-32H31zm65-32h320V289H96v128z" />',viewBox:"0 0 512 512"},gi={name:"justify-content-between-alt",content:'<path d="M95 64h320v128H95V64zM31 512h448v-32H31v32zm65-64h320V320H96v128zM31 0v32h448V0H31z" />',viewBox:"0 0 512 512"},bi={name:"justify-content-around-alt",content:'<path d="M95 96h320v128H95V96zM31 512h448v-32H31v32zm65-96h320V288H96v128zM31 0v32h448V0H31z" />',viewBox:"0 0 512 512"},xi={name:"file-wrench",content:'<path d="M470.7 480 448 502.7c-12.4 12.4-32.8 12.4-45.1-.1l-93.1-93.1c-11.8 4.2-24.5 6.5-37.8 6.5-61.9 0-112-50.1-112-112 0-13.2 2.3-25.9 6.5-37.6l48.9 48.9c12.4 12.4 32.8 12.4 45.3 0l22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-48.9-48.9c11.8-4.2 24.4-6.5 37.6-6.5 61.9 0 112 50.1 112 112 0 13.2-2.3 25.9-6.5 37.6l93.2 93.1c12.4 12.5 12.4 32.9 0 45.3zm-22.8-23-86.3-86.3c-6.4 8.6-14 16.2-22.6 22.6l86.4 86.3 22.6-22.5v-.1h-.1zM96 64h224v96h96v128h32V128l-96-96H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h160v-32H96V64z" />',viewBox:"0 0 512 512"},wi={name:"bold",content:'<path d="M128 96h115.8c25.3 0 44.2 1.1 56.6 3.2 12.4 2.1 23.6 6.5 33.4 13.2 9.8 6.7 18 15.6 24.6 26.7 6.6 11.1 9.8 23.6 9.8 37.4 0 15-4.1 28.7-12.1 41.2-8.1 12.5-19.1 21.9-32.9 28.2 19.5 5.7 34.5 15.4 45 29s15.7 29.8 15.7 48.2c0 14.6-3.4 28.7-10.2 42.4-6.7 13.8-16 24.8-27.7 33s-26.1 13.3-43.3 15.2c-10.8 1.2-36.7 1.9-78 2.2H128V96zm64 53v74h30.9c25.2 0 40.8-.4 46.9-1.1 11.1-1.3 19.7-5.2 26.1-11.5 6.3-6.3 9.5-14.7 9.5-25 0-9.9-2.7-18-8.2-24.1-5.5-6.2-13.6-10-24.4-11.2-6.4-.7-24.8-1.1-55.2-1.1H192zm0 127.1V362h48.6c23.4 0 38.1-.7 44.5-2 9.6-1.8 17.5-6 23.6-12.8 6.1-6.8 9-15.9 9-27.3 0-9.6-2.3-17.9-7-24.6-4.7-6.7-11.4-11.6-20.3-14.7-8.8-3.1-28-4.6-57.5-4.6l-40.9.1z" />',viewBox:"0 0 512 512"},_i={name:"italic",content:'<path d="m377.2 128 6.8-32H198.8l-6.8 32h59.2l-54.4 256h-62l-6.8 32h185.2l6.8-32h-59.2l54.4-256h62z" />',viewBox:"0 0 512 512"},zi={name:"underline",content:'<path d="M128 416h256v32H128v-32zM320 64v224c0 11.6-3.5 16-10.3 20.3-11.8 7.4-31.3 11.7-53.7 11.7s-41.9-4.3-53.7-11.7c-6.8-4.3-10.3-8.7-10.3-20.3V64h-64v224c0 70.4 64.3 96 128 96s128-25.6 128-96V64h-64z" />',viewBox:"0 0 512 512"},Ci={name:"font-family",content:'<path d="M224 416V160h-95l-.8-64H384v64h-96v256h-64z" />',viewBox:"0 0 512 512"},ki={name:"foreground-color",content:'<path d="M299.5 96h-87.1L96 416h64l23.3-64h145.4l23.3 64h64L299.5 96zm-92.9 192L256 152.2 305.4 288h-98.8z" />',viewBox:"0 0 512 512"},Mi={name:"convert-lowercase",content:'<path d="M480.1 416H436v-36h-.7c-13.8 24-34.1 36-60.8 36-19.7 0-35.1-5.3-46.3-16-11.1-10.7-16.7-24.9-16.7-42.5 0-37.8 21.7-59.9 65.3-66.2l59.4-8.4c0-28.6-13.5-42.8-40.7-42.8-23.8 0-45.4 8.2-64.5 24.7V225c21.1-12.5 45.5-18.8 73.1-18.8 50.6 0 75.9 25 75.9 74.8v135h.1zM436 313.1l-42 5.9c-13 1.7-22.8 4.9-29.4 9.5s-9.9 12.7-9.9 24.3c0 8.5 3 15.4 9.1 20.8s14.2 8.1 24.3 8.1c13.8 0 25.2-4.8 34.3-14.5 9-9.7 13.6-21.9 13.6-36.6v-17.5zM240 416h48L184 96h-48L32 416h48l26-80h108l26 80zM121.6 288 160 169.8 198.4 288h-76.8z" />',viewBox:"0 0 512 512"},Oi={name:"convert-uppercase",content:'<path d="M200.1 416H156v-36h-.7c-13.8 24-34.1 36-60.8 36-19.7 0-35.1-5.3-46.3-16-11.1-10.7-16.7-24.9-16.7-42.5 0-37.8 21.7-59.9 65.3-66.2l59.4-8.4c0-28.6-13.5-42.8-40.7-42.8-23.8 0-45.4 8.2-64.5 24.7V225c21.1-12.5 45.5-18.8 73.1-18.8 50.6 0 75.9 25 75.9 74.8v135h.1zM157 313.1l-42 5.9c-13 1.7-22.8 4.9-29.4 9.5s-9.9 12.7-9.9 24.3c0 8.5 3 15.4 9.1 20.8s14.2 8.1 24.3 8.1c13.8 0 25.2-4.8 34.3-14.5 9-9.7 13.6-21.9 13.6-36.6v-17.5zM432 416h48L376 96h-48L224 416h48l26-80h108l26 80zM313.6 288 352 169.8 390.4 288h-76.8z" />',viewBox:"0 0 512 512"},Si={name:"strikethrough",content:'<path d="M393.9 320c.1-23.9 4.5-41.4 13.5-52.5 9.1-11.1 20.8-16.7 35.3-16.7 9.6 0 17.7 3.1 24.5 9.3 6.8 6.2 11.4 15.4 14.1 27.7l27.9-4.7c-3.3-18.4-10.8-32.7-22.5-42.7s-26.8-15-45.2-15c-14.5 0-28.1 3.6-40.4 11.1-12.4 7.4-21.6 18.5-27.7 33.2-5.9 14.4-8.9 31.2-9.1 50.4h-25.5v-2.2c0-13.2-1.7-25.6-5.1-37.1-3.4-11.5-8.1-21.4-14.2-29.6-6-8.1-13.7-14.5-23-19s-19.2-6.8-29.6-6.8c-18.9 0-34.3 8.2-46.4 24.6v-90H192v160h-45v-25.8c0-13.7-.5-23.3-1.4-28.5-1.7-8.5-4.7-15.5-9-21.1-4.3-5.5-10.9-10.2-19.9-13.8-9-3.6-20.8-5.5-35.3-5.5-14.6 0-27.4 2.1-38.5 6.4-11.1 4.3-19.5 10.4-25.4 18.4-5.8 8-10 18.4-12.6 31.4l28.1 4.1c3.1-13 7.8-22 14.3-27.1s16.4-7.7 29.9-7.7c14.5 0 25.4 3.5 32.7 10.5 5.4 5.1 8.1 14 8.1 26.6 0 1.1 0 3.8-.2 8.1-11 4.1-28 7.7-51.2 10.7-11.4 1.5-19.9 3-25.5 4.7-6.7 2-12.9 4.9-18.5 8.6H0v32h1.2c-.8 3.8-1.2 7.7-1.2 11.8 0 15.2 5 27.8 15 37.6S39.3 416 57.9 416c11.3 0 21.8-1.9 31.6-6s20.1-10.9 30.7-20.6h.1c.8 8.6 2.7 20.3 5.7 26.7h30c-3.6-7-6-18.4-7.3-26.1-1-6-1.6-18.7-1.8-37.9h45v64h26.6V389c11.4 18 27.1 27 47.1 27 20.1 0 37.3-8.5 51.7-25.6 8.6-10.2 14.6-23 18-38.3h31.8c3.3 16 9.4 29.2 18.3 39.5 14.1 16.3 32.7 24.5 55.9 24.5 18.5 0 34.1-6 46.8-17.8 12.1-11.3 19.8-26.7 23.2-46.2h.5v-32H393.9zm-280.7 42.6c-4.1 9-10.4 16.1-19 21.4-8.6 5.2-18.4 7.8-29.5 7.8-11.2 0-19.6-2.8-25.4-8.2-5.8-5.6-8.7-12.4-8.7-20.7 0-3.9.7-7.5 2.1-10.9h83.6c-.7 4.1-1.8 7.7-3.1 10.6zm105.1-43.3c0-22.2 4.6-39.2 13.7-50.9 9.1-11.8 20-17.6 32.5-17.6s23.1 5.6 31.8 17c8.8 11.3 13.1 28.7 13.2 52.3h-91.3c.1-.3.1-.6.1-.8zm77.6 53.6c-9.1 11.8-20 17.7-32.5 17.7-15.5 0-27.7-8-36.7-23.9-2.2-3.9-4-8.8-5.3-14.7H306c-2.4 8.3-5.7 15.3-10.1 20.9zm173.5 6.6c-7.5 7.5-16.9 11.2-28.2 11.2-14 0-25.4-5.6-34.1-16.7-4.4-5.6-7.7-12.9-9.9-21.9h85.5c-2.6 11.9-7 21.1-13.3 27.4z" />',viewBox:"0 0 512 512"},Hi={name:"subscript",content:'<path d="m198.6 304 89.4 89.4-22.6 22.6-89.4-89.4L86.6 416 64 393.4l89.4-89.4L64 214.6 86.6 192l89.4 89.4 89.4-89.4 22.6 22.6-89.4 89.4zm167.7 144h81.4v32H320v-11.9c0-8 1.7-15.3 5-21.7 3.3-6.4 7.5-12.1 12.5-17.2s10.5-9.6 16.4-13.5c5.9-3.9 11.6-7.4 16.9-10.6 5.6-3.3 10.6-6.4 14.8-9.4 4.2-3 7.8-6 10.7-8.9 2.9-3 5.1-6 6.5-9 1.4-3 2.1-6.3 2.1-9.7 0-6.7-2.3-11.8-7-15.3-4.6-3.4-11.7-5.2-21.3-5.2-16.5 0-32.3 5.4-47.4 16.1v-30.5c16.7-8.9 35.5-13.3 56.5-13.3 9.7 0 18.5 1 26.2 3.1 7.7 2.1 14.3 5.1 19.6 8.9 5.4 3.9 9.4 8.6 12.3 14.1 2.8 5.5 4.2 11.7 4.2 18.5 0 7.2-1.4 13.7-4.1 19.3-2.7 5.6-6.3 10.8-10.8 15.4-4.5 4.6-9.7 8.8-15.6 12.7-5.9 3.8-12 7.6-18.3 11.1-4.3 2.5-8.4 5-12.4 7.4-4 2.5-7.5 4.9-10.5 7.2-3.1 2.6-7.1 6.6-10 10.4z" />',viewBox:"0 0 512 512"},Pi={name:"supscript",content:'<path d="m198.6 304 89.4 89.4-22.6 22.6-89.4-89.4L86.6 416 64 393.4l89.4-89.4L64 214.6 86.6 192l89.4 89.4 89.4-89.4 22.6 22.6-89.4 89.4zm167.7-112h81.4v32H320v-11.9c0-8 1.7-15.3 5-21.7s7.5-12.1 12.5-17.2 10.5-9.6 16.4-13.5 11.6-7.4 16.9-10.6c5.6-3.3 10.6-6.4 14.8-9.4 4.2-3 7.8-6 10.7-8.9 2.9-3 5.1-6 6.5-9s2.1-6.3 2.1-9.7c0-6.7-2.3-11.8-7-15.3-4.6-3.4-11.7-5.2-21.3-5.2-16.5 0-32.3 5.4-47.4 16.1V77.3c16.7-8.9 35.5-13.3 56.5-13.3 9.7 0 18.5 1 26.2 3.1s14.3 5.1 19.6 8.9c5.4 3.9 9.4 8.6 12.3 14.1 2.8 5.5 4.2 11.7 4.2 18.5 0 7.2-1.4 13.7-4.1 19.3-2.7 5.6-6.3 10.8-10.8 15.4-4.5 4.6-9.7 8.8-15.6 12.7-5.9 3.8-12 7.6-18.3 11.1-4.3 2.5-8.4 5-12.4 7.4-4 2.5-7.5 4.9-10.5 7.2-3.1 2.5-7.1 6.5-10 10.3z" />',viewBox:"0 0 512 512"},Ii={name:"div",content:'<path d="M0 416v-6h7.1c7.9 0 13.6-3 16.9-9.1 2-3.6 3-11.8 3-24.5V231.6c0-14-1.3-22.8-3.9-26.3-3.6-4.9-9-7.3-16.1-7.3H0v-6h77.6c28.5 0 50.2 3.8 65 11.4 14.9 7.6 26.8 20.3 35.8 38 9 17.7 13.6 38.2 13.6 61.5 0 31.2-8.1 57.2-24.2 78.1-18.1 23.3-45.6 35-82.6 35H0zm54-16.2c11.9 3.1 21.9 4.6 29.9 4.6 21.7 0 39.8-9 54.1-26.9 14.3-17.9 21.5-42.3 21.5-73 0-30.9-7.2-55.3-21.5-73.2-14.3-17.8-32.8-26.8-55.2-26.8-8.4 0-18 1.6-28.8 4.8v190.5zM298 410v6h-83v-6h6.7c7.8 0 13.5-2.7 17-8.1 2.2-3.5 3.3-12 3.3-25.5V231.6c0-11.4-.6-18.9-1.8-22.5-.9-2.8-2.8-5.1-5.7-7.1-4.1-2.6-8.4-4-12.8-4H215v-6h83v6h-7c-7.9 0-13.7 2.7-17.4 8.1-2.4 3.5-3.6 12-3.6 25.5v144.9c0 11.4.6 18.9 1.9 22.5 1 2.8 3 5.1 6 7.1 4.1 2.6 8.5 4 13.1 4h7zm214-218v6c-6.4 1.4-11.3 3.9-14.6 7.4-4.7 5.3-8.9 13.4-12.6 24.2L421.6 416h-4.9l-67.9-188.8c-3.5-9.7-5.9-15.6-7.4-17.8-2.2-3.3-5-5.9-8.2-7.8-3.3-1.9-7.6-3.1-13.2-3.6v-6h74v6c-8.4 1-13.8 2.7-16.3 5.2s-3.7 5.7-3.7 9.5c0 5.4 2 13.8 6.1 25.2l46.1 128.4L469 239.5c4.2-12.5 6.3-21.2 6.3-26 0-3.1-1.3-6.1-3.9-9-2.6-2.9-6.9-4.9-13.1-6.1-.4-.1-1.2-.3-2.3-.5v-6h56zm0-96H0v32h512V96z" />',viewBox:"0 0 512 512"},Ai={name:"all",content:'<path d="M120.1 343H52l-12 34.4c-2.9 8.5-4.4 14.8-4.4 19 0 3.3 1.3 6.2 3.8 8.8s8.1 4.2 16.5 4.9v5.9H0v-6c7.4-1.6 12.2-3.7 14.4-6.3 4.4-5.2 9.4-15.7 14.8-31.5L91.4 192H96l61.6 182.2c5 14.6 9.5 24.1 13.5 28.5 4 4.4 9.7 6.8 16.9 7.3v6h-70v-5.9c7-.4 11.7-1.9 14.2-4.3 2.5-2.5 3.7-5.5 3.7-9 0-4.7-1.7-12.2-5.2-22.3L120.1 343zm-3.5-12-30-88.5L55.8 331h60.8zm227.7 23.1 4.3 1.2-15.1 60.7H197v-6h6.5c7.4 0 12.6-3.1 15.8-9.3 1.8-3.5 2.7-11.7 2.7-24.5V222.7c0-14-1.2-13.9-3.6-17.5-3.3-4.9-8.3-7.3-14.9-7.3H196v-6h80v6.1s-15.4 1-19.2 3.3c-3.8 2.3-6.4 5.2-7.8 8.8-1.4 3.5-2.1 3.1-2 16.5v149.6c-.1 9.1.6 15.4 2 18.8 1 2.3 2.7 4 4.8 5.1 2.2 1.1 9 1.7 20.4 1.9h12.9c13.6-.2 23.1-1.5 28.6-4s10.5-7 15-13.5 9.1-16.6 13.6-30.4zm163.4 0 4.3 1.2-15.1 60.7H360v-6h6.5c7.4 0 12.6-3.1 15.8-9.3 1.8-3.5 2.7-11.7 2.7-24.5V222.7c0-14-1.2-13.9-3.6-17.5-3.3-4.9-8.3-7.3-14.9-7.3H360v-6h80v6.1s-16.1 1-19.9 3.3-6.4 5.2-7.8 8.8c-1.4 3.5-2.1 3.1-2.4 16.5v149.6c.3 9.1 1 15.4 2.4 18.8 1 2.3 2.7 4 4.8 5.1s9 1.7 20.4 1.9h12.9c13.6-.2 23.1-1.5 28.6-4s10.5-7 15-13.5 9.2-16.6 13.7-30.4zM512 96H0v32h512V96z" />',viewBox:"0 0 512 512"},Vi={name:"h1",content:'<path d="M128 288h96v-57c0-11.2-.7-18.6-2.1-22.2-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7 4.7 2.6 9.6 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4V288zm192-69.9 63-26.1h1v185.3c0 12.3.5 20 1.5 23s3.2 5.3 6.4 7 14.1 2.5 24.1 2.8v6h-96v-6c10.4-.2 20.9-1.1 23.9-2.7s5.1-3.7 6.3-6.3c1.2-2.6 1.8-10.5 1.8-23.7V258.8c0-16-.5-26.2-1.6-30.8-.8-3.5-2.1-6-4.1-7.6-2-1.6-4.4-2.4-7.2-2.4-4 0-9.5 1.7-16.7 5l-2.4-4.9zM512 96H0v32h512V96z" />',viewBox:"0 0 512 512"},Ei={name:"h2",content:'<path d="M128 288h96v-57c0-11.2-.7-18.6-2.1-22.2-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7 4.7 2.6 9.6 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4V288zm336 86-15.3 42H320v-5.5c38.2-34.9 65.1-63.3 80.7-85.4 15.6-22.1 23.4-42.3 23.4-60.6 0-14-4.3-25.4-12.8-34.4-8.6-9-18.8-13.5-30.7-13.5-10.8 0-20.5 3.2-29.1 9.5-8.6 6.3-15 15.6-19.1 27.8h-6c2.7-20 9.7-35.4 20.9-46.1 11.2-10.7 25.2-16.1 42-16.1 17.9 0 32.8 5.7 44.7 17.2 12 11.5 17.9 25 17.9 40.6 0 11.1-2.6 22.3-7.8 33.4-8 17.5-21 36.1-39 55.7-27 29.4-43.8 47.2-50.5 53.3h56.9c11.8 0 20-.4 24.8-1.3 4.7-.9 9-2.6 12.8-5.3 3.8-2.7 7.1-6.5 10-11.4l4.9.1zm48-278H0v32h512V96z" />',viewBox:"0 0 512 512"},Ti={name:"h3",content:'<path d="M128 288h96v-57c0-11.2-.7-18.6-2.1-22.2-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7 4.7 2.6 9.6 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4V288zm195.6-50.6c6.4-14.5 14.5-25.7 24.3-33.6 9.8-7.9 22-11.9 36.6-11.9 18 0 31.9 5.6 41.5 16.9 7.3 8.4 11 17.3 11 26.9 0 15.7-10.3 31.9-30.9 48.7 13.8 5.2 24.3 12.6 31.4 22.3 7.1 9.7 10.6 21 10.6 34 0 18.7-6.2 34.8-18.6 48.5-16.2 17.8-39.6 26.7-70.2 26.7-15.2 0-25.5-1.8-31-5.4s-8.2-7.5-8.2-11.6c0-3.1 1.3-5.8 3.9-8.1 2.6-2.3 5.7-3.5 9.4-3.5 2.8 0 5.6.4 8.5 1.3 1.9.5 6.1 2.5 12.8 5.8 6.6 3.3 11.2 5.3 13.8 6 4.1 1.2 8.5 1.8 13.1 1.8 11.3 0 21.1-4.2 29.5-12.6s12.5-18.3 12.5-29.8c0-8.4-1.9-16.5-5.8-24.5-2.9-5.9-6-10.4-9.5-13.5-4.8-4.2-11.3-8.1-19.6-11.5s-16.8-5.2-25.4-5.2H358v-4.8c8.7-1.1 17.5-4.1 26.3-9.1s15.2-11 19.2-18 6-14.7 6-23.1c0-10.9-3.6-19.8-10.7-26.5s-16-10.1-26.6-10.1c-17.2 0-31.5 8.8-43 26.4l-5.6-2.5zM512 96H0v32h512V96z" />',viewBox:"0 0 512 512"},Bi={name:"h4",content:'<path d="M128 288h96v-57c0-11.2-.7-18.6-2.1-22.2-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7 4.7 2.6 9.6 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4V288zm341 47v23h-29v58h-27v-58h-93v-20.7L422.1 192H440v143h29zm-56 0V226.1L336 335h77zm99-239H0v32h512V96z" />',viewBox:"0 0 512 512"},ji={name:"h5",content:'<path d="M128 288h96v-57c0-11.2-.7-18.6-2.1-22.2-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7 4.7 2.6 9.6 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4V288zm320-96-12.6 28h-66L355 249.1c28.6 4.2 51.2 14.9 68 32 14.3 14.7 21.5 32 21.5 51.9 0 11.6-2.3 22.3-7 32.1s-10.6 18.2-17.7 25.2c-7.1 6.9-15 12.5-23.8 16.7-12.4 6-25.1 8.9-38.2 8.9-13.2 0-22.7-2.2-28.7-6.7s-9-9.4-9-14.9c0-3 1.2-5.7 3.7-8s5.6-3.5 9.4-3.5c2.8 0 5.3.4 7.4 1.3 2.1.9 5.7 3.1 10.8 6.7 8.1 5.6 16.3 8.4 24.6 8.4 12.6 0 23.7-4.8 33.3-14.4s14.3-21.2 14.3-35c0-13.3-4.3-25.7-12.8-37.3-8.5-11.5-20.3-20.4-35.3-26.7-11.8-4.9-27.8-7.7-48.1-8.4l42.1-85.5H448zm64-96H0v32h512V96z" />',viewBox:"0 0 512 512"},Li={name:"h6",content:'<path d="M128 288h96v-57c0-11.2-.7-18.6-2.1-22.2-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7 4.7 2.6 9.6 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4V288zm316-96v5.9c-13.1 1.4-23.9 4.2-32.2 8.4s-16.5 10.6-24.6 19.2c-8.1 8.6-14.8 18.2-20.2 28.7-5.3 10.6-9.8 23.1-13.4 37.6 14.3-10.5 28.7-15.8 43.2-15.8 13.8 0 25.8 5.9 36 17.8S448 321 448 339.6c0 18-5.1 34.5-15.4 49.3-12.3 18-28.7 27-49 27-13.8 0-25.6-4.9-35.2-14.6-18.9-19-28.4-43.6-28.4-73.8 0-19.3 3.6-37.7 10.9-55s17.6-32.8 31.1-46.3 26.4-22.5 38.8-27.2 23.8-7 34.5-7h8.7zm-92.9 111.4c-1.8 14.3-2.7 25.9-2.7 34.7 0 10.2 1.8 21.2 5.3 33.2 3.5 11.9 8.8 21.4 15.8 28.4 5.1 5 11.3 7.5 18.5 7.5 8.7 0 16.4-4.3 23.2-13 6.8-8.7 10.2-21.1 10.2-37.2 0-18.1-3.4-33.8-10.2-47.1S394.8 290 382.4 290c-3.8 0-7.8.8-12.2 2.5-4.3 1.6-10.7 5.2-19.1 10.9zM512 96H0v32h512V96z" />',viewBox:"0 0 512 512"},Ri={name:"list-ordered",content:'<path d="M192 64h288v32H192V64zm0 160h288v32H192v-32zm0 160h288v32H192v-32zM96 32v128H64V64c-1.5 1.3-14.9 7.8-22.1 10V50.8c7.2-2.1 13.9-4.8 20.3-8 6.3-3.3 12.1-6.8 17.2-10.7L96 32zM66.7 297h61.1v23H32v-9.5c0-6.4 1.2-12.2 3.7-17.3 2.5-5.1 5.6-9.7 9.3-13.8 3.7-4.1 7.8-7.7 12.3-10.8 4.5-3.1 8.7-6 12.7-8.5 4.2-2.6 7.9-5.1 11.1-7.6 3.2-2.4 5.9-4.8 8-7.2 2.2-2.4 3.8-4.8 4.9-7.2s1.6-5 1.6-7.8c0-5.4-1.7-9.5-5.2-12.2-3.5-2.8-8.8-4.1-16-4.1-12.4 0-24.2 4.3-35.5 12.9v-24.4c12.5-7.1 26.6-10.6 42.4-10.6 7.3 0 13.8.8 19.6 2.5 5.8 1.7 10.7 4.1 14.7 7.2 4 3.1 7.1 6.9 9.2 11.3 2.1 4.4 3.2 9.3 3.2 14.8 0 5.8-1 10.9-3.1 15.5-2 4.5-4.8 8.6-8.1 12.3-3.4 3.7-7.3 7.1-11.7 10.1-4.4 3.1-9 6-13.8 8.9-3.2 2-6.3 4-9.3 5.9-3 2-5.6 3.9-7.9 5.8s-4.1 3.8-5.4 5.6c-1.3 1.8-2 3.6-2 5.2zM32 473.8V450c10.1 6 21.8 9.1 35.3 9.1 8.5 0 15.1-1.5 19.8-4.5 4.7-3 7.1-7.2 7.1-12.5 0-5.5-2.9-9.8-8.8-12.8-5.8-3-13.9-4.5-24.1-4.5h-14V404h12.9c19.6 0 29.4-5.4 29.4-16.1 0-10.1-7.5-15.1-22.6-15.1-10.1 0-19.9 2.7-29.4 8v-22.3c10.6-4.4 22.9-6.6 37-6.6 15.4 0 27.4 2.8 36 8.5s12.9 13.1 12.9 22.2c0 16.2-10 26.3-29.9 30.4v.4c10.6 1.1 19 4.3 25.2 9.5 6.2 5.3 9.2 11.7 9.2 19.4 0 11.6-5.1 20.7-15.4 27.4S88.1 480 69.9 480c-15.5 0-28.2-2.1-37.9-6.2z" />',viewBox:"0 0 512 512"},Di={name:"list-unordered",content:'<path d="M192 64h288v32H192V64zm0 160h288v32H192v-32zm0 160h288v32H192v-32zM80 32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" />',viewBox:"0 0 512 512"},Ni={name:"indent",content:'<path d="M480 64H32V32h448v32zm0 32H224v32h256V96zm0 64H224v32h256v-32zm0 64H224v32h256v-32zm0 64H224v32h256v-32zm0 64H224v32h256v-32zm0 64H32v32h448v-32zM160 240 32 128v224l128-112z" />',viewBox:"0 0 512 512"},Fi={name:"outdent",content:'<path d="M480 64H32V32h448v32zm0 32H224v32h256V96zm0 64H224v32h256v-32zm0 64H224v32h256v-32zm0 64H224v32h256v-32zm0 64H224v32h256v-32zm0 64H32v32h448v-32zm-320-64V128L32 240l128 112z" />',viewBox:"0 0 512 512"},Ui={name:"insert-top",content:'<path d="M192 320h192v32H192v-32zm0-128h288v-32H192v32zm192 64H192v32h192v-32zM32 64v224l96-112L32 64z" />',viewBox:"0 0 512 512"},Wi={name:"insert-middle",content:'<path d="M192 128h192v32H192v-32zm0 128h288v-32H192v32zm192 64H192v32h192v-32zM32 128v224l96-112-96-112z" />',viewBox:"0 0 512 512"},Gi={name:"insert-bottom",content:'<path d="M192 224h192v32H192v-32zm0 128h288v-32H192v32zm192-192H192v32h192v-32zM32 224v224l96-112-96-112z" />',viewBox:"0 0 512 512"},Ki={name:"align-top",content:'<path d="M480 64H32V32h448v32zm-64 32H96v32h320V96zm64 64H32v32h448v-32z" />',viewBox:"0 0 512 512"},Xi={name:"align-middle",content:'<path d="M480 192H32v-32h448v32zm-64 32H96v32h320v-32zm64 64H32v32h448v-32z" />',viewBox:"0 0 512 512"},Zi={name:"align-bottom",content:'<path d="M480 352H32v-32h448v32zm-64 32H96v32h320v-32zm64 64H32v32h448v-32z" />',viewBox:"0 0 512 512"},Yi={name:"align-left",content:'<path d="M448 96H64V64h384v32zm-96 32H64v32h288v-32zm96 64H64v32h384v-32zm-96 64H64v32h288v-32zm96 64H64v32h384v-32zm-96 64H64v32h288v-32z" />',viewBox:"0 0 512 512"},qi={name:"align-center",content:'<path d="M448 96H64V64h384v32zm-64 64H128v-32h256v32zm64 64H64v-32h384v32zm-64 64H128v-32h256v32zm64 64H64v-32h384v32zm-64 64H128v-32h256v32z" />',viewBox:"0 0 512 512"},Qi={name:"align-right",content:'<path d="M64 192h384v32H64v-32zm384-96V64H64v32h384zm-288 64h288v-32H160v32zM64 320v32h384v-32H64zm96-32h288v-32H160v32zm0 96v32h288v-32H160z" />',viewBox:"0 0 512 512"},Ji={name:"align-justify",content:'<path d="M448 160H64v-32h384v32zm0-96H64v32h384V64zM64 352h384v-32H64v32zm0-64h384v-32H64v32zm0-64h384v-32H64v32zm0 192h384v-32H64v32z" />',viewBox:"0 0 512 512"},$i={name:"align-remove",content:'<path d="m78.9 192 32 32H64v-32h14.9zM64 288h110.9l-32-32H64v32zm0 64h174.9l-32-32H64v32zm0 32v32h238.9l-32-32H64zm393.4 96 22.6-22.6-41.4-41.4h9.4v-32h-41.4l-32-32H448v-32H342.6l-32-32H448v-32H278.6l-32-32H448v-32H214.6l-32-32H448v-32H150.6l-32-32H448V64H86.6l-32-32L32 54.6" />',viewBox:"0 0 512 512"},ta={name:"text-wrap",content:'<path d="M480 96v32H96V96h384zM352 256v224H32V256h320zm-32 32H64v160h256V288zm-32 32H96v32h192v-32zm0 96v-32H96v32h192zM64 64h288V32H32v160h320v-32H64V64z" />',viewBox:"0 0 512 512"},ea={name:"horizontal-rule",content:'<path d="M320 96H32V64h288v32zm96 32H32v32h384v-32zm64 96H32v64h448v-64zM320 352H32v32h288v-32zm96 64H32v32h384v-32z" />',viewBox:"0 0 512 512"},oa={name:"table-align-top-left",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm32 64h192V64H96v32zm0 64h320v-32H96v32zm0 64h192v-32H96v32z" />',viewBox:"0 0 512 512"},na={name:"table-align-top-center",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm288 32H160v32h192V64zm64 64H96v32h320v-32zm-64 64H160v32h192v-32z" />',viewBox:"0 0 512 512"},ra={name:"table-align-top-right",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm352 32H224v32h192V64zm0 64H96v32h320v-32zm0 64H224v32h192v-32z" />',viewBox:"0 0 512 512"},ia={name:"table-align-middle-left",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm32 160h192v-32H96v32zm0 64h320v-32H96v32zm0 64h192v-32H96v32z" />',viewBox:"0 0 512 512"},aa={name:"table-align-middle-center",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm288 128H160v32h192v-32zm64 64H96v32h320v-32zm-64 64H160v32h192v-32z" />',viewBox:"0 0 512 512"},sa={name:"table-align-middle-right",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm352 128H224v32h192v-32zm0 64H96v32h320v-32zm0 64H224v32h192v-32z" />',viewBox:"0 0 512 512"},ca={name:"table-align-bottom-left",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm32 256h192v-32H96v32zm0 64h320v-32H96v32zm0 64h192v-32H96v32z" />',viewBox:"0 0 512 512"},la={name:"table-align-bottom-center",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm288 224H160v32h192v-32zm64 64H96v32h320v-32zm-64 64H160v32h192v-32z" />',viewBox:"0 0 512 512"},ha={name:"table-align-bottom-right",content:'<path d="M32 480V0h448v480H32zM64 32v416h384V32H64zm352 224H224v32h192v-32zm0 64H96v32h320v-32zm0 64H224v32h192v-32z" />',viewBox:"0 0 512 512"},pa={name:"table-align-remove",content:'<path d="M32 0v480h448V0H32zm416 448H64V32h384v416zM131.6 224l29.9 32H128v-32h3.6zm-3.6 64h63.4l29.9 32H128v-32zm123.1 64 29.9 32H128v-32h123.1zM96 92l22.6-22.6L143.5 96H384v32H173.4l29.9 32H384v32H233.1l29.9 32h121v32h-91.2l29.9 32H384v32h-31.4l63.4 68-22.6 22.6L96 92z" />',viewBox:"0 0 512 512"},ua={name:"borders-all",content:'<path d="M32 32v416h416V32H32zm32 32h160v160H64V64zm0 352V256h160v160H64zm352 0H256V256h160v160zm0-192H256V64h160v160z" />',viewBox:"0 0 512 512"},va={name:"borders-outside",content:'<path d="M128 256H96v-32h32v32zm64-32h-32v32h32v-32zm64 0h-32v32h32v-32zm0-64h-32v32h32v-32zm0-64h-32v32h32V96zm0 256h-32v32h32v-32zm0-64h-32v32h32v-32zm64-64h-32v32h32v-32zm64 0h-32v32h32v-32zm64-192v416H32V32h416zm-32 32H64v352h352V64z" />',viewBox:"0 0 512 512"},da={name:"borders-inside",content:'<path d="M64 64H32V32h32v32zm0 32H32v32h32V96zm0 64H32v32h32v-32zm0 128H32v32h32v-32zm0 64H32v32h32v-32zM448 96h-32v32h32V96zm0 64h-32v32h32v-32zm0 128h-32v32h32v-32zm0 64h-32v32h32v-32zM128 32H96v32h32V32zm64 0h-32v32h32V32zM64 416H32v32h32v-32zm64 0H96v32h32v-32zm64 0h-32v32h32v-32zm128 0h-32v32h32v-32zm64 0h-32v32h32v-32zm64 0h-32v32h32v-32zM320 32h-32v32h32V32zm64 0h-32v32h32V32zm64 0h-32v32h32V32zm0 192H256V32h-32v192H32v32h192v192h32V256h192v-32z" />',viewBox:"0 0 512 512"},fa={name:"borders-inside-horizontal",content:'<path d="M448 224v32H32v-32h416zM64 32H32v32h32V32zm0 96H32V96h32v32zm0 64H32v-32h32v32zm0 128H32v-32h32v32zm0 64H32v-32h32v32zm384-256h-32V96h32v32zm0 64h-32v-32h32v32zm0 128h-32v-32h32v32zm0 64h-32v-32h32v32zM128 64H96V32h32v32zm64 0h-32V32h32v32zm64 0h-32V32h32v32zm0 64h-32V96h32v32zm0 64h-32v-32h32v32zm0 128h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zM64 416H32v32h32v-32zm64 32H96v-32h32v32zm64 0h-32v-32h32v32zm128-32h-32v32h32v-32zm64 32h-32v-32h32v32zm64 0h-32v-32h32v32zM320 32h-32v32h32V32zm64 32h-32V32h32v32zm64 0h-32V32h32v32z" />',viewBox:"0 0 512 512"},ma={name:"borders-inside-vertical",content:'<path d="M256 448h-32V32h32v416zM448 64V32h-32v32h32zm-96 0V32h32v32h-32zm-64 0V32h32v32h-32zm-128 0V32h32v32h-32zm-64 0V32h32v32H96zm256 384v-32h32v32h-32zm-64 0v-32h32v32h-32zm-128 0v-32h32v32h-32zm-64 0v-32h32v32H96zm320-320V96h32v32h-32zm0 64v-32h32v32h-32zm0 64v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-128 0v-32h32v32h-32zm-64 0v-32h32v32H96zm-64 0v-32h32v32H32zM64 64V32H32v32h32zm-32 64V96h32v32H32zm0 64v-32h32v32H32zm32 128v-32H32v32h32zm-32 64v-32h32v32H32zm0 64v-32h32v32H32zm416-128v-32h-32v32h32zm-32 64v-32h32v32h-32zm0 64v-32h32v32h-32z" />',viewBox:"0 0 512 512"},ya={name:"border-top",content:'<path d="M448 32v32H32V32h416zM64 96H32v32h32V96zm0 96H32v-32h32v32zm0 64H32v-32h32v32zm0 64H32v-32h32v32zm0 64H32v-32h32v32zm384-192h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zM128 256H96v-32h32v32zm64 0h-32v-32h32v32zm64-128h-32V96h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zM64 416H32v32h32v-32zm64 32H96v-32h32v32zm64 0h-32v-32h32v32zm128-32h-32v32h32v-32zm64 32h-32v-32h32v32zm64 0h-32v-32h32v32zM320 224h-32v32h32v-32zm64 32h-32v-32h32v32zm64-128h-32V96h32v32z" />',viewBox:"0 0 512 512"},ga={name:"border-bottom",content:'<path d="M32 448v-32h416v32H32zm32-96H32v32h32v-32zm0-32H32v-32h32v32zm0-64H32v-32h32v32zm0-64H32v-32h32v32zm0-64H32V96h32v32zm384 192h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32V96h32v32zM128 256H96v-32h32v32zm64 0h-32v-32h32v32zm64 128h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32v-32h32v32zm0-64h-32V96h32v32zm0-64h-32V32h32v32zM64 32H32v32h32V32zm64 32H96V32h32v32zm64 0h-32V32h32v32zm128-32h-32v32h32V32zm64 32h-32V32h32v32zm64 0h-32V32h32v32zM320 224h-32v32h32v-32zm64 32h-32v-32h32v32zm64 128h-32v-32h32v32z" />',viewBox:"0 0 512 512"},ba={name:"border-left",content:'<path d="M32 32h32v416H32V32zm96 32V32H96v32h32zm32 0V32h32v32h-32zm64 0V32h32v32h-32zm64 0V32h32v32h-32zm64 0V32h32v32h-32zM160 448v-32h32v32h-32zm64 0v-32h32v32h-32zm64 0v-32h32v32h-32zm64 0v-32h32v32h-32zM224 128V96h32v32h-32zm0 64v-32h32v32h-32zM96 256v-32h32v32H96zm64 0v-32h32v32h-32zm64 0v-32h32v32h-32zm64 0v-32h32v32h-32zm64 0v-32h32v32h-32zm64 0v-32h32v32h-32zm32-192V32h-32v32h32zm-32 64V96h32v32h-32zm0 64v-32h32v32h-32zm32 128v-32h-32v32h32zm-32 64v-32h32v32h-32zm0 64v-32h32v32h-32zM256 320v-32h-32v32h32zm-32 64v-32h32v32h-32zM96 448v-32h32v32H96z" />',viewBox:"0 0 512 512"},xa={name:"border-right",content:'<path d="M448 448h-32V32h32v416zM384 64V32h-32v32h32zm-96 0V32h32v32h-32zm-64 0V32h32v32h-32zm-64 0V32h32v32h-32zm-64 0V32h32v32H96zm192 384v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32H96zm128-320V96h32v32h-32zm0 64v-32h32v32h-32zm128 64v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32H96zm-64 0v-32h32v32H32zM64 64V32H32v32h32zm-32 64V96h32v32H32zm0 64v-32h32v32H32zm32 128v-32H32v32h32zm-32 64v-32h32v32H32zm0 64v-32h32v32H32zm224-128v-32h-32v32h32zm-32 64v-32h32v32h-32zm128 64v-32h32v32h-32z" />',viewBox:"0 0 512 512"},wa={name:"borders-none",content:'<path d="M384 64V32h-32v32h32zm-96 0V32h32v32h-32zm-64 0V32h32v32h-32zm-64 0V32h32v32h-32zm-64 0V32h32v32H96zm192 384v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32H96zm128-320V96h32v32h-32zm0 64v-32h32v32h-32zm128 64v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32h-32zm-64 0v-32h32v32H96zm-64 0v-32h32v32H32zM64 64V32H32v32h32zm-32 64V96h32v32H32zm0 64v-32h32v32H32zm32 128v-32H32v32h32zm-32 64v-32h32v32H32zm0 64v-32h32v32H32zm384-192v-32h32v32h-32zm32-192V32h-32v32h32zm-32 64V96h32v32h-32zm0 64v-32h32v32h-32zm32 128v-32h-32v32h32zm-32 64v-32h32v32h-32zm0 64v-32h32v32h-32zM256 320v-32h-32v32h32zm-32 64v-32h32v32h-32zm128 64v-32h32v32h-32z" />',viewBox:"0 0 512 512"},_a={name:"borders-show-hide",content:'<path d="M64 448h128v32H32V32h448v128h-32V64H64v384zm384 0h-64v32h96v-96h-32v64zM160 288v-64H96v64h64zm64 0h64v-64h-64v64zm160-32v-32h-32v32h32zM288 96h-64v64h64V96zm0 384L160 352l45-45 83 83 147-147 45 45-192 192z" />',viewBox:"0 0 512 512"},za={name:"form",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32h-32zm0 384H64V64h352v352zm32 64v-32h32v32h-32zm32-448h-32V0h32v32zM0 448h32v32H0v-32zM32 0v32H0V0h32z" />',viewBox:"0 0 512 512"},Ca={name:"form-element",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32h-32zm0 384H64V64h352v352zm32 64v-32h32v32h-32zm32-448h-32V0h32v32zM0 448h32v32H0v-32zM32 0v32H0V0h32zm160 128H96v32h96v-32zm192 0H224v32h160v-32zm0 64H224v32h160v-32zm0 64H224v32h160v-32zm0 64H224v32h160v-32zm-192 0H96v32h96v-32zm0-64H96v32h96v-32zm0-64H96v32h96v-32z" />',viewBox:"0 0 512 512"},ka={name:"code-snippet",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32h-32zm0 256v128H64V64h352v224zM32 0v32H0V0h32zM0 448h32v32H0v-32zm198.6-265.4L141.3 240l57.4 57.4L176 320l-80-80 80-80 22.6 22.6zM304 160l80 80-80 80-22.6-22.6 57.4-57.4-57.4-57.4L304 160zM480 32h-32V0h32v32zm-32 448v-32h32v32h-32z" />',viewBox:"0 0 512 512"},Ma={name:"select-all",content:'<path d="M448 448h32v32h-32v-32zm0-448h32v32h-32V0zM0 448h32v32H0v-32zM0 0h32v32H0V0zm448 384h32v32h-32v-32zm0-64h32v32h-32v-32zm0-64h32v32h-32v-32zm0-64h32v32h-32v-32zm0-64h32v32h-32v-32zm0-64h32v32h-32V64zM0 384h32v32H0v-32zm0-64h32v32H0v-32zm0-64h32v32H0v-32zm0-64h32v32H0v-32zm0-64h32v32H0v-32zm0-64h32v32H0V64zm128 384h32v32h-32v-32zm-64 0h32v32H64v-32zm128 0h32v32h-32v-32zm64 0h32v32h-32v-32zm64 0h32v32h-32v-32zm64 0h32v32h-32v-32zM64 0h32v32H64V0zm64 0h32v32h-32V0zm64 0h32v32h-32V0zm64 0h32v32h-32V0zm64 0h32v32h-32V0zm64 0h32v32h-32V0zm-96 64 53.4 53.4L240 218.9 138.6 117.4 192 64H64v128l53.5-53.5L218.9 240 117.5 341.5 64 288v128h128l-53.4-53.4L240 261.1l101.4 101.5L288 416h128V288l-53.5 53.5L261.1 240l101.4-101.5L416 192V64H288z" />',viewBox:"0 0 512 512"},Oa={name:"button",content:'<path d="m130.1 130.1 36.1 93.9H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32v128c0 17.6-14.4 32-32 32h-73.8l-244.1-93.9zM480 299 185.8 185.8 299 480l22.6-113.1L434.7 480l45.3-45.3-113.1-113.1L480 299z" />',viewBox:"0 0 512 512"},Sa={name:"select-box",content:'<path d="M384 352H128v-32h256v32zm0 32H128v32h256v-32zm0-128H128v32h256v-32zm96-192v128c0 17.6-14.4 32-32 32v224c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V224c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32zM352 96l32 64 32-64h-64zm64 128H96v224h320V224z" />',viewBox:"0 0 512 512"},Ha={name:"calendar-date",content:'<path d="M448 32h-64V0h-64v32H192V0h-64v32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm0 416-383.9.1-.1-.1V192h384v256zm0-288H64V64.1l.1-.1H128v32h64V64h128v32h64V64h63.9l.1.1V160zM192 270.6S171.9 288 142 288v-32c29.9 0 58-32 58-32h24v192h-32V270.6zM384 416H256v-14.2c0-9.7 1.6-18.4 4.8-26 3.3-7.7 7.3-14.6 12.2-20.7 4.8-6.1 10.2-11.5 15.9-16.2 5.7-4.7 11.3-8.9 16.4-12.7 5.5-3.9 10.3-7.7 14.4-11.3 4.2-3.6 7.6-7.2 10.4-10.7 2.8-3.5 4.9-7.1 6.3-10.8 1.4-3.6 2.1-7.5 2.1-11.7 0-8.1-2.3-14.1-6.8-18.4-4.5-4.1-11.5-6.2-20.7-6.2-16 0-31.5 6.4-46.1 19.4v-37.1c16.5-10.6 35-16.1 55.5-16.1 9.6 0 18.2 1.3 25.7 3.8 7.6 2.5 14.1 6.1 19.3 10.7s9.3 10.3 12.1 17c2.7 6.6 4.1 14.1 4.1 22.3 0 8.7-1.4 16.6-4 23.3-2.7 6.8-6.3 12.9-10.6 18.5-4.5 5.6-9.5 10.6-15.3 15.2-5.8 4.6-11.8 9.1-18 13.4-4.2 3-8.3 5.9-12.2 8.9-3.9 2.9-7.4 5.8-10.4 8.7-3 2.9-5.3 5.7-7.1 8.4-1.9 2.7-2.7 7.8-2.7 10.3H384V416z" />',viewBox:"0 0 512 512"},Pa={name:"group-box",content:'<path d="M144 81.6c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6.7 2.6 1.2 5.6 1.4 9.4.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H160v-97.8c0-22.1-5.4-36.7-16-44zm-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8-3.9 1.9-8 3.3-12.2 4.3-4.2 1-8.6 1.4-12.8 1.4-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18v32.5zM316 115.7c-2.7-9.3-6.6-17.2-11.8-23.8-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V32H192v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-30.9zm-32.6 73.6c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7zM450 110c1.8 3.2 2.7 6.9 3 11.2h27c-.9-7.3-3.1-13.8-6.4-19.6-3.3-5.8-7.6-10.5-12.7-14.2-5.2-3.9-11.2-6.8-18-8.8-6.9-2-14.2-3-22.2-3-10.3 0-19.5 1.6-28 4.9-8.5 3.3-15.7 8.1-21.8 14.4-6 6.3-10.7 14.1-14 23.3-3.3 9.2-4.9 19.7-4.9 31.5 0 11.9 1.6 22.5 4.9 31.7 3.1 9.2 7.8 17 13.9 23.2 6 6.3 13.3 11.1 21.8 14.4 8.3 3.3 17.9 5 28.2 5 8 0 15.3-1 22.2-3 6.8-2 12.8-4.9 18-8.8 5.1-3.9 9.4-8.8 12.7-14.4 3.3-5.6 5.5-12.1 6.4-19.6h-27c-.3 4.2-1.2 7.9-3 11.2-1.8 3.2-4.2 5.9-7 8.1-3 2.2-6.3 3.9-10.1 4.9-3.9 1.2-7.9 1.7-12.2 1.7-6.3 0-11.9-1.2-17-3.5-5.2-2.3-9.7-5.8-13.4-10.4-3.7-4.5-6.6-10.2-8.5-17-2.1-6.8-3.1-14.7-3.1-23.6 0-9.1 1-17.1 3.1-23.9 2.1-6.9 5.1-12.5 8.8-17.1 3.7-4.5 8-7.8 13.3-10.1 5.1-2.3 10.7-3.5 16.8-3.5 4.3 0 8.3.6 12.2 1.7 3.9 1.2 7.2 2.7 10.1 4.9 2.8 2.4 5.2 5.1 6.9 8.4zM128 256h256v32H128v-32zm0 64h256v32H128v-32zm0 64h256v32H128v-32zm256 32H128v-32h256v32zm0-128H128v-32h256v32zm0 64H128v-32h256v32zm32-96h32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256h32v192h320V256z" />',viewBox:"0 0 512 512"},Ia={name:"textarea",content:'<path d="M448 448h-32V256h32v192zM194 334c1.8 3.2 2.7 6.9 3 11.2h27c-.9-7.3-3.1-13.8-6.4-19.6-3.3-5.8-7.6-10.5-12.7-14.2-5.2-3.9-11.2-6.8-18-8.8-6.9-2-14.2-3-22.2-3-10.3 0-19.5 1.6-28 4.9-8.5 3.3-15.7 8.1-21.8 14.4-6 6.3-10.7 14.1-14 23.3-3.3 9.2-4.9 19.7-4.9 31.5 0 11.9 1.6 22.5 4.9 31.7 3.1 9.2 7.8 17 13.9 23.2 6 6.3 13.3 11.1 21.8 14.4 8.3 3.3 17.9 5 28.2 5 8 0 15.3-1 22.2-3 6.8-2 12.8-4.9 18-8.8 5.1-3.9 9.4-8.8 12.7-14.4 3.3-5.6 5.5-12.1 6.4-19.6h-27c-.3 4.2-1.2 7.9-3 11.2-1.8 3.2-4.2 5.9-7 8.1-3 2.2-6.3 3.9-10.1 4.9-3.9 1.2-7.9 1.7-12.2 1.7-6.3 0-11.9-1.2-17-3.5-5.2-2.3-9.7-5.8-13.4-10.4-3.7-4.5-6.6-10.2-8.5-17-2.1-6.8-3.1-14.7-3.1-23.6 0-9.1 1-17.1 3.1-23.9 2.1-6.9 5.1-12.5 8.8-17.1 3.7-4.5 8-7.8 13.3-10.1 5.1-2.3 10.7-3.5 16.8-3.5 4.3 0 8.3.6 12.2 1.7 3.9 1.2 7.2 2.7 10.1 4.9 2.8 2.4 5.2 5.1 6.9 8.4zm14-252.4c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6.7 2.6 1.2 5.6 1.4 9.4.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H224v-97.8c0-22.1-5.4-36.7-16-44zm-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8-3.9 1.9-8 3.3-12.2 4.3-4.2 1-8.6 1.4-12.8 1.4-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18v32.5zM380 115.7c-2.7-9.3-6.6-17.2-11.8-23.8-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V32H256v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-30.9zm-32.6 73.6c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7zM256 370.6c0 11.8 1.6 22.5 4.6 32.1 3.2 9.5 7.5 17.6 13 24.4 5.6 6.6 12.1 11.8 19.7 15.5 7.5 3.6 15.7 5.4 24.5 5.4 15.7 0 29.1-5 40-14.8V448H384V256h-26.2v60.1c-11.5-13.6-25.3-20.5-41.7-20.5-9.5 0-18 1.7-25.5 5.2-7.3 3.6-13.7 8.6-18.7 15-5.2 6.6-9.1 14.5-11.8 23.8-2.8 9.2-4.1 19.5-4.1 31zm26.8 0c0-18.1 3.2-31.8 9.3-41 6.2-9.3 14.8-13.9 26.2-13.9 14.4 0 27.5 8.3 39.4 24.9v69.1c-11.1 11.9-23.9 17.8-38.4 17.8-11.2 0-20.2-4.7-26.8-14.2-6.4-9.4-9.7-23.8-9.7-42.7z" />',viewBox:"0 0 512 512"},Aa={name:"textbox",content:'<path d="M208 209.6c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6.7 2.6 1.2 5.6 1.4 9.4.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H224v-97.8c0-22.1-5.4-36.7-16-44zm-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8-3.9 1.9-8 3.3-12.2 4.3-4.2 1-8.6 1.4-12.8 1.4-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18v32.5zm170.3-89.9c-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V160H256v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-31-2.8-9.3-6.7-17.1-11.8-23.7zm-20.8 97.4c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7zM448 64v384h-32V64h32z" />',viewBox:"0 0 512 512"},Va={name:"textbox-hidden",content:'<path d="M0 160h32v64H0v-64zm0-32h32V64H0v64zm0 288h32v-64H0v64zm160 96h64v-32h-64v32zm-96 0h64v-32H64v32zM352 0h-64v32h64V0zm-96 0h-64v32h64V0zM0 512h32v-64H0v64zM448 0h-64v32h64V0zM160 0H96v32h64V0zM64 0H0v32h64V0zM0 320h32v-64H0v64zm480 128h32v-64h-32v64zm0-96h32v-64h-32v64zm0-96h32v-64h-32v64zm0-96h32V96h-32v64zm0-160v64h32V0h-32zm-32 512h64v-32h-64v32zm-192 0h64v-32h-64v32zm96 0h64v-32h-64v32zm-6-165.4c-7.4 3.6-15.6 5.4-24.3 5.4-15.6 0-28.9-5-39.7-14.8V352h-26V160h26v60.1c11.4-13.6 25.1-20.5 41.4-20.5 9.4 0 17.9 1.7 25.3 5.2 7.2 3.6 13.6 8.6 18.6 15 5.2 6.6 9 14.5 11.7 23.8 2.7 9.2 4 19.5 4 31 0 11.8-1.6 22.5-4.6 32.1-3.2 9.5-7.4 17.6-12.9 24.4-5.5 6.6-12 11.7-19.5 15.5zm10.9-72c0-18.1-3.2-31.8-9.3-41-6.2-9.3-14.8-13.9-26.2-13.9-14.4 0-27.5 8.3-39.4 24.9v69.1c11.1 11.9 23.9 17.8 38.4 17.8 11.2 0 20.2-4.7 26.8-14.2 6.4-9.4 9.7-23.8 9.7-42.7zM224 253.5V351h-26v-17.6S167.1 352 146.2 352c-7.3 0-13.9-1-20-3.2-6.2-2-11.6-4.9-16-8.7-4.5-3.8-8-8.1-10.4-13.4-2.5-5.2-3.8-10.8-3.8-17.2 0-34.2 29.8-51.4 89.1-51.5h12.8c0-5.2 0-9.9-.1-13.5-.3-3.8-.7-6.8-1.4-9.4-.7-2.6-1.7-4.8-3.2-6.6-1.6-1.7-3.6-3.5-6.2-5.1-5.2-3.2-13.4-4.8-24.4-4.8-23.2 0-35.3 8.2-36 24.4h-26.1c1.9-29.6 23.1-44.6 63.6-44.6 18.9 0 33.5 3.6 44.1 11.1 10.4 7.4 15.8 22 15.8 44zM198 277h-18c-38 0-56.9 10.3-56.9 30.9 0 7.4 2.8 13.1 8.3 17.2 5.5 3.9 12.9 5.9 22.5 5.9 4.2 0 8.6-.4 12.8-1.4s8.3-2.5 12.2-4.3c3.9-1.9 7.5-4.2 10.7-6.8 3.3-2.7 6.1-5.6 8.4-9V277zM448 64h-32v384h32V64z" />',viewBox:"0 0 512 512"},Ea={name:"password",content:'<path d="M480 64v384h-32V64h32zM174.2 221.1l-11.3-11.3-34.9 34.9V192H96v52.7l-34.9-34.9-11.3 11.3L84.7 256H32v32h52.7l-34.9 34.9 11.3 11.3L96 299.3V352h32v-52.7l34.9 34.9 11.3-11.3-34.9-34.9H192v-32h-52.7l34.9-34.9zm224 0-11.3-11.3-34.9 34.9V192h-32v52.7l-34.9-34.9-11.3 11.3 34.9 34.9H256v32h52.7l-34.9 34.9 11.3 11.3 34.9-34.9V352h32v-52.7l34.9 34.9 11.3-11.3-34.9-34.9H416v-32h-52.7l34.9-34.9z" />',viewBox:"0 0 512 512"},Ta={name:"paragraph-add",content:'<path d="M320 96h-64v352h-32V96h-64v352h-32V256c-53 0-96-43-96-96s43-96 96-96h192v32zm96 256v-64h-32v64h-64v32h64v64h32v-64h64v-32h-64z" />',viewBox:"0 0 512 512"},Ba={name:"edit-tools",content:'<path d="m260.6 288 11.5 31.5 56.2-56.6L244.2 32H139.8L0 416h76.8l28-76.8 18.6-51.2h137.2zm-17.5-48H140.9L192 99.5 243.1 240zM224 413.3V480h66.7l169.7-168.5-67.9-67.9L224 413.3zm55.3 34-22.6-22.6 135.8-135.8 22.6 22.6-135.8 135.8zm223.4-178-22.6 22.6-67.9-67.9 22.5-22.7c12.5-12.4 32.9-12.4 45.3 0l22.7 22.7c12.4 12.4 12.4 32.8 0 45.3z" />',viewBox:"0 0 512 512"},ja={name:"template-manager",content:'<path d="M377.2 292.1c-5.5 5.3-7.2 6.4-7.4 6.6-.2.1-.4.2-.9.2-.1-.2-.3-.7-.5-1.7s-.5-4.2-.5-15.1v-31.7c0-9.9-.7-16.2-2.3-19.7-2.4-5.4-6.1-9.4-11.2-12-6.2-3.1-14-4.7-23.3-4.7-12.3 0-22.1 2.8-29 8.4-7.2 5.7-10.9 12.3-10.9 19.4 0 4.1 1.2 7.5 3.6 10 2.5 2.7 5.7 4 9.6 4 3.9 0 7.2-1.3 9.6-3.8 2.4-2.4 3.6-5.9 3.6-10.2l-.2-5.8c0-1.9.9-3.5 2.7-5.1 1.8-1.6 4.4-2.4 7.9-2.4 4.7 0 8.1 1.3 10.4 3.9 1.7 1.9 3.6 6.3 3.6 16.8v.9c-15.6 5.6-26.5 10.2-33.4 14.1-7.8 4.4-13.1 9.1-16.3 14.3-2.5 3.9-3.7 8.5-3.7 13.8 0 8.2 2.5 14.9 7.5 20 5 5.2 11.6 7.8 19.4 7.8 4.9 0 9.5-1 13.8-2.9 2.2-1 6.6-3.9 13.5-8.9.7 2.9 1.9 5.2 3.5 6.9 2.8 3.1 6.6 4.7 11.2 4.7 8.5 0 17.1-5.6 25.7-16.8l.8-1v-16.3l-6.8 6.3zm-35.2-.2c-8.9 6.7-14.1 8.1-16.9 8.1h-.1c-2.8 0-5.1-1.1-7.4-3.6-2.3-2.4-3.5-5.6-3.5-9.5 0-3 .9-5.8 2.8-8.4 2.1-2.8 5.7-5.6 10.6-8.2 2.4-1.3 7.2-3.4 14.4-6.2l.1 27.8zm-97.9 12.2c-1.3-1.4-4-5.6-7.9-17.9L195.6 160h-7.7l-41 124.9c-4.1 12.7-7 17.9-8.8 20.1-.3.4-1.8 1.8-7.4 3.1l-2.8.6V320h43v-11.7l-3.2-.3c-6.6-.6-8.3-2-8.6-2.3-.9-.9-1.3-1.9-1.3-3 0-1.6.5-4.8 2.6-11.5l5.3-16.2h42.1l4.6 14c2.6 8.1 3.1 12 3.1 13.8 0 1.3-.4 2.2-1.3 3.2-.3.4-1.9 1.6-7 1.9l-3.3.2V320h52v-11.8l-3.2-.3c-3.8-.3-6.6-1.5-8.6-3.8zM172.5 254l14.7-44.6 14.4 44.6h-29.1zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zm-224-32h-64v-64h64v64zm96 0h-64v-64h64v64zm96 0h-64v-64h64v64z" />',viewBox:"0 0 512 512"},La={name:"change-manually",content:'<path d="m416 353 32-32v159H32V32h416v64h-32V64H64v384h352v-95zm-192-3.7V416h66.7l169.7-168.5-67.9-67.9L224 349.3zm55.3 34-22.6-22.6 135.8-135.8 22.6 22.6-135.8 135.8zM502.7 160 480 137.3c-12.4-12.4-32.8-12.4-45.3 0L412.2 160l67.9 67.9 22.6-22.6c12.4-12.5 12.4-32.9 0-45.3zM191.9 416H167v-22h-.6c-7.9 14.6-19.4 22-34.6 22-11.2 0-20-3.3-26.3-9.8S96 391 96 380.3c0-23.1 12.4-36.5 37.2-40.4l33.9-5.1c0-17.4-7.7-26.1-23.2-26.1-13.6 0-25.8 5-36.8 15v-24.2c12-7.6 25.9-11.5 41.7-11.5 28.8 0 43.3 15.2 43.3 45.6V416h-.2zM167 353.1l-23.9 3.6c-7.4 1-13 3-16.8 5.8s-5.6 7.8-5.6 14.9c0 5.2 1.7 9.4 5.2 12.7 3.5 3.3 8.1 5 13.9 5 7.9 0 14.4-3 19.5-8.9 5.2-5.9 7.7-13.4 7.7-22.4v-10.7z" />',viewBox:"0 0 512 512"},Ra={name:"track-changes",content:'<path d="m412.2 256 22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3L480 323.8 412.2 256zm-19.7 19.6L250.9 417.2 224 445.3V512h66.7l28.1-26.9 141.6-141.6-67.9-67.9zM279.3 479.3 268 468l-11.3-11.3 135.8-135.8 22.6 22.6-135.8 135.8zM288 160H160v32h128v-32zm64 64H160v32h192v-32zm-64 64H160v32h128v-32zm-64 64h-64v32h64v-32zm188.2-96 22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3L480 323.8 412.2 256zm-19.7 19.6L250.9 417.2 224 445.3V512h66.7l28.1-26.9 141.6-141.6-67.9-67.9zM279.3 479.3 268 468l-11.3-11.3 135.8-135.8 22.6 22.6-135.8 135.8zM96 416V64h224v96h96v32h32v-64l-96-96H96c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h96v-32H96zM0 512h192v-32H0v32z" />',viewBox:"0 0 512 512"},Da={name:"track-changes-enable",content:'<path d="M502.7 173.3 480 195.8 412.2 128l22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3zm-110.2-25.7 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1 141.6-141.6zm22.6 67.9-22.6-22.6-135.8 135.8L268 340l11.3 11.3 135.8-135.8zM160 320h32v-32h-32v32zm0-64h96v-32h-96v32zm128-96H160v32h128v-32zM160 384h32v-32h-32v32zm256 64H96V64h224v96l80.11-79.89L352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V273.155l-32 32V448z" />',viewBox:"0 0 512 512"},Na={name:"track-changes-accept",content:'<path d="M128 128H96V64c0-17.7 14.3-32 32-32h224l64 64h-96V64H128v64zm122.9 193.2L224 349.3V416h66.7l28.1-26.9 141.6-141.6-67.9-67.9-141.6 141.6zm28.4 62.1L268 372l-11.3-11.3 135.8-135.8 22.6 22.6-135.8 135.8zM416 337.155l32-32V448c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-96h32v96h288V337.155zM502.7 205.3 480 227.8 412.2 160l22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3zM288 144 112 320 0 208l45-45 67 67L243 99l45 45zm-96 272h-32v-32h32v32z" />',viewBox:"0 0 512 512"},Fa={name:"track-changes-accept-all",content:'<path d="M128 160H96V96c0-17.7 14.3-32 32-32h224l64 64h-96V96H128v64zm264.5 51.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1 141.6-141.6zm22.6 67.9-22.6-22.6-135.8 135.8L268 404l11.3 11.3 135.8-135.8zM416 480H128v-96H96v96c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V337.155l-32 32V480zm86.7-288-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 192l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3zM160 448h32v-32h-32v32zM64 32h256L288 0H64C46.3 0 32 14.3 32 32v128h32V32zm0 352H32v32c0 17.7 14.3 32 32 32v-64zm179-253L112 262l-67-67-45 45 112 112 176-176-45-45z" />',viewBox:"0 0 512 512"},Ua={name:"track-changes-reject",content:'<path d="M102.627 272 160 329.373 137.373 352 80 294.627 22.627 352 0 329.373 57.373 272 0 214.627 22.627 192 80 249.373 137.373 192 160 214.627 102.627 272zM192 384v-32h-32v32h32zm310.7-256-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 128l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3zM96 64h224v96l80.11-79.89L352 32H96c-17.7 0-32 14.3-32 32v96h32V64zm296.5 83.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1 141.6-141.6zm22.6 67.9-22.6-22.6-135.8 135.8L268 340l11.3 11.3 135.8-135.8zM416 448H96v-64H64v64c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V273.155l-32 32V448z" />',viewBox:"0 0 512 512"},Wa={name:"track-changes-reject-all",content:'<path d="M102.627 272 160 329.373 137.373 352 80 294.627 22.627 352 0 329.373 57.373 272 0 214.627 22.627 192 80 249.373 137.373 192 160 214.627 102.627 272zM128 96h192v32h96l-64-64H128c-17.7 0-32 14.3-32 32v64h32V96zm264.5 115.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1 141.6-141.6zm22.6 67.9-22.6-22.6-135.8 135.8L268 404l11.3 11.3 135.8-135.8zM416 480H128v-96H96v96c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V337.155l-32 32V480zm86.7-288-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 192l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3zM160 448h32v-32h-32v32zM64 32h256L288 0H64C46.3 0 32 14.3 32 32v128h32V32zm0 352H32v32c0 17.7 14.3 32 32 32v-64z" />',viewBox:"0 0 512 512"},Ga={name:"document-manager",content:'<path d="M64 416h224v32H64v-32zm224-64H64v32h224v-32zM400 0C288 0 288 96 288 96v160s0 64 80 64 80-64 80-64V96s0-32-48-32-48 32-48 32v128h32V116c0-11 .6-20 16-20s16 9 16 20v140s0 32-48 32-48-32-48-32V96s0-64 80-64 80 64 80 64v128h32V96s0-96-112-96zM106.7 288 96 320H64l64-192h32l64 192h-32l-10.7-32h-74.6zm10.6-32h53.3L144 176l-26.7 80zM320 480H32V96h224V64H32C14.3 64 0 78.3 0 96v384c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V352h-32v128z" />',viewBox:"0 0 512 512"},Ka={name:"custom-icon",content:'<path d="M352 249H196.6c.6 23.8 7.2 42.2 19.8 55.2s30 18.8 52 19.4c4.9.1-1.1 28.8-12.4 28.8-30.9 0-51.6-9.7-69.3-29.1-17.8-19.4-26.7-46.8-26.7-82 0-33.3 9.7-60.4 29.1-81.4s43.5-31.4 72.4-31.4c28.8 0 51.1 9.1 66.9 27.2S352 199 352 231.1V249zm-36-29.9c-.1-19.8-5.1-35.2-14.7-46.2-9.7-11-23.1-16.5-40.3-16.5-16.6 0-30.7 5.8-42.4 17.3-11.6 11.6-18.8 26.7-21.5 45.3l118.9.1zM448 384V64c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h256l96-96zm-32-32h-96v96H96V64h320v288z" />',viewBox:"0 0 512 512"},Xa={name:"book",content:'<path d="M448 480V96h-32v352H128c-17.6 0-32-14.4-32-32s14.4-32 32-32h256V32H128c-35.2 0-64 28.8-64 64v320c0 23.6 12.9 44.2 32 55.3 9.4 5.5 20.4 8.7 32 8.7h320zM128 64h224v288H128V64zm192 64H160V96h160v32zm0 128H160v-32h160v32zm-32-64H160v-32h128v32z" />',viewBox:"0 0 512 512"},Za={name:"image-add",content:'<path d="M272 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm80 112-16 16-64 64-128-128L32 336V96.1l.1-.1h383.8l.1.1-.1 191.9H448V96c0-17.6-14.4-32-32-32H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h256v-64h64V272zm128 144h-32v-64h-32v64h-64v32h64v64h32v-64h64v-32h-32z" />',viewBox:"0 0 512 512"},Ya={name:"image-edit",content:'<path d="M304 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm-32.6 159.4L176 224 64 336V96.1l.1-.1h383.8l.1.1V160h32V96c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h128v-47.5l79.4-81.1zm189-7.9L290.7 480H224v-66.7l168.5-169.7 67.9 67.9zm-45.3 0-22.6-22.6-135.8 135.8 22.6 22.6 135.8-135.8zm64.9 25.6zM447.9 448c17.7 0 32.1-14.4 32.1-32v-78.9L369.1 448h78.8zm54.8-224L480 201.3c-12.4-12.4-32.8-12.4-45.3 0L412.2 224l67.9 67.9 22.6-22.6c12.4-12.5 12.4-32.9 0-45.3z" />',viewBox:"0 0 512 512"},qa={name:"image-map-editor",content:'<path d="M448 64H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32zM96 384H64v-32h32v32zm96 0h-64v-32h64v32zm96 0h-64v-32h64v32zm96 0h-64v-32h64v32zm64 0h-32v-32h32v32zm-.1-48-64-64-80 80L176 224 64 336V192h32v-32H64V96.1l.1-.1H128v32h32V96h287.9l.1.1-.1 239.9zM352 208c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48zm-224-48h32v32h-32v-32z" />',viewBox:"0 0 512 512"},Qa={name:"comment",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v416l96-96h320c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm0 319.942a.53.53 0 0 1-.058.058H114.745L64 402.745V64.057a.511.511 0 0 1 .057-.057h383.885c.02.017.041.038.058.057v287.885z" />',viewBox:"0 0 512 512"},Ja={name:"comment-remove",content:'<path d="M114.745 352 64 402.745V64.057a.511.511 0 0 1 .057-.057h383.885c.02.017.041.038.058.057V256h32V64c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v416l96-96h128v-32H114.745zM480 342.627 457.373 320 400 377.373 342.627 320 320 342.627 377.373 400 320 457.373 342.627 480 400 422.627 457.373 480 480 457.373 422.627 400 480 342.627z" />',viewBox:"0 0 512 512"},$a={name:"comments-remove",content:'<path d="M480 64c0-17.6-14.4-32-32-32H160c-17.6 0-32 14.4-32 32v32h32V64.1l.1-.1H448l.1.1V256l-.1.1h32V64zM377.4 400l22.6 22.6-57.4 57.4-22.6-22.6 57.4-57.4zm0 0L320 342.6l22.6-22.6 57.4 57.4-22.6 22.6zm45.2 0 57.4 57.4-22.6 22.6-57.4-57.4-22.6-22.6 22.6-22.6 57.4-57.4 22.6 22.6-57.4 57.4zm-304.3-16L64 420.2V160.1l.1-.1H352l.1.1V256h32v-96c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v320l96-64h128v-32H118.3z" />',viewBox:"0 0 512 512"},ts={name:"silverlight",content:'<path d="M256 0 0 256l256 256 256-256L256 0zm-75.9 324c-21.6 0-40.5-6.3-52.1-13.7v-33.2c14.5 10.8 32.9 17.9 51.4 17.9 16.3 0 28.6-5 28.6-17.6 0-10.6-6.8-14.5-18.9-18.9l-23.6-7.9c-23.9-7.9-39.7-20.3-39.7-47 0-29.9 25.7-46.2 57.3-46.2 19.7 0 35.8 4.7 48.8 12.6v32.9c-13.9-10.2-29.1-16.8-47.8-16.8-14.5 0-25.5 4.9-25.5 16 0 9.9 6.5 13.9 17.9 17.6l25.2 8.6c27.1 9.2 39.4 23.9 39.4 47.8.2 31.9-26.8 47.9-61 47.9zm95.9-4V160h32v128h76v32H276z" />',viewBox:"0 0 512 512"},es={name:"media-manager",content:'<path d="M192 384V128l192 128-192 128zm32-319.3V0C108.2 14.4 14.4 108.2 0 224h64.7c13.5-80.3 79-145.8 159.3-159.3zm64 382.6V512c115.8-14.4 209.6-108.2 224-224h-64.7c-13.5 80.3-79 145.8-159.3 159.3zM64.7 288H0c14.4 115.8 108.2 209.6 224 224v-64.7c-80.3-13.5-145.8-79-159.3-159.3zm382.6-64H512C497.6 108.2 403.8 14.4 288 0v64.7c80.3 13.5 145.8 79 159.3 159.3z" />',viewBox:"0 0 512 512"},os={name:"video-external",content:'<path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm-64 384V128l192 128-192 128z" />',viewBox:"0 0 512 512"},ns={name:"flash-manager",content:'<path d="M255.9 0C114.6 0 0 114.6 0 256.1 0 397.4 114.6 512 255.9 512 397.4 512 512 397.4 512 256.1 512 114.6 397.4 0 255.9 0zM384 160c-30.1.3-48.4-4.6-81.2 64H352v64h-64s-53.5 129.4-160 128c-.8-14.2 0-43.9 0-64 70.5-10.7 93.6-88.3 109.9-126.9C286.3 74.5 384 95.1 384 95.1V160z" />',viewBox:"0 0 512 512"},rs={name:"binoculars",content:'<path d="M480 288v96c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32v-64H192v64c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32v-64c0-17.7 14.3-32 32-32v-32c0-17.7 14.3-32 32-32h64s32 0 32 32v128h64V128c0-32 32-32 32-32h64c17.7 0 32 14.3 32 32v32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32zM208 64h16V32h-96v32h80zm160 0h16V32h-96v32h80zM48 448H32v32h160v-32H48zm272 32h160v-32H320v32z" />',viewBox:"0 0 512 512"},is={name:"copy",content:'<path d="M384 96H192c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V192l-96-96zm64 352H192V128h160v96h96v224zM64 384h64v32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h192l32 32H64v320z" />',viewBox:"0 0 512 512"},as={name:"cut",content:'<path d="M480 32h-45.3L256 210.7 210.7 256l-69.5 69.5c-9.1-3.6-18.9-5.5-29.2-5.5-44.2 0-80 35.8-80 80 0 10.3 2 20.2 5.5 29.2 8.1 20.7 24.6 37.1 45.3 45.3 9.1 3.6 18.9 5.5 29.2 5.5 44.2 0 80-35.8 80-80 0-10.3-2-20.2-5.5-29.2l69.5-69.5 69.5 69.5c-3.6 9.1-5.5 18.9-5.5 29.2 0 44.2 35.8 80 80 80 10.3 0 20.2-2 29.2-5.5 20.7-8.1 37.1-24.6 45.3-45.3 3.6-9.1 5.5-18.9 5.5-29.2 0-44.2-35.8-80-80-80-10.3 0-20.2 2-29.2 5.5L301.3 256 480 77.3V32zM160 400c0 26.5-21.5 48-48 48-.9 0-1.8 0-2.7-.1-24.4-1.3-43.9-20.9-45.3-45.3 0-.9-.1-1.8-.1-2.7 0-26.5 21.5-48 48-48 .9 0 1.8 0 2.7.1 24.4 1.3 43.9 20.9 45.3 45.3.1.9.1 1.8.1 2.7zm237.3-47.9c.9 0 1.8-.1 2.7-.1 26.5 0 48 21.5 48 48 0 .9 0 1.8-.1 2.7-1.3 24.4-20.9 43.9-45.3 45.3-.9 0-1.8.1-2.7.1-26.5 0-48-21.5-48-48 0-.9 0-1.8.1-2.7 1.4-24.5 20.9-44 45.3-45.3zM240 256c0-8.8 7.2-16 16-16s16 7.2 16 16-7.2 16-16 16-16-7.2-16-16zm-74.5-45.3L32 77.3V32h45.3l133.5 133.5-45.3 45.2z" />',viewBox:"0 0 512 512"},ss={name:"clipboard",content:'<path d="M416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32zm160 416H96V64h64v64h192V64h64v384z" />',viewBox:"0 0 512 512"},cs={name:"clipboard-code",content:'<path d="M214.6 361.4 192 384l-80-80 80-80 22.6 22.6-57.3 57.4 57.3 57.4zM448 64v384c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h104.6C211.7 12.9 232.3 0 256 0s44.3 12.9 55.4 32H416c17.7 0 32 14.3 32 32zm-224 0h64c0-17.7-14.3-32-32-32s-32 14.3-32 32zm192 0h-64v64H160V64H96v384h320V64zM297.4 246.6l57.4 57.4-57.4 57.4L320 384l80-80-80-80-22.6 22.6z" />',viewBox:"0 0 512 512"},ls={name:"clipboard-word",content:'<path d="m128 160 48.5 192h46.7L256 238.4 285.3 352h43.1L384 160h-73v35h19.3l-22.2 86-28.8-121h-45.4l-33.1 119.3-25-119.3H128zM416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32zm160 416H96V64h64v64h192V64h64v384zm-32-32H128v-32h256v32z" />',viewBox:"0 0 512 512"},hs={name:"clipboard-word-alt",content:'<path d="m128 160 48.5 192h46.7L256 238.4 285.3 352h43.1L384 160h-73v35h19.3l-22.2 86-28.8-121h-45.4l-33.1 119.3-25-119.3H128zM416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32zm160 416H96V64h64v64h192V64h64v384z" />',viewBox:"0 0 512 512"},ps={name:"clipboard-html",content:'<path d="M214.6 361.4 192 384l-80-80 80-80 22.6 22.6-57.3 57.4 57.3 57.4zM448 64v384c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h104.6C211.7 12.9 232.3 0 256 0s44.3 12.9 55.4 32H416c17.7 0 32 14.3 32 32zm-224 0h64c0-17.7-14.3-32-32-32s-32 14.3-32 32zm192 0h-64v64H160V64H96v384h320V64zM271.2 183.9 209.8 416l30.9 8.3L302.2 192l-31-8.1zm26.2 62.7 57.4 57.4-57.4 57.4L320 384l80-80-80-80-22.6 22.6z" />',viewBox:"0 0 512 512"},us={name:"clipboard-markdown",content:'<path d="M226 224h30v128h-32v-72.8l-32.2 45.6L160 279v73h-32V224h32l31.8 46.2L226 224zm126 64h32l-48 64-48-64h32l.2-64H352v64zm64-256H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32zm160 416H96V64h64v64h192V64h64v384z" />',viewBox:"0 0 512 512"},vs={name:"clipboard-text",content:'<path d="M416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32zm160 416H96V64h64v64h192V64h64v384zm-32-224H128v-32h256v32zm0 64H128v-32h256v32zm0 64H128v-32h256v32zm0 64H128v-32h256v32z" />',viewBox:"0 0 512 512"},ds={name:"apply-format",content:'<path d="M380.984 313.69c12.445 12.445 12.445 32.81 0 45.255L266.529 470.658c-12.445 12.445-32.787 12.467-45.255 0L0 248.898c18.584 18.584 40.255-4.835 40.255-4.835L154.71 132.671c12.445-12.445 32.81-12.445 45.255 0L380.984 313.69zm89.682-227.101-45.255-45.255c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882-22.627-22.627c-12.445-12.445-32.81-12.445-45.255 0l-22.627 22.627 181.019 181.019 22.627-22.627c12.445-12.445 12.445-32.81 0-45.255l-22.627-22.627 67.882-67.882c12.445-12.446 12.445-32.81 0-45.255z" />',viewBox:"0 0 512 512"},fs={name:"clear-css",content:'<path d="M402.784 290.235 221.765 109.216l22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627 67.882-67.882c12.445-12.445 32.81-12.445 45.255 0l45.255 45.255c12.445 12.445 12.445 32.81 0 45.255l-67.882 67.882 22.627 22.627c12.445 12.445 12.445 32.81 0 45.255l-22.627 22.627zm-21.8 23.455-181.02-181.019c-12.346-12.346-32.483-12.437-44.953-.287L54.627 32 32 54.627l100.074 100.074-91.819 89.362S18.585 267.482 0 248.898l221.274 221.76c12.467 12.467 32.81 12.445 45.255 0l91.851-89.651L457.373 480 480 457.373l-98.73-98.73c12.151-12.47 12.06-32.607-.286-44.953z" />',viewBox:"0 0 512 512"},ms={name:"copy-format",content:'<path d="M96 480h160v32H64v-64H0V288h32v128h32v-64h32v128zm32-32h96v-32h-96v32zm0-96v32h32v-32h-32zm284.2-92.6L253.8 101c-12.4-12.4-32.9-12.4-45.3.1l-69.8 69.8-.2.2c-11.6 11.6-30 12.7-42.5 2.7l200.9 200.9c12.5 12.5 32.8 12.4 45.3 0l69.9-69.9c12.5-12.5 12.5-33 .1-45.4zM502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2z" />',viewBox:"0 0 512 512"},ys={name:"strip-all-formatting",content:'<path d="M32 480h224v32H0v.1V256h32v224zm32-32h159v-32H64v32zm97-96H63v32h98v-32zm-65-64H64v32h32v-32zm316.2-28.6L253.8 101c-12.4-12.4-32.9-12.4-45.3.1l-69.8 69.8-.2.2c-11.6 11.6-30 12.7-42.5 2.7l200.9 200.9c12.5 12.5 32.8 12.4 45.3 0l69.9-69.9c12.5-12.5 12.5-33 .1-45.4zM502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2z" />',viewBox:"0 0 512 512"},gs={name:"strip-css-format",content:'<path d="M0 288v224h416V288H0zm145 65.9c-10-6.2-21-9.3-33.4-9.3-13.6 0-24.5 4.6-32.9 13.7-8.3 9.1-12.5 21.5-12.5 37.1 0 15 3.9 26.9 11.8 35.8s18.4 13.3 31.7 13.3c12.7 0 24.3-3.3 34.3-9.9v31.8c-9.9 5.5-23.7 8.2-40.7 8.2-22.2 0-39.6-7-52.3-20.9-12.7-14-19-32.5-19-55.8 0-24.7 7.1-44.8 21.4-60.2 14.3-15.4 32.8-23.1 55.6-23.1 14.1 0 26 1.9 36 5.7v33.6zM260.6 450c-3.1 5.9-7.2 10.6-12.4 14.2-5.2 3.6-11.3 6.2-18.2 7.8-7 1.6-14.3 2.4-21.9 2.4-7.9 0-15.4-.7-22.5-2.2-7.2-1.4-13.4-3.6-18.5-6.5v-34.4c5.8 5.3 12.2 9.2 18.9 11.8 6.9 2.6 13.8 3.9 20.7 3.9 4.1 0 7.7-.4 10.7-1.2 3.1-.8 5.6-1.9 7.7-3.3 2-1.4 3.6-3.1 4.6-5 1-1.9 1.5-4 1.5-6.2 0-3-.8-5.7-2.4-8.1-1.6-2.4-3.8-4.6-6.6-6.6s-6.1-4-9.9-5.8c-3.8-1.9-8-3.8-12.4-5.7-11.3-5-19.6-11.2-25.1-18.4-5.5-7.3-8.3-15.9-8.3-26.2 0-8.1 1.5-15 4.5-20.7s7.1-10.6 12.3-14.3c5.2-3.7 11.2-6.5 18-8.3 6.9-1.8 14.1-2.6 21.7-2.6 7.5 0 14.2.5 19.9 1.5 5.8 1 11.2 2.5 16 4.5v32.2c-2.4-1.8-5.1-3.4-7.9-4.7-2.9-1.4-5.8-2.5-8.8-3.4s-6-1.6-9-2c-3-.4-5.8-.6-8.5-.6-3.7 0-7.1.4-10.1 1.1-3 .8-5.6 1.8-7.7 3.2-2.1 1.4-3.7 3-4.8 4.9-1.1 1.9-1.7 4-1.7 6.4 0 2.6.6 4.9 1.9 7 1.3 2.1 3.1 4 5.4 5.8 2.3 1.8 5.2 3.6 8.6 5.4s7.2 3.6 11.4 5.5c5.8 2.6 11 5.3 15.5 8.3 4.6 2.9 8.6 6.2 11.8 9.9 3.3 3.7 5.8 7.9 7.6 12.6 1.7 4.7 2.6 10.2 2.6 16.3 0 8.5-1.6 15.7-4.6 21.5zm119 0c-3.1 5.9-7.2 10.6-12.4 14.2-5.2 3.6-11.3 6.2-18.2 7.8-7 1.6-14.3 2.4-21.9 2.4-7.9 0-15.4-.7-22.5-2.2-7.2-1.4-13.4-3.6-18.5-6.5v-34.4c5.8 5.3 12.2 9.2 18.9 11.8 6.9 2.6 13.8 3.9 20.7 3.9 4.1 0 7.7-.4 10.7-1.2 3.1-.8 5.6-1.9 7.7-3.3 2-1.4 3.6-3.1 4.6-5 1-1.9 1.5-4 1.5-6.2 0-3-.8-5.7-2.4-8.1-1.6-2.4-3.8-4.6-6.6-6.6s-6.1-4-9.9-5.8c-3.8-1.9-8-3.8-12.4-5.7-11.3-5-19.6-11.2-25.1-18.4-5.5-7.3-8.3-15.9-8.3-26.2 0-8.1 1.5-15 4.5-20.7 3-5.8 7.1-10.6 12.3-14.3 5.2-3.7 11.2-6.5 18-8.3 6.9-1.8 14.1-2.6 21.7-2.6 7.5 0 14.2.5 19.9 1.5 5.8 1 11.2 2.5 16 4.5v32.2c-2.4-1.8-5.1-3.4-7.9-4.7-2.9-1.4-5.8-2.5-8.8-3.4-3-.9-6-1.6-9-2-3-.4-5.8-.6-8.5-.6-3.7 0-7.1.4-10.1 1.1-3 .8-5.6 1.8-7.7 3.2-2.1 1.4-3.7 3-4.8 4.9-1.1 1.9-1.7 4-1.7 6.4 0 2.6.6 4.9 1.9 7 1.3 2.1 3.1 4 5.4 5.8 2.4 1.8 5.2 3.6 8.6 5.4 3.4 1.8 7.2 3.6 11.4 5.5 5.8 2.6 11 5.3 15.5 8.3 4.6 2.9 8.5 6.2 11.8 9.9 3.3 3.7 5.8 7.9 7.6 12.6 1.7 4.7 2.6 10.2 2.6 16.3 0 8.5-1.5 15.7-4.6 21.5zM502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2zm-246.9 69.9c-12.4-12.4-32.8-12.4-45.3 0l-79.7 79.7c-12.4 12.4-32.8 12.4-45.3 0L160 256h249.9L255.8 101.9z" />',viewBox:"0 0 512 512"},bs={name:"strip-font-elements",content:'<path d="M502.666 31.961 480.039 9.334c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882-22.627-22.627c-12.445-12.445-32.81-12.445-45.255 0l-22.627 22.627 158.392 158.392 22.627-22.627c12.445-12.445 12.445-32.81 0-45.255l-22.627-22.627 67.882-67.882c12.444-12.446 12.444-32.811-.001-45.256zm-246.848 69.936c-12.445-12.445-32.81-12.445-45.255 0l-79.706 79.706c-12.445 12.445-32.81 12.445-45.255 0L160 256h249.921L255.818 101.897zM176 348.121 200.706 416h-49.412L176 348.121zM0 288v224h352V288H0zm224 192-11.647-32h-72.706L128 480H96l58.235-160h43.53L256 480h-32z" />',viewBox:"0 0 512 512"},xs={name:"strip-span-elements",content:'<path d="M96 288 0 400l96 112h256V288H96zm170.3 167.5c-3.9 5.9-9.3 10.6-16.1 14.2-6.8 3.6-14.6 6.2-23.6 7.8-9 1.6-18.4 2.4-28.4 2.4-10.2 0-20-.7-29.2-2.2-9.2-1.4-17.2-3.6-24-6.5v-34.5c7.5 5.2 15.7 9.2 24.6 11.8 8.8 2.6 17.8 3.9 26.8 3.9 5.3 0 9.9-.4 13.9-1.2 3.9-.8 7.2-1.9 9.9-3.3 2.6-1.4 4.6-3.1 5.9-5 1.3-1.9 2-4 2-6.2 0-3-1-5.7-3.1-8.1-2.1-2.4-4.9-4.6-8.5-6.6-3.6-2-7.9-4-12.8-5.8-4.9-1.9-10.3-3.8-16-5.7-14.6-5-25.4-11.2-32.6-18.4-7.2-7.3-10.7-16-10.7-26.3 0-8.1 2-15 5.9-20.8 3.9-5.8 9.2-10.5 15.9-14.3 6.7-3.7 14.5-6.5 23.3-8.3 8.8-1.8 18.2-2.6 28.1-2.6 9.7 0 18.3.5 25.8 1.5s14.4 2.5 20.7 4.5v32.3c-3.1-1.8-6.5-3.4-10.2-4.7-3.7-1.4-7.5-2.5-11.4-3.4-3.9-.9-7.8-1.6-11.6-2-3.9-.4-7.5-.6-11-.6-4.8 0-9.1.4-13 1.1-3.9.8-7.2 1.8-9.9 3.2-2.7 1.4-4.8 3-6.2 4.9-1.5 1.9-2.2 4-2.2 6.4 0 2.6.8 4.9 2.5 7 1.6 2.1 4 4 7 5.8 3 1.8 6.7 3.6 11.1 5.4 4.3 1.8 9.2 3.6 14.7 5.4 7.5 2.6 14.2 5.3 20.1 8.3 5.9 2.9 11 6.2 15.3 9.9 4.2 3.7 7.5 7.9 9.8 12.6 2.3 4.7 3.4 10.2 3.4 16.4-.3 8.6-2.3 15.9-6.2 21.7zM502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2zm-246.9 69.9c-12.4-12.4-32.8-12.4-45.3 0l-79.7 79.7c-12.4 12.4-32.8 12.4-45.3 0L160 256h249.9L255.8 101.9z" />',viewBox:"0 0 512 512"},ws={name:"strip-word-formatting",content:'<path d="M0 288v224h352V288H0zm239.3 192h-37.7L176 385.4 147.4 480h-40.9L64 320h40.6l21.9 100.4L155.8 320h40.4l25.2 100.4 19.4-71.4H224v-29h64l-48.7 160zM502.7 77.2l-67.9 67.9 22.6 22.6c12.4 12.4 12.4 32.8 0 45.3l-22.6 22.6L276.4 77.2 299 54.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6 67.9-67.9c12.4-12.4 32.8-12.4 45.3 0L502.7 32c12.4 12.4 12.4 32.8 0 45.2zM409.9 256H160l-74.4-74.4c12.4 12.4 32.8 12.4 45.3 0l79.7-79.7c12.4-12.4 32.8-12.4 45.3 0l154 154.1z" />',viewBox:"0 0 512 512"},_s={name:"format-code-block",content:'<path d="M224 352v160h288V352H224zm102.6 105.4L304 480l-48-48 22.6-22.6L304 384l22.6 22.6-25.3 25.4 25.3 25.4zM432 480l-22.6-22.6 25.4-25.4-25.4-25.4L432 384l25.4 25.4L480 432l-48 48zM192 160V32c0-17.6-14.4-32-32-32h-32c-17.6 0-32 14.4-32 32v128L0 256h288l-96-96zm96 128H0v192h64V320h32v160h32V320h32v160h32V320h96v-32z" />',viewBox:"0 0 512 512"},zs={name:"building-blocks",content:'<path d="M127.9 289V128H160V80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h64V80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h32v160l-256.1 1zM96 320v-48c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v48H0v128h224V320H96zm384 0v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H288v128h224V320h-32z" />',viewBox:"0 0 512 512"},Cs={name:"puzzle-piece",content:'<path d="M480 352c0 1 0 2-.1 2.9v.8c0 .8-.1 1.7-.2 2.5v.5c-.1 1-.2 1.9-.4 2.8-.1.4-.1.9-.2 1.3s-.1.8-.2 1.2c-.1.4-.2.7-.2 1.1l-.6 2.7c-.1.4-.2.7-.3 1.1 0 .2-.1.5-.2.7-.2.5-.4 1.1-.5 1.7-.3.9-.6 1.8-.9 2.6 0 .1-.1.2-.1.3-.3.8-.6 1.6-.9 2.3-.1.2-.2.5-.3.7-.3.8-.7 1.5-1 2.3 0 .1-.1.2-.1.2-.4.8-.8 1.6-1.3 2.4l-.6 1.2c-.2.4-.4.7-.6 1.1-.2.3-.3.6-.5.8-.5.8-1 1.5-1.5 2.3l-.6.9c-.2.4-.5.7-.7 1-.2.3-.5.6-.7.9-.5.7-1.1 1.4-1.7 2.1l-.3.3-1.5 1.8c-.2.2-.3.4-.5.5-.6.7-1.2 1.3-1.9 2-.6.6-1.3 1.3-2 1.9-.4.3-.7.7-1.1 1-.3.3-.7.6-1 .9-.2.1-.3.3-.5.4-.7.6-1.4 1.1-2.1 1.7-.3.3-.7.5-1 .8-.3.2-.6.5-1 .7l-.9.6c-.8.5-1.5 1-2.3 1.5-.2.1-.5.3-.7.4-.4.2-.7.4-1.1.6-.4.2-.8.5-1.3.7-.8.4-1.6.9-2.4 1.3-.1.1-.2.1-.3.2-.3.2-.7.4-1 .5-.6.2-1.2.5-1.9.8-.8.3-1.6.6-2.3.9-.1 0-.2.1-.3.1-.9.3-1.7.6-2.6.9-.6.2-1.2.3-1.7.6-.2.1-.5.1-.7.2-.4.1-.7.2-1.1.3l-2.7.6c-.3.1-.5.1-.8.2-.5.1-1.1.2-1.7.3-.4.1-.8.1-1.2.2-.9.1-1.9.3-2.8.4-.2 0-.5 0-.7.1-.4.1-.9.1-1.3.1-.6 0-1.1.1-1.7.1-1 0-2 .1-2.9.1-1.2 0-2.3 0-3.5-.1-.4 0-.7-.1-1.1-.1-.8-.1-1.6-.1-2.3-.2-.4 0-.9-.1-1.3-.2l-2.1-.3c-.4-.1-.9-.2-1.3-.2-.7-.1-1.4-.3-2-.4-.4-.1-.9-.2-1.3-.3-.7-.2-1.4-.3-2-.5l-1.2-.3c-.7-.2-1.4-.4-2.1-.7-.4-.1-.7-.2-1.1-.4-.8-.3-1.5-.6-2.3-.9-.3-.1-.5-.2-.8-.3-1-.4-1.9-.8-2.8-1.2-.1 0-.1-.1-.2-.1-3.1-1.5-6-3.2-8.8-5.1-.1 0-.1-.1-.2-.2-.8-.6-1.7-1.2-2.5-1.8-.1-.1-.2-.2-.3-.2-.8-.6-1.6-1.2-2.3-1.9-.3-.2-.6-.5-.8-.7-.5-.4-1-.8-1.4-1.3l-.5-.5c-.8-.8-1.6-1.5-2.3-2.3l-1.5-1.5c-.3-.3-.5-.6-.7-.9-.1-.2-.2-.3-.4-.5-4.9-5.7-12-8.9-19.5-8.9h-1.4c-14.3 0-25.9 11.6-25.9 25.9v70H217.9c-14.3 0-25.9-11.6-25.9-25.9v-1.4c0-7.5 3.3-14.6 8.9-19.5 15-12.5 24.2-31.6 23-52.9-1.8-32.5-28.3-58.7-60.9-60.2-36.7-1.7-67 27.6-67 63.9 0 19.6 8.8 37.1 22.6 48.8 5.9 5 9.4 12.2 9.4 19.9v1.4c0 14.3-11.6 25.9-25.9 25.9H32V192h70.1c14.3 0 25.9-11.6 25.9-25.9v-1.4c0-7.5-3.3-14.6-8.9-19.5l-.3-.3c-.7-.5-1.4-1.1-2-1.7l-.6-.6c-.8-.8-1.6-1.5-2.3-2.3l-.2-.2c-.7-.7-1.4-1.5-2.1-2.3-.1-.1-.2-.2-.2-.3-.7-.8-1.3-1.5-1.9-2.3-.1-.1-.2-.2-.2-.3-.6-.8-1.2-1.6-1.8-2.5l-.2-.2c-1.9-2.8-3.6-5.7-5.1-8.8 0-.1-.1-.1-.1-.2-.4-.9-.9-1.9-1.2-2.8-.1-.3-.2-.5-.3-.8-.3-.8-.6-1.5-.9-2.3-.1-.3-.2-.7-.4-1.1-.2-.7-.5-1.4-.7-2.1l-.3-1.2c-.2-.7-.4-1.4-.5-2-.1-.4-.2-.9-.3-1.3-.1-.7-.3-1.4-.4-2-.1-.4-.2-.9-.2-1.3l-.3-2.1c-.1-.4-.1-.9-.2-1.3-.1-.8-.1-1.6-.2-2.3 0-.4-.1-.7-.1-1.1-.1-1.2-.1-2.3-.1-3.5 0-1 0-2 .1-2.9 0-.4 0-.9.1-1.3 0-.7.1-1.4.2-2v-.4c.1-.9.2-1.9.4-2.8 0-.2.1-.4.1-.7.1-.8.3-1.6.4-2.4 0-.2.1-.4.1-.5l.6-2.7c0-.1.1-.3.1-.4.2-.7.4-1.4.6-2.2l.3-.9c.3-.9.6-1.8.9-2.6 0-.1.1-.2.1-.3.3-.8.6-1.6.9-2.3.1-.2.2-.5.3-.7.3-.8.7-1.5 1-2.3 0-.1.1-.2.1-.3.4-.8.8-1.6 1.3-2.4l.3-.6c.4-.7.7-1.3 1.1-1.9.1-.2.2-.3.3-.5.5-.8 1-1.5 1.5-2.3.1-.1.2-.3.3-.4.4-.6.9-1.2 1.3-1.8.1-.2.3-.4.4-.6.5-.7 1.1-1.4 1.7-2.1l.3-.3 1.5-1.8c.2-.2.3-.4.5-.5.6-.7 1.2-1.3 1.9-2 .6-.6 1.3-1.3 2-1.9.2-.2.4-.3.5-.5l1.8-1.5.3-.3c.7-.6 1.4-1.1 2.1-1.7.2-.1.3-.3.5-.4.6-.5 1.3-.9 1.9-1.3.2-.1.3-.2.5-.3.8-.5 1.5-1 2.3-1.5.1-.1.3-.2.4-.2.6-.4 1.3-.8 1.9-1.1.2-.1.5-.3.7-.4.8-.4 1.6-.9 2.4-1.3.1 0 .2-.1.2-.1.8-.4 1.5-.7 2.3-1 .2-.1.5-.2.7-.3.8-.3 1.5-.6 2.3-.9.1 0 .2-.1.3-.1.9-.3 1.7-.6 2.6-.9.3-.1.6-.2.8-.3.7-.2 1.4-.4 2.2-.6.2 0 .3-.1.5-.1l2.7-.6c.2 0 .4-.1.6-.1.8-.2 1.6-.3 2.3-.4.2 0 .5-.1.7-.1.9-.1 1.9-.3 2.8-.4.2 0 .4 0 .5-.1.8-.1 1.6-.1 2.5-.2h.7c1 0 1.9-.1 2.9-.1s2 0 3 .1h.7c.9.1 1.8.1 2.7.2h.2c30 3.1 53.9 26.9 57.1 57 0 .3.1.7.1 1 .1.7.1 1.4.2 2.1 0 .5 0 .9.1 1.4v5c0 .5-.1 1-.1 1.4 0 .6-.1 1.2-.1 1.7s-.1 1-.2 1.5c-.1.6-.1 1.1-.2 1.7-.1.5-.1 1-.2 1.5s-.2 1.1-.3 1.6l-.3 1.5c-.1.5-.2 1-.4 1.5-.1.5-.2 1-.4 1.5-.1.5-.3.9-.4 1.4-.2.5-.3 1-.5 1.5-.1.4-.3.9-.4 1.3-.2.5-.4 1.1-.6 1.6-.1.4-.3.8-.5 1.2-.2.6-.4 1.1-.7 1.7-.1.3-.3.7-.4 1-.3.6-.5 1.2-.8 1.8-.1.2-.2.5-.4.7-.3.7-.7 1.3-1 2 0 .1-.1.2-.1.2-3.8 6.7-8.7 12.7-14.5 17.7h-.1c-5.8 5-9.4 12.2-9.4 19.9v1.4c0 14.3 11.6 25.9 25.9 25.9H320v116.7c0 6.3 5.1 11.3 11.3 11.3H357c5.2 0 9.1-4.1 10-9.2 0-.1.1-.1.1-.2 5-5.8 10.9-10.8 17.7-14.5.1 0 .2-.1.2-.1.7-.4 1.3-.7 2-1 .2-.1.5-.2.7-.4.6-.3 1.2-.6 1.8-.8.3-.1.7-.3 1-.4.6-.2 1.1-.5 1.7-.7.4-.2.8-.3 1.2-.5.5-.2 1.1-.4 1.6-.6.4-.2.9-.3 1.3-.4.5-.2 1-.3 1.5-.5.5-.1.9-.3 1.4-.4.5-.1 1-.3 1.5-.4.5-.1 1-.2 1.5-.4l1.5-.3c.5-.1 1.1-.2 1.6-.3.5-.1 1-.2 1.5-.2.6-.1 1.1-.1 1.7-.2.5-.1 1-.1 1.5-.2.6-.1 1.1-.1 1.7-.1.5 0 1-.1 1.4-.1h5c.5 0 .9 0 1.4.1.7 0 1.4.1 2.1.2.3 0 .7.1 1 .1 30 3.1 53.9 27 57 57.1v.2c.1.9.2 1.8.2 2.7v.7c.2.4.2 1.4.2 2.4z" />',viewBox:"0 0 512 512"},ks={name:"link-add",content:'<path d="M384 384zm64 32v-64h-32v64h-64v32h64v64h32v-64h64v-32h-64zM96 256c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32zm-32 0c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.4 0-64 28.6-64 64zm416 84.7c19.9-22.6 32-52.2 32-84.7 0-70.7-57.3-128-128-128-47.3 0-88.7 25.8-110.8 64H384c35.3 0 64 28.6 64 64s-28.6 64-64 64h96v20.7zM384 320H273.2c22.1 38.2 63.4 64 110.8 64v-64z" />',viewBox:"0 0 512 512"},Ms={name:"globe-link",content:'<path d="M161.7 412.6C69.1 391.2 0 308.1 0 209 0 93.6 93.6 0 209 0s209 93.6 209 209c0 58.2-23.8 110.8-62.2 148.7-20.5-23.1-50.4-37.7-83.8-37.7-3.9 0-7.8.2-11.6.6 12-15.9 26.4-28.8 41.3-33 22.6-18.6 21.6-35.2 18.6-50.2-7-12.6-38.7-23.6-68.8-49.7-18.1-4-40.2 7.5-48.7-3.5-8.5-11.1-48.7-27.1-31.1-44.7s44.2.5 54.8-35.7C236.9 67.6 259 82.6 270 82.6c11.1 0 13.1-26.1-7.5-35.7-20.6-9.5-49.7-19.6-100.5-14.6-50.7 5-86.4 27.6-75.4 47.7 11.1 20.1 44.2 83.9 81.4 94.5 37.2 10.6 35.7 20.2 41.7 27.1 6 7-11.3 22.2 5.1 50.8 8.9 12 17 5 21 25.1 1.9 9.4-2.7 30.3-6.4 50.8-34.9 14.4-61 46-67.7 84.3zM224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48zm208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80zm0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16z" />',viewBox:"0 0 512 512"},Os={name:"globe-unlink",content:'<path d="M161.7 412.6C69.1 391.2 0 308.1 0 209 0 93.6 93.6 0 209 0s209 93.6 209 209c0 58.2-23.8 110.8-62.2 148.7-20.5-23.1-50.4-37.7-83.8-37.7-3.9 0-7.8.2-11.6.6 12-15.9 26.4-28.8 41.3-33 22.6-18.6 21.6-35.2 18.6-50.2-7-12.6-38.7-23.6-68.8-49.7-18.1-4-40.2 7.5-48.7-3.5-8.5-11.1-48.7-27.1-31.1-44.7s44.2.5 54.8-35.7C236.9 67.6 259 82.6 270 82.6s13.1-26.1-7.5-35.7c-20.6-9.5-49.7-19.6-100.5-14.6-50.7 5-86.4 27.6-75.4 47.7 11.1 20.1 44.2 83.9 81.4 94.5 37.2 10.6 35.7 20.2 41.7 27.1 6 7-11.3 22.2 5.1 50.8 8.9 12 17 5 21 25.1 1.9 9.4-2.7 30.3-6.4 50.8-34.9 14.4-61 46-67.7 84.3M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80" />',viewBox:"0 0 512 512"},Ss={name:"envelop-link",content:'<path d="M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48zm208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80zm0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16zM32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H32zm23.7 32L224 200.3 392.3 32c11 2.9 19.7 11.6 22.6 22.6L310.6 158.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L288 181.5l-64 64-64-64L55.7 285.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L33.1 54.6C36 43.6 44.7 34.9 55.7 32z" />',viewBox:"0 0 512 512"},Hs={name:"anchor",content:'<path d="m352 288 44.5 44.5c-22.3 40.7-61.7 70.7-108.5 80.3V151.4c19.1-11.1 32-31.8 32-55.4 0-35.3-28.7-64-64-64s-64 28.7-64 64c0 23.6 12.9 44.3 32 55.4v261.4c-46.8-9.5-86.2-39.6-108.5-80.3L160 288H32v128l36.9-36.9C108.9 439.9 177.8 480 256 480s147.1-40.1 187.1-100.9L480 416V288H352zM256 64c17.6 0 32 14.4 32 32s-14.4 32-32 32-32-14.4-32-32 14.4-32 32-32z" />',viewBox:"0 0 512 512"},Ps={name:"table-add",content:'<path d="M448 320V32H32v416h288V320h128zm-288 96H64v-96h96v96zm0-128H64v-96h96v96zm0-128H64V64h96v96zm128 256h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96zm32-96h96v96h-96V64zm0 224v-96h96v96h-96zm192 128v32h-64v64h-32v-64h-64v-32h64v-64h32v64h64z" />',viewBox:"0 0 512 512"},Is={name:"table",content:'<path d="M32 32v416h416V32H32zm256 32v96h-96V64h96zm0 128v96h-96v-96h96zM64 64h96v96H64V64zm0 128h96v96H64v-96zm0 224v-96h96v96H64zm128 0v-96h96v96h-96zm224 0h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},As={name:"table-properties",content:'<path d="m502.666 77.216-22.627 22.627-67.882-67.882 22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627c12.445 12.445 12.445 32.81 0 45.255zM392.483 51.635l67.882 67.882L290.66 288H224v-66.66L392.483 51.635zm22.627 67.882L392.483 96.89 256.719 232.654l22.627 22.627L415.11 119.517zM384 256l32-32v288H0V96h288l-32 32h-96v224h224v-96zM128 384H32v96h96v-96zm0-128H32v96h96v-96zm0-128H32v96h96v-96zm128 256h-96v96h96v-96zm128 0h-96v96h96v-96z" />',viewBox:"0 0 512 512"},Vs={name:"table-cell",content:'<path d="M32 32v416h416V32H32zm128 384H64v-96h96v96zm0-128H64v-96h96v96zm0-128H64V64h96v96zm128 256h-96v-96h96v96zm0-256h-96V64h96v96zm128 256h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},Es={name:"table-cell-properties",content:'<path d="m502.666 77.216-22.627 22.627-67.882-67.882 22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627c12.445 12.445 12.445 32.81 0 45.255zM384 256l32-32v288H0V96h288l-32 32h-96v96h32v96h96v32h96v-96zM128 384H32v96h96v-96zm0-128H32v96h96v-96zm0-128H32v96h96v-96zm128 256h-96v96h96v-96zm128 0h-96v96h96v-96zm8.483-332.365 67.882 67.882-141.588 141.588L290.66 288H224v-66.66l26.895-28.118L392.483 51.635zm22.627 67.882L392.483 96.89 256.719 232.654l11.314 11.314 11.314 11.314L415.11 119.517z" />',viewBox:"0 0 512 512"},Ts={name:"table-column-insert-left",content:'<path d="M32 480V0h128v480H32zM480 32v416H192V32h288zM224 160h96V64h-96v96zm0 128h96v-96h-96v96zm0 128h96v-96h-96v96zm224-96h-96v96h96v-96zm0-32v-96h-96v96h96zm0-224h-96v96h96V64z" />',viewBox:"0 0 512 512"},Bs={name:"table-column-insert-right",content:'<path d="M352 480V0h128v480H352zM320 32v416H32V32h288zm-32 32h-96v96h96V64zm0 128h-96v96h96v-96zm0 128h-96v96h96v-96zM64 416h96v-96H64v96zm96-128v-96H64v96h96zM64 160h96V64H64v96z" />',viewBox:"0 0 512 512"},js={name:"table-row-insert-above",content:'<path d="M480 160H0V32h480v128zM32 192h416v288H32V192zm32 32v96h96v-96H64zm128 0v96h96v-96h-96zm128 0v96h96v-96h-96zm96 224v-96h-96v96h96zm-128-96h-96v96h96v-96zm-128 96v-96H64v96h96z" />',viewBox:"0 0 512 512"},Ls={name:"table-row-insert-below",content:'<path d="M480 480H0V352h480v128zM32 32h416v288H32V32zm128 256v-96H64v96h96zm128 0v-96h-96v96h96zm128 0v-96h-96v96h96zM320 64v96h96V64h-96zm-32 0h-96v96h96V64zM64 64v96h96V64H64z" />',viewBox:"0 0 512 512"},Rs={name:"table-column-delete",content:'<path d="M192 288v224h128V288H192zm0-288v64h128V0H192zm160 32h128v416H352V32zm96 288h-64v96h64v-96zm0-128h-64v96h64v-96zm0-128h-64v96h64V64zM32 32h128v416H32V32zm96 288H64v96h64v-96zm0-128H64v96h64v-96zm0-128H64v96h64V64zm128 89.373L313.373 96 336 118.627 278.627 176 336 233.373 313.373 256 256 198.627 198.627 256 176 233.373 233.373 176 176 118.627 198.627 96 256 153.373z" />',viewBox:"0 0 512 512"},Ds={name:"table-row-delete",content:'<path d="M224 192H0v128h224V192zm288 0h-64v128h64V192zm-32 160v128H64V352h416zm-288 96v-64H96v64h96zm128 0v-64h-96v64h96zm128 0v-64h-96v64h96zm32-416v128H64V32h416zm-288 96V64H96v64h96zm128 0V64h-96v64h96zm128 0V64h-96v64h96zm-89.373 128L416 313.373 393.373 336 336 278.627 278.627 336 256 313.373 313.373 256 256 198.627 278.627 176 336 233.373 393.373 176 416 198.627 358.627 256z" />',viewBox:"0 0 512 512"},Ns={name:"table-cell-delete",content:'<path d="M96 192h160v128H96V192zM32 352h160v128H32V352zm32 32v64h96v-64H64zm128-224H32V32h160v128zm-32-96H64v64h96V64zm262.627 192L480 313.373 457.373 336 400 278.627 342.627 336 320 313.373 377.373 256 320 198.627 342.627 176 400 233.373 457.373 176 480 198.627 422.627 256z" />',viewBox:"0 0 512 512"},Fs={name:"table-delete",content:'<path d="M32 32v416h416V32H32zm384 128h-64v32h64v96h-64v32h64v96h-96v-64h-32v64h-96v-64h-32v64H64v-96h64v-32H64v-96h64v-32H64V64h96v64h32V64h96v64h32V64h96v96zm-153.4 80 57.4 57.4-22.6 22.6-57.4-57.4-57.4 57.4-22.6-22.6 57.4-57.4-57.4-57.4 22.6-22.6 57.4 57.4 57.4-57.4 22.6 22.6-57.4 57.4z" />',viewBox:"0 0 512 512"},Us={name:"cells-merge",content:'<path d="M32 32v448h416V32H32zm160 32h96v64h-96V64zM64 64h96v64H64V64zm96 384H64v-64h96v64zm128 0h-96v-64h96v64zm128 0h-96v-64h96v64zm0-96H64V160h352v192zm0-224h-96V64h96v64z" />',viewBox:"0 0 512 512"},Ws={name:"cells-merge-horizontally",content:'<path d="M32 32v416h416V32H32zm160 32h96v96h-96V64zM64 64h96v96H64V64zm96 352H64v-96h96v96zm128 0h-96v-96h96v96zm128 0h-96v-96h96v96zm0-128H64v-96h352v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},Gs={name:"cells-merge-vertically",content:'<path d="M32 448h416V32H32v416zm32-160v-96h96v96H64zm0 128v-96h96v96H64zm352-96v96h-96v-96h96zm0-128v96h-96v-96h96zm0-128v96h-96V64h96zm-128 0v352h-96V64h96zm-128 0v96H64V64h96z" />',viewBox:"0 0 512 512"},Ks={name:"cell-split-horizontally",content:'<path d="M32 32v416h416V32H32zm32 32h160v64H64V64zm160 160h-64v-64h64v64zM64 160h64v64H64v-64zm0 96h160v64H64v-64zm0 160v-64h160v64H64zm192-256h64v64h-64v-64zm160 256H256v-64h160v64zm0-96H256v-64h160v64zm0-96h-64v-64h64v64zm0-96H256V64h160v64z" />',viewBox:"0 0 512 512"},Xs={name:"cell-split-vertically",content:'<path d="M32 448h416V32H32v416zm32-32V256h64v160H64zm160-160v64h-64v-64h64zm-64 160v-64h64v64h-64zm96 0V256h64v160h-64zm160 0h-64V256h64v160zM160 224v-64h64v64h-64zM416 64v160h-64V64h64zm-96 0v160h-64V64h64zm-96 0v64h-64V64h64zm-96 0v160H64V64h64z" />',viewBox:"0 0 512 512"},Zs={name:"table-unmerge",content:'<path d="M32 32v416h416V32H32zm160 32h96v96h-96V64zm96 128v96h-96v-96h96zM64 64h96v96H64V64zm0 128h96v96H64v-96zm96 224H64v-96h96v96zm128 0h-96v-96h96v96zm128 0h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},Ys={name:"pane-freeze",content:'<path d="M32 32v416h416V32H32zm256 32 96 96h-64l-96-96h64zm-128 0 96 96h-64L96 64h64zM64 96l96 96v64l-96-96V96zm0 128 96 96v64l-96-96v-64zm0 192v-64l64 64H64zm224 0h-96v-96h96v96zm0-128h-96v-96h96v96zm128 128h-96v-96h96v96zm0-128h-96v-96h96v96zM352 64h64v64l-64-64z" />',viewBox:"0 0 512 512"},qs={name:"row-freeze",content:'<path d="M32 448h416V32H32v416zM64 96l64 64H64V96zm96-32 96 96h-64L96 64h64zm128 0 96 96h-64l-96-96h64zm128 64-64-64h64v64zm-96 160v-96h96v96h-96zm-128 0v-96h96v96h-96zm-32 0H64v-96h96v96zm160 128v-96h96v96h-96zm-128 0v-96h96v96h-96zm-128 0v-96h96v96H64z" />',viewBox:"0 0 512 512"},Qs={name:"column-freeze",content:'<path d="M32 32v416h416V32H32zm128 32v64L96 64h64zM64 96l96 96v64l-96-96V96zm0 128 96 96v64l-96-96v-64zm0 192v-64l64 64H64zm224 0h-96v-96h96v96zm0-128h-96v-96h96v96zm-96-128V64h96v96h-96zm224 256h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},Js={name:"toolbar-float",content:'<path d="M64 352h416v128H64V352zm96 32H96v64h96v-64h-32zm160 0h-96v64h96v-64zm32 0v64h96v-64h-96zM63.961 131.844l90.51 90.51 45.255-45.255-90.51-90.51-45.255 45.255zm0 0 90.51 90.51 45.255-45.255-90.51-90.51-45.255 45.255zm158.392 67.882 67.882-67.882-22.627-22.627-22.627 22.627-90.51-90.51c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882c-12.445 12.445-12.445 32.81 0 45.255l90.51 90.51-22.627 22.627 22.627 22.627 67.882-67.882L297.373 320 320 297.373l-97.647-97.647zm-67.882 22.627-90.51-90.51 45.255-45.255 90.51 90.51-45.255 45.255zM480 256h-64v64h64v-64z" />',viewBox:"0 0 512 512"},$s={name:"spell-checker",content:'<path d="M113.2 206.2c-7.4 6.2-15.6 10.7-24.6 13.5s-19.3 4.2-31 4.2c-8.4 0-16.1-1-23.1-2.9s-13.1-4.9-18.2-8.8c-5.1-3.9-9.1-8.8-12-14.6C1.4 192 0 185.2 0 177.5c0-18.9 8.1-32.9 24.4-41.9s40.9-13.5 74-13.5h13.7c0-2.6 0-5.3-.1-8.2-.1-2.9-.3-5.4-.7-7.6-.8-7.6-3.5-13.2-8-17-4.5-3.7-11.8-5.6-21.7-5.6-10.4 0-18.1 1.9-23.3 5.8s-7.8 9.5-7.8 16.8H7c2.4-32.7 27.8-49 76.3-49 6.6 0 12.6.2 17.9.6 5.3.4 10.2 1.1 14.6 2 4.4 1 8.6 2.2 12.5 3.7 3.9 1.5 7.6 3.4 11.4 5.7 3.5 2.2 6.4 4.7 9 7.4 2.5 2.8 4.6 6.1 6.4 9.9 1.7 3.9 3 8.3 3.8 13.3s1.2 10.8 1.2 17.4V224h-46.8l-.1-17.8zm-1-58H96.8c-16.2 0-28.4 2-36.5 5.9s-12.2 10.6-12.2 20.2c0 7.3 2.5 12.7 7.5 16.2s11.5 5.2 19.4 5.2c7.6 0 14.6-1.5 21.2-4.5s11.9-6.9 15.8-11.7v-31.3h.2zm125.2-61.6c5.5-7.2 12.3-12.8 20.2-16.7C265.5 66 274 64 283.1 64c10.2 0 19.2 1.9 26.8 5.7 7.7 3.8 14.1 9.2 19.3 16.3 5.2 7.1 9.1 15.7 11.7 25.9s4 21.6 4 34.3-1.2 19-4.3 29.4c-3 10.4-7.6 17.9-13.3 25.2-5.7 7.3-12.6 13-20.7 17.1s-17.3 6.1-27.5 6.1c-17.5 0-31.9-5.2-43.3-15.6V224H192V0h45.4v86.6zm0 91.7c4.4 4.1 9.1 7.2 14.1 9.4 5 2.1 10.5 3.2 16.5 3.2 9.8 0 17.4-4.3 22.7-12.8 5.3-8.6 7.9-14.7 7.9-31.8 0-32.7-9.6-49-28.7-49-6.2 0-12 1.9-17.4 5.6s-10.5 9-15.1 15.8v59.6zM442.2 224c-12.4 0-23.4-1.8-33.3-5.4-9.8-3.6-18.1-8.8-25-15.6-6.8-6.8-12-15.2-15.7-25.1-3.7-9.9-5.5-21.3-5.5-34s1.8-24 5.5-33.9 8.9-18.2 15.9-25.1c6.9-6.9 15.3-12.1 25.2-15.6 9.9-3.6 21.1-5.4 33.6-5.4 20 0 36 4.7 48 14.1s19 23 21 40.9h-41c-1-7-3.9-12.7-8.8-16.9-4.9-4.2-11.2-6.3-19.2-6.3-10.2 0-18.4 3.9-24.5 11.6s-9.2 19.9-9.2 36.6c0 16.5 3.1 28.7 9.2 36.5s14.3 11.7 24.5 11.7c7.9 0 14.4-2.1 19.3-6.3s7.8-9.8 8.7-16.9h41c-2.5 17.7-9.7 31.2-21.5 40.7-11.6 9.6-27.7 14.4-48.2 14.4zm69.8 0L224 512 64 352l64-64 96 96 288-160" />',viewBox:"0 0 512 512"},tc={name:"validation-xhtml",content:'<path d="M192 224h-54l-26.2-96L86 224H32L0 64h42l22 96 22-96h52l22 96 22-96h42l-32 160zm272.5-121.8c4.7 4.2 7.4 9.8 8.5 16.8h38.9c-2-17.9-8.6-31.3-19.9-40.8-11.5-9.3-26.5-14-45.6-14-11.9 0-22.5 1.7-32 5.3-9.4 3.6-17.4 8.9-23.9 15.7-6.7 6.9-11.6 15.2-15.1 25-3.5 10-5.3 21.2-5.3 33.8 0 12.8 1.8 24 5.3 33.8 3.5 10 8.3 18.4 14.8 25.1 6.5 6.7 14.5 11.8 23.8 15.4 9.4 3.6 20 5.4 31.6 5.4 19.4 0 34.7-4.8 45.9-14.3 11.2-9.5 18-23 20.4-40.5H473c-.9 7-3.7 12.6-8.3 16.8-4.7 4.3-10.7 6.3-18.3 6.3-9.8 0-17.5-3.9-23.5-11.7-5.8-7.8-8.6-19.9-8.6-36.3 0-16.7 2.8-28.7 8.6-36.5 5.9-7.8 13.6-11.5 23.5-11.5 7.5 0 13.6 2 18.1 6.2zM316.7 219.8c7.3-2.3 13.6-5.8 18.9-10.2l.1-.1c5.2-4.6 9.1-9.9 11.8-16.1 2.8-6 4.2-12.7 4.2-20.7 0-10-2.7-18.4-8-25.3-3.5-4.4-7.9-7.9-13.2-10.5.3-.3.7-.5 1-.8 3.1-2.4 5.5-5 7.6-8.1 2-3 3.5-6.2 4.5-9.4 1-3.5 1.5-6.9 1.5-10.4 0-6.6-1.3-12.6-3.9-18.1-2.6-5.4-6.4-10.3-11.4-14.2-4.8-4.2-10.5-7.2-17-9.1-6.3-1.8-13.7-2.8-22.1-2.8-7.4 0-14.3 1-20.8 3.1-6.3 2.1-11.7 5.2-16.9 9.3-5 4.1-9 9.2-11.9 15.1-3 5.9-4.9 12.7-5.6 20.3l-.5 5.1h38.2l.5-4.4c1.6-14.6 9.9-16.5 16.9-16.5 4.8 0 8.3 1.1 10.7 3.3l.1.1c2.7 2.5 3.3 7.1 3.3 10.4 0 5.6-1.2 9.4-3.8 11.4l-.1.1c-2.8 2.4-7.2 3.5-13.4 3.5H276v31h13.7c7.4 0 12.8 1.4 16.3 4 3.3 2.7 4.9 6.5 4.9 12.2 0 2.9-.5 5.6-1.4 8-.9 2.3-2.1 4.1-3.9 5.9-1.4 1.5-3.4 2.7-5.9 3.6-2.4.9-5.2 1.4-8.4 1.4-3.4 0-6.3-.4-9-1.3-2.2-.8-4.1-2-5.7-3.5-1.6-1.6-2.8-3.3-3.7-5.2-.8-1.9-1.2-4.1-1.5-6.7l-.4-4.2h-39.1l.3 5c.5 7.4 2.3 14.5 5.3 21 3.1 6.1 7.8 11.8 14.2 16.6 4.9 3.8 10.8 6.6 17.8 8.4h.4c6.4 1.5 13.8 2.3 22.1 2.3 9.5 0 17.5-1.2 24.7-3.5zM64 352l64-64 96 96 288-160-288 288L64 352z" />',viewBox:"0 0 512 512"},ec={name:"validation-data",content:'<path d="m64 352 64-64 96 96 288-160-288 288L64 352zm48.6-193.6c0 13-2.5 24.4-7.6 34.4s-12.3 17.7-21.8 23.1c-9.4 5.4-20.3 8.1-32.7 8.1H0V96h49.5c42.1 0 63.1 20.8 63.1 62.4zm-38 .3c0-6.3-1.2-12-3.5-17-2.4-5-5.7-8.9-10.1-11.7-4.4-2.7-9.6-4.1-15.6-4.1H36v68h10.1c8.6 0 15.6-3.2 20.7-9.5 5.2-6.4 7.8-14.9 7.8-25.7zM216.2 224l-5.5-24h-37.2l-5.9 24H128l42.3-128h45.9L256 224h-39.8zm-23.6-100h-.9c-.1 1.4-.5 3.8-1.2 7.1s-4.1 17.2-10.4 41.9h23.4l-8.6-34.7c-1.1-5-1.9-9.8-2.3-14.3zm127.4 4v96h-32v-96h-32V96h98v32h-34zm120.2 96-5.5-24h-37.2l-5.9 24H352l42.3-128h45.9L480 224h-39.8zm-23.6-100h-.9c-.1 1.4-.5 3.8-1.2 7.1s-4.1 17.2-10.4 41.9h23.4l-8.6-34.7c-1.1-5-1.9-9.8-2.3-14.3z" />',viewBox:"0 0 512 512"},oc={name:"toggle-full-screen-mode",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm0 319.942a.53.53 0 0 1-.058.058H64.058a.454.454 0 0 1-.058-.058V64.057a.511.511 0 0 1 .057-.057h383.885c.02.017.041.038.058.057v287.885zM384 480H128c35.346 0 64-28.654 64-64h128c0 35.346 28.654 64 64 64zm32-160H96c58.263-113.973 183.21-192 320-192v192z" />',viewBox:"0 0 512 512"},nc={name:"formula-fx",content:'<path d="m214 183.4-24.7 110c-11.5 53.4-22.7 92.1-33.7 116.1-11 24-23.8 41.8-38.4 53.2-14.7 11.6-31.5 17.3-50.5 17.3-12 0-20.7-2.7-26.3-8-5.6-5.3-8.4-11.5-8.4-18.7 0-6.7 2.3-12.5 7-17.4 4.7-4.9 10.8-7.3 18.3-7.3 6.3 0 11.2 1.9 14.5 5.6 3.4 3.7 5.1 8.5 5.1 14.2 0 5.2-1 9.1-3.2 11.6-2.1 2.5-3.2 4.2-3.2 5l1 1.7c.8.8 1.8 1.2 3 1.2 4.2 0 7.8-1.5 10.8-4.7 7.4-7.7 13-17 16.6-27.9 2.5-7.5 7.4-27.4 14.5-59.5l43-192.6h-29.3l7-28.7c10.5.2 18.2-1.4 23-4.7 4.8-3.3 9.8-10.6 15.2-22 15.4-33.1 31.7-60.1 48.9-74.4S260.4 32 281.5 32c13.5 0 23.3 3 29.4 9.1 6.1 6.1 9.2 13.9 9.2 23.5 0 8.5-2 15.2-6.1 20.2-4.1 5.1-9.2 7.5-15.2 7.5-5.6 0-10.3-2-13.9-6.1-3.6-4.1-5.5-9-5.5-14.7 0-4.1 1.1-8.4 3.5-13 2.3-4.6 3.5-7.7 3.5-9.3 0-1.8-.5-3.3-1.6-4.4-1-1.1-2.4-1.7-4.1-1.7-8.3 0-16.8 5.9-25.5 17.9-14.3 19.1-25.9 52.5-34.5 93.8h30.5l-7.4 28.7-29.8-.1zm78.7 22.7 68.9-14.1c12.5 23.3 21.3 48.9 26.5 76.9 12.9-22.7 22.7-38.6 29.3-47.6 8.8-12.2 16.1-20.1 21.8-23.8 5.8-3.7 11.9-5.5 18.3-5.5 7.2 0 12.8 2.4 16.7 7 3.9 4.7 5.8 11 5.8 19 0 7.5-2 13.6-5.8 18.4-3.9 4.7-8.7 7.1-14.5 7.1-4.2 0-9-.9-14.5-2.7-5.4-1.8-9.3-2.7-11.3-2.7-5.6 0-10.8 2.4-15.8 7-6.8 6.4-15.2 20.1-25.3 41 11.2 46.9 20.1 75.5 26.9 85.8 3.9 6.1 7.9 9.2 12.1 9.2 3.4 0 6.4-1 8.9-3 3.8-3.3 9.7-11.5 17.6-24.6l7.1 4.9c-11.6 22.2-22.9 37.9-34 46.9-8.4 7-16.7 10.6-24.9 10.6-8.4 0-15.4-2.3-21-6.7-5.6-4.5-10.6-11.7-14.9-21.8-4.4-10-9.5-26.2-15.4-48.4-15.4 23.3-27.5 40.3-36.3 51-8.7 10.7-16 17.7-21.8 21-5.8 3.3-12 4.9-18.6 4.9-6.8 0-12.3-2.4-16.3-7-4-4.7-6-10.8-6-18.3 0-7.9 2.2-14.5 6.5-19.6 4.3-5.2 9.9-7.7 16.6-7.7 3.6 0 7.6 1.3 12.1 3.7 6.6 3.8 11.3 5.7 14.2 5.7 3.8 0 7.2-.9 10.3-2.8 3.9-2.4 9-7.4 15-15.3 3.7-4.8 10.5-15.1 20.4-31-12.6-55.8-22.5-89.1-29.6-100-4.5-7-10.2-10.6-17-10.6-3.6 0-7.9.6-13 1.9l1-8.8z" />',viewBox:"0 0 512 512"},rc={name:"sum",content:'<path d="M416 64v128l-64-64H160l128 128-128 128h192l64-64v128H96v-64l128-128L96 128V64h320z" />',viewBox:"0 0 512 512"},ic={name:"symbol",content:'<path d="m448 416 32-32v96H320V375.8c11.4-5.1 22.2-11.5 32-19 38.9-29.7 64-76.9 64-130.1C416 136.8 344.4 64 256 64S96 136.8 96 226.7c0 53.2 25.1 100.5 64 130.1 9.8 7.5 20.6 13.9 32 19V480H32v-96l32 32h96v-18.5C84.3 366.7 32 300.6 32 224 32 118 132.3 32 256 32s224 86 224 192c0 76.6-52.3 142.7-128 173.5V416h96z" />',viewBox:"0 0 512 512"},ac={name:"dollar",content:'<path d="M326.6 273c-8.3-7.3-18.4-13.6-30.4-19.1-11.8-5.4-25.2-10.2-40.2-14.5V131.3c6.5.8 13 2.2 17.7 4.2 7.5 3.3 13.7 7.8 18.8 13.7 5.1 5.8 8.9 12.7 11.4 20.7 2.6 8 3.8 16.7 3.8 26.2H352c0-29.2-7.5-52-22.5-68.8s-36-26.8-62.9-30.1c0 0-5-.4-10.6-.8V32h-32v66.2c-11.9 1.5-22.6 4.3-32.2 8.4-10.6 4.5-19.6 10.3-27.1 17.5-7.5 7.2-13.2 15.6-17.2 25.4-4 9.7-6 20.5-6 32.2 0 12.7 2.2 23.8 6.7 33.4s11 18.2 19.5 25.6 18.8 13.8 30.9 19.3c7.8 3.5 16.3 6.8 25.4 9.7v110.7c-2.7-.4-5.4-.9-8.1-1.5-7.9-1.8-15.2-5.1-21.7-9.8-6.5-4.7-11.8-11-15.8-19s-6-18-6-30H128c0 16.2 2.6 30 7.9 41.6 5.3 11.6 12.4 21.2 21.3 28.6 8.9 7.5 19.1 13.3 30.6 17.3s23.4 6.5 35.7 7.5c0 0 .2 0 .5.1V480h32v-64.7c1.9-.2 3.1-.3 3.1-.3 14.1-1.3 26.9-4.1 38.4-8.3 11.5-4.3 21.3-10 29.4-17.1 8.1-7.1 14.3-15.6 18.6-25.4 4.3-9.8 6.5-20.9 6.5-33.2 0-12.5-2.2-23.5-6.5-33-4.3-9.4-10.6-17.8-18.9-25zm-104.7-46.2c-8.8-4.1-15.9-8.4-21.2-12.9s-9.1-9.6-11.3-15c-2.2-5.5-3.4-11.6-3.4-18.5 0-7.4 1.2-14.1 3.6-20.3 2.4-6.1 6-11.3 10.8-15.7 4.8-4.3 10.9-7.7 18.3-10.1 1.7-.6 3.5-1 5.3-1.5v94.9c-.6-.2-1.4-.5-2.1-.9zm81 125.2c-3 6.2-7.5 11.4-13.2 15.8-5.8 4.3-12.8 7.7-21.2 10-3.9 1.1-8.1 1.9-12.5 2.5V279.2c5.6 2 10.7 4.1 15.3 6.2 8.6 4 15.6 8.3 20.9 13 5.4 4.7 9.3 9.7 11.7 15.1 2.4 5.4 3.6 11.3 3.6 17.7 0 7.7-1.5 14.7-4.6 20.8z" />',viewBox:"0 0 512 512"},sc={name:"percent",content:'<path d="M352 64h32L160 448h-32L352 64zm16 160c-44.2 0-80 50.1-80 112s35.8 112 80 112 80-50.1 80-112-35.8-112-80-112zm0 192c-22.7 0-48-32.9-48-80s25.3-80 48-80 48 32.9 48 80-25.3 80-48 80zM144 64c-44.2 0-80 50.1-80 112s35.8 112 80 112 80-50.1 80-112-35.8-112-80-112zm0 192c-22.7 0-48-32.9-48-80s25.3-80 48-80 48 32.9 48 80-25.3 80-48 80z" />',viewBox:"0 0 512 512"},cc={name:"custom-format",content:'<path d="M128 128v224H80V182.4s-13.1 19.1-48 19.1v-40.6c34.9 0 61.7-32.9 61.7-32.9H128zm94.4 184H320v40H169v-16.6c.3-11.3 2.2-21.4 6-30.3 3.8-9 8.6-17 14.3-24.1s12-13.4 18.8-18.9 13.3-10.4 19.4-14.8c6.5-4.6 12.1-9 17-13.2s9-8.4 12.3-12.5 5.8-8.3 7.5-12.6c1.6-4.2 2.5-8.8 2.5-13.6 0-9.4-2.7-16.5-8-21.4-5.3-4.8-13.5-7.2-24.4-7.2-18.9 0-37.1 7.5-54.4 22.6v-42.7c19.2-12.4 40.8-18.6 64.8-18.6 11.2 0 21.2 1.5 30 4.4 8.9 2.9 16.4 7.1 22.5 12.5s10.8 12 14.1 19.7c3.2 7.7 4.8 16.4 4.8 25.9 0 10.1-1.6 19.2-4.7 27-3.1 7.9-7.3 15.1-12.4 21.5-5.2 6.5-11.1 12.4-17.9 17.7-6.8 5.4-13.8 10.6-21 15.6-4.9 3.5-9.7 6.9-14.2 10.4-4.6 3.4-8.6 6.8-12.1 10.1s-6.2 6.6-8.3 9.8c-2.2 3.1-3.2 9.3-3.2 9.3zM341 341.2v-41.7s32.1 15.8 51.5 15.8c12.2 0 21.8-2.6 28.6-7.9 6.8-5.3 10.2-12.5 10.2-21.9 0-9.7-4.2-17.1-12.7-22.3-8.4-5.3-20-7.9-34.8-7.2H364v-37h17.7c28.4 0 42.6-9.4 42.6-28.1 0-17.6-10.9-26.4-32.7-26.4-14.7 0-28.8 4.7-42.6 14v-38.9c15.4-7.7 33.1-11.5 53.6-11.5 22.3 0 39.6 5 52.1 14.9 12.4 10 18.7 22.9 18.7 38.8 0 28.3-14.5 46-43.4 53.2v.3c15.5 1.9 27.6 7.5 36.5 16.8 8.9 9.2 13.3 20.6 13.3 34 0 20.3-7.4 36.4-22.4 48.2-15 11.8-35.5 17.7-61.7 17.7-22.3.1-40.6-3.5-54.7-10.8z" />',viewBox:"0 0 512 512"},lc={name:"decimal-increase",content:'<path d="M384 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64v-64c0-35.3-28.6-64-64-64zm32 118c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7v-42.7c0-23.5 14.4-42.6 32-42.6 17.7 0 32 19.1 32 42.6V374zM384 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.6-64-64-64zm32 118c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7v-42.7c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7V150zM224 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64s64-28.7 64-64v-64c0-35.3-28.6-64-64-64zm32 118c0 23.6-14.3 42.7-32 42.7s-32-19.1-32-42.7v-42.7c0-23.5 14.3-42.6 32-42.6s32 19.1 32 42.6V374zM96 416h32v32H96v-32zm160-224h32v32h-32v-32zM192 32v192L64 128l128-96z" />',viewBox:"0 0 512 512"},hc={name:"decimal-decrease",content:'<path d="M384 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.6-64-64-64zm32 116.7c0 23.5-14.3 42.6-32 42.6-17.6 0-32-19.1-32-42.6V106c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7v42.7zM384 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64v-64c0-35.3-28.6-64-64-64zm32 116.7c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7V330c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7v42.7zM224 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm32 116.7c0 23.5-14.3 42.6-32 42.6s-32-19.1-32-42.6V106c0-23.6 14.3-42.7 32-42.7s32 19.1 32 42.7v42.7zM128 224H96v-32h32v32zm128 192h32v32h-32v-32zM64 256l128 96-128 96V256z" />',viewBox:"0 0 512 512"},pc={name:"font-size",content:'<path d="M97 224 32 416h29l16.9-50H146l16.9 50h29l-65-192H97zm-8.9 112 23.9-70.6 23.9 70.6H88.1zM376 96h-48L224 416h48l26-80h108l26 80h48L376 96zm-62.4 192L352 169.8 390.4 288h-76.8z" />',viewBox:"0 0 512 512"},uc={name:"image-absolute-position",content:'<path d="M416 240c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48zm96-80v320c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h320c17.7 0 32 14.3 32 32zm-32 26.7c0-14.7-11.9-26.7-26.7-26.7H186.7c-14.7 0-26.7 11.9-26.7 26.7V384l96-96 96 96 64-64 64 64V186.7zM32 0H0v512h32v-64h32v-32H32v-64h32v-32H32v-64h32v-32H32v-64h32v-32H32V32h96v32h32V32h64v32h32V32h64v32h32V32h64v32h32V32h64V0H32z" />',viewBox:"0 0 512 512"},vc={name:"table-wizard",content:'<path d="M160 384V160h224v96l32 32V0H0v416h288l-32-32h-96zM288 32h96v96h-96V32zm-128 0h96v96h-96V32zm-32 352H32v-96h96v96zm0-128H32v-96h96v96zm0-128H32V32h96v96zm376.6 362.1-15.5 15.5c-8.6 8.6-22.4 8.6-31 0l-124-124c-8.6-8.6-8.6-22.4 0-31l15.5-15.5c8.6-8.6 22.4-8.6 31 0l124 124c8.6 8.5 8.6 22.4 0 31zm-158.5-209-21-14.8c-3.2-2.3-5.1-6-5.1-10l.3-25.7c.1-6.6-5.2-12.1-11.8-12.2-2.6 0-5.2.8-7.3 2.4l-20.6 15.4c-3.2 2.4-7.3 3-11 1.8l-24.3-8.3c-6.8-2.3-14.3 1.9-15.7 9.3-.4 2.1-.1 4.2.5 6.2l8.2 24.1c1.3 3.7.6 7.8-1.8 11l-15.4 20.6c-4.3 5.8-2.6 14.2 4 17.8 1.9 1 4 1.4 6.1 1.4l25.4-.3c3.9-.1 7.7 1.8 10 5.1l14.8 21c4.2 5.9 12.7 6.9 18.1 1.7 1.5-1.5 2.6-3.3 3.2-5.3l7.5-24.3c1.2-3.8 4.1-6.7 7.9-7.9l24.5-7.6c6.3-2 9.8-8.7 7.9-15-.7-2.7-2.3-4.9-4.4-6.4z" />',viewBox:"0 0 512 512"},dc={name:"crosstab",content:'<path d="M192.3 32H32v160h1v288h447V32H192.3zm-.3 416H96v-96h96v96zm0-128H96v-96h96v96zm0-128H96V96h96v96zm128 256h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V96h96v96zm128 256h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V96h96v96z" />',viewBox:"0 0 512 512"},fc={name:"crosstab-wizard",content:'<path d="M192 416V192h224v96l32 32V0H0v160h1v288h318.7l-31.9-32H192zM320 64h96v96h-96V64zm-128 0h96v96h-96V64zm-32 352H64v-96h96v96zm0-128H64v-96h96v96zm0-128H64V64h96v96zm344.6 330.1-15.5 15.5c-8.6 8.6-22.4 8.6-31 0l-124-124c-8.6-8.6-8.6-22.4 0-31l15.5-15.5c8.6-8.6 22.4-8.6 31 0l124 124c8.6 8.5 8.6 22.4 0 31zM221.2 300.8c-4.3 5.8-2.6 14.2 4 17.8 1.9 1 4 1.4 6.1 1.4l25.4-.3c3.9-.1 7.7 1.8 10 5.1l14.8 21c4.2 5.9 12.7 6.9 18.1 1.7 1.5-1.5 2.6-3.3 3.2-5.3l7.5-24.3c1.2-3.8 4.1-6.7 7.9-7.9l24.5-7.6c6.3-2 9.9-8.7 7.9-15-.8-2.5-2.4-4.7-4.5-6.2l-21-14.8c-3.2-2.3-5.1-6-5.1-10l.3-25.7c.1-6.6-5.2-12.1-11.8-12.2-2.6 0-5.2.8-7.3 2.4l-20.6 15.4c-3.2 2.4-7.3 3-11 1.8l-24.3-8.3c-6.8-2.3-14.3 1.9-15.7 9.3-.4 2.1-.1 4.2.5 6.2l8.2 24.1c1.3 3.7.6 7.8-1.8 11l-15.3 20.4z" />',viewBox:"0 0 512 512"},mc={name:"table-body",content:'<path d="M32 32v416h416V32H32zm256 32v96h-96V64h96zm128 256v64L224 192h64l128 128zM64 64h96v96H64V64zm0 128h96v96H64v-96zm0 224v-96h96v96H64zm128 0v-64l64 64h-64zm128 0L192 288v-64l192 192h-64zm96-160-64-64h64v64zm0-96h-96V64h96v96z" />',viewBox:"0 0 512 512"},yc={name:"table-column-groups",content:'<path d="M32 32v416h416V32H32zm256 32v64l-64-64h64zm0 320-96-96v-64l96 96v64zM192 96l96 96v64l-96-96V96zM64 64h96v96H64V64zm0 128h96v96H64v-96zm0 224v-96h96v96H64zm128 0v-64l64 64h-64zm224 0h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},gc={name:"table-corner",content:'<path d="M32 32v416h416V32H32zm256 32v96h-96V64h96zm0 128v96h-96v-96h96zM160 64v64L96 64h64zM64 96l64 64H64V96zm0 96h96v96H64v-96zm0 224v-96h96v96H64zm128 0v-96h96v96h-96zm224 0h-96v-96h96v96zm0-128h-96v-96h96v96zm0-128h-96V64h96v96z" />',viewBox:"0 0 512 512"},bc={name:"table-row-groups",content:'<path d="M32 32v416h416V32H32zm256 32v96h-96V64h96zm-64 128h64l96 96h-64l-96-96zm32 96h-64l-96-96h64l96 96zM64 64h96v96H64V64zm0 160 64 64H64v-64zm0 192v-96h96v96H64zm128 0v-96h96v96h-96zm224 0h-96v-96h96v96zm0-160-64-64h64v64zm0-96h-96V64h96v96z" />',viewBox:"0 0 512 512"},xc={name:"globe-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zM64 256c0-57 24.8-108.2 64.3-143.3.3 1.8 1 3.6 1.9 5.4 11.9 22.1 47.7 92.5 87.8 104.1 40.1 11.6 38.6 22.2 45 29.9 6.5 7.7-12.2 24.4 5.6 55.9 9.6 13.2 18.3 5.5 22.6 27.6 4.1 21-20.6 95-7.8 110.4-9 1.3-18.1 2-27.4 2-106 0-192-86-192-192zm222.4 189.6c10.5-37 41.8-89.2 75.8-98.9 24.4-20.5 23.3-38.8 20.1-55.4-7.6-13.9-41.7-26-74.3-54.8-19.5-4.4-43.4 8.3-52.6-3.9-9.2-12.2-52.6-29.9-33.6-49.3s47.7.6 59.1-39.3 35.2-23.2 47.2-23.2S342.2 92 320 81.5c-16.7-7.9-38.6-16.1-71.7-17.4 2.6-.1 5.2-.2 7.8-.2 106 0 192 86 192 192C448 351.7 378 431 286.4 445.6z" />',viewBox:"0 0 512 512"},wc={name:"globe",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm106.2 314.7c-34.7 10-66.7 64.2-76.4 101.3-17.9-9.4 9.8-90.2 5.4-112.4-4.3-22.1-13-14.4-22.6-27.6-17.8-31.5.9-48.3-5.6-55.9-6.5-7.7-4.9-18.3-45-29.9-40.1-11.6-75.9-81.9-87.8-104.1-11.9-22.1 26.6-47 81.3-52.6 10.3-1 19.7-1.5 28.4-1.5 37.8.1 61.9 9 80 17.5 22.2 10.5 20.1 39.3 8.1 39.3s-35.8-16.6-47.2 23.2-40.1 19.9-59.1 39.3 24.4 37.1 33.6 49.3c9.2 12.2 33.1-.6 52.6 3.9 32.6 28.8 66.7 41 74.3 54.8 3.3 16.6 4.4 34.9-20 55.4z" />',viewBox:"0 0 512 512"},_c={name:"map-marker",content:'<path d="M256 0C158.8 0 80 78.8 80 176s176 336 176 336 176-238.8 176-336S353.2 0 256 0zm0 288c-61.9 0-112-50.1-112-112S194.1 64 256 64s112 50.1 112 112-50.1 112-112 112z" />',viewBox:"0 0 512 512"},zc={name:"map-marker-target",content:'<path d="M256 0C158.8 0 80 78.8 80 176s176 336 176 336 176-238.8 176-336S353.2 0 256 0zm0 288c-61.9 0-112-50.1-112-112S194.1 64 256 64s112 50.1 112 112-50.1 112-112 112zm48-112c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48z" />',viewBox:"0 0 512 512"},Cc={name:"pin",content:'<path d="M320 256V96c0-17.6-14.4-32-32-32h-96c-17.6 0-32 14.4-32 32v160H96v32h128v160h32V288h128v-32h-64zm-128 0V96h64v160h-64z" />',viewBox:"0 0 512 512"},kc={name:"unpin",content:'<path d="M256 320h160c17.6 0 32-14.4 32-32v-96c0-17.6-14.4-32-32-32H256V96h-32v128H64v32h160v128h32v-64zm0-128h160v64H256v-64z" />',viewBox:"0 0 512 512"},Mc={name:"share",content:'<path d="M480 432c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-10.6 2.1-20.7 5.8-30l-158.6-88.1C152.9 327.6 133.4 336 112 336c-44.2 0-80-35.8-80-80s35.8-80 80-80c21.4 0 40.9 8.4 55.2 22.1L325.8 110c-3.8-9.3-5.8-19.4-5.8-30 0-44.2 35.8-80 80-80s80 35.8 80 80-35.8 80-80 80c-22 0-41.9-8.9-56.4-23.3l-158 87.8c4.1 9.7 6.4 20.3 6.4 31.5s-2.3 21.8-6.4 31.5l158 87.8C358.1 360.9 378 352 400 352c44.2 0 80 35.8 80 80z" />',viewBox:"0 0 512 512"},Oc={name:"user",content:'<path d="M352 128c0 53-43 96-96 96s-96-43-96-96 43-96 96-96 96 43 96 96zm-96 128c-106 0-192 86-192 192 0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32 0-106-86-192-192-192z" />',viewBox:"0 0 512 512"},Sc={name:"inbox",content:'<path d="M384 32H128L32 288v160c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V288L384 32zM150.2 64h211.6l84 224H352l-32 64H192l-32-64H66.2l84-224z" />',viewBox:"0 0 512 512"},Hc={name:"blogger",content:'<path d="M188.9 64C119.9 64 64 119.5 64 188v136.1C64 392.5 119.9 448 188.9 448h134.4c69 0 124.7-55.5 124.7-123.9v-87.9c0-13.7-11-28.2-24.8-28.2h-21.5c-13.2 0-24.7-11.2-25.6-24 0-68.5-55.2-120-124.2-120h-63zm-4.9 96h72c13.2 0 24 10.8 24 24s-10.8 24-24 24h-72c-13.2 0-24-10.8-24-24s10.8-24 24-24zm0 144h144c13.2 0 24 10.8 24 24s-10.8 24-24 24H184c-13.2 0-24-10.8-24-24s10.8-24 24-24z" />',viewBox:"0 0 512 512"},Pc={name:"blogger-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-31 280.7c0 57.1-46.6 103.3-104.2 103.3H200.4C142.7 416 96 369.8 96 312.7V199.3C96 142.2 142.7 96 200.4 96h52.1C310 96 356 138.9 356 196c.7 10.7 10.4 20 21.4 20h18c11.5 0 20.7 12.1 20.6 23.5l1 73.2zM196 216h60c11 0 20-9 20-20s-9-20-20-20h-60c-11 0-20 9-20 20s9 20 20 20zm120 80H196c-11 0-20 9-20 20s9 20 20 20h120c11 0 20-9 20-20s-9-20-20-20z" />',viewBox:"0 0 512 512"},Ic={name:"delicious",content:'<path d="M256 32h224v224H256V32zM32 256h224v224H32V256z" />',viewBox:"0 0 512 512"},Ac={name:"delicious-box",content:'<path d="M480 448V64c0-17.7-14.3-32-32-32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32zm-224-32V256H96V96h160v160h160v160H256z" />',viewBox:"0 0 512 512"},Vc={name:"digg",content:'<path d="M96 96v64H32v160h96V96H96zm64 0v32h32V96h-32zm0 64v160h32V160h-32zm64 0v160h64v32h-64v32h96V160h-96zm128 0v160h64v32h-64v32h96V160h-96zM64 192h32v96H64v-96zm192 0h32v96h-32v-96zm128 0h32v96h-32v-96z" />',viewBox:"0 0 512 512"},Ec={name:"digg-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM160 203.5V352H64V192h64v-64h32v75.5zM212 352h-32V192h32v160zm0-192h-32v-32h32v32zm119 153.7V416h-96v-32h64v-32h-64V192h96v121.7zm117 0V416h-96v-32h64v-32h-64V192h96v121.7zM96 224h32v96H96v-96zm171 0h32v96h-32v-96zm117 0h32v96h-32v-96z" />',viewBox:"0 0 512 512"},Tc={name:"envelop",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm23.7 32L256 296.3 424.3 128c11 2.9 19.7 11.6 22.6 22.6L342.6 254.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L320 277.5l-64 64-64-64L87.7 381.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L65.1 150.6c2.9-11 11.6-19.7 22.6-22.6z" />',viewBox:"0 0 512 512"},Bc={name:"envelop-box",content:'<path d="m377 182.4-88.8 88.8-31.2 29-33.2-29-88.8-88.8c-7.7 2-13.8 8.1-15.8 15.8l73 73-73 73c2 7.7 8.1 13.8 15.8 15.8l73-73 49 44.8 47-44.8 73 73c7.7-2 13.8-8.1 15.8-15.8l-73-73 73-73c-2-7.7-8.1-13.8-15.8-15.8zM448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-32 329.6c0 12.4-10 22.4-22.4 22.4H118.4C106 384 96 374 96 361.6V182.4c0-12.4 10-22.4 22.4-22.4h275.2c12.4 0 22.4 10 22.4 22.4v179.2z" />',viewBox:"0 0 512 512"},jc={name:"facebook",content:'<path d="M290 32c-59.8 0-96 32-96 96v64h-66v96h66v192h96V288h80l14-96h-94v-32c0-32 32-32 32-32h62V34.9c-7.2-.9-65.4-2.9-94-2.9z" />',viewBox:"0 0 512 512"},Lc={name:"facebook-box",content:'<path d="M57.6 32C43.6 32 32 43.5 32 57.6v396.8c0 14 11.5 25.6 25.6 25.6h396.8c14 0 25.6-11.5 25.6-25.6V57.6c0-14-11.5-25.6-25.6-25.6H57.6zm315.8 65.5c24.1 0 42 2.3 42 2.3L414 155s-18.2-.2-38.1-.2c-21.5 0-24.9 9.9-24.9 26.1V224h64.1l-2.8 59H351v165h-63V283h-44v-59h44v-50.5c0-39.6 25.8-76 85.4-76z" />',viewBox:"0 0 512 512"},Rc={name:"google",content:'<path d="M268.3 33c-16.1-1-33.4 1-52 4.9s-36.4 12.8-53.2 26.5c-12.6 11-21.9 23.4-28.3 37.3-6.3 13.9-9.4 27.7-9.4 41.5 0 11.4 2.1 22.7 6.5 33.8 4.3 11.1 10.6 21.1 18.8 29.7 8.2 8.6 18.4 15.6 30.6 20.9 12.2 5.3 26.1 7.9 41.8 7.9 3.1 0 6.2-.1 9.4-.3s6.3-.5 9.4-.9c-1.6 3.5-2.9 7-4.1 10.3-1.2 3.3-1.8 7.6-1.8 12.6 0 9 1.9 16.5 5.6 22.6s7.7 11.9 12 17.4c-6.7.4-14.5 1-23.5 1.8s-18.6 2.1-28.8 4.1-20.5 4.6-30.9 7.9-20.1 7.7-29.1 13.2c-17.2 10.2-29.1 22-35.6 35.6-6.5 13.6-9.7 25.6-9.7 36.2 0 11 2.6 21.5 7.7 31.5s12.9 18.9 23.5 26.7c10.6 7.9 23.8 14.1 39.7 18.8 15.9 4.7 34.4 7 55.5 7 25.1 0 47.3-3.2 66.7-9.7s35.6-14.9 48.5-25.3 22.7-22.3 29.4-35.6c6.7-13.3 10-26.9 10-40.6 0-10.2-1.4-19.3-4.2-27.1-2.7-7.9-6.4-14.9-10.8-21.2-4.5-6.3-9.8-12.2-15.9-17.7s-12.3-11-18.5-16.5l-21.1-16.5c-3.2-2.8-6.5-6-10-9.7s-5.3-8.9-5.3-15.6c0-6.7 1.8-12.2 5.3-16.5s7.2-8.4 11.2-12.4c6.2-4.7 12.4-9.7 18.2-15 5.9-5.3 11.2-11.2 15.9-17.6 4.7-6.5 8.4-13.8 11.2-22.1 2.7-8.2 4.1-17.9 4.1-28.8s-1.5-20.8-4.7-29.5c-3.1-8.6-6.8-16.2-11.2-22.7-4.3-6.5-8.8-12-13.5-16.5S315.3 52 315.3 52H352l31.7-20-115.4 1zm-37.1 17.8c12.2 0 22.8 3.6 32 10.9s17 16.4 23.2 27.5c6.2 11 11 22.8 14.1 35.4s4.7 24.2 4.7 34.8c0 5.5-.8 12.4-2.3 20.7s-5.7 15.7-12.4 22.4c-4.7 4.7-10.7 8.7-18 11.8-7.3 3.2-14.6 4.7-22 4.7-12.5 0-23.4-3.6-32.6-10.9-9.2-7.3-16.9-16.3-22.9-26.8-6.1-10.6-10.6-22-13.5-34.2s-4.4-23.2-4.4-33.1c0-7.9.9-15.5 2.7-23S185 76.6 190 70.3c4.7-5.9 10.8-10.6 18.2-14.1 7.5-3.6 15.1-5.4 23-5.4zM260 314h7.3c1.8 0 3.8.2 6.2.6 11 7.8 20.6 14.9 28.8 21.2 8.2 6.2 14.9 12.4 20 18.2 5.1 5.9 8.9 11.8 11.5 18 2.5 6 3.8 12.8 3.8 20.3 0 18.4-7.3 33.6-22 45.6-14.7 11.9-36.2 17.9-64.4 17.9-31.8 0-57-6.7-75.6-20s-27.9-30.6-27.9-51.7c0-10.6 2.1-19.4 6.2-26.5 4.1-7 8.9-12.9 14.4-17.6s11.1-8.3 16.8-10.8c5.7-2.6 10.1-4.4 13.2-5.6 6.3-2 12.7-3.6 19.4-5s12.9-2.4 18.8-3c5.9-.6 11-1 15.3-1.2 4.2-.2 7-.3 8.2-.4z" />',viewBox:"0 0 512 512"},Dc={name:"google-box",content:'<path d="M212.6 236.1c5.1-5.1 8.2-10.8 9.4-17.1s1.8-11.6 1.8-15.8c0-8.1-1.2-17-3.6-26.6s-6-18.6-10.8-27-10.7-15.4-17.7-21-15.2-8.4-24.4-8.4c-6 0-11.8 1.3-17.5 4.1s-10.3 6.3-13.9 10.8c-3.9 4.8-6.5 10-7.8 15.7s-2 11.6-2 17.6c0 7.5 1.1 15.9 3.4 25.2 2.3 9.3 5.7 18 10.3 26.1s10.5 14.9 17.5 20.5c7 5.5 15.3 8.3 24.9 8.3 5.7 0 11.3-1.2 16.8-3.6s10-5.2 13.6-8.8zM448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM270.9 394.1c-5.1 10.2-12.6 19.3-22.4 27.2s-22.2 14.4-37 19.4c-14.8 4.9-31.8 7.4-50.9 7.4-16.2 0-30.3-1.8-42.4-5.4s-22.2-8.4-30.3-14.4-14.1-12.8-18-20.4-5.9-15.6-5.9-24c0-8.1 2.5-17.2 7.4-27.6s14-19.4 27.2-27.2c6.8-4.2 14.3-7.6 22.2-10.1s15.8-4.6 23.6-6c7.8-1.5 15.1-2.5 22-3.1s12.9-1.1 18-1.3c-3.3-4.2-6.4-8.6-9.2-13.3s-4.3-10.4-4.3-17.3c0-3.9.4-7.1 1.3-9.7s1.9-5.2 3.1-7.9c-2.4.3-4.8.5-7.2.7s-4.8.2-7.2.2c-12 0-22.6-2-31.9-6-9.3-4-17.1-9.3-23.4-15.9-6.3-6.6-11.1-14.1-14.3-22.7s-4.9-17.2-4.9-25.8c0-10.5 2.4-21 7.2-31.6s12-20.1 21.6-28.5c12.8-10.5 26.4-17.2 40.6-20.2s27.5-4.5 39.7-4.6H288l-28.7 16h-27.8c2.7 1.9 5.8 4.7 9.4 8.1 3.6 3.5 7 7.6 10.3 12.6s6.1 10.7 8.5 17.3 3.6 14.1 3.6 22.5-1.1 15.7-3.1 22c-2.1 6.3-4.9 11.9-8.5 16.9s-7.6 9.4-12.1 13.5-9.2 7.9-13.9 11.5c-3 3-5.9 6.1-8.5 9.4s-4 7.5-4 12.6 1.3 9.1 4 11.9 5.2 5.3 7.6 7.4l16.2 12.6c4.8 4.2 9.5 8.4 14.1 12.6 4.6 4.2 8.7 8.7 12.1 13.5 3.5 4.8 6.2 10.1 8.3 16.2s3.2 12.9 3.2 20.7c-.1 10.2-2.6 20.5-7.8 30.8zm-34.1-42.6c-3.9-4.5-9-9.1-15.3-13.9s-13.6-10.2-22-16.2c-1.8-.3-3.4-.4-4.7-.4h-5.6c-.9 0-3 .1-6.3.2s-7.2.4-11.7.9-9.3 1.2-14.3 2.3-10 2.3-14.8 3.8c-2.4.9-5.8 2.3-10.1 4.3s-8.6 4.7-12.8 8.3-7.8 8.1-11 13.5c-3.1 5.4-4.7 12.1-4.7 20.2 0 16.2 7.1 29.3 21.3 39.5s33.4 15.3 57.7 15.3c21.5 0 37.9-4.5 49.2-13.7s16.8-20.7 16.8-34.8c0-5.7-1-10.8-2.9-15.5s-4.9-9.3-8.8-13.8z" />',viewBox:"0 0 512 512"},Nc={name:"google-plus",content:'<path d="M204.3 33c-16.1-1-33.4 1-52 4.9s-36.4 12.8-53.2 26.5c-12.6 11-22 23.4-28.3 37.3s-9.4 27.7-9.4 41.5c0 11.4 2.1 22.7 6.5 33.8 4.3 11.1 10.6 21.1 18.8 29.7 8.2 8.6 18.4 15.6 30.6 20.9 12.2 5.3 26.1 7.9 41.8 7.9 3.1 0 6.2-.1 9.4-.3s6.3-.5 9.4-.9c-1.6 3.5-2.9 7-4.1 10.3-1.2 3.3-1.8 7.6-1.8 12.6 0 9 1.9 16.5 5.6 22.6s7.7 11.9 12 17.4c-6.7.4-14.5 1-23.5 1.8s-18.6 2.1-28.8 4.1-20.5 4.6-30.9 7.9-20.1 7.7-29.1 13.2c-17.2 10.2-29.1 22-35.6 35.6-6.5 13.6-9.7 25.6-9.7 36.2 0 11 2.6 21.5 7.7 31.5s12.9 18.9 23.5 26.7C73.8 462 87 468.3 102.9 473s34.4 7 55.6 7c25.1 0 47.3-3.2 66.7-9.7s35.6-14.9 48.5-25.3 22.7-22.3 29.4-35.6c6.7-13.3 10-26.9 10-40.6 0-10.2-1.4-19.3-4.2-27.1-2.7-7.9-6.4-14.9-10.8-21.2-4.5-6.3-9.8-12.2-15.9-17.7s-12.3-11-18.5-16.5l-21.2-16.5c-3.2-2.8-6.5-6-10-9.7s-5.3-8.9-5.3-15.6c0-6.7 1.8-12.2 5.3-16.5s7.2-8.4 11.2-12.4c6.2-4.7 12.4-9.7 18.2-15 5.9-5.3 11.2-11.2 15.9-17.6 4.7-6.5 8.4-13.8 11.2-22.1 2.7-8.2 4.1-17.9 4.1-28.8s-1.5-20.8-4.7-29.5c-3.1-8.6-6.8-16.2-11.2-22.7-4.3-6.5-8.8-12-13.5-16.5S251.3 52 251.3 52H288l31.7-20-115.4 1zm-37 17.8c12.2 0 22.8 3.6 32 10.9s17 16.4 23.2 27.5c6.2 11 11 22.8 14.1 35.4s4.7 24.2 4.7 34.8c0 5.5-.8 12.4-2.3 20.7-1.6 8.3-5.7 15.7-12.4 22.4-4.7 4.7-10.7 8.7-18 11.8-7.3 3.2-14.6 4.7-22 4.7-12.5 0-23.4-3.6-32.6-10.9-9.2-7.3-16.9-16.3-22.9-26.8-6.1-10.6-10.6-22-13.5-34.2s-4.4-23.2-4.4-33.1c0-7.9.9-15.5 2.7-23S121 76.6 126 70.3c4.7-5.9 10.8-10.6 18.2-14.1 7.5-3.6 15.2-5.4 23.1-5.4zM196.1 314h7.3c1.8 0 3.8.2 6.2.6 11 7.8 20.6 14.9 28.8 21.2 8.2 6.2 14.9 12.4 20 18.2 5.1 5.9 8.9 11.8 11.5 18 2.5 6 3.8 12.8 3.8 20.3 0 18.4-7.3 33.6-22 45.6-14.7 11.9-36.2 17.9-64.4 17.9-31.8 0-57-6.7-75.6-20s-27.9-30.6-27.9-51.7c0-10.6 2.1-19.4 6.2-26.5s8.9-12.9 14.4-17.6 11.1-8.3 16.8-10.8c5.7-2.6 10.1-4.4 13.2-5.6 6.3-2 12.7-3.6 19.4-5s12.9-2.4 18.8-3c5.9-.6 11-1 15.3-1.2 4.2-.2 6.9-.3 8.2-.4zM384 32v64h-64v32h64v64h32v-64h64V96h-64V32h-32z" />',viewBox:"0 0 512 512"},Fc={name:"google-plus-box",content:'<path d="M212.6 236.1c5.1-5.1 8.2-10.8 9.4-17.1s1.8-11.6 1.8-15.8c0-8.1-1.2-17-3.6-26.6s-6-18.6-10.8-27-10.7-15.4-17.7-21-15.2-8.4-24.4-8.4c-6 0-11.8 1.3-17.5 4.1s-10.3 6.3-13.9 10.8c-3.9 4.8-6.5 10-7.8 15.7s-2 11.6-2 17.6c0 7.5 1.1 15.9 3.4 25.2 2.3 9.3 5.7 18 10.3 26.1s10.5 14.9 17.5 20.5c7 5.5 15.3 8.3 24.9 8.3 5.7 0 11.3-1.2 16.8-3.6s10-5.2 13.6-8.8zM448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM270.9 394.1c-5.1 10.2-12.6 19.3-22.4 27.2s-22.2 14.4-37 19.4c-14.8 4.9-31.8 7.4-50.9 7.4-16.2 0-30.3-1.8-42.4-5.4s-22.2-8.4-30.3-14.4-14.1-12.8-18-20.4-5.9-15.6-5.9-24c0-8.1 2.5-17.2 7.4-27.6s14-19.4 27.2-27.2c6.8-4.2 14.3-7.6 22.2-10.1s15.8-4.6 23.6-6c7.8-1.5 15.1-2.5 22-3.1s12.9-1.1 18-1.3c-3.3-4.2-6.4-8.6-9.2-13.3s-4.3-10.4-4.3-17.3c0-3.9.4-7.1 1.3-9.7s1.9-5.2 3.1-7.9c-2.4.3-4.8.5-7.2.7s-4.8.2-7.2.2c-12 0-22.6-2-31.9-6-9.3-4-17.1-9.3-23.4-15.9-6.3-6.6-11.1-14.1-14.3-22.7s-4.9-17.2-4.9-25.8c0-10.5 2.4-21 7.2-31.6s12-20.1 21.6-28.5c12.8-10.5 26.4-17.2 40.6-20.2s27.5-4.5 39.7-4.6H288l-28.7 16h-27.8c2.7 1.9 5.8 4.7 9.4 8.1 3.6 3.5 7 7.6 10.3 12.6s6.1 10.7 8.5 17.3 3.6 14.1 3.6 22.5-1.1 15.7-3.1 22c-2.1 6.3-4.9 11.9-8.5 16.9s-7.6 9.4-12.1 13.5-9.2 7.9-13.9 11.5c-3 3-5.9 6.1-8.5 9.4s-4 7.5-4 12.6 1.3 9.1 4 11.9 5.2 5.3 7.6 7.4l16.2 12.6c4.8 4.2 9.5 8.4 14.1 12.6 4.6 4.2 8.7 8.7 12.1 13.5 3.5 4.8 6.2 10.1 8.3 16.2s3.2 12.9 3.2 20.7c-.1 10.2-2.6 20.5-7.8 30.8zM448 192h-64v64h-32v-64h-64v-32h64V96h32v64h64v32zM236.8 351.5c-3.9-4.5-9-9.1-15.3-13.9s-13.6-10.2-22-16.2c-1.8-.3-3.4-.4-4.7-.4h-5.6c-.9 0-3 .1-6.3.2s-7.2.4-11.7.9-9.3 1.2-14.3 2.3-10 2.3-14.8 3.8c-2.4.9-5.8 2.3-10.1 4.3s-8.6 4.7-12.8 8.3-7.8 8.1-11 13.5c-3.1 5.4-4.7 12.1-4.7 20.2 0 16.2 7.1 29.3 21.3 39.5s33.4 15.3 57.7 15.3c21.5 0 37.9-4.5 49.2-13.7s16.8-20.7 16.8-34.8c0-5.7-1-10.8-2.9-15.5s-4.9-9.3-8.8-13.8z" />',viewBox:"0 0 512 512"},Uc={name:"linkedin",content:'<path d="M112 32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zM64 160v288h96V160H64zm128 0v288h96V288c0-32 32-32 32-32s32 0 32 32v160h96V290.9c0-66.5-13.6-130.9-96-130.9-36.2 0-62.9 32-64 44.9V160h-96z" />',viewBox:"0 0 512 512"},Wc={name:"linkedin-box",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zM160 416H96V192h64v224zm-32-256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm288 256h-64V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v128h-64V192h64v39.7c13.2-18.1 33.4-39.7 56-39.7 39.8 0 72 35.8 72 80v144z" />',viewBox:"0 0 512 512"},Gc={name:"myspace",content:'<path d="M400 64c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm-176 64c-35.4 0-64 28.6-64 64s28.6 64 64 64 64-28.6 64-64-28.6-64-64-64zM80 192c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm320 64c-44.2 0-80 36.1-80 80.5V448h160V336.5c0-44.5-35.8-80.5-80-80.5zm-176 32c-35.4 0-64 31.5-64 70.3V448h128v-89.7c0-38.8-28.6-70.3-64-70.3zM80 320c-26.5 0-48 21.8-48 48.7V448h96v-79.3c0-26.9-21.5-48.7-48-48.7z" />',viewBox:"0 0 512 512"},Kc={name:"myspace-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM128 416H64v-63.5c0-17.9 14.3-32.5 32-32.5s32 14.5 32 32.5V416zM96 288c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 128h-96v-75.3c0-29.1 21.5-52.7 48-52.7s48 23.6 48 52.7V416zm-48-160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm208 160H288v-92.9c0-37.1 27.2-67.1 64-67.1s64 30 64 67.1V416zm-64-192c-35.4 0-64-28.6-64-64s28.6-64 64-64 64 28.6 64 64-28.6 64-64 64z" />',viewBox:"0 0 512 512"},Xc={name:"pinterest",content:'<path d="M250.7 32C126.6 32 64 119.7 64 192.7c0 44.3 17 83.6 53.5 98.3 6 2.4 11.4.1 13.1-6.4 1.2-4.5 4.1-15.9 5.3-20.7 1.8-6.5 1.1-8.7-3.7-14.3-10.5-12.2-17.2-28.1-17.2-50.5 0-65.1 49.4-123.3 128.6-123.3 70.2 0 108.7 42.2 108.7 98.6 0 74.2-33.3 136.8-82.8 136.8-27.3 0-47.8-22.2-41.2-49.6 7.9-32.6 23.1-67.8 23.1-91.3 0-21.1-11.5-38.7-35.2-38.7-27.9 0-50.4 28.5-50.4 66.6 0 24.3 8.3 40.7 8.3 40.7s-28.6 119.3-33.6 140.2c-10 41.6-1.5 92.7-.8 97.8.5 3 4.4 3.7 6.2 1.5 2.6-3.3 35.9-43.8 47.2-84.2 3.2-11.4 18.4-70.8 18.4-70.8 9.1 17.1 35.6 32.1 63.8 32.1 84 0 141-75.4 141-176.4C416 103 350.3 32 250.7 32z" />',viewBox:"0 0 512 512"},Zc={name:"pinterest-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM276.6 327.3c-19.8 0-38.5-10.8-44.9-22.9 0 0-10.7 42.4-12.9 50.5-8 28.9-31.4 57.8-33.2 60.2-1.3 1.6-4.1 1.1-4.4-1.1-.5-3.7-6.5-40.1.5-69.9 3.5-14.9 23.6-100.2 23.6-100.2s-5.9-11.7-5.9-29.1c0-27.2 15.8-47.6 35.5-47.6 16.7 0 24.8 12.5 24.8 27.6 0 16.8-10.7 41.9-16.2 65.2-4.6 19.5 9.8 35.4 29 35.4 34.8 0 58.3-44.7 58.3-97.7 0-40.3-27.1-70.4-76.5-70.4-55.7 0-90.5 41.6-90.5 88 0 16 4.7 27.3 12.1 36.1 3.4 4 3.9 5.6 2.6 10.2-.9 3.4-2.9 11.5-3.7 14.8-1.2 4.6-5 6.3-9.2 4.6-25.6-10.4-37.6-38.5-37.6-70.2C128 158.6 172 96 259.4 96c70.2 0 116.4 50.8 116.4 105.3-.1 72.1-40.2 126-99.2 126z" />',viewBox:"0 0 512 512"},Yc={name:"reddit",content:'<path d="M420.3 33c-7 0-14.5 1-22.4 3h-1.7c-12.4 4.8-21.9 12.3-28.8 22.5-17-7-34-10.4-50.7-10.4-6.3 0-12.6.6-19.1 1.9H296c-8.8 2.1-16.5 5.8-23.3 11s-12.4 11.6-16.6 19.1c-5.3 8.7-8.9 31.3-10.5 41.1-1.7 9.8-2.6 25-2.6 34.7-20.9 1.5-41.8 4.5-62.8 9.1s-40.6 11.9-59 21.9c-1.3.4-2.5.9-3.5 1.3s-2 .9-2.9 1.3c-6.2-4.5-13-8-20.5-10.6-7.8-2.6-16.1-3.9-24.9-3.9h-5.8c-8.7 0-16.7 1.6-24.1 4.8s-14.1 7.7-20.3 13.4c-5.8 5.8-10.3 12.2-13.9 19.4-3.6 7.3-5.3 14.8-5.3 22.7.4 10.8 4.4 21.3 11.8 31.4 5.7 8.3 13.8 15.4 24.3 21.1-.5 2.1-.7 4.4-1 6.8-.2 2.5-.3 4.8-.3 6.9 0 10 1.5 20 4.5 30.1 3 10.1 7.4 19.4 13.1 28.1 10.9 16.6 24.5 30.5 40.9 41.6 16.4 11 33.8 20.2 52.1 27.2 17.5 6.6 35.5 11.6 54 14.8 18.6 3.3 37.4 5 56.6 5 12.5 0 25.1-.8 37.5-2.4 12.5-1.6 25-3.7 37.6-6.3 23.2-5.5 45.5-13.9 66.8-25.1s39.4-26 54.3-44.3c17.1-20.5 25.6-43.4 25.6-68.8 0-2.6-.1-5.1-.4-7.5-.3-2.4-.5-4.7-.9-6.8 10-4.9 18.3-11.9 24.9-21.1 7.1-9.6 10.6-20.3 10.6-32v-3c-1.2-13.4-6.8-25.1-16.3-34.9-9.8-10-21.2-16.7-34.2-20.1h-.6c-6-1.3-11.6-1.9-16.9-1.9-14.1-.2-26.6 3.2-37.4 10.2-2.3 1.1-5.2 2.8-8.6 5.4-.8-.9-1.8-1.3-2.6-1.3l-.7-.6c-18.2-9.6-37.5-16.9-57.7-21.8-20.1-4.9-40.6-8-61.6-9.3 0-7.7.7-34.2 1.8-41.9s3.7-14.8 7.5-21.4c4.9-9.6 13.4-15.1 25.6-16.4h5.8c7.4 0 14.7 1.1 21.7 3 7.1 2 14.1 4.3 21.2 6.9v1.9c0 7.5 1.5 14.2 4.5 20.3 2.9 6 6.9 11.6 11.8 16.5 10.3 10.4 22.8 16.3 37.7 17.5h7.3c14.9 0 28.1-4.8 39.8-14.4 5.3-4.4 9.7-9.6 13.1-15.5s5.5-12.5 6.4-20c.4-1.3.6-3.2.6-5.8.2-11-3.3-21.4-10.3-30.9-7.1-9.2-15.8-15.7-26.2-19.5h-.5c-6.5-2.7-14.1-4.1-22.9-4zm1.2 27.4c7.2.1 13.2 2.7 18.3 7.7C446 73 449 79.2 449 86.7V88c-.8 6.8-3.9 12.7-9.3 17.6-5.5 4.9-11.9 7.4-19.1 7.4h-1.9c-7.1 0-13.4-2.5-19.4-7.4-5.5-4.7-8.3-10.6-8.3-17.6v-1.3c0-6.6 2.1-12.1 6.5-16.6 3.8-4.7 8.9-7.7 15.1-8.9 2-.4 4.4-.6 7.5-.6.4-.2.9-.2 1.4-.2zm-165 125.7c10 0 20.3.5 30.8 1.6 10.6 1.1 20.9 2.7 30.8 4.8l9.9 2.6 10.2 2.6c17.5 4.9 34.1 11.9 49.9 21.1 15.8 9.2 29 20.8 40 34.9 5.1 7.3 9.2 14.9 12.3 23 3.1 8.1 4.6 16.5 4.6 25.3v7.6c0 2.3-.4 4.6-1.3 6.7-2.8 12.4-8.5 24-17.3 34.9-7.4 10-17 19.2-28.8 27.5-17.5 11.7-36.4 20.7-56.9 26.9-20.4 6.2-41.3 10.1-62.7 11.8-3.6.5-7.3.6-10.8.6h-10.8c-21.3 0-42.4-2.2-63.1-6.6-20.8-4.4-40.3-11.4-58.6-21l-4.5-2.6-4.8-2.2c-13-8.3-24.4-17.5-34.5-27.5-10.2-11.5-17.2-24-21.1-37.4-1.7-5.2-2.6-11.2-2.6-18.2 0-18.1 5.6-34.2 16.9-48.3 11-14.1 24.4-25.8 40.1-35.2s32.2-16.5 49.7-21.4c26.2-7.7 53.7-11.6 82.6-11.5zM65.7 204h3.2c3.2 0 6.1.4 8.8 1.3 2.6.9 5.4 1.7 8.4 2.6-8.7 7-16.5 14.6-23.5 22.7-6.9 8.1-12.8 17-17.7 26.6-2.8-2-5.2-4.8-7.4-8.6-3-3.5-4.5-7.8-4.5-13.1v-2.1c.7-7.7 4-14.4 10.3-20.2 7.1-5.3 14.6-8.3 22.4-9.2zm377.6-.4c6.4 0 12.7 1.5 18.9 4.4 6.1 3.5 10.8 7.8 13.7 13.2 2.1 4.5 3.2 8.6 3.2 12.5 0 5.3-1.2 10.1-3.8 14.4-2.4 3.6-5 6.7-8 9.2-4.7-10-10.6-19.1-17.6-27.2-7-8.1-14.9-15.6-23.6-22.7 5.3-2.6 11-3.8 17.2-3.8zm-107.6 43.2c-3.6 0-7.4.7-11.2 1.9-6.2 2.2-11.2 5.9-15 11.2-4 4.7-6.1 10.3-6.1 16.9 0 2.4.2 4.2.6 5.5v.6c1.3 7.5 5.1 13.1 11.2 17 6.2 4.7 13.2 7 21.1 7 2.5 0 5.5-.6 9-1.9h.9c5.6-1.1 11-4.5 16.3-10.2 3.8-5.3 5.8-11.4 5.8-18 0-3-.6-6.2-2-9.6-1.6-6.2-5.6-11.3-11.8-15.3-5.9-3.3-12.2-5.1-18.8-5.1zm-158.8-.1c-2.6 0-4.7.2-6.3.7-5.8.9-10.8 3.1-15.2 6.9-4.4 3.7-7.4 8.3-9.1 13.6-.9 1.2-1.3 2.7-1.3 4.1v4.2c0 7 1.9 13.2 5.8 18.6 4.2 5.1 9.6 8.5 16.3 10.2 3 1.2 6.3 1.9 9.9 1.9 8.3 0 15.8-2.8 22.4-8.3 7.1-5.7 10.6-12.8 10.6-21.1v-2c0-7.9-3.3-14.6-9.9-20.1-7.2-5.8-14.9-8.7-23.2-8.7zm-1.6 94c-1.2 0-3.2.5-5.7 1.3h-.8c-2.6.8-5 2.7-7.3 5.7-1.2 2.1-1.9 4.8-1.9 8 0 2.6.6 5.2 1.9 8 1.3 2.2 3.2 3.9 5.8 5.1 24.5 15.4 51.4 23.1 80.7 23.1h4.8c14.1 0 27.8-1.3 41-4s26.1-6.9 38.5-12.6c1.7-.9 3.5-1.7 5.4-2.6 1.9-.8 3.9-1.9 6-3.2 2.2-.9 4-2.1 5.5-3.8 2.1-2.1 3.3-4.4 3.8-6.8.4-.8.7-1.9.7-3.2 0-1.3-.4-3.2-1.3-5.8-1.3-3.2-3.5-5.4-6.4-6.7-3.3-1.7-6.2-2.6-8.6-2.6-2.5 0-5.3.6-8 2-23.2 13-48.6 19.6-76 19.8-20.4 0-39.5-3.9-57-11.8-2.5-.9-5.7-2.9-9.2-6.1-.9-.4-1.8-.8-2.8-1.3-1-.5-2.2-.9-3.3-1.3-2.7-.8-4.6-1.3-5.8-1.2z" />',viewBox:"0 0 512 512"},qc={name:"reddit-box",content:'<path d="M111.1 244.9c-5.2 6.1-9.6 12.7-13.2 19.9-2.1-1.5-3.9-3.6-5.5-6.5-2.3-2.6-3.4-5.9-3.4-9.8v-1.4c.5-5.8 3-10.8 7.7-15.1 5.3-4 10.9-6.3 16.8-7h2.4c2.4 0 4.6.3 6.6 1 2 .6 4.1 1.3 6.3 1.9a124.3 124.3 0 0 0-17.7 17zm252.1-94.3c4.4 3.7 9.1 5.4 14.4 5.4h1.4c5.3 0 10-1.8 14.2-5.4 4-3.7 6.3-8 6.9-13.1v-1c0-5.5-2.3-10.1-6.9-13.8-3.8-3.8-8.3-5.6-13.6-5.7h-1.1c-2.2 0-4.1.1-5.5.5-4.6.9-8.4 3.2-11.2 6.6-3.3 3.4-4.8 7.4-4.8 12.4v1c0 5.1 2 9.5 6.2 13.1zM394.5 279c2.3 6.1 3.5 12.4 3.5 19v5.7c0 1.8-.3 3.4-1 5-2.1 9.3-6.4 18-13 26.2-5.6 7.5-12.8 14.4-21.6 20.6-13.1 8.8-27.3 15.5-42.7 20.2-15.4 4.7-31 7.6-47 8.9-2.7.4-5.5.5-8.1.5h-8.1c-16 0-31.8-1.6-47.4-4.9s-30.2-8.5-44-15.7l-3.4-1.9-3.6-1.7c-9.8-6.2-18.3-13.1-25.8-20.6-7.7-8.6-12.9-18-15.8-28.1-1.3-3.9-1.9-8.4-1.9-13.7 0-13.6 4.2-25.7 12.7-36.3 8.3-10.6 18.3-19.3 30.1-26.4 11.8-7 24.2-12.4 37.3-16.1 19.6-5.7 40.2-8.7 61.8-8.7h.1c7.5 0 15.2.4 23.1 1.2s15.6 2 23.1 3.6l7.4 1.9 7.7 1.9c13.1 3.7 25.6 9 37.4 15.8 11.9 6.9 21.8 15.6 30 26.2 3.8 5.6 6.9 11.4 9.2 17.4zm-205.9 21.9c2.3.9 4.7 1.4 7.5 1.4 6.3 0 12-2.1 16.9-6.3 5.3-4.3 8-9.7 8-15.9v-1.5c0-5.9-2.5-11-7.5-15.2-5.3-4.3-11.2-6.6-17.4-6.6-1.9 0-3.5.1-4.7.5-4.3.6-8.2 2.3-11.5 5.2-3.3 2.8-5.5 6.3-6.9 10.3-.7.9-1 2-1 3.1v3.1c0 5.3 1.4 10 4.3 14 3.3 4 7.3 6.7 12.3 7.9zm139.5 38.2c0-1-.3-2.4-1-4.3-1-2.4-2.6-4.1-4.7-4.9-2.5-1.3-4.6-1.9-6.4-1.9-1.9 0-4 .5-5.9 1.5-17.2 9.6-36 14.5-56.2 14.7-15.1 0-29.3-3-42.2-8.8-1.9-.6-4.2-2.2-6.8-4.6-.6-.3-1.3-.6-2.1-1s-1.6-.6-2.4-1c-1.9-.6-3.4-1-4.3-1v.1c-.9 0-2.4.4-4.3 1h-.5c-1.9.6-3.7 2-5.4 4.3-.9 1.6-1.4 3.6-1.4 5.9 0 1.9.5 3.9 1.4 5.9 1 1.6 2.4 2.9 4.3 3.8 18.2 11.4 38.1 17.1 59.8 17.1h3.6c10.5 0 20.6-1 30.4-3 9.8-2 19.3-5.1 28.5-9.4 1.2-.6 2.6-1.3 4.1-1.9 1.4-.6 3-1.4 4.5-2.4 1.6-.7 3-1.6 4.1-2.9 1.6-1.6 2.5-3.3 2.9-5-.2-.4 0-1.2 0-2.2zm12.2-59.2c0-2.2-.5-4.6-1.5-7.2-1.2-4.6-4.2-8.4-8.8-11.5-4.5-2.6-9.2-3.9-14.1-3.9-2.7 0-5.5.5-8.4 1.4-4.6 1.6-8.4 4.4-11.3 8.4-3 3.5-4.6 7.8-4.6 12.7 0 1.8.2 3.1.4 4.1v.5c1 5.6 3.8 9.8 8.4 12.7 4.6 3.5 9.9 5.3 15.8 5.3 1.9 0 4.1-.5 6.7-1.4h.7c4.2-.8 8.2-3.4 12.2-7.7 3-3.9 4.5-8.4 4.5-13.4zM480 64v384c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32zm-32.3 181c-.9-10.3-5.2-19.1-12.4-26.6-7.4-7.6-16.2-12.7-26-15.4h-.1c-4.5-1-8.7-1.4-12.7-1.4-10.6-.2-19.8 2.4-28 7.7-1.7.8-3.9 2.1-6.5 4.1-.6-.6-1.3-1-1.9-1l-.5-.5c-13.7-7.2-28-12.7-43.1-16.3-15.1-3.7-30.4-6-46.1-7 0-5.8.5-25.5 1.4-31.3.9-5.8 2.8-11.1 5.6-16.1 3.6-7.2 10.1-11.3 19.1-12.3h4.3c5.6 0 11 .8 16.3 2.3s10.6 3.2 15.9 5.2v1.5c0 5.6 1.1 10.8 3.4 15.3 2.2 4.5 5.2 8.7 8.8 12.5 7.7 7.8 17.1 12.3 28.4 13.3h5.5c11.2 0 21.1-3.6 30.1-10.9 4-3.3 7.3-7.2 9.8-11.7 2.6-4.4 4.2-9.4 4.8-15.1.3-1 .5-2.4.5-4.3.2-8.3-2.4-16.2-7.7-23.4-5.3-6.9-11.9-11.9-19.7-14.7h-.5c-4.9-2.3-10.7-3.4-17.3-3.4-5.4 0-11.1.8-17.1 2.4h-.4c-9.7 3.8-17.1 9.7-22.5 17.6-13.3-5.4-26.5-8-39.5-8-4.9 0-9.9.5-14.9 1.4h.9c-6.6 1.6-12.4 4.4-17.5 8.3-5.1 3.9-9.3 8.7-12.5 14.3-4 6.5-6.6 23.5-7.9 30.9-1.3 7.3-1.9 18.7-1.9 26-15.7 1.1-31.3 3.4-47.2 6.8-15.7 3.5-30.4 8.9-44.2 16.4-1 .3-1.8.7-2.6 1s-1.5.6-2.2 1c-4.7-3.4-9.7-6-15.4-7.9-5.9-1.9-12.1-2.9-18.6-2.9h-4.3c-6.5 0-12.6 1.2-18.1 3.6s-10.6 5.8-15.2 10.1c-4.3 4.3-7.8 9.2-10.4 14.5-2.7 5.4-3.9 11-3.9 16.9.3 8.1 3.3 16 8.9 23.5 4.3 6.2 10.4 11.5 18.2 15.8-.4 1.6-.6 3.3-.7 5.1-.1 1.8-.2 3.6-.2 5.2 0 7.5 1.1 15 3.4 22.6 2.3 7.5 5.5 14.6 9.8 21.1 8.1 12.5 18.4 22.9 30.7 31.2s25.3 15.1 39.1 20.4c13.1 5 26.6 8.7 40.5 11.1 13.9 2.5 28.1 3.7 42.4 3.7 9.4 0 18.8-.6 28.1-1.8 9.4-1.2 18.8-2.8 28.2-4.7 17.4-4.1 34.1-10.4 50.2-18.8s29.5-19.5 40.8-33.2c12.8-15.4 19.2-32.6 19.2-51.7 0-1.9-.1-3.8-.3-5.6-.2-1.8-.4-3.6-.7-5.1 7.5-3.7 13.7-8.9 18.7-15.8 5.3-7.2 7.9-15.2 7.9-24V245h-.2zm-37.1-17c-4.7-2.2-9.4-3.3-14.1-3.3-4.6 0-8.9.9-12.9 2.9 6.5 5.3 12.5 10.9 17.7 17 5.3 6.1 9.7 12.9 13.2 20.4 2.2-1.9 4.2-4.2 6-6.9 1.9-3.2 2.9-6.8 2.9-10.8 0-2.9-.9-6-2.4-9.4-2.3-4-5.8-7.3-10.4-9.9z" />',viewBox:"0 0 512 512"},Qc={name:"stumble-upon",content:'<path d="m288.1 256 26.8 8.4L352 256v64c1.1 18.9 12.8 32 32 32s30.9-13.1 32-32v-64h64v64s0 96-96 96-96-96-96-96l.1-64zm26.8-23.2L288 224v-32s0-32-32-32-32 32-32 32v128s0 96-96 96-96-96-96-96v-64h64v64c1.1 18.9 12.8 32 32 32 19.1 0 30.9-13.2 32.1-32h-.1V192s0-96 96-96 96 96 96 96v32l-37.1 8.8z" />',viewBox:"0 0 512 512"},Jc={name:"stumble-upon-box",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H64zm191.5 96.3c82.5 0 82.5 87.3 82.5 87.3v8.4l-31.9 8-23.1-8v-8.6s0-29.2-27.5-29.2-27.5 29.2-27.5 29.2v81.5s0 87-82 87-82-87-82-87V256h55v41h-.9c.9 17.2 11 29.1 27.5 29.1s26.6-12 27.6-29.1h-.2v-81.4s0-87.3 82.5-87.3zM283.1 256l23 7.6L338 256v40.7c.9 17.2 11 29.1 27.5 29.1s26.6-11.9 27.5-29.1V256h55v40.7s0 87.3-82.5 87.3-82.5-87.3-82.5-87.3l.1-40.7z" />',viewBox:"0 0 512 512"},$c={name:"tell-a-friend",content:'<path d="M383.5 64c-31.7 0-57.5 24-57.5 53.5v2.1c0 14.9-12.2 30.3-28.5 33.3-5.5.5-9.9 4.8-9.9 10.1 0 2.6 1.1 5 2.9 6.8 13.3 10.5 28.3 22.2 92.5 22.2s80.1-11.7 93.3-22.2c1.8-1.8 2.9-4.1 2.9-6.8 0-5.3-4.3-9.6-9.9-10.1-16.3-3-28.5-18.4-28.5-33.3v-2.1c0-29-25-52.7-55.9-53.5h-.5.2-1.1c.2 0 0 0 0 0zm.6 0h.9-.9zM128 224c-64.9 0-96 70-96 128v96h192v-96c0-52.7-34-128-96-128zm256 0c-96 0-96 224-96 224h192s0-224-96-224zm-192-96c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64z" />',viewBox:"0 0 512 512"},tl={name:"tell-a-friend-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM144 96c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm80 320H64v-96c0-48.3 26-96 80.2-96 51.7 0 79.8 52.1 79.8 96v96zm223.6 0H288s0-192 80-192 79.6 192 79.6 192zm-2-240.7c-11.1 7.9-24.3 16.7-78 16.7s-66.3-8.8-77.3-16.7c-1.5-1.3-2.4-3.1-2.4-5.1 0-4 3.6-7.2 8.2-7.5 13.6-2.3 23.8-13.8 23.8-25v-1.6c0-22.1 21.4-40.1 48-40.1h.9c26.1.4 47.1 18.2 47.1 40.1v1.6c0 11.2 10.2 22.7 23.8 25 4.6.4 8.2 3.6 8.2 7.5.1 2-.8 3.8-2.3 5.1z" />',viewBox:"0 0 512 512"},el={name:"tumblr",content:'<path d="M192.6 32c-2.8 23.1-8.1 42.1-15.7 57.1s-17.7 27.8-30.3 38.5-33 18.9-50.6 24.6V224h61v148.7c0 20.5 2.1 36.1 6.4 46.9s12 21 23.1 30.6c11.1 9.5 25 16.9 40.7 22.1s27.8 7.7 48.3 7.7c18 0 34.8-1.8 50.4-5.4 15.5-3.6 39.1-10.9 58.2-19.9V384c-22.3 14.8-51 22.9-73.7 22.9-12.8 0-24-3-33.9-8.9-7.5-4.4-14.3-12-17-19.2-2.8-7.4-2.4-22.3-2.4-48.2V224h96v-96h-96V32h-64.5z" />',viewBox:"0 0 512 512"},ol={name:"tumblr-box",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-96.1 366c-12.7 6.4-28.5 11.6-38.9 14.2-10.4 2.6-21.6 3.9-33.7 3.9-13.7 0-21.8-1.9-32.3-5.5-10.5-3.7-19.9-9-27.3-15.8-7.4-6.9-12.6-14.1-15.4-21.8-2.9-7.7-4.3-18.9-4.3-33.5V224h-40v-42.2c11.7-4.1 25.3-9.9 33.6-17.6 8.4-7.6 15.1-16.8 20.2-27.5s8.6-24.3 10.5-40.8H267v64h53v64h-53v85.2c0 18.6-.2 29.3 1.6 34.5 1.8 5.2 6.4 10.7 11.4 13.8 6.6 4.2 14.2 6.4 22.7 6.4 15.1 0 34.3-5.9 49.3-16.5V398h-.1z" />',viewBox:"0 0 512 512"},nl={name:"twitter",content:'<path d="M342 64c-50.8 0-91.9 41.2-91.9 91.9 0 7.2.8 14.2 2.4 21-76.4-3.8-144.1-40.4-189.4-96-7.9 13.6-12.4 29.3-12.4 46.2 0 31.9 16.2 60 40.9 76.5-15.1-.5-29.2-4.6-41.6-11.5v1.2c0 44.5 31.7 81.7 73.7 90.1-7.7 2.1-15.8 3.3-24.2 3.3-5.9 0-11.7-.6-17.3-1.6 11.7 36.5 45.6 63.1 85.9 63.8-31.7 24.5-71.3 39.2-114.3 39.2-7.4 0-14.8-.4-22-1.3 40.7 26 89 41.3 140.9 41.3 169.1 0 261.5-140.1 261.5-261.5 0-4-.1-8-.2-11.9 18-12.9 33.5-29.1 45.9-47.6-16.5 7.3-34.2 12.3-52.8 14.5 19-11.4 33.6-29.4 40.4-50.8-17.8 10.5-37.4 18.2-58.4 22.3C392.3 75.1 368.4 64 342 64z" />',viewBox:"0 0 512 512"},rl={name:"twitter-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm-64.7 159.7c.1 2.8.2 5.6.2 8.4 0 85.4-66 183.9-186.8 183.9-37.1 0-71.6-10.7-100.6-29.1 5.1.6 10.4.9 15.7.9 30.8 0 59.1-10.4 81.5-27.7-28.7-.5-53-19.2-61.3-44.9 4 .7 8.1 1.2 12.4 1.2 6 0 11.8-.8 17.3-2.3-30-5.9-52.7-32-52.7-63.3v-.8c8.9 4.8 19 7.7 29.7 8.1-17.6-11.6-29.2-31.4-29.2-53.8 0-11.8 3.2-22.9 8.9-32.5 32.4 39.1 80.8 64.8 135.3 67.5-1.1-4.7-1.7-9.7-1.7-14.7 0-35.7 29.4-64.6 65.6-64.6 18.9 0 36 7.8 47.9 20.4 14.9-2.9 29-8.3 41.7-15.7-4.9 15.1-15.3 27.7-28.9 35.7 13.3-1.6 26-5.1 37.7-10.2-8.9 13.1-19.9 24.5-32.7 33.5z" />',viewBox:"0 0 512 512"},il={name:"yammer",content:'<path d="M263.9 32.1c-10.1-.2-19.6 6.8-23.2 18-.1.4-.3 1-.5 1.9 0 .1-.1.3-.1.4-8 25.9-73.6 235.6-73.6 235.6h-1.2l-84-239.2C75.6 35.3 61.6 28.7 48.9 34c-13 5.5-19.7 21.5-15.4 36.2 10.1 29 105.8 290.4 105.8 290.4l-6.3 15.6c-10.6 32.1-31.6 53.8-63.2 53.8-3.1 0-13.7-.7-14.4-.8-10.2-.6-19.7 6.9-22.5 18.4-3.1 13.1 3.7 26.6 15.3 30.4 8.4 1.6 17 2.2 24.7 2.2 58.3 0 86.8-37.7 106-92.8 0 0 101-300.5 105.8-312.9.8-2 1.4-3.7 2-5.4l-.1-.1c.1-.4.3-.7.4-1.1 4.1-14.5-3-29.9-15.8-34.5-2.5-.8-4.9-1.3-7.3-1.3zM383.5 96c-6.3.1-13.3 2.5-20.4 9.6-21.5 21.6-43 86.4-43 86.4s64.6-21.6 86.4-43.5-.4-42.8-.4-42.8-9.7-9.8-22.6-9.7zm64.6 128c-32 0-96 32-96 32s64 32 96.4 32 31.5-32 31.5-32 .1-32-31.9-32zm-128 96s21.5 64.8 43 86.4 43-.1 43-.1 22.1-21 .4-42.8c-21.8-21.9-86.4-43.5-86.4-43.5z" />',viewBox:"0 0 512 512"},al={name:"yammer-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM332.5 148.6c15.4-15.4 30.7 0 30.7 0s15.8 15 .3 30.6-61.7 31.1-61.7 31.1 15.4-46.3 30.7-61.7zm-54.7-26.4c-.1.3-.2.5-.3.8h.1c-.4 1.2-.9 2.4-1.4 3.8-3.5 8.8-75.5 223.1-75.5 223.1-13.7 39.3-34 66.2-75.6 66.2-5.5 0-11.6-.4-17.6-1.6-8.3-2.7-13.2-12.3-10.9-21.7 2-8.2 8.8-13.6 16.1-13.2.5.1 8.1.6 10.3.6 22.6 0 37.5-15.5 45.1-38.3l4.5-11.1s-68.2-186.3-75.5-207c-3-10.5 1.7-22 11-25.9 9.1-3.8 19.1.9 23.2 10.6l.8 2.4L191.3 279h.9s46.7-149.5 52.5-168c0-.1 0-.2.1-.3.2-.6.3-1.1.4-1.3 3.2-9.8 12.7-15.1 21.6-11.9 8.9 3.4 14 14.4 11 24.7zm85.4 241.2s-15.3 15.5-30.7 0-30.8-61.7-30.8-61.7 46.1 15.4 61.7 31.1-.2 30.6-.2 30.6zm30.3-84.6c-23.2 0-68.9-22.8-68.9-22.8s45.7-22.8 68.6-22.8S416 256 416 256s.7 22.8-22.5 22.8z" />',viewBox:"0 0 512 512"},sl={name:"behance",content:'<path d="M448 128H304V96h144v32zM245.335 254.873c7.09 11.573 10.665 25.65 10.665 42.197 0 17.067-4.069 32.379-12.176 45.903-5.178 9.005-11.62 16.58-19.358 22.691-8.723 7.022-18.988 11.833-30.855 14.467C181.744 382.732 168.89 384 155.02 384H32V96h131.927c33.321.504 56.901 10.744 70.803 30.705 8.323 12.24 12.515 26.869 12.515 43.936 0 17.588-4.192 31.729-12.607 42.425-4.716 5.982-11.683 11.443-20.868 16.385 13.963 5.364 24.474 13.817 31.565 25.422zm-158.9-45.318H152.8c11.867 0 21.484-2.406 28.913-7.152 7.367-4.763 11.097-13.215 11.097-25.292 0-13.426-4.901-22.285-14.672-26.609-8.446-2.991-19.204-4.486-32.273-4.486h-59.43v63.539zm111.923 83.452c0-15.019-5.795-25.292-17.385-30.917-6.504-3.121-15.597-4.746-27.31-4.876H86.435v76.787h66.303c11.836 0 21.084-1.69 27.68-5.071 11.96-6.275 17.94-18.238 17.94-35.923zM479.932 288H330.824c.813 21.182 7.938 34.778 21.409 43.322 8.157 5.287 18.002 7.931 29.503 7.931 12.189 0 22.096-3.224 29.722-9.704 4.157-3.482 7.813-8.318 11.001-14.541h54.693c-1.438 12.541-8.095 25.276-19.846 38.204C438.959 373.748 413.269 384 380.266 384c-27.253 0-51.286-8.64-72.132-25.985-20.846-17.28-31.222-45.522-31.222-84.532 0-36.624 9.376-64.672 28.19-84.21C323.917 169.785 348.294 160 378.328 160c17.814 0 33.847 3.288 48.129 9.898 14.282 6.593 26.096 17.023 35.378 31.24 8.407 12.573 13.876 27.114 16.346 43.685 1.438 9.704 2.033 24.929 1.751 43.177zm-55.567-37.696c-.969-14.669-5.72-25.759-14.283-33.4-8.532-7.576-19.095-11.348-31.753-11.348-13.72 0-24.377 3.998-31.94 12.058-7.563 8.028-12.314 18.957-14.282 32.691h92.258z" />',viewBox:"0 0 512 512"},cl={name:"behance-box",content:'<path d="M167.543 228.938h-56.884v-56.479h50.939c11.202 0 20.423 1.329 27.663 3.988 8.376 3.844 12.576 11.718 12.576 23.652 0 10.735-3.197 18.249-9.511 22.482-6.368 4.219-14.612 6.357-24.783 6.357zm220.527 11.836c-7.313-6.494-16.367-9.727-27.217-9.727-11.76 0-20.895 3.427-27.378 10.335-6.483 6.881-10.555 16.249-12.242 28.021h79.079c-.83-12.573-4.902-22.079-12.242-28.629zm-196.379 34.862c-5.575-2.774-13.369-4.219-23.409-4.335h-57.624v68.255h56.831c10.146 0 18.072-1.503 23.726-4.508 10.251-5.577 15.377-16.211 15.377-31.931 0-13.35-4.967-22.482-14.901-27.481zM480 64v384c0 17.664-14.336 32-32 32H64c-17.664 0-32-14.336-32-32V64c0-17.664 14.336-32 32-32h384c17.664 0 32 14.336 32 32zm-176 96h112v-32H304v32zm-48 146.729c0-14.709-3.065-27.221-9.142-37.509-6.078-10.316-15.087-17.829-27.056-22.597 7.873-4.392 13.845-9.247 17.887-14.564 7.213-9.507 10.806-22.077 10.806-37.711 0-15.171-3.593-28.175-10.727-39.055-11.916-17.743-32.128-26.846-60.689-27.293H64v256h105.445c11.889 0 22.907-1.127 33.079-3.439 10.172-2.341 18.97-6.618 26.447-12.859 6.632-5.433 12.154-12.166 16.592-20.17C252.512 335.51 256 321.899 256 306.729zm190.442-42.024c-2.117-14.204-6.804-26.667-14.01-37.444-7.956-12.187-18.082-21.126-30.324-26.777-12.242-5.665-25.985-8.484-41.254-8.484-25.744 0-46.638 8.387-62.765 25.091-16.127 16.746-24.163 40.788-24.163 72.18 0 33.437 8.894 57.644 26.762 72.456C318.555 376.594 339.155 384 362.514 384c28.288 0 50.308-8.788 66.033-26.391 10.072-11.081 15.778-26.86 17.011-37.609h-46.879c-1.178 6-2.512 10.667-9.429 17.327-6.536 5.555-15.028 8.318-25.476 8.318-9.858 0-18.297-2.266-25.288-6.798-11.546-7.323-17.654-18.977-18.35-37.133h127.807c.24-15.641-.269-28.691-1.501-37.009z" />',viewBox:"0 0 512 512"},ll={name:"dribbble",content:'<path d="M256 32C132.469 32 32 132.469 32 256c0 123.5 100.469 224 224 224 123.5 0 224-100.5 224-224 0-123.531-100.5-224-224-224zm148.094 103.281c26.625 32.562 42.781 74.031 43.188 119.188-6.312-1.312-69.562-14.156-133.219-6.156a850.738 850.738 0 0 0-4.125-9.875c-3.969-9.312-8.25-18.594-12.688-27.719 70.75-28.875 102.812-69.969 106.844-75.438zM256 64.969c48.594 0 93.031 18.219 126.812 48.188-3.438 4.906-32.25 43.625-100.281 69.125-31.344-57.594-66.094-104.938-71.375-112A190.999 190.999 0 0 1 256 64.969zm-81.344 18.156c5.031 6.938 39.219 54.312 70.938 110.656-89.5 23.781-168.344 23.438-176.906 23.312 12.406-59.374 52.437-108.718 105.968-133.968zm-110 173.156c0-1.969.031-3.906.094-5.844 8.375.156 101.094 1.375 196.657-27.219 5.469 10.719 10.688 21.594 15.5 32.469a192.95 192.95 0 0 0-7.531 2.281c-98.688 31.875-151.188 118.812-155.531 126.25-30.564-33.937-49.189-78.812-49.189-127.937zM256 447.594c-44.25 0-85-15.094-117.438-40.375 3.438-7.031 42.156-81.875 150.094-119.5.406-.125.812-.281 1.25-.406 26.875 69.812 37.969 128.312 40.812 145.094-22.968 9.781-48.218 15.187-74.718 15.187zm106.875-32.719c-1.938-11.625-12.125-67.625-37.156-136.406 59.969-9.594 112.625 6.125 119.188 8.188-8.532 53.218-39.095 99.218-82.032 128.218z" />',viewBox:"0 0 512 512"},hl={name:"dribbble-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM256 448c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192zm28-164.8c-82.9 28.9-118.1 83.4-126.7 98.7 27.2 21.3 61.5 34.1 98.7 34.1 22.5 0 43.9-4.6 63.3-13-3.3-18.4-13.1-65.2-34.2-120.1-.4 0-.8.2-1.1.3zm-95.5-172.3c-44.9 20.9-78.5 62.1-89 111.8 17.1-.1 78.6-1.7 147.6-20-24.3-43.2-50.3-80.1-58.6-91.8zm79 146.8c2.1-.7 4.3-1.3 6.5-2-4.1-9.3-8.6-18.6-13.3-27.8-74.1 22.2-146.1 23.4-164.6 23.4 0 1.6-.1 3.1-.1 4.7 0 40.8 15.3 78 40.4 106.3 10.5-16.7 54.6-79.9 131.1-104.6zm94.9-121.1C334.2 111.3 296.9 96 256 96c-12.4 0-24.5 1.4-36 4.1 8.7 11.9 34.9 48.8 58.8 92.7 50.7-19 76-46.7 83.6-56.2zm-46.6 138.7C335 328 344 371.9 346.9 387.8c35.2-24.3 60.2-62.5 67.2-106.6-13.2-3.7-53.4-13.1-98.3-5.9zm-24.4-58.1c3.8 7.8 7.5 15.8 10.9 23.8 1.2 2.8 2.4 5.7 3.5 8.5 48-6 95.7 1.8 110.2 4.5-.5-37.2-13.7-71.4-35.4-98.3-8.4 10-36.1 39.8-89.2 61.5z" />',viewBox:"0 0 512 512"},pl={name:"rss",content:'<path d="M151.4 420c0 32.9-26.7 59.5-59.7 59.5S32 452.9 32 420s26.7-59.5 59.7-59.5 59.7 26.7 59.7 59.5zM32 184.3v85.9c56 0 108.5 21.8 148.1 61.3 39.6 39.6 61.4 92.3 61.4 148.5h86.2C327.6 317 195 184.3 32 184.3zM32 32v85.9c199.4 0 361.6 162.5 361.6 362.1h86.2C479.8 233 278.9 32 32 32z" />',viewBox:"0 0 512 512"},ul={name:"rss-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM115.2 447.6c-28.3 0-51.2-22.8-51.2-51s22.9-51 51.2-51c28.3 0 51.2 22.8 51.2 51s-23 51-51.2 51zm128.8.4c0-48.1-18.7-93.3-52.8-127.3-34-33.9-79.2-52.6-127.2-52.6v-73.6c140.1 0 254.1 113.7 254.1 253.5H244zm129.9 0c0-171.2-139-310.4-309.9-310.4V64c211.6 0 383.8 172.3 383.8 384h-73.9z" />',viewBox:"0 0 512 512"},vl={name:"vimeo",content:'<path d="M479.783 152.805c-2 43.26-32.469 102.444-91.344 177.477C327.532 408.792 275.969 448 233.782 448c-26.094 0-48.188-23.873-66.25-71.742-12.063-43.896-24.094-87.854-36.157-131.657-13.407-47.901-27.782-71.835-43.188-71.835-3.344 0-15.032 6.985-35.125 20.955L32 166.744c22.094-19.201 43.844-38.526 65.282-57.773 29.407-25.316 51.5-38.556 66.25-39.938 34.782-3.353 56.219 20.287 64.282 70.78 8.625 54.559 14.719 88.475 18.032 101.777 10.031 45.2 21.093 67.769 33.156 67.769 9.344 0 23.375-14.591 42.157-43.818 18.75-29.29 28.782-51.548 30.125-66.868 2.656-25.27-7.375-37.827-30.125-37.827-10.719 0-21.782 2.251-33.157 6.969C310.126 96.647 352.283 62.08 414.533 64.082c46.156 1.289 67.906 30.935 65.25 88.723z" />',viewBox:"0 0 512 512"},dl={name:"vimeo-box",content:'<path d="M448 32H64c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h384c17.664 0 32-14.336 32-32V64c0-17.664-14.336-32-32-32zm-.186 140.119c-1.714 37.08-27.831 87.809-78.295 152.123-52.206 67.294-96.402 100.901-132.563 100.901-22.366 0-41.304-20.462-56.786-61.493-10.339-37.625-20.652-75.303-30.991-112.849-11.491-41.058-23.813-61.573-37.018-61.573-2.866 0-12.884 5.987-30.107 17.961L64 184.066c18.938-16.458 37.581-33.022 55.956-49.519 25.206-21.7 44.143-33.048 56.786-34.232 29.813-2.874 48.188 17.389 55.099 60.668 7.393 46.765 12.616 75.835 15.456 87.237 8.598 38.743 18.08 58.087 28.419 58.087 8.009 0 20.036-12.506 36.134-37.559 16.071-25.106 24.67-44.184 25.822-57.315 2.277-21.66-6.321-32.423-25.822-32.423-9.188 0-18.67 1.929-28.42 5.974 18.964-61.001 55.099-90.63 108.456-88.914 39.562 1.105 58.205 26.516 55.928 76.049z" />',viewBox:"0 0 512 512"},fl={name:"youtube",content:'<path d="M475.5 165s-4.4-31.4-17.8-45.2c-17-18.1-36.1-18.2-44.9-19.3C350.1 96 256.1 96 256.1 96h-.2s-94 0-156.7 4.6c-8.8 1.1-27.8 1.2-44.9 19.3C40.9 133.7 36.5 165 36.5 165S32 201.9 32 238.7v34.5c0 36.8 4.5 73.6 4.5 73.6s4.4 31.4 17.8 45.2c17 18.1 39.4 17.5 49.4 19.4C139.5 414.9 256 416 256 416s94.1-.1 156.8-4.7c8.8-1.1 27.9-1.2 44.9-19.3 13.4-13.8 17.8-45.2 17.8-45.2s4.5-36.8 4.5-73.6v-34.5c0-36.8-4.5-73.7-4.5-73.7zM192 336V176l144 80-144 80z" />',viewBox:"0 0 512 512"},ml={name:"youtube-box",content:'<path d="M448 32H64c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h384c17.664 0 32-14.336 32-32V64c0-17.664-14.336-32-32-32zm0 237.749c0 29.454-3.835 58.909-3.835 58.909s-3.752 25.082-15.265 36.128c-14.602 14.497-30.97 14.569-38.476 15.417C336.689 383.885 256 384 256 384s-99.838-.864-130.559-3.656c-8.546-1.519-27.734-1.061-42.341-15.558-11.513-11.045-15.26-36.128-15.26-36.128S64 299.203 64 269.749v-27.614c0-29.454 3.84-58.909 3.84-58.909s3.747-25.082 15.26-36.128c14.607-14.497 30.969-14.569 38.476-15.417C175.313 128 255.917 128 255.917 128h.167s80.606 0 134.341 3.682c7.506.849 23.873.92 38.476 15.417 11.513 11.045 15.265 36.128 15.265 36.128S448 212.681 448 242.136v27.613zM192 176l144 80-144 80V176z" />',viewBox:"0 0 512 512"},yl={name:"folder",content:'<path d="m242.8 128-32-32H96v288h320V192H128v-32h288c17.7 0 32 14.3 32 32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h128l64 64" />',viewBox:"0 0 512 512"},gl={name:"folder-open",content:'<path d="M425.6 160h-246c-17.6 0-37.2 14.4-43.6 32L64 384V96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h268.4c17.6 0 37.2-14.4 43.6-32l70-192c6.4-17.6-2.8-32-20.4-32zM346 373.1c-2 5.5-10.1 10.9-13.6 10.9H98.1L166 202.9c2-5.5 10.1-10.9 13.6-10.9h232.3L346 373.1z" />',viewBox:"0 0 512 512"},bl={name:"folder-add",content:'<path d="M96 160h288c17.7 0 32 14.3 32 32v64h-32v-64H96v-32zm352 224h-32v-64h-32v64h-64v32h64v64h32v-64h64v-32h-32zM64 96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h192v-32H64V96z" />',viewBox:"0 0 512 512"},xl={name:"folder-up",content:'<path d="M96 160h288c17.7 0 32 14.3 32 32v64l-32 32v-96H96v-32zM64 96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h192l32-32H64V96zm336 240-80 80h64v64h32v-64h64l-80-80z" />',viewBox:"0 0 512 512"},wl={name:"folder-more",content:'<path d="M64 384h96v32H64c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h128l64 64h-45.2l-32-32H64v288zm192-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160-64v-96c0-17.7-14.3-32-32-32H96v32h288v96h32zm32 64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-96 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" />',viewBox:"0 0 512 512"},_l={name:"aggregate-fields",content:'<path d="M128 128c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h256c32 0 32-32 32-32H128V128zm-64 64c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h256c32 0 32-32 32-32H64V192zM448 64H192c-17.6 0-32 14.4-32 32v160c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32zm1 192s0 .1 0 0l-256.9.1-.1-.1V96.1l.1-.1H448v160h1z" />',viewBox:"0 0 512 512"},zl={name:"file",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Cl={name:"file-add",content:'<path d="M512 416h-64v64h-32v-64h-64v-32h64v-64h32v64h64v32zM96 448V64h224v96h96v96h32V128l-96-96H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h224v-32" />',viewBox:"0 0 512 512"},kl={name:"file-txt",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zm-32-96v32H128v-32h256zM256 160v32H128v-32m256 64v32H128v-32h256zm-256 96v-32h224v32H128z" />',viewBox:"0 0 512 512"},Ml={name:"file-csv",content:'<path d="M178.6 224c-10 0-18.9 2.1-26.7 6.2-7.7 4.2-13.7 10.1-17.9 17.7-4.2 7.6-6.3 16.3-6.3 26.1 0 9.1 1.9 17.1 5.7 24.1s9.2 12.3 16.4 16.1c7.2 3.8 15.7 5.7 25.6 5.7 10 0 18.9-1.4 26.6-4.1v-24.9c-6.9 3.5-13.8 5.2-20.5 5.2-7.3 0-13.2-2.1-17.6-6.4-4.4-4.3-6.6-10.1-6.6-17.6s2.2-13.4 6.6-17.7 10.4-6.5 18-6.5c3.7 0 7.3.4 10.9 1.3s6.7 2.1 9.2 3.6V227c-7.6-2-15.3-2.9-23.4-3zm73.8.1c-11.5 0-20.6 2.7-27.5 8.1-6.8 5.4-10.2 12.5-10.2 21.5 0 12.8 7.5 22.1 22.4 27.8 4.6 1.7 7.8 3.1 9.5 4.1 1.7 1 3 2 3.8 3.2.8 1.2 1.2 2.5 1.2 4 0 2.1-.8 3.7-2.5 4.8-1.7 1.1-4.1 1.7-7.1 1.7-4.1 0-8.4-.9-13.2-2.6-4.7-1.8-9-4-12.9-6.9V315c8.1 3.3 17 4.9 26.7 4.9 8.4 0 15.5-1.1 21.5-3.4 6-2.2 10.6-5.7 13.9-10.2 3.3-4.6 5-9.9 5-16.1 0-6.3-2-11.8-6-16.4-4-4.6-10.8-8.9-20.4-12.8-4.9-2-8.1-3.7-9.6-5-1.5-1.3-2.3-2.9-2.3-4.8 0-2 1-3.6 2.8-4.8 1.9-1.2 4.4-1.8 7.5-1.8 7.6 0 15.2 2.1 23 6.4v-23.6c-4-1.1-7.1-1.8-9.3-2.2-2.2-.4-4.7-.7-7.4-1-2.7-.1-5.8-.1-8.9-.1zm39.8-.1 30 96h31.4l30.4-96h-29.1l-13.8 58.9c-1.1 4.4-1.8 8.1-2 11.1h-.6c-.1-2.4-.8-5.9-1.9-10.7L322.4 224h-30.2zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Ol={name:"file-excel",content:'<path d="m288 304 64 112h-48l-48-84.5-31.5 52.5H256v32h-96l64-112-64-112h48l48 84 48-84h48l-64 112zm64-272H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Sl={name:"file-word",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zm-32.4-256-6.9 32-41.6 192h-46.7l-32.8-132.5L222.9 416h-46.7l-48.6-224h47.8l24.8 139.2L233.3 192h44.5l33.1 139.2L330.1 224H311v-32h72.6z" />',viewBox:"0 0 512 512"},Hl={name:"file-mdb",content:'<path d="M231.1 192 144 416h80v-32h-25.5l14.8-38h85.6l27.2 70h42L281 192h-49.9zm-1.5 112 26.5-68 26.4 68h-52.9zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Pl={name:"file-ppt",content:'<path d="m192 192-32 32h32v192h49v-80h25.6c16.4 0 29.1-1.5 38.2-4.4 14.4-4.5 25.9-12.9 34.4-25.4s12.8-26.6 12.8-42.6c0-15.8-4-29.5-12-41.1s-18.8-20.1-32.4-25.4c-10.3-3.7-24.4-5.5-42-5.5M241 225h20.1c11.2.3 20.2 2.1 26.9 5.6 12.1 6.4 23.3 17.6 23.3 33.5 0 17.3-11.9 29-25.2 35-6.7 2.9-15.1 4.4-25.2 3.9H241v-78zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Il={name:"file-pdf",content:'<path d="M240.9 160c-7.6 0-13.8 4-15.4 9.9-4.9 18.6.2 46.3 9.4 82.3l-2.4 5.9c-6.6 16.4-14.8 33-22.1 47.6l-1 1.9c-7.7 15.3-14.6 28.4-21 39.4l-6.5 3.5c-.5.3-11.6 6.3-14.3 7.9-22.2 13.6-36.9 28.9-39.4 41.2-.8 3.9-.2 8.9 3.7 11.2l6.3 3.2c2.7 1.4 5.6 2.1 8.6 2.1 15.8 0 34.2-20.2 59.5-65.3 29.2-9.7 62.5-17.8 91.6-22.3 22.2 12.8 49.5 21.7 66.8 21.7 3.1 0 5.7-.3 7.8-.9 3.3-.9 6.1-2.8 7.8-5.4 3.4-5.2 4-12.2 3.1-19.5-.3-2.1-2-4.8-3.8-6.6-5.1-5.2-16.5-7.9-33.7-8.1-11.7-.1-25.8.9-40.6 3-6.6-3.9-13.5-8.2-18.8-13.3-14.4-13.8-26.5-32.9-34-53.9.5-2 .9-3.7 1.3-5.4 0 0 8.1-47.1 6-63.1-.3-2.2-.5-2.8-1.1-4.5l-.7-1.9c-2.2-5.2-6.5-10.7-13.3-10.4l-3.8-.2zm2.7 8.4c5.1 0 8 13.1 8.2 25.4.3 12.3-2.6 20.9-6 27.3-2.9-9.4-4.3-24.3-4.3-34-.1-.1-.3-18.7 2.1-18.7zm.4 104.1c8.6 16 19.3 29.5 31.9 40.4 1.6 1.3 3.2 2.7 5 4.1-25.6 5.2-47.7 11.5-67.1 19.1 3.6-6.5 7.2-13.3 11-20.6 9.1-17.7 14.9-31.6 19.2-43zm102.2 51.6c9.3 0 12 0 21.1 2.3 9.1 2.4 9.2 7.2 7.6 8.2-1.6 1-6 1.6-8.9 1.6-9.2 0-20.7-4.3-36.8-11.4 6.3-.4 11.9-.7 17-.7zm-165.4 35.8c-17.7 28.8-29.5 40.3-37.3 43.8 2.9-8.1 14.3-24 31.2-38.1 1.1-.9 3.7-3.4 6.1-5.7zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Al={name:"file-psd",content:'<path d="M128 160v256h45v-91h21.4c24.2 0 43.5-7.8 57.9-23.4 14.4-15.6 21.6-36.1 21.6-61.3 0-53.4-25.2-80.2-75.5-80.2H128zm45 44h17.5c23.7 0 35.5 12.8 35.5 38.6 0 26.3-11.8 39.4-35.5 39.4H173v-78zm164.6 51.7c-8.1 0-15.9.9-23.4 2.8-7.5 1.9-14.2 4.7-20 8.6-5.8 3.9-10.4 9-14 15.2-3.5 6.2-5.2 13.6-5.2 22.1 0 6.2.8 11.7 2.3 16.3 1.5 4.5 3.7 8.6 6.7 12.1 2.9 3.5 6.5 6.5 10.8 9.2 4.3 2.7 9.3 5.1 15 7.4 3.5 1.5 7.2 2.8 11 4 3.8 1.2 7.3 2.5 10.5 4s5.8 3.2 7.8 5.2 3 4.5 3 7.5c0 4.7-2.2 8.2-6.7 10.4-4.5 2.3-10.6 3.4-18.5 3.4-6.4 0-13.3-1.2-20.5-3.4s-14.5-5.8-21.7-10.4v38.3c13.4 5.2 27.9 7.7 43.7 7.7 8.5 0 16.8-.9 24.7-2.8 7.9-1.8 15-4.8 21.1-8.8s10.9-9.2 14.7-15.7 5.5-14.2 5.5-23.3c0-6.5-.9-12-2.7-16.8-1.8-4.7-4.4-8.7-7.8-12.2-3.4-3.5-7.4-6.5-12.2-9.1-4.7-2.6-10-5-15.9-7.1-3.2-1.2-6.5-2.4-9.8-3.5s-6.3-2.4-9-3.9-4.9-3.1-6.5-5.2c-1.6-2.1-2.5-4.4-2.5-7.1 0-2.1.5-3.9 1.7-5.6 1.1-1.7 2.6-3 4.6-4 2-1 4.2-1.8 6.7-2.4s5.2-.8 8.1-.8c6.1 0 12.3.9 18.8 2.6 6.4 1.7 12.3 4.4 18 7.8v-36.4c-6.3-2-12.8-3.5-19.3-4.5s-13-1.6-19.3-1.6h.3zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Vl={name:"file-flash",content:'<path d="M352 191.3V237c-21 .2-46.6-3.2-69.6 45H320v45h-47.9s-37.4 91.1-111.9 90.1c-.6-10 0-30.8 0-45 49.3-7.6 65.4-62.1 76.8-89.4 26.5-82.8 73.9-92 93.4-92.1 5.6 0 21.6.7 21.6.7zm96-63.3v320c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h256l96 96zm-32 32h-96V64H96v384h320V160z" />',viewBox:"0 0 512 512"},El={name:"file-config",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zm-41.8-124.6-23.7-17.9c1-5.7 1.6-11.5 1.6-17.4 0-6-.5-11.8-1.6-17.4l23.7-17.9c3.7-2.8 4.7-7.9 2.4-11.9l-19.4-33.5c-2.3-4-7.2-5.6-11.5-3.9L318.4 215c-8.8-7.5-19-13.5-30.2-17.4l-3.7-29.5c-.6-4.6-4.5-8-9.1-8h-38.7c-4.6 0-8.5 3.4-9.1 8l-3.7 29.5c-11.1 4-21.3 9.9-30.2 17.4l-27.4-11.6c-4.2-1.8-9.2-.1-11.5 3.9l-19.4 33.5c-2.3 4-1.3 9.1 2.4 11.9l23.7 17.9c-1 5.7-1.6 11.5-1.6 17.4 0 6 .5 11.8 1.6 17.4l-23.7 17.9c-3.7 2.8-4.7 7.9-2.4 11.9l19.4 33.5c2.3 4 7.2 5.6 11.5 3.9l27.4-11.6c8.8 7.5 19 13.5 30.2 17.4l3.7 29.5c.6 4.6 4.5 8 9.1 8h38.7c4.6 0 8.5-3.4 9.1-8l3.7-29.5c11.1-4 21.3-9.9 30.2-17.4l27.4 11.6c4.2 1.8 9.2.1 11.5-3.9l19.4-33.5c2.2-4 1.2-9-2.5-11.8zM256 336c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" />',viewBox:"0 0 512 512"},Tl={name:"file-ascx",content:'<path d="M384 224h-96v-32h96v32zm0 160h-96v-32h96v32zM256 256H128v-96h128v96zm0 160H128v-96h128v96zm96-384H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Bl={name:"file-bac",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H289v-96h64l-96.5-96-95.5 96h64v96H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},jl={name:"file-zip",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h64v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v34.7c-18.6 6.6-32 24.4-32 45.3 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V256h32v-32h-32v-32h32v-32h-32v-32h32V96h-32V64h96v96h96v288zm-192-80c0 8.8-7.2 16-16 16s-16-7.2-16-16 7.2-16 16-16 16 7.2 16 16z" />',viewBox:"0 0 512 512"},Ll={name:"film",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM128 448H96v-32h32v32zm0-96H96v-64h32v64zm0-128H96v-64h32v64zm0-128H96V64h32v32zm224 352H160v-96h192v96zm0-128H160V192h192v128zm0-160H160V64h192v96zm64 288h-32v-32h32v32zm0-96h-32v-64h32v64zm0-128h-32v-64h32v64zm0-128h-32V64h32v32z" />',viewBox:"0 0 512 512"},Rl={name:"css3",content:'<path d="m64 32 30.2 384L256 480l161.8-64L448 32H64zm65.6 82h250.3l-4.9 48.9L255.4 214h115.9L358 366.1l-102.1 29.7-102.4-30.2-6.6-76.6h50.9l3.3 39.7 54.4 13.8.5-.1v-.1l56.3-15.8 3.9-64.4H143.7l-3.8-47.8 123-51.2H135.7l-6.1-49.1z" />',viewBox:"0 0 512 512"},Dl={name:"html5",content:'<path d="m64 32 30.4 384 161.3 64 161.7-64L448 32H64zm68 83h247.7l-1.2 13.2-2.2 24.8-1 11H186.1l4.5 51h180.1l-1.2 13.3-11.7 129.9-.7 8.4-101.3 37-101.2-37-6.9-77.6h49l3.5 39.7 55.5 24 55.6-24.1 5.8-64.6h-172L133 128.2l-1-13.2z" />',viewBox:"0 0 512 512"},Nl={name:"code",content:'<path d="M512 256 384 384l-22.6-22.6L466.7 256 361.4 150.6 384 128l128 128zM150.6 361.4 45.3 256l105.4-105.4L128 128 0 256l128 128 22.6-22.6zM321.1 72.3 290.2 64l-99.4 375.7 30.9 8.3 99.4-375.7z" />',viewBox:"0 0 512 512"},Fl={name:"css",content:'<path d="m192 96-32 .1S96 96 96 160v48c0 27.8-21.8 31.4-32 32H48c-2.2 0-4.3.4-6.2 1.2-.5.2-1 .4-1.4.7s-.9.5-1.3.8c-1.3.9-2.4 1.9-3.4 3.1-.2.2-.3.4-.5.6-.9 1.2-1.7 2.6-2.2 4.1-.2.5-.3 1-.5 1.5-.3 1-.4 2.1-.5 3.2v1.6c.1 1.1.2 2.1.5 3.2.1.5.3 1 .5 1.5.5 1.5 1.3 2.8 2.2 4.1.2.2.3.4.5.6 1 1.2 2.1 2.2 3.4 3.1.4.3.9.5 1.3.8s.9.5 1.4.7c1.9.8 4 1.2 6.2 1.2h16c10.2.6 32 4.2 32 32v48c0 64 64 63.9 64 63.9l32 .1v-32l-31.8-.1s-32.2.1-32.2-32v-48.5s0-29-19.6-47.9c19.6-18.8 19.6-47.9 19.6-47.9v-47.9c0-31.9 32.2-31.8 32.2-31.8l31.8-.1V96zm128-.1V128l31.7.1S384 128 384 160v48s0 29.1 19.5 48C384 274.9 384 304 384 304v48c0 32-32.1 31.9-32.1 31.9l-31.9.1v32l32.1-.1s63.9.1 63.9-63.7V304c0-27.8 21.8-31.4 32-32h16c2.2 0 4.3-.4 6.2-1.2.5-.2 1-.4 1.4-.7s.9-.5 1.3-.8c1.3-.9 2.4-1.9 3.4-3.1.2-.2.3-.4.5-.6.9-1.2 1.7-2.6 2.2-4.1.2-.5.3-1 .5-1.5.3-1 .4-2.1.5-3.2v-1.6c-.1-1.1-.2-2.1-.5-3.2-.1-.5-.3-1-.5-1.5-.5-1.5-1.3-2.8-2.2-4.1-.2-.2-.3-.4-.5-.6-1-1.2-2.1-2.2-3.4-3.1-.4-.3-.9-.5-1.3-.8s-.9-.5-1.4-.7c-1.9-.8-4-1.2-6.2-1.2h-16.1c-10.2-.6-31.9-4.2-31.9-32v-48c0-64-64.1-63.9-64.1-63.9l-31.9-.2z" />',viewBox:"0 0 512 512"},Ul={name:"js",content:'<path d="M478.4 96C471 59.5 438.7 32 400 32H208c-38.7 0-71 27.5-78.4 64-1.1 5.2-1.6 10.5-1.6 16v272H32v16c0 5.5.5 10.8 1.6 16 7.4 36.5 39.7 64 78.4 64h192c38.7 0 71-27.5 78.4-64 1.1-5.2 1.6-10.5 1.6-16V128h96v-16c0-5.5-.5-10.8-1.6-16zm-124.8 0c-1.1 5.2-1.6 10.5-1.6 16v288c0 5.6-1 11-2.8 16-6.6 18.6-24.4 32-45.2 32-20.9 0-38.7-13.4-45.2-32-1.8-5-2.8-10.4-2.8-16v-16h-96V112c0-5.6 1-11 2.8-16 6.6-18.6 24.4-32 45.2-32h160c-7 9.3-12 20.2-14.4 32zM320 192H192v-32h128v32zm0 64H192v-32h128v32zm0 64H192v-32h128v32z" />',viewBox:"0 0 512 512"},Wl={name:"exe",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H64zm160 32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM64 160h384v288H64V160z" />',viewBox:"0 0 512 512"},Gl={name:"csproj",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H64zm157.9 32.1c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9zm96 0c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9zm96 0c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9zM64 160h384v288H64V160zm119.7 64c-17.3 0-32.7 3.5-46 10.4s-23.6 16.8-30.9 29.5c-7.3 12.8-10.9 27.3-10.9 43.6 0 15.2 3.3 28.6 9.8 40.2s15.9 20.6 28.3 26.8c12.4 6.3 27 9.4 44.1 9.4 17.3 0 32.6-2.3 45.9-6.9v-41.5c-11.9 5.8-23.7 8.6-35.4 8.6-12.6 0-22.8-3.6-30.3-10.7s-11.4-16.9-11.4-29.2c0-12.4 3.8-22.3 11.3-29.6s17.9-10.9 31-10.9c6.3 0 12.6.7 18.8 2.1s11.5 3.5 16 6v-43c-13.1-3.2-26.4-4.8-40.3-4.8zm114.2 0-8.3 39h-17.4l-5.7 29H284l-6.1 26H262l-6.1 29h15.4l-7.7 37h30.9l7.9-37h26.8l-7.7 37h30.4l8.2-37h16.3l7.2-29h-17.2l6.1-26h15l6.3-29h-14.7l8.3-39H356l-8.3 39h-26.4l8.3-39h-31.7zm16.8 68h26.8l-6.3 27h-26.7l6.2-27z" />',viewBox:"0 0 512 512"},Kl={name:"vbproj",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H64zm160 32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM64 160h384v288H64V160zm32 64 51.6 160h54.1L254 224h-50.2L180 321.9c-1.9 7.4-3 13.5-3.5 18.5h-1.1c-.2-3.9-1.3-9.9-3.2-17.9L147.8 224H96zm183.3 0v160h73c20.4 0 36.2-4.3 47.2-12.8s16.5-20.6 16.5-36.3c0-5.8-1.6-11.4-4.9-16.8s-7.9-9.9-14-13.5-12.8-5.9-20.4-6.8v-.4c6.5-1.3 12.5-3.6 18-7.1s9.5-7.6 12.2-12.2c2.7-4.6 4-9.8 4-15.3 0-25.8-21.2-38.7-63.7-38.7h-67.9v-.1zm48.2 32.3h8.9c15.6 0 23.3 5 23.3 14.8 0 4.5-1.7 8.3-5.1 11.1s-7.8 4.3-13.2 4.3h-14l.1-30.2zm0 62.5h19c5.5 0 9.9 1.5 13.3 4.4s5 6.8 5 11.4c0 5.2-1.9 9.3-5.7 12.3s-9 4.5-15.5 4.5h-16.1v-32.6z" />',viewBox:"0 0 512 512"},Xl={name:"cs",content:'<path d="M165.9 128c-26.4 0-49.8 5.6-70.1 16.7s-36 26.8-47.1 47.2S32 235.5 32 261.6c0 24.3 5 45.7 14.9 64.3s24.3 32.9 43.1 43 41.2 15.1 67.2 15.1c26.4 0 46.6-3.7 65.8-11v-66.5c-17.1 9.2-32 13.8-49.8 13.8-19.3 0-34.7-5.7-46.2-17.2s-17.3-27.1-17.3-46.9c0-19.9 5.8-35.7 17.3-47.3s27.3-17.4 47.2-17.4c9.6 0 16 1.2 25.4 3.5s17.5 5.5 24.4 9.7v-68.9c-19.7-5.2-37-7.8-58.1-7.8zm158.8 0-13.3 62h-29l-9.3 46h28.6l-10.3 43h-25.6l-9.8 46h25.2l-12.5 59h50l12.9-59h43.5l-12.5 59h49.2l13.3-59h26.8l11.5-46h-28.2l10.3-43h24.2l10.3-46h-23.7l13.5-63h-51.7l-13.5 63h-43.5l13.5-63h-50l.1 1zm26.9 108H395l-10.3 43h-43.3l10.2-43z" />',viewBox:"0 0 512 512"},Zl={name:"vb",content:'<path d="m32 160 73.2 224h76.7L256 160h-71.1l-33.7 137c-2.6 10.3-4.3 19-4.9 25.9h-1.6c-.3-5.5-1.8-13.9-4.6-25L105.5 160H32zm252 0v224h104.6c29.3 0 51.9-6 67.7-17.9 15.8-11.9 23.7-28.9 23.7-50.8 0-8.1-2.4-16-7-23.5-4.7-7.6-11.4-13.9-20-18.9-8.7-5-18.4-8.2-29.3-9.5v-.6c9.4-1.8 18-5.1 25.8-10 7.8-4.9 13.7-10.6 17.5-17.1 3.8-6.5 5.8-13.7 5.8-21.5 0-36.1-30.5-54.2-91.4-54.2H284zm69.1 45.2h12.8c22.3 0 33.4 6.9 33.4 20.8 0 6.4-2.5 11.5-7.4 15.5s-11.2 6-18.9 6h-20l.1-42.3zm0 87.6h27.2c7.9 0 14.3 2.1 19 6.2s7.2 9.5 7.2 15.9c0 7.3-2.7 13-8.1 17.2-5.4 4.2-12.9 6.3-22.2 6.3h-23v-45.6h-.1z" />',viewBox:"0 0 512 512"},Yl={name:"sln",content:'<path d="M352 32 172.5 211.5 64 128l-32 32v192l32 32 108.5-83.5L352 480l128-32V64L352 32zM64 320V192l64 64-64 64zm166.4-64L352 162.5v187.1L230.4 256z" />',viewBox:"0 0 512 512"},ql={name:"cloud",content:'<path d="M442.2 243.6c3.7-11.2 5.8-23.2 5.8-35.6 0-61.9-50.1-112-112-112-37.8 0-71.3 18.8-91.6 47.5-15-9.8-33-15.5-52.3-15.5-52.9 0-95.8 42.9-95.8 95.8 0 1.8.1 3.6.2 5.5C58.9 242.3 32 278 32 320c0 53 43 96 96 96h256c53 0 96-43 96-96 0-31.1-14.8-58.8-37.8-76.4z" />',viewBox:"0 0 512 512"},Ql={name:"file-horizontal",content:'<path d="M384 64H64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160l-96-96zm64 352H64V96h288v96h96v224z" />',viewBox:"0 0 512 512"},Jl={name:"subreport",content:'<path d="M448 480c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-96h32v96h288V96H128v64H96V96c0-17.7 14.3-32 32-32h288c17.7 0 32 14.3 32 32v384zM63.9 32l254.3-.2L286.4 0 63.8.2C46.2.2 32 14.4 32 32l.1 128H64l-.1-128zm.1 351H32v32c0 17.7 14.3 32 32 32v-64zm-32-62.9S64 288 95 288v32l65-48.1L96 224v32c-32.1 0-64 32.1-64 64.1zM352 384l-160 .1V416l160-.1V384zm-96-192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64h-64v-64zm32-32v64h64c0-35.3-28.7-64-64-64z" />',viewBox:"0 0 512 512"},$l={name:"data",content:'<path d="M448 125.6v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 159.8 64 125.9v-.3c0-34 86-61.6 192-61.6s192 27.6 192 61.6zm0 46.4v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 206.2 64 172.3v-.3l1 86.8v.5c.5 33.7 85.8 61 191 61s190.5-27.3 191-61v-.5l1-86.8zm0 128v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 334.2 64 300.3v-.3l1 86.8v.5c.5 33.7 85.8 61 191 61s190.5-27.3 191-61v-.5l1-86.8z" />',viewBox:"0 0 512 512"},th={name:"file-header",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm0 416H96V64h320v384zm-32-64H128v-32h256v32zm0-96H128v32h256v-32zm0-160H128v96h256v-96z" />',viewBox:"0 0 512 512"},eh={name:"file-footer",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm0 416H96V64h320v384zm-32-224H128v-32h256v32zm0-96H128v32h256v-32zm0 160H128v96h256v-96z" />',viewBox:"0 0 512 512"},oh={name:"group-header-section",content:'<path d="m128 448 32 32H32V32h128l-32 32H64v384h64zm320-320H128v96h320v-96zm0 160H128v32h320v-32zm0 64H128v32h320v-32z" />',viewBox:"0 0 512 512"},nh={name:"group-footer-section",content:'<path d="m128 448 32 32H32V32h128l-32 32H64v384h64zm320-160H128v96h320v-96zm0-160H128v32h320v-32zm0 64H128v32h320v-32z" />',viewBox:"0 0 512 512"},rh={name:"page-header-section",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zm-32-160H128v-96h256v96zm0 96H128v32h256v-32zm0-64H128v32h256v-32z" />',viewBox:"0 0 512 512"},ih={name:"page-footer-section",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zm-31-32H129v-96h256v96zm0-160H129v32h256v-32zm0-64H129v32h256v-32z" />',viewBox:"0 0 512 512"},ah={name:"detail-section",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H96zm320 416H96V64h320v384zm-33-224h-63v-32h63v32zm-96-32h-63v32h63v-32zm-96 0h-63v32h63v-32zm192 96h-63v32h63v-32zm-96 0h-63v32h63v-32zm-96 0h-63v32h63v-32z" />',viewBox:"0 0 512 512"},sh={name:"toc-section",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H96zm320 416H96V64h320v384zm-32-288H224v-32h160v32zm-64 64h-96v-32h96v32zm0 64h-96v-32h96v32zm64 64H224v-32h160v32z" />',viewBox:"0 0 512 512"},ch={name:"group-section",content:'<path d="m128 416 32 32H32V32h128l-32 32H64v352h64zm320-288H128v32h320v-32zm0 192H128v32h320v-32zm0-96H128v32h320v-32z" />',viewBox:"0 0 512 512"},lh={name:"parameters",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H96zm320 416H96V64h320v384zM285.3 160c-8.9-25-36.3-38.1-61.4-29.2-13.7 4.8-24.4 15.6-29.2 29.2H128v32h66.7c8.9 25 36.3 38.1 61.4 29.2 13.7-4.8 24.4-15.6 29.2-29.2H384v-32h-98.7zM240 192c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm109.3 96c-8.9-25-36.3-38.1-61.4-29.2-13.7 4.8-24.4 15.6-29.2 29.2H128v32h130.7c8.9 25 36.3 38.1 61.4 29.2 13.7-4.8 24.4-15.6 29.2-29.2H384v-32h-34.7zM304 320c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" />',viewBox:"0 0 512 512"},hh={name:"data-csv",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6zm0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.8zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7h89zM271 420.8c-7.7 4.5-16.4 6.8-25.4 6.7-9.7 0-17.4-3-23.1-9s-8.6-14.1-8.6-24.3c0-10.6 3-19 9.1-25.2 6.1-6.2 14-9.3 23.9-9.3 8.4-.1 16.7 2 24 6.3v-22.8c-7-2.6-15.7-3.9-25.9-3.9-16.6 0-30 5.2-40.4 15.7-10.4 10.5-15.6 24.1-15.6 40.9 0 15.8 4.6 28.4 13.8 37.9 9.2 9.5 21.9 14.2 38 14.2 12.3 0 22.3-1.9 30-5.6l.2-21.6zm36.6 25.7c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.6-2.6-5.5-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.5-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.2-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.3-.8 2.1 0 4.1.2 6.2.4 2.2.3 4.4.8 6.5 1.4 2.2.6 4.3 1.4 6.4 2.3 2 .9 3.9 2 5.8 3.2v-21.9c-3.8-1.4-7.7-2.4-11.7-3-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 2 12.8 6 17.9 4 4.9 10.1 9.1 18.3 12.5 3.2 1.3 6.2 2.6 9 3.9 2.5 1.1 4.9 2.5 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.2-.9-15.1-2.7-5.1-1.8-9.8-4.5-13.9-8V442c4.5 2.3 9 3.8 13.8 4.5zm147.7-105.4-21.8 72.8c-1.1 3.5-1.8 7.1-2.3 10.8h-.4c-.3-3.6-1.1-7.1-2.1-10.5l-21.9-73.1h-25.5l35.7 105h26.8l36.2-105h-24.7zm-295.3-15C85.7 317.7 32.4 295 32 268.3v-.3l.1 86.8v.3c.4 26.7 53.7 49.3 127.9 57.8v-86.8z" />',viewBox:"0 0 512 512"},ph={name:"data-json",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6zm0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.8zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7h89zm-251.3 21.1h-23.6v62.4c0 16-5.4 24-16.2 24-4.9.1-9.7-1.5-13.6-4.5v22.2c4.9 1.9 10.1 2.9 15.3 2.8 12.4 0 21.8-3.7 28.3-11.2s9.8-18.2 9.8-32.3v-63.4zm31.7 105.4c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.6-2.6-5.4-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.6-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.2-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.4-.7 2.1 0 4.1.1 6.2.4 2.2.3 4.4.8 6.6 1.4 2.2.6 4.3 1.4 6.4 2.3 2 .9 3.9 2 5.8 3.2v-21.9c-3.8-1.4-7.7-2.4-11.7-3-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 1.9 12.8 6 17.9 4 4.9 10.1 9.1 18.4 12.5 3.2 1.3 6.2 2.6 9 3.9 2.5 1.1 4.9 2.5 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.3-.9-15.1-2.7-5.1-1.8-9.7-4.5-13.8-8v23.4c4.1 2.2 8.7 3.7 13.4 4.4zm157.3-13.7c9.6-10.1 14.4-23.4 14.4-39.9 0-16.1-4.6-29-13.9-38.8-9.3-9.8-21.4-14.7-36.4-14.7-15.9 0-28.6 5.1-38.2 15.4-9.6 10.3-14.4 23.7-14.4 40.3 0 15.7 4.7 28.5 14.2 38.3s21.7 14.7 36.8 14.7c15.4-.1 27.9-5.2 37.5-15.3zm-17.5-64c4.6 6 6.9 14.5 7 25.4 0 10.4-2.4 18.6-7.2 24.5s-11.3 8.8-19.4 8.8c-7.5.2-14.6-3.2-19.2-9.1-4.9-6.1-7.3-14.3-7.3-24.7 0-10.2 2.4-18.5 7.3-24.7s11.5-9.3 19.8-9.3c8 0 14.4 3.1 19 9.1zM480 341.1h-22.3v58.1c-.1 4.8.1 9.6.6 14.4h-.3c-1.6-2.8-3.4-5.7-5.3-8.6L411 341.1h-25.5v105h22.3v-57.7c0-7.6-.2-13.3-.6-17h.3c1.6 3 3.4 5.9 5.3 8.7l43.3 66H480v-105zM96 313.9c-39-11.2-63.7-27.5-64-45.6v-.3l.1 86.8v.3c.3 18.1 24.9 34.3 63.9 45.6v-86.8z" />',viewBox:"0 0 512 512"},uh={name:"data-sql",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6zm0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.8zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7h89zM209.1 448.6c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.5-2.6-5.4-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.6-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.3-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.3-.8 2.1 0 4.1.2 6.2.4 2.2.3 4.4.8 6.6 1.4 2.2.6 4.3 1.4 6.4 2.3 2 .9 3.9 2 5.8 3.2v-21.9c-3.8-1.4-7.7-2.4-11.7-3-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 1.9 12.8 6 17.9 4 4.9 10.1 9.1 18.4 12.5 3.2 1.3 6.2 2.6 9 3.9 2.5 1.1 4.9 2.4 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.3-.9-15.1-2.7-5.1-1.8-9.7-4.5-13.8-8v23.4c4 2.3 8.6 3.8 13.4 4.5zm172.8-21.2c5.7-9 8.5-19.8 8.5-32.4 0-16.1-4.6-29-13.9-38.8s-21.3-14.7-36.2-14.8c-16 0-28.8 5.1-38.5 15.4s-14.4 23.7-14.4 40.3c-.1 7 1.1 13.9 3.4 20.4 2.1 6.1 5.4 11.7 9.6 16.6 4.2 4.7 9.3 8.6 15 11.2 6.1 2.8 12.8 4.4 19.5 4.5 3.8 4.2 7.4 8.1 10.9 11.8 3.3 3.5 6.9 6.7 10.8 9.6 3.6 2.6 7.4 4.8 11.6 6.4 4.2 1.6 8.7 2.4 13.2 2.3 3.4 0 6.7-.2 10.1-.7 2.2-.3 4.3-.8 6.5-1.3V458c-.8.3-1.6.6-2.4.8l-2.7.6c-.9.2-1.9.3-2.8.4s-1.8.1-2.6.1c-2.7 0-5.4-.2-8-.6-2.5-.4-4.9-1.1-7.1-2.1-2.5-1.1-4.8-2.5-6.9-4.2-2.6-2-5-4.3-7.3-6.7 9.9-3.4 18.2-10.1 23.7-18.9zm-23.3-56.3c4.6 6 6.9 14.5 6.9 25.3 0 10.4-2.4 18.6-7.2 24.5-4.8 6-11.3 8.9-19.4 8.8-7.5.2-14.7-3.2-19.3-9.1-4.8-6.1-7.3-14.3-7.3-24.7 0-10.4 2.4-18.6 7.3-24.7 4.9-6.2 11.5-9.4 19.8-9.4 8.3.1 14.6 3.1 19.2 9.3zm121.4 58h-38.9v-85.8h-23.7v105H480v-19.2zm-320-103C85.7 317.7 32.4 295 32 268.3v-.3l.1 86.8v.3c.4 26.7 53.7 49.3 127.9 57.8v-86.8z" />',viewBox:"0 0 512 512"},vh={name:"data-web",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6zm0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.8zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7h89zm-151.1 23-14.5 70.1c-.8 3.9-1.3 7.8-1.5 11.7h-.3c-.3-3.8-.9-7.6-1.7-11.3L229.6 343h-25.3l-19.1 69.6c-1.1 4-1.9 8.1-2.1 12.3h-.4c-.2-4-.6-8-1.4-12l-14.8-70h-25.8l27.6 105h27.3l17.9-67.4c1-3.9 1.6-7.8 1.9-11.8h.3c.1 4 .7 7.9 1.7 11.8l17.4 67.4H261l27.8-105h-23.9zm109.8 85.8h-39.3v-24h34.4v-19.2h-34.4v-23.4h36.9V343h-60.6v105h63v-19.2zm66.8 19.2c11.9 0 21.3-2.8 28.2-8.5 6.9-5.6 10.3-13.3 10.3-22.9.1-6.3-2.3-12.3-6.7-16.8-4.5-4.6-10.4-7.3-17.9-8.3v-.3c5.6-1.5 10.8-4.5 14.7-8.9 3.8-4 5.8-9.4 5.8-14.9 0-7.8-3.2-13.9-9.5-18.2-6.3-4.3-15.3-6.5-27-6.5h-38.3v105h40.4zm-7.9-87.6c11.5 0 17.3 3.9 17.3 11.6.2 3.7-1.4 7.3-4.2 9.8-2.8 2.4-6.6 3.6-11.5 3.5h-10.4v-24.9h8.8zm4.1 42.5c5.5 0 9.7 1.2 12.8 3.6 3 2.4 4.7 6 4.6 9.9.2 4-1.5 7.9-4.6 10.4-3.1 2.5-7.4 3.8-12.9 3.8h-12.8v-27.7h12.9zM96 313.9c-39-11.2-63.7-27.5-64-45.6v-.3l.1 86.8v.3c.3 18.1 24.9 34.3 63.9 45.6v-86.8z" />',viewBox:"0 0 512 512"},dh={name:"group-collection",content:'<path d="M448 352H160v-32h288v32zm0 32H160v32h288v-32zm0-288H160v32h288V96zm0 64H160v32h288v-32zM64 192V96h64l32-32H32v160h128l-32-32H64zm0 224v-96h64l32-32H32v160h128l-32-32H64z" />',viewBox:"0 0 512 512"},fh={name:"parameter-boolean",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm384 288H64V128h384v256zM207 212h-39v114h-32V212H96v-26h111v26zm96.8-37-68.1 163h-27.5l67.9-163h27.7zM416 212h-49v34h45v26h-45v54h-32V186h81v26z" />',viewBox:"0 0 512 512"},mh={name:"parameter-date-time",content:'<path d="M416 202.8V128c0-17.7-14.3-32-32-32H64c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h304c61.9 0 112-50.1 112.1-111.9 0-43.3-25-82.8-64.1-101.3zM64.1 384 64 192h304c-61.9 0-112 50.2-112 112 0 30.1 12.1 58.9 33.6 80H64.1zm303.9 0c-44.2 0-80-35.8-80-80s35.8-80 80-80 80 35.8 80 80-35.8 80-80 80zm48-96v32h-64v-64h32v32h32zm-224 32H96v-96h96v96z" />',viewBox:"0 0 512 512"},yh={name:"parameter-float",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm384 288H64V128h384v256zm-276-55.6c-33.3 0-50-23.4-50-70.2 0-24.3 4.5-42.8 13.5-55.5s22.1-19.1 39.2-19.1c32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5-8.9 12.6-21.6 18.9-38.2 18.9zm1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.1-16.3 19.1-48.8s-6.2-48.9-18.7-48.9zm83.8 121.3c-4.7.1-9.2-1.5-12.7-4.7-3.3-2.9-5.2-7.1-5.1-11.5-.1-4.4 1.8-8.7 5.2-11.5 3.6-3 8.3-4.6 13-4.5 5.3 0 9.6 1.5 12.9 4.5 6.4 5.9 6.7 15.9.8 22.2l-.9.9c-3.3 3.1-7.8 4.6-13.2 4.6zM390 326h-88v-24h29v-87.2l-30 6.4v-25.5l60-12.1V302h29v24z" />',viewBox:"0 0 512 512"},gh={name:"parameter-integer",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm384 288H64V128h384v256zm-262.6-58H96.8v-24.4h29v-87.2L96 220.8v-25l60.6-12.2v118h28.8V326zm59.2-26.2v.6h56.8V326h-92.2v-24l40.1-38.4c8.1-7.7 13.7-14.2 17-19.5 3.2-4.9 4.9-10.7 4.9-16.6 0-12.9-6.9-19.3-20.8-19.3-12 0-23.6 4.8-34.6 14.4v-27.2c12.2-7.9 25.9-11.8 41.2-11.8 14.3 0 25.5 3.6 33.5 10.8 8 7.2 12.1 16.9 12.1 29.1 0 16.3-9.8 33.2-29.4 50.7l-28.6 25.6zm82.1 21.6v-26.9c9.4 6.8 20.3 10.3 32.8 10.3 7.9 0 14-1.7 18.4-5.1 4.4-3.4 6.6-8.1 6.6-14.2 0-6.2-2.7-11.1-8.1-14.5-5.4-3.4-12.9-5.1-22.4-5.1h-12.6v-23.6H353c18.2 0 27.4-6.1 27.4-18.2 0-11.4-7-17.1-21-17.1-9.4 0-18.5 3-27.3 9.1V191c9.8-4.9 21.3-7.4 34.4-7.4 14.3 0 25.5 3.2 33.5 9.7 7.8 6 12.2 15.3 12 25.1 0 18.3-9.3 29.8-27.8 34.4v.5c9.9 1.2 17.7 4.8 23.4 10.8 5.7 5.9 8.8 13.8 8.6 21.9 0 13.1-4.8 23.4-14.4 31.1s-22.8 11.4-39.6 11.4c-14.7-.1-26.4-2.4-35.5-7.1z" />',viewBox:"0 0 512 512"},bh={name:"parameter-string",content:'<path d="M127.3 328.9c13.2 0 23.1-5.6 29.8-16.8h.4v14.4h29.2v-59.8c0-28.5-14.3-42.7-42.8-42.7-6.9.1-13.7.9-20.4 2.5-7.4 1.7-13.3 3.6-17.6 5.9v23.2c10.8-7.1 22.1-10.6 34-10.6s17.8 5.5 17.8 16.4l-27.2 3.6c-23 3-34.5 14.2-34.5 33.6 0 9.2 2.8 16.5 8.3 22s13.2 8.3 23 8.3zm12.2-47.5 18.2-2.3v6.7c0 6.1-1.8 11.2-5.5 15.2-3.6 4-8.8 6.2-14.2 6-4.2 0-7.5-1.1-9.9-3.4-2.4-2.2-3.8-5.4-3.7-8.6 0-7.7 5-12.3 15.1-13.6zm209 33.5c-9.5-9.3-14.3-21.3-14.3-36 0-17 5.1-30.4 15.3-40.2 10.2-9.8 23.8-14.7 40.9-14.7 11.8 0 20.3 1.6 25.6 4.7v26.2c-6.2-4.7-13.8-7.3-21.6-7.2-8.9 0-15.9 2.6-21 7.8-5.2 5.2-7.8 12.3-7.8 21.4 0 8.9 2.5 15.8 7.4 20.9 4.9 5 11.8 7.6 20.4 7.6 7.7 0 15.2-2.4 22.6-7.3v24.8c-7 4-17 6-30.2 6-15.3 0-27.8-4.7-37.3-14zm-104 .5h.4c6.3 9.4 15.6 14.1 27.9 14.1 13.6 0 24.5-5 32.6-15.1 8.1-10.1 12.2-23.5 12.2-40.1 0-15.3-3.5-27.4-10.5-36.3s-16.9-13.3-29.8-13.3c-14.1 0-24.9 5.8-32.5 17.5h-.4V179h-30.9v148h30.9l.1-11.6zm-.5-42.2c0-7.4 2-13.4 6.1-18.1 3.8-4.5 9.5-7.1 15.4-6.9 6.6 0 11.6 2.3 15.2 7 3.5 4.7 5.3 11.1 5.3 19.4 0 10-1.9 17.7-5.8 23.1-3.9 5.4-9.3 8.2-16.4 8.2-5.5.1-10.7-2.2-14.3-6.4-3.7-4.2-5.6-9.6-5.6-16l.1-10.3zM448 96H64c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm0 288H64V128h384v256z" />',viewBox:"0 0 512 512"},xh={name:"toc-section-level",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H96zm320 416H96V64h320v384zm-32-288H192v-32h192v32zm0 64h-96v-32h96v32zm0 64h-96v-32h96v32zm0 64h-96v-32h96v32zm-192-32v-96l64 48-64 48z" />',viewBox:"0 0 512 512"},wh={name:"inherited",content:'<path d="M448 320v128H320V320h30.4L256 244.5 161.6 320H192v128H64V320h46.4l120-96H176V64h160v160h-54.4l120 96H448z" />',viewBox:"0 0 512 512"},_h={name:"file-video",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zM304 304.8v-.8c0-8.8-7.2-16-16-16h-10.1c24.2-3.1 42.8-24.3 41.8-49.6-1-24.8-21.2-45-46-46-27.4-1.1-49.9 20.8-49.9 48 0 24.4 18.2 44.6 41.8 47.6h-70.4c17.2-1.7 30.3-16.9 28.7-34.8-1.4-15.5-14.1-27.9-29.6-28.9-18.7-1.3-34.2 13.5-34.2 31.9 0 16.6 12.7 30.2 28.8 31.8H176c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h111.7c8.4 0 15.6-6.3 16.3-14.6.2-3.1-.3-6.1-1.7-8.7l1.8 1.1 44.9 27.1c1.3.8 2.7 1.2 4.1 1.2 1.3 0 2.7-.3 3.9-1 2.5-1.4 4.1-4.1 4.1-7v-95.8c0-2.9-1.5-5.5-4-6.9s-5.5-1.5-8 0L304 304.8zM193.5 272c-.5.1-1 .1-1.5.1s-1 0-1.5-.1h-.2c-8.6-.8-15.1-8.5-14.3-17.2.6-7.9 7.2-14.2 15.1-14.6 9.2-.5 16.8 6.9 16.8 16 .1 8.1-6.1 15-14.4 15.8zm82.3-.3c-.3 0-.6.1-.9.1-1 .1-2.1.2-3.1.2s-2.1 0-3.1-.2c-.3 0-.6-.1-.9-.1-15.9-2-27.9-15.7-27.9-31.7 0-17.6 14.4-32 32-32s32 14.4 32 32c-.1 16.1-12.1 29.7-28.1 31.7z" />',viewBox:"0 0 512 512"},zh={name:"file-audio",content:'<path d="M218 353.8c-5.5-2.9-12.1-4.5-19-4.5-21 0-38 14.8-38 33.2s17 33.2 38 33.2 38-14.8 38-33.2V256.6l96-22.6v87.8c-5.5-2.9-12.1-4.5-19-4.5-21 0-38 14.8-38 33.2s17 33.2 38 33.2 38-14.8 38-33.2V192.2l-134 31.5v130.1zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Ch={name:"file-image",content:'<path d="M298.7 385.2S272.2 288 213.1 288s-85 128-85 128h256s-11.9-78.7-42.7-78.7-42.7 47.9-42.7 47.9zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zM288 256c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32z" />',viewBox:"0 0 512 512"},kh={name:"file-presentation",content:'<path d="M127.5 214.4c0 9.9 6.1 18.2 14.5 21.2v113.1c0 12.4 9.6 22.4 21.3 22.4H246v11.8l-13.6 14.6c-1.9 2-3 4.8-3 8 0 6.3 4.7 11.3 10.5 11.3 2.8 0 5.5-1.3 7.4-3.3.1-.1.2-.3.4-.4l8.9-9.6 8.9 9.6c.1.1.2.3.4.4 1.9 2 4.5 3.3 7.4 3.3 5.8 0 10.5-5 10.5-11.3 0-3.1-1.2-6-3-8L267 382.8V371h78.8c11.1 0 20.1-9.3 20.9-21h1.3V235.9c9-2.6 15.7-11.3 15.7-21.6 0-12.4-9.5-22.4-21.3-22.4H148.8c-11.8.1-21.3 10.1-21.3 22.5zM299 237h43v89h-43v-89zm-64 26h43v63h-43v-63zm-64 18h43v45h-43v-45zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Mh={name:"file-data",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288zM128 229.3v149.4c0 20.6 19.1 37.3 42.7 37.3h170.6c23.6 0 42.7-16.7 42.7-37.3V229.3c0-20.6-19.1-37.3-42.7-37.3H170.7c-23.6 0-42.7 16.7-42.7 37.3zM247 379h-76v-47h76v47zm18-112h76v47h-76v-47zm0 65h76v47h-76v-47zm-18-19h-76v-47h76v47z" />',viewBox:"0 0 512 512"},Oh={name:"file-disc-image",content:'<path d="M256.1 322.7c3.7 0 7.2-1.1 10.1-3s5.2-4.5 6.7-7.6c1.2-2.5 1.9-5.2 1.9-8.1 0-10.3-8.4-18.7-18.7-18.7-2.8 0-5.4.6-7.7 1.7-3.4 1.6-6.3 4.1-8.3 7.3-1.7 2.8-2.7 6.1-2.7 9.7 0 10.4 8.3 18.7 18.7 18.7zm-52.5-117.8c-19.1 10.1-34.9 25.5-45.4 44.4-9 16.1-14.1 34.7-14.1 54.4 0 61.7 50 111.7 111.7 111.7 20 0 38.8-5.3 55.1-14.5 18.6-10.6 33.9-26.4 43.9-45.4 8.1-15.5 12.7-33.1 12.7-51.8 0-61.7-50-111.7-111.7-111.7-18.9 0-36.7 4.7-52.2 12.9zm89.8 99.2c0 6.1-1.4 11.8-4 16.9l48.7 25.8c-8.3 15.8-20.9 28.9-36.3 37.7l-26.6-48.3c-5.6 3.3-12.1 5.3-19.1 5.3-20.6 0-37.4-16.7-37.4-37.4 0-6.8 1.8-13.2 5-18.7l-49.2-27.1c8.8-15.7 22-28.6 38-37l26.8 49.3c5-2.5 10.7-3.9 16.7-3.9 20.7 0 37.4 16.7 37.4 37.4zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Sh={name:"file-programming",content:'<path d="m236 256-52.6-.2-48.6 48.6.1.1c-4.1 3.9-6.7 9.4-6.7 15.5 0 5.8 2.3 11 6 14.8l49.1 49.1 46.8-.2-59.7-59.7c.2-.9.3-1.8.3-2.8L236 256zm105.2 65.5c.1.9.2 1.9.3 2.8L281.9 384l46.8.2 49.1-49.1c3.7-3.8 6-9.1 6-14.8 0-6.1-2.6-11.6-6.7-15.5l.1-.1-48.6-48.7-52.6.2 65.2 65.3zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Hh={name:"parameters-byte-array",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm384 288H64V128h384v256zm-306.2-55.6c-33.3 0-50-23.4-50-70.2 0-24.3 4.5-42.8 13.5-55.5s22.1-19.1 39.2-19.1c32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5-8.9 12.6-21.6 18.9-38.2 18.9zm1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.1-16.3 19.1-48.8s-6.2-48.9-18.7-48.9zm113.6 121.3c-33.3 0-50-23.4-50-70.2 0-24.3 4.5-42.8 13.5-55.5s22.1-19.1 39.2-19.1c32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5-8.8 12.6-21.6 18.9-38.2 18.9zm1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.2-16.3 19.2-48.8s-6.3-48.8-18.8-48.9zM420 326h-88v-24h29v-87.2l-30 6.4v-25.4l61-12.3V302h28v24z" />',viewBox:"0 0 512 512"},Ph={name:"parameters-unknown",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H64zm384 288H64V128h384v256zm-64-64h-64v-32h64v32zm-96 0h-64v-32h64v32zm-96 0h-64v-32h64v32z" />',viewBox:"0 0 512 512"},Ih={name:"file-error",content:'<path d="M160 320h32V160h-32v160zm16 32c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128l-96-96zm64 416H96V64h224v96h96v288z" />',viewBox:"0 0 512 512"},Ah={name:"files-error",content:'<path d="M64 64h224l-32-32H64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h64v-32H64V64zm208 320c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zM384 96H192c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V192l-96-96zm64 352H192V128h160v96h96v224zm-192-96h32V192h-32v160z" />',viewBox:"0 0 512 512"},Vh={name:"data-rest",content:'<path d="M32 268v.33-.33zm0 .33.12 86.48v.32c.29 18.1 24.9 34.34 63.87 45.56l.01-86.77c-38.99-11.22-63.7-27.48-64-45.59zm192.01-113.1c105.67 0 191.4-27.41 191.93-61.29v-.33C415.94 59.59 330 32 224 32S32.06 59.59 32.07 93.61v.33c.53 33.88 86.27 61.29 191.94 61.29zM32 140.32s0 .01 0 0V140v.32zm384 86.81v-.32l-.12-86.81v.32c-.53 33.88-86.26 61.29-191.93 61.29-105.66 0-191.4-27.41-191.95-61.28l.12 86.48v.32c.53 33.88 86.26 61.29 191.93 61.29S415.46 261 416 227.13zM327 320h89l-.07-52v.32c-.34 21.73-35.73 40.8-88.93 51.68zm-130.74 96.93 19.85 31.05h-27.17l-16.33-27.03c-1.22-2.05-2.39-3.88-3.52-5.49-1.12-1.61-2.26-2.99-3.41-4.14-1.15-1.15-2.34-2.03-3.59-2.64-1.25-.61-2.6-.92-4.06-.92h-6.37v40.21H128V342.95h37.5c25.49 0 38.23 9.52 38.23 28.56 0 3.66-.56 7.04-1.68 10.14-1.12 3.1-2.71 5.9-4.76 8.39s-4.53 4.64-7.43 6.45c-2.91 1.81-6.14 3.22-9.7 4.25v.29c1.56.49 3.08 1.28 4.54 2.38 1.46 1.1 2.88 2.38 4.25 3.85 1.37 1.46 2.67 3.04 3.92 4.72 1.23 1.69 2.37 3.34 3.39 4.95zm-17.43-42.48c0-9.18-5.49-13.77-16.48-13.77h-10.69v29.22h10.25c5.08 0 9.16-1.46 12.23-4.39 3.13-2.98 4.69-6.67 4.69-11.06zm70.75 30.32h34.35v-19.19h-34.35v-23.36h36.91v-19.26h-60.57v105.03h62.99V428.8h-39.33v-24.03zm115.58-6.01c-2.39-2.49-5.26-4.72-8.61-6.7-3.34-1.98-7.12-3.85-11.32-5.6-3.08-1.27-5.84-2.5-8.28-3.7-2.44-1.2-4.52-2.42-6.23-3.66-1.71-1.24-3.03-2.56-3.96-3.96-.93-1.39-1.39-2.97-1.39-4.72 0-1.61.41-3.06 1.25-4.36.83-1.29 2-2.4 3.52-3.33 1.51-.93 3.37-1.65 5.57-2.16 2.2-.51 4.64-.77 7.32-.77 1.95 0 4.02.15 6.19.44s4.36.75 6.56 1.36 4.33 1.38 6.41 2.31c2.07.93 3.99 2 5.75 3.22v-21.9c-3.56-1.37-7.46-2.38-11.68-3.04-4.22-.66-9.07-.99-14.54-.99-5.57 0-10.84.6-15.82 1.79s-9.36 3.06-13.15 5.6c-3.78 2.54-6.77 5.77-8.97 9.7-2.2 3.93-3.3 8.63-3.3 14.1 0 6.98 2.01 12.94 6.04 17.87 4.03 4.93 10.14 9.11 18.35 12.52 3.22 1.32 6.23 2.61 9.01 3.88 2.78 1.27 5.19 2.59 7.21 3.96 2.03 1.37 3.63 2.86 4.8 4.47s1.76 3.44 1.76 5.49c0 1.51-.37 2.92-1.1 4.21-.73 1.29-1.84 2.42-3.33 3.37-1.49.95-3.34 1.7-5.57 2.23-2.22.54-4.82.81-7.8.81-5.08 0-10.11-.89-15.09-2.67s-9.59-4.46-13.84-8.02v23.44c3.81 1.95 8.31 3.42 13.51 4.39s10.68 1.46 16.44 1.46c5.61 0 10.95-.54 16-1.61 5.05-1.07 9.49-2.84 13.29-5.31s6.82-5.69 9.05-9.67c2.22-3.98 3.33-8.9 3.33-14.76 0-4.25-.63-7.97-1.9-11.17a26.091 26.091 0 0 0-5.48-8.52zm14.94-55.81v19.26h29.81v85.77h23.73v-85.77h29.96v-19.26h-83.5z" />',viewBox:"0 0 512 512"},Eh={name:"file-typescript",content:'<path d="M64 128h192v48h-72v208h-48V176H64v-48zm316.6 107.6c-35-12.6-50.1-21.6-50.1-40.6 0-14.6 12.9-29.9 43.3-29.9 24.6 0 42.9 7.1 52.3 11.8l11.5-36.6c-13.6-6.5-34.4-12.3-62.8-12.3-56.8 0-92.7 30.6-92.7 71.3 0 35.6 27.6 57.6 70.9 72.1 33.1 11.4 46.4 22.4 46.4 41.2 0 20.3-17.1 33.9-47.6 33.9-24.4 0-47.9-7.4-63.3-15.8l-10.6 37.6c14.3 8.3 43.1 15.8 70.8 15.8 67.6 0 99.3-34.6 99.3-74.6 0-35.8-21.9-57.4-67.4-73.9z" />',viewBox:"0 0 512 512"},Th={name:"table-position-start",content:'<path d="M480 320v32H32v-32h448zM32 416h448v-32H32v32zm192-160H32V32h224v224h-32zm-64-128h64V64h-64v64zm-32 32H64v64h64v-64zm0-96H64v64h64V64zm32 160h64v-64h-64v64zM32 480h320v-32H32v32z" />',viewBox:"0 0 512 512"},Bh={name:"table-position-center",content:'<path d="M352 256V32H128v224h224zM256 64h64v64h-64V64zm-32 160h-64v-64h64v64zm0-96h-64V64h64v64zm32 32h64v64h-64v-64zM32 448h320v32H32v-32zm448-128v32H32v-32h448zM32 384h448v32H32v-32z" />',viewBox:"0 0 512 512"},jh={name:"table-position-end",content:'<path d="M32 384h448v32H32v-32zm0 96h320v-32H32v32zM480 32v224H256V32h224zM352 160h-64v64h64v-64zm0-96h-64v64h64V64zm96 96h-64v64h64v-64zm0-96h-64v64h64V64zM32 352h448v-32H32v32z" />',viewBox:"0 0 512 512"},Lh={name:"list-roman-upper",content:'<path d="M32 32h32v128H32V32zm0 288h32V192H32v128zm64 0h32V192H96v128zM32 480h32V352H32v128zm64 0h32V352H96v128zm64 0h32V352h-32v128zM128 96h352v32H128V96zm64 160h288v32H192v-32zm64 160h224v32H256v-32zM96 152c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z" />',viewBox:"0 0 512 512"},Rh={name:"list-roman-lower",content:'<path d="M32 64h16v96H32V64zm0 256h16v-96H32v96zm32 0h16v-96H64v96zM32 480h16v-96H32v96zm32 0h16v-96H64v96zm32 0h16v-96H96v96zM48 40c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zM48 200c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zM48 360c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zM128 96h352v32H128V96zm32 160h320v32H160v-32zm32 160h288v32H192v-32z" />',viewBox:"0 0 512 512"},Dh={name:"import",content:'<path d="M96 480c-17.7 0-32-14.3-32-31.9V192c0-17.7 14.3-32 32-32h96.3v30.9H96.4V448h319.1V190.9h-95.9V160H416c17.7 0 32 14.3 32 31.9V448c0 17.7-14.3 32-31.9 32H96zm159.5-162 96.5-94h-64.5V32h-64v192H159l96.5 94z" />',viewBox:"0 0 512 512"},Nh={name:"export",content:'<path d="M96 480c-4.3 0-8.5-.8-12.5-2.5-3.8-1.6-7.3-3.9-10.2-6.9-2.9-2.9-5.3-6.4-6.9-10.2-1.7-3.9-2.5-8.2-2.5-12.5V192c0-4.3.8-8.5 2.5-12.5 1.6-3.8 3.9-7.3 6.9-10.2 2.9-2.9 6.4-5.3 10.2-6.9 3.9-1.7 8.2-2.5 12.5-2.5h96.3v31.9H96.4v256.3h319.1V191.9h-95.9V160H416c17.7 0 32 14.3 32 31.9V448c0 17.7-14.3 32-31.9 32H96zm192-160V126h64.5L256 32l-96.5 94H224v194h64z" />',viewBox:"0 0 512 512"},Fh={name:"graph",content:'<path d="M64 448h416v32H32V32h32v416zm128-192-96 96v64h384V160L288 320l-96-64zM416 64l14.2 14.2L288 192l-96-64-96 96v64l96-96 96 64 174.5-145.4L480 128V64h-64z" />',viewBox:"0 0 512 512"},Uh={name:"chart-column-clustered",content:'<path d="M320 96v352h-32V288H128v160H64V32H32v448h448V96H320zm-64 352h-96V320h96v128z" />',viewBox:"0 0 512 512"},Wh={name:"chart-column-stacked",content:'<path d="M320 192v256h-32V96H128v352H64V32H32v448h448V192H320zM160 448V256h96v192h-96zm192 0v-96h96v96h-96z" />',viewBox:"0 0 512 512"},Gh={name:"chart-column-stacked100",content:'<path d="M320 32v416h-32V32H128v416H64V32H32v448h448V32H320zM160 448V192h96v256h-96zm192 0V288h96v160h-96z" />',viewBox:"0 0 512 512"},Kh={name:"chart-column-range",content:'<path d="M480 448v32H32V32h32v416h416zM256 128h-96v224h96V128m32-32v288H128V96h160zm192-64H320v224h160V32z" />',viewBox:"0 0 512 512"},Xh={name:"chart-bar-clustered",content:'<path d="M64 448v-64h160V224H64v-32h352V32H32v448h448v-32H64zm128-192v96H64v-96h128z" />',viewBox:"0 0 512 512"},Zh={name:"chart-bar-stacked",content:'<path d="M64 448v-64h352V224H64v-32h256V32H32v448h448v-32H64zm0-384h96v96H64V64zm192 192v96H64v-96h192z" />',viewBox:"0 0 512 512"},Yh={name:"chart-bar-stacked100",content:'<path d="M480 192V32H32v448h448v-32H64v-64h416V224H64v-32h416zm-160 64v96H64v-96h256zM64 64h160v96H64V64z" />',viewBox:"0 0 512 512"},qh={name:"chart-bar-range",content:'<path d="M480 448v32H32V32h32v416h416zm-96-192H160v96h224v-96m32-32v160H128V224h288zm64-192H256v160h224V32z" />',viewBox:"0 0 512 512"},Qh={name:"chart-area-clustered",content:'<path d="m405.5 200.3-88.2-88.2-91.2 114L192 192l-37.6 45.1L64 146.8V32H32v448h448V96l-74.5 104.3zM320 160l66.7 66.7L320 320l-71.1-71.1L320 160zM64 192l69.8 69.8L64 345.6V192z" />',viewBox:"0 0 512 512"},Jh={name:"chart-area-stacked",content:'<path d="m320 165.3-128-64-128 128V32H32v448h448V32L320 165.3zm128 7.5L320 352 192 224 64 377.6v-103l134.3-134.3 126.1 63 123.6-103v72.5z" />',viewBox:"0 0 512 512"},$h={name:"chart-area-stacked100",content:'<path d="M32 32v448h448V32H32zm416 108.8L320 320 192 192 64 345.6V64h384v76.8z" />',viewBox:"0 0 512 512"},tp={name:"chart-area-range",content:'<path d="M64 416v32h416v32H32V32h32v224l128-128 128 64L480 32v192L320 384l-127-64-129 96z" />',viewBox:"0 0 512 512"},ep={name:"chart-line",content:'<path d="M64 448h416v32H32V32h32v416zm152.4-190.4L96 416v-51.2l97.2-129.6 41.2-33-27.3-34.1L96 224v-38l119.9-58.1 43.5 54.3 109-87.2 55.9 85.7L480 114v47l-38 46.7 38 58.3.5 53.3-58.5-87-82.5 101.3-85.1-106.4-38 30.4zm63-50.4 60.1 75.2 64.3-77.1-42.7-63.5-81.7 65.4z" />',viewBox:"0 0 512 512"},op={name:"chart-line-stacked",content:'<path d="M480 448v32H32V32h32v416h416zM224 292l128 64 128-96v-36l-128 96-128-64-128 96v36l128-96zm0-160 128 92 128-60v-36l-128 60-128-92-128 64v36l128-64z" />',viewBox:"0 0 512 512"},np={name:"chart-line-stacked100",content:'<path d="M480 448v32H32V32h32v416h416zM224 228l128 64 128-96v-36l-128 96-128-64-128 96v36l128-96zM480 32H96v32h384V32z" />',viewBox:"0 0 512 512"},rp={name:"chart-line-markers",content:'<path d="M480 448v32H0V32h32v416h448zm0-96c.1 17.7-14.2 32-31.9 32.1-17.7.1-32-14.2-32.1-31.9 0-1.3.1-2.7.2-4l-83.7-62.8c-8 3.4-17.1 3.4-25.2 0l-83.7 62.8c2.1 17.5-10.4 33.5-27.9 35.6s-33.5-10.4-35.6-27.9c-.7-6.2.3-12.4 3.1-18l-49-73.6-22.7 39.6c8.9 15.3 3.7 34.9-11.5 43.8s-34.9 3.7-43.8-11.5-3.7-34.9 11.5-43.8c4.9-2.8 10.4-4.3 16-4.4l30.6-53.5-28.4-42.6c-.7 0-1.4.1-2.1.1-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32c0 4.9-1.1 9.8-3.3 14.2l19.5 29.3 52.2-91.3c-8.9-15.3-3.8-34.9 11.5-43.8s34.9-3.8 43.8 11.5c2.5 4.4 4 9.2 4.3 14.3l78.4 39.2c14.7-9.7 34.6-5.7 44.3 9 .3.5.7 1.1 1 1.6h72.6c8.8-15.3 28.4-20.5 43.7-11.7 15.3 8.8 20.5 28.4 11.7 43.7s-28.4 20.5-43.7 11.7c-4.9-2.8-8.9-6.8-11.7-11.7h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-9.3-5.4-15.3-15.1-15.9-25.8l-78.4-39.2c-5.2 3.4-11.3 5.3-17.5 5.3l-60 105.2 57.9 86.9c.7 0 1.4-.1 2.1-.1 4.3 0 8.6.9 12.6 2.6l83.7-62.8c-2.2-17.5 10.3-33.5 27.8-35.7 17.5-2.2 33.5 10.3 35.7 27.8.3 2.6.3 5.2 0 7.8l83.7 62.8c16.2-7 35.1.6 42 16.8 1.6 4.1 2.5 8.4 2.5 12.7zm-48-192c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16zm-128 0c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16zM176 96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16zm-96 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm0 160c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 32c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16z" />',viewBox:"0 0 512 512"},ip={name:"chart-line-stacked-markers",content:'<path d="M480 448v32H0V32h32v416h448zm0-320c0 17.7-14.3 32-32 32-6.9 0-13.7-2.2-19.2-6.4L352 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.5.3-5 .9-7.4l-81.1-60.8c-11.1 6.3-24.8 5.4-35-2.2L96 160c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32c6.9 0 13.7 2.2 19.2 6.4L160 96c0-17.7 14.3-32 32-32s32 14.3 32 32c0 2.5-.3 5-.9 7.4l81.1 60.8c11.1-6.3 24.8-5.4 35 2.2L416 128c0-17.7 14.3-32 32-32s32 14.3 32 32zM80 160c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm16 128c0 17.7-14.3 32-32 32-5.5 0-11-1.4-15.8-4.2l-81.1 60.8c4.1 17.2-6.6 34.4-23.8 38.5-17.2 4.1-34.4-6.6-38.5-23.8-.6-2.4-.9-4.9-.9-7.4l-76.8-38.4c-10.2 7.6-23.9 8.5-35 2.2L95 376.5c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8 6.6-34.4 23.8-38.5c7.9-1.9 16.1-.7 23.1 3.3l81.1-60.8c-4.1-17.2 6.6-34.4 23.8-38.5 17.2-4.1 34.4 6.6 38.5 23.8.6 2.4.9 4.9.9 7.4l76.8 38.4c10.2-7.6 23.9-8.5 35-2.2l81.1-60.8c-4.1-17.2 6.5-34.5 23.7-38.6 17.2-4.1 34.5 6.5 38.6 23.7.6 2.5.9 5.1.9 7.6zM80 384c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16z" />',viewBox:"0 0 512 512"},ap={name:"chart-line-stacked100-markers",content:'<path d="M480 448v32H0V32h32v416h448zm0-192c0 17.7-14.3 32-32 32-5.5 0-11-1.4-15.8-4.2l-81.1 60.8c4.1 17.2-6.6 34.4-23.8 38.5-17.2 4.1-34.4-6.6-38.5-23.8-.6-2.4-.9-4.9-.9-7.4l-76.8-38.4c-10.2 7.6-23.9 8.5-35 2.2L95 376.5c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8 6.6-34.4 23.8-38.5c7.9-1.9 16.1-.7 23.1 3.3l81.1-60.8c-4.1-17.2 6.6-34.4 23.8-38.5 17.2-4.1 34.4 6.6 38.5 23.8.6 2.4.9 4.9.9 7.4l76.8 38.4c10.2-7.6 23.9-8.5 35-2.2l81.1-60.8c-4.1-17.2 6.5-34.5 23.7-38.6 17.2-4.1 34.5 6.5 38.6 23.7.6 2.5.9 5.1.9 7.6zM80 384c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm16-192c0 17.7-14.3 32-32 32-11.4 0-22-6.1-27.7-16h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-4.9-2.8-8.9-6.8-11.7-11.7h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-4.9-2.8-8.9-6.8-11.7-11.7H91.7C82.9 95.3 63.3 100.5 48 91.7S27.4 63.3 36.3 48 64.7 27.5 80 36.3c4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 9.9 5.7 16 16.3 16 27.7zM80 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16z" />',viewBox:"0 0 512 512"},sp={name:"chart-pie",content:'<path d="M473 310.3c.9-2.1 1.4-4.2 1.8-6.3l.1-.5c.5-2.1.9-4.1 1.3-6.2v-.2c.8-4.4 1.5-8.8 1.8-13.3v-.4c.5-2 .7-3.9.9-5.9l.1-1.7c.1-1.6.3-3.1.4-4.7 0-.7.1-1.4.1-2 .1-1.5.2-3.1.2-4.6 0-.6 0-1.3.1-1.9.1-2.2.1-4.3.1-6.5 0-31.8-6.7-63.2-19.8-92.2-1.5-3.3-3.1-6.6-4.7-9.8-4.1-8-8.7-15.8-13.8-23.3-5-7.4-10.5-14.6-16.4-21.3-1.2-1.3-2.4-2.7-3.6-4-2.4-2.7-4.9-5.3-7.4-7.8s-5.1-5-7.8-7.4c-2.7-2.4-5.4-4.7-8.1-7-4.1-3.4-8.4-6.7-12.8-9.8-20.7-14.8-43.8-25.9-68.3-32.9-5.3-1.5-10.7-2.8-16.2-4-3.6-.7-7.3-1.4-11-2s-7.4-1-11.2-1.3c-5.6-.6-11.3-.9-17.1-1.1-1.9 0-3.9-.1-5.8-.1C132.3 32 32 132.3 32 256s100.3 224 224 224c105 0 193.1-72.2 217-169.7zm-81.2 81.5c-74.4 75.6-195.9 76.6-271.5 2.2S43.7 198 118 122.5l2.2-2.2c36-36.2 84.9-56.4 135.8-56.3v192l186.3 46.6c-8.4 33.8-25.9 64.6-50.5 89.2z" />',viewBox:"0 0 512 512"},cp={name:"chart-doughnut",content:'<path d="M473 310.3c.9-2.1 1.4-4.2 1.8-6.3l.1-.5c.5-2.1.9-4.1 1.3-6.2v-.3c.8-4.4 1.5-8.8 1.8-13.3v-.4c.5-2 .7-3.9.9-5.9l.1-1.7c.1-1.6.3-3.1.4-4.7 0-.7.1-1.4.1-2 .1-1.5.2-3.1.2-4.6 0-.6 0-1.3.1-1.9.1-2.2.1-4.3.1-6.5 0-31.8-6.7-63.2-19.8-92.2-1.5-3.3-3.1-6.6-4.7-9.8-4.1-8-8.7-15.8-13.8-23.3-5-7.4-10.5-14.6-16.4-21.3-1.2-1.3-2.4-2.7-3.6-4-2.4-2.7-4.9-5.3-7.4-7.8s-5.1-5-7.8-7.4c-2.7-2.4-5.4-4.7-8.1-7-4.1-3.4-8.4-6.7-12.8-9.8-20.7-14.8-43.8-25.9-68.3-32.9-5.3-1.5-10.7-2.8-16.2-4-3.6-.7-7.3-1.4-11-2s-7.4-1-11.2-1.3c-5.6-.6-11.3-.9-17.1-1.1-1.9 0-3.9-.1-5.8-.1C132.3 32 32 132.3 32 256s100.3 224 224 224c105 0 193.1-72.2 217-169.7zM320 256c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64zm71.8 135.8c-74.4 75.6-195.9 76.6-271.5 2.2S43.7 198 118 122.4l2.2-2.2c36-36.1 84.9-56.3 135.8-56.2v96c-53 0-96 43-96 96s43 96 96 96c44 0 82.4-30 93.1-72.7l93.2 23.3c-8.4 33.8-25.9 64.6-50.5 89.2zm-39.8-133v.8-.8zm0 2.8v.9-.9zm-.4 2.9-.1.7.1-.7zm-.6 3.2v.2-.2zm-1 5.9v.1-.1zm0 2.8v.2-.2z" />',viewBox:"0 0 512 512"},lp={name:"chart-scatter",content:'<path d="M480 448v32H32V32h32v416h416zM160 96c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm112 192c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm112-128c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm112 192c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16z" />',viewBox:"0 0 512 512"},hp={name:"chart-scatter-smooth-lines-markers",content:'<path d="M480 448v32H32V32h32v416h416zm0-384c0 17.7-14.3 32-32 32-15.6 0-28.9-11.2-31.5-26.5-9.2-1.3-22-1.8-39-.8C342.5 71 305.1 79.4 275 92c-19.1 7.9-47.9 23-60.7 45.1 12.7 12.3 13 32.6.6 45.3l-1.1 1.1c9.1 13.1 28.9 18.6 61.1 25.1 21 4.2 42.8 8.5 60.2 18.9 12.7 7.6 21.7 17.8 27 30.3 16.8 5.6 25.8 23.7 20.2 40.5-3.2 9.5-10.6 17-20.1 20.2-11.2 29.5-39.2 54.6-81.6 72.2-29.7 12.1-61.2 19.2-93.2 21.1-4 .2-7.8.3-11.4.3-9.6.1-19.3-.7-28.8-2.5-14.1 10.6-34.2 7.7-44.8-6.4-10.6-14.1-7.7-34.2 6.4-44.8s34.2-7.7 44.8 6.4c3.2 4.2 5.2 9.1 6 14.3 8.7 1 17.5 1.2 26.2.7 28.3-1.6 56.2-7.9 82.5-18.6 19.7-8.2 49.8-24.3 62-49.6-13-12-13.8-32.2-1.8-45.2.4-.5.8-.9 1.3-1.3-9.1-13.2-28.8-18.7-61.1-25.2-21-4.2-42.8-8.5-60.2-18.9-12.8-7.7-21.9-18-27.2-30.7-16.7-5.9-25.4-24.2-19.5-40.9 3.3-9.4 10.9-16.7 20.4-19.8 5-11 12-21 20.6-29.5 14.6-14.5 34.7-27.2 59.8-37.6C296 48.6 337 39.2 375.4 36.8c22.9-1.5 40-.4 52.8 2.1 13.9-11 34-8.6 44.9 5.3 4.5 5.6 6.9 12.6 6.9 19.8zm-272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm-64 224c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm192-96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16zM464 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16z" />',viewBox:"0 0 512 512"},pp={name:"chart-scatter-smooth-lines",content:'<path d="M480 448v32H32V32h32v416h416zm-144-87.8c21.1-19.9 31.8-44.5 31.8-73.1 0-27.3-11-47.6-32.6-60.6-17.3-10.3-38.8-14.5-59.6-18.6-46.2-9-66.5-16.3-66.8-47.9-.4-41.2 71.8-65.5 114.8-76.4C385.4 68.1 448.4 64 449 64l-2-32c-2.7.2-66.2 4.3-130.8 20.5-38.7 9.7-69.8 21.8-92.4 36-31.4 19.8-47.3 43.9-47 71.7.2 27.2 11.3 47.6 32.9 60.5 17.3 10.3 38.9 14.5 59.7 18.6 19 3.7 36.9 7.2 49.3 14.6 11.9 7.1 17 17.1 17 33.2 0 19.7-7.1 36-21.7 49.7-24.1 22.8-68.9 38.2-129.3 44.6-29.2 3-58.5 3.9-87.8 2.6l-2 32c1.7.1 12.1.7 28 .7 51.4 0 159.8-6.4 213.1-56.5z" />',viewBox:"0 0 512 512"},up={name:"chart-scatter-straight-lines-markers",content:'<path d="M480 448v32H32V32h32v416h416zm0-384c0 17.7-14.3 32-32 32-7.4 0-14.6-2.6-20.3-7.3L224 165.1l116.4 93.1c16.5-6.4 35 1.7 41.4 18.2s-1.7 35-18.2 41.4c-10.3 4-22 2.4-30.8-4.2l-173.1 74.2c-2.1 17.5-18 30.1-35.6 28s-30.1-18-28-35.6c2.1-17.5 18-30.1 35.6-28 5.6.7 10.9 2.8 15.4 6.2l173.1-74.2c0-.4.1-.7.1-1l-116.7-93.4c-16.5 6.4-35-1.7-41.4-18.2s1.7-35 18.2-41.4c10.8-4.2 23-2.3 32 5.1l204.1-76.5c2.9-17.4 19.4-29.2 36.8-26.3C468.7 35.1 480 48.4 480 64zm-272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm-64 224c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16zm192-96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16zM464 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16z" />',viewBox:"0 0 512 512"},vp={name:"chart-scatter-straight-lines",content:'<path d="M480 448v32H32V32h32v416h416zm-98.5-156.9-158.8-127L448 64V32L161.3 156l161.2 128.9L128 384v32l253.5-124.9z" />',viewBox:"0 0 512 512"},dp={name:"chart-bubble",content:'<path d="M480 448v32H32V32h32v416h416zM192 256c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64m0-32c53 0 96 43 96 96s-43 96-96 96-96-43-96-96 43-96 96-96zm224 96c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m0-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM368 96c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zM176 64c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" />',viewBox:"0 0 512 512"},fp={name:"chart-candlestick",content:'<path d="M480 448v32H32V32h32v416h416zm-192-96h-64v64h-32v-64h-64V96h64V32h32v64h64v256zm-32-224h-96v192h96V128zm224 64h-64V64h-32v128h-64v128h64v64h32v-64h64V192z" />',viewBox:"0 0 512 512"},mp={name:"chart-ohlc",content:'<path d="M480 448v32H32V32h32v416h416zM224 320V96h-32v32h-64v32h64v256h32v-64h64v-32h-64zM416 96V32h-32v160h-64v32h64v96h32V128h64V96h-64z" />',viewBox:"0 0 512 512"},yp={name:"chart-radar",content:'<path d="M272 32h-32v44L80.7 195.5l-41.1-10-7.6 31.1 42.3 10.3 81 148.5-62.7 86.3 25.9 18.8 67.2-92.5L344 412.3l49.5 68.2 25.9-18.8-46.8-64.4 40.8-163.1 65.8-15.3-7.3-31.2-74.9 17.4L272 80V32zm-32 202.2-119-28.9L240 116v118.2zm32 0v-109l88.4 88.4-88.4 20.6zm-95.9 112.5-59.8-109.6 118.5 28.8-58.7 80.8zm172 17.3-71-97.7 101.3-23.6L348.1 364zm-30.6 12-110.6-17 49.1-67.6 61.5 84.6z" />',viewBox:"0 0 512 512"},gp={name:"chart-radar-markers",content:'<path d="m472 187.7-51.2 11.9c-9.4-8-22.5-9.9-33.8-4.8L288.1 96c0-11.5-6.2-22.1-16.1-27.8V32h-32v36.4c-7.1 4.1-12.3 10.8-14.6 18.6L96.1 184c-8.6 0-16.7 3.4-22.8 9.5l-32.8-8-7.5 31.1 32.3 7.8c2.7 9.9 10 17.8 19.6 21.5l61 111.8c-3 8.9-2 18.7 2.9 26.7l-56.1 77.3 25.9 18.8L177 400c8.5-.2 16.5-3.8 22.3-10l122 18.8c3.9 13.8 16.5 23.2 30.8 23.2 1.9 0 3.9-.2 5.8-.5l35.6 49 25.9-18.8-37.1-51.1c3.7-10.4 1.7-22-5.2-30.6l31.4-125.2c11.8-3.2 20.8-12.9 23.1-24.9l47.7-11.1-7.3-31.1zm-111.4 25.9L272 234.2V125.1l88.6 88.5zM256 80c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm-21.1 39.9c1.6 1.4 3.3 2.6 5.1 3.7V234l-113.3-27.6c-.4-1.4-1-2.8-1.6-4.1l109.8-82.4zM96 232c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm80 152c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm7.2-47.2c-2.4-.5-4.8-.8-7.2-.8-1.8 0-3.7.2-5.5.5l-52.9-96.9c.7-.6 1.3-1.2 1.9-1.9l115.3 28-51.6 71.1zm23.6 22 49.1-67.6 61.5 84.6-110.6-17zM352 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm-3.9-52.3L277 265.9l97.4-22.6c.9 1.2 1.9 2.4 3 3.5l-29.3 116.9zM400 240c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" />',viewBox:"0 0 512 512"},bp={name:"chart-radar-filled",content:'<path d="m354.4 372.1 65.1 89.6-25.9 18.8-75-103.2-109.2-21.8-90.8 125-25.9-18.8 90-123.8-67.3-101L32 216.6l7.5-31.1 65.8 16L240 107.2V32h32v80l99.2 99.2L472 187.7l7.3 31.2-98.8 23-26.1 130.2z" />',viewBox:"0 0 512 512"},xp={name:"chart-rose",content:'<path d="M226 251.4 44.3 329.3c-23.8-68.9-12.6-145.1 30-204.3L226 251.4zm-82.1-109.5L240 222V96.8c-36.2 3.6-70.1 19.6-96.1 45.1zm231.5 160.2L279 278l27.3 95.7c31.8-13.6 56.7-39.4 69.1-71.6zM96 353.4c37.3 69.1 115 106.1 192.2 91.4L244 290 96 353.4zM272 32v211.4l204.6 51.1c2.3-12.9 3.4-26 3.4-39.1C480 137.1 388.2 40.2 272 32z" />',viewBox:"0 0 512 512"},wp={name:"chart-choropleth",content:'<path d="M448 64v384H64V64h384m32-32H32v448h448V32zm-96 256v13.3l-64 64v37.5l13.3 13.3H416V264.6L384 288zm-50.7-160 64 64-32 32 18.8 23.4 32-21.3V96H288v18.8l13.3 13.3h32zM224 192l32 32-23.7 23.7L352 276v-20l-32-32 32-32-32-32h-32l-32-32V96h-32l-64 64 32 32h32zm0 86-32 10-32 32 32 32v32l-32 32h128v-64l50.4-50.4L224 278zm-29.4-37.8 16.2-16.2h-32l-64-64 64-64H96v167.5l98.6-23.3zM114.8 320l37.6-37.6L96 296.5V416h32v-13.3l32-32v-5.5L114.8 320z" />',viewBox:"0 0 512 512"}},1759:(t,e,o)=>{o.r(e),o.d(e,{ActionSheet:()=>Bn,ActionSheetContent:()=>Vn,ActionSheetFooter:()=>In,ActionSheetHeader:()=>Hn,ActionSheetItem:()=>On,AppBar:()=>Bo,AppBarSection:()=>Lo,AppBarSpacer:()=>Ro,Avatar:()=>io,BottomNavigation:()=>on,BottomNavigationItem:()=>tn,Breadcrumb:()=>zn,BreadcrumbDelimiter:()=>mn,BreadcrumbLink:()=>gn,BreadcrumbListItem:()=>dn,BreadcrumbOrderedList:()=>xn,Card:()=>Ze,CardActions:()=>$e,CardBody:()=>Qe,CardFooter:()=>no,CardHeader:()=>Ye,CardImage:()=>eo,CardSubtitle:()=>oo,CardTitle:()=>qe,ContextMenu:()=>Zn,Drawer:()=>mo,DrawerContent:()=>yo,DrawerItem:()=>lo,DrawerNavigation:()=>vo,ExpansionPanel:()=>qn,ExpansionPanelContent:()=>Jn,GridLayout:()=>hn,GridLayoutItem:()=>vn,Menu:()=>je,MenuItem:()=>be,MenuItemArrow:()=>Z,MenuItemInternalsList:()=>J,MenuItemLink:()=>A,PanelBar:()=>me,PanelBarItem:()=>$t,PanelBarUtils:()=>le,Splitter:()=>Ke,SplitterBar:()=>ot,SplitterPane:()=>Re,StackLayout:()=>sn,Step:()=>Mo,Stepper:()=>Eo,TabStrip:()=>Gt,TabStripContent:()=>Dt,TabStripNavigation:()=>bt,TabStripNavigationItem:()=>it,TabStripTab:()=>Xt,TileLayout:()=>Qo,Timeline:()=>Kn,addYearsFlags:()=>Dn,contentDisplayName:()=>An,downArrowName:()=>G,flatChildren:()=>se,flatVisibleChildren:()=>ce,flatVisibleItems:()=>ae,footerDisplayName:()=>Pn,getFirstId:()=>ne,getInitialState:()=>re,headerDisplayName:()=>Sn,isArrayEqual:()=>ue,isPresent:()=>he,leftArrowName:()=>X,renderChildren:()=>oe,rightArrowName:()=>K,sortEventList:()=>Rn});var n=o(3899),r=o(3769),i=o(8130),a=o(8047),s=o(1754),c="",l="0",h="_";function p(t,e){if(y(t))return e[Number(t)];var o=e[Number(u(t))];return o.items?p(function(t){if(m(t))return t;var e=t.indexOf(h);return t.substring(e+1)}(t),o.items):void 0}function u(t){return m(t)?t:t.split(h)[0]}function v(t){return d("0",t)}function d(t,e){return e?e+h+t:t}function f(t){var e=t.lastIndexOf(h);return e<0?c:t.substring(0,e)}function m(t){return t===c||t.indexOf(h)<0}function y(t){return t!==c&&t.indexOf(h)<0}function g(t){var e=t.lastIndexOf(h);return e<0?t:t.substring(e+1)}function b(t,e,o){return y(e)?t?Number(e)<o-1?(Number(e)+1).toString():"0":Number(e)>0?(Number(e)-1).toString():(o-1).toString():e}var x={vertical:"top",horizontal:"left"},w={vertical:"top",horizontal:"right"},_={vertical:"flip",horizontal:"fit"},z={vertical:"fit",horizontal:"flip"},C={downward:{anchorAlign:{vertical:"bottom",horizontal:"right"},popupAlign:w,collision:_},leftward:{anchorAlign:{vertical:"top",horizontal:"left"},popupAlign:w,collision:z}},k={downward:{anchorAlign:{vertical:"bottom",horizontal:"left"},popupAlign:x,collision:_},rightward:{anchorAlign:{vertical:"top",horizontal:"right"},popupAlign:x,collision:z}};function M(t,e,o){return y(t)?e?o?"leftward":"rightward":"downward":o?"leftward":"rightward"}function O(t){return t?"rtl":"ltr"}function S(t,e){return"".concat(t,"_").concat(e)}var H,P=o(189),I=(H=function(t,e){return H=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},H(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}H(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),A=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return I(e,t),e.prototype.render=function(){return this.props.url?n.createElement("a",{className:this.getMenuItemClassName(),role:"presentation",href:this.props.url,tabIndex:-1},this.props.children):n.createElement("span",{id:this.props.id,className:(0,a.A)(this.getMenuItemClassName(),this.props.className),style:this.props.style,role:"presentation"},this.props.children)},e.prototype.getMenuItemClassName=function(){return(0,a.A)("k-link","k-menu-link",{"k-active":this.props.opened})},e.propTypes={opened:P.bool,url:P.string},e}(n.Component);const V={name:"caret-alt-up",content:'<path d="m256 160 128 192H128l128-192z" />',viewBox:"0 0 512 512"},E={name:"caret-alt-right",content:'<path d="M352 256 160 384V128l192 128z" />',viewBox:"0 0 512 512"},T={name:"caret-alt-down",content:'<path d="M256 352 128 160h256L256 352z" />',viewBox:"0 0 512 512"},B={name:"caret-alt-left",content:'<path d="m160 256 192-128v256L160 256z" />',viewBox:"0 0 512 512"},j={name:"chevron-up",content:'<path d="m129.941 353.941 126.06-126.06 126.061 126.06L416 320 256.001 160 96 320l33.941 33.941z" />',viewBox:"0 0 512 512"},L={name:"chevron-right",content:'<path d="m158.059 129.941 126.06 126.06-126.06 126.061L192 416l160-159.999L192 96l-33.941 33.941z" />',viewBox:"0 0 512 512"},R={name:"chevron-down",content:'<path d="m382.059 158.059-126.06 126.06-126.061-126.06L96 192l159.999 160L416 192l-33.941-33.941z" />',viewBox:"0 0 512 512"},D={name:"chevron-left",content:'<path d="m353.941 382.059-126.06-126.06 126.06-126.061L320 96 160 255.999 320 416l33.941-33.941z" />',viewBox:"0 0 512 512"},N={name:"check-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32zm0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192zm-32-154-83-83-45 45 128 128 176-176-45-45-131 131z" />',viewBox:"0 0 512 512"},F={name:"exclamation-circle",content:'<path d="M224 128h64v160h-64V128zm0 256h64v-64h-64v64zm256-128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224zm-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192z" />',viewBox:"0 0 512 512"};var U=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),W=function(){return W=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},W.apply(this,arguments)},G="caret-alt-down",K="caret-alt-right",X="caret-alt-left",Z=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return U(e,t),e.prototype.render=function(){return n.createElement(i.a,W({"aria-hidden":!0},this.getIcon()))},e.prototype.getIcon=function(){switch(M(this.props.itemId,!0===this.props.verticalMenu,"rtl"===this.props.dir)){case"downward":return{name:G,icon:T};case"rightward":return{name:K,icon:E};case"leftward":return{name:X,icon:B};default:return{}}},e.propTypes={itemId:P.string,dir:P.string,verticalMenu:P.bool},e}(n.Component),Y=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),q=function(t){function e(e){var o=t.call(this,e)||this;return o.isFirstRender=!0,o.onMouseOver=function(t){o.props.onMouseOver(o.props.item.id),t.stopPropagation()},o.onMouseLeave=function(t){o.props.onMouseLeave(o.props.item.id),t.stopPropagation()},o.state={opened:!1},o}return Y(e,t),e.prototype.componentDidMount=function(){var t=this.props.focusedItemId,e=this.props.item.id;t&&t===e&&this.itemElement.focus(),this.isFirstRender=!1},e.prototype.componentDidUpdate=function(t){var e=this.props.focusedItemId,o=this.props.item.id;if(e){var n=(0,r.v)(document);t.focusedItemId===e||e!==o||this.itemElement.contains(n)||this.itemElement.focus()}},e.prototype.render=function(){var t=this,e=this.props.item,o=e.id,r=S(this.props.menuGuid,o);return n.createElement(n.Fragment,null,n.createElement("li",{id:S(this.props.menuGuid,o),className:this.getMenuItemClassName(e),style:e.cssStyle,tabIndex:o===this.props.tabbableItemId?0:-1,onMouseOver:this.onMouseOver,onMouseLeave:this.onMouseLeave,onMouseDown:function(e){return t.props.onMouseDown(e)},onBlur:function(e){return t.props.onBlur(o,e)},onFocus:function(){return t.props.onFocus(o)},onClick:function(e){return t.props.onClick(e,o)},role:"menuitem","aria-disabled":!!e.disabled||void 0,"aria-haspopup":e.items.length>0||void 0,"aria-expanded":e.items.length>0?this.Opened:void 0,"aria-label":e.text,"aria-owns":this.Opened?r:void 0,ref:function(e){return t.itemElement=e},key:"0"},this.contentRender?this.renderContent():this.renderMenuItemLink()),this.renderPopupIfOpened())},e.prototype.renderContent=function(){var t=this.props.item.contentParentItemId;return n.createElement("div",{className:"k-content",role:"presentation"},n.createElement(this.contentRender,{item:this.props.onOriginalItemNeeded(t),itemId:t}))},e.prototype.renderMenuItemLink=function(){var t=this.props.item;if(this.linkRender)return n.createElement(this.linkRender,{item:this.props.onOriginalItemNeeded(t.id),itemId:t.id,opened:this.Opened,dir:O(this.props.isDirectionRightToLeft)});var e=this.itemRender?n.createElement(this.itemRender,{item:this.props.onOriginalItemNeeded(t.id),itemId:t.id,key:"1"}):n.createElement("span",{className:"k-menu-link-text"},t.text);return n.createElement(A,{url:t.url,opened:this.Opened},this.renderMenuIconIfApplicable(),e,this.renderArrowIfApplicable())},e.prototype.renderPopupIfOpened=function(){if(this.Opened){var t=this.props.item.id,e=function(t,e,o){var n=M(t,e,o);return o?"downward"===n?C.downward:C.leftward:"downward"===n?k.downward:k.rightward}(t,this.props.isMenuVertical,this.props.isDirectionRightToLeft),o=e.anchorAlign,r=e.popupAlign,i=e.collision;return n.createElement(s.G,{anchor:this.itemElement,show:!0,popupClass:this.getPopupClassName(),anchorAlign:o,popupAlign:r,collision:i,animate:!1,key:"1"},n.createElement(J,{parentItemId:t,items:this.props.item.items,menuGuid:this.props.menuGuid,focusedItemId:this.props.focusedItemId,lastItemIdToBeOpened:this.props.lastItemIdToBeOpened,tabbableItemId:this.props.tabbableItemId,itemRender:this.props.itemRender,linkRender:this.props.linkRender,isMenuVertical:this.props.isMenuVertical,isDirectionRightToLeft:this.props.isDirectionRightToLeft,className:"k-group k-menu-group k-reset k-menu-group-md",onMouseOver:this.props.onMouseOver,onMouseLeave:this.props.onMouseLeave,onMouseDown:this.props.onMouseDown,onBlur:this.props.onBlur,onFocus:this.props.onFocus,onClick:this.props.onClick,onOriginalItemNeeded:this.props.onOriginalItemNeeded}))}return null},e.prototype.renderMenuIconIfApplicable=function(){var t=this.props.item,e=t.icon,o=t.svgIcon;return e||o?n.createElement(i.a,{name:e,icon:o,key:"0"}):null},e.prototype.renderArrowIfApplicable=function(){return this.props.item.items.length>0?n.createElement("span",{className:"k-menu-expand-arrow","aria-hidden":!0},n.createElement(Z,{itemId:this.props.item.id,verticalMenu:this.props.isMenuVertical,dir:O(this.props.isDirectionRightToLeft),key:"2"})):null},Object.defineProperty(e.prototype,"itemRender",{get:function(){return this.props.item.render||this.props.itemRender},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"linkRender",{get:function(){return this.props.item.linkRender||this.props.linkRender},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"contentRender",{get:function(){return this.props.item.contentParentItemId?this.props.item.contentRender:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Opened",{get:function(){var t,e,o=this.props;return o.item.items.length>0&&(t=o.item.id,0===(e=o.lastItemIdToBeOpened).indexOf(t)&&(e.length===t.length||e.charAt(t.length)===h))&&!this.isFirstRender},enumerable:!1,configurable:!0}),e.prototype.getPopupClassName=function(){return(0,a.A)("k-menu-popup",{"k-rtl":this.props.isDirectionRightToLeft})},e.prototype.getMenuItemClassName=function(t){return(0,a.A)("k-item","k-menu-item",{"k-first":(e=t.id,g(e)===l),"k-last":t.isLastFromSiblings,"k-disabled":t.disabled},t.cssClass);var e},e}(n.Component),Q=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),J=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.onMouseOver=function(t){e.props.onMouseOver(e.props.parentItemId),t.stopPropagation()},e.onMouseLeave=function(t){e.props.onMouseLeave(e.props.parentItemId),t.stopPropagation()},e}return Q(e,t),e.prototype.render=function(){var t=this.props.parentItemId;return n.createElement("ul",{className:this.props.className,role:this.props.role?this.props.role:void 0!==t?"menu":"menubar",id:void 0!==t?S(this.props.menuGuid,t):void 0,onMouseOver:void 0!==t?this.onMouseOver:void 0,onMouseLeave:void 0!==t?this.onMouseLeave:void 0,"aria-orientation":this.props["aria-orientation"]},this.renderChildItems())},e.prototype.renderChildItems=function(){var t=this;return this.props.items.length>0?this.props.items.map((function(e,o){return n.createElement(q,{item:e,isMenuVertical:t.props.isMenuVertical,isDirectionRightToLeft:t.props.isDirectionRightToLeft,focusedItemId:t.props.focusedItemId,lastItemIdToBeOpened:t.props.lastItemIdToBeOpened,tabbableItemId:t.props.tabbableItemId,itemRender:t.props.itemRender,linkRender:t.props.linkRender,menuGuid:t.props.menuGuid,onMouseOver:t.props.onMouseOver,onMouseLeave:t.props.onMouseLeave,onMouseDown:t.props.onMouseDown,onBlur:t.props.onBlur,onFocus:t.props.onFocus,onClick:t.props.onClick,onOriginalItemNeeded:t.props.onOriginalItemNeeded,key:o})})):null},e}(n.Component),$=o(3493),tt=o(1779),et=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),ot=function(t){function e(e){var o=t.call(this,e)||this;return o.draggable=null,o.onDrag=function(t,e,n){var r=t.event,i=o.props,a=i.onDrag,s=i.index,c=o.draggable&&o.draggable.element;c&&!o.isStatic&&o.isDraggable&&a(r,c,s,e,n)},o.onFocus=function(){o.setState({focused:!0})},o.onBlur=function(){o.setState({focused:!1})},o.onToggle=function(t){var e=o.props,n=e.onToggle,r=e.index,i=e.prev,a=e.next;(i.collapsible||a.collapsible)&&n(i.collapsible?r:r+1,t)},o.onPrevToggle=function(t){var e=o.props,n=e.onToggle,r=e.index;e.prev.collapsible&&n(r,t)},o.onNextToggle=function(t){var e=o.props,n=e.onToggle,r=e.index;e.next.collapsible&&n(r+1,t)},o.onKeyDown=function(t){var e=t&&t.keyCode,n=o.isHorizontal,r=o.props.index,i=o.draggable&&o.draggable.element,a=function(e,n,r){t.preventDefault(),o.props.onKeyboardResize(e,n,r,t)};i&&(e===$.R.enter?(t.preventDefault(),o.onToggle(t)):o.isDraggable&&(n&&e===$.R.left?a(i,r,-10):n&&e===$.R.right?a(i,r,10):n||e!==$.R.up?n||e!==$.R.down||a(i,r,10):a(i,r,-10)))},o.state={focused:!1},o}return et(e,t),Object.defineProperty(e.prototype,"isStatic",{get:function(){var t=this.props,e=t.prev,o=t.next,n=e.resizable&&o.resizable,r=e.collapsible||o.collapsible;return!n&&!r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isDraggable",{get:function(){var t=this.props,e=t.prev,o=t.next,n=e.resizable&&o.resizable,r=e.collapsed||o.collapsed;return!!n&&!r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isHorizontal",{get:function(){return"horizontal"===this.props.orientation},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t,e=this,o=this.isDraggable,r=this.isStatic,s=this.isHorizontal,c=(0,a.A)("k-splitbar",((t={})["k-focus"]=this.state.focused,t["k-splitbar-horizontal"]=s,t["k-splitbar-vertical"]=!s,t["k-splitbar-draggable-horizontal"]=s&&o,t["k-splitbar-draggable-vertical"]=!s&&o,t["k-splitbar-static-horizontal"]=s&&r,t["k-splitbar-static-vertical"]=!s&&r,t));return n.createElement(tt._,{onPress:function(t){return e.onDrag(t,!0,!1)},onDrag:function(t){return e.onDrag(t,!1,!1)},onRelease:function(t){return e.onDrag(t,!1,!0)},ref:function(t){e.draggable=t}},n.createElement("div",{tabIndex:r?-1:0,role:"separator","aria-valuenow":0,"aria-label":this.props.ariaLabel,"aria-orientation":s?"vertical":void 0,className:c,style:{touchAction:"none"},onFocus:this.onFocus,onBlur:this.onBlur,onDoubleClick:this.onToggle,onKeyDown:this.onKeyDown},this.props.prev.collapsible&&n.createElement("div",{className:"k-collapse-prev",onClick:this.onPrevToggle},n.createElement(i.a,{name:this.props.prev.collapsible?s?this.props.prev.collapsed?this.props.isRtl?"caret-alt-left":"caret-alt-right":this.props.isRtl?"caret-alt-right":"caret-alt-left":this.props.prev.collapsed?"caret-alt-down":"caret-alt-up":void 0,icon:this.props.prev.collapsible?s?this.props.prev.collapsed?this.props.isRtl?B:E:this.props.isRtl?E:B:this.props.prev.collapsed?T:V:void 0,size:"xsmall"})),n.createElement("div",{className:"k-resize-handle"}),this.props.next.collapsible&&n.createElement("div",{className:"k-collapse-next",onClick:this.onNextToggle},n.createElement(i.a,{name:this.props.next.collapsible?s?this.props.next.collapsed?this.props.isRtl?"caret-alt-right":"caret-alt-left":this.props.isRtl?"caret-alt-left":"caret-alt-right":this.props.next.collapsed?"caret-alt-up":"caret-alt-down":void 0,icon:this.props.next.collapsible?s?this.props.next.collapsed?this.props.isRtl?E:B:this.props.isRtl?B:E:this.props.next.collapsed?V:T:void 0,size:"xsmall"}))))},e}(n.Component),nt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),rt=function(){return rt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},rt.apply(this,arguments)},it=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.itemRef=null,e.focus=function(){e.itemRef&&(e.itemRef.tabIndex=0,e.itemRef.focus())},e.blur=function(){e.itemRef&&(e.itemRef.tabIndex=-1,e.itemRef.blur())},e.onClick=function(){e.props.onSelect&&e.props.onSelect(e.props.index),e.itemRef&&(e.itemRef.tabIndex=0,e.itemRef.focus())},e}return nt(e,t),e.prototype.render=function(){var t,e=this,o=this.props,r=o.id,i=o.active,s=o.disabled,c=o.title,l=void 0===c?"Untitled":c,h=o.first,p=o.last,u={id:r,"aria-selected":i,"aria-controls":r,"aria-disabled":s,"aria-hidden":s,role:"tab",onClick:s?void 0:this.onClick},v=(0,a.A)("k-item",((t={})["k-first"]=h,t["k-last"]=p,t["k-disabled"]=s,t["k-active"]=i,t));return n.createElement("li",rt({},u,{className:v,ref:function(t){return e.itemRef=t},onBlur:this.blur}),n.createElement("span",{className:"k-link"},l))},e.propTypes={active:P.bool,disabled:P.bool,index:P.number,onSelect:P.func,title:P.oneOfType([P.string,P.element]),first:P.bool,last:P.bool},e}(n.Component),at=o(2697),st=o(3218),ct=o(4006),lt={name:"@progress/kendo-react-buttons",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:1700063497,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"},ht=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),pt=function(){return pt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},pt.apply(this,arguments)},ut=function(t){function e(e){var o=t.call(this,e)||this;return o._element=null,o.handleClick=function(t){o.toggleIfApplicable(),o.props.onClick&&o.props.onClick.call(void 0,t)},(0,ct.s)(lt),o.state={selected:!0===o.props.togglable&&!0===o.props.selected},o}return ht(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this._element},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selected",{get:function(){return void 0!==this._selectedTemp?this._selectedTemp:this.state.selected},enumerable:!1,configurable:!0}),e.getDerivedStateFromProps=function(t,e){return t.togglable&&void 0!==t.selected&&t.selected!==e.selected?{selected:t.selected}:null},e.prototype.render=function(){var t,o=this,r=this.props,s=r.children,c=r.togglable,l=r.icon,h=r.iconClass,p=r.svgIcon,u=r.imageUrl,v=r.imageAlt,d=(r.className,r.onClick,r.size),f=void 0===d?e.defaultProps.size:d,m=r.rounded,y=void 0===m?e.defaultProps.rounded:m,g=r.fillMode,b=void 0===g?e.defaultProps.fillMode:g,x=r.themeColor,w=void 0===x?e.defaultProps.themeColor:x,_=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(r,["children","togglable","icon","iconClass","svgIcon","imageUrl","imageAlt","className","onClick","size","rounded","fillMode","themeColor"]),z=void 0!==p||void 0!==l||void 0!==h||void 0!==u,C=void 0!==s,k=function(t){var e=t.imageUrl,o=t.name,r=t.iconClass,s=t.svgIcon,c=t.imageAlt;return e?n.createElement("img",{role:"presentation",className:"k-button-icon",alt:c,src:e}):o||s?n.createElement(i.a,{className:"k-button-icon",name:o,icon:s}):r?n.createElement("span",{role:"presentation",className:(0,a.A)("k-button-icon",r)}):null}({name:l,svgIcon:p,iconClass:h,imageUrl:u,imageAlt:v});return n.createElement("button",pt({ref:function(t){return o._element=t},"aria-pressed":c?this.state.selected:void 0},_,{onClick:this.handleClick,className:(0,a.A)("k-button",(t={},t["k-button-".concat(at.G.sizeMap[f]||f)]=f,t["k-button-".concat(b)]=b,t["k-button-".concat(b,"-").concat(w)]=Boolean(b&&w),t["k-rounded-".concat(at.G.roundedMap[y]||y)]=y,t["k-icon-button"]=!C&&z,t["k-disabled"]=this.props.disabled,t["k-selected"]=this.state.selected,t["k-rtl"]="rtl"===this.props.dir,t),this.props.className)}),k,s&&n.createElement("span",{className:"k-button-text"},s))},e.prototype.toggleIfApplicable=function(){var t=this;if(this.props.togglable&&void 0===this.props.selected){var e=!this.state.selected;this._selectedTemp=e,this.setState({selected:e},(function(){return t._selectedTemp=void 0}))}},e.propTypes={children:P.node,selected:P.bool,togglable:P.bool,icon:P.string,svgIcon:st.wi,iconClass:P.string,imageUrl:P.string,imageAlt:P.string,size:P.oneOf([null,"small","medium","large"]),rounded:P.oneOf([null,"small","medium","large","full"]),fillMode:P.oneOf([null,"flat","link","outline","solid"]),themeColor:P.oneOf([null,"base","primary","secondary","tertiary","info","success","warning","error","dark","light","inverse"])},e.defaultProps={togglable:!1,size:"medium",rounded:"medium",fillMode:"solid",themeColor:"base"},e}(n.Component),vt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),dt=function(){return dt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},dt.apply(this,arguments)},ft=function(t){return t.preventDefault()},mt="smooth",yt="prev",gt="next",bt=function(t){function e(e){var o=t.call(this,e)||this;return o.itemsNavRef=n.createRef(),o.isRtl=function(){return"rtl"===o.props.dir},o.onWheel=function(t){t.stopPropagation();var e=t.deltaY<0?yt:gt;o.setNewScrollPosition(e,t)},o.arrowClickPrev=function(t){o.handleArrowClick(yt,t)},o.arrowClickNext=function(t){o.handleArrowClick(gt,t)},o.handleArrowClick=function(t,e){o.setNewScrollPosition(t,e)},o.setNewScrollPosition=function(t,e){var n=o.itemsNavRef.current;if(n){var r=o.horizontalScroll(),i=r?n.scrollWidth-n.offsetWidth:n.scrollHeight-n.offsetHeight,a=("click"===e.type?o.props.buttonScrollSpeed:o.props.mouseScrollSpeed)||0,s=r?n.scrollLeft:n.scrollTop,c=r?n.scrollWidth-n.scrollLeft:n.scrollHeight-n.scrollTop,l=n.scrollWidth- -1*n.scrollLeft;o.isRtl()&&o.horizontalScroll()?(t===yt&&s<0&&(s+=a,l+=a),t===gt&&s<i&&(s-=a,l-=a),s=Math.min(0,Math.min(i,s))):(t===yt&&s>0&&(s-=a,c+=a),t===gt&&s<i&&(s+=a,c-=a),s=Math.max(0,Math.min(i,s)));var h=0===s,p="click"===e.type?mt:void 0;if(r){var u=o.isRtl()?Math.round(l)<=n.clientWidth||Math.floor(l)<=n.clientWidth:Math.round(c)<=n.clientWidth||Math.floor(c)<=n.clientWidth;o.setState({disabledPrev:h,disabledNext:u}),n.scrollTo({left:s,behavior:p})}else o.setState({disabledPrev:h,disabledNext:Math.round(c)<=n.clientHeight||Math.floor(c)<=n.clientHeight}),n.scrollTo({top:s,behavior:p})}},o.renderArrow=function(t,e){var r=o.horizontalScroll(),i={prev:{arrowTab:"k-tabstrip-prev",fontIcon:r?o.isRtl()?"caret-alt-right":"caret-alt-left":"caret-alt-up",svgIcon:r?o.isRtl()?E:B:V},next:{arrowTab:"k-tabstrip-next",fontIcon:r?o.isRtl()?"caret-alt-left":"caret-alt-right":"caret-alt-down",svgIcon:r?o.isRtl()?B:E:T}},a=(t===yt?o.props.prevButton:o.props.nextButton)||ut,s=t===yt?o.arrowClickPrev:o.arrowClickNext;return n.createElement(a,{disabled:e,className:"".concat(i[t].arrowTab),onClick:s,icon:i[t].fontIcon,svgIcon:i[t].svgIcon,onMouseDown:ft,tabIndex:-1,fillMode:"flat"})},o.state={disabledPrev:0===o.props.selected,disabledNext:o.props.selected===n.Children.count(o.props.children)-1},o}return vt(e,t),e.prototype.componentDidMount=function(){this.props.scrollable&&this.scrollToSelected()},e.prototype.componentDidUpdate=function(t){var e=this.props,o=e.scrollable,r=e.selected;o&&t.selected!==r&&(this.scrollToSelected(),this.setState({disabledPrev:0===r,disabledNext:r===n.Children.count(this.props.children)-1}))},e.prototype.render=function(){var t,e,o=this.props,r=o.selected,i=o.tabPosition,s=o.children,c=o.onSelect,l=o.onKeyDown,h=n.Children.count(s),p=n.Children.toArray(s);s&&(t=(e=h,Array.apply(null,Array(e))).map((function(t,e,o){var i={active:r===e,disabled:p[e].props.disabled,index:e,title:p[e].props.title,first:0===e,last:e===o.length-1,onSelect:c};return n.createElement(it,dt({key:e},i))})));var u=(0,a.A)("k-tabstrip-items-wrapper",{"k-hstack":"top"===i||"bottom"===i,"k-vstack":"left"===i||"right"===i}),v=(0,a.A)("k-tabstrip-items","k-reset");return n.createElement("div",{className:u},this.props.scrollable?n.createElement(n.Fragment,null,this.renderArrow(yt,this.state.disabledPrev),n.createElement("ul",{ref:this.itemsNavRef,className:v,role:"tablist",tabIndex:this.props.tabIndex,onKeyDown:l,onWheel:this.onWheel},t),this.renderArrow(gt,this.state.disabledNext)):n.createElement("ul",{className:v,role:"tablist",tabIndex:this.props.tabIndex,onKeyDown:l},t))},e.prototype.scrollToSelected=function(){var t,e,o,n,r=this.itemsNavRef.current,i=r&&r.children[this.props.selected||0];if(i instanceof HTMLElement&&r instanceof HTMLElement){var a,s=this.horizontalScroll(),c=s?r.offsetWidth:r.offsetHeight,l=s?i.offsetWidth:i.offsetHeight,h=s?"left":"top",p=s?r.scrollLeft:r.scrollTop,u=0;this.isRtl()?(p*=-1,(a=i.offsetLeft)<0?(u=a-l+r.offsetLeft,r.scrollTo(((t={})[h]=u,t.behavior=mt,t))):a+l>c-p&&(u=p+a-l,r.scrollTo(((e={})[h]=u,e.behavior=mt,e)))):p+c<(a=s?i.offsetLeft-r.offsetLeft:i.offsetTop-r.offsetTop)+l?(u=a+l-c,r.scrollTo(((o={})[h]=u,o.behavior=mt,o))):p>a&&(u=a,r.scrollTo(((n={})[h]=u,n.behavior=mt,n)))}},e.prototype.horizontalScroll=function(){return/top|bottom/.test(this.props.tabPosition||"top")},e.propTypes={children:P.oneOfType([P.element,P.arrayOf(P.element)]),onSelect:P.func,onKeyDown:P.func,selected:P.number,tabIndex:P.number},e}(n.Component),xt=o(3228),wt=o(6144);const _t=function(t){if(!t||!t.ownerDocument.defaultView)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),o=parseFloat(e.marginTop),n=parseFloat(e.marginBottom);return t.offsetHeight+o+n},zt=function(t){if(!t||!t.ownerDocument.defaultView)return 0;var e=t.ownerDocument.defaultView.getComputedStyle(t),o=parseFloat(e.marginLeft),n=parseFloat(e.marginRight);return t.offsetWidth+o+n},Ct={"animation-container":"k-animation-container","animation-container-relative":"k-animation-container-relative","animation-container-fixed":"k-animation-container-fixed","push-right-enter":"k-push-right-enter","push-right-appear":"k-push-right-appear","push-right-enter-active":"k-push-right-enter-active","push-right-appear-active":"k-push-right-appear-active","push-right-exit":"k-push-right-exit","push-right-exit-active":"k-push-right-exit-active","push-left-enter":"k-push-left-enter","push-left-appear":"k-push-left-appear","push-left-enter-active":"k-push-left-enter-active","push-left-appear-active":"k-push-left-appear-active","push-left-exit":"k-push-left-exit","push-left-exit-active":"k-push-left-exit-active","push-down-enter":"k-push-down-enter","push-down-appear":"k-push-down-appear","push-down-enter-active":"k-push-down-enter-active","push-down-appear-active":"k-push-down-appear-active","push-down-exit":"k-push-down-exit","push-down-exit-active":"k-push-down-exit-active","push-up-enter":"k-push-up-enter","push-up-appear":"k-push-up-appear","push-up-enter-active":"k-push-up-enter-active","push-up-appear-active":"k-push-up-appear-active","push-up-exit":"k-push-up-exit","push-up-exit-active":"k-push-up-exit-active",expand:"k-expand","expand-vertical-enter":"k-expand-vertical-enter","expand-vertical-appear":"k-expand-vertical-appear","expand-vertical-enter-active":"k-expand-vertical-enter-active","expand-vertical-appear-active":"k-expand-vertical-appear-active","expand-vertical-exit":"k-expand-vertical-exit","expand-vertical-exit-active":"k-expand-vertical-exit-active","expand-horizontal-enter":"k-expand-horizontal-enter","expand-horizontal-appear":"k-expand-horizontal-appear","expand-horizontal-enter-active":"k-expand-horizontal-enter-active","expand-horizontal-appear-active":"k-expand-horizontal-appear-active","expand-horizontal-exit":"k-expand-horizontal-exit","expand-horizontal-exit-active":"k-expand-horizontal-exit-active","child-animation-container":"k-child-animation-container","fade-enter":"k-fade-enter","fade-appear":"k-fade-appear","fade-enter-active":"k-fade-enter-active","fade-appear-active":"k-fade-appear-active","fade-exit":"k-fade-exit","fade-exit-active":"k-fade-exit-active","zoom-in-enter":"k-zoom-in-enter","zoom-in-appear":"k-zoom-in-appear","zoom-in-enter-active":"k-zoom-in-enter-active","zoom-in-appear-active":"k-zoom-in-appear-active","zoom-in-exit":"k-zoom-in-exit","zoom-in-exit-active":"k-zoom-in-exit-active","zoom-out-enter":"k-zoom-out-enter","zoom-out-appear":"k-zoom-out-appear","zoom-out-enter-active":"k-zoom-out-enter-active","zoom-out-appear-active":"k-zoom-out-appear-active","zoom-out-exit":"k-zoom-out-exit","zoom-out-exit-active":"k-zoom-out-exit-active","slide-in-appear":"k-slide-in-appear",centered:"k-centered","slide-in-appear-active":"k-slide-in-appear-active","slide-down-enter":"k-slide-down-enter","slide-down-appear":"k-slide-down-appear","slide-down-enter-active":"k-slide-down-enter-active","slide-down-appear-active":"k-slide-down-appear-active","slide-down-exit":"k-slide-down-exit","slide-down-exit-active":"k-slide-down-exit-active","slide-up-enter":"k-slide-up-enter","slide-up-appear":"k-slide-up-appear","slide-up-enter-active":"k-slide-up-enter-active","slide-up-appear-active":"k-slide-up-appear-active","slide-up-exit":"k-slide-up-exit","slide-up-exit-active":"k-slide-up-exit-active","slide-right-enter":"k-slide-right-enter","slide-right-appear":"k-slide-right-appear","slide-right-enter-active":"k-slide-right-enter-active","slide-right-appear-active":"k-slide-right-appear-active","slide-right-exit":"k-slide-right-exit","slide-right-exit-active":"k-slide-right-exit-active","slide-left-enter":"k-slide-left-enter","slide-left-appear":"k-slide-left-appear","slide-left-enter-active":"k-slide-left-enter-active","slide-left-appear-active":"k-slide-left-appear-active","slide-left-exit":"k-slide-left-exit","slide-left-exit-active":"k-slide-left-exit-active","reveal-vertical-enter":"k-reveal-vertical-enter","reveal-vertical-appear":"k-reveal-vertical-appear","reveal-vertical-enter-active":"k-reveal-vertical-enter-active","reveal-vertical-appear-active":"k-reveal-vertical-appear-active","reveal-vertical-exit":"k-reveal-vertical-exit","reveal-vertical-exit-active":"k-reveal-vertical-exit-active","reveal-horizontal-enter":"k-reveal-horizontal-enter","reveal-horizontal-appear":"k-reveal-horizontal-appear","reveal-horizontal-enter-active":"k-reveal-horizontal-enter-active","reveal-horizontal-appear-active":"k-reveal-horizontal-appear-active","reveal-horizontal-exit":"k-reveal-horizontal-exit","reveal-horizontal-exit-active":"k-reveal-horizontal-exit-active"};var kt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Mt=function(){return Mt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Mt.apply(this,arguments)},Ot=Ct,St=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.elementRef=n.createRef(),e}return kt(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this.elementRef.current},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this,e=this.props,o=e.children,r=e.style,i=e.appear,s=e.enter,c=e.exit,l=e.transitionName,h=e.transitionEnterDuration,p=e.transitionExitDuration,u=e.className,v=e.onEnter,d=e.onEntering,f=e.onEntered,m=e.onExit,y=e.onExiting,g=e.onExited,b=e.onAfterExited,x=e.mountOnEnter,w=e.unmountOnExit,_=e.animationEnteringStyle,z=e.animationEnteredStyle,C=e.animationExitingStyle,k=e.animationExitedStyle,M=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(e,["children","style","appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","onEnter","onEntering","onEntered","onExit","onExiting","onExited","onAfterExited","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),O=(0,a.A)(u,Ot["child-animation-container"]),S=Mt({transitionDelay:"0ms"},r),H={entering:Mt({transitionDuration:"".concat(h,"ms")},_),entered:Mt({},z),exiting:Mt({transitionDuration:"".concat(p,"ms")},C),exited:Mt({},k)},P={in:this.props.in,appear:i,enter:s,exit:c,mountOnEnter:x,unmountOnExit:w,timeout:{enter:h,exit:p},onEnter:function(){v&&v.call(void 0,{animatedElement:t.element,target:t})},onEntering:function(){d&&d.call(void 0,{animatedElement:t.element,target:t})},onEntered:function(){f&&f.call(void 0,{animatedElement:t.element,target:t})},onExit:function(){m&&m.call(void 0,{animatedElement:t.element,target:t})},onExiting:function(){y&&y.call(void 0,{animatedElement:t.element,target:t})},onExited:function(){b&&b.call(void 0,{animatedElement:t.element,target:t}),g&&g.call(void 0,{animatedElement:t.element,target:t})},classNames:{appear:Ot["".concat(l,"-appear")]||"".concat(l,"-appear"),appearActive:Ot["".concat(l,"-appear-active")]||"".concat(l,"-appear-active"),enter:Ot["".concat(l,"-enter")]||"".concat(l,"-enter"),enterActive:Ot["".concat(l,"-enter-active")]||"".concat(l,"-enter-active"),exit:Ot["".concat(l,"-exit")]||"".concat(l,"-exit"),exitActive:Ot["".concat(l,"-exit-active")]||"".concat(l,"-exit-active")}};return n.createElement(wt.CSSTransition,Mt({},P,M,{nodeRef:this.elementRef}),(function(e){return n.createElement("div",{style:Mt(Mt({},S),H[e]),className:O,ref:t.elementRef},o)}))},e.propTypes={in:P.bool,children:P.oneOfType([P.arrayOf(P.node),P.node]),transitionName:P.string.isRequired,className:P.string,appear:P.bool,enter:P.bool,exit:P.bool,transitionEnterDuration:P.number.isRequired,transitionExitDuration:P.number.isRequired,mountOnEnter:P.bool,unmountOnExit:P.bool,animationEnteringStyle:P.object,animationEnteredStyle:P.object,animationExitingStyle:P.object,animationExitedStyle:P.object},e.defaultProps={mountOnEnter:!0,unmountOnExit:!1,onEnter:xt.Z,onEntering:xt.Z,onEntered:xt.Z,onExit:xt.Z,onExiting:xt.Z,onExited:xt.Z,onAfterExited:xt.Z,animationEnteringStyle:{},animationEnteredStyle:{},animationExitingStyle:{},animationExitedStyle:{}},e}(n.Component),Ht={name:"@progress/kendo-react-animation",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:1700063333,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"},Pt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),It=function(){return It=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},It.apply(this,arguments)},At=Ct,Vt=function(t){function e(e){var o=t.call(this,e)||this;return(0,ct.s)(Ht),o}return Pt(e,t),e.prototype.render=function(){var t=this.props,e=t.id,o=t.style,r=t.children,i=t.component,s=t.className,c=t.childFactory,l=(t.stackChildren,t.componentChildStyle),h=t.componentChildClassName,p=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["id","style","children","component","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),u={id:e,style:o,component:i,childFactory:c,className:(0,a.A)(At["animation-container"],At["animation-container-relative"],s)},v=n.Children.map(r||null,(function(t){return n.createElement(St,It({},p,{style:l,className:h}),t)}));return n.createElement(wt.TransitionGroup,It({},u),v)},e.propTypes={children:P.oneOfType([P.arrayOf(P.node),P.node]),childFactory:P.any,className:P.string,component:P.string,id:P.string,style:P.any,transitionName:P.string.isRequired,appear:P.bool.isRequired,enter:P.bool.isRequired,exit:P.bool.isRequired,transitionEnterDuration:P.number.isRequired,transitionExitDuration:P.number.isRequired},e.defaultProps={component:"div"},e}(n.Component),Et=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Tt=function(){return Tt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Tt.apply(this,arguments)},Bt=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Et(e,t),e.prototype.render=function(){var t=this.props,e=t.children,o=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["children"]);return n.createElement(Vt,Tt({},{transitionName:"fade"},o),e)},e.propTypes={children:P.oneOfType([P.arrayOf(P.node),P.node]),childFactory:P.any,className:P.string,component:P.string,id:P.string,style:P.any},e.defaultProps={appear:!1,enter:!0,exit:!1,transitionEnterDuration:500,transitionExitDuration:500},e}(n.Component),jt=o(3198),Lt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Rt=function(){return Rt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Rt.apply(this,arguments)},Dt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.contentId=(0,jt.M)(),e.childFactory=function(t){return n.cloneElement(t,Rt(Rt({},t.props),{in:t.props.children.props.id===String(e.contentId+e.props.selected)}))},e}return Lt(e,t),e.prototype.render=function(){var t=this.props,e=t.children,o=t.selected,r=e&&"number"==typeof o&&n.Children.toArray(e)[o],i=(0,a.A)("k-tabstrip-content","k-active",r&&r.props.contentClassName);return n.createElement("div",{className:i,style:this.props.style},this.renderContent(e))},e.prototype.renderContent=function(t){var e=this;return this.props.keepTabsMounted?n.Children.map(this.props.children,(function(t,o){return e.renderChild(t,o)})):this.renderChild(n.Children.toArray(t)[this.props.selected],this.props.selected)},e.prototype.renderChild=function(t,e){var o=e===this.props.selected,r={role:"tabpanel","aria-expanded":!0,"aria-labelledby":e.toString(),style:{display:o?void 0:"none"}},i={position:"initial",display:o?void 0:"none"};return t.props.disabled?null:this.props.animation?n.createElement(Bt,{appear:!0,exit:this.props.keepTabsMounted,style:i,childFactory:this.props.keepTabsMounted?this.childFactory:void 0},n.createElement("div",Rt({},r,{id:String(this.contentId+e),key:e}),t.props.children)):n.createElement("div",Rt({},r,{key:e}),t.props.children)},e.propTypes={animation:P.bool,children:P.oneOfType([P.element,P.arrayOf(P.element)]),selected:P.number,style:P.object},e}(n.Component),Nt=o(2080),Ft={name:"@progress/kendo-react-layout",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:1700063587,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"},Ut=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Wt=function(){return Wt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Wt.apply(this,arguments)},Gt=function(t){function e(e){var o,r=t.call(this,e)||this;return r._element=null,r.showLicenseWatermark=!1,r.keyBinding=((o={})[$.R.left]=function(){return r.prevNavigatableTab()},o[$.R.right]=function(){return r.nextNavigatableTab()},o[$.R.down]=function(){return r.nextNavigatableTab()},o[$.R.up]=function(){return r.prevNavigatableTab()},o[$.R.home]=function(){return 0},o[$.R.end]=function(){return n.Children.count(r.props.children)-1},o),r.onSelect=function(t){r.props.selected!==t&&r.props.onSelect&&r.props.onSelect({selected:t})},r.onKeyDown=function(t){var e;switch(t.keyCode){case $.R.left:e=r.keyBinding[r.invertKeys($.R.left,$.R.right)];break;case $.R.right:e=r.keyBinding[r.invertKeys($.R.right,$.R.left)];break;case $.R.up:e=r.keyBinding[$.R.up];break;case $.R.down:e=r.keyBinding[$.R.down];break;case $.R.home:e=r.keyBinding[$.R.home];break;case $.R.end:e=r.keyBinding[$.R.end]}e&&(t.preventDefault(),r.onSelect(e()))},r.renderContent=function(t){var e=t.selected,o=t.children,r=t.tabContentStyle;return e<n.Children.count(o)&&e>-1?n.createElement(Dt,Wt({index:e},t,{style:r})):null},r.firstNavigatableTab=function(){var t=r.children(),e=n.Children.count(t);if(t)for(var o=0;o<e;o++)if(!t[o].props.disabled)return o},r.lastNavigatableTab=function(){var t=r.children(),e=n.Children.count(t);if(t)for(var o=e-1;o>0;o--)if(!t[o].props.disabled)return o},r.prevNavigatableTab=function(){var t=r.children(),e=r.props.selected,o=e?e-1:-1;if(o<0)return r.lastNavigatableTab();if(t)for(var n=o;n>-1;n--){if(!t[n].props.disabled)return n;if(0===n)return r.lastNavigatableTab()}},r.nextNavigatableTab=function(){var t=r.children(),e=r.props.selected,o=e?e+1:1,i=n.Children.count(t);if(o>=i)return r.firstNavigatableTab();if(t)for(var a=o;a<i;a++){if(!t[a].props.disabled)return a;if(a+1===i)return r.firstNavigatableTab()}},(0,ct.s)(Ft),r.showLicenseWatermark=(0,ct.G)(Ft),r}return Ut(e,t),e.prototype.render=function(){var t=this,e=Wt(Wt({},this.props),{children:this.children(),onKeyDown:this.onKeyDown,onSelect:this.onSelect}),o=e.tabPosition,r=e.tabIndex,i=void 0===r?0:r,s="bottom"===o,c=(0,a.A)("k-tabstrip k-pos-relative",{"k-tabstrip-left":"left"===o,"k-tabstrip-right":"right"===o,"k-tabstrip-bottom":"bottom"===o,"k-tabstrip-top":"top"===o,"k-tabstrip-scrollable":this.props.scrollable},this.props.className);return n.createElement("div",{id:this.props.id,ref:function(e){return t._element=e},dir:this.props.dir,className:c,style:this.props.style},!s&&n.createElement(bt,Wt({},e,{tabIndex:i})),this.renderContent(e),s&&n.createElement(bt,Wt({},e,{tabIndex:i})),this.showLicenseWatermark&&n.createElement(Nt.t,null))},e.prototype.invertKeys=function(t,e){return this._element&&"rtl"===getComputedStyle(this._element).direction?e:t},e.prototype.children=function(){return n.Children.toArray(this.props.children).filter((function(t){return t}))},e.propTypes={animation:P.bool,children:P.node,onSelect:P.func,selected:P.number,style:P.object,tabContentStyle:P.object,tabPosition:P.string,tabIndex:P.number,className:P.string,dir:P.string},e.defaultProps={animation:!0,tabPosition:"top",keepTabsMounted:!1,buttonScrollSpeed:100,mouseScrollSpeed:10},e}(n.Component),Kt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Xt=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Kt(e,t),e.prototype.render=function(){return null},e.propTypes={disabled:P.bool,contentClassName:P.string,children:P.oneOfType([P.element,P.node]),title:P.oneOfType([P.string,P.element,P.node])},e}(n.Component),Zt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Yt=function(){return Yt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Yt.apply(this,arguments)},qt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.state={maxHeight:void 0,maxWidth:void 0},e.componentWillEnter=function(t){var o=e.props,n=o.onEnter,r=o.onBeforeEnter;r&&r.call(void 0,t),e.updateContainerDimensions(t.animatedElement,(function(){n&&n.call(void 0,t)}))},e.componentIsEntering=function(t){var o=e.props.onEntering;e.updateContainerDimensions(t.animatedElement,(function(){o&&o.call(void 0,t)}))},e.componentWillExit=function(t){var o=e.props.onExit;e.updateContainerDimensions(t.animatedElement,(function(){o&&o.call(void 0,t)}))},e.updateContainerDimensions=function(t,o){void 0===o&&(o=xt.Z);var n=t.firstChild;if(n){var r=_t(n),i=zt(n);e.setState({maxHeight:r,maxWidth:i},o)}},e}return Zt(e,t),e.prototype.render=function(){var t,e=this.props,o=e.direction,r=e.children,i=e.childFactory,a=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(e,["direction","children","childFactory"]),s=this.state,c=s.maxHeight,l=s.maxWidth,h={maxHeight:(t="vertical"===o?{maxHeight:c?"".concat(c,"px"):""}:{maxWidth:l?"".concat(l,"px"):""}).maxHeight,maxWidth:t.maxWidth};return n.createElement(Vt,Yt({},a,{childFactory:function(e){var o=i?i(e):e;return o.props.in?o:n.cloneElement(o,Yt(Yt({},o.props),{style:Yt(Yt({},o.props.style),{maxHeight:t.maxHeight,maxWidth:t.maxWidth})}))},onEnter:this.componentWillEnter,onEntering:this.componentIsEntering,onExit:this.componentWillExit,animationEnteringStyle:h,transitionName:"reveal-".concat(o)}),r)},e.propTypes={children:P.oneOfType([P.arrayOf(P.node),P.node]),childFactory:P.any,className:P.string,direction:P.oneOf(["horizontal","vertical"]),component:P.string,id:P.string,style:P.any},e.defaultProps={appear:!1,enter:!0,exit:!0,transitionEnterDuration:300,transitionExitDuration:300,direction:"vertical"},e}(n.Component),Qt=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Jt=function(){return Jt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Jt.apply(this,arguments)},$t=function(t){function e(e){var o=t.call(this,e)||this;return o.handleItemClick=function(){var t=o.props,e=t.onSelect,n=t.disabled,r=t.id;e&&!n&&e.call(void 0,{uniquePrivateKey:o.props.uniquePrivateKey,id:r,target:o})},o.childFactory=function(t){return o.props.keepItemsMounted?n.cloneElement(t,Jt(Jt({},t.props),{in:o.props.expanded})):t},o.state={show:e.expanded||!1},o}return Qt(e,t),e.prototype.render=function(){var t=this,e=this.props,o=e.id,r=e.children,s=e.title,c=e.uniquePrivateKey,l=e.disabled,h=e.selected,p=e.focused,u=e.expanded,v=e.className,d=e.level,f=e.headerClassName,m=e.animation,y=e.keepItemsMounted,g={role:"treeitem","aria-disabled":l,"aria-hidden":!l&&!u,"aria-selected":!l&&h,"aria-expanded":!l&&u&&!!r},b=(0,a.A)("k-panelbar-item",{"k-panelbar-header":0===d,"k-expanded":u&&!!r,"k-disabled":l},"k-level-".concat(d),v),x=(0,a.A)("k-link",{"k-selected":!l&&h,"k-focus":!l&&p},f),w=function(t){var e=t.imageUrl,o=t.icon,r=t.svgIcon,a=t.iconClass;return e?n.createElement("img",{role:"presentation",className:"k-panelbar-item-icon k-image",src:e}):o||r?n.createElement(i.a,{className:"k-panelbar-item-icon",name:o,icon:r}):a?n.createElement("span",{role:"presentation",className:"k-panelbar-item-icon "+a}):null}(this.props),_=!l&&r?n.createElement(i.a,{name:u?"chevron-up":"chevron-down",icon:u?j:R,className:(0,a.A)("k-panelbar-toggle",u?"k-panelbar-collapse":"k-panelbar-expand")}):null,z=!l&&u||y?n.createElement("ul",{role:"group","aria-expanded":u,"aria-hidden":!u,className:"k-panelbar-group k-panel k-group",style:{display:y?this.state.show?"block":"none":"block"}},r):null,C=void 0!==m&&!m||l||!r?z:n.createElement(qt,{transitionEnterDuration:200,transitionExitDuration:200,key:c+"_animation",style:{display:"block"},children:z,childFactory:y&&this.childFactory,unmountOnExit:!y,onBeforeEnter:function(){return y&&t.setState({show:!0})},onAfterExited:function(){return y&&t.setState({show:!1})}});return n.createElement("li",Jt({id:o,className:b},g),n.createElement("span",{className:x,onClick:this.handleItemClick},w,n.createElement("span",{className:"k-panelbar-item-text"},s),_),C)},e.propTypes={animation:P.bool,children:P.any,className:P.string,icon:P.string,iconClass:P.string,imageUrl:P.string,svgIcon:st.wi,expanded:P.bool,disabled:P.bool,onSelect:P.func,selected:P.bool,level:P.number,title:P.oneOfType([P.string,P.element]),id:P.oneOfType([P.string,P.number]),focused:P.bool,keepItemsMounted:P.bool},e.defaultProps={title:"Untitled"},e}(n.PureComponent),te=function(){return te=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},te.apply(this,arguments)},ee=function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))},oe=function(t){var e=t.animation,o=void 0===e||e,r=t.keepItemsMounted,i=void 0!==r&&r,a=t.state,s=t.expanded,c=t.handleSelect,l=t.children,h=t.parentExpanded,p=void 0===h||h,u=t.level,v=void 0===u?0:u,d=t.parentPrivateKey,f=void 0===d?[]:d;return n.Children.map(l,(function(t,e){if(t&&t.type===$t){var r=void 0,l=ie(t,f,e);if(t.props.children){var h={animation:o,keepItemsMounted:i,state:a,expanded:s,handleSelect:c,children:t.props.children,parentExpanded:(s||[]).indexOf(l)>-1,level:v+1,parentPrivateKey:ee(ee([],f,!0),[l],!1)};r=oe(h)}return n.cloneElement(t,te(te({},t.props),{animation:void 0!==t.props.animation?t.props.animation:o,keepItemsMounted:i,id:t.props.id||"k-panelbar-item-default-".concat(l),uniquePrivateKey:l,parentUniquePrivateKey:f,parentExpanded:p,level:v,expanded:(s||[]).indexOf(l)>-1,focused:a.focused===l&&a.wrapperFocused,selected:a.selected===l,children:r,onSelect:c}))}return n.createElement("div",{className:"k-panelbar-content k-content"},t)}))},ne=function(t){var e=n.Children.toArray(t.children)[0];return e?ie(e,[],0):""},re=function(t,e,o,r,i){return void 0===o&&(o={expanded:t.expanded||[],selected:t.selected||"",focused:t.focused||"",wrapperFocused:!1}),void 0===r&&(r=!0),void 0===i&&(i=[]),n.Children.map(t.children,(function(t,n){if(t&&t.type===$t){var a=ie(t,i,n);!t.props.disabled&&r&&(t.props.selected&&(o.selected=a),t.props.focused&&(o.focused=a),t.props.expanded&&("multiple"===e?o.expanded.push(a):"single"===e&&(o.expanded=[a])),t.props.children&&(o=re(t.props,e,o,!!t.props.expanded,ee(ee([],i,!0),[a],!1))))}})),o},ie=function(t,e,o){return t&&t.props&&t.props.id?t.props.id:e.length?e[e.length-1]+".".concat(o):".".concat(o)};function ae(t,e){return void 0===e&&(e=[]),(t||[]).forEach((function(t){t.disabled||(e.push(t),t.expanded&&t.children&&ae(t.children,e))})),e}function se(t,e){return void 0===e&&(e=[]),n.Children.forEach(t,(function(t){t&&t.props&&!t.props.disabled&&(e.push(t),t.props.children&&se(t.props.children,e))})),e}function ce(t,e){return void 0===e&&(e=[]),n.Children.forEach(t,(function(t){t&&t.props&&!t.props.disabled&&(t.props.expanded||t.props.parentExpanded)&&(e.push(t),t.props.children&&ce(t.props.children,e))})),e}var le,he=function(t){return null!=t};!function(t){t.mapItemsToComponents=function t(e){return e.map((function(e,o){var r;return e.content&&(r=e.content),e.children&&(r=t(e.children)),n.createElement($t,te({},e,{children:r,key:e.id||o}))}))}}(le||(le={}));var pe,ue=function(t,e){return t.length===e.length&&t.every((function(t,o){return t===e[o]}))};!function(t){t[t.Toggle=0]="Toggle",t[t.Next=1]="Next",t[t.Previous=2]="Previous"}(pe||(pe={}));var ve=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),de=function(){return de=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},de.apply(this,arguments)},fe=function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))},me=function(t){function e(e){var o=t.call(this,e)||this;o._element=null,o.showLicenseWatermark=!1,o.handleSelect=function(t){o.onSelect(t),o.onFocus(t)},o.onSelect=function(t){var e,r;switch(se(n.Children.toArray(o.children)).forEach((function(n){n.props.uniquePrivateKey===(t.uniquePrivateKey||o.state.focused)&&(e=n)})),o.expandMode){case"single":r=fe(fe([],e.props.parentUniquePrivateKey,!0),[e.props.uniquePrivateKey],!1),ue(o.expandedItems,r)&&(r=e.props.parentUniquePrivateKey?fe([],e.props.parentUniquePrivateKey,!0):[]);break;case"multiple":var i=(r=o.expandedItems.slice()).indexOf(e.props.uniquePrivateKey);-1===i?r.push(e.props.uniquePrivateKey):r.splice(i,1);break;default:r=o.expandedItems.slice()}o.setState({selected:e.props.uniquePrivateKey,expanded:r}),o.props.onSelect&&o.props.onSelect.call(void 0,{target:e,expandedItems:r})},o.onFocus=function(t,e){void 0===e&&(e=0);var r,i=ce(n.Children.toArray(o.children));i.forEach((function(n,a){if(n.props.uniquePrivateKey===(t.uniquePrivateKey||o.state.focused)){var s=a+e<0?0:a+e>i.length?i.length-1:a+e;r=i[s]}})),r&&(o.activeDescendant=r.props.id,o.setState({focused:r.props.uniquePrivateKey}))},o.onNavigate=function(t,e){var n;switch(e){case pe.Previous:n=-1,o.onFocus(t,n);break;case pe.Next:n=1,o.onFocus(t,n);break;case pe.Toggle:o.onSelect(t)}},o.handleWrapperFocus=function(){clearTimeout(o.nextTickId),o.state.wrapperFocused||o.setState({wrapperFocused:!0})},o.handleWrapperBlur=function(){o.nextTick((function(){o.setState({wrapperFocused:!1})}))},o.handleKeyDown=function(t){var e=o._element&&"rtl"===getComputedStyle(o._element).direction||!1;if(t.target===t.currentTarget){var n=void 0;switch(t.keyCode){case $.R.left:n=e?pe.Next:pe.Previous;break;case $.R.up:n=pe.Previous;break;case $.R.right:n=e?pe.Previous:pe.Next;break;case $.R.down:n=pe.Next;break;case $.R.space:case $.R.enter:n=pe.Toggle;break;default:n=null}null!==n&&(t.preventDefault(),o.onNavigate(t,n))}},(0,ct.s)(Ft),o.showLicenseWatermark=(0,ct.G)(Ft);var r=re(e,o.expandMode);return r.focused||(r.focused=ne(e)),o.state=r,o}return ve(e,t),Object.defineProperty(e.prototype,"expandMode",{get:function(){return this.props.expandMode||"multiple"},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectedItem",{get:function(){var t=this.props.selected;return void 0===t?this.state.selected:t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"expandedItems",{get:function(){return this.props.isControlled?this.props.expanded||[]:this.state.expanded},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"children",{get:function(){var t=de(de({},this.state),{selected:this.selectedItem}),e={animation:this.props.animation,keepItemsMounted:this.props.keepItemsMounted,state:t,expanded:this.expandedItems,handleSelect:this.handleSelect,children:this.props.children};return oe(e)},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this,e={"aria-activedescendant":this.activeDescendant},o=(0,a.A)("k-panelbar","k-pos-relative",this.props.className);return n.createElement("ul",de({ref:function(e){t._element=e},dir:this.props.dir,role:"tree",tabIndex:0,onKeyDown:this.handleKeyDown,onFocus:this.handleWrapperFocus,onBlur:this.handleWrapperBlur,className:o,style:this.props.style},e),this.children,this.showLicenseWatermark&&n.createElement(Nt.t,null))},e.prototype.nextTick=function(t){this.nextTickId=window.setTimeout((function(){return t()}))},e.propTypes={animation:P.bool,children:function(t,e){var o=t[e];if(o){if(Array.isArray(o))for(var n=0,r=o;n<r.length;n++){var i=r[n];if(!i.type||i.type!==$t)return new Error("PanelBar children should be either PanelBarItem or Array of PanelBarItem.")}else if(o.type!==$t)return new Error("PanelBar child should be either PanelBarItem or Array of PanelBarItem.");return null}return null},dir:P.string,selected:P.string,expanded:P.arrayOf(P.string),focused:P.string,expandMode:P.oneOf(["single","multiple"]),className:P.string,keepItemsMounted:P.bool,onSelect:P.func,style:P.object},e.defaultProps={expandMode:"multiple",animation:!0,keepItemsMounted:!1},e}(n.Component),ye=o(5407),ge=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),be=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return ge(e,t),e.prototype.render=function(){return null},e.propTypes={text:P.string,url:P.string,icon:P.string,disabled:P.bool,cssClass:P.string,cssStyle:P.object,render:P.any,linkRender:P.any,contentRender:P.any,data:P.any},e}(n.Component);function xe(t,e){if(t&&t.length>0)return{items:Ce(t),inputItems:t};if(_e(e).length>0){var o=ze(_e(e));return{items:Ce(o),inputItems:o}}return{items:[],inputItems:[]}}function we(t,e){var o={},n=t||e.props,r=n.text,i=n.url,a=n.icon,s=n.svgIcon,c=n.disabled,l=n.cssClass,h=n.cssStyle,p=n.render,u=n.linkRender,v=n.contentRender,d=n.data;return void 0!==r&&(o.text=r),void 0!==i&&(o.url=i),void 0!==a&&(o.icon=a),void 0!==s&&(o.svgIcon=s),void 0!==c&&(o.disabled=c),void 0!==l&&(o.cssClass=l),void 0!==h&&(o.cssStyle=h),void 0!==p&&(o.render=p),void 0!==u&&(o.linkRender=u),void 0!==v&&(o.contentRender=v),void 0!==d&&(o.data=d),o}function _e(t){return n.Children.toArray(t).filter((function(t){return t&&t.type===be}))}function ze(t){for(var e=[],o=0;o<t.length;o++){var n=t[o],r=we(void 0,n),i=ze(_e(n.props.children));i.length>0&&(r.items=i),e.push(r)}return e}function Ce(t,e){for(var o=[],n=0;n<t.length;n++){var r=t[n],i=we(r);i.id=d(n.toString(),e),i.isLastFromSiblings=n===t.length-1,i.items=ke(r,i),o.push(i)}return o}function ke(t,e){return t.contentRender?[{contentParentItemId:e.id,id:d(l,e.id),isLastFromSiblings:!0,contentRender:t.contentRender,items:[]}]:t.items?Ce(t.items,e.id):[]}var Me=/\S/;function Oe(t,e,o,n,r,i){var a,s=z();switch(o){case $.R.left:return r?i?x():l():i?m():c();case $.R.right:return r?i?l():x():i?c():m();case $.R.up:return r?k():y(e)?_():k();case $.R.down:return r?M():y(e)?w():M();case $.R.enter:case $.R.space:return s.disabled?e:C()?v(e):u(e);case $.R.home:return O()[0].id;case $.R.end:return(a=O())[a.length-1].id;case $.R.esc:return y(e)?e:f(e);default:return 1===n.length&&Me.test(n)?function(){var t=n.toLowerCase(),o=O(),r=Number(g(e)),i=o.slice(r+1).concat(o.slice(0,r+1)).find((function(e){return(e.text||"").toLowerCase().startsWith(t)}));return i?i.id:e}():e}function c(){return y(e)?k():1===function(t){return t.split(h).length-1}(e)?w(k(u(e))):f(e)}function l(){return y(e)?_():f(e)}function m(){return y(e)?M():w(C()?e:M(u(e)))}function x(){return w(y(e)||C()?e:M(u(e)))}function w(t){return S(!0,t)}function _(t){return S(!1,t)}function z(o,n){return void 0===o&&(o=e),void 0===n&&(n=t),p(o,n)}function C(t){return z(t).items.length>0}function k(t){return H(!1,t)}function M(t){return H(!0,t)}function O(){return y(e)?t:z(f(e),t).items}function S(t,o){void 0===o&&(o=e);var n=z(o);return C(o)&&!n.disabled?t?v(o):function(t){var e=z(t).items;return e[e.length-1].id}(o):o}function H(o,n){if(void 0===n&&(n=e),y(n))return b(o,n,t.length);var r=f(n);return d(b(o,g(n),z(r).items.length),r)}}var Se,He,Pe,Ie,Ae,Ve=function(){function t(){this.phase="Initialized"}return t.prototype.getIsDirectionRightToLeft=function(){return this.isDirectionRightToLeft},t.prototype.setIsDirectionRightToLeft=function(t){this.phase="NotInitialized"===this.phase?"Initialized":"NewValueReceived",this.previousIsDirectionRightToLeft=this.isDirectionRightToLeft,this.isDirectionRightToLeft=t},t.prototype.hasDirectionChanged=function(){return"NewValueReceived"===this.phase&&this.previousIsDirectionRightToLeft!==this.isDirectionRightToLeft},t}(),Ee=function(){function t(t,e,o){this.openOnClick=t,this.resetMenu=e,this.openItem=o,this.mouseDown=!1,this.openOnClick=t,this.isMouseOverEnabled=!t}return Object.defineProperty(t.prototype,"OpenOnClick",{set:function(t){Boolean(t)!==Boolean(this.openOnClick)&&(this.mouseDown=!1,this.isMouseOverEnabled=!t),this.openOnClick=t},enumerable:!1,configurable:!0}),t.prototype.handleItemSelectedViaKeyboard=function(){this.openOnClick&&(this.isMouseOverEnabled=!1,this.resetMenu())},Object.defineProperty(t.prototype,"IsMouseOverEnabled",{get:function(){return this.isMouseOverEnabled},enumerable:!1,configurable:!0}),t.prototype.handleItemMouseDown=function(){this.mouseDown=!0},t.prototype.handleItemFocus=function(){this.openOnClick&&!this.mouseDown&&(this.isMouseOverEnabled=!0),this.mouseDown=!1},t.prototype.handleItemClick=function(t,e){this.openOnClick&&(this.isMouseOverEnabled?e&&(this.isMouseOverEnabled=!1,this.resetMenu()):(this.isMouseOverEnabled=!0,this.openItem(t)))},t}(),Te=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Be={focusedItemId:c,hoveredItemId:c,tabbableItemId:l},je=function(t){function e(e){var o=t.call(this,e)||this;return o.menuWrapperEl=null,o.guid=(0,jt.M)(),o.directionHolder=new Ve,o.inputItems=[],o.items=[],o.reset=function(){o.clearItemHoverAndLeaveRequestsIfApplicable(),o.setState(Be)},o.onKeyDown=function(t){if(o.state.focusedItemId!==c){var e=p(o.state.focusedItemId,o.items),n=Oe(o.items,e.id,t.keyCode,t.key,o.props.vertical,o.directionHolder.getIsDirectionRightToLeft());e.id!==n&&(t.preventDefault(),o.setFocusedItemId(n)),t.keyCode!==$.R.enter&&t.keyCode!==$.R.space||e.disabled||(o.mouseOverHandler.handleItemSelectedViaKeyboard(),o.dispatchSelectEventIfWired(t,e.id),!t.isDefaultPrevented()&&0===e.items.length&&e.url&&window.location.assign(e.url))}t.keyCode===$.R.esc&&o.props.onClose&&o.props.onClose.call(void 0,t)},o.onItemMouseOver=function(t){o.mouseOverHandler.IsMouseOverEnabled&&(o.clearItemHoverAndLeaveRequestsIfApplicable(),o.itemHoverRequest=window.setTimeout((function(){o.setHoveredItemId(t),o.itemHoverRequest=null}),function(t){return void 0!==t.hoverOpenDelay?t.hoverOpenDelay:t.openOnClick?0:100}(o.props)))},o.onItemMouseLeave=function(t){o.mouseOverHandler.IsMouseOverEnabled&&o.isItemWithDefaultClose(t)&&(o.clearItemHoverAndLeaveRequestsIfApplicable(),o.itemLeaveRequest=window.setTimeout((function(){o.setHoveredItemId(c),o.itemLeaveRequest=null}),function(t){return void 0!==t.hoverCloseDelay?t.hoverCloseDelay:100}(o.props)))},o.onItemMouseDown=function(){o.mouseOverHandler.handleItemMouseDown()},o.onItemFocus=function(t){o.setFocusedItemId(t),o.mouseOverHandler.handleItemFocus()},o.onItemClick=function(t,e){var n=p(e,o.items);n.disabled||(o.setFocusedItemId(e),o.mouseOverHandler.handleItemClick(e,o.isItemWithDefaultClose(e)),o.dispatchSelectEventIfWired(t,e),!t.isDefaultPrevented()&&n.url&&window.location.assign(n.url))},o.onItemBlur=function(t,e){if(o.isItemWithDefaultClose(t)&&o.setFocusedItemId(c),e.relatedTarget&&"LI"===e.relatedTarget.nodeName){var n=e.relatedTarget.getAttribute("id");if(n&&n.includes(o.guid))return}o.props.onClose&&o.props.onClose.call(void 0,e)},o.getInputItem=function(t){return p(t,o.inputItems)},(0,ct.s)(Ft),o.mouseOverHandler=new Ee(o.props.openOnClick,o.reset,o.onItemMouseOver),o.state=Object.assign({},Be,{isFirstRender:!0}),o}return Te(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this.menuWrapperEl},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this;this.prepareItems(),this.state.isFirstRender||this.directionHolder.setIsDirectionRightToLeft(this.checkIsDirectionRightToLeft());var e=this.state.hoveredItemId?this.state.hoveredItemId:this.state.focusedItemId?f(this.state.focusedItemId):c;return n.createElement("div",{onKeyDown:this.onKeyDown,style:this.props.style,className:this.directionHolder.getIsDirectionRightToLeft()?"k-rtl":void 0,ref:function(e){return t.menuWrapperEl=e}},n.createElement(J,{className:this.getMenuClassName(),"aria-orientation":this.props.vertical?"vertical":void 0,items:this.items,isMenuVertical:this.props.vertical,isDirectionRightToLeft:this.directionHolder.getIsDirectionRightToLeft(),focusedItemId:this.state.focusedItemId,lastItemIdToBeOpened:e,tabbableItemId:this.state.tabbableItemId,itemRender:this.props.itemRender,linkRender:this.props.linkRender,menuGuid:this.guid,onMouseLeave:this.onItemMouseLeave,onMouseOver:this.onItemMouseOver,onMouseDown:this.onItemMouseDown,onFocus:this.onItemFocus,onClick:this.onItemClick,onBlur:this.onItemBlur,onOriginalItemNeeded:this.getInputItem,role:this.props.role}))},e.prototype.componentDidMount=function(){this.setState({isFirstRender:!1})},e.prototype.componentDidUpdate=function(t){(Boolean(t.vertical)!==Boolean(this.props.vertical)||this.directionHolder.hasDirectionChanged())&&this.reset(),this.mouseOverHandler.OpenOnClick=this.props.openOnClick},e.prototype.componentWillUnmount=function(){this.clearItemHoverAndLeaveRequestsIfApplicable()},e.prototype.setFocusedItemId=function(t){this.setState((function(e){var o=t===c?e.tabbableItemId:u(t);return{hoveredItemId:t===c||m(e.hoveredItemId)&&m(t)?e.hoveredItemId:c,focusedItemId:t,tabbableItemId:o}}))},e.prototype.setHoveredItemId=function(t){this.setState((function(e){return m(t)&&m(e.focusedItemId)?{hoveredItemId:t,focusedItemId:e.focusedItemId,tabbableItemId:e.tabbableItemId}:{hoveredItemId:t,focusedItemId:c,tabbableItemId:l}}))},e.prototype.getMenuClassName=function(){return(0,a.A)("k-reset","k-header","k-menu",{"k-menu-horizontal":!this.props.vertical},{"k-menu-vertical":this.props.vertical},this.props.className)},e.prototype.clearItemHoverAndLeaveRequestsIfApplicable=function(){this.itemHoverRequest&&(clearTimeout(this.itemHoverRequest),this.itemHoverRequest=null),this.itemLeaveRequest&&(clearTimeout(this.itemLeaveRequest),this.itemLeaveRequest=null)},e.prototype.isItemWithDefaultClose=function(t){return!this.props.customCloseItemIds||-1===this.props.customCloseItemIds.indexOf(t)},e.prototype.checkIsDirectionRightToLeft=function(){return Boolean(void 0!==this.props.dir?"rtl"===this.props.dir:this.menuWrapperEl&&"rtl"===getComputedStyle(this.menuWrapperEl).direction)},e.prototype.prepareItems=function(){var t=xe(this.props.items,this.props.children),e=t.items,o=t.inputItems;this.items=e,this.inputItems=o},e.prototype.dispatchSelectEventIfWired=function(t,e){(0,ye.N)(this.props.onSelect,t,this,{item:this.getInputItem(e),itemId:e})},e.propTypes={vertical:P.bool,items:P.arrayOf(P.object),style:P.object,dir:P.string,hoverOpenDelay:P.number,hoverCloseDelay:P.number,openOnClick:P.bool,itemRender:P.any,linkRender:P.any,customCloseItemIds:P.arrayOf(P.string),onSelect:P.func,role:P.string},e.defaultProps={vertical:!1},e}(n.Component),Le=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Re=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Le(e,t),e.prototype.render=function(){var t,e=this.props,o=e.id,r=e.size,i=e.collapsed,s=e.overlay,c=e.containsSplitter,l=e.collapsible,h=e.resizable,p=e.scrollable,u=e.keepMounted,v=r&&r.length>0,d={flexBasis:r},f=(0,a.A)("k-pane",((t={})["k-hidden"]=i,t.hidden=i,t["k-pane-flex"]=c,t["k-pane-static"]=!h&&!l||v,t["k-scrollable"]=p,t));return n.createElement("div",{id:o,role:"group",style:d,className:f},!i||u?this.props.children:void 0,s?n.createElement("div",{className:"k-splitter-overlay k-overlay"}):void 0)},e}(n.Component),De="splitBarLabel",Ne=((Se={})[De]="split bar",Se),Fe=o(499),Ue=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),We=function(){return We=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},We.apply(this,arguments)},Ge={collapsible:!1,collapsed:!1,resizable:!0,scrollable:!0},Ke=function(t){function e(e){var o=t.call(this,e)||this;return o._container=null,o.validatePanes=function(t){if(!t.filter((function(t){return void 0===t.size})).length)throw new Error("The Splitter should have at least one pane without a set size.")},o.mapPaneOptions=function(t,e){for(var r=o.orientation,i=o.state,a=i.dragIndex,s=i.isDragging,c=[],l=0;l<e.length;l++){var h=!1,p=e[l];n.isValidElement(p)&&(h="Splitter"===p.type.displayName);var u=!1;s&&void 0!==a&&(u=a===l||a+1===l),c.push(We(We(We({},Ge),{orientation:r,containsSplitter:h,overlay:u}),(t||[])[l]))}return c},o.mapSplitterPanes=function(t,e){var r=(0,Fe.provideLocalizationService)(o).toLanguageString(De,Ne[De]);return t.map((function(i,a){var s,c=2*a,l=c+1;if(a+1<t.length){var h=t[a+1];s=n.createElement(ot,{key:l,index:a,orientation:i.orientation,prev:i,next:h,ariaLabel:r,onDrag:o.onBarDragResize,onToggle:o.onBarToggle,onKeyboardResize:o.onBarKeyboardResize,isRtl:o.isRtl})}return[n.createElement(Re,We({key:c},i),e[a]),s]}))},o.onBarToggle=function(t,e){var n=o.panesOptions(o.panesContent).map((function(e,n){var r=o.getPaneProps(e);return n===t?We(We({},r),{collapsed:!e.collapsed}):We({},r)}));o.props.onChange&&o.props.onChange({newState:n,isLast:!0,nativeEvent:e})},o.onBarDragResize=function(t,e,n,r,i){var a=(new Date).getTime(),s=t.pageX,c=t.pageY,l=o.surroudingPanes(e),h=l.prevElement,p=l.nextElement;if(h&&p)if(r)o.setState({isDragging:!0,dragIndex:n,startTime:a,originalX:s,originalY:c,originalPrevSize:o.elementSize(h),originalNextSize:o.elementSize(p)});else{var u,v=o.state,d=v.originalPrevSize,f=v.originalNextSize,m=v.startTime,y=v.originalX,g=v.originalY;!r&&a-m<150||(u="vertical"===o.orientation?c-g:o.isRtl?y-s:s-y,o.resize(n,n+1,d,f,u,i,t)),i&&o.resetDragState()}},o.onBarKeyboardResize=function(t,e,n,r){var i=o.surroudingPanes(t),a=i.prevElement,s=i.nextElement,c=o.elementSize(a),l=o.elementSize(s);o.resize(e,e+1,c,l,n,!0,r)},o.containerSize=function(){return o._container?o.elementSize(o._container,!0):0},o.panesOptions=function(t){return o.mapPaneOptions(o.panes,t)},o.elementSize=function(t,e){var n=e?"client":"offset";return"vertical"===o.orientation?t["".concat(n,"Height")]:t["".concat(n,"Width")]},o.clamp=function(t,e,o){return Math.min(e,Math.max(t,o))},o.fixedSize=function(t){return t&&t.length>0},(0,ct.s)(Ft),o.state={isDragging:!1,dragIndex:void 0,startTime:0,originalX:0,originalY:0,originalPrevSize:0,originalNextSize:0,panes:e.defaultPanes||[]},o}return Ue(e,t),Object.defineProperty(e.prototype,"isControlledState",{get:function(){return void 0!==this.props.panes},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"panes",{get:function(){return void 0!==this.panesDuringOnChange?this.panesDuringOnChange:this.isControlledState?this.props.panes:this.state.panes},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"orientation",{get:function(){return this.props.orientation||"horizontal"},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isRtl",{get:function(){return this._container&&"rtl"===getComputedStyle(this._container).direction||!1},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"panesContent",{get:function(){return n.Children.toArray(this.props.children).filter((function(t){return t}))},enumerable:!1,configurable:!0}),e.prototype.render=function(){var t=this,e=this.panesContent,o=this.panesOptions(e),r=(0,a.A)("k-widget","k-splitter","k-splitter-flex","k-splitter-".concat(this.orientation),this.props.className);return this.validatePanes(o),n.createElement("div",{style:this.props.style,ref:function(e){return t._container=e},className:r},this.mapSplitterPanes(o,e))},e.prototype.surroudingPanes=function(t){return{prevElement:t.previousElementSibling,nextElement:t.nextElementSibling}},e.prototype.isPercent=function(t){return/%$/.test(t)},e.prototype.toPixels=function(t,e){var o=parseInt(t,10);return this.isPercent(t)&&(o=e*o/100),o},e.prototype.resetDragState=function(){this.setState({isDragging:!1,dragIndex:void 0,startTime:0,originalX:0,originalY:0,originalPrevSize:0,originalNextSize:0})},e.prototype.resize=function(t,e,o,n,r,i,a){var s,c,l=this,h=this.panesOptions(this.panesContent),p=h[t],u=h[e],v=o+n,d=this.containerSize(),f=function(t){return l.toPixels(t,d)},m={index:t,initialSize:o,min:f(p.min)||v-f(u.max)||0,max:f(p.max)||v-f(u.min)||v},y={index:e,initialSize:n,min:f(u.min)||v-f(p.max)||0,max:f(u.max)||v-f(p.min)||v},g=function(t,e){var o=h[t.index],n=l.clamp(t.min,t.max,t.initialSize+e);return l.isPercent(o.size||"")?100*n/d+"%":n+"px"};this.fixedSize(p.size)&&this.fixedSize(u.size)?(s=g(m,r),c=g(y,-r)):u.collapsible||this.fixedSize(u.size)?c=g(y,-r):s=g(m,r);var b=h.map((function(o,n){var r=l.getPaneProps(o);return n===t?We(We({},r),{size:s}):n===e?We(We({},r),{size:c}):We({},r)}));this.panesDuringOnChange=b,this.isControlledState||this.setState({panes:b}),this.props.onChange&&this.props.onChange({newState:b,isLast:i,nativeEvent:a}),this.panesDuringOnChange=void 0},e.prototype.getPaneProps=function(t){return t.orientation,t.overlay,t.containsSplitter,function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["orientation","overlay","containsSplitter"])},e.displayName="Splitter",e}(n.Component);!function(t){t.TEXT="text",t.IMAGE="image",t.ICON="icon"}(He||(He={})),function(t){t.HORIZONTAL="horizontal",t.VERTICAL="vertical"}(Pe||(Pe={})),function(t){t.DEFAULT="default",t.primary="primary",t.INFO="info",t.SUCCESS="success",t.WARNING="warning",t.ERROR="error"}(Ie||(Ie={})),function(t){t.START="start",t.CENTER="center",t.END="end",t.STRETCHED="stretched"}(Ae||(Ae={}));var Xe=function(){return Xe=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Xe.apply(this,arguments)},Ze=n.forwardRef((function(t,e){var o;(0,ct.s)(Ft);var r=t.children,i=t.dir,s=t.style,c=t.className,l=t.type,h=t.orientation,p=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["children","dir","style","className","type","orientation"]),u=n.useRef(null),v=n.useRef(null);return n.useImperativeHandle(u,(function(){return{element:v.current,props:t}})),n.useImperativeHandle(e,(function(){return u.current})),n.createElement("div",Xe({dir:i,style:s,ref:v,className:(0,a.A)("k-card",c,(o={},o["k-card-".concat(l)]=l!==Ie.DEFAULT,o),h!==Pe.HORIZONTAL?"k-card-vertical":"k-card-horizontal")},p),r)}));Ze.displayName="KendoReactCard",Ze.propTypes={children:P.node,className:P.string,dir:P.string,orientation:P.oneOf(["horizontal","vertical"]),style:P.object,type:P.oneOf(["default","primary","info","success","warning","error"])},Ze.defaultProps={type:Ie.DEFAULT,orientation:Pe.VERTICAL};var Ye=function(t){return n.createElement("div",{style:t.style,className:(0,a.A)("k-card-header",t.className)},t.children)};Ye.propTypes={className:P.string};var qe=function(t){return n.createElement("div",{style:t.style,className:(0,a.A)("k-card-title",t.className)},t.children)};qe.propTypes={className:P.string};var Qe=function(t){return n.createElement("div",{style:t.style,className:(0,a.A)("k-card-body",t.className)},t.children)};Qe.propTypes={className:P.string};var Je=function(){return Je=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Je.apply(this,arguments)},$e=function(t){var e=Je({layout:Ae.START,orientation:Pe.HORIZONTAL},t);return n.createElement("div",{style:e.style,className:(0,a.A)("k-card-actions",e.className,"k-card-actions-".concat(e.layout),e.orientation!==Pe.VERTICAL?"k-card-actions-horizontal":"k-card-actions-vertical")},e.children)};$e.propTypes={layout:P.oneOf(["stretched","start","center","end"]),orientation:P.oneOf(["horizontal","vertical"])};var to=function(){return to=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},to.apply(this,arguments)},eo=function(t){var e=to({src:""},t);return n.createElement("img",{style:e.style,className:(0,a.A)("k-card-image",e.className),src:e.src,alt:e.alt})};eo.propTypes={className:P.string,src:P.string};var oo=function(t){return n.createElement("div",{style:t.style,className:(0,a.A)("k-card-subtitle",t.className)},t.children)};oo.propTypes={className:P.string};var no=function(t){return n.createElement("div",{style:t.style,className:(0,a.A)("k-card-footer",t.className)},t.children)};no.propTypes={className:P.string};var ro=function(){return ro=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},ro.apply(this,arguments)},io=function(t){var e,o=ro({type:He.TEXT,size:"medium",rounded:"full",fillMode:"solid",themeColor:"primary"},t);return(0,ct.s)(Ft),n.createElement("div",{style:o.style,className:(0,a.A)("k-avatar",(e={},e["k-avatar-bordered"]=o.border,e["k-rounded-".concat(at.G.roundedMap[o.rounded]||o.rounded)]=o.rounded,e["k-avatar-".concat(at.G.sizeMap[o.size]||o.size)]=o.size,e["k-avatar-".concat(o.fillMode)]=o.fillMode,e["k-avatar-".concat(o.fillMode,"-").concat(o.themeColor)]=Boolean(o.fillMode&&o.themeColor),e),o.className)},n.createElement("span",{className:"k-avatar-".concat(o.type)},o.children))};io.propTypes={className:P.string,type:P.oneOf(["text","image","icon"]),size:P.oneOf([null,"small","medium","large"]),rounded:P.oneOf([null,"small","medium","large","full"]),fillMode:P.oneOf([null,"solid","outline"]),themeColor:P.oneOf([null,"base","dark","error","info","inverse","inverse","light","primary","secondary","success","tertiary","warning"])};var ao=n.createContext({animation:!0,expanded:!1,mode:"overlay",position:"start",mini:!1,dir:"ltr",width:240,miniWidth:50}),so=o(4703),co=function(){return co=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},co.apply(this,arguments)},lo=n.forwardRef((function(t,e){var o=t.className,r=t.style,s=t.text,c=t.icon,l=t.svgIcon,h=t.separator,p=t.disabled,u=t.selected,v=t.onSelect,d=t.index,f=t.tabIndex,m=t.children,y=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["className","style","text","icon","svgIcon","separator","disabled","selected","onSelect","index","tabIndex","children"]),g=n.useContext(ao),b=g.expanded,x=g.mini,w=g.item,_=n.useRef(null),z=n.useCallback((function(){_.current&&_.current.focus()}),[]);n.useImperativeHandle(e,(function(){return{element:_.current,focus:z,props:t}}));var C=(0,a.A)("k-drawer-item",{"k-selected":u,"k-disabled":p},o),k=n.useCallback((function(e){if(v&&!p){var o={element:_.current,focus:z,props:t};v(o,d,e)}}),[v,d,p]),M=n.createElement(n.Fragment,null,(c||l)&&n.createElement(i.a,{name:c?(0,st.iJ)(c):c,icon:l}),!b&&x?null:n.createElement("span",{className:"k-item-text"},s));return h?n.createElement("li",{className:"k-drawer-item k-drawer-separator",role:"separator"}):n.createElement("li",co({ref:_,className:C,style:r,role:"menuitem","aria-label":s,"aria-disabled":p,onClick:k,tabIndex:(0,so.p)(f,p)},y),w?m:M)}));lo.propTypes={className:P.string,style:P.object,text:P.string,icon:P.string,svgIcon:st.wi,separator:P.bool,selected:P.bool,disabled:P.bool,targetItem:P.any},lo.displayName="KendoDrawerItem";var ho=function(){return ho=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},ho.apply(this,arguments)},po={type:"slide",duration:200},uo={type:"slide",duration:0},vo=n.forwardRef((function(t,e){var o=t.children,r=t.className,i=t.style;(0,ct.s)(Ft);var s=(0,ct.G)(Ft),c=n.useContext(ao),l=c.animation,h=c.expanded,p=c.mode,u=c.position,v=c.onOverlayClick,d=c.mini,f=c.dir,m=c.width,y=c.miniWidth,g=c.items,b=c.item,x=c.onSelect,w=n.useRef(null),_=n.useCallback((function(){w.current&&w.current.focus()}),[]),z="boolean"!=typeof l?l:!1===l?uo:po,C=m||240,k=y||50;n.useImperativeHandle(e,(function(){return{element:w.current,focus:_}}));var M=n.useMemo((function(){return"k-widget k-drawer "+(0,a.A)({"k-drawer-start":"start"===u,"k-drawer-end":"end"===u},r)}),[u]),O={opacity:1,flexBasis:C,WebkitTransition:"all "+(z&&z.duration)+"ms",transition:"all "+(z&&z.duration)+"ms"},S={opacity:1,transform:"translateX(0px)",WebkitTransition:"all "+(z&&z.duration)+"ms",transition:"all "+(z&&z.duration)+"ms"},H={opacity:d?1:0,flexBasis:d?k:0,WebkitTransition:"all "+(z&&z.duration)+"ms",transition:"all "+(z&&z.duration)+"ms"},P={opacity:0,transform:"translateX(-100%)",WebkitTransition:"all "+(z&&z.duration)+"ms",transition:"all "+(z&&z.duration)+"ms"},I={opacity:0,transform:"translateX(100%)",WebkitTransition:"all "+(z&&z.duration)+"ms",transition:"all "+(z&&z.duration)+"ms"},A={transform:"translateX(0%)",WebkitTransitionDuration:(z&&z.duration)+"ms",transitionDuration:(z&&z.duration)+"ms"},V=h?"push"===p?O:S:"push"===p?H:"ltr"===f&&"start"===u||"rtl"===f&&"end"===u?d?A:P:d?A:I,E=g&&n.createElement("ul",{className:"k-drawer-items",role:"menubar","aria-label":"drawer-list","aria-expanded":h},g.map((function(t,e){var o=ho(ho({index:e},t),{onSelect:x}),r=b||lo;return n.createElement(r,ho({key:e},o))}))),T=n.createElement("div",{style:z?ho(ho({},V),i):i,className:M,ref:w},n.createElement("div",{className:"k-drawer-wrapper",style:!h&&d&&"overlay"===p?{width:k}:{width:C}},E||o),s&&n.createElement(Nt.t,null));return"overlay"===p?n.createElement(n.Fragment,null,h&&n.createElement("div",{className:"k-overlay",onClick:v}),T):T}));vo.propTypes={children:P.any,className:P.string,style:P.object,item:P.any,tabIndex:P.number},vo.displayName="KendoDrawerNavigation";var fo=o(8199),mo=n.forwardRef((function(t,e){(0,ct.s)(Ft);var o=t.expanded,r=t.mode,i=t.position,s=t.className,c=t.children,l=t.style,h=t.animation,p=t.mini,u=t.width,v=t.miniWidth,d=t.items,f=t.item,m=t.tabIndex,y=t.onOverlayClick,g=t.onSelect,b=n.useRef(null),x=n.useCallback((function(){b.current&&b.current.focus()}),[]);n.useImperativeHandle(e,(function(){return{element:b.current,focus:x}}));var w=n.useCallback((function(t,e,o){if(d&&g){var n={itemTarget:t,itemIndex:e,syntheticEvent:o,nativeEvent:o&&o.nativeEvent,target:void 0};g.call(void 0,n)}}),[d,g]),_=(0,fo.n)(b,t.dir),z=(0,a.A)({"k-drawer-container":!0,"k-drawer-expanded":o,"k-drawer-overlay":"overlay"===r,"k-drawer-push":"push"===r,"k-drawer-mini":p},s);return n.createElement(ao.Provider,{value:{animation:h,expanded:o,mode:r,position:i,mini:p,dir:_,items:d,item:f,width:u,miniWidth:v,onOverlayClick:y,onSelect:w}},n.createElement("div",{className:z,ref:b,dir:_,style:l,tabIndex:m},d&&n.createElement(vo,null),c))}));mo.propTypes={animation:P.any,expanded:P.bool,children:P.any,className:P.string,dir:P.string,mode:P.string,position:P.string,mini:P.bool,style:P.object,tabIndex:P.number,width:P.number,miniWidth:P.number,selected:P.number,onSelect:P.func,onOverlayClick:P.func},mo.defaultProps={animation:!0,expanded:!1,mode:"overlay",position:"start",mini:!1,dir:"ltr",width:240,miniWidth:50},mo.displayName="KendoDrawer";var yo=n.forwardRef((function(t,e){var o=t.children,r=t.className,i=t.style,s=n.useRef(null);n.useImperativeHandle(e,(function(){return{element:s.current}}));var c=(0,a.A)({"k-drawer-content":!0},r);return n.createElement("div",{className:c,style:i,ref:s},o)}));yo.propTypes={children:P.any,className:P.string,style:P.object},yo.displayName="KendoDrawerContent";var go,bo=n.createContext({linear:!1,mode:"steps",value:0}),xo=o(9124),wo=o(1573),_o="stepper.optionalText",zo="stepper.progBarAriaLabel",Co=((go={})[_o]="(Optional)",go[zo]="progressbar",go),ko=function(){return ko=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},ko.apply(this,arguments)},Mo=n.forwardRef((function(t,e){var o=t.children,r=t.className,s=t.current,c=t.disabled,l=t.focused,h=t.icon,p=t.svgIcon,u=t.index,v=t.isValid,d=t.label,f=t.optional,m=t.style,y=t.tabIndex,g=t.text,b=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["children","className","current","disabled","focused","icon","svgIcon","index","isValid","label","optional","style","tabIndex","text"]),x=n.useContext(bo),w=x.animationDuration,_=x.isVertical,z=x.item,C=x.linear,k=x.mode,M=x.numOfSteps,O=x.value,S=x.onChange,H=x.onFocus,P=x.successIcon,I=x.errorIcon,A=x.successSVGIcon,V=x.errorSVGIcon,E=n.useRef(null),T=n.useCallback((function(){E.current&&(0,xo.n)(E.current)}),[]),B=n.useCallback((function(){return{element:E.current,focus:T}}),[T]);n.useImperativeHandle(e,B);var j,L=!C||u===O-1||u===O||u===O+1,R="labels"===k||Boolean(h)&&Boolean(d),D=(0,Fe.useLocalization)(),U=(j=_o,D.toLanguageString(j,Co[j])),W="number"==typeof w?w:!1!==w?400:0,G=n.useCallback((function(t){S&&!c&&(0,ye.N)(S,t,B(),{value:u})}),[S,O,c]),K=n.useCallback((function(t){H&&!c&&(0,ye.N)(H,t,B(),void 0)}),[H,c]),X=n.useMemo((function(){return(0,a.A)("k-step",{"k-step-first":0===u,"k-step-last":M&&u===M-1,"k-step-done":u<O,"k-step-current":s,"k-step-optional":f,"k-step-error":void 0!==v&&!v,"k-step-success":v},{"k-disabled":c,"k-focus":l},r)}),[u,M,O,s,f,c,l,v,r]),Z=n.useMemo((function(){return ko({maxWidth:_?void 0:"calc(100% / ".concat(M,")"),maxHeight:_?"calc(100% / ".concat(M,")"):void 0,pointerEvents:L?void 0:"none"},m)}),[_,M,m,L]),Y=v?P:I,q=Y?n.createElement("span",{className:"k-step-indicator-icon "+Y,"aria-hidden":"true"}):n.createElement(i.a,{className:"k-step-indicator-icon",name:v?"check-circle":"exclamation-circle",icon:v?A||N:V||F}),Q=n.createElement(n.Fragment,null,"labels"!==k?n.createElement("span",{className:"k-step-indicator","aria-hidden":!0,style:{transitionDuration:W+"ms"}},h||p?R||void 0===v?n.createElement(i.a,{className:"k-step-indicator-icon",name:h?(0,st.iJ)(h):h,icon:p}):q:void 0!==v?q:n.createElement("span",{className:"k-step-indicator-text"},g||u+1)):null),J=n.createElement("span",{className:"k-step-label"},d&&n.createElement("span",{className:"k-step-text"},d),R&&void 0!==v&&q,f&&n.createElement("span",{className:"k-step-label-optional"},U)),$=n.createElement(n.Fragment,null,Q,J);return n.createElement("li",ko({ref:E,className:X,style:Z},b),n.createElement("a",{className:"k-step-link",title:d||void 0,onClick:G,onFocus:K,tabIndex:y||(l?0:-1),"aria-current":s,"aria-disabled":c||!L||void 0,"aria-invalid":void 0!==v&&!v||void 0},z?o:$))}));Mo.propTypes={children:P.any,className:P.string,current:P.bool,disabled:P.bool,icon:P.string,index:P.number,isValid:P.bool,label:P.string,optional:P.bool,style:P.object,tabIndex:P.number,text:P.string},Mo.defaultProps={tabIndex:0},Mo.displayName="KendoStep";var Oo=function(t,e,o){var n=Math.abs((e-t)/100);return Math.abs((o-t)/n)},So=function(t,e,o,n){var r=Math.max(o,.01),i=100/r*100;t.current&&e.current&&(t.current.style.width=n?"100%":"".concat(r,"%"),e.current.style.width=n?"100%":"".concat(i,"%"),t.current.style.height=n?"".concat(r,"%"):"100%",e.current.style.height=n?"".concat(i,"%"):"100%")},Ho={name:"@progress/kendo-react-progressbars",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:1700063549,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"},Po=function(){return Po=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Po.apply(this,arguments)},Io=n.forwardRef((function(t,e){(0,ct.s)(Ho);var o=t.animation,r=t.disabled,i=t.reverse,s=void 0===i?Ao.reverse:i,c=t.orientation,l=t.labelVisible,h=t.labelPlacement,p=t.max,u=void 0===p?Ao.max:p,v=t.min,d=void 0===v?Ao.min:v,f=t.tabIndex,m=t.className,y=t.style,g=t.emptyStyle,b=t.emptyClassName,x=t.progressStyle,w=t.progressClassName,_=n.useRef(null),z=n.useRef(null),C=n.useRef(null),k=n.useCallback((function(){_.current&&_.current.focus()}),[]);n.useImperativeHandle(e,(function(){return{element:_.current,progressStatusElement:z.current,progressStatusWrapElement:C.current,focus:k}}));var M,O,S,H,P,I=t.value||Ao.value,A=function(t){var e=n.useRef();return n.useEffect((function(){e.current=t})),e.current}(I),V=null===t.value,E=(0,wo.V)(_,t.dir),T="vertical"===c,B=function(t){var e=t.toString().split(".");return 1===e.length?"".concat(e[0]):"".concat(e[0],".").concat(e[1].substr(0,3))}(I),j={value:I},L=l?t.label?n.createElement("span",{className:"k-progress-status"},n.createElement(t.label,Po({},j))):n.createElement("span",{className:"k-progress-status"},B):void 0,R={className:(0,a.A)("k-progressbar",{"k-progressbar-horizontal":!T,"k-progressbar-vertical":T,"k-progressbar-reverse":s,"k-progressbar-indeterminate":V,"k-disabled":r},m),ref:_,dir:E,tabIndex:(0,so.p)(f,r),role:"progressbar","aria-label":t.ariaLabel,"aria-valuemin":d,"aria-valuemax":u,"aria-valuenow":V?void 0:I,"aria-disabled":r,style:y},D=(0,a.A)("k-progress-status-wrap",{"k-progress-start":"start"===h,"k-progress-center":"center"===h,"k-progress-end":"end"===h||void 0===h}),N="boolean"!=typeof o&&void 0!==o?o.duration:o?400:0,F=n.useCallback((function(){var t=Oo(d,u,A);So(z,C,t,T)}),[T,u,d,A]),U=n.useCallback((function(t){var e=Oo(d,u,A+(I-A)*t);So(z,C,e,T)}),[d,u,A,I,T]),W=n.useCallback((function(){var t=Oo(d,u,I);So(z,C,t,T)}),[T,u,d,I]);return M={duration:N,onStart:F,onUpdate:U,onEnd:W},O=[I,N],S=n.useRef(0),H=n.useRef(!1),P=n.useRef(),n.useEffect((function(){return function(t){var e,o=t.duration,n=S.current&&1-S.current;t.onStart&&t.onStart();var r=function(i){e||(e=i);var a=(i-e+1)/o+n;a<=1?(t.onUpdate&&t.onUpdate(a),P.current=window.requestAnimationFrame(r),S.current=a):(t.onEnd&&t.onEnd(1),S.current=0)};P.current=window.requestAnimationFrame(r)}(M),function(){P.current&&window.cancelAnimationFrame(P.current)}}),O),n.useEffect((function(){H.current=!0}),[]),n.createElement("div",Po({},R),n.createElement("span",{className:D+(b?" "+b:""),style:g},L),n.createElement("div",{className:"k-progressbar-value k-selected",style:x,ref:z},n.createElement("span",{className:D+(w?" "+w:""),ref:C},L)))}));Io.propTypes={animation:P.any,ariaLabel:P.string,disabled:P.bool,reverse:P.bool,label:P.any,labelVisible:P.bool,labelPlacement:P.oneOf(["start","center","end"]),max:P.number,min:P.number,value:P.number,tabIndex:P.number,emptyStyle:P.object,emptyClassName:P.string,progressStyle:P.object,progressClassName:P.string};var Ao={animation:!1,min:0,max:100,value:0,disabled:!1,reverse:!1,labelVisible:!0};Io.defaultProps=Ao,Io.displayName="KendoProgressBar";var Vo=function(){return Vo=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Vo.apply(this,arguments)},Eo=n.forwardRef((function(t,e){(0,ct.s)(Ft);var o=t.animationDuration,r=t.children,i=t.className,s=t.disabled,c=t.errorIcon,l=t.errorSVGIcon,h=t.item,p=t.items,u=t.linear,v=t.mode,d=t.orientation,f=t.style,m=t.successIcon,y=t.successSVGIcon,g=t.onChange,b=t.onFocus,x=(0,Fe.useLocalization)().toLanguageString(zo,Co[zo]),w=n.useRef(null),_=n.useCallback((function(){w.current&&(0,xo.n)(w.current)}),[]),z=n.useCallback((function(){return{element:w.current,focus:_}}),[_]);n.useImperativeHandle(e,z);var C=t.value||To.value,k=n.useState(C),M=k[0],O=k[1],S=p?p.length:0,H="vertical"===d,P=(0,wo.V)(w,t.dir),I="number"==typeof o?o:!1!==o?400:0;n.useEffect((function(){O(C)}),[C]);var A=n.useCallback((function(t,e){C!==e&&g&&!s&&(!u||e===C-1||e===C||e===C+1)&&((0,ye.N)(g,t,z(),{value:e}),O(e))}),[C,u,g,s,O]),V=n.useCallback((function(t){var e=t.value,o=t.syntheticEvent;A(o,e)}),[A]),E=n.useCallback((function(t){b&&!s&&(0,ye.N)(b,t.syntheticEvent,z(),void 0)}),[b,s]),T=n.useCallback((function(t){A(t,M)}),[A,M]),B=n.useCallback((function(t){var e="rtl"===P,o=M,n=p.length-1;switch(t.keyCode){case $.R.left:t.preventDefault(),!e&&o>0&&O(o-1),e&&o<n&&O(o+1);break;case $.R.right:t.preventDefault(),!e&&o<n&&O(o+1),e&&o>0&&O(o-1);break;case $.R.up:t.preventDefault(),!e&&o>0&&O(o-1),e&&o>0&&O(o-1);break;case $.R.down:t.preventDefault(),!e&&o<n&&O(o+1),e&&o<n&&O(o+1);break;case $.R.home:t.preventDefault(),O(0);break;case $.R.end:t.preventDefault(),O(n);break;case $.R.space:t.preventDefault();break;case $.R.enter:t.preventDefault(),p[o].disabled||T(t)}}),[p,O,M,P,T]),j=n.useMemo((function(){return(0,a.A)("k-stepper",{"k-stepper-linear":u},i)}),[u,i]),L=n.useMemo((function(){return Vo({display:"grid",gridTemplateColumns:H?void 0:"repeat("+2*S+", 1fr)",gridTemplateRows:H?"repeat("+S+", 1fr)":void 0},f)}),[H,S,f]),R=n.useMemo((function(){return(0,a.A)("k-step-list",{"k-step-list-horizontal":!H,"k-step-list-vertical":H})}),[H]),D=n.useMemo((function(){return{gridColumnStart:H?void 0:1,gridColumnEnd:H?void 0:-1,gridRowStart:H?1:void 0,gridRowEnd:H?-1:void 0}}),[H]),N=n.useMemo((function(){return{gridColumnStart:H?void 0:2,gridColumnEnd:H?void 0:2*S,gridRowStart:H?1:void 0,gridRowEnd:H?S:void 0,top:H?17:void 0}}),[H,S]),F=p&&p.map((function(t,e){var o=Vo({index:e,disabled:s||t.disabled,focused:e===M,current:e===C},t),r=h||Mo;return n.createElement(r,Vo({key:e},o))}));return n.createElement(bo.Provider,{value:{animationDuration:o,isVertical:H,item:h,linear:u,mode:v,numOfSteps:S,value:C,successIcon:m,successSVGIcon:y,errorIcon:c,errorSVGIcon:l,onChange:V,onFocus:E}},n.createElement("nav",{className:j,style:L,dir:P,onKeyDown:B},n.createElement("ol",{className:R,style:D},F||r),n.createElement(Io,{style:N,animation:{duration:I},ariaLabel:x,"aria-hidden":!0,max:S-1,labelVisible:!1,orientation:d,reverse:"vertical"===d,value:C,disabled:s,tabIndex:-1})))}));Eo.propTypes={animationDuration:P.oneOfType([P.bool,P.number]),children:P.any,className:P.string,dir:P.string,disabled:P.bool,errorIcon:P.string,errorSVGIcon:st.wi,item:P.any,items:P.any,linear:P.bool,mode:P.oneOf(["steps","labels"]),orientation:P.oneOf(["horizontal","vertical"]),style:P.object,successIcon:P.string,successSVGIcon:st.wi,value:P.number.isRequired,onChange:P.func,onFocus:P.func};var To={value:0};Eo.defaultProps=To,Eo.displayName="KendoStepper";var Bo=n.forwardRef((function(t,e){(0,ct.s)(Ft);var o=t.children,r=t.className,i=t.style,s=t.id,c=n.useRef(null),l=n.useCallback((function(){c.current&&(0,xo.n)(c.current)}),[]),h=n.useCallback((function(){return{element:c.current,focus:l}}),[l]);n.useImperativeHandle(e,h);var p=n.useMemo((function(){return(0,jt.M)()}),[]),u=n.useMemo((function(){return t.themeColor||jo.themeColor}),[t.themeColor]),v=n.useMemo((function(){return t.position||jo.position}),[t.position]),d=n.useMemo((function(){return t.positionMode||jo.positionMode}),[t.positionMode]),f=n.useMemo((function(){return(0,a.A)("k-appbar",{"k-appbar-top":"top"===v,"k-appbar-bottom":"bottom"===v,"k-appbar-static":"static"===d,"k-appbar-sticky":"sticky"===d,"k-appbar-fixed":"fixed"===d,"k-appbar-light":"light"===u,"k-appbar-dark":"dark"===u,"k-appbar-inherit":"inherit"===u},r)}),[v,d,u,r]);return n.createElement("div",{className:f,style:i,id:s||p},o)}));Bo.propTypes={children:P.any,className:P.string,style:P.object,id:P.string,themeColor:P.string,position:P.oneOf(["top","bottom"]),positionMode:P.oneOf(["static","sticky","fixed"])};var jo={themeColor:"light",position:"top",positionMode:"static"};Bo.displayName="KendoAppBar";var Lo=n.forwardRef((function(t,e){var o=t.children,r=t.className,i=t.style,s=n.useRef(null),c=n.useCallback((function(){s.current&&(0,xo.n)(s.current)}),[]),l=n.useCallback((function(){return{element:s.current,focus:c}}),[c]);n.useImperativeHandle(e,l);var h=n.useMemo((function(){return(0,a.A)("k-appbar-section",r)}),[r]);return n.createElement("div",{className:h,style:i},o)}));Lo.propTypes={children:P.any,className:P.string,style:P.object},Lo.displayName="KendoAppBarSection";var Ro=n.forwardRef((function(t,e){var o=t.children,r=t.className,i=t.style,s=n.useRef(null),c=n.useCallback((function(){s.current&&(0,xo.n)(s.current)}),[]),l=n.useCallback((function(){return{element:s.current,focus:c}}),[c]);n.useImperativeHandle(e,l);var h=n.useMemo((function(){return(0,a.A)("k-appbar-spacer",{"k-appbar-spacer-sized":i&&i.width&&null!==i.width},r)}),[r,i]),p=n.useMemo((function(){return{flexBasis:i&&i.width?i.width:void 0}}),[i]);return n.createElement("span",{className:h,style:p},o)}));Ro.propTypes={children:P.any,className:P.string,style:P.object},Ro.displayName="KendoAppBarSpacer";var Do=o(9659),No=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Fo=function(){return Fo=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Fo.apply(this,arguments)},Uo=function(t){return n.createElement(tt._,{onPress:t.onPress,onDrag:function(e){t.onResize(e.event,!1,t.d)},onRelease:function(e){t.onResize(e.event,!0,t.d)}},n.createElement("div",{className:"k-resize-handle k-cursor-"+t.d+"-resize",style:Fo({bottom:0,right:0},t.style)}))},Wo=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.handleResize=function(t,o,n){t.originalEvent.preventDefault(),e.props.onResize(t,{end:o,direction:n})},e}return No(e,t),e.prototype.render=function(){var t=this.props,e=t.resizable,o=t.onPress,r=t.rtl;return e?n.createElement(n.Fragment,null,"vertical"!==e&&n.createElement(Uo,{onPress:o,onResize:this.handleResize,d:"ew",style:r?{top:0,width:9,left:0,right:""}:{top:0,width:9,right:0,left:""}}),"horizontal"!==e&&n.createElement(Uo,{onPress:o,onResize:this.handleResize,d:"ns",style:{left:0,height:9}}),!0===e&&n.createElement(Uo,{onPress:o,onResize:this.handleResize,d:r?"nesw":"nwse",style:r?{width:9,height:9,right:"",left:0}:{width:9,height:9,right:0,left:""}})):null},e}(n.Component),Go=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Ko=function(){return Ko=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Ko.apply(this,arguments)},Xo=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.state={rtl:!1},e.oldSize={},e.draggable=null,e.dragging=!1,e.resizing=!1,e.element=null,e.hintElement=null,e.ignoreDrag=!1,e.pressOffset={x:0,y:0},e.pressXY={x:0,y:0},e.currentTranslate={x:0,y:0},e.preventDataOps=void 0,e.handleResize=function(t,o){if(o.end)e.handleRelease();else if(e.element&&e.hintElement){var n=t.clientX,r=t.clientY;e.resizing=!0;var i=("ns"!==o.direction?n-e.pressXY.x:0)*(e.state.rtl?-1:1),a="ew"!==o.direction?r-e.pressXY.y:0;if(e.dragElement&&(e.state.rtl?e.dragElement.style.marginLeft=-i+"px":e.dragElement.style.marginRight=-i+"px",e.dragElement.style.height="calc(100% + ".concat(a,"px)")),e.hintElement.classList.add("k-layout-item-hint-resize"),!e.preventDataOps){var s=0,c=0,l=e.element.getBoundingClientRect();i>l.width/e.props.defaultPosition.colSpan/3&&(s=1),i<-l.width/e.props.defaultPosition.colSpan/1.25&&(s=-1),a>l.height/e.props.defaultPosition.rowSpan/3&&(c=1),a<-l.height/e.props.defaultPosition.rowSpan/1.25&&(c=-1),0===s&&0===c||e.props.update(e.props.index,0,0,c,s)}}},e.handlePress=function(t){if(e.dragElement)if(e.pressXY={x:t.event.clientX,y:t.event.clientY},e.ignoreDrag=!1,e.props.ignoreDrag&&e.props.ignoreDrag(t.event.originalEvent))e.ignoreDrag=!0;else{e.element&&e.hintElement&&(e.element.style.zIndex="10",e.hintElement.style.display="block"),e.dragElement.classList.remove("k-cursor-grab"),e.dragElement.classList.add("k-cursor-grabbing");var o=e.dragElement.getBoundingClientRect();e.pressOffset={x:t.event.clientX-o.x,y:t.event.clientY-o.y}}},e.handleDrag=function(t){if(!e.ignoreDrag){var o=e.dragElement;if(!t.event.originalEvent.defaultPrevented&&o){e.dragging=!0,t.event.originalEvent.preventDefault();var n=o.getBoundingClientRect();if(e.currentTranslate={x:t.event.clientX-n.x-e.pressOffset.x+e.currentTranslate.x,y:t.event.clientY-n.y-e.pressOffset.y+e.currentTranslate.y},o.style.transform="translate(".concat(e.currentTranslate.x,"px, ").concat(e.currentTranslate.y,"px)"),o.style.transition="transform 0s",!e.preventDataOps){var r=0,i=0;e.currentTranslate.y>.7*n.height/e.props.defaultPosition.rowSpan&&(i=1),e.currentTranslate.y<.7*-n.height/e.props.defaultPosition.rowSpan&&(i=-1),e.currentTranslate.x>.7*n.width/e.props.defaultPosition.colSpan&&(r=1),e.currentTranslate.x<.7*-n.width/e.props.defaultPosition.colSpan&&(r=-1),e.props.update(e.props.index,i,e.state.rtl?-r:r,0,0)}}}},e.handleRelease=function(){e.dragging=e.resizing=!1,e.currentTranslate={x:0,y:0},e.element&&e.hintElement&&(e.element.style.zIndex="1",e.hintElement.classList.remove("k-layout-item-hint-resize"),e.hintElement.style.display="none");var t=e.dragElement;t&&(t.style.transform="translate(0px, 0px)",t.style.transition="transform ".concat(200,"ms cubic-bezier(0.2, 0, 0, 1) 0s"),t.style.marginRight="0px",t.style.marginLeft="0px",t.style.height="100%",t.classList.remove("k-cursor-grabbing"),t.classList.add("k-cursor-grab"))},e}return Go(e,t),Object.defineProperty(e.prototype,"reorderable",{get:function(){return void 0!==this.props.reorderable?this.props.reorderable:e.defaultProps.reorderable},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dragElement",{get:function(){return this.draggable?this.draggable.element:void 0},enumerable:!1,configurable:!0}),e.prototype.componentDidMount=function(){this.element&&("rtl"===getComputedStyle(this.element).direction&&this.setState({rtl:!0}),this.hintElement&&(this.hintElement.style.height=this.element.offsetHeight+"px",this.hintElement.style.width=this.element.offsetWidth+"px"))},e.prototype.render=function(){var t=this;clearTimeout&&"function"==typeof clearTimeout&&(clearTimeout(this.preventDataOps),this.preventDataOps=window.setTimeout((function(){t.preventDataOps=void 0}),200));var o=this.props.defaultPosition,r=void 0!==this.props.resizable?this.props.resizable:e.defaultProps.resizable,i=Ko({gridColumnStart:o.col,gridColumnEnd:"span ".concat(o.colSpan),gridRowStart:o.row,gridRowEnd:"span ".concat(o.rowSpan),outline:"none",order:o.order,display:"none"},this.props.hintStyle),s={gridColumnStart:o.col,gridColumnEnd:"span ".concat(o.colSpan),gridRowStart:o.row,gridRowEnd:"span ".concat(o.rowSpan),order:o.order},c=n.createElement("div",{ref:function(e){t.draggable=e?{element:e}:null},className:(0,a.A)("k-tilelayout-item k-card",{"k-cursor-grab":this.reorderable},this.props.className),style:Ko(Ko({height:"100%"},s),this.props.style)},this.props.children,n.createElement(Wo,{onPress:this.handlePress,onResize:this.handleResize,resizable:r,rtl:this.state.rtl}));return n.createElement("div",{ref:function(e){t.element=e},style:s},n.createElement("div",{ref:function(e){t.hintElement=e},style:Ko({position:"absolute"},i),className:(0,a.A)("k-layout-item-hint",this.props.hintClassName)}),n.createElement(tt._,{ref:function(e){t.draggable=e},onDrag:this.props.reorderable?this.handleDrag:void 0,onRelease:this.props.reorderable?this.handleRelease:void 0,onPress:this.props.reorderable?this.handlePress:void 0},c))},e.prototype.getSnapshotBeforeUpdate=function(t){return this.oldSize={},this.dragElement&&(this.oldSize=this.dragElement.getBoundingClientRect()),null},e.prototype.componentDidUpdate=function(t){var e=this,o=this.dragElement;if(o){var n=o.getBoundingClientRect(),r=this.oldSize;if(this.resizing){var i=n.width-r.width;if(this.state.rtl){var a=parseFloat(o.style.marginLeft||"0");o.style.marginLeft=a-i+"px"}else a=parseFloat(o.style.marginRight||"0"),o.style.marginRight=a+i+"px";this.pressXY.x+=this.state.rtl?-i:i;var s=n.height-r.height,c=parseFloat(o.style.height.substring(12));o.style.height="calc(100% + ".concat(c+s,"px)"),this.pressXY.y+=s}var l=r.left-n.left,h=r.top-n.top;0===l&&0===h||(this.dragging?t.defaultPosition.order===this.props.defaultPosition.order&&t.defaultPosition.col===this.props.defaultPosition.col||(this.currentTranslate.x=0,this.currentTranslate.y=0,o.style.transform=""):Math.abs(h)<15&&Math.abs(l)<15||requestAnimationFrame((function(){var t=e.element;t&&(t.style.transform="translate(".concat(l,"px, ").concat(h,"px)"),t.style.transition="transform 0s",requestAnimationFrame((function(){t.style.transform="",t.style.transition="transform ".concat(200,"ms cubic-bezier(0.2, 0, 0, 1) 0s")})))})))}},e.propTypes={defaultPosition:P.object.isRequired,style:P.object,className:P.string,hintStyle:P.object,hintClassName:P.string,header:P.any,body:P.any,item:P.any,resizable:P.oneOf(["horizontal","vertical",!0,!1]),reorderable:P.bool},e.displayName="KendoTileLayoutItem",e.defaultProps={resizable:!0,reorderable:!0},e}(n.Component),Zo=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Yo=function(){return Yo=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Yo.apply(this,arguments)},qo={column:"k-grid-flow-col",row:"k-grid-flow-row","column dense":"k-grid-flow-col-dense","row dense":"k-grid-flow-row-dense",unset:"k-grid-flow-unset"},Qo=function(t){function e(e){var o=t.call(this,e)||this;return o._element=null,o.state={positions:(o.props.items||[]).map((function(t,e){return Object.assign({order:e,rowSpan:1,colSpan:1},t.defaultPosition)}))},o.showLicenseWatermark=!1,o.focus=function(){o._element&&o._element.focus()},o.update=function(t,e,n,r,i){if(void 0===r&&(r=0),void 0===i&&(i=0),0!==e||0!==n||i||r){var a=!1,s=o.state.positions.map((function(t){return Object.assign({},t)})),c=s[t],l=s.find((function(t){return t.order===c.order+e}));l&&l!==c&&(c.order+=e,l.order+=-e,a=!0);var h=c.col+n;0!==n&&h>=1&&h+c.colSpan<=(o.props.columns||3)+1&&(c.col=h,a=!0);var p=c.colSpan+i;i&&p>=1&&p+c.col<=(o.props.columns||3)+1&&(c.colSpan=p,a=!0);var u=c.rowSpan+r;r&&u>=1&&(c.rowSpan=u,a=!0),a&&(o.setState({positions:s}),(0,ye.N)(o.props.onReposition,{},o,{value:s}))}},(0,ct.s)(Ft),o.showLicenseWatermark=(0,ct.G)(Ft),o}return Zo(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this._element},enumerable:!1,configurable:!0}),e.getDerivedStateFromProps=function(t,e){return t.positions?{positions:t.positions.map((function(t,e){return Object.assign({order:e,rowSpan:1,colSpan:1},t)}))}:!t.items||e.positions&&t.items.length===e.positions.length?null:{positions:t.items.map((function(t,e){return Object.assign({order:e,rowSpan:1,colSpan:1},t.defaultPosition)}))}},e.prototype.render=function(){var t=this,e=this.props,o=e.className,r=e.columns,i=void 0===r?3:r,s=e.columnWidth,c=void 0===s?"1fr":s,l=e.gap,h=e.rowHeight,p=void 0===h?"1fr":h,u=e.style,v=e.autoFlow,d=void 0===v?"column":v,f=e.items,m=void 0===f?[]:f,y=l?"".concat("number"==typeof l.rows?l.rows+"px":l.rows)+" "+"".concat("number"==typeof l.columns?l.columns+"px":l.columns):16,g=Yo({gridTemplateColumns:"repeat(".concat(i,", minmax(0px, ").concat("number"==typeof c?c+"px":c,"))"),gridAutoRows:"minmax(0px, ".concat("number"==typeof p?p+"px":p,")"),gap:y,padding:y},u);return n.createElement("div",{ref:function(e){t._element=e},dir:this.props.dir,className:(0,a.A)("k-tilelayout k-pos-relative",qo[d],o),style:g,id:this.props.id,children:m.map((function(e,o){return n.createElement(n.Fragment,{key:t.props.dataItemKey?(0,Do.Y)(t.props.dataItemKey)(e):o},n.createElement(Xo,{update:t.update,defaultPosition:t.state.positions[o],index:o,resizable:e.resizable,reorderable:e.reorderable,style:e.style,className:e.className,hintClassName:e.hintClassName,hintStyle:e.hintStyle,ignoreDrag:t.props.ignoreDrag},e.item?e.item:n.createElement(n.Fragment,null,n.createElement("div",{className:"k-tilelayout-item-header k-card-header"},n.isValidElement(e.header)?e.header:n.createElement("h5",{className:"k-card-title"},e.header)),n.createElement("div",{className:"k-tilelayout-item-body k-card-body"},e.body))),t.showLicenseWatermark&&n.createElement(Nt.t,null))}))})},e.propTypes={id:P.string,style:P.object,className:P.string,dir:P.string,gap:P.object,columns:P.number,columnWidth:P.oneOfType([P.number,P.string]),rowHeight:P.oneOfType([P.number,P.string]),dataItemKey:P.string,items:P.array,positions:P.array,autoFlow:P.oneOf(["column","row","column dense","row dense","unset"]),onReposition:P.func,ignoreDrag:P.func},e.displayName="KendoTileLayout",e}(n.Component),Jo={vertical:"k-bottom-nav-item-flow-vertical",horizontal:"k-bottom-nav-item-flow-horizontal"},$o={fixed:"k-pos-fixed",sticky:"k-pos-sticky"},tn=n.forwardRef((function(t,e){(0,ct.s)(Ft);var o=n.useRef(null);n.useImperativeHandle(e,(function(){return{element:o.current}}));var r=t.className,s=t.style,c=t.selected,l=t.disabled,h=t.item,p=t.render,u=t.dataItem,v=t.icon,d=t.svgIcon,f=t.text,m=t.id,y=t.onSelect,g=t.onKeyDown,b=t.index,x=t.tabIndex,w=n.useMemo((function(){return(0,a.A)("k-bottom-nav-item",{"k-selected":c,"k-disabled":l},r)}),[c,l,r]),_=n.useCallback((function(t){y&&void 0!==b&&!l&&y(t,b)}),[y,b,l]),z=n.useCallback((function(t){g&&void 0!==b&&!l&&g(t,b)}),[g,b,l]),C=p,k=h,M=n.createElement("span",{ref:o,className:w,style:s,role:"link",id:m,tabIndex:x,onClick:_,onKeyDown:z,"aria-current":c,"aria-disabled":l},k?n.createElement(k,{itemIndex:b,item:u}):n.createElement(n.Fragment,null,(v||d)&&n.createElement(i.a,{className:"k-bottom-nav-item-icon",name:v,icon:d,size:"xlarge"}),f&&n.createElement("span",{className:"k-bottom-nav-item-text",style:{userSelect:"none"}},f)));return void 0!==C?C.call(void 0,M,t):M}));tn.propTypes={className:P.string,style:P.object,id:P.string,disabled:P.bool,selected:P.bool,icon:P.string,svgIcon:st.wi,text:P.string,tabIndex:P.number},tn.defaultProps={tabIndex:0},tn.displayName="KendoReactBottomNavigationItem";var en=function(){return en=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},en.apply(this,arguments)},on=n.forwardRef((function(t,e){(0,ct.s)(Ft);var o=n.useRef(null),r=n.useCallback((function(){o.current&&(0,xo.n)(o.current)}),[]),i=n.useCallback((function(){return{element:o.current,focus:r}}),[r]);n.useImperativeHandle(e,i);var s=t.positionMode,c=void 0===s?nn.positionMode:s,l=t.itemFlow,h=void 0===l?nn.itemFlow:l,p=t.border,u=void 0===p?nn.border:p,v=t.className,d=t.items,f=t.item,m=t.itemRender,y=t.disabled,g=t.style,b=t.id,x=t.onSelect,w=t.onKeyDown,_=n.useMemo((function(){return(0,jt.M)()}),[]),z=(0,fo.n)(o,t.dir),C=n.useMemo((function(){return null===t.fillMode||null===t.fill?null:t.fill||t.fillMode||nn.fillMode}),[t.fillMode,t.fill]),k=n.useMemo((function(){return t.themeColor||nn.themeColor}),[t.themeColor]),M=n.useMemo((function(){var t;return(0,a.A)("k-bottom-nav",$o[c],Jo[h],((t={})["k-bottom-nav-".concat(C)]=C,t["k-bottom-nav-".concat(C,"-").concat(k)]=Boolean(C&&k),t["k-bottom-nav-border"]=u,t["k-disabled"]=y,t),v)}),[c,k,C,h,u,y,v]),O=n.useCallback((function(t,e){d&&!d[e].disabled&&x&&(0,ye.N)(x,t,i(),{itemTarget:d[e],itemIndex:e})}),[d,x]),S=n.useCallback((function(t,e){O(t,e)}),[O]),H=n.useCallback((function(t,e){switch(t.keyCode){case $.R.enter:case $.R.space:O(t,e),t.preventDefault()}(0,ye.N)(w,t,i(),void 0)}),[O,w]);return n.createElement("nav",{ref:o,className:M,style:g,id:b||_,dir:z},d&&d.map((function(t,e){return n.createElement(tn,en({},t,{key:e,index:e,id:"".concat(b||_,"-").concat(e),disabled:y||t.disabled,selected:t.selected,dataItem:t,item:f,render:m,onSelect:S,onKeyDown:H}))})))})),nn={themeColor:"primary",fillMode:"flat",itemFlow:"vertical",positionMode:"fixed",border:!0};on.propTypes={className:P.string,style:P.object,id:P.string,dir:P.string,themeColor:P.oneOf(["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse"]),fill:P.oneOf(["solid","flat"]),fillMode:P.oneOf(["solid","flat"]),itemFlow:P.oneOf(["vertical","horizontal"]),border:P.bool,disabled:P.bool,selected:P.number,onSelect:P.func},on.defaultProps=nn,on.displayName="KendoReactBottomNavigation";var rn=o(9302),an=function(){return an=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},an.apply(this,arguments)},sn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useCallback((function(){return{element:o.current}}),[]);n.useImperativeHandle(e,r);var i=t.className,s=t.style,c=t.id,l=t.children,h=n.useMemo((function(){return(0,jt.M)()}),[]),p=n.useMemo((function(){return t.orientation||cn.orientation}),[t.orientation]),u="horizontal"===p,v=n.useMemo((function(){return t.align&&t.align.horizontal?t.align.horizontal:cn.hAlign}),[t.align]),d=n.useMemo((function(){return t.align&&t.align.vertical?t.align.vertical:cn.vAlign}),[t.align]),f=n.useMemo((function(){return(0,a.A)("k-stack-layout",{"k-hstack":"horizontal"===p,"k-vstack":"vertical"===p,"k-justify-content-start":u&&"start"===v||!u&&"top"===d,"k-justify-content-center":u&&"center"===v||!u&&"middle"===d,"k-justify-content-end":u&&"end"===v||!u&&"bottom"===d,"k-justify-content-stretch":u&&"stretch"===v||!u&&"stretch"===d,"k-align-items-start":!u&&"start"===v||u&&"top"===d,"k-align-items-center":!u&&"center"===v||u&&"middle"===d,"k-align-items-end":!u&&"end"===v||u&&"bottom"===d,"k-align-items-stretch":!u&&"stretch"===v||u&&"stretch"===d},i)}),[p,u,v,d,i]),m=an({gap:"".concat("number"==typeof t.gap?t.gap+"px":t.gap)},s);return n.createElement("div",{ref:o,className:f,style:m,id:c||h},l)})),cn={orientation:"horizontal",hAlign:"stretch",vAlign:"stretch"};sn.propTypes={className:P.string,style:P.object,children:P.any,id:P.string,orientation:P.oneOf(["horizontal","vertical"]),gap:P.oneOfType([P.string,P.number]),align:P.shape({vertical:P.oneOf(["top","middle","bottom","stretch"]),horizontal:P.oneOf(["start","center","end","stretch"])})},sn.defaultProps=cn,sn.displayName="KendoReactStackLayout";var ln=function(){return ln=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},ln.apply(this,arguments)},hn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useCallback((function(){return{element:o.current}}),[]);n.useImperativeHandle(e,r);var i=t.className,s=t.style,c=t.id,l=t.children,h=t.gap,p=n.useMemo((function(){return(0,jt.M)()}),[]),u=n.useMemo((function(){return t.align&&t.align.horizontal?t.align.horizontal:pn.hAlign}),[t.align]),v=n.useMemo((function(){return t.align&&t.align.vertical?t.align.vertical:pn.vAlign}),[t.align]),d=n.useMemo((function(){return(0,a.A)("k-grid-layout",{"k-justify-items-start":"start"===u,"k-justify-items-center":"center"===u,"k-justify-items-end":"end"===u,"k-justify-items-stretch":"stretch"===u,"k-align-items-start":"top"===v,"k-align-items-center":"middle"===v,"k-align-items-end":"bottom"===v,"k-align-items-stretch":"stretch"===v},i)}),[u,v,i]),f=h?"".concat("number"==typeof h.rows?h.rows+"px":h.rows)+" "+"".concat("number"==typeof h.cols?h.cols+"px":h.cols):void 0,m=t.rows&&t.rows.map((function(t){return"".concat("number"==typeof t.height?t.height+"px":t.height)})).join(" "),y=t.cols&&t.cols.map((function(t){return"".concat("number"==typeof t.width?t.width+"px":t.width)})).join(" "),g=ln({gap:f,gridTemplateColumns:y,gridTemplateRows:m},s);return n.createElement("div",{ref:o,className:d,style:g,id:c||p},l)})),pn={hAlign:"stretch",vAlign:"stretch",gap:void 0};hn.propTypes={className:P.string,style:P.object,children:P.any,id:P.string,gap:P.shape({rows:P.oneOfType([P.string,P.number]),columns:P.oneOfType([P.string,P.number])}),align:P.shape({vertical:P.oneOf(["top","middle","bottom","stretch"]),horizontal:P.oneOf(["start","center","end","stretch"])})},hn.defaultProps=pn,hn.displayName="KendoReactGridLayout";var un=function(){return un=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},un.apply(this,arguments)},vn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useCallback((function(){return{element:o.current}}),[]);n.useImperativeHandle(e,r);var i=t.className,a=t.style,s=t.id,c=t.children,l=t.row,h=t.col,p=t.rowSpan,u=t.colSpan,v=n.useMemo((function(){return(0,jt.M)()}),[]),d=un({gridArea:"".concat(l||"auto"," / ").concat(h||"auto"," / ").concat(p?"span "+p:"auto"," / ").concat(u?"span "+u:"auto")},a);return n.createElement("div",{ref:o,className:i,style:d,id:s||v},c)}));vn.propTypes={className:P.string,style:P.object,children:P.any,id:P.string},vn.displayName="KendoReactGridLayoutItem";var dn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useRef(null),i=n.useCallback((function(){r.current&&r.current.focus()}),[r]);return n.useImperativeHandle(o,(function(){return{element:r.current,focus:i,props:t}})),n.useImperativeHandle(e,(function(){return o.current})),n.createElement("li",{ref:r,id:t.id,style:t.style,className:(0,a.A)("k-breadcrumb-item",{"k-breadcrumb-root-item":t.isFirstItem,"k-breadcrumb-last-item":t.isLastItem},t.className)},t.children)})),fn={id:P.string,className:P.string,children:P.any,style:P.object};dn.displayName="KendoReactBreadcrumbListItem",dn.propTypes=fn;var mn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useRef(null);return n.useImperativeHandle(o,(function(){var e;return{element:(null===(e=r.current)||void 0===e?void 0:e.element)||null,props:t}})),n.useImperativeHandle(e,(function(){return o.current})),n.createElement(i.a,{ref:r,id:t.id,"aria-hidden":!0,tabIndex:t.tabIndex,style:t.style,name:"rtl"===t.dir?"chevron-left":"chevron-right",icon:"rtl"===t.dir?D:L,className:"k-breadcrumb-delimiter-icon",size:"xsmall"})})),yn={id:P.string,className:P.string,style:P.object,tabIndex:P.number,dir:P.string};mn.displayName="KendoReactBreadcrumbDelimiter",mn.propTypes=yn;var gn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useRef(null),i=n.useCallback((function(){r.current&&r.current.focus()}),[r]);n.useImperativeHandle(o,(function(){return{element:r.current,focus:i,props:t}})),n.useImperativeHandle(e,(function(){return o.current}));var s=n.useCallback((function(e){t.id&&(0,ye.N)(t.onItemSelect,e,e.target,{id:t.id})}),[t.onItemSelect]),c=n.useCallback((function(e){t.id&&(0,ye.N)(t.onKeyDown,e,e.target,{id:t.id})}),[t.onKeyDown]);return n.createElement("span",{"aria-current":t.ariaCurrent?t.ariaCurrent:t.isLast,role:"link",id:t.id,ref:r,style:t.style,dir:(0,fo.n)(r,t.dir),tabIndex:(0,so.p)(t.tabIndex,t.disabled),className:(0,a.A)({"k-breadcrumb-root-link":t.isFirst,"k-breadcrumb-link":!t.isFirst,"k-breadcrumb-icontext-link":void 0!==t.iconClass&&t.text,"k-breadcrumb-icon-link":void 0!==t.iconClass&&!t.text,"k-disabled":t.disabled}),onClick:s,onKeyDown:c},t.iconClass?n.createElement("span",{className:(0,a.A)("k-icon",t.iconClass)}):t.icon?t.icon:"",t.text&&n.createElement("span",{className:"k-breadcrumb-item-text"},t.text))})),bn={id:P.string,className:P.string,tabIndex:P.number,style:P.object,dir:P.string,disabled:P.bool,text:P.string,icon:P.node,iconClass:P.string,onClick:P.func,ariaCurrent:P.bool};gn.displayName="KendoReactBreadcrumbLink",gn.propTypes=bn;var xn=n.forwardRef((function(t,e){(0,rn.validatePackage)(Ft);var o=n.useRef(null),r=n.useRef(null);return n.useImperativeHandle(o,(function(){return{element:r.current,props:t}})),n.useImperativeHandle(e,(function(){return o.current})),n.createElement(n.Fragment,null,t.rootItem?n.createElement("ol",{id:t.id,ref:r,style:t.style,dir:(0,fo.n)(r,t.dir),tabIndex:(0,so.p)(t.tabIndex,t.disabled),className:(0,a.A)("k-breadcrumb-root-item-container",{"k-disabled":t.disabled},t.className)},t.children):n.createElement("ol",{id:t.id,ref:r,style:t.style,dir:(0,fo.n)(r,t.dir),tabIndex:(0,so.p)(t.tabIndex,t.disabled),className:(0,a.A)("k-breadcrumb-container !k-flex-wrap",{"k-disabled":t.disabled},t.className)},t.children))})),wn={id:P.string,className:P.string,children:P.element,tabIndex:P.number,style:P.object,dir:P.string,disabled:P.bool};xn.displayName="KendoReactBreadcrumbOrderedList",xn.propTypes=wn;var _n=function(){return _n=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},_n.apply(this,arguments)},zn=n.forwardRef((function(t,e){var o;(0,rn.validatePackage)(Ft);var r=n.useRef(null),i=n.useRef(null),s=n.useMemo((function(){return t.breadcrumbOrderedList||xn}),[t.breadcrumbOrderedList]),c=n.useMemo((function(){return t.breadcrumbListItem||dn}),[t.breadcrumbListItem]),l=n.useMemo((function(){return t.breadcrumbDelimiter||mn}),[t.breadcrumbDelimiter]),h=n.useMemo((function(){return t.breadcrumbLink||gn}),[t.breadcrumbLink]),p=n.useCallback((function(){i.current&&i.current.focus()}),[i]),u=n.useMemo((function(){return t.disabled||!1}),[t.disabled]);n.useImperativeHandle(r,(function(){return{element:i.current,focus:p,props:t}})),n.useImperativeHandle(e,(function(){return r.current}));var v=(0,fo.n)(i,t.dir),d=function(e){r.current&&(0,ye.N)(t.onItemSelect,e,e.target,{id:e.target.id})},f=function(e){r.current&&(0,ye.N)(t.onKeyDown,e,e.target,{id:e.target.id})},m=t.valueField||kn.valueField,y=t.iconField||kn.iconField,g=t.iconClassField||kn.iconClassField,b=t.textField||kn.textField,x=t.size||"medium";return n.createElement("nav",{"aria-label":t.ariaLabel,id:t.id,style:t.style,ref:i,dir:v,className:(0,a.A)("k-breadcrumb k-breadcrumb-wrap",(o={"k-rtl":"rtl"===v,"k-disabled":u,"k-breadcrumb-md":!t.size},o["k-breadcrumb-".concat(at.G.sizeMap[x]||x)]=x,o),t.className)},n.createElement(s,{rootItem:!0},n.createElement(n.Fragment,null,t.data.map((function(e,o,r){var i=e[m];if(0===o)return n.createElement(c,{key:i,isFirstItem:!0,isLastItem:r.length-1===o},n.createElement(h,_n({isLast:r.length-1===o,isFirst:!0,id:String(i),icon:e[y]||void 0,iconClass:e[g]?String(e[g]):void 0,text:e[b]?String(e[b]):void 0,disabled:e.disabled||!1,onItemSelect:d,onKeyDown:f},t)))})))),n.createElement(s,{rootItem:!1},n.createElement(n.Fragment,null,t.data.map((function(e,o,r){var i=e[m];if(0!==o)return n.createElement(c,{key:i,isFirstItem:!1,isLastItem:r.length-1===o},n.createElement(l,{dir:v}),n.createElement(h,_n({isLast:r.length-1===o,isFirst:!1,id:String(i),icon:e[y]||void 0,iconClass:e[g]?String(e[g]):void 0,text:e[b]?String(e[b]):void 0,disabled:e.disabled||!1,onItemSelect:d,onKeyDown:f},t)))})))))})),Cn={id:P.string,style:P.object,className:P.string,breadcrumbOrderedList:P.elementType,breadcrumbListItem:P.elementType,breadcrumbDelimiter:P.elementType,breadcrumbLink:P.elementType,data:P.arrayOf(P.shape({id:P.string,text:P.string,icon:P.any,iconClass:P.string})),dir:P.oneOf(["ltr","rtl"]),disabled:P.bool,valueField:P.string,textField:P.string,iconField:P.string,iconClassField:P.string,onItemSelect:P.func,ariaLabel:P.string},kn={valueField:"id",textField:"text",iconField:"icon",iconClassField:"iconClass"};zn.displayName="KendoReactBreadcrumb",zn.propTypes=Cn,zn.defaultProps=kn;var Mn=o(6604),On=function(t){var e=n.useRef(null),o=n.useCallback((function(e){t.onClick&&t.onClick.call(void 0,{syntheticEvent:e,item:t.item,title:t.title})}),[t.item,t.title,t.onClick]);return n.useEffect((function(){e.current&&t.focused&&e.current.focus()}),[t.focused]),n.createElement("span",{style:t.style,tabIndex:t.tabIndex,className:(0,a.A)("k-actionsheet-item","k-cursor-pointer",t.disabled&&"k-disabled",t.className),ref:e,role:"button","aria-disabled":t.disabled,onClick:o},n.createElement("span",{className:"k-actionsheet-action"},t.icon&&n.createElement("span",{className:"k-icon-wrap"},t.icon),(t.title||t.description)&&n.createElement("span",{className:"k-actionsheet-item-text"},t.title&&n.createElement("span",{className:"k-actionsheet-item-title"},t.title),t.description&&n.createElement("span",{className:"k-actionsheet-item-description"},t.description))))};On.propTypes={className:P.string,style:P.object,description:P.string,disabled:P.bool,group:P.oneOf(["top","bottom"]),icon:P.element,title:P.string};var Sn="ActionSheetHeader",Hn=function(t){return n.createElement("div",{className:(0,a.A)("k-actionsheet-titlebar",t.className)},t.children)};Hn.propTypes={className:P.string},Hn.displayName=Sn,Hn.propTypes={children:P.any};var Pn="ActionSheetFooter",In=function(t){return n.createElement("div",{className:(0,a.A)("k-actionsheet-footer",t.className)},t.children)};In.propTypes={className:P.string},In.displayName=Pn,In.propTypes={children:P.any};var An="ActionSheetContent",Vn=function(t){return n.createElement("div",{className:(0,a.A)("k-actionsheet-content",t.className)},t.children)};Vn.propTypes={className:P.string},Vn.displayName=An,Vn.propTypes={children:P.any};var En=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},t(e,o)};return function(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function n(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Tn=function(){return Tn=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Tn.apply(this,arguments)},Bn=function(t){function e(e){var o=t.call(this,e)||this;return o.actionSheetRef=n.createRef(),o.actionSheetTitleClass="k-actionsheet-title",o.ariaLabeledBy=o.actionSheetTitleClass+1,o.animationDuration=300,o.bottomPosition={bottom:"0",width:"100%"},o.handleKeyDown=function(t){o.props.navigatable&&o.navigation.triggerKeyboardEvent(t)},o.onTab=function(t,e,o){o.preventDefault(),o.shiftKey?e.focusPrevious(t):e.focusNext(t)},o.handleOverlayClick=function(t){o.props.onOverlayClick&&o.props.onOverlayClick.call(void 0,t),o.props.onClose&&o.props.onClose.call(void 0,t),o.props.animation||o.hideActionSheet()},o.handleItemClick=function(t){o.props.onItemClick&&o.props.onItemClick.call(void 0,t),o.props.onItemSelect&&o.props.onItemSelect.call(void 0,t),o.props.animation||o.hideActionSheet()},o.onEnter=function(t,e,n){if(!t.ariaDisabled){var r=!(!t.className||!t.className.indexOf)&&-1!==t.className.indexOf("k-actionsheet-item"),i=e.elements.filter((function(t){return-1!==t.className.indexOf("k-actionsheet-item")}));if(r&&o.props.onItemClick){n.preventDefault();var a=o.props.items[i.indexOf(t)];o.props.onItemClick.call(void 0,{syntheticEvent:n,item:a,title:a&&a.title})}r&&o.props.onItemSelect&&(n.preventDefault(),a=o.props.items[i.indexOf(t)],o.props.onItemSelect.call(void 0,{syntheticEvent:n,item:a,title:a&&a.title})),o.props.animation||o.hideActionSheet()}},o.onEscape=function(t,e,n){o.props.onOverlayClick&&(n.preventDefault(),o.props.onOverlayClick.call(void 0,n)),o.props.onClose&&(n.preventDefault(),o.props.onClose.call(void 0,n)),o.props.animation||o.hideActionSheet()},o.hideActionSheet=function(){o.setState({show:!1})},o.children=function(t){var e={};return n.Children.forEach(t,(function(t){t&&(e[t.type.displayName]=t)})),e},o.state={show:!1,slide:!1},(0,ct.s)(Ft),o}return En(e,t),e.prototype.componentDidMount=function(){this.props.expand&&!this.state.show&&this.setState({show:!0})},e.prototype.componentDidUpdate=function(t,e){var o=this,n=this.actionSheetRef.current;if(this.props.expand&&!this.state.show&&this.setState({show:!0}),this.props.expand&&this.state.show&&!this.state.slide&&this.setState({slide:!0}),!this.props.expand&&this.state.show&&this.state.slide&&this.setState({slide:!1}),e!==this.state&&this.state.slide&&n&&!this.props.className&&(n.style.setProperty("--kendo-actionsheet-height","auto"),n.style.setProperty("--kendo-actionsheet-max-height","none")),n&&this.props.navigatable){var r=function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))}([".k-actionsheet-item"],[".k-actionsheet-footer",".k-actionsheet-content",".k-actionsheet-titlebar"].map((function(t){return Mn.x.concat(o.props.navigatableElements).map((function(e){return"".concat(t," ").concat(e)}))})).flat(),!0);this.navigation=new Mn.W({tabIndex:this.props.tabIndex||0,root:this.actionSheetRef,rovingTabIndex:!1,selectors:r,keyboardEvents:{keydown:{Tab:this.onTab,Enter:this.onEnter,Escape:this.onEscape}}}),this.navigation.focusElement(this.navigation.first,null)}},e.prototype.render=function(){var t=this,e=this.props,o=e.title,r=e.subTitle,i=e.animationStyles,s=e.animation,c=e.expand,l=e.tabIndex,h=e.items,p=null==h?void 0:h.filter((function(t){return!t.group||"top"===t.group})),u=null==h?void 0:h.filter((function(t){return"bottom"===t.group})),v=p&&p.length>0&&u&&u.length>0,d=this.children(this.props.children),f=this.props.animationDuration||this.animationDuration,m=this.state.slide&&n.createElement("div",{className:(0,a.A)("k-actionsheet",this.props.className,{"k-actionsheet-bottom":!this.props.className}),role:"dialog","aria-modal":"true","aria-hidden":!1,"aria-labelledby":this.ariaLabeledBy,ref:this.actionSheetRef,onKeyDown:this.handleKeyDown},d[Sn]&&!o&&!r&&d[Sn],(o||r)&&n.createElement("div",{className:"k-actionsheet-titlebar k-text-center"},n.createElement("div",{className:"k-actionsheet-titlebar-group k-hbox"},n.createElement("div",{className:this.actionSheetTitleClass,id:this.ariaLabeledBy},o&&n.createElement("div",null,o),r&&n.createElement("div",{className:"k-actionsheet-subtitle"},r)))),d[An]||n.createElement("div",{className:"k-actionsheet-content"},n.createElement("div",{className:"k-list-ul",role:"group"},p&&p.map((function(e,o){return n.createElement(On,Tn({},e,{id:o,key:o,item:e,tabIndex:l||0,onClick:t.handleItemClick}))}))),v&&n.createElement("hr",{className:"k-hr"}),n.createElement("div",{className:"k-list-ul",role:"group"},u&&u.map((function(e,o){return n.createElement(On,Tn({},e,{id:o+((null==p?void 0:p.length)||0),key:o,item:e,tabIndex:l||0,onClick:t.handleItemClick}))})))),d[Pn]);return n.createElement(n.Fragment,null,c||this.state.show?n.createElement(n.Fragment,null,n.createElement("div",{className:"k-actionsheet-container"},n.createElement("div",{className:"k-overlay",onClick:this.handleOverlayClick}),s?n.createElement(Vt,{transitionName:this.state.slide?"slide-up":"slide-down",onExited:this.hideActionSheet,transitionEnterDuration:f,transitionExitDuration:f,animationEnteringStyle:i||this.bottomPosition,animationEnteredStyle:i||this.bottomPosition,animationExitingStyle:i||this.bottomPosition,exit:!0,enter:!0,appear:!1},m):m)):null)},e.displayName="KendoReactActionSheet",e.propTypes={items:P.array,subTitle:P.string,title:P.string,navigatable:P.bool,navigatableElements:P.array},e.defaultProps={navigatable:!0,navigatableElements:[]},e}(n.Component),jn=o(6584),Ln=function(t){var e=t.eventData,o=e.title,r=e.subtitle,i=e.actions,s=e.images,c=e.description,l=n.useState(t.eventData.opened||!1),h=l[0],p=l[1],u=n.useState(t.eventData.opened||!!t.collapsible),v=u[0],d=u[1],f=function(e){if(t.onActionClick){var o={syntheticEvent:e,nativeEvent:e.nativeEvent,eventData:t.eventData};t.onActionClick.call(void 0,o)}},m=function(){return n.createElement(n.Fragment,null,n.createElement(Qe,null,n.createElement("div",{className:"k-card-description"},n.createElement("p",null,c),s&&s.map((function(t,e){return n.createElement(eo,{key:e,src:t.src})})))),n.createElement($e,null,i&&i.map((function(t,e){return n.createElement("a",{key:e,href:t.url,className:"k-button k-button-md k-rounded-md k-button-flat k-button-flat-primary",onClick:f},t.text)}))))};return n.createElement("div",{"data-testid":"k-timeline-card",className:(0,a.A)("k-timeline-card",{"k-collapsed":t.collapsible&&v})},n.createElement(Ze,{"aria-live":"polite","aria-describedby":t.id,"aria-atomic":"true",tabIndex:t.tabindex,role:t.horizontal?"tabpanel":"button","aria-expanded":t.collapsible&&v},n.createElement("span",{style:t.calloutStyle,className:(0,a.A)("k-timeline-card-callout","k-card-callout",{"k-callout-n":t.horizontal},{"k-callout-e":t.alternated&&!t.horizontal},{"k-callout-w":!t.alternated&&!t.horizontal})}),n.createElement("div",{className:"k-card-inner"},n.createElement(Ye,null,n.createElement(qe,null,n.createElement("span",{className:"k-event-title"},o),t.collapsible&&n.createElement("span",{onClick:function(e){return function(e){if(p(!h),t.onChange){var o={syntheticEvent:e,nativeEvent:e.nativeEvent,eventData:t.eventData};t.onChange.call(void 0,o)}}(e)},className:"k-event-collapse k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-icon-button"},n.createElement(jn.l,{icon:L}))),r&&n.createElement(oo,null,r)),t.collapsible?n.createElement(qt,{transitionEnterDuration:t.transitionDuration||400,transitionExitDuration:t.transitionDuration||400,onBeforeEnter:function(){return d(!1)},onAfterExited:function(){return d(!0)}},h?m():null):m())))};Ln.propTypes={onChange:P.func,onActionClick:P.func};var Rn=function(t){return t.sort((function(t,e){return t.date.getTime()-e.date.getTime()}))},Dn=function(t){var e;return t.reduce((function(t,o){return e!==o.date.getFullYear()?(e=o.date.getFullYear(),t.push({yearFlag:e},o)):t.push(o),t}),[])},Nn=o(7827),Fn=function(){return Fn=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Fn.apply(this,arguments)},Un=function(t){var e=(0,Fe.useInternationalization)(),o=n.useState(!1),r=o[0],i=o[1],s=n.useState(!0),c=s[0],l=s[1],h=n.useState(),p=h[0],u=h[1],v=n.useState(0),d=v[0],f=v[1],m=n.useState(),y=m[0],g=m[1],b=n.useState(0),x=b[0],w=b[1],_=n.useState(0),z=_[0],C=_[1],k=n.useState(1),M=k[0],O=k[1],S=n.useState(),H=S[0],P=S[1],I=n.useState(),A=I[0],V=I[1],T=n.useState([0,0,0]),j=T[0],L=T[1],R=n.useState(0),D=R[0],N=R[1],F=n.useState(1),U=F[0],W=F[1],G=n.useRef(null),K=n.useRef(null),X=n.useRef(null),Z=t.eventsData,Y=t.dateFormat,q=t.navigatable,Q=t.onActionClick,J=y?"".concat(y,"%"):"".concat(150,"px"),$=n.useRef(new Mn.W({tabIndex:0,root:G,selectors:[".k-timeline-scrollable-wrap"]}));n.useEffect((function(){G.current&&t.navigatable&&(setTimeout((function(){var t=$.current.first;t&&t.setAttribute("tabindex",String(0))}),0),$.current.keyboardEvents={keydown:{ArrowRight:tt,ArrowLeft:et,End:nt,Home:ot}})}),[t.navigatable,M,x]),n.useEffect((function(){$.current.update()})),n.useEffect((function(){var t,e=Nn.N&&window.ResizeObserver&&new window.ResizeObserver(ut),o=K.current,n=(null===(t=null==G?void 0:G.current)||void 0===t?void 0:t.offsetWidth)||0;return e&&o&&e.observe(o),rt(),ut(),L([n,0,-n]),function(){e&&e.disconnect()}}),[]),n.useEffect((function(){var t=K.current,e=t&&t.children[M];if(e){var o=e.offsetWidth;if(i(!(d>=0)),A){var n=A.length*o>x*o*((-1*d+100)/100);l(n)}(null==t?void 0:t.offsetWidth)*-d/100>=t.children.length*o&&(rt(),ut(),f((e.offsetLeft-e.offsetWidth)/(x*e.offsetWidth)*100*-1)),ht(e)}}),[x,y,M]);var tt=function(t,e,o){if(K.current){var n=K.current.children[M+1],r=n&&n.classList.contains("k-timeline-flag-wrap")?M+2:M+1;if(A&&A.length<=r)return;x+z<=r&&at(),pt(r,o)}},et=function(t,e,o){if(K.current){var n=K.current&&K.current.children[M-1],r=n&&n.classList.contains("k-timeline-flag-wrap")?M-2:M-1;if(r<=0)return;r<z&&it(),pt(r,o)}},ot=function(t,e,o){if(K.current){if(M<=1)return;st(!0,1,0,0),pt(1,o)}},nt=function(t,e,o){if(K.current){var n=K.current&&K.current.children.length-1;if(n<=M)return;var r=Math.floor(n/x);st(!0,n,r*x,-100*r),pt(n,o)}},rt=function(){var t=Dn(Z);V(t),P([t[M-1],t[M],t[M+1]])},it=function(){var t;if(K.current&&A){var e=z-x,o=z-1,n=A[o]&&(null===(t=A[o])||void 0===t?void 0:t.yearFlag)?o-1:o;st(!1,n,e,d+100>0?0:d+100)}},at=function(){if(K.current&&A){var t=z+x,e=A[t]&&A[t].yearFlag?t+1:t;st(!0,e,t,d-100)}},st=function(t,e,o,n){ct(t,e),ut(),C(o),f(n),O(e)},ct=function(e,o){var n;if(H&&A){var r=lt(e,U),i=Object.assign([],H,((n={})[r]=A[o],n));P(i),W(r),N(e?-100:100),setTimeout((function(){var t,e,o,n=null===(o=G.current)||void 0===o?void 0:o.offsetWidth,a=Object.assign([],j,((t={})[r]=0,t[lt(!0,r)]=n,t[lt(!1,r)]=n&&-n,t)),s=Object.assign([],i,((e={})[lt(!0,r)]={},e[lt(!1,r)]={},e));P(s),L(a),N(0)}),t.transitionDuration||300)}},lt=function(t,e){var o=t?e+1:e-1;return H?o<0?H.length-1:o%H.length:0},ht=function(t){var e,o=(M-z)*t.offsetWidth+t.offsetWidth/2+((null===(e=X.current)||void 0===e?void 0:e.offsetWidth)||0);u(o)},pt=function(t,e){e.preventDefault(),t>M?ct(!0,t):t<M&&ct(!1,t),O(t)},ut=n.useCallback((function(){var t=K.current,e=t&&t.children[M];if(t instanceof HTMLElement&&e){var o=Math.round(t.offsetWidth/150);ht(e),g(100/o),w(o)}}),[]),vt=function(t){return{transform:"translateX(".concat(t,"%)"),transformOrigin:"left top"}};return n.createElement(n.Fragment,null,n.createElement("div",{className:"k-timeline-track-wrap",ref:G,onKeyDown:function(t){q&&$.current&&$.current.triggerKeyboardEvent(t)}},n.createElement("a",{ref:X,"aria-hidden":"true",onClick:function(){return r&&it()},className:(0,a.A)("k-timeline-arrow","k-timeline-arrow-left","k-button k-button-md k-rounded-md k-button-solid k-button-solid-base k-icon-button",{"k-disabled":!r})},n.createElement(jn.l,{icon:B})),n.createElement("a",{"aria-hidden":"true",onClick:function(){return c&&at()},className:(0,a.A)("k-timeline-arrow","k-timeline-arrow-right","k-button k-button-md k-rounded-md k-button-solid k-button-solid-base k-icon-button",{"k-disabled":!c})},n.createElement(jn.l,{icon:E})),n.createElement("div",{className:"k-timeline-track"},n.createElement("ul",{ref:K,className:"k-timeline-scrollable-wrap",role:"tablist",tabIndex:0,style:{transform:"translateX(".concat(d,"%)")}},A&&A.map((function(t,o){return t.yearFlag?n.createElement("li",{role:"none",className:"k-timeline-track-item k-timeline-flag-wrap",style:{flex:"1 0 ".concat(J)},key:o},n.createElement("span",{className:"k-timeline-flag"},t.yearFlag)):n.createElement("li",{role:"tab",className:(0,a.A)("k-timeline-track-item",{"k-focus":o===M}),"aria-selected":o===M,style:{flex:"1 0 ".concat(J)},key:o},n.createElement("div",{className:"k-timeline-date-wrap"},n.createElement("span",{className:"k-timeline-date"},e.formatDate(t.date,Y))),n.createElement("span",{onClick:function(t){return pt(o,t)},className:"k-timeline-circle"}))}))))),n.createElement("div",{className:"k-timeline-events-list"},n.createElement("ul",{className:"k-timeline-scrollable-wrap",style:0===D?Fn({},vt(D)):Fn(Fn({},vt(D)),{transitionDuration:"".concat(300,"ms")})},H&&H.map((function(t,e){return n.createElement("li",{key:e,className:"k-timeline-event",style:{transform:"translate3d(".concat(j[e],"px, 0px, 0px)")}},t&&n.createElement(Ln,{tabindex:0===j[e]?0:-1,eventData:t,onActionClick:Q,horizontal:!0,collapsible:!1,calloutStyle:{left:"".concat(p,"px")}}))})))))};Un.propTypes={onActionClick:P.func};var Wn=function(t){var e=(0,Fe.useInternationalization)(),o=n.useState(),r=o[0],i=o[1],s=t.collapsibleEvents,c=t.transitionDuration,l=t.eventsData,h=t.dateFormat,p=t.alterMode,u=t.navigatable,v=t.onChange,d=t.onActionClick,f=n.useRef(null),m=n.useRef(new Mn.W({tabIndex:0,root:f,selectors:[".k-card-vertical"]}));n.useEffect((function(){f.current&&t.navigatable&&(setTimeout((function(){var t=m.current.first;t&&t.setAttribute("tabindex",String(0))}),0),m.current.keyboardEvents={keydown:{Space:y,Enter:y}})}),[t.navigatable]),n.useEffect((function(){i(Dn(l))}),[]),n.useEffect((function(){m.current.update()}));var y=function(t,e,o){o.preventDefault();var n=t.querySelector(".k-card-title .k-event-collapse");n&&n.click()},g=0;return n.createElement("ul",{ref:f,onKeyDown:function(t){u&&m.current&&m.current.triggerKeyboardEvent(t)}},r&&r.map((function(t,o){var r=(0,jt.M)(),i=(o+g)%2==0;return t.yearFlag&&(g+=1),n.createElement(n.Fragment,{key:o},t.yearFlag?n.createElement("li",{className:"k-timeline-flag-wrap"},n.createElement("span",{className:"k-timeline-flag"},t.yearFlag)):n.createElement("li",{className:(0,a.A)("k-timeline-event",{"k-reverse":i})},n.createElement("div",{className:"k-timeline-date-wrap"},n.createElement("span",{className:"k-timeline-date",id:r},e.formatDate(t.date,h))),n.createElement("a",{className:"k-timeline-circle"}),n.createElement(Ln,{id:r,tabindex:u?0:-1,eventData:t,alternated:p&&i,collapsible:s,transitionDuration:c,onChange:v,onActionClick:d})))})))};Wn.propTypes={onActionClick:P.func};var Gn=function(){return Gn=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Gn.apply(this,arguments)},Kn=function(t){var e=Gn({alterMode:!1,collapsibleEvents:!0,dateFormat:"MMM dd, yyyy"},t),o=e.collapsibleEvents,r=e.transitionDuration,i=e.className,s=e.alterMode,c=e.navigatable,l=e.horizontal,h=e.events,p=e.dateFormat,u=e.onChange,v=e.onActionClick,d=n.useState(),f=d[0],m=d[1],y=n.useRef(null);return n.useEffect((function(){y.current&&m(y.current.offsetWidth)}),[]),n.createElement("div",{ref:y,className:(0,a.A)("k-timeline",{"k-timeline-collapsible":o,"k-timeline-vertical":!l,"k-timeline-alternating":s,"k-timeline-horizontal":l},i),style:{width:"".concat(f,"px")}},l?n.createElement(Un,{navigatable:c,eventsData:h,dateFormat:p,transitionDuration:r,onActionClick:v}):n.createElement(Wn,{navigatable:c,eventsData:h,dateFormat:p,alterMode:s,collapsibleEvents:o,transitionDuration:r,onChange:u,onActionClick:v}))};Kn.propTypes={className:P.string};var Xn=function(){return Xn=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Xn.apply(this,arguments)},Zn=function(t){var e=n.useRef(null);return n.useEffect((function(){t.show&&setTimeout((function(){var t=e.current&&e.current.element,o=t&&t.querySelector(".k-menu-item"),n=(0,r.v)(o&&o.ownerDocument);o&&o!==n&&o.focus()}))}),[t.show]),n.createElement(s.G,{show:t.show,offset:t.offset,popupClass:"k-menu-popup",animate:!1},n.createElement(je,Xn({vertical:!0},t,{ref:e,className:(0,a.A)("k-context-menu",t.className),onClose:t.onClose,role:"menu"}),t.children))};Zn.displayName="KendoReactContextMenu";var Yn=o(6059),qn=n.forwardRef((function(t,e){var o,r;(0,ct.s)(Ft);var s=n.useRef(null),c=n.useState(!1),l=c[0],h=c[1],p=n.useCallback((function(){return{element:s.current}}),[]);n.useImperativeHandle(e,p);var u=t.expanded,v=void 0!==u&&u,d=t.disabled,f=t.title,m=t.subtitle,y=t.onAction,g=t.expandIcon,b=t.collapseIcon,x=t.expandSVGIcon,w=t.collapseSVGIcon,_=n.useCallback((function(t){(0,ye.N)(y,t,p(),{expanded:v})}),[y,v]),z=n.useCallback((function(t){t.keyCode!==$.R.enter&&t.keyCode!==$.R.space||(t.preventDefault(),(0,ye.N)(y,t,p(),{expanded:v}))}),[y,v]),C=n.useCallback((function(){t.disabled||h(!0)}),[t.disabled]),k=n.useCallback((function(){t.disabled||h(!1)}),[t.disabled]),M=(0,Yn.U)({onFocus:C,onBlur:k}),O=M.onFocus,S=M.onBlur;return n.createElement("div",{ref:s,className:(0,a.A)("k-expander",t.className,{"k-expanded":v,"k-focus":l&&!d,"k-disabled":d}),onFocus:O,onBlur:S,style:t.style,id:t.id,dir:(0,wo.V)(s,t.dir),onKeyDown:d?void 0:z},n.createElement("div",{role:"button","aria-controls":t.ariaControls,"aria-expanded":v,"aria-disabled":d,tabIndex:(0,so.p)(t.tabIndex,d),className:"k-expander-header",onClick:d?void 0:_},void 0!==f?n.createElement("div",{className:"k-expander-title"},f):void 0,n.createElement("span",{className:"k-spacer"}),void 0!==m?n.createElement("div",{className:"k-expander-sub-title"},m):void 0,n.createElement("span",{className:"k-expander-indicator"},n.createElement(i.a,{name:v?b?void 0:"chevron-up":g?void 0:"chevron-down",icon:v?w||b?w:j:x||g?x:R,className:(0,a.A)(v?(o={},o[String(b)]=Boolean(b),o):(r={},r[String(g)]=Boolean(g),r))}))),t.children)}));qn.propTypes={children:P.node,className:P.string,style:P.object,dir:P.string,id:P.string,tabIndex:P.number,title:P.node,subtitle:P.node,expandIcon:P.string,collapseIcon:P.string,expanded:P.bool,disabled:P.bool,onAction:P.func},qn.displayName="KendoReactExpansionPanel";var Qn=function(){return Qn=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Qn.apply(this,arguments)},Jn=n.forwardRef((function(t,e){return n.createElement("div",Qn({ref:e},t,{className:(0,a.A)("k-expander-content-wrapper",t.className)}),n.createElement("div",{className:"k-expander-content"},t.children))}));Jn.displayName="KendoReactExpansionPanelContent"},1754:(t,e,o)=>{o.d(e,{v:()=>a,G:()=>s});var n=o(3899),r=o(61),i=function(){return i=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},i.apply(this,arguments)},a=n.createContext((function(t){return t})),s=n.forwardRef((function(t,e){var o=n.useContext(a).call(void 0,t);return n.createElement(r.B,i({ref:e},o))}));s.displayName="Popup"},61:(t,e,o)=>{o.d(e,{B:()=>rt});var n=o(3899),r=o(994),i=o(189),a=function(t){t.style.transitionDuration="",Array.from(t.classList).forEach((function(e){e.startsWith("k-slide-")&&t.classList.remove(e)}))},s="undefined"!=typeof window&&/Firefox/.test(window.navigator.userAgent),c=o(4006),l=o(7827),h=o(8259),p=o(8047);const u="bottom",v="center",d="middle",f="left",m="right",y="top",g="fit",b="flip",x="none";var w,_,z,C=function(t,e,o){var n=0;return t+e>o&&(n=o-(t+e)),t<0&&(n=-t),n},k=function(t){var e=t.offset,o=t.size,n=t.anchorSize,r=t.viewPortSize,i=t.anchorAlignPoint,a=t.elementAlignPoint,s=0,c=2*t.margin;if(a!==i&&a!==v&&a!==d&&i!==v&&i!==d){var l=i===y||i===f;e<0&&l?e+(s=o+n+c)+o>r&&(s=0):e>=0&&!l&&(e+o>r&&(s+=-(n+o+c)),e+s<0&&(s=0))}return s},M=(w=function(t){if(!O())return!1;var e=t?t.ownerDocument:document;if(!e||!e.body)return!1;var o=e.createElement("div");o.style.transform="matrix(10, 0, 0, 10, 0, 0)",o.innerHTML='<div style="position: fixed; top: 10px;">child</div>',e.body.appendChild(o);var n=10!==o.children[0].getBoundingClientRect().top;return e.body.removeChild(o),n},z=!1,function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return z||(_=w.apply(void 0,t),z=!0),_}),O=function(){return Boolean("undefined"!=typeof window&&window.document&&window.document.createElement)};const S={eitherRect:function(t,e){return t||{height:0,left:e.left,top:e.top,width:0}},scaleRect:function(t,e){return t&&1!==e?{height:t.height/e,left:t.left/e,top:t.top/e,width:t.width/e}:t},removeStackingOffset:function(t,e){return e?{height:t.height,left:t.left-e.left,top:t.top-e.top,width:t.width}:t},hasRelativeStackingContext:M,canUseDOM:O};function H(t){return t.ownerDocument||t.document||t}const P=function(t){return H(t).defaultView},I=function(t){return H(t).documentElement};var A=0;function V(){if(!A&&"undefined"!=typeof document){var t=document.createElement("div");t.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",t.innerHTML=" ",document.body.appendChild(t),A=t.offsetWidth-t.scrollWidth,document.body.removeChild(t)}return A}function E(t){var e=P(t),o=I(t),n={height:e.innerHeight,width:e.innerWidth};return o.scrollHeight-o.clientHeight>0&&(n.width-=V()),n}function T(t){var e=I(t),o=P(t);return{x:o.pageXOffset||e.scrollLeft||0,y:o.pageYOffset||e.scrollTop||0}}const B=function(t){var e=t.getBoundingClientRect(),o=e.left,n=e.top;return e.height||e.width||(e=function(t){var e=t.style,o=e.display,n=e.left,r=e.position;t.style.display="",t.style.left="-10000px",t.style.position="absolute";var i=t.getBoundingClientRect();return t.style.display=o,t.style.left=n,t.style.position=r,i}(t)),{top:n,left:o,height:e.height,width:e.width}};function j(t){return t===(t.ownerDocument||{}).body?T(t):{x:t.scrollLeft,y:t.scrollTop}}const L=function(t){for(var e=t.offsetParent;e&&"static"===e.style.position;)e=e.offsetParent;return e||I(t)};function R(t,e){for(var o=[],n=t.parentNode;n&&(o.push(n),n!==e);)n=n.parentNode;return o}function D(t){for(var e=[],o=t.parentNode.firstElementChild;o;)o!==t&&e.push(o),o=o.nextElementSibling;return e}var N=["font-size","font-family","font-stretch","font-style","font-weight","line-height"],F=function(){return S.canUseDOM()?window:null},U=/auto|scroll/,W=function(t){return function(t){return""+t.style.overflow+t.style.overflowX+t.style.overflowY}(t)||function(t){var e=window.getComputedStyle(t);return""+e.overflow+e.overflowX+e.overflowY}(t)},G=function(t){if(!t||!S.hasRelativeStackingContext())return null;for(var e=t.parentElement;e;){if("none"!==window.getComputedStyle(e).transform)return e;e=e.parentElement}return null},K=function(){return S.canUseDOM()&&parseFloat((document.documentElement.clientWidth/window.innerWidth).toFixed(2))||1},X={addOffset:function(t,e){return{left:t.left+e.left,top:t.top+e.top}},addScroll:function(t,e){return{top:t.top+e.y,left:t.left+e.x,height:t.height,width:t.width}},align:function(t){var e=t.anchorRect,o=t.anchorAlign,n=t.elementRect,r=t.elementAlign,i=t.margin;void 0===i&&(i={});var a=o.horizontal,s=o.vertical,c=r.horizontal,l=r.vertical,h=i.horizontal||0,p=i.vertical||0,f=e.top,y=e.left;return s===u&&(f+=e.height),s!==v&&s!==d||(f+=Math.round(e.height/2)),l===u&&(f-=n.height,p*=-1),l!==v&&l!==d||(f-=Math.round(n.height/2),p*=-1),a===m&&(y+=e.width),a!==v&&a!==d||(y+=Math.round(e.width/2)),c===m&&(y-=n.width,h*=-1),c!==v&&c!==d||(y-=Math.round(n.width/2),h*=-1),{top:f+p,left:y+h}},boundingOffset:function(t){if(!t.getBoundingClientRect){var e=E(t);return{bottom:e.height,left:0,right:e.width,top:0}}var o=t.getBoundingClientRect();return{bottom:o.bottom,left:o.left,right:o.right,top:o.top}},getFontStyles:function(t){var e=F();if(!e||!t)return[];var o=e.getComputedStyle(t);return N.map((function(t){return{key:t,value:o[t]}}))},getWindow:F,hasOffsetParent:function(t){return!!t&&Boolean(t.offsetParent)},offset:function(t){return t?B(t):null},offsetAtPoint:function(t,e){if(!t)return null;var o=t.style,n=o.left,r=o.top,i=o.transition;t.style.transition="none",t.style.left=e.left+"px",t.style.top=e.top+"px";var a=B(t);return t.style.left=n,t.style.top=r,t.offsetHeight,t.style.transition=i,a},position:function(t,e,o){return t&&e?function(t,e,o){void 0===o&&(o=1);var n=e?L(e):null,r=function(t,e){var o=P(t),n=o.getComputedStyle(t),r=B(t),i=e||L(t),a=t.ownerDocument,s=i!==a.body&&i!==a.documentElement,c={top:0,left:0};if("fixed"!==n.position&&s){var l=o.getComputedStyle(i);(c=B(i)).top+=parseInt(l.borderTopWidth,10),c.left+=parseInt(l.borderLeftWidth,10)}return{top:r.top-c.top,left:r.left-c.left,height:r.height,width:r.width}}(t,n),i=r.top,a=r.left,s=r.height,c=r.width,l=function(t,e){return t?j(t):function(t){var e=L(t);return e?j(e):{x:0,y:0}}(e)}(n,t),h=l.x,p=l.y,u=t.ownerDocument,v=n===u.body||n===u.documentElement?1:o;return{top:i+p*v,left:a+h*v,height:s,width:c}}(t,e,o||1):null},removeScroll:function(t,e){return{top:t.top-e.y,left:t.left-e.x,height:t.height,width:t.width}},restrictToView:function(t){var e=t.anchorRect,o=t.anchorAlign,n=t.elementRect,r=t.elementAlign,i=t.collisions,a=t.viewPort,s=t.margin;void 0===s&&(s={});var c=n.top,l=n.left,h=n.height,p=n.width,u=a.height,v=a.width,d=s.horizontal||0,f=s.vertical||0,m=0,y=0,x=i.vertical===g,w=i.horizontal===g,_=i.vertical===b,z=i.horizontal===b;x&&(y+=C(c,h,u)),w&&(m+=C(l,p,v)),_&&(y+=k({margin:f,offset:c,size:h,anchorSize:e.height,viewPortSize:u,anchorAlignPoint:o.vertical,elementAlignPoint:r.vertical})),z&&(m+=k({margin:d,offset:l,size:p,anchorSize:e.width,viewPortSize:v,anchorAlignPoint:o.horizontal,elementAlignPoint:r.horizontal}));var M=_&&0!==y,O=z&&0!==m,S=x&&0!==y,H=w&&0!==m;return{flipped:O||M,fitted:S||H,flip:{horizontal:O,vertical:M},fit:{horizontal:H,vertical:S},offset:{left:m,top:y}}},scrollPosition:T,scrollableParents:function(t){var e=[];if(!S.canUseDOM())return e;for(var o=t.parentElement;o;)(U.test(W(o))||o.hasAttribute("data-scrollable"))&&e.push(o),o=o.parentElement;return e.push(window),e},getRelativeContextElement:G,stackingElementOffset:function(t){var e=G(t);return e?B(e):null},stackingElementScroll:function(t){var e=G(t);return e?{x:e.scrollLeft,y:e.scrollTop}:{x:0,y:0}},stackingElementViewPort:function(t){var e=G(t);return e?{height:e.scrollHeight,width:e.scrollWidth}:null},useRelativePosition:function(t){return Boolean(G(t))},windowViewPort:E,zoomLevel:K,isZoomed:function(){return K()>1},zIndex:function(t,e){if(!t||!S.canUseDOM())return null;var o=function(t,e){for(var o,n,r=R(t),i=e;i&&(o=D(i),!(n=r.reduce((function(t,e){return t.concat(o.filter((function(t){return t===e})))}),[])[0]));)i=i.parentElement;return n}(t,e);if(!o)return null;var n=[t].concat(R(t,o)).reduce((function(t,e){var o=e.style.zIndex||window.getComputedStyle(e).zIndex,n=parseInt(o,10);return n>t?n:t}),0);return n?n+1:null}};const Z=X;const Y=function(t){var e=t.anchor,o=t.element,n=t.anchorAlign,r=t.elementAlign,i=t.margin,a=t.offset,s=t.positionMode,c=t.scale||1,l="fixed"!==s&&Z.hasOffsetParent(o)?function(t,e,o,n){var r=S.eitherRect(Z.position(t,e,n),o);return S.scaleRect(r,n)}(e,o,a,c):function(t,e,o,n){var r=function(t,e){return t?{x:0,y:0}:Z.scrollPosition(e)}(t,e),i=S.eitherRect(Z.offset(t),o),a=2*n,s=Z.stackingElementScroll(e);1!==n&&s&&(s.x/=a,s.y/=a);var c=Z.stackingElementOffset(e);return 1!==n&&c&&(c.left/=a,c.top/=a),Z.removeScroll(Z.addScroll(S.removeStackingOffset(S.scaleRect(i,n),c),s),r)}(e,o,a,c),h=S.scaleRect(Z.offset(o),c);return Z.align({anchorAlign:n,anchorRect:l,elementAlign:r,elementRect:h,margin:i})};var q,Q={name:"@progress/kendo-react-popup",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:1700063458,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"},J=(q=function(t,e){return q=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},q(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}q(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),$=function(){return $=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},$.apply(this,arguments)};function tt(t,e){if(t===e)return!0;if(!!t!=!!e)return!1;var o=Object.getOwnPropertyNames(t),n=Object.getOwnPropertyNames(e);if(o.length!==n.length)return!1;for(var r=0;r<o.length;r++){var i=o[r];if(t[i]!==e[i])return!1}return!0}var et,ot={left:-1e3,top:0};!function(t){t.hiding="hiding",t.hidden="hidden",t.showing="showing",t.shown="shown",t.reposition="reposition"}(et||(et={}));var nt="k-animation-container-shown",rt=function(t){function e(e){var o=t.call(this,e)||this;return o.context=0,o.state={current:et.hidden,previous:et.hidden,props:{}},o._popup=null,o.show=function(t){o.setPosition(t),o.animate(t.firstChild,"enter",o.onOpened),o.setState({current:et.shown,previous:o.state.current})},o.setPosition=function(t){var e=o.props,n=e.anchorAlign,r=e.popupAlign,i=e.collision,a=e.offset,s=e.anchor,c=e.margin,l=e.scale,h=e.positionMode,p=t.style,u=p.width,v=p.height;t.style.width=t.offsetWidth+"px",t.style.height=t.offsetHeight+"px";var d=function(t){var e=t.anchor,o=t.currentLocation,n=t.element,r=t.anchorAlign,i=t.elementAlign,a=t.collisions,s=t.margin,c=t.scale||1,l=Z.offsetAtPoint(n,o),h=S.scaleRect(l,c),p=S.scaleRect(Z.offset(e),c),u=S.eitherRect(p,o),v=t.viewPort||Z.windowViewPort(n);v.width=v.width/c,v.height=v.height/c;var d=Z.restrictToView({anchorAlign:r,anchorRect:u,collisions:a,elementAlign:i,elementRect:h,margin:s,viewPort:v}),f=Z.addOffset(o,d.offset);return{flip:d.flip,flipped:d.flipped,fit:d.fit,fitted:d.fitted,offset:f}}({anchor:s,anchorAlign:n,element:t,elementAlign:r,collisions:i,currentLocation:Y({anchor:s,anchorAlign:n,element:t,elementAlign:r,offset:a,margin:c,positionMode:h,scale:l}),margin:o.props.margin});if(t.style.top=d.offset.top+"px",t.style.left=d.offset.left+"px",t.style.width=u,t.style.height=v,o._collisions={fit:d.fit,fitted:d.fitted,flip:d.flip,flipped:d.flipped},o.props.onPosition){var f={target:o,flipped:d.flipped,fitted:d.fitted};o.props.onPosition.call(void 0,f)}},o.onOpened=function(){var t=o._popup;t&&(o.props.show&&t.classList.add(nt),o.attachRepositionHandlers(t),o.props.onOpen&&o.props.onOpen.call(void 0,{target:o}))},o.animate=function(t,e,n){if(o.props.popupAlign){var r,i=o.props.popupAlign,c=i.horizontal,l=i.vertical;r="left"===c&&"center"===l?"right":"right"===c&&"center"===l?"left":"top"===l?"down":"up",o._collisions&&o._collisions.flipped&&(r={down:"up",up:"down",left:"right",right:"left"}[r]),function(t,e,o,n,r){if(0===o)return r();var i="k-slide-"+e+"-"+n,c=i+"-active",l=function(e){e.target===t&&(t.removeEventListener("transitionend",l),a(t),t.style.display="exit"===n?"none":"",r())};t.addEventListener("transitionend",l);var h=t.ownerDocument;if(h){var p=h.defaultView;if(p){var u=function(){a(t),t.classList.add(i),p.requestAnimationFrame((function(){t.style.transitionDuration=o+"ms",t.classList.add(c)}))};s?p.requestAnimationFrame(u):u()}}}(t,r,o.animationDuration[e],e,n)}},o.onClosing=function(t){o.props.show||t.classList.remove(nt),o.detachRepositionHandlers()},o.onClosed=function(){o.state.current===et.hiding&&o.state.previous===et.shown&&o.setState({current:et.hidden,previous:o.state.current}),o.props.onClose&&o.props.onClose.call(void 0,{target:o})},o.getCurrentZIndex=function(){return o.context?o.context+1:100},(0,c.s)(Q),o.reposition=function(t,e,o){var n,r,i,a;void 0===o&&(o={});var s=0;o=o||{};var c=function(){s=!1===o.leading?0:(new Date).getTime(),n=void 0,a=t.apply(r,i),n||(r=i=null)};return function(){var l=(new Date).getTime();s||!1!==o.leading||(s=l);var h=e-(l-s);return r=void 0,i=arguments,h<=0||h>e?(n&&(clearTimeout(n),n=void 0),s=l,a=t.apply(r,i),n||(r=i=null)):n||!1===o.trailing||(n=window.setTimeout(c,h)),a}}(o.reposition.bind(o),16.666666666666668),o}return J(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this._popup},enumerable:!1,configurable:!0}),e.getDerivedStateFromProps=function(t,e){var o=t.show,n=t.anchor,r=t.anchorAlign,i=t.appendTo,a=t.collision,s=t.popupAlign,c=t.className,l=t.popupClass,h=t.style,p=t.offset,u=t.contentKey,v=$($({},e),{props:{show:o,anchor:n,anchorAlign:r,appendTo:i,collision:a,popupAlign:s,className:c,popupClass:l,style:h,offset:p,contentKey:u}});return t.show?e.current===et.hidden||e.current===et.hiding?$($({},v),{current:et.showing,previous:e.current}):e.current===et.showing?$($({},v),{current:et.shown,previous:e.current}):e.current!==et.shown||tt(p,e.props.offset)&&tt(r,e.props.anchorAlign)&&tt(i,e.props.appendTo)&&tt(a,e.props.collision)&&tt(s,e.props.popupAlign)&&tt(h,e.props.style)&&n===e.props.anchor&&l===e.props.popupClass&&c===e.props.className?v:$($({},v),{current:et.reposition,previous:e.current}):e.current===et.hiding||e.current===et.hidden?$($({},v),{current:et.hidden,previous:e.current}):$($({},v),{current:et.hiding,previous:e.current})},e.prototype.componentDidUpdate=function(t){this.state.current===et.showing&&this._popup?this.show(this._popup):this.state.current===et.hiding&&this._popup?(this.onClosing(this._popup),this.animate(this._popup.firstChild,"exit",this.onClosed)):this.state.current===et.reposition&&this.state.previous===et.shown?this.setState({current:et.shown,previous:this.state.current}):this.state.current===et.shown&&t.contentKey!==this.props.contentKey&&this._popup&&this.setPosition(this._popup)},e.prototype.componentDidMount=function(){this.state.current===et.showing&&this._popup&&this.show(this._popup)},e.prototype.componentWillUnmount=function(){this.detachRepositionHandlers()},e.prototype.render=function(){var t=this,e=this.props,o=e.children,i=e.className,a=e.popupClass,s=e.show,c=e.id,u=e.positionMode,v=this.props.appendTo?this.props.appendTo:l.N?this.props.anchor&&this.props.anchor.ownerDocument?this.props.anchor.ownerDocument.body:document.body:void 0;this.state.current===et.reposition&&this.state.previous===et.shown&&this._popup&&this.setPosition(this._popup);var d=Object.assign({},{position:u,top:0,left:-1e4},this.props.style||{}),f=this.state.current===et.hiding;if((s||f)&&v){var m=this.getCurrentZIndex(),y=n.createElement(h.$.Provider,{value:m},n.createElement("div",{className:(0,p.A)("k-animation-container",i),id:c,ref:function(e){return t._popup=e},style:$({zIndex:m},d)},n.createElement("div",{className:(0,p.A)("k-child-animation-container"),style:{transitionDelay:"0ms"}},n.createElement("div",{role:this.props.role,className:(0,p.A)("k-popup",a)},o))));return null!==this.props.appendTo?r.createPortal(y,v):y}return null},Object.defineProperty(e.prototype,"animationDuration",{get:function(){var t=this.props.animate,e=0,o=0;return t&&(!0===t?e=o=300:(e=t.openDuration||0,o=t.closeDuration||0)),{enter:e,exit:o}},enumerable:!1,configurable:!0}),e.prototype.attachRepositionHandlers=function(t){var e=this;this.detachRepositionHandlers(),this._scrollableParents=Z.scrollableParents(this.props.anchor||t),this._scrollableParents&&this._scrollableParents.map((function(t){return t.addEventListener("scroll",e.reposition)})),window.addEventListener("resize",this.reposition)},e.prototype.detachRepositionHandlers=function(){var t=this;this._scrollableParents&&(this._scrollableParents.map((function(e){return e.removeEventListener("scroll",t.reposition)})),this._scrollableParents=void 0),window.removeEventListener("resize",this.reposition)},e.prototype.reposition=function(){this.setState({current:et.reposition,previous:this.state.current})},e.propTypes={anchor:function(t){var e=t.anchor;return e&&"number"!=typeof e.nodeType?new Error("Invalid prop `anchor` supplied to `Kendo React Popup`. Validation failed."):null},appendTo:function(t){var e=t.appendTo;return e&&"number"!=typeof e.nodeType?new Error("Invalid prop `appendTo` supplied to `Kendo React Popup`. Validation failed."):null},className:i.oneOfType([i.string,i.arrayOf(i.string),i.object]),id:i.string,popupClass:i.oneOfType([i.string,i.arrayOf(i.string),i.object]),collision:i.shape({horizontal:i.oneOf([g,b,x]),vertical:i.oneOf([g,b,x])}),anchorAlign:i.shape({horizontal:i.oneOf([f,v,m]),vertical:i.oneOf([y,v,u])}),popupAlign:i.shape({horizontal:i.oneOf([f,v,m]),vertical:i.oneOf([y,v,u])}),offset:i.shape({left:i.number,top:i.number}),children:i.oneOfType([i.element,i.node]),show:i.bool,animate:i.oneOfType([i.bool,i.shape({openDuration:i.number,closeDuration:i.number})]),margin:i.shape({horizontal:i.number,vertical:i.number}),positionMode:i.oneOf(["fixed","absolute"]),scale:i.number,style:i.object,onClose:i.func,onPosition:i.func,onOpen:i.func},e.defaultProps={collision:{horizontal:g,vertical:b},anchorAlign:{horizontal:f,vertical:u},popupAlign:{horizontal:f,vertical:y},offset:ot,animate:!0,show:!1,margin:{horizontal:0,vertical:0},positionMode:"absolute"},e.contextType=h.$,e.displayName="PopupComponent",e}(n.Component)},5362:(t,e,o)=>{o.r(e),o.d(e,{Popup:()=>n.G,PopupWithoutContext:()=>r.B,PopupPropsContext:()=>n.v});var n=o(1754),r=o(61)},1779:(t,e,o)=>{o.d(e,{_:()=>i});var n=o(3899),r=o(9844),i=n.forwardRef((function(t,e){var o=n.useRef(null),i=n.useRef(null),a=n.useCallback((function(){return o.current&&o.current.element?o.current.element:o.current}),[o]);n.useImperativeHandle(i,(function(){return{element:a()||null}})),n.useImperativeHandle(e,(function(){return i.current})),n.useImperativeHandle(t.childRef,(function(){return o.current}));var s=n.useCallback((function(e){t.onPress&&t.onPress({element:a(),target:i.current,event:e})}),[a,t.onPress]),c=n.useCallback((function(e){t.onRelease&&t.onRelease({element:a(),target:i.current,event:e})}),[a,t.onRelease]),l=n.useCallback((function(e){t.onDragStart&&t.onDragStart({element:a(),target:i.current,event:e})}),[t,a]),h=n.useCallback((function(e){t.onDrag&&t.onDrag({element:a(),target:i.current,event:e})}),[a,t.onDrag]),p=n.useCallback((function(e){t.onDragEnd&&t.onDragEnd({element:a(),target:i.current,event:e})}),[a,t.onDragEnd]);return(0,r.O)(o,{onPress:s,onRelease:c,onDragStart:l,onDrag:h,onDragEnd:p},{mouseOnly:t.mouseOnly,autoScroll:t.autoScroll,hint:t.hint,scrollContainer:t.scrollContainer}),t.children?n.cloneElement(n.Children.only(t.children),{ref:o}):null}));i.displayName="KendoReactDraggable"},7827:(t,e,o)=>{o.d(e,{N:()=>n});var n=Boolean("undefined"!=typeof window&&window.document&&window.document.createElement)},8047:(t,e,o)=>{o.d(e,{A:()=>n});var n=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var o={},n=function(t){return t.filter((function(t){return!0!==t&&!!t})).map((function(t){return Array.isArray(t)?n(t):function(t){return"object"==typeof t?Object.keys(t).forEach((function(e){o[e]=t[e]})):o[t]=!0}(t)}))};return n(t),Object.keys(o).map((function(t){return o[t]&&t||null})).filter((function(t){return null!==t})).join(" ")}},8259:(t,e,o)=>{o.d(e,{$:()=>r,u:()=>i});var n=o(3899),r=n.createContext(0),i=function(){return n.useContext(r)};r.displayName="KendoReactZIndexContext"},2333:(t,e,o)=>{o.d(e,{Dg:()=>i,Gc:()=>a,Fg:()=>s,tk:()=>c});var n=o(3899),r=o(3228),i=n.createContext([void 0,r.Z]),a=n.createContext([void 0,r.Z]),s=n.createContext([[],r.Z,r.Z]),c=n.createContext([[],r.Z,r.Z])},5407:(t,e,o)=>{function n(t,e,o,n){if(t){var r={syntheticEvent:e,nativeEvent:e.nativeEvent,target:o};t.call(void 0,Object.assign(r,n))}}o.d(e,{N:()=>n})},4100:(t,e,o)=>{o.d(e,{E:()=>r});var n=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g;function r(t){var e=[];return t.replace(n,(function(t,o,n,r){e.push(void 0!==o?o:n||r)})),e}},9124:(t,e,o)=>{o.d(e,{n:()=>n});var n=function(t){if(t){if((t instanceof HTMLInputElement||-1!==t.tabIndex)&&t.focus)return void t.focus();var e=t.querySelector('input, [tabindex]:not([tabindex="-1"])');e&&e.focus&&e.focus()}}},3769:(t,e,o)=>{o.d(e,{T:()=>n,v:()=>r});var n=function(t){var e=t.shadowRoot,o=t.contentDocument;return e&&e.activeElement?n(e.activeElement):o&&o.activeElement?n(o.activeElement):t},r=function(t){if(t&&t.activeElement)return n(t.activeElement)}},4703:(t,e,o)=>{o.d(e,{p:()=>n});var n=function(t,e,o){var n="string"==typeof t?parseInt(t,void 0):t;if(NaN!==n)return void 0!==n?n:e?o?void 0:-1:0}},9659:(t,e,o)=>{o.d(e,{Y:()=>i});var n=o(4100),r={};function i(t){if(r[t])return r[t];var e=(0,n.E)(t);return r[t]=function(t){for(var o=t,n=0;n<e.length&&o;n++)o=o[e[n]];return o},r[t]}r.undefined=function(){}},3198:(t,e,o)=>{o.d(e,{M:()=>n});var n=function(){var t,e,o="";for(t=0;t<32;t++)e=16*Math.random()|0,8!==t&&12!==t&&16!==t&&20!==t||(o+="-"),o+=(12===t?4:16===t?3&e|8:e).toString(16);return o}},6059:(t,e,o)=>{o.d(e,{U:()=>i});var n=o(3899),r=function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))};function i(t){var e=t.onFocus,o=t.onBlur,i=t.onSyncFocus,a=t.onSyncBlur,s=n.useRef(!1),c=n.useRef(0),l=n.useCallback((function(t){clearTimeout(c.current),c.current=window.setTimeout((function(){return t()}))}),[c]),h=n.useCallback((function(){for(var t=[],o=0;o<arguments.length;o++)t[o]=arguments[o];clearTimeout(c.current),i&&i.call(void 0,t[0]),s.current||(s.current=!0,e&&e.call.apply(e,r([void 0],t,!1)))}),[s,e,i]),p=n.useCallback((function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];a&&a.call(void 0,t[0]),l((function(){s.current&&o&&(s.current=!1,o.call.apply(o,r([void 0],t,!1)))}))}),[s,l,o,a]);return n.useEffect((function(){return function(){clearTimeout(c.current)}}),[]),{onFocus:h,onBlur:p}}},8199:(t,e,o)=>{o.d(e,{n:()=>r});var n=o(3899);function r(t,e,o){var r=n.useState(e),i=r[0],a=r[1];return n.useEffect((function(){if(!i&&window&&t.current){var e=window.getComputedStyle(t.current).direction;e&&a(e)}}),o),i}},9844:(t,e,o)=>{o.d(e,{O:()=>y});var n,r=o(3899),i=function(){var t=window&&window.navigator.userAgent;if(!t)return!1;var e=!1,o=[],n={edge:/(edge)[ \/]([\w.]+)/i,webkit:/(chrome|crios)[ \/]([\w.]+)/i,safari:/(webkit)[ \/]([\w.]+)/i,opera:/(opera)(?:.*version|)[ \/]([\w.]+)/i,msie:/(msie\s|trident.*? rv:)([\w.]+)/i,mozilla:/(mozilla)(?:.*? rv:([\w.]+)|)/i};for(var r in n)if(n.hasOwnProperty(r)&&(o=t.match(n[r]))){(e={})[r]=!0,e[o[1].toLowerCase().split(" ")[0].split("/")[0]]=!0,e.version=parseInt(document.DOCUMENT_NODE||o[2],10);break}return e},a=function(t){return t&&t.ownerDocument||window.document},s=function(t){var e=i(),o=a(t);return e.edge||e.safari?o.body:o.documentElement},c=function(t){if(t&&t.className&&"string"==typeof t.className&&t.className.indexOf("k-auto-scrollable")>-1)return!0;var e=window.getComputedStyle(t,"overflow").overflow;return e.indexOf("auto")>-1||e.indexOf("scroll")>-1},l=function(t){var e=s(t);if(!t||t===document.body||t===document.documentElement)return e;for(var o=t;o&&o!==document.body&&o.nodeType!==Node.DOCUMENT_FRAGMENT_NODE&&o.nodeType!==Node.DOCUMENT_NODE&&!c(o);)o=o.parentNode;return!o||o!==document.body&&o.nodeType!==Node.DOCUMENT_FRAGMENT_NODE?o:e};!function(t){t.POINTER_DOWN="pointerdown",t.POINTER_MOVE="pointermove",t.POINTER_UP="pointerup",t.POINTER_CANCEL="pointercancel",t.MOUSE_DOWN="mousedown",t.MOUSE_MOVE="mousemove",t.MOUSE_UP="mouseup",t.CONTEXT_MENU="contextmenu",t.TOUCH_START="touchstart",t.TOUCH_MOVE="touchmove",t.TOUCH_END="touchend",t.TOUCH_CANCEL="touchcancel",t.SCROLL="scroll",t.START="KENDO_DRAG_AND_DROP_START",t.MOVE="KENDO_DRAG_AND_DROP_MOVE",t.END="KENDO_DRAG_AND_DROP_END",t.CANCEL="KENDO_DRAG_AND_DROP_CANCEL"}(n||(n={}));var h=function(){},p=function(t,e,o){void 0===o&&(o={});var r,i,c,p,u,v=o.onIsPressedChange,d=void 0===v?h:v,f=o.onIsScrollingChange,m=void 0===f?h:f,y=o.onVelocityChange,g=void 0===y?h:y,b=o.onOffsetChange,x=void 0===b?h:b,w=o.onPageOffsetChange,_=void 0===w?h:w,z=o.onClientOffsetChange,C=void 0===z?h:z,k=o.onScrollOffsetChange,M=void 0===k?h:k,O=o.onInitialScrollOffsetChange,S=void 0===O?h:O,H=e.payload,P=H.element,I=H.hint,A=t.autoScrollDirection,V=t.scrollableParent,E=function(t,e){return function(t){return/^touch/.test(t.type)}(t)?{pageX:t.changedTouches[0].pageX,pageY:t.changedTouches[0].pageY,clientX:t.changedTouches[0].clientX,clientY:t.changedTouches[0].clientY,scrollX:e.scrollOffset.x,scrollY:e.scrollOffset.y,offsetX:e.offset.x,offsetY:e.offset.y,type:t.type,originalEvent:t,isTouch:!0,altKey:!1,ctrlKey:!1,shiftKey:!1,metaKey:!1}:function(t){return/^(scroll)/.test(t.type)}(t)?{pageX:e.pageOffset.x,pageY:e.pageOffset.y,clientX:e.clientOffset.x,clientY:e.clientOffset.y,scrollX:e.scrollOffset.x,scrollY:e.scrollOffset.y,offsetX:e.offset.x,offsetY:e.offset.y,type:t.type,originalEvent:t,altKey:!1,ctrlKey:!1,shiftKey:!1,metaKey:!1}:{pageX:t.pageX,pageY:t.pageY,clientX:t.clientX,clientY:t.clientY,offsetX:t.offsetX,offsetY:t.offsetY,scrollX:e.scrollOffset.x,scrollY:e.scrollOffset.y,type:t.type,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,originalEvent:t}}(e.event,t);switch(E.type){case n.POINTER_DOWN:if(E.type===n.POINTER_DOWN&&(!E.originalEvent.isPrimary||0!==E.originalEvent.button))break;case n.MOUSE_DOWN:if(E.type===n.MOUSE_DOWN&&E.originalEvent.which&&E.originalEvent.which>1||t.ignoreMouse)break;case n.TOUCH_START:if(E.type===n.TOUCH_START&&1!==E.originalEvent.touches.length)break;case n.START:var T=V||l(e.payload.element);S(T instanceof Window?{x:T.scrollX,y:T.scrollY}:{x:T.scrollLeft,y:T.scrollTop}),C({x:E.clientX,y:E.clientY}),_({x:E.pageX,y:E.pageY}),x({x:E.offsetX,y:E.offsetY}),d(!0),H.onPress&&H.onPress(E);break;case n.SCROLL:if(E.type===n.SCROLL&&!t.pressed)break;var B=V||l(P),j=B instanceof Window?{x:B.scrollX,y:B.scrollY}:{x:B.scrollLeft,y:B.scrollTop};E.scrollX=j.x-t.initialScrollOffset.x,E.scrollY=j.y-t.initialScrollOffset.y,M({x:E.scrollX,y:E.scrollY});case n.POINTER_MOVE:if(E.type===n.POINTER_MOVE&&!E.originalEvent.isPrimary)break;case n.MOUSE_MOVE:case n.TOUCH_MOVE:if(E.type===n.TOUCH_MOVE&&1!==E.originalEvent.touches.length)break;case n.MOVE:if(t.pressed){if(t.autoScroll&&"scroll"!==E.originalEvent.type&&P){var L=a(P),R=V||l(L.elementFromPoint(E.clientX,E.clientY)),D=(r=E.clientX,i=E.clientY,c=function(t,e){var o=s(t);if(t===o)return{top:o.scrollTop,left:o.scrollLeft,bottom:o.scrollTop+e.innerHeight,right:o.scrollLeft+e.innerWidth};var n=t.getBoundingClientRect();return{bottom:n.top+n.height,right:n.left+n.width,left:n.left,top:n.top}}(R,function(t){var e=a(t);return e&&e.defaultView||window}(P)),p={x:0,y:0},u=50,r-c.left<u?p.x=-(u-(r-c.left)):c.right-r<u&&(p.x=u-(c.right-r)),i-c.top<u?p.y=-(u-(i-c.top)):c.bottom-i<u&&(p.y=u-(c.bottom-i)),p);g({x:A&&!1===A.horizontal?0:D.x,y:A&&!1===A.vertical?0:D.y}),m(0!==D.y||0!==D.x)}!t.drag&&H.onDragStart&&H.onDragStart(E),H.onDrag&&H.onDrag(E);var N=function(t,e){var o=0,n=null;return e.forEach((function(e){if(e&&t){var r=function(t,e){var o=t.getBoundingClientRect(),n=e.getBoundingClientRect(),r=Math.max(n.top,o.top),i=Math.max(n.left,o.left),a=Math.min(n.left+n.width,o.left+o.width),s=Math.min(n.top+n.height,o.top+o.height),c=a-i,l=s-r;if(i<a&&r<s){var h=n.width*n.height,p=o.width*o.height,u=c*l;return Number((u/(h+p-u)).toFixed(4))}return 0}(t,e);r>o&&(o=r,n=e)}})),n}(I||P,t.drops.map((function(t){return t&&t.element})).filter((function(t){return t!==(I||P)}))),F=t.drops.find((function(t){return t.element===N}));F&&N&&function(t,e,o){var n=o.getBoundingClientRect();return n.top<=e&&n.left<=t&&e<=n.bottom&&t<=n.right}(E.clientX,E.clientY,V||l(N))&&N!==P?(t.drop&&t.drop.element)!==N?(t.drop&&t.drop.onDragLeave&&t.drop.onDragLeave(E),F.onDragEnter&&F.onDragEnter(E)):F.onDragOver&&F.onDragOver(E):t.drop&&t.drop.onDragLeave&&t.drop.onDragLeave(E)}C({x:E.clientX,y:E.clientY}),_({x:E.pageX,y:E.pageY});break;case n.POINTER_UP:if(E.type===n.POINTER_UP&&!E.originalEvent.isPrimary)break;case n.MOUSE_UP:case n.TOUCH_END:if(E.type===n.TOUCH_END&&1!==E.originalEvent.touches.length)break;case n.END:d(!1),m(!1),M({x:0,y:0}),H.onRelease&&H.onRelease(E),t.drop&&t.drop.onDrop&&t.drop.onDrop(E),t.drag&&H.onDragEnd&&H.onDragEnd(E);break;case n.POINTER_CANCEL:case n.CONTEXT_MENU:case n.TOUCH_CANCEL:case n.CANCEL:d(!1),m(!1),M({x:0,y:0}),H.onDragEnd&&H.onDragEnd(E),t.drop&&t.drop.onDragLeave&&t.drop.onDragLeave(E)}},u=function(t,e){if(t){var o,n;t===s(t)?(o=document.body.scrollHeight>window.innerHeight,n=document.body.scrollWidth>window.innerWidth):(o=t.offsetHeight<=t.scrollHeight,n=t.offsetWidth<=t.scrollWidth);var r=t.scrollTop+e.y,i=o&&r>0&&r<t.scrollHeight,a=t.scrollLeft+e.x,c=n&&a>0&&a<t.scrollWidth;i?t.scrollTop+=e.y:o&&r<0&&(t.scrollTop=0),c?t.scrollLeft+=e.x:n&&a<0&&(t.scrollLeft=0)}},v=o(3228),d=o(4912),f=o(2333),m=2e3;function y(t,e,o){void 0===o&&(o={});var n=e.onPress,i=void 0===n?v.Z:n,a=e.onRelease,s=void 0===a?v.Z:a,c=e.onDragStart,h=void 0===c?v.Z:c,y=e.onDrag,g=void 0===y?v.Z:y,b=e.onDragEnd,x=void 0===b?v.Z:b,w=o.hint,_=void 0===w?null:w,z=o.mouseOnly,C=void 0!==z&&z,k=o.autoScroll,M=void 0===k||k,O=o.scrollContainer,S=void 0===O?null:O,H=r.useState(!1),P=H[0],I=H[1],A=r.useState(!1),V=A[0],E=A[1],T=(0,d.W)(f.Gc)[0],B=(0,d.W)(f.Dg),j=B[0],L=B[1],R=r.useContext(f.tk)[0],D=r.useContext(f.Fg),N=D[0],F=D[1],U=D[2],W=r.useRef({x:0,y:0}),G=r.useRef(),K=r.useRef(!1),X=r.useRef(),Z=r.useRef(null),Y=r.useRef(!1),q=r.useRef({x:0,y:0}),Q=r.useRef({x:0,y:0}),J=r.useRef({x:0,y:0}),$=r.useRef({x:0,y:0}),tt=r.useRef({x:0,y:0}),et=r.useRef({x:0,y:0}),ot=Boolean("undefined"!=typeof window&&window.PointerEvent),nt=!C&&ot,rt=r.useCallback((function(){return t.current&&t.current.element?t.current.element:t.current}),[t]),it=r.useCallback((function(){return _&&_.current&&_.current.element?_.current.element:_?_.current:null}),[_]),at=r.useCallback((function(){return S&&S.current&&S.current.element?S.current.element:S?S.current:null}),[S]),st=r.useCallback((function(){return"object"==typeof M&&M.boundaryElementRef&&M.boundaryElementRef.current&&M.boundaryElementRef.current.element?M.boundaryElementRef.current.element:"object"==typeof M&&M.boundaryElementRef&&M.boundaryElementRef.current?M.boundaryElementRef.current:null}),[M]),ct=r.useRef(null);r.useImperativeHandle(ct,(function(){return{element:rt(),hint:it(),onPress:wt,onDragStart:zt,onDrag:Ct,onDragEnd:kt,onRelease:_t,data:t.current}}));var lt=r.useCallback((function(){var t=rt();return t&&t.ownerDocument||document}),[rt]),ht=r.useCallback((function(){var t=lt();return t&&t.defaultView||window}),[lt]),pt=r.useCallback((function(){return{drag:j?j.current:null,drop:T?T.current:null,drags:N.map((function(t){return t.current})),drops:R.map((function(t){return t.current})),pressed:P,ignoreMouse:K.current,scrollOffset:tt.current,offset:q.current,pageOffset:Q.current,initialScrollOffset:et.current,clientOffset:J.current,initialClientOffset:$.current,velocity:W.current,autoScroll:Boolean("object"==typeof M?!1!==M.enabled:M),scrollableParent:st(),autoScrollDirection:"object"==typeof M?M.direction:{horizontal:!0,vertical:!0},isScrolling:V}}),[j,T,N,R,P,M,st,V]),ut=r.useCallback((function(t){I(t)}),[]),vt=r.useCallback((function(t){E(t)}),[]),dt=r.useCallback((function(t){W.current=t}),[]),ft=r.useCallback((function(t){q.current=t}),[]),mt=r.useCallback((function(t){J.current=t}),[]),yt=r.useCallback((function(t){Q.current=t}),[]),gt=r.useCallback((function(t){$.current=t}),[]),bt=r.useCallback((function(t){tt.current=t}),[]),xt=r.useCallback((function(t){et.current=t}),[]),wt=r.useCallback((function(t){i(t)}),[i]),_t=r.useCallback((function(t){s(t)}),[s]),zt=r.useCallback((function(e){L(ct,{target:t.current,event:e}),h(e)}),[L,t,h]),Ct=r.useCallback((function(t){g(t)}),[g]),kt=r.useCallback((function(e){Y.current||(L(null,{target:t.current,event:e}),x(e))}),[x,L,t]),Mt=r.useCallback((function(t){p(pt(),{event:t,payload:ct.current},{onVelocityChange:dt,onOffsetChange:ft,onClientOffsetChange:mt,onPageOffsetChange:yt,onInitialClientOffsetChange:gt,onScrollOffsetChange:bt,onInitialScrollOffsetChange:xt,onIsPressedChange:ut,onIsScrollingChange:vt})}),[pt,dt,ft,yt,mt,gt,xt,ut,bt,vt]),Ot=r.useCallback((function(t){Mt(t)}),[Mt]),St=r.useCallback((function(t){Mt(t)}),[Mt]),Ht=r.useCallback((function(t){Mt(t)}),[Mt]),Pt=r.useCallback((function(t){Mt(t)}),[Mt]),It=r.useCallback((function(t){Mt(t)}),[Mt]),At=r.useCallback((function(t){Mt(t)}),[Mt]),Vt=r.useCallback((function(t){Mt(t)}),[Mt]),Et=r.useCallback((function(t){t.preventDefault(),Mt(t)}),[Mt]),Tt=r.useCallback((function(t){t.preventDefault(),Mt(t)}),[Mt]),Bt=r.useCallback((function(t){t.preventDefault(),Mt(t)}),[Mt]),jt=r.useCallback((function(t){if(0===t.touches.length&&1===t.changedTouches.length){var e=ht();K.current=!0,X.current=e.setTimeout((function(){K.current=!1}),m)}Mt(t)}),[Mt,ht]),Lt=r.useCallback((function(t){Mt(t)}),[Mt]),Rt=r.useCallback((function(){var t=rt();if(t){var e=t.style.touchAction;return t.style.touchAction="none",function(){t.style.touchAction=e}}}),[rt]),Dt=r.useCallback((function(){return F(ct),function(){U(ct)}}),[U,F]);r.useEffect((function(){var t=ht();if(V){var e=at()||l(document.elementFromPoint(J.current.x,J.current.y));t.clearInterval(G.current),G.current=t.setInterval((function(){u(e,{x:W.current.x,y:W.current.y})}),50)}return function(){t.clearInterval(G.current)}}),[rt,at,ht,V]),r.useEffect(Rt,[Rt]),r.useEffect((function(){var t=ht(),e=rt(),o=lt();return nt?(e&&(Z.current=l(e),Z.current&&Z.current.addEventListener("scroll",Lt,{passive:!0}),e.addEventListener("pointerdown",Ot,{passive:!0})),P&&(o.addEventListener("pointermove",St),o.addEventListener("pointerup",Pt,!0),o.addEventListener("contextmenu",Et),o.addEventListener("pointercancel",Ht,{passive:!0}))):(t.addEventListener("touchmove",v.Z,{capture:!1,passive:!1}),e&&(e.addEventListener("mousedown",It,{passive:!0}),C||(e.addEventListener("touchstart",Tt,{passive:!0}),P&&(e.addEventListener("touchmove",Bt,{passive:!0}),e.addEventListener("touchend",jt,{passive:!0})))),P&&(o.addEventListener("mousemove",At,{passive:!0}),o.addEventListener("mouseup",Vt,{passive:!0}))),function(){Z.current&&Z.current.removeEventListener("scroll",Lt),e&&(e.removeEventListener("pointerdown",Ot),e.removeEventListener("mousedown",It),e.removeEventListener("touchstart",Tt),e.removeEventListener("touchmove",Bt),e.removeEventListener("touchend",jt)),o.removeEventListener("pointermove",St),o.removeEventListener("pointerup",Pt,!0),o.removeEventListener("contextmenu",Et),o.removeEventListener("pointercancel",Ht),o.removeEventListener("mousemove",At),o.removeEventListener("mouseup",Vt),t.removeEventListener("touchmove",v.Z),t.clearTimeout(X.current)}}),[P,ht,rt,lt,C,nt,Et,It,At,Vt,Ht,Ot,St,Pt,jt,Bt,Tt,Lt]),r.useEffect((function(){return Y.current=!1,function(){Y.current=!0}}),[]),r.useLayoutEffect(Dt,[Dt])}},4912:(t,e,o)=>{o.d(e,{W:()=>r});var n=o(3899),r=function(t,e){var o=n.useContext(t),r=o[0],i=o[1],a=n.useState(e),s=a[0],c=a[1];return[void 0!==r?r:s,function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];void 0!==r?i.apply(void 0,t):c(t[0])}]}},3322:(t,e,o)=>{o.d(e,{i:()=>r});var n=o(3899),r=function(t,e,o){void 0===o&&(o={});var r=n.useCallback((function(n){o.onMouseDown&&o.onMouseDown.call(void 0,n),t.onMouseDown&&t.onMouseDown.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseDown,t.onMouseDown,e]),i=n.useCallback((function(n){o.onMouseUp&&o.onMouseUp.call(void 0,n),t.onMouseUp&&t.onMouseUp.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseUp,t.onMouseUp,e]);return{onClick:n.useCallback((function(n){o.onClick&&o.onClick.call(void 0,n),t.onClick&&t.onClick.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onClick,t.onClick,e]),onMouseUp:i,onMouseDown:r,onDoubleClick:n.useCallback((function(n){o.onDoubleClick&&o.onDoubleClick.call(void 0,n),t.onDoubleClick&&t.onDoubleClick.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onDoubleClick,t.onDoubleClick,e]),onMouseEnter:n.useCallback((function(n){o.onMouseEnter&&o.onMouseEnter.call(void 0,n),t.onMouseEnter&&t.onMouseEnter.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseEnter,t.onMouseEnter,e]),onMouseLeave:n.useCallback((function(n){o.onMouseLeave&&o.onMouseLeave.call(void 0,n),t.onMouseLeave&&t.onMouseLeave.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseLeave,t.onMouseLeave,e]),onMouseMove:n.useCallback((function(n){o.onMouseMove&&o.onMouseMove.call(void 0,n),t.onMouseMove&&t.onMouseMove.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseMove,t.onMouseMove,e]),onMouseOut:n.useCallback((function(n){o.onMouseOut&&o.onMouseOut.call(void 0,n),t.onMouseOut&&t.onMouseOut.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseOut,t.onMouseOut,e]),onMouseOver:n.useCallback((function(n){o.onMouseOver&&o.onMouseOver.call(void 0,n),t.onMouseOver&&t.onMouseOver.call(void 0,{target:e.current,syntheticEvent:n})}),[o.onMouseOver,t.onMouseOver,e])}}},1573:(t,e,o)=>{o.d(e,{V:()=>r});var n=o(3899);function r(t,e,o){var r=n.useState(e),i=r[0],a=r[1];return n.useEffect((function(){if(!i&&window&&t.current){var e=window.getComputedStyle(t.current).direction;e&&a(e)}}),o),i}},7681:(t,e,o)=>{o.d(e,{J:()=>h});var n=o(3899),r=o(189),i=o(8047),a=o(698),s=o(3218),c=o(3322),l=function(){return l=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},l.apply(this,arguments)},h=n.forwardRef((function(t,e){var o=t.className,r=t.name,h=t.themeColor,u=t.size,v=t.flip,d=t.style,f=t.id,m=t.tabIndex,y=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["className","name","themeColor","size","flip","style","id","tabIndex"]),g=n.useRef(null),b=n.useRef(null);n.useImperativeHandle(g,(function(){return{element:b.current}})),n.useImperativeHandle(e,(function(){return g.current}));var x=n.useMemo((function(){return u||p.size}),[u]),w=n.useMemo((function(){return v||p.flip}),[v]),_=n.useMemo((function(){var t;return(0,i.A)("k-icon","k-font-icon",r&&(0,s._z)(r),((t={})["k-color-".concat(h)]=h,t["k-flip-h"]="horizontal"===w||"both"===w,t["k-flip-v"]="vertical"===w||"both"===w,t),a.w[x],o)}),[r,h,x,w,o]),z=(0,c.i)(t,g);return n.createElement("span",l({ref:b},y,z,{className:_,id:f,tabIndex:m,style:d,role:"presentation"}))}));h.propTypes={style:r.object,classNames:r.string,name:r.string,themeColor:r.oneOf(["inherit","primary","secondary","tertiary","info","success","error","warning","dark","light","inverse"]),size:r.oneOf(["default","xsmall","small","medium","large","xlarge","xxlarge","xxxlarge"]),flip:r.oneOf(["default","horizontal","vertical","both"])};var p={size:"default",flip:"default"};h.displayName="KendoIcon"},8130:(t,e,o)=>{o.d(e,{a:()=>c});var n=o(3899),r=o(7681),i=o(6584),a=o(8300),s=function(){return s=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},s.apply(this,arguments)},c=n.forwardRef((function(t,e){var o,c,l=n.useContext(a.r),h=l.type,p=l.icons,u=t.icon,v=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["icon"]),d="svg"===h?(null===(o=t.icon)||void 0===o?void 0:o.name)||t.name:t.name||(null===(c=t.icon)||void 0===c?void 0:c.name),f=(d=d&&p&&p[d]&&"string"==typeof p[d]?p[d]:d)&&p&&p[d]&&"string"!=typeof p[d]?p[d]:u;return"svg"===h&&f?n.createElement(i.l,s({},t,{icon:f,ref:e})):n.createElement(r.J,s({},v,{name:d,ref:e}))}));c.displayName="KendoIconWrap"},8300:(t,e,o)=>{o.d(e,{r:()=>n});var n=o(3899).createContext({type:"svg"});n.displayName="KendoReactIconsContext"},6584:(t,e,o)=>{o.d(e,{l:()=>c});var n=o(3899),r=o(189),i=o(8047),a=o(698),s=function(){return s=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},s.apply(this,arguments)},c=n.forwardRef((function(t,e){var o=t.children,r=t.className,c=t.svgClassName,h=t.icon,p=t.flip,u=t.id,v=t.tabIndex,d=t.size,f=t.style,m=t.svgStyle,y=t.themeColor,g=t.viewBox,b=(t.name,t.onClick),x=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(t,["children","className","svgClassName","icon","flip","id","tabIndex","size","style","svgStyle","themeColor","viewBox","name","onClick"]),w=n.useRef(null);n.useImperativeHandle(e,(function(){return{element:w.current}}));var _=n.useMemo((function(){return h?h.name:l.icon}),[h]),z=n.useMemo((function(){return d||l.size}),[d]),C=n.useMemo((function(){return p||l.flip}),[p]),k=n.useMemo((function(){return g||l.viewBox}),[g]),M=n.useMemo((function(){var t;return(0,i.A)("k-icon","k-svg-icon","k-svg-i-"+_,((t={})["k-color-".concat(y)]=y,t["k-flip-h"]="horizontal"===C||"both"===C,t["k-flip-v"]="vertical"===C||"both"===C,t),a.w[z],r)}),[_,y,z,C,r]),O=n.useMemo((function(){return t.width&&t.height?s({width:t.width,height:t.height},f):t.width?s({width:t.width,height:t.width},f):t.height?s({width:t.height,height:t.height},f):s({},f)}),[t.width,t.height,f]);return n.createElement("span",{className:M,style:O,ref:w,onClick:b},n.createElement("svg",s({id:u,className:c,style:m,"aria-hidden":!0,tabIndex:v,focusable:!1,xmlns:"http://www.w3.org/2000/svg",viewBox:h?h.viewBox:k,dangerouslySetInnerHTML:h?{__html:h.content}:void 0},x),h?void 0:o))}));c.propTypes={style:r.object,classNames:r.string,children:r.any,icon:r.object,themeColor:r.oneOf(["inherit","primary","secondary","tertiary","info","success","error","warning","dark","light","inverse"]),size:r.oneOf(["default","xsmall","small","medium","large","xlarge","xxlarge","xxxlarge"]),flip:r.oneOf(["default","horizontal","vertical","both"])};var l={size:"default",flip:"default",icon:"",viewBox:"0 0 24 24"};c.displayName="KendoSvgIcon"},698:(t,e,o)=>{o.d(e,{w:()=>n});var n={default:"",xsmall:"k-icon-xs",small:"k-icon-sm",medium:"k-icon-md",large:"k-icon-lg",xlarge:"k-icon-xl",xxlarge:"k-icon-xxl",xxxlarge:"k-icon-xxxl"}},3218:(t,e,o)=>{o.d(e,{iJ:()=>r,_z:()=>i,wi:()=>a});var n=o(189),r=function(t){return t.replace(/^k-i-/,"")},i=function(t){return"k-i-"+t},a=n.shape({name:n.string.isRequired,content:n.string.isRequired,viewBox:n.string.isRequired})},3493:(t,e,o)=>{o.d(e,{R:()=>n});var n={backspace:8,tab:9,enter:13,shift:16,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46}},3814:(t,e,o)=>{o.r(e),o.d(e,{AsyncFocusBlur:()=>W,BrowserSupportService:()=>a,COLLECTION_ACTION:()=>V,DragAndDrop:()=>_t,Draggable:()=>zt._,Droppable:()=>Mt,FOCUSABLE_ELEMENTS:()=>It.x,FormComponent:()=>y,Icon:()=>ot.J,IconWrap:()=>rt.a,IconsContext:()=>it.r,Keys:()=>w.R,Navigation:()=>It.W,SortedPublicItemIds:()=>Bt,SvgIcon:()=>nt.l,TreeFieldsService:()=>Tt,Typography:()=>gt,WatermarkOverlay:()=>D.t,ZIndexContext:()=>r.$,addItem:()=>le,areAllDirectChildrenChecked:()=>ae,canUseDOM:()=>s.N,canUseRef:()=>c,classNames:()=>l.A,clone:()=>u,cloneArray:()=>f,cloneDate:()=>p,cloneObject:()=>v,cloneValue:()=>d,createPropsContext:()=>X,dispatchEvent:()=>N.N,extendDataItem:()=>B,focusFirstFocusableChild:()=>m.n,getActiveElement:()=>At.v,getAllDirectIndirectChildrenIds:()=>ie,getAllParents:()=>se,getInnerActiveElement:()=>At.T,getItemPath:()=>j,getNestedValue:()=>Vt,getScrollbarWidth:()=>z,getTabIndex:()=>g.p,getter:()=>b.Y,guid:()=>x.M,hasChildren:()=>$t,hasRelativeStackingContext:()=>R,isArray:()=>Et,isEnabledAndAllParentsEnabled:()=>re,isItemExpandedAndWithChildren:()=>te,kendoThemeMaps:()=>St.G,mapTree:()=>E,mapTreeItem:()=>T,memoizeOne:()=>Pt,noop:()=>_.Z,removeItem:()=>ce,resolveItemId:()=>ee,resolveItemsIds:()=>oe,setScrollbarWidth:()=>C,setter:()=>S,shouldShowValidationUI:()=>L.G,svgIconPropType:()=>at.wi,toIconClass:()=>at._z,toIconName:()=>at.iJ,treeIdUtils:()=>n,updateItem:()=>ne,useAsyncFocusBlur:()=>F.U,useCollection:()=>$,useCustomComponent:()=>J,useDir:()=>Y.n,useDocument:()=>tt,useDraggable:()=>Ot.O,useDroppable:()=>kt,useMouse:()=>Q.i,usePropsContext:()=>G,useRtl:()=>q.V,useWindow:()=>et,useZIndexContext:()=>r.u,validatePackage:()=>L.s,withPropsContext:()=>Z});var n={};o.r(n),o.d(n,{EMPTY_ID:()=>jt,SEPARATOR:()=>Rt,ZERO_LEVEL_ZERO_NODE_ID:()=>Lt,createId:()=>Wt,getAllShortIds:()=>Zt,getDecrementedItemIdAfterRemoval:()=>Qt,getDirectParentId:()=>Gt,getFirstChildId:()=>Ut,getIdWithoutRootParentId:()=>Ft,getItemById:()=>Dt,getRootParentId:()=>Nt,getShortId:()=>Yt,isIdEmptyOrZeroLevel:()=>Kt,isIdZeroLevel:()=>Xt,isItemFirstFromSiblings:()=>qt});var r=o(8259),i=function(){return"undefined"!=typeof document?document:{}},a=function(){function t(){this.scrollbar=0}return Object.defineProperty(t.prototype,"scrollbarWidth",{get:function(){var t=i();if(!this.scrollbar&&t&&t.createElement){var e=t.createElement("div");e.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",e.innerHTML=" ",t.body.appendChild(e),this.scrollbar=e.offsetWidth-e.scrollWidth,t.body.removeChild(e)}return this.scrollbar},enumerable:!1,configurable:!0}),t}(),s=o(7827),c=function(t){return"string"!=typeof Comment&&(function(t){return Boolean("function"==typeof t&&!!t.prototype.isReactComponent)}(t)||function(t){return Boolean(t.$$typeof&&"function"==typeof t.render)}(t))},l=o(8047),h=o(3899),p=function(t){return t?new Date(t.getTime()):null};function u(t){var e={};return v(t,e),e}function v(t,e){for(var o in t)if(t.hasOwnProperty(o)){var n=t[o];e[o]=d(n,e[o])}}function d(t,e){if(Array.isArray(t))return f(t);if(t instanceof Date)return p(t);if(h.isValidElement(t))return h.cloneElement(t,t.props);if(t&&"object"==typeof t){var o=e||{};return v(t,o),o}return t}function f(t){return t.map((function(t){return d(t,void 0)}))}var m=o(9124),y=function(){},g=o(4703),b=o(9659),x=o(3198),w=o(3493),_=o(3228),z=function(){return!(!s.N||!document.body)&&(new a).scrollbarWidth},C=function(){if(!s.N||!document.body)return!1;var t=(new a).scrollbarWidth;document.body.style.setProperty("--kendo-scrollbar-width","".concat(t,"px"))},k=o(4100),M={undefined:function(t){return t}},O=function(t,e){return e&&e.arrays&&!isNaN(Number(t))?[]:{}};function S(t){if(M[t])return M[t];var e=(0,k.E)(t);return M[t]=function(t,o,n){for(var r=t,i=e.length-1,a=0;a<i&&r;a++)r=r[e[a]]=r[e[a]]||O(e[a+1],n);r[e[i]]=o},M[t]}var H=function(){return H=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},H.apply(this,arguments)},P=function(t,e,o){if(o||2===arguments.length)for(var n,r=0,i=e.length;r<i;r++)!n&&r in e||(n||(n=Array.prototype.slice.call(e,0,r)),n[r]=e[r]);return t.concat(n||Array.prototype.slice.call(e))};function I(t,e,o){var n;return o?H(H({},t),((n={})[e]=o.length?P([],o,!0):void 0,n)):t&&t[e]?P([],t[e],!0):[]}function A(t,e,o){if(t[e]){var n=I(t,e).map((function(t){return A(t,e,o)}));return o(I(t,e,n))}return o(t)}var V,E=function(t,e,o){return P([],t.map((function(t){return A(t,e,o)})),!0)},T=function(t,e,o,n){for(var r=t,i=[],a=0;a<e.length;a++)r=r[e[a]],r=Array.isArray(r)?r:r[o],i.push(r);var s=i.length>1?i[i.length-2]:t,c=e[e.length-1],l=n(s[c]);s.splice(c,1,l)},B=function(t,e,o){var n;return Object.assign({},t,t[e]?((n={})[e]=t[e].slice(),n):{},o||{})},j=function(t,e,o){var n=[],r=P([],e,!0);if(r.length){var i=t[r.shift()||0];for(n.push(i);r.length&&o;)i=i[o][r.shift()||0],n.push(i)}return n},L=o(4006),R=function(t){if(!s.N)return!1;var e=t?t.ownerDocument:document;if(!e||!e.body)return!1;var o=e.createElement("div");o.style.transform="matrix(10, 0, 0, 10, 0, 0)";var n=e.createElement("div");n.appendChild(e.createTextNode("child")),n.style.position="fixed",n.style.top="10px",o.appendChild(n),e.body.appendChild(o);var r=10!==n.getBoundingClientRect().top;return e.body.removeChild(o),r},D=o(2080),N=o(5407),F=o(6059),U=function(){return U=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},U.apply(this,arguments)},W=function(t){var e=t.children,o=t.onFocus,n=t.onBlur,r=t.onSyncFocus,i=t.onSyncBlur,a=(0,F.U)({onFocus:o,onBlur:n,onSyncFocus:r,onSyncBlur:i});return h.createElement(h.Fragment,null,e.call(void 0,U({},a)))},G=function(t,e){return h.useContext(t)(e)},K=function(){return K=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},K.apply(this,arguments)},X=function(){return h.createContext((function(t){return t}))},Z=function(t,e){return h.forwardRef((function(o,n){var r=G(t,o);return h.createElement(e,K({},r,{ref:n}))}))},Y=o(8199),q=o(1573),Q=o(3322),J=function(t){return[t,{}]};!function(t){t[t.add=0]="add",t[t.remove=1]="remove"}(V||(V={}));var $=function(t){void 0===t&&(t=[]);var e=h.useRef(t),o=h.useCallback((function(t){switch(t.type){case V.add:e.current.push(t.item);break;case V.remove:var o=e.current.indexOf(t.item);e.current.splice(o,1)}}),[]);return[e.current,o]},tt=function(t){var e=h.useCallback((function(){return t.current&&t.current.element?t.current.element:t.current}),[t]);return h.useCallback((function(){var t=e();return t&&t.ownerDocument||document}),[e])},et=function(t){var e=tt(t);return h.useCallback((function(){var t=e();return t&&t.defaultView||window}),[e])},ot=o(7681),nt=o(6584),rt=o(8130),it=o(8300),at=o(3218),st=o(189),ct={xsmall:"k-fs-xs",small:"k-fs-sm",medium:"k-fs-md",large:"k-fs-lg",xlarge:"k-fs-xl"},lt={light:"k-font-weight-light",normal:"k-font-weight-normal",bold:"k-font-weight-bold"},ht={xsmall:"k-m-xs",small:"k-m-sm",medium:"k-m-md",large:"k-m-lg",xlarge:"k-m-xl",thin:"k-m-thin",hair:"k-m-hair"},pt={xsmall:"xs",small:"sm",medium:"md",large:"lg",xlarge:"xl",thin:"thin",hair:"hair"},ut={top:"k-mt-",right:"k-mr-",bottom:"k-mb-",left:"k-ml-"},vt={left:"k-text-left",right:"k-text-right",center:"k-text-center",justify:"k-text-justify"},dt={lowercase:"k-text-lowercase",uppercase:"k-text-uppercase",capitalize:"k-text-capitalize"},ft={inherit:"k-color-inherit",primary:"k-color-primary",secondary:"k-color-secondary",tertiary:"k-color-tertiary",info:"k-color-info",success:"k-color-success",warning:"k-color-warning",error:"k-color-error",dark:"k-color-dark",light:"k-color-light",inverse:"k-color-inverse"},mt=function(){return mt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},mt.apply(this,arguments)},yt=function(t){var e=h.forwardRef((function(e,o){var n=e.id,r=e.style,i=e.className,a=e.fontSize,s=e.fontWeight,c=e.textAlign,l=e.textTransform,p=e.themeColor,u=e.margin,v=function(t,e){var o={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(o[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(n=Object.getOwnPropertySymbols(t);r<n.length;r++)e.indexOf(n[r])<0&&Object.prototype.propertyIsEnumerable.call(t,n[r])&&(o[n[r]]=t[n[r]])}return o}(e,["id","style","className","fontSize","fontWeight","textAlign","textTransform","themeColor","margin"]),d=h.useRef(null),f=h.useRef(null);h.useImperativeHandle(d,(function(){return{element:f.current,props:e}})),h.useImperativeHandle(o,(function(){return d.current}));var m=t;return h.createElement(m,mt({id:n,ref:f,className:["k-".concat("p"===t?"paragraph":t),ct[a],lt[s],vt[c],dt[l],ft[p],function(){if(void 0!==u){if("string"==typeof u)return[ht[u]];if("number"==typeof u&&u>=0&&u<=24)return["k-m-".concat(u)];if("object"==typeof u){var t=[];return Object.keys(u).forEach((function(e){var o,n,r;null!==u[e]&&void 0!==u[e]&&t.push((o=e,r="string"==typeof(n=u[e])?pt[n]:n,"".concat(ut[o]).concat(r)))})),t.join(" ")}}}(),i].filter((function(t){return void 0!==t})).join(" "),style:r},v),e.children)}));return e.propTypes={style:st.object,className:st.string,fontSize:st.oneOf(["xsmall","small","medium","large","xlarge"]),fontWeight:st.oneOf(["light","normal","bold"]),margin:st.oneOfType([st.number,st.object,st.oneOf(["xsmall","small","medium","large","xlarge","thin","hair"])]),textAlign:st.oneOf(["left","right","center","justify"]),textTransform:st.oneOf(["lowercase","uppercase","capitalize"]),themeColor:st.oneOf(["inherit","primary","secondary","tertiary","info","success","error","warning","dark","light","inverse"])},e.displayName="KendoReactTypography".concat(t.toUpperCase()),e},gt={h1:yt("h1"),h2:yt("h2"),h3:yt("h3"),h4:yt("h4"),h5:yt("h5"),h6:yt("h6"),p:yt("p"),code:yt("code"),pre:yt("pre")},bt=function(){return bt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},bt.apply(this,arguments)},xt=function(t,e,o){var n=h.useState(e||t),r=n[0],i=n[1];return[void 0!==e?e:r,h.useCallback((function(t,e){i(t),o&&o.call(void 0,bt(bt({},e),{value:t}))}),[o,i])]},wt=o(2333),_t=function(t){var e=xt(null,void 0),o=e[0],n=e[1],r=xt(null,void 0),i=r[0],a=r[1],s=$([]),c=s[0],l=s[1],p=$([]),u=p[0],v=p[1];return h.createElement(wt.Dg.Provider,{value:[o,n]},h.createElement(wt.Gc.Provider,{value:[i,a]},h.createElement(wt.Fg.Provider,{value:[c,function(t){l({type:V.add,item:t})},function(t){l({type:V.remove,item:t})}]},h.createElement(wt.tk.Provider,{value:[u,function(t){v({type:V.add,item:t})},function(t){v({type:V.remove,item:t})}]},t.children))))};_t.displayName="KendoReactDragAndDrop";var zt=o(1779),Ct=o(4912);function kt(t,e){void 0===e&&(e={onDragEnter:_.Z,onDragOver:_.Z,onDragLeave:_.Z,onDrop:_.Z});var o=e.onDragEnter,n=void 0===o?_.Z:o,r=e.onDragOver,i=void 0===r?_.Z:r,a=e.onDragLeave,s=void 0===a?_.Z:a,c=e.onDrop,l=void 0===c?_.Z:c,p=(0,Ct.W)(wt.Gc)[1],u=h.useContext(wt.tk),v=u[1],d=u[2],f=h.useCallback((function(){return t.current&&t.current.element?t.current.element:t.current}),[t]),m=h.useRef(null);h.useImperativeHandle(m,(function(){return{element:f(),onDragEnter:y,onDragOver:g,onDragLeave:b,onDrop:x,data:t.current}}));var y=h.useCallback((function(e){p(m,{target:t.current,event:e}),n(e)}),[p,t,n]),g=h.useCallback((function(t){i(t)}),[i]),b=h.useCallback((function(e){p(null,{target:t.current,event:e}),s(e)}),[p,t,s]),x=h.useCallback((function(e){p(null,{target:t.current,event:e}),l(e)}),[p,t,l]),w=h.useCallback((function(){return v(m),function(){d(m)}}),[d,v]);h.useLayoutEffect(w,[w])}var Mt=h.forwardRef((function(t,e){var o=h.useRef(null),n=h.useRef(null),r=h.useCallback((function(){return o.current&&o.current.element?o.current.element:o.current}),[o]);h.useImperativeHandle(n,(function(){return{element:r()||void 0}})),h.useImperativeHandle(e,(function(){return n.current})),h.useImperativeHandle(t.childRef,(function(){return o.current}));var i=h.useCallback((function(e){t.onDragEnter&&t.onDragEnter({element:r(),target:n.current,event:e})}),[t.onDragEnter,r]),a=h.useCallback((function(e){t.onDragOver&&t.onDragOver({element:r(),target:n.current,event:e})}),[r,t.onDragOver]),s=h.useCallback((function(e){t.onDragLeave&&t.onDragLeave({element:r(),target:n.current,event:e})}),[t.onDragLeave,r]),c=h.useCallback((function(e){t.onDrop&&t.onDrop({element:r(),target:n.current,event:e})}),[t.onDrop,r]);return kt(o,{onDragEnter:i,onDragOver:a,onDragLeave:s,onDrop:c}),t.children?h.cloneElement(h.Children.only(t.children),{ref:o}):null}));Mt.displayName="KendoReactDroppable";var Ot=o(9844),St=o(2697);function Ht(t,e){if(t.length!==e.length)return!1;for(var o=0;o<t.length;o++)if(!((n=t[o])===(r=e[o])||Number.isNaN(n)&&Number.isNaN(r)))return!1;var n,r;return!0}function Pt(t,e){void 0===e&&(e=Ht);var o=null;function n(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];if(o&&o.lastThis===this&&e(n,o.lastArgs))return o.lastResult;var i=t.apply(this,n);return o={lastResult:i,lastArgs:n,lastThis:this},i}return n.clear=function(){o=null},n}var It=o(6604),At=o(3769);function Vt(t,e){var o=(t||"").split("."),n=e;return o.forEach((function(t){n=n?n[t]:void 0})),n}function Et(t){return void 0!==t.length}var Tt=function(){function t(t){this.expandField=t.expandField,this.selectField=t.selectField,this.hasChildrenField=t.hasChildrenField,this.childrenField=t.childrenField,this.textField=t.textField,this.disableField=t.disableField,this.checkField=t.checkField,this.checkIndeterminateField=t.checkIndeterminateField,this.focusIdField=t.focusIdField}return t.prototype.expanded=function(t){return Vt(this.expandField,t)},t.prototype.selected=function(t){return Vt(this.selectField,t)},t.prototype.text=function(t){return Vt(this.textField,t)},t.prototype.disabled=function(t){return Vt(this.disableField,t)},t.prototype.hasChildren=function(t){return Vt(this.hasChildrenField,t)},t.prototype.children=function(t){return Vt(this.childrenField,t)||[]},t.prototype.checked=function(t){return Vt(this.checkField,t)},t.prototype.checkIndeterminate=function(t){return Vt(this.checkIndeterminateField,t)},t.prototype.focusId=function(t){return this.focusIdField&&Vt(this.focusIdField,t)},t.prototype.getChildrenField=function(){return this.childrenField},t}(),Bt=function(){function t(){this.objects=[]}return t.prototype.init=function(t){for(var e,o=0;o<t.length;o++)o%5e4==0&&(e={},this.objects.push(e)),e[t[o]]=!0},t.prototype.hasId=function(t){return this.objects.some((function(e){return e[t]}))},t}(),jt="",Lt="0",Rt="_";function Dt(t,e,o){if(Xt(t))return e[Number(t)];var n=e[Number(Nt(t))],r=n&&n[o]||[];return r.length?Dt(Ft(t),r,o):void 0}function Nt(t){return Kt(t)?t:t.split(Rt)[0]}function Ft(t){if(Kt(t))return t;var e=t.indexOf(Rt);return t.substring(e+1)}function Ut(t){return Wt("0",t)}function Wt(t,e){return t=t.toString(),e?e+Rt+t:t}function Gt(t){var e=t.lastIndexOf(Rt);return e<0?jt:t.substring(0,e)}function Kt(t){return t===jt||t.indexOf(Rt)<0}function Xt(t){return t!==jt&&t.indexOf(Rt)<0}function Zt(t){return t.split(Rt)}function Yt(t){var e=t.lastIndexOf(Rt);return e<0?t:t.substring(e+1)}function qt(t){return Yt(t)===Lt}function Qt(t,e){var o=e;e="r"+Rt+e;var n=Gt(t="r"+Rt+t)+Rt;if(e.startsWith(n)){var r=e.substring(n.length);if(r){var i=Nt(r);if(Number(Yt(t))<Number(i))return Ft(n+(Number(i)-1).toString()+r.substring(i.length))}}return o}var Jt=function(){return Jt=Object.assign||function(t){for(var e,o=1,n=arguments.length;o<n;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},Jt.apply(this,arguments)};function $t(t,e){var o=Vt(e,t);return Boolean(o&&o.length)}function te(t,e){return e.expanded(t)&&$t(t,e.getChildrenField())}function ee(t,e,o,n){var r=oe([t],e,o,n);return r.length?r[0]:void 0}function oe(t,e,o,n){var r=[],i=new Bt;return i.init(t),he(i,e,o,jt,r,n),r}function ne(t,e,o,n,r){var i,a=Number(Nt(e));if(a>=t.length)return t;var s=t,c=t[a];return c[n]||(c=(s=t.slice())[a]=Object.assign({},c,((i={})[n]=!0,i))),Xt(e)?o(c):c[r]&&(c[r]=ne(c[r],Ft(e),o,n,r)),s}function re(t,e,o){for(var n=Zt(t),r=e,i=0;i<n.length;i++){var a=r[Number(n[i])];if(o.disabled(a))return!1;r=a[o.getChildrenField()]}return!0}function ie(t,e,o,n){return n?function t(e){for(var r=[],i=e[o]||[],a=0;a<i.length;a++)r.push(Vt(n,i[a])),r=r.concat(t(i[a]));return r}(t):function t(e,n){for(var r=[],i=e[o]||[],a=0;a<i.length;a++){var s=Wt(a,n);r.push(s),r=r.concat(t(i[a],s))}return r}(t,e)}function ae(t,e,o,n,r){return(t[n]||[]).every((function(t,n){return r.indexOf(o?Vt(o,t):Wt(n,e))>-1}))}function se(t,e,o){for(var n=[],r=Zt(t),i=o,a=0;a<r.length-1&&i;a++){var s=i[Number(r[a])];n.push(s),i=s[e]}return n}function ce(t,e,o){var n=o.slice();if(Xt(t))n.splice(Number(t),1);else{var r=Number(Nt(t)),i=n[r]=Jt({},n[r]);i[e]=ce(Ft(t),e,i[e])}return n}function le(t,e,o,n,r){var i=r.slice();if(Xt(n))if("child"===e){var a=i[Number(n)]=Jt({},i[Number(n)]);a[o]?(a[o]=a[o].slice(),a[o].push(t)):a[o]=[t]}else i.splice(Number(n)+("after"===e?1:0),0,t);else{var s=Number(Nt(n)),c=i[s]=Jt({},i[s]);c[o]=le(t,e,o,Ft(n),c[o])}return i}function he(t,e,o,n,r,i){for(var a=0;a<o.length;a++){var s=o[a],c=Wt(a,n);t.hasId(Vt(e,s))&&r.push(c),$t(s,i)&&he(t,e,Vt(i,s),c,r,i)}}},6604:(t,e,o)=>{o.d(e,{x:()=>n,W:()=>r});var n=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[contenteditable]"],r=function(){function t(t){var e=this;this.rovingTabIndex=!0,this.update=function(){},this.focusNextIndex=function(t,o){var n=e.elements,r=n.indexOf(t)+o,i=n[(r=r<0?n.length-1:r)%n.length];return e.focusElement(i,t),i},this.tabIndex=t.tabIndex||0,this.root=t.root,this.selectors=t.selectors,this.focusOptions=t.focusOptions||{preventScroll:!0},this.rovingTabIndex=void 0===t.rovingTabIndex||t.rovingTabIndex,this.mouseEvents=t.mouseEvents||{},this.keyboardEvents=t.keyboardEvents||{}}return Object.defineProperty(t.prototype,"elements",{get:function(){return this.root.current?Array.from(this.root.current.querySelectorAll(this.selectors.join(","))):[]},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"first",{get:function(){return this.root.current&&this.root.current.querySelector(this.selectors.join(","))||null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"last",{get:function(){var t=this.elements;return t[t.length-1]||null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"current",{get:function(){return this.elements.find((function(t){return t.matches(":focus")}))||null},enumerable:!1,configurable:!0}),t.prototype.focusNext=function(t){return this.focusNextIndex(t,1)},t.prototype.focusPrevious=function(t){return this.focusNextIndex(t,-1)},t.prototype.triggerKeyboardEvent=function(t,e){var o=t.target instanceof Element&&t.target.closest(this.selectors.join(",")),n=" "===t.key?"Space":t.key,r=t.nativeEvent.type;o&&this.keyboardEvents[r][n]&&this.keyboardEvents[r][n].call(void 0,o,this,t,e)},t.prototype.triggerMouseEvent=function(t){var e=t.target instanceof Element&&t.target.closest(this.selectors.join(",")),o=t.nativeEvent.type;e&&this.mouseEvents[o].call(void 0,e,this,t)},t.prototype.focusElement=function(t,e){t&&(e&&(this.rovingTabIndex&&e.removeAttribute("tabindex"),e.classList.remove("k-focus")),this.rovingTabIndex&&t.setAttribute("tabindex",String(this.tabIndex)),t.focus(this.focusOptions))},t}()},3228:(t,e,o)=>{o.d(e,{Z:()=>n});var n=function(){}},2697:(t,e,o)=>{o.d(e,{G:()=>n});var n={sizeMap:{small:"sm",medium:"md",large:"lg"},roundedMap:{small:"sm",medium:"md",large:"lg"},orientationMap:{vertical:"vstack",horizontal:"hstack"}}},4006:(t,e,o)=>{o.d(e,{s:()=>i,G:()=>a});var n=o(9302),r=["telerik.com","progress.com","stackblitz.io","csb.app"];function i(t){if(void 0!==n)n.validatePackage(t);else{var e="License activation failed for ".concat(t.name,"\n");e+="The @progress/kendo-licensing script is not loaded.\n",e+="See ".concat(t.licensingDocsUrl," for more information.\n"),console.warn(e)}}function a(t){return!r.some((function(t){var e;return null===(e=globalThis.document)||void 0===e?void 0:e.location.hostname.endsWith(t)}))&&!(null==n?void 0:n.validatePackage(t))}},2080:(t,e,o)=>{o.d(e,{t:()=>a});var n=o(3899),r=o(994),i=!1,a=function(){var t=n.useState(!0),e=t[0],o=t[1],a=n.useState(!1),s=a[0],c=a[1];n.useEffect((function(){i||(c(!0),i=!0)}),[]);var l=n.createElement(n.Fragment,null,e&&n.createElement("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",position:"fixed",top:"16px",right:"16px",padding:"12px",borderRadius:"4px",boxShadow:"0px 4px 5px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.03)",fontSize:"14px",fontWeight:400,lineHeight:"20px",backgroundColor:"#FFC000",color:"#1E1E1E",zIndex:999}},n.createElement("span",{style:{display:"flex",alignSelf:"center",marginRight:"8px"}},n.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"}))),n.createElement("span",null,"No valid license found for KendoReact. Learn how to activate your license."),n.createElement("div",{style:{display:"flex",alignItems:"center",marginLeft:"24px"}},n.createElement("a",{href:"https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-banner",style:{marginRight:"8px",display:"flex"}},n.createElement("button",{title:"Learn More",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"5px",backgroundColor:"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"}},n.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},n.createElement("path",{d:"M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",fill:"#1E1E1E"})))),n.createElement("button",{title:"Close",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"5px",backgroundColor:"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onClick:function(){o(!1)}},n.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},n.createElement("path",{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",fill:"#1E1E1E"}))))));return n.createElement(n.Fragment,null,n.createElement("div",{style:{position:"absolute",width:"100%",height:"100%",top:0,left:0,right:0,bottom:0,opacity:.2,zIndex:101,pointerEvents:"none",backgroundImage:"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABVxSURBVHgB7Z3tVRtJE4WL9zgANgLLGRCCnAGOADmCxRGgDFAGYiOADKQMIAGO9J8ji42g37mjqlUjBgOanpn+uM85sjC2sKzbVd1dVV0tQgghhBBCCCGEEEIIKRPn3Gn1GAlJmmN1pP558J6OX9540ejh4WGlX09OTk7+EZIclXYXlY43+vVflY7PH3wd9c+AY/Wvvcb9/b0bjUYOz/hBQpICmh1oOPrEa6l/4rTR337AhIMgTSqtzg+0m8gnof7p0mD8EzmGhkFwJiR6np6e7luLL9Q/RTDTBzF+7wfWg2CxWOCHjYVET6XTdLPZrFuLL9Q/NeCkoVUQ4/d+6Ijev1yof1rAUVMvQgjJHebrSRu+CEmWo/O8hISgCjStKpgiGoDWed4AUP/hwGf++Pi4hQYyFHgDzBP3T7A8b0uo/zD4+sMBy1CwWKR/YjF+fS/Uv2di0t/eEAdBT0QnvlD/PolR/xoOgu4JUd7bFdS/e6I1foODoFuqz3M2mUziFF+of5dEb/xGwyAYCwmCVuPNYv5MqX94Yl75NWKD4PLyEm92KqQoqH9Y8Bnis0zC+A14LbxxVqiVCfUPh678plxNFYQe5pjRgAgpDAv4IOAHJyCEkDJoiPaeCyG5UA1oRIYWHNivSSbV0wLq/zbQXz+bS8kV/AeZJ35NCcYPqH8zvv4VS8kVFou8phTjB9T/NcVt+zgI9rjQDRwTgPrvKcn5v4CDYIfT/vtFiS/UHxRr/AYHwQ4t9DiVwihZ/+KN36ATKJsS9U+utr9r/EGQdQSUNFKa/geZkImQ/2rHlznnQDG7oX9b9Xwl5AUl6G9oLcSSxl8Q/p4P13YJIaQMisvzEkJ2lJjnJyQY3lnoJGfNUvP8oUhZf7c70s2eCG1wL7uhRJ0iQnCveiDIhzf7t/f9IvP8IUhJfx/b9rErUkvgRVPIE1fv6xrvbzweu7OzM3d7e4v3OhfSilT092HMJzCxF4u43eWctfFvt1uHu9nxXvF1CWmtroldfx9W+HVErINAjX+M65ngAPxnOAJ1AiMhrUjBCdD4Oya2QYBlPwx8vV47WwFg+a+XZbrz83NzANz/ByBmJ0Dj74lYBgECfrbnt6U/DB/vC7388L2rqyu8vzshwYjRCdD4e8YfBLidVgYA0X7M9jB8PGazmbu5ualnfiz9dSAsufwPTwz6+5jjp/H3CD5ofPB9343u9v3u6+U+0jyY7eEA8Hx3d4c/QjvvMyGdMZT+TeA9wBHR+DPHUn3T6bRe7uMxn89tn18v/TH7O17gQEheYM9vEX7M9hbsg/FbHED3/IPPSISQgNhyE0au+7x7PPtOQFcB3PMTMjTYf4cyRN3zL2DgMHgs/7XU99acgDIWEgUh9W/4uWMh8QKBvCh8qxSR7fmxt0eEv8kJ6MzP8/2REFL/g59bp/o0xsMAb6xAnBB5Yr+6D3X9KOpBxP/ACWA0jFnoEw+h9D/4mYd5/pGQeAlRLFK95tJy+35578PDQ+0E9LAPi3wixAUsFmKRT6I0DIIPzdJuf6R3i+UeZnsz/nqjPx47/fMpZ/54OVb/g5/BZi4pY4Pgo8s2d3CkF0Z/cXFRL/+Xy2W9BdBUH4/5JsBn9W94PZu5pI77QzMOjepiNp/j71hO//fv31sr7qmtfT73i3xWjnvAZHhH/4nquXrLwB2bueSJ27Vmvodhq4df4BmzvQb3IPxWl/zgRl/DwZA4GrhdYFUHfbHE1y0enXsJ2FLfCnggvjqBejDoTI8o38ocgJAscNq8BY4fv/Uf+J46gjkdQcbA+19fXzs7zQfR8TWcgH+kFw/u+fMDKz/o3OQETk9PLcWLPSBbeeWELd91eb+CcTc5gXr6r9J8PNKbF/7S3z+6DYcvDasBOv6M0GUduNDfv+cEYPhjIVmA+I3Vc4gaOQzfHAECvb4joAPICCzlrIJP93h/dAIYDBQ/L8wBNC37rXUblv5CB5AfGvi5h6F7Ed9GJ2CZP0b780O1vreVnnhOAFsBOoCMscg/HMBbTsCO+grJFkvvHmYCSnYA/5MMcbsiH6TykNgfr9fry58/f0oltFxcXMj379+l+h42gBcnJyfr6iXfq1nhJ56FZIeuAq+fn59Xv379Oq0CgVJNBEIydAAavLv98ePHeSX4bfX1OQSv9noQ/a7y9A8HTuAcTqB63FSPZyE5Mq3GwOW3b99kNpu9+5e/fv2Kp3+FpAW8vB3cwbLOOvZYfl9LfGdW9KOn+mZCskZXhCuL9vtLfjvshd97hWArpn8TxGn5rhZzOL/gB19DYBzzxcEeTQEtGfArB7c7xbmyVu4YExoTuNcYEL6eCkkTxHYOmna4wzQfvq8z/+o949e940hIkjTp5/ZXjm/1+VQfr856UP/EcLtqr9s/OQENDl5+wPhH3nHQZK6mJjucNvNo2w+A+icC0jaY4a2LT5MT+Mye3+l58JSupiY7XIA2XtQ/IZw2f7D9v+X6D53AZ/f8LqGrqckOF7CNF/VPAF3Or6xvv53r951Amx5+DYOAXWEjxXXQxov6R4zTSzusht8OfABE+r3U39y1iPbbIODVX3ED4/Tagk8kENQ/QiyaC1Fg7PX6frm0Mk6/wUOQ8l799+j9I0cDwcF1ov4R4Xbde2vjxi92ogsPzPrY92szD7buJiQn3K6+v17q2yxvlV1u3+TRAn4jIYTkAfbymOWx1AcwfHMEXp5/JISQ9PEDd867ohvGbvt+cwRe6+5ee7ltNpuVf7yYdA8+68fHxy0+exkY6t8RGnSxJX19yAd7fWvhjEs7NOCHb2D9/+AGqO3HQGSeuD/8PD/GggwM9e8IBPCwr7ciHnzA6NrqtW5+4QRkIByLRXrDRXhXH/XvCKRccEuPX8mHD9jr7Vc7AV32D9rJh4Oge2I0foP6d8QHnADO9kdxYw8HQXfEbPwG9e+It5yAlvdG1beNgyA8KRi/Qf07oskJIEYQw8x/SMMgGAs5CmR0UjF+g/oHwh00YzAn0OZgT1/YINBU5VTIUeCzw2eYivEb1L8l7o1mDm7X220a48x/iNtVLE4dC5OOxu2794wlMaj/kbgAzRwIIQmS4p6PEBKIp6enexo/IYWCPdNms1nnbPxat7BwvH/+P7Dt08/kUjKH+hcOxGeeeI8f86lYSuZQ/8JhsciehoBv9rMi9VdcwZcucBCkVeEXmuL1dy0vbciBkgdBycZvFKs/8/x7ShwENP49xelP8V9T0iBgncdritGfxv82/iDIORJ+EAGfCKnJXn8a//to7fgy51y45sCX1P812erPZR8hBVMZ/Ax9+2j8hBSIHumcpXikkxBCBsXtz8QnUyXndvfz8Sx8AFLUnwTEveyKE32KyAK+7IYThqT0V88/o+cPBz7TVPLEJdb2d00y+pv4elHHTEgwUigWYaq3O6LXn56/e2IeBDT+7olWf4rfHzEOAurfH9HpT/H7J6ZBQP37Jxr9Kf5w+IMAt9PKQOB6NurfP4Prjyg/jX9Y8JnDAHE/vQwE/m0MQOrfP4PqX/3jp15Dj4kQQspCK5SK7OZDCCGEEBIfbneH4kgCoT9vLCQJguqPaD8CDdXzlZDogaEuFotgKSLL9uBnYmAJiZqg+vupPlzbJSR6YKSh8sSODVyTI5j+LO9NlxDFIqzzSJfW+jPPnz4Ng+DDGRvqnz5t9GeePxNsEHx2+U798+BY/e3FzPNnwLE6Uv88oI6EEEIIIYQQQgghhBBCCCGEEEIIIYQQQkiRoHyQxz/T51gdqX8evKfjlzdeNHp4eFjp15OTk5N/hCQHjoFWOt7o139VOj5/8HXUPwOO1f+/02ApXEhJmmnTzIP6p49r28wlRFMJMgwhmnlQ/3RB854g/RwaBgF7wkVOyGYe1D9N0L4vWDMXGwTaFHIsJGpgpF5TyIm0hPqnR6XTdLPZrF2oZi7aVIDePxFgqCH1ov6EEEIIITHRtl7jixBCkuToPH8ocGMQrihmiqh/8Jnjau6hrwen/sPQOs8fAgxA5on7xxcfBigDQf2HIUSdR6g3wmKRnolGfKH+QxCT/vaGOAh6Ijrxhfr3SYz613AQdE+04gv174Ng5b1dwUHQHTEbv0H9u6X6PGeTySTu69oaBsFYSCui9/we1L87tBpzFv1naoPg8vISA2AqpBX4DPFZxm78BvUn9awF8R07yrRGPf80pdmU+hNCyJHoYa4ZHSghhWEBXwT84ASEEFIGDdmec8mJ6j+EyNAiu/9YACC+fjaXkinU/21SSPW2BuIzT/waX/yKpWQK9W+mCOMHLBZ5TfbLPg/q/5pijN/gINhTnPhC/X1cwAauScFBUKbxG9R/h9P7F0rTv6bkQVCy8Rt0Aju00OtUSqTEQZBSbX/X0AmQF4Mg5wi4cRAJn0jhlKY/aUBrx5c558ANzYUvafx7StAfqxv0UKyer4QQUg5+zAfXdgkhpAxKqvMghHgUm+cPhdufhU/Oa+qRTp6Jb0HK+oOi8/whcC+74SSTIrJlH7vitCMl/RHcqx4I8uHN/u19v9w8f1swi6aWJ+aeLxyp6F+9r2u8v/F47M7Oztzt7S3e61xIe1IqFmGFX3hi19/tLuesjX+73brFYlG/V3xdQlq7F1JwAjT+7ohVfzX+Ma5ngwPwn+EI1AmMhLQnZidA4++e2PTHsh8Gvl6vna0AsPzXy1Ld+fm5OQDu/0MRoxOg8fdHLPoj4Gd7flv6w/DxvtDLD9+7urrC+7sTEhZ/EOB2WhkYE57G3w8x6I9oP2Z7GD4es9nM3dzc1DM/lv46FpZc/ncEBgEMD7XVMjB4DxiINP7+GEp/t7/voF7uI0WJ2R4OAM93d3f4I7TzPhNCSD5Yqm86ndbLfTzm87nt8+ulP2Z/x+vQCMkL7Pktwo/Z3oJ9MH6LA+ief/AVKSEkILbdgJHr3v4ez74T0FUA9/wxgP1XF0Lozx0LiZqQ+uuefwEDh8Fj+a+lvrfmBJSxkOGBEF4UNliKyFJ9usdjgCdSQupve37s7RHhb3ICOvPzfH8swDhD54kb8vwjIVESSn+/ug91/SjqQcT/wAlgNhiz0CcyQhaLsMgnPULoX73m0nL7fnnvw8ND7QT0sA+LfGKlYRB82ks7NnNIlmP1d/sjvVtsJTDbm/HXG/3x2OmfTznzR44NgmOX7Y7NHJLms/q7gyO9MPqLi4t6+b9cLustgKb6eMw3FdwfmjFggKg3X71l4I7NHJLmHf3PVPs5/o7l9H///r214p7a2udzv8hn5RgDShsN3Czg1SE4lom6xKO4heB2rdnvYdi6QljgGbO9BvfgOLa65Ac3+hpOBinjtHkDhMdv/Qe+p45gTkeQL7bUtwIeaK5OoJ4MdKZHlG9lDkBIPsDzQ/QmJ3B6emopHqwB2corQzDDX19fOzvNh7GAr+EE/CO9eHDPnxH+0t8/ugnBpWE1QOHzwpbvurxfwbibnEA9/VdpPh7pzQjs3yyfK2rkMHxzBAj0+I6ADiAvdFsHLvT37zkBGP5YSB6YA2ha9lvrJiz9hQ4gO7CVswo+jfH80QlgMqD2GaKC35unF88JYCtAB5AnGvi9h6F7GZ9GJ2CZP0b7M8XSO4eZADqAvLHIPxzAW07AjvpKYfxPCkBngevn5+fVr1+/TqtAoFQDQUieuF2RD1J5SOyP1+v15c+fP6Vy9HJxcSHfv3+X6nsIAF2cnJysq5d8r1YAP/EshVGEA6iYVkZ/+e3bN5nNZu/+5a9fv+LpXyHJocG72x8/fpxXDv+2+vocDr+K9cDp31UrvYcDJ3AOJ1A9bqrHs5D80BlhZdF+f8lvhz3we68QZMX0T3pglWcHd6Cjdeyx/L6W+M6s6EdP9c2ElIHbneJaWStnFIRoTOBe94D4eiokSZyW72oxl/MLfvA1jB6642CPpoCXDPhljO79RwffG6kj2OrzqT5e1Xo3vZ7EC2K7B0073GGaD9/XmX/1nvFT/4Rx2syjbT+AIW+gIZ/D7ao9b//kBDQ4ePkB46f+qeICtPFy2g8gpavJSwZpW8zw1sWnyQl8Zs9P/RPFBWzj5RK6mrxkTCfb/1uu/9AJfHbPT/0Tw3XQxqthELArcETocn5lffvtXL/vBNr08KP+CQFxvLbQEwmEDQJe/RQXTi/tsBp+O/AFEOn3Un9z1yLaT/0TQgNBwb20Zg/o/SPBsjkwShh7vb5fLq2M22/wEqS8V/+9sRBChsXtuvfWxo1f7EQnHpj1se/XZh5s3U1ITrhdfX+91LdZ3io73b7JqwX8RkIIyQPs5THLY6kPYPjmCLw8/0hI3iAd8/j4uN1sNisZGLwH/3gpCYcfuHPeFd0wdtv3myPwWnf32suR+veMn+fHBy8DA0fEPHF4NOhmS/r6kA/2+tbCHZd2aMAP38D6/8ENUNtP/XvERXhXn2OxSCcggId9vRXx4LNF12avdfsLJyADQf17IkbjNzgIwoOUK27p8Sv58Nl6vf1qJ6DL/kE7+VD/jonZ+A0OgvB8wAngbH8UN/ZQ/45IwfgNDoLwvOUEtLw3qr6N1D8wiOimYvxGwyAYC2lFkxNAjCCGmf8Q6h8QRHeR7knF+A0bBJqqmgr5NO6gGYc5gTYHe/qC+gfC7bv3jCUx3K5ibepYmPJp3BvNXNyut+M0xpn/EOpPyBG4AM1cCCEJkmLMhxASiKenp3saf4Fg2Vc9FsjpSuZo3hr/115r1lMAe+bNZrPO2fip/wH+nq9iKZkD8ZknLhfq79EQ8MneK7JYpGyov5JShV9oOAjKvnSjeP1LNn6j5EHgWl7akgPF6k/j31PiIGCef09x+jPP+5qSBgGd/2uKcgIHEdCJkBp/EOSaCaHxv00J+tdoDnRJ8V+jtePLHGshaPzvk7P+pGC47SOkYCqDn6FvH42fkAJxuyPdaN01FlIGbnc/37TkFE8o3L4nAmvHCyQ5/S3gw24oYXAvuyKxbLgwktK/xNr+rsFqKpU8sa78Zlz5hSMZ/Znq6Y4UikVMf72oYyYkGNHrT+PvnpgHAVd+3ROt/jT+/ohxEFD//ohOf4rfPzENAurfP1E5AVzPRPH7xx8EuJ1WBoDGPxyH+ruhjlTjbnR9AxMhvYLPHA4YGkjPIMpP4x+WIfUnhYMZx2voMRFCSFlohVqR3XwIIaQc3O5OtrGQJFC9RkKKRCsyRxICi/YuFgvs986ERA3Eh1ahUkT4GQg0Vc9XQqInqP6ODRyTA046VJ7Y1x/XdgmJnmD6M8+bLiGKRVjemy6t9WeeN30aBsGHI/bUP33a6M88bybYIPjs9o3658Gx+tuLmefNgGN1pP55QB0JIYQQQgghhBBCCJGy+T9ftRg+rVNPfAAAAABJRU5ErkJggg==')"}}),s&&r.createPortal(l,document.body))}},4407:t=>{t.exports=n},9302:t=>{t.exports=r},499:t=>{t.exports=o},189:t=>{t.exports=e},3899:e=>{e.exports=t},994:t=>{t.exports=i},6144:t=>{t.exports=a}},c={};function l(t){var e=c[t];if(void 0!==e)return e.exports;var o=c[t]={exports:{}};return s[t].call(o.exports,o,o.exports,l),o.exports}return l.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return l.d(e,{a:e}),e},l.d=(t,e)=>{for(var o in e)l.o(e,o)&&!l.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},l.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),l.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},l(468)})()}));
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
(function(n,I){typeof exports=="object"&&typeof module<"u"?I(exports,require("react"),require("prop-types"),require("@progress/kendo-react-intl"),require("@progress/kendo-charts"),require("@progress/kendo-react-common"),require("@progress/kendo-react-popup"),require("@progress/kendo-react-layout"),require("@progress/kendo-svg-icons")):typeof define=="function"&&define.amd?define(["exports","react","prop-types","@progress/kendo-react-intl","@progress/kendo-charts","@progress/kendo-react-common","@progress/kendo-react-popup","@progress/kendo-react-layout","@progress/kendo-svg-icons"],I):(n=typeof globalThis<"u"?globalThis:n||self,I(n.KendoReactCharts={},n.React,n.PropTypes,n.KendoReactIntl,n.KendoCharts,n.KendoReactCommon,n.KendoReactPopup,n.KendoReactLayout,n.KendoSvgIcons))})(this,function(n,I,Ye,w,C,f,ze,qe,We){"use strict";function X(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const s in t)if(s!=="default"){const r=Object.getOwnPropertyDescriptor(t,s);Object.defineProperty(e,s,r.get?r:{enumerable:!0,get:()=>t[s]})}}return e.default=t,Object.freeze(e)}const a=X(I),p=X(Ye);function Y(t,e){let s=t;for(;s&&s!==e;)s=s.parentNode;return!!s}function E(t,e,s,r){const i=t[e];if(i&&Array.isArray(i)){for(let o of i)if(!o.type||o.type!==r)return new Error(`${s} children should be Array of type ${r.displayName}.`)}return null}const z=t=>t===void 0?!1:!t,$e=t=>({x:{location:t.pageX},y:{location:t.pageY}}),Ze=(t,e)=>{const s=t.pointers,r=s[0],i=r.pageX,o=r.pageY;let h=0;if(s.length>1){const c=s[0],u=s[1];h=Math.sqrt(Math.pow(c.pageX-u.pageX,2)+Math.pow(c.pageY-u.pageY,2))}return{distance:h,event:t.srcEvent,preventDefault:function(){t.preventDefault()},target:t.target,touches:s.map($e),type:t.type,x:{delta:e?i-e.x.location:0,initialDelta:t.deltaX,location:i,startLocation:i-t.deltaX},y:{delta:e?o-e.y.location:0,initialDelta:t.deltaY,location:o,startLocation:o-t.deltaY}}};function Ge(t,e){for(let s=0;s<t.length;s++)if(e[t[s]])return!0;return!1}const q=[{end:"panend",move:"panmove",start:"panstart"},{gesturechange:"pinchmove",gestureend:"pinchend",gesturestart:"pinchstart"},{press:"press"},{tap:"tap"}];class Je{constructor(e,s){this.hammerInstance=e,this.eventHandlers={},this.tap=this.tap.bind(this),this.press=this.press.bind(this),this.panstart=this.panstart.bind(this),this.panmove=this.panmove.bind(this),this.panend=this.panend.bind(this),this.pinchstart=this.pinchstart.bind(this),this.pinchmove=this.pinchmove.bind(this),this.pinchend=this.pinchend.bind(this),s&&this.bind(s)}tap(e){this.trigger("tap",e)}press(e){this.trigger("press",e)}panstart(e){delete this.previous,this.previous=this.trigger("start",e)}panmove(e){this.previous=this.trigger("move",e)}panend(e){this.trigger("end",e),delete this.previous}pinchstart(e){this.trigger("gesturestart",e)}pinchmove(e){this.trigger("gesturechange",e)}pinchend(e){this.trigger("gestureend",e)}trigger(e,s){const r=Ze(s,this.previous);return this.eventHandlers[e]&&this.eventHandlers[e](r),r}bind(e={}){this.unbind(),this.eventHandlers=e;for(let s=0;s<q.length;s++){const r=q[s],i=Object.keys(r);if(Ge(i,e))for(let o=0;o<i.length;o++){const h=r[i[o]];this.hammerInstance.on(h,this[h])}}}unbind(){this.hammerInstance&&this.hammerInstance.off(),this.eventHandlers={}}destroy(){this.hammerInstance&&(this.hammerInstance.destroy(),delete this.hammerInstance),delete this.eventHandlers}toggleDrag(e){this.toggle("pan",e)}toggleZoom(e){this.toggle("pinch",e)}toggle(e,s){this.hammerInstance&&this.hammerInstance.get(e).set({enable:s})}}const Qe="Hammerjs is not loaded.Solution: http://www.telerik.com/kendo-react-ui/components/charts/troubleshooting/#toc-installation";class et{static create(e,s){if(typeof window<"u"){const r=window.Hammer;if(!r){process.env.NODE_ENV!=="production"&&console.warn(Qe);return}const i=new r(e,{recognizers:[[r.Tap],[r.Pan],[r.Pinch],[r.Press,{time:0}]]});return new Je(i,s)}}}class g{constructor(e){this.target=e}}class W extends g{constructor(e,s){super(s),this.axis=e.axis,this.dataItem=e.dataItem,this.index=e.index,this.text=e.text,this.value=e.value}}class y extends g{constructor(){super(...arguments),this.prevented=!1}preventDefault(){this.prevented=!0}isDefaultPrevented(){return this.prevented}}class $ extends y{constructor(e,s){super(s),this.axisRanges=e.axisRanges,this.nativeEvent=e.originalEvent}}class Z extends g{constructor(e,s){super(s),this.axisRanges=e.axisRanges,this.nativeEvent=e.originalEvent}}class G extends y{constructor(e,s){super(s),this.axisRanges=e.axisRanges,this.nativeEvent=e.originalEvent}}class N extends g{constructor(e,s){super(s),this.value=e.value,this.point=e.point,this.series=e.series,this.currentState=e.currentState,this.nextState=e.nextState}}class J extends y{constructor(e,s){super(s),this.series=e.series,this.seriesIndex=e.seriesIndex,this.pointIndex=e.pointIndex,this.text=e.text}preventDefault(){super.preventDefault()}}class Q extends y{constructor(e,s){super(s),this.series=e.series,this.seriesIndex=e.seriesIndex,this.pointIndex=e.pointIndex,this.text=e.text}preventDefault(){super.preventDefault()}}class tt extends y{constructor(e,s){super(s),this.series=e.series,this.seriesIndex=e.seriesIndex,this.pointIndex=e.pointIndex,this.text=e.text}preventDefault(){super.preventDefault()}}class ee extends g{constructor(e,s){super(s),this.from=e.from,this.to=e.to}}class te extends g{constructor(e,s){super(s),this.category=e.category,this.dataItem=e.dataItem,this.series=e.series,this.value=e.value,this.visual=e.visual}}class se extends g{constructor(e,s){super(s),this.category=e.category,this.dataItem=e.dataItem,this.series=e.series,this.value=e.value,this.visual=e.visual}}class re extends g{constructor(e,s){super(s),this.category=e.category,this.nativeEvent=e.originalEvent,this.value=e.value,this.x=e.x,this.y=e.y}}class ae extends g{constructor(e,s){super(s),this.category=e.category,this.nativeEvent=e.originalEvent,this.value=e.value,this.x=e.x,this.y=e.y}}class ne extends g{constructor(e,s){super(s)}}class ie extends y{constructor(e,s){super(s),this.axis=e.axis,this.from=e.from,this.to=e.to}}class oe extends g{constructor(e,s){super(s),this.axis=e.axis,this.from=e.from,this.to=e.to}}class le extends y{constructor(e,s){super(s),this.axis=e.axis,this.from=e.from,this.to=e.to}}class ce extends g{constructor(e,s){super(s),this.category=e.category,this.dataItem=e.dataItem,this.nativeEvent=e.originalEvent,this.percentage=e.percentage,this.point=e.point,this.series=e.series,this.stackValue=e.stackValue,this.value=e.value}}class he extends y{constructor(e,s){super(s),this.category=e.category,this.categoryPoints=e.categoryPoints,this.dataItem=e.dataItem,this.nativeEvent=e.originalEvent,this.percentage=e.percentage,this.point=e.point,this.series=e.series,this.stackValue=e.stackValue,this.value=e.value}}class ue extends y{constructor(e,s){super(s),this.axisRanges=e.axisRanges,this.delta=e.delta,this.nativeEvent=e.originalEvent}}class de extends g{constructor(e,s){super(s),this.axisRanges=e.axisRanges,this.nativeEvent=e.originalEvent}}class pe extends y{constructor(e,s){super(s),this.axisRanges=e.axisRanges,this.nativeEvent=e.originalEvent}}const me={axisLabelClick:W,drag:$,dragEnd:Z,dragStart:G,drilldownEvent:N,legendItemHover:J,legendItemClick:Q,legendItemLeave:tt,navigatorFilter:ee,noteClick:te,noteHover:se,plotAreaClick:re,plotAreaHover:ae,render:ne,select:ie,selectEnd:oe,selectStart:le,seriesClick:ce,seriesHover:he,zoom:ue,zoomEnd:de,zoomStart:pe};function st(t,e,s){if(me[t])return new me[t](e,s)}class rt{constructor(e,s){this.sender=e,this.syntheticEvent=s}}function ve(t,e){return new rt(t,e)}const A=t=>`${t.fontWeight} ${t.fontSize} ${t.fontFamily}`,Ce=t=>window.getComputedStyle(t).backgroundColor,at=t=>t.toLowerCase().charCodeAt(0)-"a".charCodeAt(0),nt=t=>{const e=t.match(/series-([a-z])$/);if(e!==null)return at(e[1]);const s=t.split("--series-")[1];return parseInt(s,10)-1},it=30,ot=`
|
|
6
|
+
<div class="k-var--primary"></div>
|
|
7
|
+
<div class="k-var--base"></div>
|
|
8
|
+
<div class="k-var--background"></div>
|
|
9
|
+
|
|
10
|
+
<div class="k-var--normal-background"></div>
|
|
11
|
+
<div class="k-var--normal-text-color"></div>
|
|
12
|
+
<div class="k-var--hover-background"></div>
|
|
13
|
+
<div class="k-var--hover-text-color"></div>
|
|
14
|
+
<div class="k-var--selected-background"></div>
|
|
15
|
+
<div class="k-var--selected-text-color"></div>
|
|
16
|
+
<div class="k-var--chart-error-bars-background"></div>
|
|
17
|
+
<div class="k-var--chart-notes-background"></div>
|
|
18
|
+
<div class="k-var--chart-notes-border"></div>
|
|
19
|
+
<div class="k-var--chart-notes-lines"></div>
|
|
20
|
+
<div class="k-var--chart-crosshair-background"></div>
|
|
21
|
+
|
|
22
|
+
<div class="k-var--chart-inactive"></div>
|
|
23
|
+
<div class="k-var--chart-major-lines"></div>
|
|
24
|
+
<div class="k-var--chart-minor-lines"></div>
|
|
25
|
+
<div class="k-var--chart-area-opacity"></div>
|
|
26
|
+
<div class="k-var--chart-area-inactive-opacity"></div>
|
|
27
|
+
<div class="k-var--chart-line-inactive-opacity"></div>
|
|
28
|
+
|
|
29
|
+
<div class="k-widget k-chart">
|
|
30
|
+
<div class="k-var--chart-font"></div>
|
|
31
|
+
<div class="k-var--chart-title-font"></div>
|
|
32
|
+
<div class="k-var--chart-pane-title-font"></div>
|
|
33
|
+
<div class="k-var--chart-label-font"></div>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div class="k-var--series-unset"></div>
|
|
37
|
+
<div class="k-var--series">
|
|
38
|
+
${(()=>{let t=`
|
|
39
|
+
<div class="k-var--series-a"></div>
|
|
40
|
+
<div class="k-var--series-b"></div>
|
|
41
|
+
<div class="k-var--series-c"></div>
|
|
42
|
+
<div class="k-var--series-d"></div>
|
|
43
|
+
<div class="k-var--series-e"></div>
|
|
44
|
+
<div class="k-var--series-f"></div>
|
|
45
|
+
`;for(let e=0;e<it;e++)t+=`
|
|
46
|
+
<div class="k-var--series-${e+1}"></div>`;return t})()}
|
|
47
|
+
</div>
|
|
48
|
+
`;class lt{constructor(e){this.store=e}setStyle(e,s){this.store.dispatch({type:"set",payload:{field:e,value:s}})}setColors(){this.mapColor("axisDefaults.crosshair.color","chart-crosshair-background"),this.mapColor("axisDefaults.labels.color","normal-text-color"),this.mapColor("axisDefaults.line.color","chart-major-lines"),this.mapColor("axisDefaults.majorGridLines.color","chart-major-lines"),this.mapColor("axisDefaults.minorGridLines.color","chart-minor-lines"),this.mapColor("axisDefaults.notes.icon.background","chart-notes-background"),this.mapColor("axisDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("axisDefaults.notes.line.color","chart-notes-lines"),this.mapColor("axisDefaults.title.color","normal-text-color"),this.mapColor("chartArea.background","background"),this.mapColor("legend.inactiveItems.labels.color","chart-inactive"),this.mapColor("legend.inactiveItems.markers.color","chart-inactive"),this.mapColor("legend.labels.color","normal-text-color"),this.mapColor("seriesDefaults.boxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.boxPlot.mean.color","base"),this.mapColor("seriesDefaults.boxPlot.median.color","base"),this.mapColor("seriesDefaults.boxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.bullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.candlestick.downColor","normal-text-color"),this.mapColor("seriesDefaults.candlestick.line.color","normal-text-color"),this.mapColor("seriesDefaults.errorBars.color","chart-error-bars-background"),this.mapColor("seriesDefaults.horizontalWaterfall.line.color","chart-major-lines"),this.mapColor("seriesDefaults.icon.border.color","chart-major-lines"),this.mapColor("seriesDefaults.labels.background","background"),this.mapColor("seriesDefaults.labels.color","normal-text-color"),this.mapColor("seriesDefaults.notes.icon.background","chart-notes-background"),this.mapColor("seriesDefaults.notes.icon.border.color","chart-notes-border"),this.mapColor("seriesDefaults.notes.line.color","chart-notes-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.downColor","chart-major-lines"),this.mapColor("seriesDefaults.verticalBoxPlot.mean.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.median.color","base"),this.mapColor("seriesDefaults.verticalBoxPlot.whiskers.color","primary"),this.mapColor("seriesDefaults.verticalBullet.target.color","normal-text-color"),this.mapColor("seriesDefaults.waterfall.line.color","chart-major-lines"),this.mapColor("title.color","normal-text-color"),this.mapColor("subtitle.color","normal-text-color");const e=parseFloat(this.queryStyle("chart-area-opacity").opacity);isNaN(e)||(this.setStyle("seriesDefaults.area.opacity",e),this.setStyle("seriesDefaults.radarArea.opacity",e),this.setStyle("seriesDefaults.verticalArea.opacity",e),this.setStyle("seriesDefaults.labels.opacity",e)),this.setInactiveOpacity(["area","verticalArea"],"chart-area-inactive-opacity"),this.setInactiveOpacity(["line","verticalLine"],"chart-line-inactive-opacity")}setFonts(){const e=A(this.queryStyle("chart-font")),s=A(this.queryStyle("chart-title-font")),r=A(this.queryStyle("chart-pane-title-font")),i=A(this.queryStyle("chart-label-font"));this.setStyle("axisDefaults.labels.font",i),this.setStyle("axisDefaults.notes.label.font",e),this.setStyle("axisDefaults.title.font",e),this.setStyle("legend.labels.font",e),this.setStyle("seriesDefaults.labels.font",i),this.setStyle("seriesDefaults.notes.label.font",e),this.setStyle("title.font",s),this.setStyle("subtitle.font",r),this.setStyle("paneDefaults.title.font",r)}setSeriesColors(){const e=this.element,s=[].slice.call(e.querySelectorAll(".k-var--series div")),r=Ce(e.querySelector(".k-var--series-unset")),i=s.reduce((o,h)=>{const c=nt(h.className),u=Ce(h);return u!==r&&(o[c]=u),o},[]);this.setStyle("seriesColors",i)}mapColor(e,s){this.setStyle(e,this.queryStyle(s).backgroundColor)}queryStyle(e){const s=this.element;return window.getComputedStyle(s.querySelector(`.k-var--${e}`))}setInactiveOpacity(e,s){const r=parseFloat(this.queryStyle(s).opacity);!isNaN(r)&&r<1&&e.forEach(i=>this.setStyle(`seriesDefaults.${i}.highlight.inactiveOpacity`,r))}}const ct=(t,e,s)=>{const r=new lt(t);if(typeof s>"u"){t.dispatch({type:"push",payload:C.chartBaseTheme()});return}const i=r.element=s.createElement("div");i.style.display="none",i.innerHTML=ot,s.body.appendChild(i);try{t.dispatch({type:"push",payload:C.chartBaseTheme()}),r.setColors(),r.setFonts(),r.setSeriesColors()}finally{s.body.removeChild(r.element),delete r.element,e()}},ht=1e3/60,T=t=>{let e,s,r=[];const i=()=>e,o=c=>{e=t(e,c),f.canUseDOM&&(window.clearTimeout(s),s=window.setTimeout(()=>r.forEach(u=>u()),ht))},h=c=>(r.push(c),()=>r=r.filter(u=>u!==c));return o({}),{getState:i,dispatch:o,subscribe:h}},ge=(t,e)=>e.chartCollectionIdxKey?k.collectionConfigurationItem(t,e):e.chartKey?k.configurationItem(t,e):{},ut=(t,e)=>{if(e.type)switch(e.type){case"set":return k.themeItem(t,e);case"push":return Object.assign(t,e.payload);default:return t}else return{}},dt=(t,e)=>{if(e.type)switch(e.type){case"add":return[...t,e.payload];case"remove":return t.filter(s=>s!==e.payload);default:return t}else return[]},k={configurationItem(t,e){return Object.assign(t,{[e.chartKey]:e.payload})},collectionConfigurationItem(t,e){let s=!1;const[r,i]=e.chartCollectionIdxKey.split("_"),o=t[r].map((h,c)=>parseInt(i,10)===c?(s=!0,e.payload):h);return s===!1&&o.splice(parseInt(i,10),0,e.payload),Object.assign(t,{[r]:o})},themeItem(t,e){let s={},r=Object.assign(s,t);const{field:i,value:o}=e.payload,h=i.split(".");let c=h.shift();for(;h.length>0;)s=s[c]=s[c]||{},c=h.shift();return s[c]=o,r}};class O{constructor(e,s){this.value=e.value,this.category=e.category,this.categoryIndex=e.categoryIx,this.series=e.series,this.dataItem=e.dataItem,this.percentage=e.percentage,this.runningTotal=e.runningTotal,this.total=e.total,this.low=e.low,this.high=e.high,this.xLow=e.xLow,this.xHigh=e.xHigh,this.yLow=e.yLow,this.yHigh=e.yHigh,this.point=e,this.format=((e.options||{}).tooltip||{}).format||s}get formattedValue(){return this.format?this.point.formatValue(this.format):String(this.value)}}const pt="k-chart-shared-tooltip-marker",fe=t=>{const{categoryText:e,colorMarker:s,colspan:r,nameColumn:i,points:o}=t,h=(c,u)=>a.createElement("tr",{key:u},s&&a.createElement("td",null,a.createElement("span",{className:pt,style:{backgroundColor:c.series.color}})),i&&a.createElement("td",null,c.series.name),a.createElement("td",{dangerouslySetInnerHTML:{__html:c.formattedValue}}));return a.createElement("table",null,a.createElement("thead",null,a.createElement("tr",null,a.createElement("th",{colSpan:r},e))),a.createElement("tbody",null,o.map(h)))},b=a.createContext(null);b.displayName="ChartContext";const mt={horizontal:"fit",vertical:"fit"},vt="k-chart-tooltip",Ct="k-chart-tooltip-wrapper";class _ extends a.Component{constructor(e,s){super(e,s),this.context=null,this.element=null,this.onChartMouseLeave=r=>{const{syntheticEvent:i}=r;return!!Y(i.relatedTarget,this.element)},this.onMouseLeave=r=>{const i=ve(this,r);this.context.childrenObserver.trigger("onMouseLeave",i)&&r.preventDefault()},this.popupRef=r=>{this.element=r;const i=r&&r.closest(".k-animation-container");i&&(i.style.transition="initial")},this.chartObserver=new C.InstanceObserver(this,{onMouseLeave:"onChartMouseLeave"}),s.observersStore.dispatch({type:"add",payload:this.chartObserver})}render(){const{popupShown:e,popupAlign:s,popupOffset:r,popupStyles:i,popupContent:o,className:h}=this.props,c=[vt,h].join(" ").trim();return a.createElement(ze.Popup,{animate:!1,popupAlign:s,offset:r,show:e,collision:mt,className:Ct},a.createElement("div",{className:c,style:i,onMouseLeave:this.onMouseLeave,ref:this.popupRef},o()))}componentWillUnmount(){this.context.observersStore.dispatch({type:"remove",payload:this.chartObserver})}}_.contextType=b;const gt="k-chart-shared-tooltip",ft="k-chart-tooltip-inverse";class L extends a.Component{constructor(){super(...arguments),this.context=null,this.state={popupShown:!1},this.chartObserver=null}componentDidMount(){this.chartObserver=new C.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),this.context.observersStore.dispatch({type:"add",payload:this.chartObserver})}render(){const{popupContext:e,shared:s,className:r,...i}=this.state,o=this.state.popupShown?()=>{const c=this.findRenderFunction();if(s)return c!==null?c(e):a.createElement(fe,{...e});{const u=e.point,d=this.findRenderFunctionByIndex(u.series.index);return d!==null?d(e):c!==null?c(e):a.createElement("span",{dangerouslySetInnerHTML:{__html:e.point.formattedValue}})}}:Function.prototype,h=f.classNames({[gt]:s,[ft]:!!r});return a.createElement(_,{...i,popupContent:o,className:h})}componentWillUnmount(){this.context.observersStore.dispatch({type:"remove",payload:this.chartObserver})}onShowTooltip(e){const{anchor:s,style:r,shared:i,className:o,crosshair:h}=e;let c;h||(i?c=this.createSharedTooltipContext(e):c=this.createTooltipContext(e),this.setState({popupShown:!0,popupAlign:s.align,popupOffset:s.point,popupContext:c,popupStyles:r,className:o,shared:i}))}onHideTooltip(){this.setState({popupShown:!1,popupStyles:{},className:void 0})}createSharedTooltipContext(e){const{points:s,categoryText:r}=e,i=s.filter(c=>typeof c.series.name<"u").length>0,o=e.series.length>1;let h=1;return i&&h++,o&&h++,{categoryText:r,colorMarker:o,colspan:h,nameColumn:i,points:e.points.map(c=>new O(c,e.format))}}createTooltipContext(e){const{point:s,format:r}=e;return{point:new O(s,r)}}findRenderFunctionByIndex(e){const s=this.context.optionsStore.getState().series;return s!==void 0&&Array.isArray(s)&&s[e]!==void 0&&s[e].hasOwnProperty("tooltip")&&s[e].tooltip.hasOwnProperty("render")?s[e].tooltip.render:null}findRenderFunction(){const e=this.context.optionsStore.getState().tooltip;return e!==void 0&&e.hasOwnProperty("render")?e.render:null}}L.contextType=b;const ye=t=>t.children;ye.displayName="Container";const yt="k-chart-crosshair-tooltip",bt="k-chart-tooltip-inverse";class P extends a.Component{constructor(e,s){super(e,s),this.context=null,this.state={popupShown:!1},this.chartObserver=new C.InstanceObserver(this,{showTooltip:"onShowTooltip",hideTooltip:"onHideTooltip"}),s.observersStore.dispatch({type:"add",payload:this.chartObserver})}render(){const{popupContend:e,className:s,...r}=this.state,i=this.state.popupShown?()=>e:Function.prototype,o=f.classNames({[yt]:!0,[bt]:!!s});return a.createElement(_,{...r,popupContent:i,className:o})}componentWillUnmount(){var e;(e=this.context)==null||e.observersStore.dispatch({type:"remove",payload:this.chartObserver})}onShowTooltip(e){const{anchor:s,style:r,className:i,crosshair:o,axisName:h,axisIndex:c,value:u}=e,{name:d,index:v}=this.props;o&&h===d&&c===v&&this.setState({popupShown:!0,popupAlign:s.align,popupOffset:s.point,popupContend:u,popupStyles:r,className:i})}onHideTooltip(){this.setState({popupShown:!1,popupStyles:{},className:void 0})}}P.contextType=b;const be=["categoryAxis","valueAxis","xAxis","yAxis"];function St(t){const e={};for(let s=0;s<be.length;s++){const r=Et(t,be[s]);for(let i=0;i<r.length;i++){const o=r[i];e[o.name+o.index]=o}}return e}function Et(t,e){const s=[];if(t[e]){const r=[].concat(t[e]);for(let i=0;i<r.length;i++){const o=(r[i].crosshair||{}).tooltip;o&&o.visible&&s.push({index:i,name:e})}}return s}class K extends a.Component{constructor(){super(...arguments),this.context=null,this.state={tooltips:{}},this.storeUnsubscriber=Function.prototype,this.subscriber=()=>{var e;this.setState({tooltips:St((e=this.context)==null?void 0:e.optionsStore.getState())})}}componentDidMount(){this.storeUnsubscriber=this.context.optionsStore.subscribe(this.subscriber)}render(){const{tooltips:e}=this.state,s=Object.keys(e).map(r=>a.createElement(P,{...e[r],key:r}));return a.createElement(ye,null,s)}componentWillUnmount(){this.storeUnsubscriber()}}K.contextType=b;const Se={name:"@progress/kendo-react-charts",productName:"KendoReact",productCodes:["KENDOUIREACT","KENDOUICOMPLETE"],publishDate:0,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};class x extends a.Component{constructor(e){super(e),this.chartInstance=null,this.surface=null,this._element=null,this.optionsStore={},this.optionsUnsubscriber=Function.prototype,this.themeStore={},this.themeUnsubscriber=Function.prototype,this.observersStore={},this.suppressTransitions=!1,this.showLicenseWatermark=!1,this.onRender=s=>{this.chartInstance!==null&&(this.surface=s.sender.surface,this.trigger("render",s))},this.onDrilldown=s=>{var h;const{series:r}=this.optionsStore.getState(),i=r.find(c=>c.name===s.series.name);if(!i.drilldownSeriesFactory)return!0;const o="onDrilldown";if(this.props.hasOwnProperty(o)){const c={seriesName:i.name,drilldownValue:s.value},u=[...((h=this.props.drilldownState)==null?void 0:h.steps)||[],c],d=this.props.getTarget(),v={...s,currentState:this.props.drilldownState,nextState:{steps:u}},m=new N(v,d);this.props[o].call(void 0,m)}return!0},this.onLegendItemClick=s=>{if(this.chartInstance!==null)if(this.props.onLegendItemClick)this.trigger("legendItemClick",s);else{const{series:r}=this.optionsStore.getState();if(!r)return;let i={};const{seriesIndex:o,pointIndex:h}=s,c=r[o];if(h===void 0)i=Object.assign({},c,{visible:z(c.visible)});else{const u=c.pointVisibility=c.pointVisibility||[];u[h]=z(u[h]),i=Object.assign({},c)}this.optionsStore.dispatch({chartCollectionIdxKey:`series_${o}`,payload:i}),this.suppressTransitions=!0}},this.onWindowResize=()=>{this.chartInstance!==null&&this.chartInstance.resize()},this.onChartMouseLeave=s=>{const r=ve(this,s);this.triggerDomEvent("onMouseLeave",r)?s.preventDefault():this.chartInstance!==null&&this.chartInstance.hideElements()},this.onChildMouseLeave=s=>{const{syntheticEvent:r}=s;return this.chartInstance&&!Y(r.relatedTarget,this.element)&&this.chartInstance.hideElements(),!1},f.validatePackage(Se),this.showLicenseWatermark=f.shouldShowValidationUI(Se),this.optionsStore=T(ge),this.observersStore=T(dt),this.childrenObserver=new C.InstanceObserver(this,{onMouseLeave:"onChildMouseLeave"}),this.state={optionsStore:this.optionsStore,observersStore:this.observersStore,childrenObserver:this.childrenObserver,drilldownState:{steps:[]}},this.themeStore=T(ut),this.chartObserver=new C.InstanceObserver(this,{render:"onRender",legendItemClick:"onLegendItemClick",drilldown:"onDrilldown"})}get element(){return this._element}static getDerivedStateFromProps(e,s){return{...s,drilldownState:e.drilldownState||[]}}componentDidMount(){var s;const e=((s=this._element)==null?void 0:s.ownerDocument)||document;ct(this.themeStore,this.instantiateCoreChart.bind(this),e),this.optionsUnsubscriber=this.optionsStore.subscribe(this.refresh.bind(this)),this.themeUnsubscriber=this.themeStore.subscribe(this.refresh.bind(this)),window.addEventListener("resize",this.onWindowResize)}componentWillUnmount(){this.optionsUnsubscriber(),this.themeUnsubscriber(),this.chartInstance!==null&&(this.chartInstance.destroy(),this.chartInstance=null),window.removeEventListener("resize",this.onWindowResize)}componentDidUpdate(e){const{dir:s,children:r,...i}=this.props;if(this.chartInstance!==null){const o=w.provideIntlService(this),h=this.chartInstance.chartService,c=o.locale!==h._intlService.locale,u=Object.entries(e).filter(d=>d[0]!=="dir"&&d[0]!=="children").some(d=>{const[v,m]=d;return!(i.hasOwnProperty(v)&&i[v]===m)});c&&(this.chartInstance.chartService._intlService=o,this.chartInstance.chartService.format._intlService=o,u||this.chartInstance.noTransitionsRedraw()),u&&this.refresh(),e.dir!==s&&this.chartInstance.setDirection(this.getDirection(s))}}render(){const{style:e={},className:s,wrapper:r,children:i}=this.props,o=Object.assign({},e,{position:"relative"}),h=a.createElement(r,{className:s,style:o,key:"chartElement"},a.createElement("div",{onMouseLeave:this.onChartMouseLeave,ref:c=>this._element=c,className:"k-chart-surface"},i),a.createElement(a.Fragment,null,this.showLicenseWatermark&&a.createElement(f.WatermarkOverlay,null)));return a.createElement(b.Provider,{value:this.state},a.createElement(L,{key:"seriesTooltip"}),a.createElement(K,{key:"crosshairTooltips"}),h)}getDirection(e){return(e!==void 0?e:(()=>f.canUseDOM&&window.getComputedStyle(this.element).direction)()||"ltr")==="rtl"}getChartOptions(){const{renderAs:e,pannable:s,zoomable:r,paneDefaults:i,panes:o,transitions:h,seriesColors:c,seriesDefaults:u,axisDefaults:d,deriveOptionsFromParent:v}=this.props;let m={};return e!==void 0&&(m.renderAs=e),s!==void 0&&(m.pannable=s),r!==void 0&&(m.zoomable=r),i!==void 0&&(m.paneDefaults=i),o!==void 0&&(m.panes=o),h!==void 0&&(m.transitions=h),c!==void 0&&(m.seriesColors=c),u!==void 0&&(m.seriesDefaults=u),d!==void 0&&(m.axisDefaults=d),m=Object.assign(m,this.optionsStore.getState()),v&&(m=v(m)),m}refresh(){if(this.chartInstance!==null){const e=this.themeStore.getState(),s=this.getChartOptions(),r=s.transitions;this.suppressTransitions&&(s.transitions=!1),this.props.onRefresh?this.props.onRefresh.call(void 0,s,e,this.chartInstance):this.chartInstance.setOptions(s,e),this.suppressTransitions&&(s.transitions=r,this.suppressTransitions=!1)}}instantiateCoreChart(){const{dir:e,chartConstructor:s}=this.props,r=this.getChartOptions();this.chartInstance=new s(this.element,r,this.themeStore.getState(),{rtl:this.getDirection(e),intlService:w.provideIntlService(this),observer:this.chartObserver,sender:this})}trigger(e,s){const r=this.props.getTarget(),i=st(e,s,r),o="on"+e.charAt(0).toUpperCase()+e.slice(1),h=this.observersStore.getState();let c=!1;for(let u=0;u<h.length;u++)h[u].trigger(e,s)&&(c=!0);return c===!1&&i&&this.props.hasOwnProperty(o)?(this.props[o].call(void 0,i),i.isDefaultPrevented&&i.isDefaultPrevented()):c}requiresHandlers(e){for(let s=0;s<e.length;s++){const r=e[s],i="on"+r.charAt(0).toUpperCase()+r.slice(1);if(this.props.hasOwnProperty(i))return!0}return!1}triggerDomEvent(e,s){const r=this.observersStore.getState();let i=!1;for(let o=0;o<r.length;o++)r[o].trigger(e,s)&&(i=!0);return i}}x.propTypes={dir:p.string,renderAs:p.oneOf(["svg","canvas"])},x.defaultProps={renderAs:"svg"},w.registerForIntl(x),C.DomEventsBuilder.register(et);class R extends a.Component{constructor(e,s){super(e,s),this.context=null,this.state={donutCenterStyles:null},this.chartObserver=new C.InstanceObserver(this,{render:"onRender"}),s.observersStore.dispatch({type:"add",payload:this.chartObserver})}render(){const{render:e}=this.props,{donutCenterStyles:s}=this.state;let r=null;return e&&s&&(r=a.createElement("div",{className:"k-chart-donut-center",style:s},a.createElement(e,null))),r}onRender(e){var v;const s=(v=this.context)==null?void 0:v.optionsStore.getState().series,r=Array.isArray(s)?s[0]:null,i=e.sender._plotArea.charts;if(!r||r.type!=="donut"||i[0].points.length===0)return;const o=i[0].points[0].sector,h=o.innerRadius,c=o.center.y-h,u=o.center.x-h,d=h*2;this.setState({donutCenterStyles:{height:d,left:u,top:c,width:d}})}}R.contextType=b;class xt extends a.Component{constructor(){super(...arguments),this._baseChart=null,this.getTarget=()=>this}get chartInstance(){return this._baseChart!==null?this._baseChart.chartInstance:null}get surface(){return this._baseChart!==null?this._baseChart.surface:null}get element(){return this._baseChart!==null?this._baseChart.element:null}render(){const{donutCenterRender:e,children:s,className:r,...i}=this.props;return a.createElement(x,{...i,ref:o=>this._baseChart=o,chartConstructor:C.Chart,getTarget:this.getTarget,wrapper:"div",className:f.classNames("k-chart k-widget",r)},s,a.createElement(R,{render:e}))}}class It extends a.Component{constructor(){super(...arguments),this._baseChart=null,this.deriveOptionsFromParent=e=>{const{type:s,data:r}=this.props,i=Object.assign({},e,{type:s,data:r});return C.Sparkline.normalizeOptions(i)},this.getTarget=()=>this}get chartInstance(){return this._baseChart!==null?this._baseChart.chartInstance:null}get surface(){return this._baseChart!==null?this._baseChart.surface:null}get element(){return this._baseChart!==null?this._baseChart.element:null}render(){const{children:e,type:s,className:r,...i}=this.props;return a.createElement(x,{...i,ref:o=>this._baseChart=o,chartConstructor:C.Sparkline,getTarget:this.getTarget,wrapper:"span",deriveOptionsFromParent:this.deriveOptionsFromParent,className:f.classNames("k-sparkline k-widget",r)},e)}}const At={autoBindElements:!0,liveDrag:!1,partialRedraw:!0};class Tt extends a.Component{constructor(){super(...arguments),this._baseChart=null,this.deriveOptionsFromParent=e=>{const s=Object.assign({},e.navigator||{},At);return Object.assign({},e,{navigator:s})},this.onRefresh=(e,s,r)=>{this.props.partialRedraw?(r.applyOptions(e),r.bindCategories(),r.navigator.redrawSlaves()):r.setOptions(e,s)},this.getTarget=()=>this}get chartInstance(){return this._baseChart!==null?this._baseChart.chartInstance:null}get surface(){return this._baseChart!==null?this._baseChart.surface:null}get element(){return this._baseChart!==null?this._baseChart.element:null}render(){const{children:e,className:s,...r}=this.props;return a.createElement(x,{...r,ref:i=>this._baseChart=i,chartConstructor:C.StockChart,getTarget:this.getTarget,wrapper:"div",deriveOptionsFromParent:this.deriveOptionsFromParent,onRefresh:this.onRefresh,className:f.classNames("k-stockchart k-widget",s)},e)}}class S extends a.Component{constructor(e,s){super(e,s),this.optionsStore=s.optionsStore}renderChildren(e,s){const{children:r}=e.props,{_chartKey:i,_parentStore:o}=this.props,h={...e.props,_chartCollectionIdxKey:`${i}_${s}`,_parentStore:o};return a.cloneElement(e,h,r)}render(){const{_chartKey:e,_parentStore:s,children:r}=this.props;return(s||this.optionsStore).dispatch({chartKey:e,payload:[]}),a.Children.map(r,(o,h)=>a.isValidElement(o)?this.renderChildren(o,h):o)}}S.contextType=b;class l extends a.Component{constructor(e,s){super(e,s),this.optionsStore=s.optionsStore,this.childStore=T(ge)}render(){const{children:e}=this.props;return e!==void 0?a.Children.map(e,s=>a.isValidElement(s)?this.renderChildren(s):s):null}componentDidMount(){this.dispatch()}componentDidUpdate(){this.dispatch()}dispatch(){const{_chartKey:e,_chartCollectionIdxKey:s,_parentStore:r,children:i,...o}=this.props;(r||this.optionsStore).dispatch({chartKey:e,chartCollectionIdxKey:s,payload:Object.assign({},o,this.childStore.getState())})}renderChildren(e){const{children:s}=e.props,r={...e.props,_parentStore:this.childStore};return a.cloneElement(e,r,s)}}l.contextType=b;class Ee{constructor(e){this.currentState=e.currentState,this.nextState=e.nextState}}const D=a.forwardRef((t,e)=>{const s=a.useRef(null),r=a.useRef(null);a.useImperativeHandle(s,()=>({element:r.current,props:t})),a.useImperativeHandle(e,()=>s.current);let o=[{id:"0",...t.rootItem||{text:"Home",icon:a.createElement(f.SvgIcon,{icon:We.homeIcon,style:{marginInlineEnd:"4px"}})}}];t.drilldownState&&(o=[...o,...t.drilldownState.steps.map((u,d)=>({id:(d+1).toString(),text:u.drilldownValue}))]);const h={...t,data:o},c=u=>{var v;const d="onDrilldownStateChange";if(t.hasOwnProperty(d)){const m=o.findIndex(Ns=>Ns.id===u.id),Ds={steps:(((v=t.drilldownState)==null?void 0:v.steps)||[]).slice(0,m)},ws=new Ee({currentState:t.drilldownState,nextState:Ds});t[d].call(void 0,ws)}};return a.createElement("div",null,a.createElement(qe.Breadcrumb,{...h,onItemSelect:c}))}),_t={id:p.string,style:p.object,className:p.string,breadcrumbOrderedList:p.elementType,breadcrumbListItem:p.elementType,breadcrumbDelimiter:p.elementType,breadcrumbLink:p.elementType,dir:p.oneOf(["ltr","rtl"]),disabled:p.bool,valueField:p.string,textField:p.string,iconField:p.string,iconClassField:p.string,onItemSelect:p.func,ariaLabel:p.string,onDrilldownStateChange:p.func,drilldownState:p.shape({steps:p.array}),rootItem:p.object},Dt={valueField:"id",textField:"text",iconField:"icon",iconClassField:"iconClass",data:[]};D.displayName="KendoReactChartBreadcrumb",D.propTypes=_t,D.defaultProps=Dt;const wt=t=>a.createElement(l,{...t,_chartKey:"chartArea"}),Nt=t=>a.createElement(l,{...t,_chartKey:"axisDefaults"}),F=t=>a.createElement(l,{...t});F.displayName="ChartCategoryAxisItem";const xe=t=>a.createElement(S,{...t,_chartKey:"categoryAxis"});xe.propTypes={children:function(t,e,s){return E(t,e,s,F)}};const kt=t=>a.createElement(l,{visible:!0,...t,_chartKey:"legend"}),Ot=t=>a.createElement(l,{visible:!0,position:"bottom",...t,_chartKey:"navigator"}),M=t=>a.createElement(l,{...t});M.displayName="ChartPane";const Ie=t=>a.createElement(l,{...t,_chartKey:"paneDefaults"});Ie.displayName="ChartPaneDefaults";const Ae=t=>a.createElement(S,{...t,_chartKey:"panes"});Ae.propTypes={children:function(t,e,s){return E(t,e,s,M)}};const Lt=t=>a.createElement(l,{...t,_chartKey:"plotArea"}),H=t=>{let e=r=>a.createElement(a.Fragment,null);t.drilldownSeriesFactory&&(e=t.drilldownSeriesFactory);const s=r=>{var i,o;return r&&((o=(i=r.drilldownState)==null?void 0:i.steps)==null?void 0:o.find(({seriesName:h})=>h===t.name))};return a.createElement(b.Consumer,null,r=>s(r)?a.createElement(e,{_chartCollectionIdxKey:t._chartCollectionIdxKey,drilldownValue:s(r).drilldownValue}):a.createElement(l,{...t}))};H.displayName="ChartSeriesItem";const Te=t=>a.createElement(S,{...t,_chartKey:"series"});Te.propTypes={children:function(t,e,s){return E(t,e,s,H)}};const Pt=t=>a.createElement(l,{...t,_chartKey:"seriesDefaults"}),Kt=t=>a.createElement(l,{...t,_chartKey:"subtitle"}),Rt=t=>a.createElement(l,{...t,_chartKey:"title"}),Ft=t=>a.createElement(l,{visible:!0,...t,_chartKey:"tooltip"}),V=t=>a.createElement(l,{...t});V.displayName="ChartValueAxisItem";const _e=t=>a.createElement(S,{...t,_chartKey:"valueAxis"});_e.propTypes={children:function(t,e,s){return E(t,e,s,V)}};const j=t=>a.createElement(l,{...t});j.displayName="ChartXAxisItem";const De=t=>a.createElement(S,{...t,_chartKey:"xAxis"});De.prototype={children:function(t,e,s){return E(t,e,s,j)}};const B=t=>a.createElement(l,{...t});B.displayName="ChartYAxisItem";const we=t=>a.createElement(S,{...t,_chartKey:"yAxis"});we.propTypes={children:function(t,e,s){return E(t,e,s,B)}};const Mt=t=>a.createElement(l,{...t,_chartKey:"zoomable"}),Ne=t=>a.createElement(l,{...t,_chartKey:"title"});Ne.displayName="ChartAxisDefaultsTitle";const ke=t=>a.createElement(l,{...t,_chartKey:"labels"});ke.displayName="ChartAxisDefaultsLabels";const Oe=t=>a.createElement(l,{visible:!0,...t,_chartKey:"crosshair"});Oe.displayName="ChartAxisDefaultsCrosshair";const Le=t=>a.createElement(l,{visible:!0,...t,_chartKey:"tooltip"});Le.displayName="ChartAxisDefaultsCrosshairTooltip";const Ht=t=>a.createElement(l,{visible:!0,...t,_chartKey:"crosshair"}),Vt=t=>a.createElement(l,{visible:!0,...t,_chartKey:"tooltip"}),Pe=t=>a.createElement(l,{...t,_chartKey:"title"});Pe.displayName="ChartCategoryAxisTitle";const jt=t=>a.createElement(l,{visible:!0,...t,_chartKey:"labels"}),Bt=t=>a.createElement(l,{...t,_chartKey:"notes"}),Ut=t=>a.createElement(l,{...t,_chartKey:"icon"}),Xt=t=>a.createElement(l,{...t,_chartKey:"label"}),Yt=t=>a.createElement(l,{visible:!0,...t,_chartKey:"rangeLabels"}),Ke=t=>a.createElement(l,{...t,_chartKey:"title"});Ke.displayName="ChartPaneDefaultsTitle";const Re=t=>a.createElement(l,{...t,_chartKey:"item"});Re.displayName="ChartLegendItem";const Fe=t=>a.createElement(l,{...t,_chartKey:"title"});Fe.displayName="ChartLegendTitle";const Me=t=>a.createElement(l,{...t,_chartKey:"inactiveItems"});Me.displayName="ChartLegendInactiveItems";const zt=t=>a.createElement(l,{...t,_chartKey:"tooltip"}),qt=t=>a.createElement(l,{...t,_chartKey:"outliers"}),Wt=t=>a.createElement(l,{...t,_chartKey:"notes"}),$t=t=>a.createElement(l,{...t,_chartKey:"markers"}),Zt=t=>a.createElement(l,{visible:!0,...t,_chartKey:"labels"}),Gt=t=>a.createElement(l,{...t,_chartKey:"highlight"}),Jt=t=>a.createElement(l,{...t,_chartKey:"extremes"}),Qt=t=>a.createElement(l,{...t,_chartKey:"errorBars"}),es=t=>a.createElement(l,{...t,_chartKey:"from"}),ts=t=>a.createElement(l,{...t,_chartKey:"to"}),ss=t=>a.createElement(l,{...t,_chartKey:"label"}),rs=t=>a.createElement(l,{...t,_chartKey:"icon"}),as=t=>a.createElement(l,{visible:!0,...t,_chartKey:"crosshair"}),ns=t=>a.createElement(l,{visible:!0,...t,_chartKey:"tooltip"}),is=t=>a.createElement(l,{visible:!0,...t,_chartKey:"labels"}),os=t=>a.createElement(l,{...t,_chartKey:"notes"}),ls=t=>a.createElement(l,{...t,_chartKey:"icon"}),cs=t=>a.createElement(l,{...t,_chartKey:"label"}),He=t=>a.createElement(l,{...t,_chartKey:"title"});He.displayName="ChartValueAxisTitle";const hs=t=>a.createElement(l,{visible:!0,...t,_chartKey:"crosshair"}),us=t=>a.createElement(l,{visible:!0,...t,_chartKey:"tooltip"}),ds=t=>a.createElement(l,{visible:!0,...t,_chartKey:"labels"}),ps=t=>a.createElement(l,{...t,_chartKey:"notes"}),ms=t=>a.createElement(l,{...t,_chartKey:"icon"}),vs=t=>a.createElement(l,{...t,_chartKey:"label"}),Ve=t=>a.createElement(l,{...t,_chartKey:"title"});Ve.displayName="ChartXAxisTitle";const Cs=t=>a.createElement(l,{visible:!0,...t,_chartKey:"crosshair"}),gs=t=>a.createElement(l,{visible:!0,...t,_chartKey:"tooltip"}),fs=t=>a.createElement(l,{visible:!0,...t,_chartKey:"labels"}),ys=t=>a.createElement(l,{...t,_chartKey:"notes"}),bs=t=>a.createElement(l,{...t,_chartKey:"icon"}),Ss=t=>a.createElement(l,{...t,_chartKey:"label"}),je=t=>a.createElement(l,{...t,_chartKey:"title"});je.displayName="ChartYAxisTitle";const Be=t=>a.createElement(l,{...t,_chartKey:"categoryAxis"});Be.displayName="ChartNavigatorCategoryAxis";const Es=t=>a.createElement(l,{...t,_chartKey:"hint"}),Ue=t=>a.createElement(l,{...t,_chartKey:"pane"});Ue.displayName="ChartNavigatorPane";const xs=t=>a.createElement(l,{...t,_chartKey:"select"}),U=t=>a.createElement(l,{...t});U.displayName="ChartNavigatorSeriesItem";const Xe=t=>a.createElement(S,{...t,_chartKey:"series"});Xe.propTypes={children:function(t,e,s){return E(t,e,s,U)}};const Is=(t,e)=>{if(t&&t.chartInstance!==null)return t.chartInstance.findAxisByName(e)},As=(t,e)=>{if(t&&t.chartInstance!==null)return t.chartInstance.findPaneByIndex(e)},Ts=(t,e)=>{if(t&&t.chartInstance!==null)return t.chartInstance.findPaneByName(e)},_s=(t,e={})=>{if(t&&t.chartInstance!==null)return t.chartInstance.exportVisual(e)};n.AxisLabelClickEvent=W,n.Chart=xt,n.ChartArea=wt,n.ChartAxisDefaults=Nt,n.ChartAxisDefaultsCrosshair=Oe,n.ChartAxisDefaultsCrosshairTooltip=Le,n.ChartAxisDefaultsLabels=ke,n.ChartAxisDefaultsTitle=Ne,n.ChartBreadcrumb=D,n.ChartCategoryAxis=xe,n.ChartCategoryAxisCrosshair=Ht,n.ChartCategoryAxisCrosshairTooltip=Vt,n.ChartCategoryAxisItem=F,n.ChartCategoryAxisLabels=jt,n.ChartCategoryAxisNotes=Bt,n.ChartCategoryAxisNotesIcon=Ut,n.ChartCategoryAxisNotesLabel=Xt,n.ChartCategoryAxisRangeLabels=Yt,n.ChartCategoryAxisTitle=Pe,n.ChartLegend=kt,n.ChartLegendInactiveItems=Me,n.ChartLegendItem=Re,n.ChartLegendTitle=Fe,n.ChartNavigator=Ot,n.ChartNavigatorCategoryAxis=Be,n.ChartNavigatorHint=Es,n.ChartNavigatorPane=Ue,n.ChartNavigatorSelect=xs,n.ChartNavigatorSeries=Xe,n.ChartNavigatorSeriesItem=U,n.ChartPane=M,n.ChartPaneDefaults=Ie,n.ChartPaneDefaultsTitle=Ke,n.ChartPanes=Ae,n.ChartPlotArea=Lt,n.ChartSeries=Te,n.ChartSeriesDefaults=Pt,n.ChartSeriesErrorBars=Qt,n.ChartSeriesExtremes=Jt,n.ChartSeriesHighlight=Gt,n.ChartSeriesItem=H,n.ChartSeriesItemOutliers=qt,n.ChartSeriesItemTooltip=zt,n.ChartSeriesLabels=Zt,n.ChartSeriesLabelsFrom=es,n.ChartSeriesLabelsTo=ts,n.ChartSeriesMarkers=$t,n.ChartSeriesNotes=Wt,n.ChartSeriesNotesIcon=rs,n.ChartSeriesNotesLabel=ss,n.ChartSubtitle=Kt,n.ChartTitle=Rt,n.ChartTooltip=Ft,n.ChartValueAxis=_e,n.ChartValueAxisCrosshair=as,n.ChartValueAxisCrosshairTooltip=ns,n.ChartValueAxisItem=V,n.ChartValueAxisLabels=is,n.ChartValueAxisNotes=os,n.ChartValueAxisNotesIcon=ls,n.ChartValueAxisNotesLabel=cs,n.ChartValueAxisTitle=He,n.ChartXAxis=De,n.ChartXAxisCrosshair=hs,n.ChartXAxisCrosshairTooltip=us,n.ChartXAxisItem=j,n.ChartXAxisLabels=ds,n.ChartXAxisNotes=ps,n.ChartXAxisNotesIcon=ms,n.ChartXAxisNotesLabel=vs,n.ChartXAxisTitle=Ve,n.ChartYAxis=we,n.ChartYAxisCrosshair=Cs,n.ChartYAxisCrosshairTooltip=gs,n.ChartYAxisItem=B,n.ChartYAxisLabels=fs,n.ChartYAxisNotes=ys,n.ChartYAxisNotesIcon=bs,n.ChartYAxisNotesLabel=Ss,n.ChartYAxisTitle=je,n.ChartZoomable=Mt,n.CollectionConfigurationComponent=S,n.ConfigurationComponent=l,n.CrosshairTooltip=P,n.CrosshairTooltipContainer=K,n.DonutCenter=R,n.DragEndEvent=Z,n.DragEvent=$,n.DragStartEvent=G,n.DrilldownEvent=N,n.DrilldownStateChangeEvent=Ee,n.LegendItemClickEvent=Q,n.LegendItemHoverEvent=J,n.NavigatorFilterEvent=ee,n.NoteClickEvent=te,n.NoteHoverEvent=se,n.PlotAreaClickEvent=re,n.PlotAreaHoverEvent=ae,n.RenderEvent=ne,n.SelectEndEvent=oe,n.SelectEvent=ie,n.SelectStartEvent=le,n.SeriesClickEvent=ce,n.SeriesHoverEvent=he,n.SeriesTooltip=L,n.SharedTooltipContent=fe,n.Sparkline=It,n.StockChart=Tt,n.TooltipPoint=O,n.TooltipPopup=_,n.ZoomEndEvent=de,n.ZoomEvent=ue,n.ZoomStartEvent=pe,n.exportVisual=_s,n.findAxisByName=Is,n.findPaneByIndex=As,n.findPaneByName=Ts,Object.defineProperty(n,Symbol.toStringTag,{value:"Module"})});
|