Linus Torvalds
fdbfee9fc5
Merge tag 'trace-rv-v7.1' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace
...
Pull runtime verification updates from Steven Rostedt:
- Refactor da_monitor header to share handlers across monitor types
No functional changes, only less code duplication.
- Add Hybrid Automata model class
Add a new model class that extends deterministic automata by adding
constraints on transitions and states. Those constraints can take
into account wall-clock time and as such allow RV monitor to make
assertions on real time. Add documentation and code generation
scripts.
- Add stall monitor as hybrid automaton example
Add a monitor that triggers a violation when a task is stalling as an
example of automaton working with real time variables.
- Convert the opid monitor to a hybrid automaton
The opid monitor can be heavily simplified if written as a hybrid
automaton: instead of tracking preempt and interrupt enable/disable
events, it can just run constraints on the preemption/interrupt
states when events like wakeup and need_resched verify.
- Add support for per-object monitors in DA/HA
Allow writing deterministic and hybrid automata monitors for generic
objects (e.g. any struct), by exploiting a hash table where objects
are saved. This allows to track more than just tasks in RV. For
instance it will be used to track deadline entities in deadline
monitors.
- Add deadline tracepoints and move some deadline utilities
Prepare the ground for deadline monitors by defining events and
exporting helpers.
- Add nomiss deadline monitor
Add first example of deadline monitor asserting all entities complete
before their deadline.
- Improve rvgen error handling
Introduce AutomataError exception class and better handle expected
exceptions while showing a backtrace for unexpected ones.
- Improve python code quality in rvgen
Refactor the rvgen generation scripts to align with python best
practices: use f-strings instead of %, use len() instead of
__len__(), remove semicolons, use context managers for file
operations, fix whitespace violations, extract magic strings into
constants, remove unused imports and methods.
- Fix small bugs in rvgen
The generator scripts presented some corner case bugs: logical error
in validating what a correct dot file looks like, fix an isinstance()
check, enforce a dot file has an initial state, fix type annotations
and typos in comments.
- rvgen refactoring
Refactor automata.py to use iterator-based parsing and handle
required arguments directly in argparse.
- Allow epoll in rtapp-sleep monitor
The epoll_wait call is now rt-friendly so it should be allowed in the
sleep monitor as a valid sleep method.
* tag 'trace-rv-v7.1' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: (32 commits)
rv: Allow epoll in rtapp-sleep monitor
rv/rvgen: fix _fill_states() return type annotation
rv/rvgen: fix unbound loop variable warning
rv/rvgen: enforce presence of initial state
rv/rvgen: extract node marker string to class constant
rv/rvgen: fix isinstance check in Variable.expand()
rv/rvgen: make monitor arguments required in rvgen
rv/rvgen: remove unused __get_main_name method
rv/rvgen: remove unused sys import from dot2c
rv/rvgen: refactor automata.py to use iterator-based parsing
rv/rvgen: use class constant for init marker
rv/rvgen: fix DOT file validation logic error
rv/rvgen: fix PEP 8 whitespace violations
rv/rvgen: fix typos in automata and generator docstring and comments
rv/rvgen: use context managers for file operations
rv/rvgen: remove unnecessary semicolons
rv/rvgen: replace __len__() calls with len()
rv/rvgen: replace % string formatting with f-strings
rv/rvgen: remove bare except clauses in generator
rv/rvgen: introduce AutomataError exception class
...
2026-04-15 17:15:18 -07:00
..
2026-01-06 16:34:28 +01:00
2025-11-06 14:19:43 -08:00
2026-02-11 13:44:47 +01:00
2026-01-10 15:19:50 -08:00
2025-10-29 22:04:24 -07:00
2026-02-05 11:58:40 +01:00
2025-10-22 07:54:33 +02:00
2026-02-09 12:29:22 +01:00
2026-01-16 10:42:33 +01:00
2026-01-16 16:33:17 +01:00
2026-04-13 19:03:11 -07:00
2025-12-16 22:23:35 +05:30
2025-10-18 21:31:21 +05:30
2026-04-08 19:38:52 -07:00
2026-04-15 09:20:49 -07:00
2026-01-08 08:15:03 -08:00
2026-03-20 14:18:56 +01:00
2026-04-04 20:41:25 +02:00
2026-03-17 13:57:40 +01:00
2026-04-13 20:10:58 -07:00
2026-01-31 00:02:24 +01:00
2026-03-02 20:52:21 +00:00
2026-01-13 22:43:15 -08:00
2026-02-19 07:26:26 -07:00
2026-02-17 11:00:43 +01:00
2026-04-05 13:53:04 -07:00
2025-11-20 16:29:35 -05:00
2026-01-19 12:57:45 +01:00
2026-04-15 09:20:49 -07:00
2026-04-12 14:34:28 -07:00
2026-04-15 14:15:25 -07:00
2026-01-29 20:21:41 +01:00
2026-03-09 13:44:45 +01:00
2025-11-05 17:38:03 -08:00
2026-04-08 07:51:26 +02:00
2026-03-26 15:22:41 +01:00
2026-01-21 19:46:58 -08:00
2025-12-02 17:03:55 -08:00
2026-01-21 14:11:57 +05:30
2026-03-24 13:50:30 +01:00
2026-04-15 14:37:32 -07:00
2025-11-03 00:02:30 +01:00
2025-11-09 11:24:20 +09:00
2026-02-05 00:07:58 +00:00
2025-11-03 14:38:37 +01:00
2026-04-15 17:15:18 -07:00
2026-03-15 20:36:05 -05:00
2025-12-23 12:12:49 +05:30
2026-04-11 11:53:54 +01:00
2026-04-05 13:53:07 -07:00
2026-04-15 08:32:10 -07:00
2026-01-27 15:31:42 +01:00
2026-04-09 21:40:22 +02:00
2026-01-22 15:07:04 -07:00
2025-12-06 11:13:50 -08:00
2026-01-21 10:52:04 +02:00
2025-12-03 19:45:29 +01:00
2025-12-05 21:29:02 -08:00
2025-12-10 16:07:42 -08:00
2025-10-13 10:34:46 +01:00
2026-03-27 15:32:04 +00:00
2026-01-20 19:44:19 -08:00
2025-12-15 16:32:05 +09:00
2026-03-02 18:55:21 -08:00
2026-01-16 16:46:14 +01:00
2026-01-09 16:37:59 -05:00
2026-04-13 14:56:54 -07:00
2026-03-13 16:46:38 +01:00
2026-02-23 16:09:00 -08:00
2026-03-17 15:18:54 +01:00
2026-02-17 13:25:13 +01:00
2026-04-03 16:53:50 -04:00
2025-10-23 13:21:26 +01:00
2026-01-31 14:22:36 -08:00
2025-11-20 14:03:43 -08:00
2026-03-09 07:47:02 -06:00
2026-04-07 08:22:24 -06:00
2026-01-05 16:43:30 +01:00
2026-01-06 12:14:10 -05:00
2026-04-01 20:03:07 -04:00
2026-04-09 13:28:05 -04:00
2026-02-16 10:21:01 -07:00
2026-01-11 12:55:41 -07:00
2026-03-14 07:44:30 -06:00
2026-01-13 07:23:39 -07:00
2026-01-20 10:12:54 -07:00
2026-04-13 15:51:31 -07:00
2025-10-22 11:14:05 -06:00
2026-04-10 21:22:32 -07:00
2026-02-27 15:39:00 -08:00
2026-01-27 18:39:58 -08:00
2025-11-05 17:31:25 -08:00
2026-04-12 12:37:04 -07:00
2026-04-06 18:37:52 -07:00
2026-04-08 18:09:56 -07:00
2026-04-12 11:33:23 -07:00
2026-03-19 11:38:24 -06:00
2026-03-29 09:56:06 -07:00
2026-01-20 16:15:56 -08:00
2026-03-26 15:03:32 +01:00
2025-11-21 11:21:31 +01:00
2026-03-10 16:01:48 -07:00
2026-02-05 14:10:00 -08:00
2026-04-04 08:10:37 -06:00
2025-11-21 18:42:01 +00:00
2026-01-31 16:16:07 -08:00
2025-11-25 09:17:13 +01:00
2026-04-15 10:54:24 -07:00
2026-03-05 18:15:58 -10:00
2026-03-16 13:16:49 +01:00
2026-02-15 08:18:57 -08:00
2026-04-11 07:58:33 +02:00
2026-04-14 10:53:44 -07:00
2026-02-12 11:32:37 -08:00
2026-03-31 14:41:56 -07:00
2026-01-31 16:16:04 -08:00
2026-03-08 11:06:52 +01:00
2026-03-24 15:08:05 +01:00
2025-11-27 12:03:27 +01:00
2026-04-15 08:37:45 -07:00
2026-02-14 11:09:47 +01:00
2025-10-28 17:32:56 +01:00
2026-02-20 14:38:25 +01:00
2025-12-22 15:30:54 +00:00
2025-11-11 21:47:57 +00:00
2026-03-23 13:33:51 -04:00
2026-01-14 17:04:21 +01:00
2026-04-04 18:40:58 -06:00
2026-04-04 20:55:56 +02:00
2026-03-22 11:17:59 +09:00
2026-02-03 15:23:33 +01:00
2026-04-07 15:32:20 +02:00
2025-12-06 09:01:27 -08:00
2026-02-18 20:50:32 -08:00
2026-02-21 17:09:51 -08:00
2025-11-12 10:00:15 -08:00
2026-03-02 17:08:05 -05:00
2026-04-05 13:53:28 -07:00
2026-04-05 13:53:19 -07:00
2026-04-10 11:25:34 -05:00
2026-01-05 16:43:32 +01:00
2025-11-14 20:34:50 +01:00
2026-01-31 16:16:06 -08:00
2025-11-24 00:02:01 +09:00
2026-01-14 16:50:36 +01:00
2026-03-27 22:19:17 +01:00
2026-03-22 23:13:33 +01:00
2026-01-19 10:13:29 -07:00
2026-02-23 19:51:40 +01:00
2026-02-23 16:14:20 +01:00
2026-02-23 16:14:21 +01:00
2026-04-08 15:27:47 +02:00
2026-01-19 19:08:47 +05:30
2026-02-13 14:51:39 -08:00
2026-03-25 08:01:21 +01:00
2026-04-01 20:54:16 +02:00
2026-04-03 16:48:01 -07:00
2026-04-06 20:21:37 -06:00
2025-11-12 10:00:16 -08:00
2026-03-31 19:15:21 +02:00
2026-01-16 16:35:37 +01:00
2025-12-16 14:40:51 +01:00
2025-11-19 14:08:51 +01:00
2025-10-22 07:55:00 +02:00
2025-10-14 14:45:22 -07:00
2026-03-18 09:06:49 +01:00
2026-04-14 16:48:56 -07:00
2025-11-13 16:27:56 +01:00
2025-11-01 12:44:49 -05:00
2026-03-16 19:29:45 -07:00
2026-03-23 17:59:54 -07:00
2026-03-07 15:03:14 -08:00
2026-03-31 23:42:52 +00:00
2026-01-29 17:26:30 +01:00
2026-01-17 00:00:34 +00:00
2025-11-13 17:10:38 +01:00
2026-03-09 15:47:20 +01:00
2025-10-28 22:59:19 +01:00
2025-12-13 20:04:32 +12:00
2026-01-29 16:00:57 +01:00
2026-02-09 15:13:05 -08:00
2026-04-14 18:36:10 -07:00
2026-03-23 13:33:51 -04:00
2026-01-18 17:18:48 +09:00
2026-04-05 13:53:07 -07:00
2026-04-05 13:53:07 -07:00
2026-04-07 17:38:07 +02:00
2026-01-14 19:49:52 -08:00
2025-11-01 01:10:28 +09:00
2025-10-30 20:10:27 +01:00
2025-11-05 09:51:30 +01:00
2026-02-19 14:34:26 +01:00
2025-11-05 22:51:23 +01:00
2026-04-15 12:59:16 -07:00
2026-03-09 13:34:21 -07:00
2026-01-13 09:58:01 +01:00
2026-01-27 16:35:36 +01:00
2026-01-23 13:26:20 +01:00
2026-02-19 09:12:05 +01:00
2026-02-17 23:11:40 -08:00
2026-01-15 16:15:25 -08:00
2026-02-19 15:21:22 -05:00
2026-03-26 22:00:59 +01:00
2026-02-21 17:09:51 -08:00
2025-12-23 11:23:10 -08:00
2026-04-06 20:21:37 -06:00
2026-04-06 20:21:37 -06:00
2026-02-26 17:30:32 +01:00
2026-02-26 15:27:41 -08:00
2026-03-09 12:36:10 +05:30
2026-04-08 14:23:29 -07:00
2026-03-11 15:26:47 +01:00
2026-01-20 19:24:39 -08:00
2026-04-12 16:46:29 +08:00
2026-03-19 08:18:36 +01:00
2026-03-12 12:15:55 +01:00
2026-02-27 16:40:14 +01:00
2026-02-27 16:40:16 +01:00
2026-03-12 12:15:54 +01:00
2026-04-05 13:53:45 -07:00
2026-04-05 13:53:25 -07:00
2026-04-15 12:59:16 -07:00
2025-10-15 13:24:33 -07:00
2026-03-22 11:17:59 +09:00
2026-04-05 13:53:44 -07:00
2025-10-11 23:57:33 +02:00
2025-10-29 18:28:29 -07:00
2026-03-29 11:21:23 -07:00
2026-03-13 14:48:15 +01:00
2025-11-20 10:25:10 +01:00
2026-03-06 10:52:11 +01:00
2025-11-10 10:38:14 +01:00
2026-04-07 15:36:02 +02:00
2025-11-10 10:38:15 +01:00
2026-02-02 10:01:44 +01:00
2026-03-06 10:46:26 +01:00
2025-11-10 10:38:14 +01:00
2026-04-08 08:55:15 +02:00
2026-03-16 19:29:45 -07:00
2025-12-01 16:45:06 -08:00
2026-04-12 15:20:46 -07:00
2026-04-13 15:09:49 +02:00
2026-02-05 16:33:52 +01:00
2026-01-26 19:07:10 -08:00
2026-03-29 11:21:23 -07:00
2026-01-25 14:45:14 -08:00
2026-01-12 16:52:09 +01:00
2025-11-04 12:36:02 +01:00
2025-10-14 14:45:22 -07:00
2026-01-12 17:22:22 +01:00
2026-01-26 19:07:15 -08:00
2026-04-01 16:03:05 +02:00
2025-12-22 16:19:53 +02:00
2025-10-17 17:47:53 +02:00
2025-10-24 18:02:26 +03:00
2026-02-10 13:39:37 -08:00
2025-10-14 14:45:22 -07:00
2025-10-14 14:45:22 -07:00
2026-04-13 16:22:30 -07:00
2026-02-06 07:29:14 -07:00
2026-02-21 17:09:51 -08:00
2026-03-17 13:58:45 +01:00
2026-04-15 12:59:16 -07:00
2026-01-10 10:52:27 +01:00
2026-04-09 13:18:27 +01:00
2026-03-09 19:35:40 +02:00
2026-03-27 10:18:39 -05:00
2025-10-22 07:53:15 +02:00
2026-03-11 17:53:37 -07:00
2025-11-25 19:45:41 +01:00
2025-11-25 19:45:41 +01:00
2026-04-14 23:03:02 -07:00
2026-03-10 18:37:21 +01:00
2025-10-16 18:17:27 +02:00
2025-12-15 22:30:48 +01:00
2026-01-27 15:31:41 +01:00
2026-01-13 09:58:01 +01:00
2026-03-21 08:02:36 +01:00
2026-03-16 13:16:49 +01:00
2026-04-05 13:53:28 -07:00
2026-01-27 15:57:20 +01:00
2025-11-19 09:19:42 -05:00
2026-01-31 16:16:06 -08:00
2026-04-13 10:10:28 -07:00
2026-01-31 16:16:04 -08:00
2025-12-23 11:23:13 -08:00
2025-11-27 23:56:58 +02:00
2026-01-14 22:16:20 -08:00
2025-11-28 09:20:13 -07:00
2026-01-27 15:57:20 +01:00
2026-04-05 13:53:04 -07:00
2026-01-31 14:22:30 -08:00
2025-11-16 17:27:54 -08:00
2026-04-09 14:36:52 +02:00
2026-04-09 14:36:52 +02:00
2026-01-05 16:43:31 +01:00
2026-04-05 13:53:40 -07:00
2026-04-03 19:39:52 +02:00
2026-02-26 10:45:49 +01:00
2026-01-11 06:09:11 -10:00
2026-03-11 18:01:55 +01:00
2025-11-12 15:29:38 -08:00
2026-04-05 13:53:46 -07:00
2026-02-04 09:20:27 +00:00
2026-02-25 07:20:18 +01:00
2026-02-14 11:09:46 +01:00
2026-04-01 10:19:41 +02:00
2026-01-05 16:43:30 +01:00
2026-02-08 00:13:32 -08:00
2025-10-14 14:50:18 -07:00
2025-10-14 14:50:19 -07:00
2026-02-05 08:00:44 -08:00
2026-02-24 11:13:26 -08:00
2026-03-12 11:29:11 +01:00
2026-01-28 20:45:24 +01:00
2026-01-05 16:43:28 +01:00
2026-01-05 16:43:33 +01:00
2026-01-26 19:07:14 -08:00
2026-04-03 16:53:50 -04:00
2026-04-13 15:42:19 -07:00
2026-04-03 16:53:50 -04:00
2026-04-05 13:52:55 -07:00
2025-11-20 14:03:42 -08:00
2026-03-18 09:59:57 +00:00
2026-03-14 12:23:02 -07:00
2026-01-20 19:24:47 -08:00
2026-04-05 13:53:04 -07:00
2026-04-05 13:53:00 -07:00
2026-04-05 13:53:32 -07:00
2026-01-19 10:06:31 -07:00
2026-04-05 13:53:33 -07:00
2026-04-05 13:53:01 -07:00
2026-03-26 16:13:48 +01:00
2025-11-23 12:30:40 +01:00
2025-11-17 23:45:45 +00:00
2026-01-26 19:03:48 -08:00
2025-12-31 16:24:32 +05:30
2026-02-27 17:23:37 -08:00
2026-04-02 18:03:03 -07:00
2026-03-02 11:51:51 -05:00
2025-11-26 16:56:33 -08:00
2025-12-08 15:32:14 -08:00
2025-10-17 05:31:56 -10:00
2025-12-29 11:53:38 +01:00
2026-04-05 13:53:36 -07:00
2026-01-20 19:24:34 -08:00
2026-04-05 13:53:45 -07:00
2026-04-05 13:53:45 -07:00
2026-04-05 13:53:41 -07:00
2026-04-08 13:18:57 -07:00
2026-01-26 20:02:27 -08:00
2026-02-03 15:23:35 +01:00
2026-04-15 12:59:16 -07:00
2026-04-15 12:59:16 -07:00
2026-03-05 12:25:38 -08:00
2026-03-24 21:42:37 +00:00
2026-03-31 23:42:18 +00:00
2026-03-31 23:42:52 +00:00
2026-03-18 21:43:19 +00:00
2026-03-27 17:01:36 +01:00
2026-03-02 18:49:41 -08:00
2026-02-10 16:30:29 -08:00
2026-03-08 11:06:53 +01:00
2026-03-08 11:06:53 +01:00
2026-03-09 09:43:04 +01:00
2026-04-13 14:56:28 -07:00
2025-10-21 18:08:23 -07:00
2025-10-16 16:25:10 -07:00
2026-04-14 18:36:10 -07:00
2026-03-29 11:21:24 -07:00
2026-03-26 15:18:45 +01:00
2026-01-29 09:48:33 -05:00
2026-01-30 16:49:15 -05:00
2026-01-04 23:03:24 -05:00
2026-01-30 16:49:15 -05:00
2025-10-06 13:22:21 -07:00
2026-01-14 22:16:22 -08:00
2025-11-16 17:28:03 -08:00
2026-01-26 20:02:36 -08:00
2025-11-05 23:58:20 +01:00
2026-02-27 22:00:08 +01:00
2025-11-03 17:41:17 +01:00
2025-11-14 13:10:38 +01:00
2025-11-11 10:01:30 +01:00
2026-03-27 10:56:05 -05:00
2026-01-26 12:26:01 +01:00
2026-04-13 15:51:31 -07:00
2026-03-27 07:35:05 -07:00
2025-10-14 14:50:16 -07:00
2025-12-03 19:42:37 +01:00
2025-11-20 08:32:48 -06:00
2026-01-15 12:03:27 +01:00
2026-03-12 16:18:49 +01:00
2026-01-30 11:34:34 +00:00
2025-11-20 14:03:43 -08:00
2026-02-24 15:46:31 -08:00
2026-03-22 11:17:59 +09:00
2026-01-21 12:51:48 +01:00
2026-04-05 13:53:12 -07:00
2026-04-05 13:53:17 -07:00
2026-01-26 20:02:35 -08:00
2026-04-05 13:53:19 -07:00
2026-01-31 14:22:42 -08:00
2026-03-20 14:18:56 +01:00
2026-04-05 13:53:10 -07:00
2026-02-03 08:21:26 -08:00
2026-04-10 17:27:39 -05:00
2025-12-17 13:52:53 +01:00
2025-11-03 19:27:41 -08:00
2026-04-04 16:14:37 +05:30
2026-01-28 19:15:58 +05:30
2026-01-22 17:47:21 -08:00
2026-01-06 16:18:02 -06:00
2026-01-16 13:23:38 -06:00
2026-04-06 16:55:16 +02:00
2025-11-14 15:06:57 -08:00
2026-04-15 14:41:21 -07:00
2025-11-24 11:45:20 +01:00
2026-02-03 15:23:33 +01:00
2026-02-11 12:45:40 -05:00
2026-04-05 13:53:35 -07:00
2025-11-07 18:53:13 -08:00
2026-01-13 18:52:35 -08:00
2026-04-12 11:33:23 -07:00
2026-01-21 19:50:54 -08:00
2026-02-10 11:39:30 +01:00
2026-02-10 11:39:31 +01:00
2026-02-10 11:39:30 +01:00
2025-11-12 12:18:56 +01:00
2026-03-22 23:13:33 +01:00
2025-11-28 12:03:22 +02:00
2026-01-11 06:09:11 -10:00
2026-04-01 13:33:35 +02:00
2025-11-25 19:01:29 +01:00
2026-02-23 14:08:17 +01:00
2025-11-19 18:06:49 +01:00
2026-02-04 13:25:09 +01:00
2026-01-16 10:51:12 +01:00
2026-03-30 13:57:49 +02:00
2026-03-17 16:18:48 -07:00
2025-10-30 18:35:26 +01:00
2025-10-24 21:39:27 +02:00
2026-03-27 18:52:43 +09:00
2025-10-27 15:45:22 +01:00
2025-11-16 01:35:02 -05:00
2025-12-22 13:32:22 +01:00
2025-10-31 10:16:23 +01:00
2026-03-30 12:02:12 +02:00
2026-01-21 10:52:03 +02:00
2026-03-27 17:14:31 -07:00
2025-11-14 11:56:14 +01:00
2025-11-02 13:40:13 +01:00
2026-03-24 21:12:03 -07:00
2025-11-21 09:42:02 +01:00
2026-02-27 16:40:16 +01:00
2026-02-27 16:40:16 +01:00
2026-03-04 11:45:45 +01:00
2025-12-03 17:24:33 -08:00
2026-01-01 16:39:46 +08:00
2026-04-07 12:24:49 -07:00
2026-03-31 14:41:56 -07:00
2026-04-10 11:46:15 +01:00
2026-01-09 16:37:07 +01:00
2026-01-10 11:20:14 +01:00
2025-11-18 17:52:54 +01:00
2025-11-18 17:52:54 +01:00
2025-12-24 14:01:57 +01:00
2025-11-04 08:34:39 +01:00
2026-03-07 14:12:20 +09:00
2026-03-09 12:33:55 -04:00
2026-03-09 12:33:53 -04:00
2025-10-22 07:55:02 +02:00
2026-01-26 20:02:33 -08:00
2025-10-13 13:18:03 +02:00
2026-03-21 08:02:36 +01:00
2026-03-11 12:01:07 +01:00
2026-02-23 11:19:19 +01:00
2026-01-11 06:09:11 -10:00
2026-03-08 11:06:53 +01:00
2026-01-21 15:50:36 +01:00
2026-01-21 15:51:04 +01:00
2026-03-31 16:47:17 +02:00
2026-02-27 16:40:19 +01:00
2026-01-28 20:45:25 +01:00
2026-01-05 16:43:28 +01:00
2026-03-16 13:16:50 +01:00
2026-03-08 11:06:53 +01:00
2025-11-28 09:21:18 -07:00
2026-01-09 08:36:00 +05:30
2026-04-14 13:33:36 -07:00
2026-01-17 10:32:21 +08:00
2025-12-16 14:12:44 +01:00
2026-04-13 15:42:19 -07:00
2026-03-31 07:04:00 -06:00
2026-03-08 11:06:52 +01:00
2025-10-28 20:10:59 -04:00
2026-02-06 10:07:22 +01:00
2026-01-05 16:43:29 +01:00
2026-01-28 20:45:25 +01:00
2026-03-31 09:48:42 +02:00
2026-03-12 15:34:15 +01:00
2025-12-16 22:24:00 +05:30
2026-02-23 13:06:38 +01:00
2026-03-09 12:33:55 -04:00
2025-11-24 17:23:58 -06:00
2026-01-25 13:18:52 -08:00
2026-04-12 10:54:31 -07:00
2026-02-21 01:02:52 -08:00
2026-02-26 17:30:32 +01:00
2026-03-25 20:11:29 +01:00
2026-03-04 17:53:34 -08:00
2026-01-05 16:43:33 +01:00
2026-01-05 16:43:33 +01:00
2026-01-28 20:45:25 +01:00
2026-01-05 16:43:28 +01:00
2026-01-05 16:43:28 +01:00
2026-03-16 13:16:50 +01:00
2026-02-27 16:40:19 +01:00
2026-03-30 15:48:13 -04:00
2026-03-25 09:00:05 -07:00
2026-03-30 15:48:13 -04:00
2025-11-15 06:18:17 +00:00
2026-03-27 20:57:38 -07:00
2026-02-11 10:14:35 +01:00
2026-04-05 13:53:06 -07:00
2025-11-24 15:08:52 -08:00
2025-11-20 14:03:40 -08:00
2026-03-12 16:18:49 +01:00
2026-03-23 12:41:58 +01:00
2025-11-14 10:01:52 +01:00
2026-01-06 11:27:10 +01:00
2025-12-16 14:12:44 +01:00
2026-04-13 19:03:11 -07:00
2026-03-14 08:01:49 -07:00
2026-01-14 12:04:34 +01:00
2025-12-17 18:28:28 +01:00
2026-03-19 08:18:36 +01:00
2026-01-14 22:16:19 -08:00
2026-04-08 12:30:31 +02:00
2026-01-22 11:11:18 +01:00
2026-01-28 22:24:58 +01:00
2026-03-02 10:04:19 +01:00
2026-04-01 17:13:35 +02:00
2025-12-15 20:16:49 +01:00
2026-02-27 16:40:08 +01:00
2025-11-20 20:17:32 +01:00
2026-02-27 16:40:16 +01:00
2026-02-27 16:40:16 +01:00
2026-02-27 16:11:50 -08:00
2025-12-05 06:42:51 +02:00
2026-03-12 12:15:53 +01:00
2026-01-31 16:16:06 -08:00
2026-01-07 14:52:22 -05:00
2026-03-09 12:33:54 -04:00
2026-03-09 12:33:54 -04:00
2026-01-26 17:00:50 -05:00
2026-03-31 16:01:13 -07:00
2026-02-12 15:43:02 -08:00
2026-02-15 10:20:37 -08:00
2026-01-27 13:58:21 +01:00
2026-01-27 13:58:21 +01:00
2026-01-27 13:58:21 +01:00
2026-04-05 13:53:08 -07:00
2026-02-06 13:34:55 +01:00
2026-04-13 08:39:51 -07:00
2026-03-13 18:57:45 -07:00
2026-04-05 13:53:44 -07:00
2026-01-28 05:16:39 -07:00
2026-03-05 15:52:39 +01:00
2025-10-29 10:29:58 +01:00
2025-10-29 10:29:58 +01:00
2025-10-29 10:29:58 +01:00
2025-12-17 13:31:07 +01:00
2026-01-16 16:23:54 +01:00
2026-04-02 09:43:26 +02:00
2025-11-03 17:41:18 +01:00
2026-04-05 13:53:41 -07:00
2025-12-22 14:59:18 -07:00
2026-04-04 00:47:50 +02:00
2026-03-11 10:18:30 +01:00
2026-01-19 10:25:24 -07:00
2025-11-20 21:20:00 -07:00
2025-11-27 02:03:07 -05:00
2025-12-24 08:02:56 -05:00
2026-03-24 11:12:08 +01:00
2025-11-27 02:03:07 -05:00
2026-01-27 10:45:38 +01:00
2026-01-28 15:32:16 -05:00
2026-04-05 13:52:58 -07:00
2026-04-05 13:53:04 -07:00
2025-11-27 14:24:44 -08:00
2026-02-12 11:32:37 -08:00
2026-03-12 07:47:36 +01:00
2026-01-29 07:33:35 +00:00
2026-01-18 10:56:10 +01:00
2026-04-04 00:45:14 +02:00
2026-04-01 10:24:18 -10:00
2026-04-05 13:53:07 -07:00
2026-02-27 16:40:20 +01:00
2026-01-30 18:26:59 -08:00
2026-03-02 11:06:42 +01:00
2025-11-12 10:00:17 -08:00
2026-01-26 20:02:32 -08:00