/* ══════════════════════════════════════════════════════════════════
   Mission Planner
   ══════════════════════════════════════════════════════════════════ */

/* Progress bar */
.mp-progress-track {
    height: 3px;
    background: var(--surface-container-high);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}
.mp-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: width 0.4s ease;
}

/* Steps container */
.mp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual step */
.mp-step {
    border: 1px solid rgba(51, 123, 48, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 6px;
    background: var(--surface-container);
    transition: opacity 0.2s;
}
.mp-step--locked {
    opacity: 0.45;
}
.mp-step--active {
    border-color: rgba(51, 123, 48, 0.4);
    opacity: 1;
}
.mp-step--done {
    opacity: 1;
}

/* Step header button */
.mp-step-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    transition: background 0.15s;
}
.mp-step--locked .mp-step-header {
    cursor: default;
}
.mp-step--done .mp-step-header:hover,
.mp-step--active .mp-step-header:hover {
    background: rgba(255,255,255,0.04);
}

/* Step badge (number / checkmark) */
.mp-step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--surface-container-high);
    border: 1.5px solid rgba(var(--primary-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.2s;
}
.mp-step--active .mp-step-badge {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.mp-step--done .mp-step-badge {
    background: rgba(51, 123, 48, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

/* Step info text */
.mp-step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.mp-step-name {
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mp-step-summary {
    font-size: 11px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(61, 61, 58, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mp-step--done .mp-step-summary {
    color: var(--primary);
}

/* Chevron */
.mp-chevron {
    flex-shrink: 0;
    color: rgba(61, 61, 58, 0.35);
    transition: transform 0.25s ease;
}
.mp-step--active .mp-chevron {
    transform: rotate(180deg);
    color: rgba(61, 61, 58, 0.6);
}

/* Step body */
.mp-step-body {
    padding: 0 14px 14px;
    display: none;
}
.mp-step--active .mp-step-body {
    display: block;
}

/* Section label */
.mp-label {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(61, 61, 58, 0.4);
    margin-bottom: 8px;
}

/* Hint text */
.mp-hint {
    font-size: 12px;
    color: rgba(61, 61, 58, 0.55);
    font-family: var(--font-primary);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Draw status */
.mp-draw-status {
    font-size: 12px;
    color: var(--text-muted);
    min-height: 16px;
}

/* ── Drone make buttons ── */
.mp-make-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 4px;
}
.mp-make-btn {
    padding: 10px 6px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.35);
    border-radius: var(--radius-sm);
    background: var(--surface-container-high);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}
.mp-make-btn:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    color: var(--text-primary);
}
.mp-make-btn.selected {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

/* ── Model grid ── */
.mp-model-section {
    /* shown/hidden via JS */
}
.mp-model-section.hidden,
.mp-specs-card.hidden {
    display: none;
}
.mp-model-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.mp-model-btn {
    padding: 6px 10px;
    border: 1px solid rgba(var(--primary-rgb), 0.35);
    border-radius: var(--radius-sm);
    background: var(--surface-container-high);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.mp-model-btn:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    color: var(--text-primary);
}
.mp-model-btn.selected {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

/* ── Drone specs card ── */
.mp-specs-card {
    background: var(--surface-container-high);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    margin-top: 10px;
}
.mp-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}
.mp-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mp-spec-value {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary);
}
.mp-spec-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(var(--primary-rgb), 0.45);
}
.mp-specs-drone-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* ── Species toggles ── */
.mp-species-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.mp-species-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius-sm);
    background: var(--surface-container-high);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}
.mp-species-toggle:hover {
    border-color: rgba(var(--primary-rgb), 0.45);
    color: var(--text-primary);
}
.mp-species-toggle input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}
.mp-species-toggle:has(input:checked) {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--text-primary);
}
.mp-species-toggle--disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Species chip remove button ── */
.mp-species-chip {
    position: relative;
}
.mp-species-chip-remove {
    margin-left: auto;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.12s, color 0.12s;
}
.mp-species-chip-remove:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #DC2626;
}

/* ── Add-species row and picker ── */
.mp-species-add-row {
    position: relative;
    margin-top: 6px;
}
.mp-species-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1.5px dashed rgba(var(--primary-rgb), 0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.mp-species-add-btn:hover {
    background: rgba(var(--primary-rgb), 0.15);
    border-color: var(--primary);
}
.mp-species-picker {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 500;
    min-width: 180px;
    background: var(--surface-container-high, #fff);
    border: 1.5px solid rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    overflow: hidden;
}
.mp-species-picker.hidden {
    display: none;
}
.mp-species-picker-item {
    display: block;
    width: 100%;
    padding: 9px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.12s;
}
.mp-species-picker-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}
.mp-species-picker-empty {
    padding: 10px 14px;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Spray layer tabs ── */
.mp-layer-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.mp-layer-tab {
    min-width: 30px;
    height: 28px;
    padding: 0 10px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius-sm);
    background: var(--surface-container-high);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.15s;
}
.mp-layer-tab--active {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--text-primary);
}
.mp-layer-add {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border: 1.5px dashed rgba(var(--primary-rgb), 0.4);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mp-layer-add:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}
.mp-layer-rate-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-bottom: 12px;
}

/* ── Custom area tool bar ── */
.mp-tool-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.mp-tool-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.35);
    border-radius: var(--radius-sm);
    background: var(--surface-container-high);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.mp-tool-btn:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    color: var(--text-primary);
}
.mp-tool-btn.active {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}
.mp-tool-btn--danger {
    border-color: rgba(255, 107, 107, 0.35);
    color: rgba(255, 107, 107, 0.7);
}
.mp-tool-btn--danger:hover {
    border-color: rgba(255, 107, 107, 0.6);
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
}

/* ── Brush size row ── */
.mp-brush-size-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

/* ── Text button (link-style) ── */
.mp-text-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.15s;
}
.mp-text-btn:hover {
    color: var(--text-primary);
}

/* ── Flow rate display ── */
.mp-flow-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0 4px;
}
.mp-flow-value {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--primary);
    line-height: 1;
}
.mp-flow-unit {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}
.mp-flow-range {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ── Export buttons ── */
.mp-export-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

/* ── Mission summary card ── */
.mp-mission-summary {
    background: var(--surface-container-high);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-md);
    padding: 12px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}
.mp-mission-summary strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Draggable vertex marker on map */
.mp-vertex-marker {
    width: 12px !important;
    height: 12px !important;
    background: #38BDF8;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: grab !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.mp-vertex-marker:active {
    cursor: grabbing !important;
}
/* First vertex (snap target) — white fill so it's distinct */
.mp-vertex-marker--first {
    background: #fff;
    border-color: #38BDF8;
    cursor: crosshair !important;
    width: 14px !important;
    height: 14px !important;
}
/* Closable state — pulsing ring once ≥3 points are placed */
@keyframes mp-snap-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0.75), 0 1px 5px rgba(0,0,0,0.45); }
    60%  { box-shadow: 0 0 0 9px rgba(56, 189, 248, 0),    0 1px 5px rgba(0,0,0,0.45); }
    100% { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0),    0 1px 5px rgba(0,0,0,0.45); }
}
.mp-vertex-marker--closable {
    animation: mp-snap-pulse 1.4s ease-out infinite;
    border-width: 2.5px;
}
/* Dynamic vertex marker — color set via inline style on child div */
.mp-vertex-marker-dyn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Spray-area polygon vertex — orange theme */
.mp-vertex-marker--area {
    background: #ff9500;
    border-color: #fff;
}
.mp-vertex-marker--area-first {
    background: #fff;
    border-color: #ff9500;
    cursor: crosshair !important;
    width: 14px !important;
    height: 14px !important;
}
/* Avoidance-region polygon vertex — red theme */
.mp-vertex-marker--avoid {
    background: #ff3b30;
    border-color: #fff;
}
.mp-vertex-marker--avoid-first {
    background: #fff;
    border-color: #ff3b30;
    cursor: crosshair !important;
    width: 14px !important;
    height: 14px !important;
}

/* Stop-Drawing button in active/danger state */
.mp-btn-stop {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: #EF4444 !important;
    color: #EF4444 !important;
}
.mp-btn-stop:hover {
    background: rgba(239, 68, 68, 0.25) !important;
}

/* Brush cursor overlay on map when brush tool is active */
.leaflet-container.mp-brush-cursor {
    cursor: none !important;
    user-select: none;
    -webkit-user-select: none;
}

/* Block hover/click on weed dots while planner drawing is active.
   Note: mask polygons render to a shared <canvas> (no per-shape DOM node)
   so they can't be targeted here — their click handlers self-guard via
   appState.plannerDrawing in addWeedMarker. */
.leaflet-container.mp-planner-drawing .hermes-dot {
    pointer-events: none;
    cursor: default !important;
}

/* "or" divider between draw and import */
.mp-divider-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 8px;
}
.mp-divider-row::before,
.mp-divider-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(var(--primary-rgb), 0.3);
}
.mp-divider-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Mission planner: import + orthomosaic shortcuts in one row */
.mp-import-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 8px;
}
/* Stacked icon + label: full width for text in narrow half-column cells */
.mp-import-row .mp-import-btn {
    flex: 1;
    min-width: 0;
    width: auto; /* override .btn-secondary 100% width for two-column row */
    margin-bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    min-height: 56px !important;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

/* Import shapefile button */
.mp-import-btn {
    gap: 7px;
    margin-bottom: 8px;
    border-style: dashed !important;
    font-size: 10px !important;
    min-height: 38px !important;
}

/* ── Map toolbar variant of custom-select ── */
.map-toolbar-custom-select {
    position: relative;
    min-width: 160px;
    max-width: 260px;
}

.map-toolbar-select-trigger {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    padding-right: 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    min-width: 0;
    width: 100%;
}

.map-toolbar-select-trigger:hover {
    background: transparent !important;
    border: none !important;
}

.map-toolbar-custom-select.open .map-toolbar-select-trigger {
    border: none !important;
}

.map-toolbar-custom-select .custom-select-dropdown {
    top: calc(100% + 10px);
    min-width: 180px;
    max-height: min(360px, calc(100vh - 140px));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--primary-rgb), 0.55) transparent;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px rgba(28, 28, 25, 0.16);
}

.map-toolbar-custom-select .custom-select-dropdown::-webkit-scrollbar {
    width: 7px;
}

.map-toolbar-custom-select .custom-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.map-toolbar-custom-select .custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.5);
    border-radius: 999px;
}

.map-toolbar-custom-select .custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-rgb), 0.7);
}


/* Drone "paint brush" marker — animates along the generated spray route,
   revealing the green-painted swath polygon over the faint gray band. */
.mp-drone-marker {
    background: transparent;
    border: none;
    pointer-events: none;
}
.mp-drone-svg {
    width: 30px;
    height: 30px;
    transform-origin: 50% 50%;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.mp-drone-svg svg { display: block; }

/* Min-swath footprint preview: the swath-fill layer rendered under the solid
   spray targets in step 3, showing the area added so a sub-swath target reaches
   the drone's minimum spray width. Static (no animation — opacity flicker washed
   out and was hard to see); always on, in the layer's distinct "added" colour. */
.mp-swath-fill { pointer-events: none; }

/* Legend under the spray-area tools explaining the added-swath colour. */
.mp-swath-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}
.mp-swath-legend.hidden { display: none; }
.mp-swath-legend-swatch {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex: none;
    opacity: 0.7;
}

/* ── Precision-vs-broadcast savings card (Step 5) ──────────────────────
   Compares the broadcast footprint (boundary − exclusion) against the
   precision footprint (the pink overlay). Computed in _mpSprayComparison()
   and rendered by _mpRenderSprayCompare() at route-generation time. */
.mp-compare {
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
}
.mp-compare.hidden { display: none; }
.mp-compare-dash { color: var(--text-muted); }

/* Headline + breakdown layout. Title row, two headline totals (Broadcast vs
   Precision), a highlighted savings band, a compact per-layer table, then a
   quiet flight footer. Built by _mpRenderSprayCompare(). */
.mp-cmp2-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}
.mp-cmp2-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}
.mp-cmp2-totals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: center;
}
.mp-cmp2-col {
    padding: 8px 4px;
    border-radius: var(--radius-sm);
}
.mp-cmp2-col--precision { background: rgba(var(--primary-rgb), 0.08); }
.mp-cmp2-collabel {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.mp-cmp2-big {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-tertiary);
    color: var(--text-primary);
    line-height: 1.1;
}
.mp-cmp2-sub {
    font-size: 12px;
    font-family: var(--font-tertiary);
    color: var(--text-muted);
    margin-top: 2px;
}
.mp-cmp2-saved {
    margin-top: 10px;
    padding: 7px 10px;
    background: rgba(var(--primary-rgb), 0.12);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}
.mp-cmp2-layers {
    display: grid;
    gap: 3px 10px;
    align-items: baseline;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}
.mp-cl-cap {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.mp-cl-h {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-tertiary);
}
.mp-cl-l {
    font-size: 12px;
    color: var(--text-primary);
    white-space: nowrap;
}
.mp-cl-v {
    font-size: 12px;
    text-align: center;
    font-family: var(--font-tertiary);
    color: var(--text-primary);
}
.mp-cmp2-flight {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dotted var(--border-color);
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-tertiary);
}
