Sergio and Claude Opus 5
29897ab2ba
gtk4: el --export-dynamic venia del .pc de gmodule, y estatico destapo un bug de upstream
...
Los 8 ejecutables decian static y enlazaban musl dinamicamente. La huella que lo
delata sin mirar el build: `readelf --dyn-syms` daba 21475 entradas contra ~2700
de un binario dinamico normal — eso es --export-dynamic, no un enlace corriente.
NO venia del meson de gtk (ahi no aparece la palabra) sino de un .pc DE
DEPENDENCIA: `gmodule-2.0.pc` trae literalmente `Libs: -Wl,--export-dynamic`, y
`meson.build:426` pedia `dependency('gmodule-2.0')`. El wrapper de cc del lab
(`sandbox.rs:597`) tira el `-static` ante --export-dynamic ⇒ lo ponia el lab y
lo sacaba el lab, por un flag heredado de una dep.
No hace falta parchear el .pc de glib: upstream ya publica la misma libreria sin
el flag. `gmodule-no-export-2.0.pc` trae el `-lgmodule-2.0 -pthread` de verdad y
los otros dos solo hacen Requires sobre el añadiendo --export-dynamic. Es la
palanca prevista, no un apaño — de hecho `gio-2.0.pc` de la propia glib ya usa
la variante no-export.
REGLA GENERAL: cualquier receta que enlace gmodule hereda --export-dynamic y
pierde el -static SIN AVISO. Si link=static no pega y hay glib de por medio,
mirar los .pc de las deps antes que el build del proyecto.
Y entonces aparecio un bug que SOLO existe en estatico: los 8 morian con SIGSEGV
hasta en `--help`. Backtrace con gdb:
g_module_symbol (module=0x0, symbol_name="gtk_progress_get_type")
_gtk_module_has_mixed_deps (module_to_check=0x0) at gtk/gtkmain.c:474
do_pre_parse_initialization () at gtk/gtkmain.c:498
gtk_init_check () at gtk/gtkmain.c:635
`_gtk_module_has_mixed_deps(NULL)` hace `g_module_open(NULL,0)` y pasa el
resultado a `g_module_symbol` sin comprobarlo. En musl ESTATICO `dlopen(NULL)`
devuelve NULL siempre ⇒ deref de nulo en el offset 8, en el arranque. Con libc
dinamica el bug no se ve nunca. Cuarto parche de la receta: la comprobacion que
falta. Devolver FALSE es correcto ademas de seguro — en un estatico no hay
modulos cargables, asi que no puede haber simbolos de GTK 2/3 mezclados.
Control: 423 ficheros intactos, NEEDED=0 en los ocho, .dynsym de 21475 a 0, los
ocho arrancan, gtk4-path-tool hace trabajo real, y `builder-tool validate`
devuelve EXACTAMENTE el mismo «Could not initialize windowing system» que daba
el binario dinamico anterior.
Cae en cascada el re-hash de 7 dependientes; se reconstruyen a continuacion.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com >
Claude-Session: https://claude.ai/code/session_01ACUcwo9mZsE5ocYVE9npih
2026-08-31 16:11:50 +00:00
..
2026-07-18 16:16:59 -04:00
2026-07-16 23:14:19 -04:00
2026-08-09 01:17:01 -04:00
2026-08-09 01:17:01 -04:00
2026-08-07 13:29:31 -04:00
2026-08-07 13:29:31 -04:00
2026-08-09 01:17:01 -04:00
2026-08-26 18:03:46 +00:00
2026-07-11 00:36:55 -04:00
2026-07-10 23:09:03 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 14:50:10 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 04:53:55 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 20:30:03 +00:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-31 15:28:22 +00:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 21:44:55 +00:00
2026-08-07 13:26:22 -04:00
2026-08-08 00:31:35 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 10:24:11 -04:00
2026-08-08 11:14:37 -04:00
2026-08-08 11:14:37 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 07:52:20 +00:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 08:42:47 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-20 17:00:15 +00:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 10:58:05 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:01:15 -04:00
2026-07-10 23:09:03 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 11:38:03 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-27 11:51:18 +00:00
2026-08-07 13:26:22 -04:00
2026-08-31 14:57:21 +00:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:51:48 -04:00
2026-08-31 15:28:22 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-27 20:47:54 +00:00
2026-07-16 06:30:36 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-26 18:42:11 +00:00
2026-08-08 00:53:26 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-22 18:15:07 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-07-10 23:09:03 -04:00
2026-07-10 23:51:48 -04:00
2026-07-11 00:36:55 -04:00
2026-07-10 23:09:03 -04:00
2026-07-10 23:09:03 -04:00
2026-07-10 23:09:03 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 22:07:19 +00:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-07-22 18:15:07 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 23:33:32 -04:00
2026-08-12 20:48:55 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 03:31:09 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-15 23:27:57 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 16:30:56 +00:00
2026-08-27 17:36:44 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 23:14:19 -04:00
2026-08-31 16:11:50 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-07-11 00:36:55 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 14:50:10 +00:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-31 14:54:58 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 20:48:55 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:29:31 -04:00
2026-08-07 14:06:59 -04:00
2026-08-26 18:42:11 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:29:31 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-21 13:08:49 +00:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 14:06:59 -04:00
2026-08-08 11:14:37 -04:00
2026-08-08 11:14:37 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-07-29 22:36:43 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 15:15:20 -04:00
2026-07-16 13:30:05 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-30 01:36:22 +00:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:29:31 -04:00
2026-08-30 01:36:22 +00:00
2026-08-30 01:36:22 +00:00
2026-08-07 14:06:59 -04:00
2026-08-10 14:08:06 +00:00
2026-08-07 14:01:15 -04:00
2026-07-19 15:28:28 -04:00
2026-08-07 13:26:22 -04:00
2026-07-17 04:50:51 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-28 10:23:15 +00:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-08-10 20:37:49 +00:00
2026-08-07 13:29:31 -04:00
2026-08-07 14:53:20 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:29:31 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 11:10:37 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-19 16:15:21 -04:00
2026-07-10 14:20:46 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-28 12:25:14 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 08:04:03 -04:00
2026-07-22 18:15:07 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 20:36:04 +00:00
2026-08-27 19:56:11 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 13:30:05 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 00:53:26 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:01:15 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-20 17:00:15 +00:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-15 23:27:57 -04:00
2026-08-27 15:26:38 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:29:31 -04:00
2026-08-20 17:00:15 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-17 06:55:39 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 15:08:55 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:53:20 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 15:26:38 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 15:15:20 -04:00
2026-08-07 14:53:20 -04:00
2026-08-28 15:52:58 +00:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 16:07:21 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 06:21:14 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-22 16:49:27 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:09:03 -04:00
2026-07-10 23:09:03 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 13:30:05 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 14:50:10 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-27 19:10:54 +00:00
2026-08-27 19:15:41 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:53:20 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 15:15:20 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 13:26:22 -04:00
2026-07-22 16:49:27 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:53:20 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 19:55:32 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 06:21:14 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:53:20 -04:00
2026-07-10 23:51:48 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 14:06:59 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 21:09:13 +00:00
2026-08-07 13:26:22 -04:00
2026-08-20 17:00:15 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-28 21:33:34 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 06:21:14 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-31 14:54:59 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-07-16 23:14:19 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 13:51:09 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-08-08 00:53:26 -04:00