Skip to content

feat(gallery): fix stale DFlash drafters and add the APEX families as variant ladders#11027

Merged
mudler merged 18 commits into
masterfrom
feat/apex-gallery-variants
Jul 21, 2026
Merged

feat(gallery): fix stale DFlash drafters and add the APEX families as variant ladders#11027
mudler merged 18 commits into
masterfrom
feat/apex-gallery-variants

Conversation

@localai-bot

Copy link
Copy Markdown
Collaborator

What this does

Two things, delivered together.

1. Fixes two broken DFlash entries

qwen3-4b-dflash and qwen3.5-9b-dflash pointed at drafter GGUFs converted from the DFlash pull request branch before it merged into llama.cpp on 2026-06-28. Those files carry dflash.target_layer_ids, while llama.cpp reads dflash.target_layers, so the model fails to load with:

DFlash model requires 'target_layers' in GGUF metadata

The stored values are also offset by +1 relative to the HuggingFace-side field, so the files cannot be repaired by renaming the key. Both entries now point at post-rename drafters, verified by reading the GGUF headers directly.

The other three DFlash entries were checked and are correct as they stand.

2. Adds the APEX families as variant ladders

A new generator at .github/ci/apexentries reads the HuggingFace API and produces gallery entries for the 45 mudler/*-APEX-GGUF repos: the imatrix quality ladder, a fixed subset of unsloth quant rungs where a counterpart repo exists, and the MTP builds.

Everything attaches to the base model entry, so a user looking for qwen3.6-35b-a3b gets one entry offering every build of those weights and LocalAI picks the one that fits the hardware. Ten existing base entries gain a variants: list; 27 families the gallery had no base entry for get one.

gallery/index.yaml goes from 1274 to 1527 entries: 6037 insertions, zero deletions. The ten splices are pure insertions, so no anchor, merge key, or surrounding YAML was disturbed.

Design rules the generator follows

  • Builds are discovered from published filenames, never constructed from a repo name. Six repos ship a stem that differs from their repo name: gemma-4-26B-A4B-it-APEX-GGUF publishes gemma-4-26B-A4B-APEX-*.gguf, others drop a -2603 suffix or an NVIDIA- prefix.
  • The dflash/mtp tag is applied if and only if the entry itself sets spec_type:. Variant ranking reads tags and nothing else, so a tag without the configuration promotes a build that is not faster, and configuration without the tag leaves a faster build ranked as plain. .agents/adding-gallery-models.md is the authority.
  • sha256 always comes from the API lfs.sha256. A missing hash is fatal rather than guessed, because on Xet-backed repos the superficially similar field is a Xet hash, not the content hash. One repo trips this and is left failing rather than papered over.
  • Gallery edits are textual, never a YAML round trip, since re-serialising 40,000 lines would reflow the file and drop its anchors. The line editing is factored into .github/ci/galleryedit, now shared with the existing variantproposals tool.

Verification

  • go run ./.github/ci/apexentries -verify gallery/index.yaml reports only pre-existing problems, line-for-line identical to a pre-apply run
  • 1527 entries parse; no duplicate names, no unresolved variant references, no self-references, no nested variant declarations
  • All 24 sharded entries point model: at the 00001-of- shard with every shard listed
  • Every new entry declares a backend and every new file carries a sha256
  • go test ./core/gallery/... green; apexentries and variantproposals suites green
  • Spot-checked generated download URLs return 200
  • .github/workflows/ci-tools-tests.yaml added, because .github/ci/ is invisible to go list ./... so these tests never ran in CI

Pre-existing issues surfaced but deliberately not fixed

The new verifier found these in the current gallery. They predate this branch and are left for a separate change:

  • qwythos-9b-v2 and qwen3.6-27b-fable-fusion-711-... set spec_type:draft-mtp but carry no mtp tag, so they rank as plain builds
  • qwen3-vl-reranker-2b-i1 configures the 2B projector while downloading the 8B one
  • Seven wan-2.1-* files, a VAE and a CLIP vision encoder, have sha256: "" and are therefore unverified downloads
  • Six local-path collisions where two different upstream files share one local filename, for example mmproj-F32.gguf between qwen3.5-9b and qwen3.5-397b-a17b

Known limitation

The generator cannot distinguish a transient HuggingFace response from a counterpart repo that does not exist, because HuggingFace answers 401 rather than 404 for a nonexistent repo to an unauthenticated client. 135 live probes showed no flakes and every stable counterpart is represented in this run, but a future run wants a retry or an HF_TOKEN for truthful 404s.

Assisted-by: Claude Opus 4.8 [Claude Code]

mudler added 18 commits July 20, 2026 22:31
…ame GGUFs

The drafters both entries referenced were converted from the pre-merge DFlash
PR branch and carry dflash.target_layer_ids. llama.cpp reads dflash.target_layers
and refuses the load. The stored values are offset by +1 relative to the HF-side
field, so the files cannot be repaired by renaming the key and must be replaced.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
The apexentries HuggingFace client was constructed as a raw
&http.Client{Timeout: 60s}. The repo convention (documented in
.golangci.yml, which cannot express this as a forbidigo pattern) is that
all outbound HTTP goes through pkg/httpclient, which refuses redirects by
default and sets a TLS 1.2 floor. The std client follows redirects and
forwards custom credential headers to the redirect target on a cross-host
hop (GHSA-3mj3-57v2-4636). Only a User-Agent is sent today, but this
calls an external API and an HF_TOKEN header added later would leak.

Switch to httpclient.NewWithTimeout, preserving the 60 second timeout.
No behaviour change for the current header set.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
RenderChild left three gaps against the hand-written gallery entries.

The generated entries reference gallery/virtual.yaml, which supplies no
backend, so every generated entry named no engine at all. All comparable
hand-written entries set backend: llama-cpp in overrides; do the same.
Set known_usecases to [chat] alongside it: LocalAI falls back to the
backend defaults when it is absent, so this is convention rather than
breakage, but generated entries should not read differently from their
neighbours.

The drafter was also assumed to live in the repo publishing the weights.
Speculative pairings routinely cross repos, and a drafter URI built from
the weights repo 404s at install time. Add ChildInput.DraftRepo, used for
both the drafter URI and its local path, falling back to Repo when empty
so pairings that do ship the drafter alongside the weights are unchanged.

The dflash/mtp tagging rule is untouched: the tag still follows SpecType
and nothing else.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Merge exists to stop a second gallery entry being added for weights the
gallery already ships, but two gaps let duplicates through on a bulk run.

The URI key was compared as an exact string while render.go only ever emits
https://huggingface.co/{repo}/resolve/main/{file} and the gallery records
1038 of its URIs in huggingface://{repo}/{file} shorthand. A generated
unsloth rung whose weights are already shipped in shorthand was therefore
not recognised. canonicalURI reduces both spellings to one key and is
applied on both sides, taking care that the repo is exactly the first two
path segments so sharded quants in a subdirectory still match. A URI in
neither form is returned untouched so other hosts dedup on their literal
string.

Merge also never accounted for entries it had just accepted, so two
generated entries sharing a name or a primary URI both landed in add.
Several APEX repos share one base model and resolve to the same unsloth
counterpart, so the identical rungs are generated twice under the same
name. Batch state is tracked locally rather than written back into the
caller's ExistingIndex, which a caller may reasonably reuse.

Name is still checked before URI: a name collision must block the add
regardless of the weights.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
The verifier reported 60 problems against the real gallery, 57 of which were
llama.cpp assumptions meeting entries from other backends. A gate that is wrong
57 times out of 60 cannot gate anything.

- The weight-count check catches a quant label collision in llama-cpp quant
  discovery, so it now runs only for overrides.backend: llama-cpp. Entries with
  no declared backend are skipped because their weights are declared in the
  referenced url: template, which the verifier never reads.
- The dflash/mtp tag check now implements the per-backend table in
  .agents/adding-gallery-models.md instead of assuming llama.cpp's spec_type:
  vocabulary. ds4 declares mtp_path:/mtp_draft:; sglang declares
  speculative_algorithm: in a file this verifier cannot follow, so sglang
  entries are not judged in either direction. The check stays bidirectional
  within the backends it does judge.
- sha256 is now required on .gguf files only, since every non-GGUF asset in the
  index belongs to a hand-curated entry outside this generator's scope.

Against the current gallery this leaves exactly the three genuine problems:
two entries setting spec_type:draft-mtp without the mtp tag, and one entry
whose overrides.mmproj names a file it does not download.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
UnaccountedQuants matched files to wanted quants with strings.Contains, which
reproduces the substring collision it was written to warn about: Q8_0 is a
substring of UD-Q8_0, so a repo publishing only UD-Q8_0 was reported as
publishing an unbuilt Q8_0. Subdirectory-sharded UD quants are the normal
unsloth layout for large repos, so this fired on realistic input.

Match on the quant label as an anchored token instead, the way
DiscoverUnslothQuants does, so the diagnostic and the discovery it audits
cannot disagree about what a file is. Root-level shards, the layout the
diagnostic mainly exists to catch, stay detected.

The sha256 requirement was scoped to .gguf, which exempted seven real model
weights: wan_2.1_vae.safetensors and clip_vision_h.safetensors across the
wan-2.1-*-ggml entries, both load-bearing weights named by gallery/wan-ggml.yaml.
Invert the rule so a checksum is required on everything except metadata
extensions, which keeps a future weight format covered by default rather than
silently exempt.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Adds the generation path to the apexentries command: list the mudler APEX
repos, discover each one's quality ladder and its unsloth counterpart's quant
rungs from the filenames actually published, render a child entry per build
plus a family parent carrying the variants list, dedup against the gallery,
and write the additions to -out or append them with -apply.

Discovery shortfalls are reported at discovery time rather than left to the
verifier. A quant or a tier that discovery drops leaves no trace in a finished
gallery file, and because an empty imatrix ladder falls back to the plain one,
a repo whose imatrix filenames all fail to match downgrades the whole family
silently instead of erroring.

Merge's single reused map is split into two reported categories. A URI match
means the gallery already ships exactly these weights and referencing the
existing entry is correct; a name collision means an unrelated entry owns the
name and referencing it would substitute a different build.

Multimodal children now declare known_usecases [chat, vision]. An explicit
known_usecases suppresses the backend-default fallback, so a chat-only entry
carrying an mmproj never matches the vision or multimodal gallery filters.

.github/ci is invisible to go list ./..., so a workflow names both generator
packages explicitly and their specs finally run on pull requests.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
The hub for a family is the BASE model entry, never a generated *-apex
parent. Somebody looking for qwen3.6-35b-a3b has to find every build of
those weights under that one name, so a competing qwen3.6-35b-a3b-apex
hub would split the family and leave half of it invisible.

When the gallery already ships the base entry, a variants block is
spliced into it textually, leaving its description, icon, tags,
overrides and files untouched. Only a family whose base model the
gallery does not ship gets a new hub, still named for the base model and
carrying one of the discovered builds as its own payload so it declares
a backend the verifier can judge.

The line editing is factored into .github/ci/galleryedit, shared with
the variantproposals job, so the two cannot drift apart on where a
variants block belongs.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
…sent

HuggingFace answers 401 Unauthorized, not 404, for a repository that does
not exist when the request carries no credentials. FetchRepoFiles treated
only 404 as absence, so probing for the OPTIONAL unsloth counterpart hard
failed for every family that legitimately has none: 27 of the 45 APEX
families are community merges that will never have an unsloth build, and a
full run failed all of them.

Split the fetch so the two call sites can apply different policies to the
same response. The APEX repo itself stays strict: a 401 or 403 on a repo
the run requires is a real failure and still errors. Only the optional
probe tolerates it, because without a token 401 cannot be told apart from
absence.

That collapse is lossy in one direction, since a private or gated repo also
answers 401, so the skipped candidates are named in the run summary
alongside the other silent-shortfall counters instead of being dropped in
silence.

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
The 45 APEX repos publish their unquantized F16 sources next to the
imatrix ladder, flat or sharded. Discovery correctly emits nothing for
them, but they were landing in the unclassified total, leaving a
permanent baseline of 24 benign lines on every run.

That baseline is what the unclassified check exists to prevent: a
standing count of known-benign files is exactly what hides the one file
that ever genuinely matters. Count full-precision sources separately and
give them their own summary line, so unclassified returns to 0 and stays
loud when something really is an unknown shape.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
localPath namespaced downloads by the repo basename alone, so two repos
publishing the same filename under different owners collapsed to one local
path. LiquidAI/LFM2.5-8B-A1B-GGUF and unsloth/LFM2.5-8B-A1B-GGUF collided that
way, and both were offered from the same hub, so installing the second either
overwrote the first model's weights or was skipped as already present while
recording a sha256 that did not match the bytes on disk. The owner is now its
own path segment: owner/repo is globally unique on HuggingFace and neither half
can contain a separator, so uniqueness holds by construction.

Verify gains a check for the whole class, that no local filename may map to two
different upstream URIs. It surfaces seven pre-existing collisions in the
gallery, which are left alone here.

Entries built from the *-APEX-MTP-GGUF repos now configure MTP rather than
shipping the heads inert, matching the pattern the hand-written MTP entries
already use: spec_type:draft-mtp with spec_n_max and spec_p_min, tagged mtp, and
no draft_model because the heads live in the weights. RenderChild no longer
requires a separate drafter file before it will configure a spec type, while the
cross-repo drafter path is unchanged.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Adds the imatrix quality ladder from each mudler/*-APEX-GGUF repo, a fixed
subset of unsloth quant rungs where a counterpart repo exists, and the MTP
builds, then attaches them to the base model entry so one entry offers every
build of the same weights and LocalAI picks the one that fits the hardware.

Ten existing base model entries gain a variants list; twenty-seven families that
the gallery had no base entry for get one. Builds are discovered from the
filenames each repo actually publishes rather than derived from its name, since
six repos ship a stem that differs from their repo name. Every file carries a
sha256 taken from the HuggingFace API.

Assisted-by: Claude Opus 4.8 [Claude Code]
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
@mudler
mudler merged commit 5c96e09 into master Jul 21, 2026
21 of 23 checks passed
@mudler
mudler deleted the feat/apex-gallery-variants branch July 21, 2026 19:40
@github-actions

Copy link
Copy Markdown
Contributor

yamllint Failed

Show Output
::group::gallery/nanbeige4.1.yaml
::warning file=gallery/nanbeige4.1.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/chatml.yaml
::warning file=gallery/chatml.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/lfm.yaml
::warning file=gallery/lfm.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/index.yaml
::error file=gallery/index.yaml,line=40295,col=9::40295:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40299,col=9::40299:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40301,col=9::40301:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40319,col=9::40319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40323,col=9::40323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40325,col=9::40325:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40343,col=9::40343:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40347,col=9::40347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40349,col=9::40349:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40367,col=9::40367:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40371,col=9::40371:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40373,col=9::40373:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40391,col=9::40391:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40393,col=9::40393:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40395,col=9::40395:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40410,col=9::40410:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40412,col=9::40412:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40414,col=9::40414:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40429,col=9::40429:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40431,col=9::40431:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40433,col=9::40433:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40448,col=9::40448:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40450,col=9::40450:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40452,col=9::40452:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40467,col=9::40467:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40469,col=9::40469:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40471,col=9::40471:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40486,col=9::40486:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40488,col=9::40488:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40490,col=9::40490:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40505,col=9::40505:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40507,col=9::40507:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40509,col=9::40509:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40524,col=9::40524:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40526,col=9::40526:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40528,col=9::40528:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40544,col=9::40544:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40546,col=9::40546:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40551,col=9::40551:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40567,col=9::40567:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40569,col=9::40569:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40574,col=9::40574:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40590,col=9::40590:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40592,col=9::40592:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40597,col=9::40597:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40613,col=9::40613:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40615,col=9::40615:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40620,col=9::40620:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40636,col=9::40636:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40638,col=9::40638:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40643,col=9::40643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40658,col=9::40658:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40660,col=9::40660:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40662,col=9::40662:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40677,col=9::40677:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40679,col=9::40679:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40681,col=9::40681:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40696,col=9::40696:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40698,col=9::40698:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40700,col=9::40700:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40715,col=9::40715:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40717,col=9::40717:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40719,col=9::40719:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40734,col=9::40734:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40736,col=9::40736:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40738,col=9::40738:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40753,col=9::40753:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40755,col=9::40755:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40757,col=9::40757:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40772,col=9::40772:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40774,col=9::40774:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40776,col=9::40776:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40791,col=9::40791:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40793,col=9::40793:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40795,col=9::40795:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40810,col=9::40810:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40812,col=9::40812:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40814,col=9::40814:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40829,col=9::40829:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40831,col=9::40831:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40833,col=9::40833:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40848,col=9::40848:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40850,col=9::40850:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40852,col=9::40852:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40867,col=9::40867:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40869,col=9::40869:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40871,col=9::40871:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40886,col=9::40886:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40888,col=9::40888:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40890,col=9::40890:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40905,col=9::40905:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40907,col=9::40907:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40909,col=9::40909:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40924,col=9::40924:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40928,col=9::40928:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40930,col=9::40930:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40948,col=9::40948:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40952,col=9::40952:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40954,col=9::40954:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40972,col=9::40972:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40976,col=9::40976:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40978,col=9::40978:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40996,col=9::40996:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41000,col=9::41000:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41002,col=9::41002:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41020,col=9::41020:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41022,col=9::41022:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41024,col=9::41024:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41039,col=9::41039:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41041,col=9::41041:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41043,col=9::41043:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41058,col=9::41058:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41060,col=9::41060:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41062,col=9::41062:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41077,col=9::41077:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41079,col=9::41079:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41081,col=9::41081:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41096,col=9::41096:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41098,col=9::41098:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41100,col=9::41100:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41115,col=9::41115:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41117,col=9::41117:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41119,col=9::41119:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41134,col=9::41134:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41136,col=9::41136:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41138,col=9::41138:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41153,col=9::41153:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41155,col=9::41155:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41157,col=9::41157:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41172,col=9::41172:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41174,col=9::41174:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41176,col=9::41176:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41191,col=9::41191:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41193,col=9::41193:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41195,col=9::41195:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41210,col=9::41210:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41212,col=9::41212:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41214,col=9::41214:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41229,col=9::41229:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41231,col=9::41231:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41233,col=9::41233:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41248,col=9::41248:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41250,col=9::41250:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41252,col=9::41252:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41267,col=9::41267:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41269,col=9::41269:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41271,col=9::41271:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41286,col=9::41286:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41288,col=9::41288:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41290,col=9::41290:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41305,col=9::41305:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41307,col=9::41307:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41309,col=9::41309:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41324,col=9::41324:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41326,col=9::41326:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41328,col=9::41328:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41343,col=9::41343:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41345,col=9::41345:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41347,col=9::41347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41362,col=9::41362:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41364,col=9::41364:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41366,col=9::41366:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41381,col=9::41381:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41383,col=9::41383:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41385,col=9::41385:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41400,col=9::41400:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41402,col=9::41402:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41404,col=9::41404:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41434,col=9::41434:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41436,col=9::41436:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41438,col=9::41438:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41453,col=9::41453:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41455,col=9::41455:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41457,col=9::41457:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41472,col=9::41472:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41474,col=9::41474:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41476,col=9::41476:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41491,col=9::41491:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41493,col=9::41493:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41495,col=9::41495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41510,col=9::41510:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41512,col=9::41512:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41514,col=9::41514:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41529,col=9::41529:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41531,col=9::41531:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41533,col=9::41533:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41557,col=9::41557:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41559,col=9::41559:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41561,col=9::41561:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41588,col=9::41588:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41590,col=9::41590:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41592,col=9::41592:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41619,col=9::41619:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41621,col=9::41621:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41623,col=9::41623:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41653,col=9::41653:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41657,col=9::41657:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41659,col=9::41659:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41677,col=9::41677:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41681,col=9::41681:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41683,col=9::41683:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41701,col=9::41701:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41705,col=9::41705:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41707,col=9::41707:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41725,col=9::41725:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41729,col=9::41729:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41731,col=9::41731:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41749,col=9::41749:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41753,col=9::41753:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41755,col=9::41755:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41779,col=9::41779:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41783,col=9::41783:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41785,col=9::41785:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41809,col=9::41809:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41813,col=9::41813:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41815,col=9::41815:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41842,col=9::41842:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41846,col=9::41846:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41848,col=9::41848:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41875,col=9::41875:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41877,col=9::41877:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41879,col=9::41879:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41894,col=9::41894:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41896,col=9::41896:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41898,col=9::41898:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41913,col=9::41913:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41915,col=9::41915:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41917,col=9::41917:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41932,col=9::41932:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41934,col=9::41934:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41936,col=9::41936:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41951,col=9::41951:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41953,col=9::41953:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41955,col=9::41955:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41976,col=9::41976:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41978,col=9::41978:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41980,col=9::41980:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42004,col=9::42004:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42006,col=9::42006:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42008,col=9::42008:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42032,col=9::42032:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42034,col=9::42034:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42036,col=9::42036:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42060,col=9::42060:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42062,col=9::42062:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42064,col=9::42064:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42079,col=9::42079:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42081,col=9::42081:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42083,col=9::42083:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42098,col=9::42098:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42100,col=9::42100:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42102,col=9::42102:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42117,col=9::42117:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42119,col=9::42119:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42121,col=9::42121:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42136,col=9::42136:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42138,col=9::42138:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42140,col=9::42140:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42155,col=9::42155:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42159,col=9::42159:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42161,col=9::42161:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42179,col=9::42179:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42183,col=9::42183:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42185,col=9::42185:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42203,col=9::42203:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42207,col=9::42207:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42209,col=9::42209:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42227,col=9::42227:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42231,col=9::42231:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42233,col=9::42233:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42251,col=9::42251:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42255,col=9::42255:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42257,col=9::42257:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42275,col=9::42275:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42279,col=9::42279:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42281,col=9::42281:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42299,col=9::42299:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42303,col=9::42303:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42305,col=9::42305:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42323,col=9::42323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42327,col=9::42327:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42329,col=9::42329:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42347,col=9::42347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42351,col=9::42351:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42353,col=9::42353:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42371,col=9::42371:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42375,col=9::42375:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42377,col=9::42377:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42395,col=9::42395:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42399,col=9::42399:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42401,col=9::42401:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42419,col=9::42419:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42423,col=9::42423:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42425,col=9::42425:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42443,col=9::42443:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42447,col=9::42447:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42449,col=9::42449:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42467,col=9::42467:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42471,col=9::42471:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42473,col=9::42473:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42491,col=9::42491:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42495,col=9::42495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42497,col=9::42497:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42515,col=9::42515:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42519,col=9::42519:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42521,col=9::42521:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42539,col=9::42539:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42543,col=9::42543:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42545,col=9::42545:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42563,col=9::42563:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42565,col=9::42565:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42567,col=9::42567:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42582,col=9::42582:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42584,col=9::42584:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42586,col=9::42586:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42601,col=9::42601:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42603,col=9::42603:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42605,col=9::42605:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42620,col=9::42620:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42622,col=9::42622:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42624,col=9::42624:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42639,col=9::42639:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42641,col=9::42641:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42643,col=9::42643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42658,col=9::42658:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42660,col=9::42660:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42662,col=9::42662:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42677,col=9::42677:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42679,col=9::42679:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42681,col=9::42681:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42696,col=9::42696:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42698,col=9::42698:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42700,col=9::42700:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42715,col=9::42715:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42717,col=9::42717:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42719,col=9::42719:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42740,col=9::42740:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42742,col=9::42742:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42744,col=9::42744:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42765,col=9::42765:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42767,col=9::42767:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42769,col=9::42769:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42790,col=9::42790:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42794,col=9::42794:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42796,col=9::42796:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42814,col=9::42814:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42818,col=9::42818:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42820,col=9::42820:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42838,col=9::42838:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42842,col=9::42842:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42844,col=9::42844:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42862,col=9::42862:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42866,col=9::42866:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42868,col=9::42868:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42886,col=9::42886:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42890,col=9::42890:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42892,col=9::42892:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42919,col=9::42919:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42923,col=9::42923:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42925,col=9::42925:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42943,col=9::42943:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42947,col=9::42947:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42949,col=9::42949:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42967,col=9::42967:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42971,col=9::42971:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42973,col=9::42973:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42991,col=9::42991:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42995,col=9::42995:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42997,col=9::42997:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43015,col=9::43015:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43017,col=9::43017:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43019,col=9::43019:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43034,col=9::43034:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43036,col=9::43036:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43038,col=9::43038:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43053,col=9::43053:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43055,col=9::43055:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43057,col=9::43057:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43072,col=9::43072:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43074,col=9::43074:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43076,col=9::43076:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43091,col=9::43091:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43093,col=9::43093:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43095,col=9::43095:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43110,col=9::43110:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43112,col=9::43112:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43114,col=9::43114:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43129,col=9::43129:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43131,col=9::43131:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43133,col=9::43133:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43148,col=9::43148:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43150,col=9::43150:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43152,col=9::43152:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43167,col=9::43167:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43169,col=9::43169:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43171,col=9::43171:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43186,col=9::43186:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43188,col=9::43188:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43190,col=9::43190:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43205,col=9::43205:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43207,col=9::43207:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43209,col=9::43209:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43224,col=9::43224:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43226,col=9::43226:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43228,col=9::43228:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43243,col=9::43243:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43247,col=9::43247:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43249,col=9::43249:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43267,col=9::43267:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43271,col=9::43271:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43273,col=9::43273:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43291,col=9::43291:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43295,col=9::43295:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43297,col=9::43297:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43315,col=9::43315:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43319,col=9::43319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43321,col=9::43321:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43354,col=9::43354:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43358,col=9::43358:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43360,col=9::43360:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43399,col=9::43399:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43403,col=9::43403:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43405,col=9::43405:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43444,col=9::43444:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43448,col=9::43448:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43450,col=9::43450:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43495,col=9::43495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43499,col=9::43499:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43501,col=9::43501:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43519,col=9::43519:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43523,col=9::43523:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43525,col=9::43525:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43543,col=9::43543:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43547,col=9::43547:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43549,col=9::43549:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43567,col=9::43567:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43571,col=9::43571:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43573,col=9::43573:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43591,col=9::43591:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43595,col=9::43595:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43597,col=9::43597:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43615,col=9::43615:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43619,col=9::43619:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43621,col=9::43621:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43639,col=9::43639:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43643,col=9::43643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43645,col=9::43645:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43664,col=9::43664:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43666,col=9::43666:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43671,col=9::43671:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43687,col=9::43687:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43689,col=9::43689:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43694,col=9::43694:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43710,col=9::43710:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43712,col=9::43712:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43717,col=9::43717:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43733,col=9::43733:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43735,col=9::43735:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43740,col=9::43740:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43756,col=9::43756:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43758,col=9::43758:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43763,col=9::43763:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43778,col=9::43778:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43780,col=9::43780:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43782,col=9::43782:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43797,col=9::43797:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43799,col=9::43799:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43801,col=9::43801:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43816,col=9::43816:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43818,col=9::43818:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43820,col=9::43820:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43835,col=9::43835:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43837,col=9::43837:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43839,col=9::43839:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43855,col=9::43855:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43857,col=9::43857:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43862,col=9::43862:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43878,col=9::43878:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43880,col=9::43880:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43885,col=9::43885:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43901,col=9::43901:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43903,col=9::43903:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43908,col=9::43908:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43924,col=9::43924:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43926,col=9::43926:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43931,col=9::43931:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43947,col=9::43947:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43949,col=9::43949:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43954,col=9::43954:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43969,col=9::43969:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43973,col=9::43973:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43975,col=9::43975:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43993,col=9::43993:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43997,col=9::43997:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43999,col=9::43999:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44017,col=9::44017:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44021,col=9::44021:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44023,col=9::44023:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44041,col=9::44041:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44045,col=9::44045:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44047,col=9::44047:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44065,col=9::44065:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44069,col=9::44069:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44071,col=9::44071:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44090,col=9::44090:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44092,col=9::44092:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44097,col=9::44097:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44113,col=9::44113:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44115,col=9::44115:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44120,col=9::44120:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44136,col=9::44136:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44138,col=9::44138:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44143,col=9::44143:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44159,col=9::44159:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44161,col=9::44161:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44166,col=9::44166:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44182,col=9::44182:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44184,col=9::44184:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44189,col=9::44189:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44204,col=9::44204:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44208,col=9::44208:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44210,col=9::44210:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44228,col=9::44228:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44232,col=9::44232:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44234,col=9::44234:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44252,col=9::44252:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44256,col=9::44256:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44258,col=9::44258:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44276,col=9::44276:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44280,col=9::44280:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44282,col=9::44282:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44300,col=9::44300:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44302,col=9::44302:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44304,col=9::44304:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44319,col=9::44319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44321,col=9::44321:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44323,col=9::44323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44338,col=9::44338:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44340,col=9::44340:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44342,col=9::44342:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44357,col=9::44357:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44359,col=9::44359:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44361,col=9::44361:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44376,col=9::44376:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44380,col=9::44380:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44382,col=9::44382:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44400,col=9::44400:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44404,col=9::44404:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44406,col=9::44406:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44424,col=9::44424:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44428,col=9::44428:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44430,col=9::44430:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44448,col=9::44448:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44452,col=9::44452:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44454,col=9::44454:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44473,col=9::44473:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44477,col=9::44477:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44482,col=9::44482:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44501,col=9::44501:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44505,col=9::44505:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44510,col=9::44510:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44529,col=9::44529:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44533,col=9::44533:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44538,col=9::44538:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44557,col=9::44557:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44561,col=9::44561:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44566,col=9::44566:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44584,col=9::44584:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44586,col=9::44586:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44588,col=9::44588:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44603,col=9::44603:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44605,col=9::44605:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44607,col=9::44607:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44622,col=9::44622:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44624,col=9::44624:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44626,col=9::44626:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44641,col=9::44641:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44643,col=9::44643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44645,col=9::44645:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44661,col=9::44661:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44663,col=9::44663:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44668,col=9::44668:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44684,col=9::44684:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44686,col=9::44686:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44691,col=9::44691:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44707,col=9::44707:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44709,col=9::44709:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44714,col=9::44714:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44730,col=9::44730:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44732,col=9::44732:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44737,col=9::44737:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44753,col=9::44753:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44755,col=9::44755:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44760,col=9::44760:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44775,col=9::44775:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44777,col=9::44777:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44779,col=9::44779:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44794,col=9::44794:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44796,col=9::44796:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44798,col=9::44798:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44813,col=9::44813:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44815,col=9::44815:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44817,col=9::44817:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44832,col=9::44832:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44834,col=9::44834:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44836,col=9::44836:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44851,col=9::44851:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44855,col=9::44855:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44857,col=9::44857:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44875,col=9::44875:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44879,col=9::44879:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44881,col=9::44881:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44899,col=9::44899:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44903,col=9::44903:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44905,col=9::44905:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44923,col=9::44923:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44927,col=9::44927:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44929,col=9::44929:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44947,col=9::44947:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44951,col=9::44951:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44953,col=9::44953:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44980,col=9::44980:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44984,col=9::44984:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44986,col=9::44986:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45016,col=9::45016:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45020,col=9::45020:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45022,col=9::45022:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45055,col=9::45055:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45059,col=9::45059:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45061,col=9::45061:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45079,col=9::45079:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45083,col=9::45083:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45085,col=9::45085:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45103,col=9::45103:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45107,col=9::45107:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45109,col=9::45109:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45127,col=9::45127:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45131,col=9::45131:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45133,col=9::45133:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45151,col=9::45151:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45155,col=9::45155:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45157,col=9::45157:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45175,col=9::45175:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45179,col=9::45179:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45181,col=9::45181:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45199,col=9::45199:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45203,col=9::45203:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45205,col=9::45205:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45223,col=9::45223:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45227,col=9::45227:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45229,col=9::45229:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45247,col=9::45247:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45251,col=9::45251:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45253,col=9::45253:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45271,col=9::45271:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45275,col=9::45275:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45277,col=9::45277:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45295,col=9::45295:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45299,col=9::45299:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45301,col=9::45301:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45319,col=9::45319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45323,col=9::45323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45325,col=9::45325:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45343,col=9::45343:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45347,col=9::45347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45349,col=9::45349:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45367,col=9::45367:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45371,col=9::45371:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45373,col=9::45373:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45391,col=9::45391:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45395,col=9::45395:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45397,col=9::45397:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45415,col=9::45415:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45419,col=9::45419:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45421,col=9::45421:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45439,col=9::45439:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45443,col=9::45443:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45445,col=9::45445:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45465,col=9::45465:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45469,col=9::45469:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45471,col=9::45471:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45495,col=9::45495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45497,col=9::45497:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45499,col=9::45499:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45520,col=9::45520:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45522,col=9::45522:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45524,col=9::45524:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45550,col=9::45550:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45552,col=9::45552:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45554,col=9::45554:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45576,col=9::45576:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45578,col=9::45578:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45580,col=9::45580:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45602,col=9::45602:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45606,col=9::45606:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45608,col=9::45608:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45632,col=9::45632:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45634,col=9::45634:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45636,col=9::45636:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45657,col=9::45657:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45659,col=9::45659:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45661,col=9::45661:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45682,col=9::45682:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45684,col=9::45684:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45686,col=9::45686:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45708,col=9::45708:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45710,col=9::45710:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45712,col=9::45712:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45739,col=9::45739:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45743,col=9::45743:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45745,col=9::45745:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45773,col=9::45773:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45775,col=9::45775:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45777,col=9::45777:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45802,col=9::45802:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45804,col=9::45804:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45806,col=9::45806:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45829,col=9::45829:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45833,col=9::45833:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45835,col=9::45835:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45862,col=9::45862:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45866,col=9::45866:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45868,col=9::45868:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45892,col=9::45892:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45894,col=9::45894:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45896,col=9::45896:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45916,col=9::45916:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45918,col=9::45918:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45920,col=9::45920:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45946,col=9::45946:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45950,col=9::45950:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45952,col=9::45952:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45980,col=9::45980:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45982,col=9::45982:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45984,col=9::45984:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46005,col=9::46005:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46007,col=9::46007:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46009,col=9::46009:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46032,col=9::46032:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46036,col=9::46036:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46038,col=9::46038:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46069,col=9::46069:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46073,col=9::46073:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46075,col=9::46075:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46099,col=9::46099:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46101,col=9::46101:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46103,col=9::46103:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46125,col=9::46125:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46129,col=9::46129:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46131,col=9::46131:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46159,col=9::46159:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46161,col=9::46161:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46163,col=9::46163:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46185,col=9::46185:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46189,col=9::46189:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46191,col=9::46191:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46216,col=9::46216:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46220,col=9::46220:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46222,col=9::46222:9 [indentation] wrong indentation: expected 6 but found 8
::endgroup::

::group::gallery/variant-exclusions.yaml
::warning file=gallery/variant-exclusions.yaml,line=32,col=1::32:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/moondream.yaml
::warning file=gallery/moondream.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/deepseek-r1.yaml
::warning file=gallery/deepseek-r1.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/gemma.yaml
::warning file=gallery/gemma.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/harmony.yaml
::warning file=gallery/harmony.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/smolvlm.yaml
::warning file=gallery/smolvlm.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/granite4.yaml
::warning file=gallery/granite4.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/openvino.yaml
::warning file=gallery/openvino.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/qwen3.yaml
::warning file=gallery/qwen3.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

Workflow: Yamllint GitHub Actions, Action: __karancode_yamllint-github-action, Lint: gallery

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants