Felix Fontein
dce8b507fd
[stable-11] filesystem: xfs resize: minimal required increment ( #11033 ) ( #11042 )
...
filesystem: xfs resize: minimal required increment (#11033 )
Internally XFS uses allocation groups. Allocation groups have a maximum
size of 1 TiB - 1 block. For devices >= 4 TiB XFS uses max size
allocation groups. If a filesystem is extended and the last allocation
group is already at max size, a new allocation group is added. An
allocation group seems to require at least 64 4 KiB blocks.
For devices with integer TiB size (>4), this creates a filesystem that
has initially has 1 unused block per TiB size. The `resize` option
detects this unused space, and tries to resize the filesystem. The
xfs_growfs call is successful (exit 0), but does not increase the file
system size. This is detected as repeated change in the task.
Test case:
```
- hosts: localhost
tasks:
- ansible.builtin.command:
cmd: truncate -s 4T /media/xfs.img
creates: /media/xfs.img
notify: loopdev xfs
- ansible.builtin.meta: flush_handlers
- name: pickup xfs.img resize
ansible.builtin.command:
cmd: losetup -c /dev/loop0
changed_when: false
- community.general.filesystem:
dev: "/dev/loop0"
fstype: "xfs"
- ansible.posix.mount:
src: "/dev/loop0"
fstype: "xfs"
path: "/media/xfs"
state: "mounted"
# always shows a diff even for newly created filesystems
- community.general.filesystem:
dev: "/dev/loop0"
fstype: "xfs"
resizefs: true
handlers:
- name: loopdev xfs
ansible.builtin.command:
cmd: losetup /dev/loop0 /media/xfs.img
```
NB: If the last allocation group is not yet at max size, the filesystem
can be resized. Detecting this requires considering the XFS topology.
Other filesystems (at least ext4) also seem to require a minimum
increment after the initial device size, but seem to use the entire
device after initial creation.
Fun observation: creating a 64(+) TiB filesystem leaves a 64(+) block
gap at the end, that is allocated in a subsequent xfs_growfs call.
(cherry picked from commit f5943201b9 )
Co-authored-by: jnaab <25617714+jnaab@users.noreply.github.com >
Co-authored-by: Johannes Naab <johannes.naab@hetzner-cloud.de >
2025-11-08 10:00:56 +01:00
..
2025-07-28 18:59:32 +02:00
2025-07-28 18:59:32 +02:00
2024-12-27 14:29:15 +01:00
2025-07-28 19:22:07 +02:00
2025-07-28 19:22:07 +02:00
2025-07-07 21:21:27 +02:00
2024-12-27 14:29:15 +01:00
2024-12-27 14:29:15 +01:00
2025-07-07 21:21:27 +02:00
2025-07-07 21:21:27 +02:00
2024-12-27 14:29:15 +01:00
2025-08-23 19:43:27 +02:00
2025-07-07 21:21:27 +02:00
2025-05-25 23:42:57 +12:00
2025-08-17 13:12:55 +02:00
2025-08-04 20:50:17 +02:00
2024-12-27 14:29:15 +01:00
2025-07-07 21:21:27 +02:00
2025-07-07 21:21:27 +02:00
2024-12-31 12:47:19 +13:00
2024-12-31 12:47:19 +13:00
2024-12-31 12:47:19 +13:00
2025-07-07 21:21:27 +02:00
2025-07-07 21:21:27 +02:00
2025-08-04 20:48:56 +02:00
2025-07-28 18:59:32 +02:00
2024-12-27 14:29:15 +01:00
2024-12-27 14:29:15 +01:00
2025-07-07 21:21:27 +02:00
2024-12-27 14:29:15 +01:00
2025-07-28 18:59:32 +02:00
2025-07-28 18:59:32 +02:00
2025-07-07 21:21:27 +02:00
2025-07-28 18:59:32 +02:00
2025-07-28 18:59:32 +02:00
2025-08-04 20:50:30 +02:00
2025-07-28 18:59:32 +02:00
2025-08-04 20:50:41 +02:00
2025-07-28 18:59:32 +02:00
2025-07-28 19:22:07 +02:00
2024-12-27 14:29:05 +01:00
2025-07-28 18:59:32 +02:00
2025-07-14 07:23:02 +02:00
2025-10-23 07:05:39 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-08-17 12:53:22 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-10-03 07:53:16 +02:00
2025-07-28 18:59:32 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-10-03 07:53:16 +02:00
2025-07-28 18:59:32 +02:00
2025-08-04 20:49:28 +02:00
2025-07-28 06:47:08 +02:00
2025-07-14 07:23:02 +02:00
2025-07-28 18:59:32 +02:00
2025-07-14 07:23:02 +02:00
2025-07-28 18:59:32 +02:00
2025-07-28 18:59:32 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-07-28 18:59:32 +02:00
2025-07-28 18:59:32 +02:00
2024-12-26 21:53:20 +01:00
2025-08-27 22:09:53 +02:00
2024-12-26 21:53:20 +01:00
2025-08-27 22:09:53 +02:00
2025-09-03 22:29:17 +02:00
2025-09-03 22:29:17 +02:00
2025-07-14 07:23:02 +02:00
2025-07-28 18:59:32 +02:00
2025-09-03 21:46:21 +02:00
2025-07-14 07:23:02 +02:00
2025-07-14 07:23:02 +02:00
2025-07-28 18:59:32 +02:00
2025-07-28 18:59:32 +02:00
2025-08-04 20:50:48 +02:00
2024-12-26 21:53:20 +01:00
2025-08-23 19:43:27 +02:00
2025-07-13 17:36:27 +02:00
2024-12-29 13:42:22 +01:00
2024-12-26 21:53:20 +01:00
2025-07-28 18:59:32 +02:00
2025-08-31 12:11:27 +02:00
2025-11-08 10:00:56 +01:00
2025-07-28 19:22:07 +02:00
2025-07-13 17:36:27 +02:00
2024-12-26 21:54:03 +01:00
2025-05-19 18:11:39 +02:00
2025-05-19 18:11:39 +02:00
2025-10-05 07:23:48 +02:00
2025-07-28 19:22:07 +02:00
2025-07-31 23:03:54 +02:00
2025-05-27 23:17:35 +02:00
2025-09-25 20:49:03 +02:00
2024-12-26 21:54:03 +01:00
2025-07-13 17:36:27 +02:00
2025-07-08 22:29:54 +02:00
2025-08-06 07:02:09 +02:00
2025-07-31 23:03:54 +02:00
2025-07-31 23:03:54 +02:00
2025-07-31 23:03:54 +02:00
2025-07-13 17:36:27 +02:00
2025-09-03 21:46:35 +02:00
2024-12-26 21:54:03 +01:00
2025-09-18 22:14:48 +02:00
2025-07-13 17:36:27 +02:00
2025-07-31 23:03:54 +02:00
2025-09-18 22:14:48 +02:00
2025-07-31 23:03:54 +02:00
2025-08-23 19:43:36 +02:00
2025-07-31 23:03:54 +02:00
2025-08-23 19:43:36 +02:00
2025-09-03 21:46:35 +02:00
2024-12-26 21:54:03 +01:00
2025-04-10 07:05:01 +02:00
2025-09-18 22:14:48 +02:00
2025-07-31 23:03:54 +02:00
2025-09-08 19:06:38 +02:00
2025-10-19 09:31:24 +02:00
2025-07-13 17:36:27 +02:00
2025-07-31 23:03:54 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2024-12-26 21:55:56 +01:00
2025-07-31 23:03:54 +02:00
2025-07-31 23:03:54 +02:00
2025-03-03 21:04:14 +01:00
2025-07-31 23:03:54 +02:00
2025-09-15 19:39:57 +02:00
2025-08-10 13:51:58 +02:00
2025-07-31 23:03:54 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2025-05-19 18:11:39 +02:00
2025-07-31 23:03:54 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2024-12-26 21:55:56 +01:00
2025-07-13 17:36:27 +02:00
2024-12-26 21:55:56 +01:00
2024-12-26 21:55:56 +01:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2025-07-13 17:36:27 +02:00
2025-01-07 06:30:03 +01:00
2024-12-26 21:52:26 +01:00
2025-07-14 15:34:39 +02:00
2024-12-26 21:52:26 +01:00
2024-12-26 21:52:26 +01:00
2024-12-26 21:52:26 +01:00
2024-12-26 21:52:26 +01:00
2025-07-31 23:03:54 +02:00
2025-04-10 07:08:04 +02:00
2025-04-10 07:08:04 +02:00
2025-04-10 07:08:04 +02:00
2025-04-10 07:08:04 +02:00
2025-04-10 07:08:04 +02:00
2025-04-10 07:08:04 +02:00
2025-07-14 15:34:39 +02:00
2025-08-04 20:51:24 +02:00
2025-08-10 13:51:52 +02:00
2024-12-26 21:52:26 +01:00
2024-12-26 21:52:26 +01:00
2025-01-07 06:30:03 +01:00
2025-07-31 23:03:54 +02:00
2024-12-26 21:52:26 +01:00
2025-07-31 23:03:54 +02:00
2025-07-14 15:34:39 +02:00
2025-07-14 15:34:39 +02:00
2024-12-26 13:40:05 +01:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-07-14 15:34:39 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-23 19:43:36 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-08-11 07:18:10 +02:00
2025-07-31 23:03:54 +02:00
2025-07-14 15:34:39 +02:00
2024-12-29 13:42:22 +01:00
2025-07-14 15:34:39 +02:00
2025-06-16 17:45:12 +02:00
2025-08-31 12:11:27 +02:00
2025-07-31 23:03:54 +02:00
2025-07-31 23:03:54 +02:00
2025-07-14 15:34:39 +02:00
2025-07-14 15:34:39 +02:00
2025-07-14 15:34:39 +02:00
2025-07-31 23:03:54 +02:00
2025-07-28 19:22:07 +02:00
2025-07-28 19:22:07 +02:00
2024-12-26 13:40:05 +01:00
2025-07-18 01:38:22 +02:00
2025-07-06 13:34:15 +02:00
2025-07-31 23:03:54 +02:00
2025-07-18 01:38:22 +02:00
2025-07-31 23:03:54 +02:00
2025-07-18 01:38:22 +02:00
2025-08-04 20:50:10 +02:00
2025-07-31 23:03:54 +02:00
2025-09-30 21:54:43 +02:00
2025-08-29 06:59:58 +02:00
2025-05-19 18:11:39 +02:00
2025-07-18 01:38:22 +02:00
2025-06-18 07:57:07 +02:00
2025-07-31 22:58:26 +02:00
2025-07-18 01:38:22 +02:00
2025-06-18 07:57:07 +02:00
2025-07-31 22:58:26 +02:00
2025-07-18 01:38:22 +02:00
2025-07-18 01:38:22 +02:00
2025-10-06 18:28:38 +02:00
2025-07-18 01:38:22 +02:00
2025-07-18 01:38:22 +02:00
2025-10-19 21:22:44 +02:00
2025-10-19 21:22:44 +02:00
2025-07-18 01:38:22 +02:00
2025-01-06 21:31:59 +01:00
2025-07-18 01:38:22 +02:00
2025-07-18 01:38:22 +02:00
2025-08-04 20:51:06 +02:00
2025-07-18 01:38:22 +02:00
2025-07-18 01:38:22 +02:00
2025-06-18 07:57:07 +02:00
2025-07-18 01:38:22 +02:00
2025-09-08 18:54:56 +02:00
2025-10-05 07:08:09 +02:00
2025-07-18 01:38:22 +02:00
2025-10-23 21:37:47 +02:00
2025-10-29 17:15:36 +00:00
2025-07-31 22:58:26 +02:00
2025-01-06 21:31:59 +01:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-09-30 21:54:43 +02:00
2025-07-21 22:32:10 +02:00
2025-07-31 22:58:26 +02:00
2024-12-26 09:12:05 +01:00
2025-07-31 22:58:26 +02:00
2025-01-07 06:28:00 +01:00
2025-07-31 22:58:26 +02:00
2025-01-07 06:28:00 +01:00
2025-07-28 19:22:07 +02:00
2025-07-31 22:58:26 +02:00
2025-07-21 22:32:10 +02:00
2025-07-21 22:32:10 +02:00
2025-07-27 12:13:10 +02:00
2025-07-31 22:58:26 +02:00
2025-07-21 22:32:10 +02:00
2025-06-16 17:45:12 +02:00
2025-07-31 22:58:26 +02:00
2025-08-04 20:51:33 +02:00
2025-08-23 19:43:36 +02:00
2025-07-21 22:32:10 +02:00
2025-08-04 20:49:51 +02:00
2025-08-11 07:17:59 +02:00
2025-02-01 09:03:43 +01:00
2025-07-21 22:32:10 +02:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-07-21 22:32:10 +02:00
2025-07-21 22:32:10 +02:00
2025-07-21 22:32:10 +02:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-07-21 22:32:10 +02:00
2025-08-23 19:43:27 +02:00
2025-07-31 22:58:26 +02:00
2025-08-31 12:11:27 +02:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-07-21 22:32:10 +02:00
2025-07-21 22:32:10 +02:00
2025-07-31 22:58:26 +02:00
2025-08-31 12:11:27 +02:00
2025-07-21 22:32:10 +02:00
2024-12-26 13:40:55 +01:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-08-10 13:51:58 +02:00
2025-07-31 22:58:26 +02:00
2024-12-26 13:41:54 +01:00
2025-07-21 22:32:10 +02:00
2025-01-07 06:28:00 +01:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-07-28 19:22:07 +02:00
2025-07-21 22:32:10 +02:00
2025-08-28 22:17:56 +02:00
2025-07-31 22:58:26 +02:00
2025-08-31 12:11:27 +02:00
2025-07-31 22:58:26 +02:00
2025-08-23 19:44:09 +02:00
2025-07-31 22:58:26 +02:00
2025-07-31 22:58:26 +02:00
2025-07-25 09:45:53 +02:00
2025-01-07 06:28:00 +01:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-06-16 17:45:12 +02:00
2024-12-26 13:41:54 +01:00
2025-06-16 17:45:12 +02:00
2025-07-25 09:45:53 +02:00
2024-12-26 13:41:54 +01:00
2025-07-31 22:58:26 +02:00
2025-01-12 13:03:26 +01:00
2025-06-16 17:45:12 +02:00
2025-08-23 19:44:37 +02:00
2025-07-28 19:22:07 +02:00
2025-07-25 09:45:53 +02:00
2025-01-12 13:03:26 +01:00
2025-10-30 20:30:00 +01:00
2025-07-25 09:45:53 +02:00
2025-07-31 22:58:33 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-31 22:58:33 +02:00
2025-08-23 19:43:27 +02:00
2025-07-31 22:58:33 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-31 22:58:33 +02:00
2025-01-12 13:03:26 +01:00
2025-01-12 13:03:26 +01:00
2025-01-12 13:03:26 +01:00
2025-07-25 09:45:53 +02:00
2025-07-31 22:58:33 +02:00
2025-07-25 09:45:53 +02:00
2024-12-25 22:48:15 +01:00
2025-07-25 09:45:53 +02:00
2024-12-25 22:48:15 +01:00
2025-07-25 09:45:53 +02:00
2025-01-12 13:03:26 +01:00
2025-07-25 09:45:53 +02:00
2024-12-25 22:48:15 +01:00
2025-01-12 13:03:26 +01:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-08-10 13:50:43 +02:00
2025-08-31 12:11:27 +02:00
2025-07-31 22:58:33 +02:00
2025-07-25 09:45:53 +02:00
2025-05-19 18:11:39 +02:00
2025-07-25 09:45:53 +02:00
2025-07-25 09:45:53 +02:00
2025-07-04 06:09:54 +02:00
2025-07-31 22:58:33 +02:00
2025-10-10 19:15:49 +02:00
2025-08-04 20:49:59 +02:00
2025-10-10 19:15:49 +02:00
2025-10-10 19:15:49 +02:00
2025-07-28 19:22:07 +02:00
2025-07-28 19:22:07 +02:00
2025-07-28 19:22:07 +02:00
2025-07-28 19:22:07 +02:00
2025-01-08 20:41:03 +01:00
2024-12-26 08:22:24 +01:00
2025-07-27 12:13:47 +02:00
2025-10-10 08:10:22 +02:00
2025-07-27 12:13:47 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-27 12:13:47 +02:00
2025-09-13 10:30:42 +02:00
2025-08-10 13:50:36 +02:00
2025-08-18 06:41:18 +02:00
2025-07-27 12:13:47 +02:00
2025-07-27 12:13:47 +02:00
2025-07-27 12:13:47 +02:00
2025-08-11 21:24:16 +02:00
2025-07-27 12:13:47 +02:00
2024-12-25 22:48:04 +01:00
2025-07-27 12:13:47 +02:00
2025-07-31 22:58:33 +02:00
2025-07-27 12:13:47 +02:00
2025-07-27 12:13:47 +02:00
2025-07-31 22:58:33 +02:00
2025-08-10 13:50:56 +02:00
2024-12-25 22:48:04 +01:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-10-29 17:15:18 +00:00
2025-07-31 22:58:33 +02:00
2025-07-27 12:13:47 +02:00
2025-07-27 12:13:47 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-27 12:13:47 +02:00
2024-12-25 21:19:49 +01:00
2025-09-30 21:54:43 +02:00
2025-07-27 16:34:34 +02:00
2025-04-10 07:08:04 +02:00
2025-09-30 21:54:43 +02:00
2025-07-31 22:58:33 +02:00
2024-12-25 21:19:49 +01:00
2025-07-31 22:58:33 +02:00
2025-06-16 17:45:12 +02:00
2025-01-08 20:41:03 +01:00
2025-07-04 06:09:54 +02:00
2025-07-27 16:34:34 +02:00
2025-07-27 16:34:34 +02:00
2025-08-10 13:50:49 +02:00
2025-09-21 20:44:12 +02:00
2025-07-31 22:58:33 +02:00
2025-07-28 19:22:07 +02:00
2025-05-17 08:01:32 +02:00
2025-06-16 17:45:12 +02:00
2025-07-27 16:34:34 +02:00
2024-12-25 21:19:49 +01:00
2025-07-27 16:34:34 +02:00
2025-07-31 22:58:33 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:45 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-08-23 19:44:19 +02:00
2025-01-03 22:52:09 +01:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-31 22:58:33 +02:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-31 22:58:33 +02:00
2025-08-04 20:49:20 +02:00
2024-12-26 08:22:58 +01:00
2025-07-27 14:34:24 +00:00
2025-01-03 20:00:45 +01:00
2025-06-02 06:24:34 +02:00
2025-07-04 06:09:54 +02:00
2025-07-27 14:34:24 +00:00
2024-12-26 08:22:58 +01:00
2025-07-27 14:34:24 +00:00
2025-05-19 18:11:39 +02:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-08-10 13:51:03 +02:00
2025-07-31 22:58:33 +02:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-31 22:58:33 +02:00
2025-08-10 13:51:58 +02:00
2024-12-25 09:48:22 +01:00
2025-07-31 22:58:33 +02:00
2025-07-30 06:53:47 +02:00
2025-07-27 14:34:24 +00:00
2025-07-27 14:34:24 +00:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-08-10 13:51:10 +02:00
2025-07-31 22:58:33 +02:00
2025-07-28 19:22:07 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-31 22:58:33 +02:00
2025-07-27 14:34:24 +00:00
2025-07-28 19:22:07 +02:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:34 +02:00
2025-10-28 20:53:57 +01:00
2025-09-18 22:14:58 +02:00
2025-08-01 11:18:58 +02:00
2025-01-03 20:00:45 +01:00
2025-01-04 11:04:51 +01:00
2025-06-16 17:45:12 +02:00
2025-06-16 17:45:12 +02:00
2025-06-16 17:45:12 +02:00
2025-06-16 17:45:12 +02:00
2025-08-31 12:11:27 +02:00
2025-01-04 11:04:51 +01:00
2025-08-10 13:51:15 +02:00
2024-12-24 12:00:30 +01:00
2025-07-27 16:34:34 +02:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:34 +02:00
2025-08-01 11:18:58 +02:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:34 +02:00
2025-08-01 11:18:58 +02:00
2025-08-01 11:18:58 +02:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:34 +02:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:34 +02:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:34 +02:00
2025-08-01 11:18:58 +02:00
2025-08-01 11:18:58 +02:00
2025-08-01 11:18:58 +02:00
2025-01-04 11:04:51 +01:00
2025-01-04 11:04:51 +01:00
2025-01-04 11:04:51 +01:00
2024-12-23 09:28:05 +01:00
2025-07-27 16:34:34 +02:00
2024-12-29 00:25:12 +01:00
2025-04-10 07:08:04 +02:00
2025-04-10 07:08:04 +02:00
2025-07-04 06:09:54 +02:00
2025-08-10 13:52:13 +02:00
2025-07-27 16:34:34 +02:00
2025-07-27 16:34:34 +02:00
2025-08-31 12:11:27 +02:00
2025-06-16 17:45:12 +02:00
2025-06-16 17:45:12 +02:00
2025-07-27 16:34:34 +02:00
2025-11-02 22:07:52 +01:00
2025-11-02 22:07:52 +01:00
2025-08-10 13:51:23 +02:00
2025-08-18 05:18:31 +00:00
2025-08-01 11:18:58 +02:00
2025-07-27 16:34:41 +02:00
2025-01-04 12:29:34 +13:00
2025-08-31 12:11:27 +02:00
2025-02-10 21:53:37 +01:00
2025-01-04 12:29:34 +13:00
2025-06-16 17:45:12 +02:00
2025-08-31 12:11:34 +02:00
2025-01-04 12:29:34 +13:00
2025-08-01 11:18:58 +02:00
2025-08-23 19:45:11 +02:00