Diego Rodrigues de Sa e Souza
68e4d0c599
Release v3.8.19 ( #3526 )
...
* chore(release): open v3.8.19 development cycle
* chore(release): sync electron lockfile to 3.8.19
* feat(quality): quality-gate ratchet + anti-hallucination/rule-enforcement guardrails (Phases 0-6) (#3471 )
* feat(quality): generic ratchet comparator (multi-metric, regression-only)
* chore(ci): Fase 0 quality-gate fixes — reconcile coverage gate (40->60), tier npm audit, wire orphaned contract gates, re-enable cheap husky pre-commit
* feat(quality): ratchet engine (collector + frozen baseline + CI job) and provider-consistency gate
- collect-metrics.mjs: emits quality-metrics.json (ESLint warnings + coverage when present)
- quality-baseline.json: frozen baseline (eslintWarnings=3482, regression-only)
- ci.yml: quality-gate job (ratchet + step summary + artifact) and check:provider-consistency in lint job
- check-provider-consistency.ts: every REGISTRY id must be a canonical provider (found krutrim half-registered → allowlisted as known pre-existing, blocks any NEW orphan)
- TDD: 9 tests (5 ratchet + 4 provider-consistency)
* feat(quality): Fase 2 anti-hallucination gates — fetch-targets, openapi-routes, deps allowlist
- check-fetch-targets: every dashboard fetch(/api/...) resolves to a real route.ts; found 7 pre-existing dashboard->route mismatches frozen as KNOWN_MISSING for triage
- check-openapi-routes: every openapi.yaml path resolves to a real route; found 1 stale spec entry (agent-bridge agents/{id}/state) frozen as KNOWN_STALE_SPEC
- check-deps: anti-slopsquatting allowlist (105 deps); new deps need explicit human-reviewed entry
- all wired into CI lint/docs jobs; TDD +12 tests (21 total across 5 gates)
* docs(quality): add quality-gates report + implementation plan to repo root
* feat(quality): Fase 3a — file-size ratchet (freeze 91 files >800 LOC, cap 800 for new)
- check-file-size.mjs: frozen files can only shrink; new files must be <= cap (kills the next 12k-line god-component)
- file-size-baseline.json: 91 files frozen at current LOC (largest 12883)
- wired into CI lint job; TDD 5 tests; --update ratchets the baseline down on shrink
* feat(quality): Fase 3b — duplication ratchet (jscpd@4, baseline 5.72%)
- check-duplication.mjs: runs jscpd@4 (pinned; v5 is an incompatible Rust rewrite) over src+open-sse, fails if duplication % rises vs frozen baseline (5.72%, measured: 1358 clones / 22967 dup lines). Targets the executor copy-paste (48/50 override execute() wholesale)
- wired into the parallel quality-gate CI job (off the lint critical path); TDD 4 tests; --update ratchets down
- snapshot now complete: coverage ~82.6%, eslint 3482 (98.5% no-explicit-any), duplication 5.72%, 91 files >800 LOC
* feat(quality): Fase 4a — anti test-masking gate
- check-test-masking.mjs: for each MODIFIED test file in a PR, flags net assert removal + new assert.ok(true) tautologies (base...HEAD diff). Directly enforces CLAUDE.md 'never weaken asserts to go green'
- wired into pr-test-policy CI job (reuses base fetch); no-op outside PR; TDD 5 tests
* feat(quality): Fase 4b — coverage ratchet (conservative floors, CI consumes merged coverage)
- quality-baseline.json: coverage.{statements,lines,functions,branches} floors (80/80/82/73, real ~82.58/82.58/84.23/75.22 with margin; tighten via --update after a green main run)
- check-quality-ratchet.mjs: --allow-missing (local quality:gate skips coverage.* without a coverage run; CI runs strict)
- ci.yml quality-gate job: needs test-coverage + downloads merged coverage-report so the ratchet enforces 'coverage cannot drop'
- TDD +1 test (6 total)
* feat(quality): Fase 6 — 8 new gates (Rule #11/#12, migrations, known-symbols, route-guard, complexity, docs-symbols, db-rules)
Deterministic gates, each freezing pre-existing violations in a documented allowlist (ratchet) so they pass now and block only NEW regressions:
- check-error-helper (Rule #12 ): 7 executors/handlers forwarding raw err.message frozen
- check-public-creds (Rule #11 ): 5 literal client_ids (Claude/Codex/Qwen/Kimi/Copilot) frozen
- check-migration-numbering: gaps 026/055 + dup 041 frozen (prevents the git-rm-deleted-migration incident)
- check-known-symbols: 93 executors conformance + 15 combo strategies + 18 translator pairs
- check-route-guard-membership (#15/#17): all 25 spawn-capable routes verified local-only (0 gaps)
- check-complexity: cyclomatic>15 / fn-length>80 ratchet (baseline 1739)
- check-docs-symbols: 30 stale doc /api refs frozen (docs hallucination)
- check-db-rules (#2/#5): 25 unexported db modules + 15 raw-SQL routes frozen
Wired into CI (lint / docs-sync-strict / quality-gate jobs). 115 TDD tests, all green. ESLint ratchet held at 3482.
* docs(quality): Phase 7 plan (security/dead-code/mutation/community tooling) — GATED to 2026-06-16
Stored, not active. 7 suggested gates + all discussed OSS/Community tools (SonarQube Community + osv-scanner + CodeQL + knip + sonarjs + type-coverage + lockfile-lint + Stryker + size-limit + axe-core + semcheck + agent-lsp + Qlty). Activation gate: do not start before 2026-06-16 (use Phases 0-6 in production for 1 week, validate in practice, then evolve).
* docs(quality): Phase 6A critical-audit plan + Phase 7 additions — gated to 2026-06-16 (#3530 )
PLANO-QUALITY-GATES-FASE6A.md (12-task audit of Phases 0-6: orphan tests, stale-allowlist enforcement, scope gaps) + Phase 7 additions (gitleaks, actionlint+zizmor, license compliance). Both stored, activation gated to 2026-06-16. Tasks 6A.1/6A.2 were fast-tracked separately (#3536 ).
* feat(quality): 6A.1+6A.2 — test-discovery gate, 135 orphan tests re-wired, 2 production bug fixes, vitest in CI (#3536 )
check-test-discovery gate (TDD; 195 orphans found, 135 re-wired into the node runner, 60 frozen+annotated). Triage fixed 2 real production bugs: missing BYPASS_PREFIX_NOT_ALLOWED zod refine (spawn-capable prefixes accepted into the bypass list, Hard Rules #15/#17) and resetDbInstance not firing stateReset resetters (stale schema memo → 503 instead of 403; also hit backup-restore). New test-vitest CI job: test:vitest blocking (146/146), test:vitest:ui informational (14 pre-existing fails, triage 2026-06-16).
* chore: ignore generated yt-downloader artifact files
Add dated yt-downloader output files to .gitignore to prevent
local automation artifacts from being accidentally committed.
* chore(quality): green-light the quality-gate — conscious file-size + eslintWarnings re-baselines (#3538 )
file-size: 9 files frozen at current sizes (v3.8.18-era growth + core.ts +7 from #3536 fix). eslintWarnings 3482→3501: the published v3.8.18 tag already measures 3501 (delta predates the quality-gate job); v3.8.19 cycle is neutral. Reduction + --require-tighten = Phase 6A (2026-06-16).
* fix(check): exclude internal planning docs (docs/superpowers/) from the docs-symbols gate
docs/superpowers/plans/*.md are historical implementation-plan snapshots that
may cite planned/abandoned routes — not claims about the current code. Three
such refs entered during the v3.8.18 cycle, before this gate was on the
pipeline, and would have blocked the v3.8.19 release merge.
* chore(release): v3.8.19 — 2026-06-09
CHANGELOG section for the quality-infrastructure release (7 commits, 1:1
coverage), [3.8.18] label corrected to its real release date, local prompt
artifacts ignored.
* test: hermetic auth context for 2 re-wired suites + real headroom on the breaker reset-timeout flake
CI shards exposed what the dev DATA_DIR was masking locally: detect.test.ts
and managementCliToken.test.ts asserted 401/403/reject outcomes that only
exist when login protection is configured — on a fresh CI DB isAuthRequired()
is false and the policy anonymous-allows. Both now create an isolated
DATA_DIR with requireLogin+password (the established pattern).
observability-fase04: the breaker reset-timeout test ran with a 5ms margin
(resetTimeout 10 / sleep 15) — lazy HALF_OPEN refresh under shard contention
flipped the first OPEN assert. Now 250/300ms.
* test: align bypass-prefix schema test to the restored layer-1 contract + real waitFor headroom
appearance-widget-settings-schema asserted that /api/cli-tools/runtime/ was
ACCEPTED into the bypass list — written against the buggy schema (missing
BYPASS_PREFIX_NOT_ALLOWED refine, restored in #3536 ) and consecrating the
bug the AC-8 orphan test guards against. Split into accept-safe +
reject-spawn-capable cases. chatcore waitFor ceiling 1500→10000ms (green
runs return immediately; observed 1580ms expiry on 2-core CI runners).
* test(chatcore): fix structurally-broken pending-detail predicate (flatten before find)
pendingRequests.details[connectionId] is Record<modelKey, PendingRequestDetail[]>
— the upstream-timeout test's waitFor tested each ARRAY's .providerRequest
(always undefined), so it could never resolve and expired (failed on 3 CI jobs;
reproduced deterministically isolated, including at the published v3.8.18 tag).
Flatten to the actual details + declare the call_log_pipeline_enabled dependency
explicitly + waitFor ceiling with real CI headroom.
* chore(quality): re-baseline coverage floors to the honest post-re-wire denominator + changelog coverage for the stabilization commits
The 135 re-wired tests import modules that were never loaded before, so the
c8 denominator grew: the old ~82.5% was inflated by never-imported modules
being invisible. CI merged coverage now measures 78.4/78.4/83.84/75.73 —
floors set ~2pt below (76.5/76.5; functions/branches floors already hold).
Tightening via --require-tighten is Phase 6A work (2026-06-16).
2026-06-09 22:57:12 -03:00
..
2026-05-23 01:46:59 -03:00
2026-06-09 22:57:12 -03:00
2026-04-28 02:41:19 -03:00
2026-06-09 22:57:12 -03:00
2026-06-03 06:36:47 -03:00
2026-06-05 00:48:28 -03:00
2026-05-26 23:51:47 -03:00
2026-06-08 18:50:21 -03:00
2026-06-09 22:57:12 -03:00
2026-04-28 02:41:19 -03:00
2026-06-01 14:30:17 -03:00
2026-06-03 06:45:04 -03:00
2026-05-21 01:29:12 -03:00
2026-06-09 22:57:12 -03:00
2026-05-19 03:33:58 -03:00
2026-05-20 02:05:50 -03:00
2026-06-08 00:51:29 -03:00
2026-06-09 22:57:12 -03:00
2026-05-14 21:24:05 -03:00
2026-05-15 00:05:49 -03:00
2026-05-29 12:44:29 -03:00
2026-05-31 18:06:18 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-06-07 07:20:02 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 14:08:50 -03:00
2026-04-23 14:02:45 +09:00
2026-05-18 09:11:32 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 20:41:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-24 13:20:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-19 19:50:30 -03:00
2026-06-09 15:56:24 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 02:10:34 -03:00
2026-06-06 19:13:11 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:13:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-05-29 12:44:29 -03:00
2026-06-05 14:20:05 -03:00
2026-05-29 12:44:29 -03:00
2026-06-05 13:12:40 -03:00
2026-05-10 00:55:06 -03:00
2026-05-21 01:29:12 -03:00
2026-04-16 05:26:17 -03:00
2026-05-22 15:09:07 -03:00
2026-05-23 01:46:59 -03:00
2026-06-04 20:05:38 -03:00
2026-06-06 19:13:11 -03:00
2026-05-14 05:11:24 -03:00
2026-04-30 01:27:03 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 19:13:11 -03:00
2026-06-05 01:14:49 -03:00
2026-04-19 19:50:30 -03:00
2026-05-26 23:51:47 -03:00
2026-05-11 21:14:25 -03:00
2026-04-27 20:00:10 -03:00
2026-05-20 09:12:49 -03:00
2026-05-29 13:20:08 -03:00
2026-05-30 21:18:50 -03:00
2026-05-24 18:05:58 -03:00
2026-06-04 20:05:38 -03:00
2026-06-02 07:06:00 -03:00
2026-05-29 13:20:08 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 15:43:55 -03:00
2026-06-02 07:40:08 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 15:43:55 -03:00
2026-06-09 22:57:12 -03:00
2026-05-10 10:26:22 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-05 00:47:35 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-06-06 19:13:11 -03:00
2026-04-21 21:12:29 -03:00
2026-06-02 03:29:10 -03:00
2026-06-03 18:29:26 -03:00
2026-06-07 12:16:33 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-06-08 19:08:17 -03:00
2026-05-18 09:08:52 -03:00
2026-05-13 16:46:20 -03:00
2026-05-13 16:46:20 -03:00
2026-05-21 01:29:12 -03:00
2026-05-16 12:06:12 -03:00
2026-05-11 01:45:56 +07:00
2026-04-22 01:39:49 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 19:54:00 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-04-21 04:13:28 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-16 00:27:20 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-06-04 20:05:38 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-04-23 01:53:00 -03:00
2026-06-01 14:30:17 -03:00
2026-04-28 02:41:19 -03:00
2026-04-17 17:02:00 -03:00
2026-05-14 13:00:15 -03:00
2026-05-29 12:44:29 -03:00
2026-04-28 02:41:19 -03:00
2026-06-04 20:05:38 -03:00
2026-06-09 15:56:24 -03:00
2026-05-21 01:29:12 -03:00
2026-06-08 23:34:07 -03:00
2026-06-07 07:20:02 -03:00
2026-06-09 15:56:24 -03:00
2026-05-29 13:20:08 -03:00
2026-06-03 16:06:59 -03:00
2026-05-24 18:05:58 -03:00
2026-05-03 16:17:38 -03:00
2026-06-08 01:24:27 -03:00
2026-05-17 11:30:49 -03:00
2026-04-21 21:12:29 -03:00
2026-05-16 21:50:59 -03:00
2026-06-03 06:55:28 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 13:21:36 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 13:21:36 -03:00
2026-06-03 23:51:21 -03:00
2026-05-16 17:39:47 -03:00
2026-06-01 14:52:50 -03:00
2026-04-21 21:12:29 -03:00
2026-05-29 12:44:29 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:52:50 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:52:50 -03:00
2026-05-04 16:45:24 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-27 03:53:05 +07:00
2026-06-01 14:30:17 -03:00
2026-06-01 21:12:37 -03:00
2026-06-01 14:30:17 -03:00
2026-05-14 20:17:04 -03:00
2026-06-09 22:57:12 -03:00
2026-05-29 13:21:36 -03:00
2026-05-06 01:21:31 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-05-13 16:02:44 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 15:56:24 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-09 22:57:12 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 04:16:51 -03:00
2026-05-10 18:33:20 -03:00
2026-06-03 18:29:59 -03:00
2026-06-08 20:59:38 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 20:46:25 -03:00
2026-04-18 10:49:34 -03:00
2026-04-21 21:12:29 -03:00
2026-05-29 12:44:29 -03:00
2026-05-24 18:05:58 -03:00
2026-04-16 05:26:17 -03:00
2026-05-16 00:25:04 -03:00
2026-04-22 12:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-05-18 08:34:00 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 10:38:13 -03:00
2026-05-30 21:18:29 -03:00
2026-06-05 16:48:13 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 12:51:07 -03:00
2026-05-18 08:34:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-15 00:28:36 -03:00
2026-05-15 03:00:52 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 23:41:02 -03:00
2026-05-15 02:47:49 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:36:51 -03:00
2026-05-15 00:52:15 -03:00
2026-05-10 00:55:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:00:52 -03:00
2026-05-15 04:44:07 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 21:42:57 -03:00
2026-05-15 09:48:30 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:52:13 -03:00
2026-05-14 23:11:30 -03:00
2026-05-15 13:14:14 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-17 17:02:00 -03:00
2026-05-29 12:44:29 -03:00
2026-04-24 15:44:59 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 02:47:49 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 04:58:40 -03:00
2026-05-15 02:47:49 -03:00
2026-05-29 12:44:29 -03:00
2026-05-14 23:54:49 -03:00
2026-05-15 05:11:18 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 00:18:53 -03:00
2026-05-14 22:09:53 -03:00
2026-05-14 22:38:59 -03:00
2026-05-26 23:51:47 -03:00
2026-05-20 02:05:50 -03:00
2026-05-15 04:51:23 -03:00
2026-05-26 23:51:47 -03:00
2026-06-07 07:20:02 -03:00
2026-06-07 07:20:02 -03:00
2026-05-15 03:46:26 -03:00
2026-06-03 18:12:30 -03:00
2026-05-14 23:11:30 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 02:47:49 -03:00
2026-05-14 22:38:59 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:00:52 -03:00
2026-06-03 21:08:01 -03:00
2026-06-03 21:08:01 -03:00
2026-05-15 00:36:41 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 02:47:49 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-04-26 14:26:34 -03:00
2026-04-26 14:26:34 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-24 18:05:58 -03:00
2026-05-15 04:36:21 -03:00
2026-06-06 19:13:11 -03:00
2026-05-15 03:13:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-30 21:18:29 -03:00
2026-05-29 12:44:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-13 03:47:40 -03:00
2026-05-29 12:44:29 -03:00
2026-05-13 03:47:40 -03:00
2026-04-21 21:12:29 -03:00
2026-05-02 04:51:38 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-04-27 00:37:15 -03:00
2026-05-26 23:51:47 -03:00
2026-06-05 12:06:35 -03:00
2026-06-05 12:06:35 -03:00
2026-05-18 09:12:36 -03:00
2026-05-04 19:23:27 -03:00
2026-05-27 09:48:17 -03:00
2026-06-05 12:06:35 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-17 14:04:48 -03:00
2026-06-06 00:26:40 -03:00
2026-06-09 15:56:24 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-03 00:41:10 -03:00
2026-05-26 23:51:47 -03:00
2026-06-03 18:12:34 -03:00
2026-05-17 13:32:29 -03:00
2026-05-17 14:04:48 -03:00
2026-05-17 16:52:43 -03:00
2026-05-17 16:52:43 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 19:13:11 -03:00
2026-05-17 22:58:42 -03:00
2026-04-24 09:04:10 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-05-29 19:54:00 -03:00
2026-05-10 00:55:06 -03:00
2026-06-08 00:55:42 -03:00
2026-05-20 02:05:50 -03:00
2026-05-26 23:51:47 -03:00
2026-05-20 02:05:50 -03:00
2026-06-06 19:13:11 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-06-06 00:39:57 -03:00
2026-06-05 21:21:40 -03:00
2026-06-09 15:56:24 -03:00
2026-06-09 15:56:24 -03:00
2026-05-18 09:10:35 -03:00
2026-06-01 14:30:17 -03:00
2026-05-17 22:58:42 -03:00
2026-06-08 19:10:40 -03:00
2026-06-05 02:50:32 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 16:51:44 -03:00
2026-05-18 10:56:27 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-06-01 14:30:17 -03:00
2026-05-12 19:57:35 -03:00
2026-06-08 23:35:08 -03:00
2026-06-06 19:13:11 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 13:21:36 -03:00
2026-05-04 01:34:41 -03:00
2026-04-28 20:46:25 -03:00
2026-04-17 09:00:32 -03:00
2026-06-04 20:05:38 -03:00
2026-05-29 12:44:29 -03:00
2026-05-12 15:05:00 -03:00
2026-04-21 21:12:29 -03:00
2026-05-29 12:44:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-19 00:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-06-05 10:20:38 -03:00
2026-04-25 17:08:44 -03:00
2026-04-25 23:51:18 -03:00
2026-04-25 23:51:18 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-06-03 18:24:41 -03:00
2026-06-03 18:24:41 -03:00
2026-05-10 00:55:06 -03:00
2026-06-03 18:24:41 -03:00
2026-06-03 18:24:41 -03:00
2026-06-03 18:24:41 -03:00
2026-05-10 13:33:55 -03:00
2026-06-03 18:24:41 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-07 07:20:02 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 19:54:00 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:30:17 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:30:17 -03:00
2026-05-02 01:48:58 -03:00
2026-04-21 21:12:29 -03:00
2026-06-06 02:15:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-05-01 08:35:52 -03:00
2026-06-01 14:30:17 -03:00
2026-05-21 01:29:12 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-06-05 09:23:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-06 02:15:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-05-10 00:55:06 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-17 19:54:32 -03:00
2026-05-14 23:41:02 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-09 22:57:12 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-05 01:14:49 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 00:55:06 -03:00
2026-06-03 18:29:26 -03:00
2026-06-03 18:29:26 -03:00
2026-06-04 20:05:38 -03:00
2026-06-03 18:29:26 -03:00
2026-06-06 19:13:11 -03:00
2026-05-24 18:05:58 -03:00
2026-04-28 13:59:03 -03:00
2026-06-01 14:30:17 -03:00
2026-06-05 02:50:57 -03:00
2026-05-29 12:44:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-01 00:12:33 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-06-07 07:20:02 -03:00
2026-05-23 01:46:59 -03:00
2026-06-06 21:42:30 -03:00
2026-06-03 22:12:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-07 07:20:02 -03:00
2026-05-13 10:14:25 -03:00
2026-06-06 02:07:06 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 02:07:06 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-06-09 15:56:24 -03:00
2026-06-06 19:13:11 -03:00
2026-04-21 21:12:29 -03:00
2026-05-06 01:21:31 -03:00
2026-05-27 06:22:15 -03:00
2026-05-27 06:22:15 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 14:08:50 -03:00
2026-04-22 12:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-30 21:18:12 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 14:08:50 -03:00
2026-05-30 21:18:12 -03:00
2026-05-30 21:18:12 -03:00
2026-06-01 14:52:50 -03:00
2026-05-30 21:18:04 -03:00
2026-06-03 18:29:59 -03:00
2026-05-14 05:53:26 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:52:50 -03:00
2026-05-23 01:46:59 -03:00
2026-06-03 18:12:54 -03:00
2026-06-08 18:41:52 -03:00
2026-06-01 14:52:50 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 23:40:22 -03:00
2026-05-29 12:44:29 -03:00
2026-05-29 12:44:29 -03:00
2026-04-24 07:00:21 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-05 11:48:03 -03:00
2026-04-27 01:45:36 -03:00
2026-05-23 01:46:59 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 23:40:22 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-05-10 00:55:06 -03:00
2026-06-07 07:20:02 -03:00
2026-06-08 23:58:28 -03:00
2026-06-07 07:20:02 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 00:55:06 -03:00
2026-05-24 18:05:58 -03:00
2026-06-04 20:05:38 -03:00
2026-05-10 15:29:17 -03:00
2026-05-18 19:18:49 -03:00
2026-04-21 21:12:29 -03:00
2026-06-06 02:38:35 -03:00
2026-06-06 02:38:35 -03:00
2026-06-06 02:38:35 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 02:38:35 -03:00
2026-06-06 02:38:35 -03:00
2026-06-06 02:38:35 -03:00
2026-06-08 18:43:30 -03:00
2026-06-01 14:30:17 -03:00
2026-05-18 03:01:51 -03:00
2026-06-07 07:20:02 -03:00
2026-05-29 19:54:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-29 12:44:29 -03:00
2026-06-04 20:05:38 -03:00
2026-05-17 05:24:11 +07:00
2026-05-16 21:47:40 -03:00
2026-06-03 22:12:17 -03:00
2026-06-06 00:20:51 -03:00
2026-06-01 14:52:50 -03:00
2026-05-23 01:46:59 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:31:42 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 21:12:37 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 19:36:48 -03:00
2026-06-05 15:38:06 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 02:52:44 -03:00
2026-06-05 16:48:13 -03:00
2026-06-03 18:19:49 -03:00
2026-05-23 01:46:59 -03:00
2026-05-04 19:23:27 -03:00
2026-06-05 09:37:32 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 17:51:22 -03:00
2026-05-24 18:05:58 -03:00
2026-05-03 16:12:52 -03:00
2026-06-03 12:08:43 -03:00
2026-06-08 00:47:34 -03:00
2026-05-10 00:55:06 -03:00
2026-06-07 07:20:02 -03:00
2026-05-20 02:05:50 -03:00
2026-06-07 12:16:33 -03:00
2026-05-23 01:46:59 -03:00
2026-06-08 10:41:00 -03:00
2026-06-05 02:51:01 -03:00
2026-06-05 02:44:38 -03:00
2026-06-09 01:51:51 -03:00
2026-05-14 00:10:05 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-05-14 20:20:54 -03:00
2026-05-14 20:52:08 +08:00
2026-05-29 12:44:29 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 02:10:34 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-25 11:16:54 -03:00
2026-04-28 02:16:16 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-02 01:48:58 -03:00
2026-06-03 00:41:10 -03:00
2026-06-04 20:05:38 -03:00
2026-06-07 07:20:02 -03:00
2026-06-08 02:09:20 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 02:05:44 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 20:48:03 -03:00
2026-05-23 01:46:59 -03:00
2026-06-05 15:38:06 -03:00
2026-04-30 01:27:03 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 03:47:40 -03:00
2026-05-11 21:38:26 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-04-17 11:56:52 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-25 11:03:31 -03:00
2026-05-26 23:51:47 -03:00
2026-04-28 02:41:19 -03:00
2026-05-23 01:46:59 -03:00
2026-06-06 19:13:11 -03:00
2026-06-08 23:58:28 -03:00
2026-05-29 12:44:29 -03:00
2026-04-28 02:41:19 -03:00
2026-05-05 09:08:18 -03:00
2026-04-28 02:41:19 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 00:55:06 -03:00
2026-05-02 04:51:38 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 10:14:25 -03:00
2026-05-18 23:49:51 +07:00
2026-06-02 13:44:25 -03:00
2026-05-26 23:51:47 -03:00
2026-06-06 21:15:43 -03:00
2026-06-08 22:53:22 -03:00
2026-05-06 01:21:31 -03:00
2026-05-20 09:12:49 -03:00
2026-05-30 21:17:56 -03:00
2026-05-30 21:17:56 -03:00
2026-06-07 07:20:02 -03:00
2026-06-06 00:26:40 -03:00
2026-06-05 11:52:27 -03:00
2026-06-05 10:17:40 -03:00
2026-04-30 01:27:03 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-05 02:41:42 -03:00
2026-05-31 18:06:17 -03:00
2026-06-09 22:57:12 -03:00
2026-04-16 05:26:17 -03:00
2026-06-03 06:45:04 -03:00
2026-06-03 06:45:04 -03:00
2026-06-03 06:45:04 -03:00
2026-06-03 06:45:04 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 02:38:35 -03:00
2026-04-17 09:00:32 -03:00
2026-05-06 01:21:31 -03:00
2026-06-03 18:29:31 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-04-25 16:45:59 -03:00
2026-05-29 12:44:29 -03:00
2026-05-29 12:44:29 -03:00
2026-06-03 07:48:19 -03:00
2026-05-29 12:44:29 -03:00
2026-06-08 18:50:21 -03:00
2026-06-05 02:50:51 -03:00
2026-04-28 10:03:39 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-03 22:12:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 19:54:00 -03:00
2026-06-01 14:30:17 -03:00
2026-05-10 20:48:03 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 23:13:19 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 23:13:19 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-17 19:38:25 -03:00
2026-06-01 14:30:17 -03:00
2026-06-09 15:56:24 -03:00
2026-06-03 07:56:16 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-06 04:27:00 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 16:20:11 -03:00
2026-05-29 20:31:56 -04:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-05-29 19:54:00 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-09 15:56:24 -03:00
2026-04-16 05:26:17 -03:00
2026-05-20 02:05:50 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 10:03:39 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-06-04 20:05:38 -03:00
2026-04-23 16:57:43 -03:00
2026-05-23 01:46:59 -03:00
2026-06-03 07:52:10 -03:00
2026-05-14 20:19:55 -03:00
2026-06-07 07:20:02 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-07 12:16:33 -03:00
2026-05-21 01:29:12 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 18:33:20 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-06-01 19:47:31 -03:00
2026-06-02 09:53:50 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-04-21 21:12:29 -03:00
2026-06-06 19:13:11 -03:00
2026-06-08 00:49:12 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 05:14:23 -03:00
2026-06-06 19:13:11 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-05-18 10:55:33 -03:00
2026-06-07 07:20:02 -03:00
2026-06-09 15:56:24 -03:00
2026-05-13 03:47:40 -03:00
2026-05-12 19:57:15 -03:00
2026-05-01 16:11:13 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-04-24 07:00:21 -03:00
2026-05-19 09:48:16 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-06-02 02:10:34 -03:00
2026-06-08 23:35:08 -03:00
2026-06-06 21:20:26 -03:00
2026-06-06 02:33:17 -03:00
2026-05-17 11:30:49 -03:00
2026-05-24 18:05:58 -03:00
2026-06-06 19:13:11 -03:00
2026-06-02 00:23:51 -03:00
2026-05-19 04:04:26 -03:00
2026-05-01 09:53:51 -03:00
2026-06-07 07:20:02 -03:00
2026-06-02 00:23:51 -03:00
2026-06-05 01:57:40 -03:00
2026-06-07 07:20:02 -03:00
2026-05-29 12:44:29 -03:00
2026-06-09 22:57:12 -03:00
2026-06-07 07:20:02 -03:00
2026-05-29 19:54:00 -03:00
2026-05-13 03:47:40 -03:00
2026-05-14 10:38:13 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 03:11:58 -03:00
2026-05-24 18:05:58 -03:00
2026-05-14 10:38:13 -03:00
2026-05-23 01:46:59 -03:00
2026-06-09 22:57:12 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 22:39:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 20:29:41 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-24 18:05:58 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-02 22:39:13 -03:00
2026-06-02 17:46:48 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-28 02:41:19 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-14 20:19:55 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 05:17:20 -03:00
2026-06-02 02:10:34 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 03:41:03 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 20:29:41 -03:00
2026-06-04 20:05:38 -03:00
2026-04-28 02:41:19 -03:00
2026-06-09 15:56:24 -03:00
2026-04-30 15:48:50 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-30 21:18:12 -03:00
2026-05-29 13:21:36 -03:00
2026-06-08 19:04:36 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-30 21:18:12 -03:00
2026-06-07 07:20:02 -03:00
2026-04-28 20:46:25 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-27 02:25:46 -03:00
2026-04-17 16:59:18 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-18 11:44:20 -03:00
2026-05-14 05:11:24 -03:00
2026-06-09 15:56:24 -03:00
2026-06-03 18:35:09 -03:00
2026-06-08 18:41:33 -03:00
2026-05-14 20:19:55 -03:00
2026-05-10 18:33:20 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-05 14:16:10 -03:00
2026-06-08 23:35:08 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-06-02 06:02:49 -03:00
2026-05-13 10:14:25 -03:00
2026-06-07 07:20:02 -03:00
2026-05-24 18:05:58 -03:00
2026-06-01 14:30:17 -03:00
2026-05-16 10:13:08 -03:00
2026-06-01 19:47:46 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 19:13:11 -03:00
2026-05-29 12:44:29 -03:00
2026-05-13 10:14:25 -03:00
2026-06-01 14:30:17 -03:00
2026-05-13 10:14:25 -03:00
2026-05-13 10:14:25 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-05-29 12:44:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 05:42:22 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 06:19:02 -03:00
2026-05-14 05:42:22 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-08 09:07:50 -03:00
2026-05-29 13:21:36 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 01:25:38 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-05-26 23:51:47 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-06 06:14:57 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-05-21 01:29:12 -03:00
2026-04-21 21:12:29 -03:00
2026-06-03 07:19:38 -03:00
2026-04-26 03:03:52 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:30:17 -03:00
2026-04-21 21:12:29 -03:00
2026-06-06 19:13:11 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 05:42:22 -03:00
2026-06-09 15:56:24 -03:00
2026-05-10 09:44:11 -03:00
2026-04-26 03:03:52 -03:00
2026-06-01 14:30:17 -03:00
2026-05-29 13:21:36 -03:00
2026-06-09 15:56:24 -03:00
2026-06-08 18:41:33 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 14:30:17 -03:00
2026-05-16 12:12:53 -03:00
2026-05-23 01:46:59 -03:00
2026-04-25 07:46:33 -03:00
2026-05-26 23:51:47 -03:00
2026-06-09 15:56:24 -03:00
2026-05-04 00:11:25 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 02:17:52 -03:00
2026-04-17 17:02:00 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-06-05 15:38:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 06:14:57 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:52:50 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-27 01:09:23 -03:00
2026-06-06 19:13:11 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-07 07:20:02 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-05-23 01:46:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-22 12:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-06-08 02:14:08 -03:00
2026-06-06 19:13:11 -03:00
2026-06-09 15:56:24 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 02:48:38 -03:00
2026-05-12 19:44:45 -03:00
2026-04-21 04:13:28 -03:00
2026-06-07 07:20:02 -03:00
2026-05-29 13:20:13 -03:00
2026-06-04 20:05:38 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-06-06 19:13:11 -03:00
2026-06-04 20:05:38 -03:00
2026-05-10 00:55:06 -03:00
2026-06-09 01:51:51 -03:00
2026-06-03 18:29:31 -03:00
2026-04-16 05:26:17 -03:00
2026-05-18 09:18:25 -03:00
2026-06-05 10:14:06 -03:00
2026-05-31 18:06:17 -03:00
2026-05-29 13:21:36 -03:00
2026-04-21 21:12:29 -03:00
2026-05-13 13:18:27 +00:00
2026-06-07 08:12:33 -03:00
2026-06-03 18:29:31 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-06-08 10:41:00 -03:00
2026-05-29 12:44:29 -03:00
2026-06-03 18:24:41 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 11:41:27 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-08 18:50:53 -03:00
2026-04-16 05:26:17 -03:00
2026-05-30 21:18:46 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-23 16:57:43 -03:00
2026-05-30 21:18:46 -03:00
2026-06-07 07:20:02 -03:00
2026-06-03 18:58:01 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-15 20:23:53 +01:00
2026-04-27 20:00:10 -03:00
2026-06-08 18:42:12 -03:00
2026-06-09 15:56:24 -03:00
2026-05-17 21:11:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 19:13:11 -03:00
2026-06-08 01:23:37 -03:00
2026-06-01 19:36:48 -03:00
2026-05-24 18:05:58 -03:00
2026-05-16 10:14:06 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-18 08:35:34 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-06-08 20:54:20 -03:00
2026-05-10 00:55:06 -03:00
2026-06-08 19:10:40 -03:00
2026-05-23 01:46:59 -03:00
2026-04-22 01:39:49 -03:00
2026-04-28 02:41:19 -03:00
2026-06-06 19:13:11 -03:00
2026-06-03 07:39:02 -03:00
2026-06-01 14:30:17 -03:00
2026-05-24 18:05:58 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-07 12:16:33 -03:00
2026-06-08 00:48:01 -03:00
2026-06-04 20:05:38 -03:00
2026-06-06 02:44:44 -03:00
2026-06-06 00:22:27 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-06 03:08:16 -03:00
2026-06-06 02:59:09 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-05-24 18:05:58 -03:00
2026-06-03 00:41:11 -03:00
2026-05-20 02:05:50 -03:00
2026-04-24 07:48:19 -03:00
2026-06-08 18:42:50 -03:00