chore(core/eckhart): update pagination style for action bar
What changed, and why it matters
This is a user-interface styling change for the Trezor hardware wallet's action bar. It adjusts how pagination buttons are sized and positioned on the new 'Eckhart' device layout, and updates the corresponding visual test snapshots. There is no indication this affects security, cryptography, or how transactions are approved.
No security action required; treat as a normal UI/visual regression update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies core/embed/rust/src/ui/layout_eckhart/firmware/action_bar.rs to change the Mode::Single pagination layout so that previous/next buttons are equal-sized when there are multiple pages, adds a grayed-out left button on the first page, and updates divider visibility logic from is_first() to is_single(). The second file, tests/ui_tests/fixtures.json, contains only regenerated SHA256 hashes for UI test snapshots across languages and coin apps, reflecting the changed pixel output. No cryptographic, protocol, or authorization code is touched.
Changed components
core/embed/rust/src/ui/layout_eckhart/firmware/action_bar.rstests/ui_tests/fixtures.jsonInspect captured patch +868 / −852
diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/action_bar.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/action_bar.rs
index 8e413307..a24c2f0a 100644
--- a/core/embed/rust/src/ui/layout_eckhart/firmware/action_bar.rs
+++ b/core/embed/rust/src/ui/layout_eckhart/firmware/action_bar.rs
@@ -209,6 +209,19 @@ impl ActionBar {
);
self.place_buttons(self.area);
}
+ } else if self.mode == Mode::Single {
+ // On the first of multiple pages, enable grayed-out left button
+ if (new_is_first && !new_is_single) && (!old_is_first || old_is_single) {
+ self.left_button = Some(
+ Button::with_icon(theme::ICON_CHEVRON_UP)
+ .with_expanded_touch_area(Self::BUTTON_EXPAND_TOUCH)
+ .with_content_offset(Self::BUTTON_CONTENT_OFFSET)
+ .initially_enabled(false),
+ );
+ } else if (!new_is_first || new_is_single) && (old_is_first && !old_is_single) {
+ self.left_button = None;
+ }
+ self.place_buttons(self.area);
} else if (old_is_last != new_is_last) || (new_is_first != old_is_first) {
self.place_buttons(self.area);
}
@@ -329,18 +342,21 @@ impl ActionBar {
self.right_button.place(bounds);
}
Mode::Single => {
- let (left_area, right_area) = if !self.pager.is_first() {
- self.next_button
- .set_content_offset(Self::BUTTON_CONTENT_OFFSET.neg());
- // Small `prev_button` when not on first page
+ let (left_area, right_area) = if self.pager.is_single() {
+ // Only `right_button` without pagination
+ (Rect::zero(), bounds)
+ } else if self.pager.is_last() {
+ // Las page with `prev_button` and `right_button`
let (left, rest) = bounds.split_left(Self::LEFT_SMALL_BUTTON_WIDTH);
let (_, right) = rest.split_left(Self::SPACER_WIDTH);
(left, right)
} else {
- self.next_button.set_content_offset(Offset::zero());
- (Rect::zero(), bounds)
+ // Equal-sized buttons
+ let (left, _, right) = bounds.split_center(Self::SPACER_WIDTH);
+ (left, right)
};
self.right_button.place(right_area);
+ self.left_button.place(left_area);
self.prev_button.place(left_area);
self.next_button.place(right_area);
}
@@ -504,7 +520,7 @@ impl Component for ActionBar {
fn render<'s>(&'s self, target: &mut impl Renderer<'s>) {
let show_divider = match self.mode {
- Mode::Single => !self.pager.is_first(),
+ Mode::Single => !self.pager.is_single(),
Mode::Double { .. } => true,
Mode::Timeout => false,
Mode::PaginateOnly => !self.pager.is_single(),
diff --git a/tests/ui_tests/fixtures.json b/tests/ui_tests/fixtures.json
index 78e93669..8921e41a 100644
--- a/tests/ui_tests/fixtures.json
+++ b/tests/ui_tests/fixtures.json
@@ -28859,8 +28859,8 @@
"T3W1_cs_test_autolock.py::test_dryrun_locks_at_number_of_words": "87ac0e226e8adf1b21a744691e85608f0667142027e319eae357a3f54d053052",
"T3W1_cs_test_autolock.py::test_dryrun_locks_at_word_entry": "d0170ad7cf9e93dc1d600eecc202d7448d7adadcb7ca812907a129d0de0fd9a8",
"T3W1_cs_test_backup_slip39_custom.py::test_backup_slip39_custom[1of1]": "981b192103b73b1bdd15cdf445ab94322a0b22e728ce79d53e04f7d8f675061b",
-"T3W1_cs_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "0a9f3f5379fdec3ff77a39ff7e7f6b0d9c7851713bac6f7fb97e949883b0f047",
-"T3W1_cs_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "7251dc0d2eeaf71c7e6063b8078e26ea7a84db7a893d2d89883032fa2a3ac467",
+"T3W1_cs_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "2886cb2a6eb23334027b6a1408d5aff2c8ad21cc378218009c470ec4ddb92572",
+"T3W1_cs_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "ec56da5258cdfddf5b4630fb4c5dc2968a48026734f69466a3cca17d2a6b228a",
"T3W1_cs_test_passphrase_bde.py::test_cycle_through_last_character": "b6978bc6751bbf3131db7d58a799e8030c8a673338230271a072ed1f5ef623b1",
"T3W1_cs_test_passphrase_bde.py::test_passphrase_click_same_button_many_times": "b1a6069cd84f521585e5a8d164385ad49596925ab2a8d9c73ff503104a42f7d5",
"T3W1_cs_test_passphrase_bde.py::test_passphrase_delete": "36694e475928009ad50549cf7e4716ca77030933f991d35d1dc5eaefb774af88",
@@ -28898,11 +28898,11 @@
"T3W1_cs_test_recovery.py::test_recovery_slip39_basic": "ecc2682e7d34276ca10cd52de0c6e55b993cb39fc6cc18a65e1ac4b4beafe558",
"T3W1_cs_test_recovery.py::test_recovery_slip39_issue5306": "34f221fed0e0006b47f251424f4e9e7130c858581c7117d813a838c1fbe88d47",
"T3W1_cs_test_recovery.py::test_recovery_slip39_reenter_second": "07b29c1cf7abe3cf06472e42603ef7f977e273b4d6d81e613e434f33a0fc4c55",
-"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_device": "af63ba0b98395a49d514dcd7631d337f68443e3ba12e4788421a9cd38a9d0feb",
+"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_device": "a5560ec7c9cba1c71f54d70c5768e1dcc6c3643ec33dc681cd9215e20e9831f0",
"T3W1_cs_test_reset_bip39.py::test_reset_bip39": "70fe5c01d4881678d88c83f87b3d10647b143c2959b9592571713555584655c7",
"T3W1_cs_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "69a2d500c020091f3de23a8a174db281d1ea342539dce3fde77e6f8f3ebf6c9d",
"T3W1_cs_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "42443293411ae578e6ada0c09594d4e2d2c3817af88de7251160cf0efc8f587c",
-"T3W1_cs_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "623e95714886a51d7e20925002c914ebeaaf59f73cb2cb871d36bffa0d7f7de2",
+"T3W1_cs_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "d96d5661b2935eb49207231628d52614ccf1a12d9d7663f5cfce55e17cd8c2ae",
"T3W1_cs_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "230d35b5267abde32d967d68d3e37859a4b8161bf2866e21b19a32b026c2865c",
"T3W1_cs_test_tutorial_eckhart.py::test_tutorial_cancel_from_confirm_menu": "3304b43ad2e2aab993bfb94b0de4b5368a2ab894e50bde0ebb4a07fb9e63140f",
"T3W1_cs_test_tutorial_eckhart.py::test_tutorial_cancel_from_main_menu": "518a89140770f65a4e2d1a848868ad0e3615c398375c15f54355f7d39187e0bd",
@@ -28949,8 +28949,8 @@
"T3W1_de_test_autolock.py::test_dryrun_locks_at_number_of_words": "1a0defce65a9282e700e9bcc4560be7df2571dc8348217ec925e0626c4951099",
"T3W1_de_test_autolock.py::test_dryrun_locks_at_word_entry": "ef6c017e19702d3f8b2d39464c458332e53b34e451a25342f901d405000b7861",
"T3W1_de_test_backup_slip39_custom.py::test_backup_slip39_custom[1of1]": "789d902eac886ddf67ac4b37609b41478acf7e3773b7c42510fc0c4c9e844298",
-"T3W1_de_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "b4299aa96fdf98d19674dff3bf8205333c7b235742974d8d768c3ecde0d125a0",
-"T3W1_de_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "fca2029ada27c629db4486be19d5a88c97eb1666d830853b6b67610e12badc07",
+"T3W1_de_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "7b1c71f831b6f6b89961e399e6739859820d89ddcf8e5230b7c4014ac352c432",
+"T3W1_de_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "03e8b6f172fd82c1a1ab2e850ea603f401e8c77f00832447f45f8c492af0f30c",
"T3W1_de_test_passphrase_bde.py::test_cycle_through_last_character": "d0f43a748b999eb5027b60bb51679a0ea63b135e76170f06864650aebee25233",
"T3W1_de_test_passphrase_bde.py::test_passphrase_click_same_button_many_times": "5db71736740563c0d75c23404c9ca1a98de81b13a94ba8475631a7b640105d0e",
"T3W1_de_test_passphrase_bde.py::test_passphrase_delete": "ac95c164e1c2eb626a781294e81a389c77e3c7e55fca61e1f7893e3ca8c0b464",
@@ -28988,11 +28988,11 @@
"T3W1_de_test_recovery.py::test_recovery_slip39_basic": "a413434976b9e70bf764e4246c92d0cecd5abe08a873c4c345219d853ad4b073",
"T3W1_de_test_recovery.py::test_recovery_slip39_issue5306": "b1fbf7f5bc5ccb6a8905144b36e414c704466cc08d9e83d0f77e412f4f724a9a",
"T3W1_de_test_recovery.py::test_recovery_slip39_reenter_second": "3e62f7b94fc22ed86125b9fb85cbf3eeb30a0e86ff7969ec6c0493f169e0a707",
-"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_device": "0cd0e8c8779e81766ccc89acc1be6a5b9e000e0a52efa5ae758de98930beee58",
+"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_device": "3f1ff2b25b2eb8adeadea29a586b45323c078decbd3e3cfc4d5d8728233c2e00",
"T3W1_de_test_reset_bip39.py::test_reset_bip39": "06265dd2fa8b8e874ccf0a7702679325fe154b63a4e6fe1a2cf20d387353d04f",
"T3W1_de_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "30ab9d6aa9f3984cd2efa0425e06fed2d9663175f39c16329eff7e3c59840c34",
"T3W1_de_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "fd2e3ef9d630f5ed378b1259301fdede0b78dd58aecfbc371cd04dca82c8e7db",
-"T3W1_de_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "8d901347eef3b77a8f4f53771d77b7d617451b5849628a04b1f321c7f25555b8",
+"T3W1_de_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "2195ac526924dbf3a2e13960ce85bc09e7fa1bca2ed31f1a81ddcc075aa2d7dc",
"T3W1_de_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "139e627ab352a6d98d82d5dd65fbd38df9238deb928c3a0240ade7ae13961ee6",
"T3W1_de_test_tutorial_eckhart.py::test_tutorial_cancel_from_confirm_menu": "03565d5afce732c2d125a25f902a721eba7893f8b95c3f84df596c6cd4d57fda",
"T3W1_de_test_tutorial_eckhart.py::test_tutorial_cancel_from_main_menu": "2f38f943b32c37e7297ad28e07a6b11475049ac16ffdc085a34a83edf2d52795",
@@ -29039,8 +29039,8 @@
"T3W1_en_test_autolock.py::test_dryrun_locks_at_number_of_words": "d4a04c895e5805e172caa46df4d8811480a1ea028e6c96622ad1e16b0d32ca3d",
"T3W1_en_test_autolock.py::test_dryrun_locks_at_word_entry": "5a1f4607d3f267831105aa1f225ad74a2f812105d02dcbb3b855a04b43b98b5d",
"T3W1_en_test_backup_slip39_custom.py::test_backup_slip39_custom[1of1]": "80ec04b4a4eb8b5e40e51f415476690067caa8bdffb4ceae85d585920ec1aaca",
-"T3W1_en_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "15b79047dcc527434b6d59c471c80587bb37e9960b3c62066727476ba70e4c0d",
-"T3W1_en_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "c4fb4d83c839df3d30e86264cf055cc95e717452ec4bf383921c8e9a65d14bbe",
+"T3W1_en_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "0fcc645f3d83d08e0aa2d1b1bdb2230ae5528057c6e7505a19ad25dd7a5ea498",
+"T3W1_en_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "ed81e93f3c85a323e4bcc62fa8b12f02ea825efa7f87b8675e9e74dc7fc271c9",
"T3W1_en_test_passphrase_bde.py::test_cycle_through_last_character": "c59c9e3d2bd1d4cb73be1e0bffbeaf598554c26a3baaa980c391f608fe0cb3c0",
"T3W1_en_test_passphrase_bde.py::test_passphrase_click_same_button_many_times": "d550e6a8fc374a06191184b04907b8e971f6a859ec99deb5723a48193e41ff11",
"T3W1_en_test_passphrase_bde.py::test_passphrase_delete": "f258f41e9a5b4fac7a1f3cf5ffa8b409e1526befd541f88991ab59a4f2fe7bb7",
@@ -29078,11 +29078,11 @@
"T3W1_en_test_recovery.py::test_recovery_slip39_basic": "5cc711ecb33d668af0f263d74cb17b7be102cf27f8eb07d13502922664d164a3",
"T3W1_en_test_recovery.py::test_recovery_slip39_issue5306": "7f984a711101cc6bb6b2ffb01b346580b83e3f5623fda12d5af8715a61639aaf",
"T3W1_en_test_recovery.py::test_recovery_slip39_reenter_second": "eee44b4827043a07582bbe2f4a243071844f3c087f071719f68c2adc44c3b88e",
-"T3W1_en_test_repeated_backup.py::test_repeated_backup_via_device": "a759d02f2b04ecc22a2e972a4765cd88ba5f97df9011524951b8cfd73f62d8c9",
+"T3W1_en_test_repeated_backup.py::test_repeated_backup_via_device": "8cf96663091102fae86e3b8fa537e0d5af11061393435ec716ae77ead2fd8fe3",
"T3W1_en_test_reset_bip39.py::test_reset_bip39": "5e3e1ad251dd569dc01438d50da62bfbdf29db3e1d8982a53d4785688eefd808",
"T3W1_en_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "27190049b53b8d0e09426e9e8d10823cbdf03ad1bfcb8d0af6f63855e751b010",
"T3W1_en_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "5d7fe57df07a963943868a718e80f1910088336e2eff9c7a3f96ae65830bf2a3",
-"T3W1_en_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "c7ea13baf1094e2b87612b74a8a314c01ae0ab2a986caeb8e9401f67971bb365",
+"T3W1_en_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "abcb63569df456fad0c80534bcb0b6fe99246a7f1d35a831fcecab5e8184b81d",
"T3W1_en_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "b649a9c8f058357a7dafe6565c9197a58e4a2d70f2848c80dcfec19bad8ca057",
"T3W1_en_test_tutorial_eckhart.py::test_tutorial_cancel_from_confirm_menu": "aac1be5bc7fa831505b5ab9315a6b9092e63138499c831d7ff6008cc428e1ad5",
"T3W1_en_test_tutorial_eckhart.py::test_tutorial_cancel_from_main_menu": "ab08cb7cb1e0ab7150cbf37f05de0ff43246135a8a77acf1f48a43284ad619fe",
@@ -29129,8 +29129,8 @@
"T3W1_es_test_autolock.py::test_dryrun_locks_at_number_of_words": "d9c8fc69afdb23206e0497345761e6b95a5f626e49fc36f915cace481c34963c",
"T3W1_es_test_autolock.py::test_dryrun_locks_at_word_entry": "bd05019f2f31071380be45f285331431d88deb21155d335ff1bcfbf46df7d2b6",
"T3W1_es_test_backup_slip39_custom.py::test_backup_slip39_custom[1of1]": "6a5cc3fd0cb3fb0a7008323e8444cb37c7a31937a8fd45f4547141c18e54e78a",
-"T3W1_es_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "cca32f8d50c7968e0687b419fd08bb0d65c57b377c0ca2924207d41b4748da26",
-"T3W1_es_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "7f952802bdd49ac9c588dc5b4291fe6b3afee45a74a8bbedc3868c26ca1f60b0",
+"T3W1_es_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "28dc2b4bc18da6dcc24dcd46a2b86f3ada52723ebf61db8cac87380bea53f0e3",
+"T3W1_es_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "9282354b8f399987b70e22ccc2d4cf333cbe1eefd8851bb0815baf25f8fab56c",
"T3W1_es_test_passphrase_bde.py::test_cycle_through_last_character": "36bdbfa3db5fc7638e14209314a98e71af18a7095cdbe649ae5beb3c34c424ed",
"T3W1_es_test_passphrase_bde.py::test_passphrase_click_same_button_many_times": "0890ae4f4cfe2a99d8a5e8aa24fa9c71df0f88a108ef22feb11bb9b4c3f2fe5e",
"T3W1_es_test_passphrase_bde.py::test_passphrase_delete": "908e3271e0950178884ee7c7644b946070de42df57e8609e0a13fe28711fb38c",
@@ -29168,11 +29168,11 @@
"T3W1_es_test_recovery.py::test_recovery_slip39_basic": "ff64e7a9217f4cf276594abaeed8da8807f25db6681e008e91778fe12fcfdcd4",
"T3W1_es_test_recovery.py::test_recovery_slip39_issue5306": "08d23f12bc01e1a8770f3440eaf07b69149785ccdf7fa7c9251d2430d3d316e4",
"T3W1_es_test_recovery.py::test_recovery_slip39_reenter_second": "474f7ffef4b7c9f808660c454dea5ee4bf7f695ffd02645d2450e762aabbed88",
-"T3W1_es_test_repeated_backup.py::test_repeated_backup_via_device": "5ce9fd21ff63b5e756063fc3deeb99a8834035ca34cf4712cd3725fbaf95a638",
+"T3W1_es_test_repeated_backup.py::test_repeated_backup_via_device": "cc303eacc256e909a2d095380ac477ebd5a2bb8d6e9d485e2d9ec8b3332bd742",
"T3W1_es_test_reset_bip39.py::test_reset_bip39": "ce860f2bcbaecb3ba5f023fcf7f93c453c5ac4f5e0f304edf866ae88cfc461cb",
"T3W1_es_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "30b4d5ad653a76a1aad813935fc9ed05edbefc84613c5b97aac1beb67fc3a881",
"T3W1_es_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "c3830743f433231a8852ec2666c7dcb34e5bf195abd047a5b361e18b84672ef7",
-"T3W1_es_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "20702ebd6d0355efd80d2a7866628fa378c24bb601600fdbfa5f81d758764458",
+"T3W1_es_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "6620712f9985bd70b3377b96b033b783b60a207d2d08ca7a9c38425966794b57",
"T3W1_es_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "86b630741d5bd359ac0e09645eb94dad32715b6de5bfd04b04f7925978ca8773",
"T3W1_es_test_tutorial_eckhart.py::test_tutorial_cancel_from_confirm_menu": "32b3709652334ebe0b91e7b6120766d8bc43c78feb4d9b6e7ac8ca1c1c3146d5",
"T3W1_es_test_tutorial_eckhart.py::test_tutorial_cancel_from_main_menu": "c91fe4a83dd9074ba669d5f4611970607be28a7582e0038bdeaf3a5470c69adf",
@@ -29219,8 +29219,8 @@
"T3W1_fr_test_autolock.py::test_dryrun_locks_at_number_of_words": "f9aa25cee1206025ed5f6c47de4e60a0b0f8c3dada5de4052e5962f0aa7097c8",
"T3W1_fr_test_autolock.py::test_dryrun_locks_at_word_entry": "f7fd1df98f5b7e21ed42ae78b668ef7cedd59bb6b98aba2283a0c7dd2bd1e64a",
"T3W1_fr_test_backup_slip39_custom.py::test_backup_slip39_custom[1of1]": "6b3011d2d2766052683efea2d3c4c1f733e3a0acb71ea8fb7fb1d9ef36991d04",
-"T3W1_fr_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "8d1161dcbfe6660eadac4052665c433d536a0bcfcc9a362c7b5cdf201a63224c",
-"T3W1_fr_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "79cb9574ebc6dd734451e284a99fbcb50c6693383bad7632af64baf43fe21be4",
+"T3W1_fr_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "ff23f2a2ac5142eb8cf95d36aadb9097bd39895c31197cc0d55e0fec2d3a1a9b",
+"T3W1_fr_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "a6d3f531dd77ac2945fcfb089dca1f132cac5397c97e715d21004e5f7aaefb16",
"T3W1_fr_test_passphrase_bde.py::test_cycle_through_last_character": "456a718fa17e2293ce53b000a351b5c1a35ff1ae91a926b7b321f870157c0bc9",
"T3W1_fr_test_passphrase_bde.py::test_passphrase_click_same_button_many_times": "586a97a05b80a28fe9b579aecdac00c2f112fe0efe8bd33ab8fda3350a1d080f",
"T3W1_fr_test_passphrase_bde.py::test_passphrase_delete": "266c5aa3c387b1912219f817312e1a9259f58b7cdf8a3c417b17f550137def99",
@@ -29258,11 +29258,11 @@
"T3W1_fr_test_recovery.py::test_recovery_slip39_basic": "9d1c794c643567b279aa04a2b88396a9373ba193205248267f8d4276e768dcdb",
"T3W1_fr_test_recovery.py::test_recovery_slip39_issue5306": "68715ead511b875d3320f7862deb43435bd7d8f77270aa1b83c0c668d2c7e28b",
"T3W1_fr_test_recovery.py::test_recovery_slip39_reenter_second": "bdcb92c0bf49a25dbd45394fcd7d111a1ea8fa2113e2eb2c9e620036270f30f9",
-"T3W1_fr_test_repeated_backup.py::test_repeated_backup_via_device": "218a5ba579c646050021b0e8b8963c9eba0ea37d965d4cc127cd4c33340324cb",
+"T3W1_fr_test_repeated_backup.py::test_repeated_backup_via_device": "db60b32fadb01f110db7a70e41e20de32a5244e98c2a13edadaedac2737d4ef8",
"T3W1_fr_test_reset_bip39.py::test_reset_bip39": "6172b22f36440a1c68434377e778a07dd9f21df7ae6e3c7558f2eb9d339094b3",
"T3W1_fr_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "c2ee5b100f9ce03bed67eac3e2391284083d0cb9178854603842e8300d26a2b8",
"T3W1_fr_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "a3c86d57d6dad0e0f7a2a2794843021a1d6c826a86c99824ccbb619b47be5641",
-"T3W1_fr_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "c2760a7256c9f532c9d55cbdd24babeef871f639f21d826464b93faac19a58fa",
+"T3W1_fr_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "ac73486be61a25df0a19c956e76274f27efd57d0a526b4f142ba0ea821b3dee4",
"T3W1_fr_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "46916974093f82e0e0ee92574b8b180dc11123531012f3c6080bf55a538d449c",
"T3W1_fr_test_tutorial_eckhart.py::test_tutorial_cancel_from_confirm_menu": "cc720e5a81fbdd17e0f6bf9a3f502705f81040c1c2a401cf81f3c87b53fcbf36",
"T3W1_fr_test_tutorial_eckhart.py::test_tutorial_cancel_from_main_menu": "cf1c2ba416ea2434c6e7bd5e1e16b709826103e48501cdabaf85e51d78ff01ba",
@@ -29309,8 +29309,8 @@
"T3W1_pt_test_autolock.py::test_dryrun_locks_at_number_of_words": "f76978ac59340d594e8e9adabce804c5c61910f4c264c666a8310a1af7ca18c3",
"T3W1_pt_test_autolock.py::test_dryrun_locks_at_word_entry": "12b382d71a499ac1793d344277fd6884357911b8afe0baec832554921795528e",
"T3W1_pt_test_backup_slip39_custom.py::test_backup_slip39_custom[1of1]": "ed41d8fc5a5a494e238a7e027898bce361b876a6efef3ee1194a759c95c2ef4b",
-"T3W1_pt_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "ab421adcffef9630ea3c50155f3bc34e2bd18575552f60dd25a436ff8085e524",
-"T3W1_pt_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "329cd0d967986ceaee3cb9ec1ade28446f5ae82d7d8d393055781abad2abe495",
+"T3W1_pt_test_backup_slip39_custom.py::test_backup_slip39_custom[2of3]": "4a7722649c3a0867f04f9c36747faa171e2ad4bd4bb8811b7edc03e2750abf6b",
+"T3W1_pt_test_backup_slip39_custom.py::test_backup_slip39_custom[5of5]": "5aeef97282675c790238aee28e5491fd173b1ac673d7b53314e0311ea9fc1e0c",
"T3W1_pt_test_passphrase_bde.py::test_cycle_through_last_character": "a9718dd0738c1b26a0e46c0906e8a6e1eb49dafbc70a54580fdaff5a2db1f010",
"T3W1_pt_test_passphrase_bde.py::test_passphrase_click_same_button_many_times": "1c3c01febf77a6155ccaf4ba5c116bc1402adc09d55e1c9286453ec6a36b65bb",
"T3W1_pt_test_passphrase_bde.py::test_passphrase_delete": "a3a81f46cab13901539c40ca2f98f120b571757398460bfe7f40e716ec7910b8",
@@ -29348,11 +29348,11 @@
"T3W1_pt_test_recovery.py::test_recovery_slip39_basic": "26ef0d641919c0293077ce24a9c5bad9c00b2075b4f9c2c5b4d96318834a4554",
"T3W1_pt_test_recovery.py::test_recovery_slip39_issue5306": "2819e45e8bd0336f3f17c4cd619dc544810ae1d4ad42dd2bc4b8012c363db35f",
"T3W1_pt_test_recovery.py::test_recovery_slip39_reenter_second": "80220975dedfad2ca5088c5a0bed3849d736ba7ddde3bd5b44285641c504c838",
-"T3W1_pt_test_repeated_backup.py::test_repeated_backup_via_device": "68fb20e28ec858f8f97d60b132a8bdac3c383f3fb891001bc4057edac8cb89f3",
+"T3W1_pt_test_repeated_backup.py::test_repeated_backup_via_device": "7b39163928af8b4dc09be80fe1a6c73aab6d70ca3361817d652841ac46df2b1f",
"T3W1_pt_test_reset_bip39.py::test_reset_bip39": "fdc8d3f0b32d690428df0bd116dd9c5780bb4999c9fd453f250ea30ef4fad5e0",
"T3W1_pt_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "4fefd269f068725ea03a4d3fc659579f484ea8befd0cd1eb95fb7fd46efb5682",
"T3W1_pt_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "6b5bc7fe9bcbb7348531358812b006d6da01bc5d76b4e80a153d07b1693d917a",
-"T3W1_pt_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "1928353d62c0b125e3f85f7b026feb71537090e15a513e683345721d0c6fb082",
+"T3W1_pt_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "14da4be1b708bb7abf05c20a60fa3b821c83ebc1c9e723869499dd94b676c51e",
"T3W1_pt_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "012de09e2c3e3c676a7be95a2cb2c8859499b46a1604ad69d324d5ffee643ad6",
"T3W1_pt_test_tutorial_eckhart.py::test_tutorial_cancel_from_confirm_menu": "e314b412e98cd737d7b0d2e04d3afbf0830588841ec49db853e986ea3628a11a",
"T3W1_pt_test_tutorial_eckhart.py::test_tutorial_cancel_from_main_menu": "5dbecb7b360e84fdebd700e1a9cc727dede36d0f5abf661f68d392466c42b39d",
@@ -29380,42 +29380,42 @@
"T3W1_cs_bitcoin-test_bcash.py::test_send_bch_multisig_wrongchange": "07afde78710a96334148c2b2220f9b77d465c6c99b726ae266fcb44dbba16256",
"T3W1_cs_bitcoin-test_bcash.py::test_send_bch_nochange": "3483a930617cf0151bd570e5e482aba54ae59ca8c73dad9b0e4ec1b3fa0f8036",
"T3W1_cs_bitcoin-test_bcash.py::test_send_bch_oldaddr": "3791eb09bf6e99227d2502a601450f6dd6a1f06061e4dec1145e30677aa44c05",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-10025-InputScriptType.SPENDTAPROOT--301d7568": "b7e54a242cc8fd77fefafa28a5093b2a38f35e8ca87a7b7742631ae56c414420",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-10025-InputScriptType.SPENDTAPROOT--301d7568": "b1f2d36f826e8e6007f3e5a2cf0affd43cb0256d800cf0475cb1f40c9f70a0c5",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-44-InputScriptType.SPENDADDRESS-pkh-a1b0211f": "124410b2fe89bad3e9a1443e98a200510a6c2e9ea38fb6dce84fafad59f24e2d",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-49-InputScriptType.SPENDP2SHWITNESS-75f8d49f": "91951af785d4ae5ce0ac15ea42bf2d958015ccb085f24e2048bad3ce6a84f4ce",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-84-InputScriptType.SPENDWITNESS-wpk-cee65569": "4479a1f9d146dccb27893e16e4b24b269bfffa3f214f07d2b3bec32b5ea12324",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-86-InputScriptType.SPENDTAPROOT-tr(-6b548a1a": "44d8e042df941ad52e7bde2c5e28434b638aacd675c0e87e8b81189f8d4dcfaf",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-86-InputScriptType.SPENDTAPROOT-tr(-6b548a1a": "ff9e57dd336bf95e144c1c5f799af08f6ecf051cef074d932e52747317ec24ce",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-44-InputScriptType.SPENDADDRESS-pkh-37215d1b": "eab8e47e68a76b34a7833cbe911cb120f9f15e01b235d4411f160e440877417c",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-49-InputScriptType.SPENDP2SHWITNESS-3ccd985b": "010614ec93f8a0e992f7d502a5423ecb531dead3bd2ff5142780d333d7fd3eec",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-84-InputScriptType.SPENDWITNESS-wpk-21c3fa4c": "3496f71111328e95636192599048b21c57e90709992ab7b10f46be76100d28b5",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-86-InputScriptType.SPENDTAPROOT-tr(-3a85f3dd": "99d393ea64051014db065a2c1f89a3665b62563d4d19bbd101086ec957df1ed0",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-10025-InputScriptType.SPENDTAPROOT--591134d6": "49e563317f4762b3afb105a5a0efc342e42a2dce856cf824d9280b88f3a2ae7a",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-86-InputScriptType.SPENDTAPROOT-tr(-3a85f3dd": "f9c42c965f02b8c4b465ae4383dd535064f5a437915558ab157a08cbf99684b8",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-10025-InputScriptType.SPENDTAPROOT--591134d6": "c0264a7db60bc13e1c1c418b431b2d676c1925bcda7ac9719c4d03b599efd244",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-44-InputScriptType.SPENDADDRESS-pkh-b7612f41": "7682bc23d393dbf328caf7ed337743de3a6898559c839f0750d345dc21f47ea7",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-49-InputScriptType.SPENDP2SHWITNESS-4408e6b6": "25e1015c6a7984d741d599d329c0a2bc58e897a1d31668886e404c8310998bfb",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-84-InputScriptType.SPENDWITNESS-wpk-49d5549d": "0075e0c9e7595944566248bd1c8571d6dc40233ac8aa07a33dc84cb7a7ebb5a0",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-86-InputScriptType.SPENDTAPROOT-tr(-51c6f7dc": "3affc2051547ea2a92531391558f6c036e3880c888a34bbbfd50635e625b89cb",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-86-InputScriptType.SPENDTAPROOT-tr(-51c6f7dc": "55433a4d812d624b02da4f8afbe61ca79225df67ef159d80fcfe68b196078784",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-44-InputScriptType.SPENDADDRESS-pkh-671fabde": "53dd5b4d6a42fc75a35beff97670b1de221434f5850c56909a735bd1a085c1c3",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-49-InputScriptType.SPENDP2SHWITNESS-6a0c7b09": "45126bd26cebdc55dcf8ece4e074098970f82caac544991890356a3350412226",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-84-InputScriptType.SPENDWITNESS-wpk-7c651f2d": "d5d6e29c6ba9d8b5ecc57fb89240bf48bc372699910b7c9533745d2bb5473438",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-86-InputScriptType.SPENDTAPROOT-tr(-b37d77de": "3172efbe040d7703e39caeb87d2ba940c7f58a9c4d323b5ef7a4791e0b210a9f",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-10025-InputScriptType.SPE-6c24ae6f": "b7e54a242cc8fd77fefafa28a5093b2a38f35e8ca87a7b7742631ae56c414420",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-86-InputScriptType.SPENDTAPROOT-tr(-b37d77de": "105e94a5bb2e77bfe74fb9aeddc6e2c7ae62a955adcaf7740ecc1fa0ad694d20",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-10025-InputScriptType.SPE-6c24ae6f": "b1f2d36f826e8e6007f3e5a2cf0affd43cb0256d800cf0475cb1f40c9f70a0c5",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-44-InputScriptType.SPENDA-fc66840d": "124410b2fe89bad3e9a1443e98a200510a6c2e9ea38fb6dce84fafad59f24e2d",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-49-InputScriptType.SPENDP-3f679311": "91951af785d4ae5ce0ac15ea42bf2d958015ccb085f24e2048bad3ce6a84f4ce",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-84-InputScriptType.SPENDW-dedbd46d": "4479a1f9d146dccb27893e16e4b24b269bfffa3f214f07d2b3bec32b5ea12324",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-86-InputScriptType.SPENDT-9b717395": "44d8e042df941ad52e7bde2c5e28434b638aacd675c0e87e8b81189f8d4dcfaf",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-86-InputScriptType.SPENDT-9b717395": "ff9e57dd336bf95e144c1c5f799af08f6ecf051cef074d932e52747317ec24ce",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-44-InputScriptType.SPENDA-908dd45b": "eab8e47e68a76b34a7833cbe911cb120f9f15e01b235d4411f160e440877417c",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-49-InputScriptType.SPENDP-07c408b2": "010614ec93f8a0e992f7d502a5423ecb531dead3bd2ff5142780d333d7fd3eec",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-84-InputScriptType.SPENDW-ae5dad46": "3496f71111328e95636192599048b21c57e90709992ab7b10f46be76100d28b5",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-86-InputScriptType.SPENDT-f5c0cb2f": "99d393ea64051014db065a2c1f89a3665b62563d4d19bbd101086ec957df1ed0",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-10025-InputScriptType.SPE-ad017c81": "49e563317f4762b3afb105a5a0efc342e42a2dce856cf824d9280b88f3a2ae7a",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-86-InputScriptType.SPENDT-f5c0cb2f": "f9c42c965f02b8c4b465ae4383dd535064f5a437915558ab157a08cbf99684b8",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-10025-InputScriptType.SPE-ad017c81": "c0264a7db60bc13e1c1c418b431b2d676c1925bcda7ac9719c4d03b599efd244",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-44-InputScriptType.SPENDA-87568704": "7682bc23d393dbf328caf7ed337743de3a6898559c839f0750d345dc21f47ea7",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-49-InputScriptType.SPENDP-08c818f5": "25e1015c6a7984d741d599d329c0a2bc58e897a1d31668886e404c8310998bfb",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-84-InputScriptType.SPENDW-3a2da005": "0075e0c9e7595944566248bd1c8571d6dc40233ac8aa07a33dc84cb7a7ebb5a0",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-86-InputScriptType.SPENDT-0d2d3911": "3affc2051547ea2a92531391558f6c036e3880c888a34bbbfd50635e625b89cb",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-86-InputScriptType.SPENDT-0d2d3911": "55433a4d812d624b02da4f8afbe61ca79225df67ef159d80fcfe68b196078784",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-44-InputScriptType.SPENDA-06441aab": "53dd5b4d6a42fc75a35beff97670b1de221434f5850c56909a735bd1a085c1c3",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-49-InputScriptType.SPENDP-2341fa5a": "45126bd26cebdc55dcf8ece4e074098970f82caac544991890356a3350412226",
"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-84-InputScriptType.SPENDW-59aa0a79": "d5d6e29c6ba9d8b5ecc57fb89240bf48bc372699910b7c9533745d2bb5473438",
-"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-86-InputScriptType.SPENDT-af95048b": "3172efbe040d7703e39caeb87d2ba940c7f58a9c4d323b5ef7a4791e0b210a9f",
+"T3W1_cs_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-86-InputScriptType.SPENDT-af95048b": "105e94a5bb2e77bfe74fb9aeddc6e2c7ae62a955adcaf7740ecc1fa0ad694d20",
"T3W1_cs_bitcoin-test_firo.py::test_spend_lelantus": "41c3a45586ec4fc303c87e45aed462d892184558a8f18009b00ec2df3579de09",
"T3W1_cs_bitcoin-test_fujicoin.py::test_send_p2tr": "eabab31c97c28afa7e823bb2b4008a217513e26b7f682dbb906a83abc435011a",
"T3W1_cs_bitcoin-test_getaddress.py::test_address_mac": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
@@ -29881,46 +29881,46 @@
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters7-result7]": "58cbe28d4f8e882726fe4d356ac005d436fdbd48a007b60bf8cebb6dfa4a6e58",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters8-result8]": "752607efecb7e29cb8011204b7f5f6eb4b300ab767bb11e963776b8f087367a2",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters9-result9]": "28fb5cbeda7978790c98a88c9965f04b1fcadab4266d7b3e7dd7540533efe7ac",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-derivation]": "971b23a029af1571ae8a10613b86958d10097394eb1ef60d3ca400867b1fc9ca",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-trezor-derivation]": "a3bcaf5e4628f2a29aa55195c086794e4a91469e086614117e70fe156d0d7c56",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-ledger-derivation]": "097b74e8c672ff44a5e871fb3f8e42a06f19a4551f55da6c41c1dc78e6ef83a8",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-derivation]": "74d99a30efaf986afd0b4cd0a93c0cb5658d4f5fa224ac8c929bb3b9ad04bf66",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-trezor-derivation]": "e746877c21f2eb6935869168ea4f0a35572c109189e7f216cf179810a610a36c",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-ledger-derivation]": "a5c3922c24c056e7bf056b7a6462aac3f3858a7adc428bdca09ae3362b1919ad",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters0-result0]": "c8b819d36ffb9912fdbc760bda206f0e77fe9f7f352f9ac919f864ef19bfe939",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters1-result1]": "21c75aead2c24bec4b3ec1ecf0b370a8eaf08f9a81f770b272d164a5476dcca6",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters10-result10]": "0ebf14eb25e67d2641a2fc938d82f70456be5b818370fbe4277bcbfac78b5296",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters11-result11]": "2b00d05f159f535b78165441ef8930361bf23072b71a22afa5da1dec165b2276",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters12-result12]": "20afe95a00e68528bf3b8031f721e14cc478b30de47ffe963e5c7ae587602ef6",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters13-result13]": "ee75f6e905b118c1f1c3b47b1a2a063178989f3de48711f874e6163e51a14258",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters14-result14]": "581b3d0118616a8699e37710e63f2a3aafc0359d8dfa5cd0317c1ed2277ef9b9",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters15-result15]": "0ada6256068372939841e71716db4058e9c4aae3779779f0b3e0ad1042e1cd72",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters16-result16]": "f12b374720ff06433e543dd151525494b2f0f98da2e65dfe88f9bf45ccfee0fd",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters17-result17]": "a402494a9e22a33271221184a413276f47a94fef2ddbd0c8fcc42831cdf0f0c1",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters18-result18]": "8b5b70e93602ba8d2f6aaeecc2f69c330d46c22f2d2e1c875b9e7f12967cae82",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters19-result19]": "9ce1e1f259a8406c17cd464f1ac2f8675efa99e04edd4bbbcfc0a14328bb5381",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters10-result10]": "ecf1125bdfe01739e9f5e0e4ace62bac5610a323d6ede851e03ca254c51bfe2c",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters11-result11]": "098fcdaaeb2c7303f4fd2e145858f3ddae67f39e66069ae02eba5f8974a16eb6",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters12-result12]": "d6c7c091782a4655e21fb689ae233a9c373ee823c04a56a2ab587160cddd8cb2",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters13-result13]": "9675ea02466295e52d83cc5dea7be90ab132d645de3312837efb94c5bcc6b612",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters14-result14]": "e33e2151d01507a89e25b3b8cd459386c36df66c7d10a22e4e77aa5151eedc9c",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters15-result15]": "e9f3ac376c9ec5d3cd175d1003a58100619dfc3a4313fc51c434e39c3fe632f8",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters16-result16]": "512f63843303f8e9a2e53c61ef7f5e5b86b1270b462161be2ff89395ac088544",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters17-result17]": "ee4d897856d1a7f88f77357131e86c99d9c686207312d47f8b789b3fdf9c9ba8",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters18-result18]": "d452eb32556fba9e27adcdb2e528633536b68079b7375a30120da8d23d51613d",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters19-result19]": "79a3127126f90627f1752a79b389ab649fa3677ef948053977018804ad6c2d68",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters2-result2]": "a3c160a41e09d381f403f439f59811d7bf0d0e3e7f17e9397e7a0179171d5b18",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters20-result20]": "5e95eb2fffbada434423a5c26593d4745eeb3204ef2700060e353435131e0b39",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters21-result21]": "98579811249be643e0aeafaf969660dbe4287b347ddafa5e60513e5d2a3091ec",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters22-result22]": "aeb9df6e19caa5d21a96466a5252121cbc32fdeae84e5888c36f41e99e18dc95",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters23-result23]": "0d8287245afa47c3481cb0e58c2d2d1109ad9cfe88229cfcb7b455c92687b7ad",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters24-result24]": "167fb1266e114935639e1e41050736b6e538442636489ddb78be1cbc0b12720a",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters20-result20]": "3ba3ad6145ca43f728a288b5d77037856a48ca5d9be29be4e03967c235075382",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters21-result21]": "a5dfcd813c79e7a33be55e57c008d777ff6ccd9c8d4c821e3371041e4a2eaed4",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters22-result22]": "91ea275b62d759f79e747e0573138f6872f2db58974c12f59b9eab2114d0ef28",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters23-result23]": "679e622620f0be6cf127fbf793450b735c90c7f781e37913f9c674888e86cd43",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters24-result24]": "5f182f59ad4a74e78cd06b9c71185c0a4c11ec666f6ca9a05b211ed31ec11981",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters25-result25]": "2280160bef4feaf1dd29f7e95fabc64e1f647cff781503c923a7ad4bf9576bf6",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters26-result26]": "a6a8d2bc582b70c7225b5ecda4f513895209d6ded4521562b2f4221e2d94dc4b",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters27-result27]": "cdac0196f97a8075fdb5d020b092d9642f992a25568ae86764389ce396a94146",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters28-result28]": "265045d3a1152516ee8f1cc747aad2bcab3c5b2c6c96e49758170a66b8eab470",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters29-result29]": "471cb9c980f026bb336921b8af89fe944f481577572b11fd7f39f95e5e4ff58a",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters3-result3]": "ae3f0bdb6b16cc656ec4e2ba2d7ff4620f20de22d6672ed36758c78101997023",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters30-result30]": "ce5dd6f8b88e9b96b41d718a9c11908386a95701b7f267b24a9348eae71e10e4",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters3-result3]": "c637930027f05d2c23c29472f54ac77d3f92e0b9b91e5fd41beaa576a51b6744",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters30-result30]": "6b8b92fd1f910755bdf563d1962710f68c44a5f189b29c51bf0ab6a665bfcdab",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters31-result31]": "7afcfa810b9370a8ba723f1589b936a4bf8bb17a7bf308381cbbe0373a2db313",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters32-result32]": "1fdf53cec804be73eb7afea44d19331aff7ea79fbe8d79e40b88868bbac17880",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters32-result32]": "f72ed50a8efb8d5e409c32f7c4e0841a87e59ef11ea85c8adc22728f24d63d86",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters33-result33]": "dfdfeda36cbfea91fbb2e21b0840dbebba933a723384b0e073e281aa68f42afe",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters34-result34]": "25f33f148188174205979a77fb13c95bc95bd782a6e0d8d66e55570bfca682c1",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters35-result35]": "597f20a0062d6b10302d71316372f8fa273f4eed421335057df6b5e110ec8f02",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters36-result36]": "f678f764fe74e3b76ceece1b347585c3e896566bb40b4d2c710aae99ad2fb76b",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters4-result4]": "4985fd06896dbb419746d0ccaf1e048e7bc6b122cd9439fe96ab5d81143187e5",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters5-result5]": "354221592b919ffd0aa8ac9c8b3a883dedb189fe69aefbd5eda6931f66442b87",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters4-result4]": "8206bda84416742af54ec98056645cc9d337fa82337066d37fc2241bca583ac8",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters5-result5]": "e23efa645f36a97a318cc1f337751a0ad588778bf1ae24ec21840def89e8baa6",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters6-result6]": "c0f92a0c27f5b46cab2c4e306201427e7c30ac94b596c9fdae3dd250001af410",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters7-result7]": "608b7dc0bcec223e3bd8f377ec6b2167f79b186e4f73a9e4c1cc95c94b098622",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters8-result8]": "880d1262b25f26c5445a9a2734e90e37a7ff0c104c6653205f8d36728679f885",
-"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters9-result9]": "334faa5b690c98e3aa9a5bb8040368ac5ae13d9f9aee58621ee0aa493f291414",
+"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters9-result9]": "161aaada6042dc3ce8e84eac75ffe6edf2652ec68659ae84ac084d34ffe4b1b0",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_public_key[icarus-derivation]": "0491e33f1ebaa2abde271030598c4d5d6350c18bb22d4f1c8c719fe2e67c0bd4",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_public_key[icarus-trezor-derivation]": "aa9f79e6c0a3cd213a846b917fa16d646c7aa34d54adaeac631096d78d56735f",
"T3W1_cs_cardano-test_address_public_key.py::test_cardano_get_public_key[ledger-derivation]": "73661a8dd4228eb7f832d5b5cb9bf3f42e875ab140bec24070761d8d94ccdafe",
@@ -29961,7 +29961,7 @@
"T3W1_cs_cardano-test_get_native_script_hash.py::test_cardano_get_native_script_hash[pub_key_script]": "6a8ed1ac04f3dcb4bc5c06005d6ac0e90ce3afd25a45825adca9768942fded01",
"T3W1_cs_cardano-test_get_native_script_hash.py::test_cardano_get_native_script_hash[pub_key_script_-1579fe2a": "7c3337730c8ccd85b1bfd38c3a15b77b0ec27d5481f6daf8a591403bc3fcb345",
"T3W1_cs_cardano-test_sign_message.py::test_cardano_sign_message[ambiguous_ascii_payload_falls_back_to_hex]": "942b9fbe7c44f2bd37a31287f969384b1c386ee51389c28f9b5cecb87a020cfb",
-"T3W1_cs_cardano-test_sign_message.py::test_cardano_sign_message[long_payload]": "663cd73412c451d5b34030bc01789fccf79f40f9bbd0d96c89d5515359322684",
+"T3W1_cs_cardano-test_sign_message.py::test_cardano_sign_message[long_payload]": "4ad5b13a896c24196e2702666f5275f7025071ed5f51750f1fab8fd7089f5bf4",
"T3W1_cs_cardano-test_sign_message.py::test_cardano_sign_message[non-ascii_payload_falls_back_to_hex]": "105ecb0a4c80ce9d58cccfdc01f46c6aaad19fafa832e65fb9a26f0c1f5b88f2",
"T3W1_cs_cardano-test_sign_message.py::test_cardano_sign_message[sign_empty_payload]": "106c05fa7cc42901f462cf3c61c5243fd9a747247764397f337183eebf153a21",
"T3W1_cs_cardano-test_sign_message.py::test_cardano_sign_message[sign_short_ascii_payload]": "8c8b1a751db1ce403e7bc6bbed065231920f0cc39345c91dee3b5073bede8372",
@@ -29980,13 +29980,13 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[mary_era_transaction_with_multiasset_output]": "4fa119b3b6d5afe54ab62fbbce341949a7777c2182c7d4dbdabf3bc9d862941f",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[mary_era_transaction_with_no_ttl-validity_start]": "8896149c3e57c8494a948462262d4a4d0adbdbf571de26d4b0547e9219547995",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_a_required_signer]": "6ef5bf89c4d943d0bbc9f0c25d1e62ca993eb9a8b56e24628f53687d51692899",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_most_elements_fille-29691455": "1b9f582074fc22b7e733fe76f75220bf0f30b7a454264d84471285f20cdf62d1",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_most_elements_fille-29691455": "826d160b4bde4b3af8f47810999acdad81807d6d27c40fa3cebe3c5f74ec9667",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_output_datum_hash]": "25fb55eaf6c89b731f06bd8a2a8152f16577eba1a05123aa46647e3945262644",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_script_data_hash]": "e3bab3c4f85a475dcf84cb7955ee5e3bd3893fff71133d7313b6264c7558f7b0",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistratio-1ab28f77": "5b4554aea50907681992203dfe7fdc730360566f034b5fe853f9bc0789077f54",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistration]": "5b4554aea50907681992203dfe7fdc730360566f034b5fe853f9bc0789077f54",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-a144c34c": "b6c39da06e6dd9e74cbedcafe794b4e54311c7a49f8397b3422f8c1b8c8f65a8",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-bf5f9707": "535a6a7fcc010034a6e746dcdf793b7fb3abe25d6bf99aee2fec9ce6a6d06f9d",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistratio-1ab28f77": "61cee546e7167ae0e3b96c157ebda0fa62e226e998bac5f9d95b5aa0af7b7436",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistration]": "61cee546e7167ae0e3b96c157ebda0fa62e226e998bac5f9d95b5aa0af7b7436",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-a144c34c": "e474a15758ece5955c51313808b23eda9d4d323a00e8b5d79bbdd6110b18f5f6",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-bf5f9707": "b534ee349ddf2552f90b49faa794d5553b91fcecb5b5e76170cba97342ad32f4",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_token_minting]": "79019122eee7e3231351647f375ca43a29cb408279047ca99e10d6054caa28a6",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_a_required_signer]": "a4c349ede0136ae686c0a0b454d31fdf2539c060d68a9702cbd9c90f95b0a13c",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_both_output_formats]": "b7e18e7d8bd771f69342c90716df6dbbc0f5a601f30b045d0a1734a71da0439a",
@@ -29995,73 +29995,73 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_multiple_correctly_-6545455a": "867bf83fb4c61a0a997c3314b989b7fb5cc8865eef760d1076f9f9e9814e38e5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_network_id_included-d9df16f9": "8aba568838fe1a98a819755bad03cc0e7690e36044425c85f9faeb9a1e39589b",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-57a740e6": "d69233b732d644193b9a06d14c4bf7cc118dee1ccb292488da3a1737996754a2",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-f709f55f": "756851a66841327cae89cc93f38f5d948a75a6cd281ebd02497730db68933f3f",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-fab7e996": "5039dd02438f1dda6897159a4b830674d3d4c7d1b4bd2db43234d81ef908d6b0",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-f709f55f": "41c7760fb8c9cfccdb548af8b5ee776ac5b93cd7c0810c84d2ada13aefbc35ed",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-fab7e996": "84b23f43ed60a63bd4264221c0dec75f0ef2658882c7f4e17356c3fe204ece4b",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_output_datum_hash]": "5ba410e068b2a9f9007b6a5ee992fcda4e9f2523919fd74ba29f12db6f3a7f8d",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_output_datum_hash_a-84ad587a": "8896149c3e57c8494a948462262d4a4d0adbdbf571de26d4b0547e9219547995",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_script_address_but_-b0da7209": "e2d76874eff5433bf9db182324a6e62a63d40d37613f3d8db81503032c44bc84",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_script_data_hash]": "654683152216a97279e9d87a583126668a01c605b32d6e6df7c4ac5333024465",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_token_minting]": "b76fdaa6290a218298f109847d19b2f66de07edda8b365069851dc217931205f",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_an_ordinary_input]": "beb773a98d0ff90fcd918130637dd49f1ce7e2e750d02d4f7e8e7dc0a358c2fd",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a33e6741": "4ffd7ebcd6ee363b963fd6db140a513f7c4e76d244aaf443d038c6c3c2c58e41",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a6481374": "27cbef7a38eaf0567d4be512799db3a2fc9111c2e558e75f474a665f034b80f9",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-ae657c7a": "c9c59c8260a7b617fee4974584406b8fc72f79f93c3150ed9868770ec3fae40b",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_key_script_addre-d3366a63": "14a985c4fd3f61fe70aa2db463a1389c609b3c993f17f1f151fe72826f8817a7",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_device-owned_collater-8f38b4d7": "06f985efef89f043be32b058b2570128935536eeb18975ea667aeabde0dbf757",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_external_collateral_return]": "71cf9b7a90168dbc3ca5906fdd11d83cb2aae127e03ce01ea9e1535b486173c2",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_output_datum_hash]": "2386823142421fb33da1ce65762f62883f05cc9728b8a3097350be092a932af0",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_reference_input]": "aa3918443b811238b6abc6010d0bd757c7cbdbfe0c1c06ffc90ac776d75b4cb1",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_required_signers,_ref-b419b9e1": "26792a8e92b814b0d72959645c138af2ffc29bbddbaaabf8150e9e81b4a2af11",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-6a67c1eb": "4a3590458bc6348d5ee885096b5ea0d6e29c3f366de1bc0044d645d272c334b9",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-72ef969e": "950ba13c01cb2d4f7dbf330c9ee2b5d63fae991207bf7122e8ccad7a9ca1b7ae",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration]": "97d6f509f513c0ca2e421ce37bcc8e21b916784dfcbdd814191310c8c29d3271",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration_-78f5c748": "e8e31f6ebc5c2266ce9bd819bbfa1bbbe8d1771db9fbdc8fc9eb9d0a5b74ec20",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_an-4da9385a": "faf0360a46d1720f329e2066a11752a1060ceb4fcd5f11d4337c9f9c21cccddf",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_ce-46b0a250": "e141e0fd93ecbafca8cec6ccdfec38f58a17b4c2c80b1aac9d79ac9760d8a4ee",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_token_minting]": "bb4c4932eee87b4487cf36cc74a15ff9fb05a5aff6fa451075455ef1912fdc93",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral]": "c3e985a1bda52d32909b1668b4f0f1651e9834a2f62e4a576d8e1a5fc6dfa9f0",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-3f0b305a": "60f3f0a1f61d6fc5e10db33b4ad5deff92e5dda143e5dded55e4a43034e45e16",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-c92d773b": "e89aa27b1b305dfad2e8db1e87bb6bbe9c2e258d21e54a90cbf57caf4c1cb71a",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_without_script_data_hash_a-9590827f": "52f2a76f58f2a9e98bd50d1a074b862d0bc891895c838882cc18816b90498d0e",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate]": "89d4b6566ba5a4a44ab3274d68f4187e505f4ec2fd3e44236621e98dedf80592",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-336f4a44": "89d4b6566ba5a4a44ab3274d68f4187e505f4ec2fd3e44236621e98dedf80592",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-d3427614": "e19179730b326e3526a67372be9b90e00a86f1d57c4e4110635f7cfee332e7e2",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-e1e17a76": "dd84eba825b8cb2e9e7f3419a491273f20623049c83fa845d9fd4784e566f3b6",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_with_zero_margin]": "df1886614d48d6e2326dae640dd78c2c356878c82f21fa96715012bb16bb6d8f",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "71b328a0139dcf31a45b230ecc3aba2bc572b0f8548e96f6be08f9979bab49c1",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "689b36ec3a443d7b6c6a3f423f45ab5ae9441eaa60fca44934535f2adf713da1",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "aa50f930d775d6df23cf47f055168b201777eec32f10e0ddb5474ace198bc162",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_an_ordinary_input]": "0e0c720d264781bae2d8ef2fb4a6eb99469e9c87f8ee2fc3ffc405a80d82516c",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a33e6741": "be9709b7d58541396a96f325d28986eef83c49759027dfa5406c15e596644dd1",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a6481374": "6ed10203a75ac8de639cd230281c5f5e69e25140471c2f0677deb5a06ebba10d",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-ae657c7a": "18912fcb6eae9354f92498bee8ccc67978a56a4b6a81d750282f168b46bda3f6",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_key_script_addre-d3366a63": "0ae0b15ad6275ac4538cf2f7aaf25e2dc5d551695a080c71ba111a0a7f4f20d0",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_device-owned_collater-8f38b4d7": "23863045a8394b6994f92e77adaefcea2def5b8a6db65ab9b75edab541fc54e1",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_external_collateral_return]": "81471b2bb46b65d1945a95f37f3c5f433e41724c82c60ba82848f80458cd8a53",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_output_datum_hash]": "55db7e95a569ee6ab45d6af307fcb6858fcb7ea2ed1f7bae9f438b2431b49c91",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_reference_input]": "90c7790de3bde3d2e8be4ea46528a9b4a2be6e850b93cf904cdc5c6a39a55612",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_required_signers,_ref-b419b9e1": "d674cf204f64f7cc3e34961902a41761fae035f1d2e372badb7180f0ec5955d8",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-6a67c1eb": "0bdf6c584d63c66b9b7cab1a9aea51f976eaf8a33fb2458ae10c537b080b8984",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-72ef969e": "88f419c4ed5dad3320272d6238c313b06a7f90d46ed29c5f699e3d362aef1e00",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration]": "6e6fbf2d99aa1badaa9d02782989fd4f9922dd344bb17c6e097c4de896277b90",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration_-78f5c748": "1899005aad2b85c6a2b8050c09d9b923d6b07c9d02c7687c99411375f72a8320",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_an-4da9385a": "e280e40a500e6a38c3143461b3bf530698021fa026993c009a4d1c7222e051fa",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_ce-46b0a250": "eb9872979572aeec71d0f6c359c08eccabf5ab86a7ee2f41afd325928dc55758",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_token_minting]": "046b25bda579540c273809f338c212c9b1e04c492d0196d6d516e030dc7bc40a",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral]": "9f42caa344b92200c51eb3976c2aa22f40c336739b2ee3143e840a6733434a5f",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-3f0b305a": "8ad324cbc47f67985e809adc4c2988eccfd77da7fdf230d975ab114bb2e7ee3c",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-c92d773b": "13cf19afe1f30e3c663dc5966b08958dfc416e78034861d27c96383e9192c66e",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_without_script_data_hash_a-9590827f": "8ee505bccdb86df260fa8f0cd471b1da958150cd955590cd0d56e5b7188cca8a",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate]": "219a1fa60a4e5955680266387029f5aa58616073ca66cad1291ecfc4389edc91",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-336f4a44": "219a1fa60a4e5955680266387029f5aa58616073ca66cad1291ecfc4389edc91",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-d3427614": "a332b01c5663a229144cdce75d594be3a9907547534fae66234f57260da36d95",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-e1e17a76": "c00cf5f21747f7d4e51be25c94421c7ce58d626798ad49f3b45529ad9f1b9da0",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_with_zero_margin]": "ad7486ba644d51735b0581ae47c016c25326fb168203f3bf95cff5f3342cbc25",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "3435b008ee69ec7fd74d771b6b59742e1ff4adc1c4f6cb1010110ebae2adf868",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "ed8ddbb6ba6bfea690e6933d0a612367b11c67e566d99a085134772aa41cec3d",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "4482deff94be7525bae5902a850b9e34eb6e7e1eb9fd33adc7fccd88747f9453",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-0c37e6dc": "07ac5f62e01073b80dcc09789f3cf5f39ec4314943bd4d57509c5716999eacc9",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-7f1d12f6": "0ede77a671160d35a68bb0f0b236118a0d2015cdf3e8a0743af87231fe121d62",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_output]": "654683152216a97279e9d87a583126668a01c605b32d6e6df7c4ac5333024465",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_script_address_a-56fc16f7": "84f12ab5f22d04ecc1308842f85ed270fee8e69b4871cd2439aa4f9a9bb79853",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_enterprise_address_ch-15518a4c": "87f59d3d4b6688175abcd7202c5eb1ab6bd9f08035edba0be95aee2af8e1fe7a",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_pointer_address_change_output]": "8337f1c8c89bfbd9be91d086c8dde56a6e6e675bd6f37598e7e32563bcb7da72",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_certificate_with_no_p-0bbad967": "8835cdcf2a91cd00c12fc54437f615c458bbcea6106f07605b7846a84d2d01cb",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_on_testnet]": "e3d60f9be80702daf0a1382d37d71b9d08b86b1ca54d19a4537a5855855f3062",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_certificate_with_no_p-0bbad967": "6efdbd5f0899d52dd4939a59ec35099d7b1eb1fc43a1ecf061ad8fdc1c0cdaad",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_on_testnet]": "a00e73fc1aba870e40fa380473057a554807a921a0390a5e105d09df0f0a8af5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[testnet_transaction0]": "92fb47e44671e4170d04b2010b60645ffe986c009246620a66dee14c78743ee7",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[testnet_transaction1]": "27402f63ab3f8cb914fff5bb382c8e6cca1f643299d9dcc6f93f2d255df748c4",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_key_hash]": "3f2dcb1cbc030ad31b5fdca05e1b6d2d37ad19551ead0b8bb119d88a884bb923",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_script_hash]": "ed756b7331fd4370270a27e4dff15ad16da92ba242d406d1933d9d74684fb1ed",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_key_hash]": "59579d1a3beef6f1b8393c069fe9120709d2b129e8f87e6c20d1b4a323201aa7",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_script_hash]": "30566763d442659c5d1a75d40afec3b0b1eb75821afc54387c8dcee77986e5ec",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-5d8f87d7": "359d5ce0c4b7aab115713a357f45cff574e373e9b8ba7feeeb5578b0899ab3de",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-d7163ee4": "00314592579a61819db3deab9e6dc57f42f351cd1d82f0c98f39b219a552e5f9",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-d7163ee4": "74606a2c9c7b2a88eed4d53db5436b39e0963c0533dc01b9a9d475f7c61d7b38",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_auxiliary_data_hash]": "a4c349ede0136ae686c0a0b454d31fdf2539c060d68a9702cbd9c90f95b0a13c",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_p-3c7243e1": "db3302f53e7c67a47ada47e9125967d19f96fca6407b71ca19f8e9156d112f83",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_s-20438873": "a4688ca58b0057edd2e93a60348d48fe9ff3a111ede0f67a6827bce604f62ab5",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip15_registration]": "879c147c0e6437d5420b313e97351cddd4d4b7059ba267d5fa0e998ee6243980",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-a66e1a50": "59e6c1db4dd6a8602731fccafa20cb4965ad7f1714b49df3fa79c72e240cf81a",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-b18e613a": "22693283724343d9ae8a4753cb5c61e3e7de9042e6ba93651347bf3f5d0f5811",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "1d7fd700d14cbd83ae5b506318bf7825a581912c046abfcc5f3c8375a4eae5ad",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "a966b06752a4da48032c385eab2b9d76bbbc688b8e187a019f3b96afb1f43524",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "5c4c75eeef68738d742e14cdd8313779af4c8d5b7bd9b95540b410078da2594d",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_deregistration_-15956782": "9fff8b4ce89b58507cbf551076e664b2636664c4b1d4418fbff70d650d1bcb71",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_p-3c7243e1": "5ee997a25f9d77faea2ea1d17bc8d879859c8c399bc0e05319bf2f2260389948",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_s-20438873": "3164ab443e7b3a64e9c90d789ce68e9af168c005f653ddbdc69b52557ee6197e",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip15_registration]": "c786f9b8c3f17d024a0c18e0f9ca6c48505477e2e372a657c82cd56482bf8a62",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-a66e1a50": "6f24701a6a913a3988339ca13bb21ca2b42d43c6304f0aa76d4f29f3911e429e",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-b18e613a": "efca0fe39472f481f9973e81a4214591703b29003b42f8285e9b68cbfc8dc47d",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "7a14512eb98c3f8fcf7b6f4da27783d7d73c22d0a5d6340f1648220f12e4f92c",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "73715387d2aad0963a6500cf7a6d2a45389e42423fd79141270d29b52cbcfc1b",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "ab956d98b43d3434148a47ac502db6ed520bdb7d30c80fed9bf51e51fbbe0e06",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_deregistration_-15956782": "3ebec12820cda2504d82790469b2e55b867248c23580aa032c0994428a1cf34d",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_registration_ce-19717d22": "6a0f2bf74331ae232bedf8657409256cad7d8692bc36024c9c7ddc926ff741a7",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_registration_ce-8a443506": "6a0f2bf74331ae232bedf8657409256cad7d8692bc36024c9c7ddc926ff741a7",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "bcb58597b732593cb3bec0f126fb0444c1e041fcb5b9e6a65d4598fa7168623f",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "c5137a9e026da9dd01975dae71a57979ed8804965742e4fe1e07b8b984d3acf7",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration]": "969c93fe307e767acdf21a6ccb5a04a4837bfbb766c8f30a468bab8684829076",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_and_withdrawal]": "c10d5ea7bef9b1c0e266b552d7940b0e9be0d18e4c4ef705e504931336799f16",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_with_ac-9ca046f0": "839a1e5f4b9d090734fd95791ac3a3a35b0672dd88ce120dffbcca78fe05e9a7",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_and_stake-3fdfc583": "7a806550a961e89bd86903ef1c8c0380158aa57e23e8b8ce3f1852930e7bdd34",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_and_stake-3fdfc583": "b21d737ea2664313c0150a4bbbd4847ab3f26c67c653315256ec9f540c2a9b8b",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_certifica-e7bd462a": "a396a0d39f680b4253dc1db07f98ae8ded74987834ef0ba64b5fdaee7ee007aa",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_certificate]": "38cc7fc60d3cc85099db7da5138ef944c1272edbb7c97d53737055ab0ae4a39d",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_ttl_equal_to_0]": "654683152216a97279e9d87a583126668a01c605b32d6e6df7c4ac5333024465",
@@ -30069,7 +30069,7 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[1854_change_output_path_in_ordinary_tr-805f9bd0": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[1854_input_path_in_ordinary_transaction]": "a9b4f3843238d49f4c39d3399254075e7b577e6d4f9d5a101222b8d0413fafad",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[additional_witness_requests_in_ordinar-9c4f94c0": "a9b4f3843238d49f4c39d3399254075e7b577e6d4f9d5a101222b8d0413fafad",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[all_tx_inputs_must_be_external_(without_path)]": "cef72479d78d9061bbe5213cf1f05edb4b337cd9a24b667f74b590ac2918f5ed",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[all_tx_inputs_must_be_external_(without_path)]": "b70ba9389243b14092a1d99acfc3fb71b5867706c4e96c6a1c933f38470e722a",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[asset_names_in_mint_token_group_in_wrong_order]": "40c91005a4cb1885c593dab09352cdac4555f72c564b1edcf8517c5f61ddef35",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[asset_names_in_multiasset_token_group_-7c1351bc": "1552d66c24e5de46e6c15775c1fc0c4fcd993db40b0cdbf62858a250df665291",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[auxiliary_data_hash_has_incorrect_length]": "f364f544a50424cbaabf88fff81985eaddbf6c76ed7ae97e440736cf0d361601",
@@ -30098,15 +30098,15 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[contains_withdrawal]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[fee_is_too_high]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[inline_datum_present_in_output_with_le-43c025ef": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_change_output_account_mismatch]": "f7a8326d5a9788bdaebf4600a7ee2a2e6f72f55be71982300d08a34c8e097e86",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_change_output_account_mismatch]": "cbb30da929b844d9c705ba605faf6a9e30b19d771c1b490f0e9dee572d32f88e",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_stake_deregistration_certifi-b3383de2": "2387f7389d8e7a7efde9a4aff6042ba431a7531fc30569002ee5da36770238e1",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_withdrawal_account_mismatch]": "dcbeb63b0e5fdc6c789f1a93bb9d310262a2281bbed56d09ea8e68c56f94e1db",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_withdrawal_account_mismatch]": "53b52b284dd0010c7abc366669b388a6ad210ad72710a272b8843afcc46689fb",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_prev_hash_has_incorrect_length]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[invalid_pool_id]": "328761798a4a34d3e7a13ecc99f7110172d1bcc673dc8478fcd5896224c7745c",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[mainnet_protocol_magic_with_testnet_network_id]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[mainnet_transaction_with_testnet_output]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[margin_higher_than_1]": "328761798a4a34d3e7a13ecc99f7110172d1bcc673dc8478fcd5896224c7745c",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[missing_owner_with_path]": "a1f54e3d002878ff8d71861e14ab09840943c8090a80686af0ef6d5d2d0d6b9e",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[missing_owner_with_path]": "10840eb3361eda2a8c914684c5eb5c06b9f3a876f894315d3e4cd992bddd2633",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_1852_multisi-b7679330": "2dfaaf16132bee6ca5a492e7b51f4521c88d8e83ccbed667993f6d4524bccf5c",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_a_collateral_input]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_collateral_return]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
@@ -30149,14 +30149,14 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[repeated_policyid_in_multiasset_output]": "c760a1a68e9e2b47519d46f94dc444a4a9fec14fc97dee09116c56bcb720e775",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[required_signer_with_both_key_path_and-7d9a3c59": "d0a79df21fbee4c35ff056821e831c23e25ff4156e43b23c0c8281220f524154",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-02b129f8": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-11c8b442": "f412642a86543d3819b99fa73cfc9b6f9c06810cfb0624d55784b068029ad1e3",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-11c8b442": "6dda2034d654f47f7bae0c8657aa392087ed2b6ce4e9c6978b6514bb00bcdec0",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-2d1899d5": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-3f8170f6": "f412642a86543d3819b99fa73cfc9b6f9c06810cfb0624d55784b068029ad1e3",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-3f8170f6": "6dda2034d654f47f7bae0c8657aa392087ed2b6ce4e9c6978b6514bb00bcdec0",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-60961d51": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-790fc948": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-883e81d5": "91bfc3ebf84fccb2fde0cde3c1b95336dfc7d573758170e3dadf3b9c0e9965ff",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-883e81d5": "1a76afde733452c04aff70c8222e396e2d22c69c639f63029718e232e74a9a6e",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-9ae6620c": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-c3588066": "f412642a86543d3819b99fa73cfc9b6f9c06810cfb0624d55784b068029ad1e3",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-c3588066": "6dda2034d654f47f7bae0c8657aa392087ed2b6ce4e9c6978b6514bb00bcdec0",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-d0eba163": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-e7a533e7": "328761798a4a34d3e7a13ecc99f7110172d1bcc673dc8478fcd5896224c7745c",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-e908b1a8": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
@@ -30173,7 +30173,7 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_both_auxiliary_data_b-6f1ead27": "7770ac439fccfb3da0a1493da457f4ef73a2a1b184dddf01a7212d40ae97ec1c",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_both_vote_public_key_-3e8cccb4": "7770ac439fccfb3da0a1493da457f4ef73a2a1b184dddf01a7212d40ae97ec1c",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_cvote_registration_co-2dcb1cea": "7770ac439fccfb3da0a1493da457f4ef73a2a1b184dddf01a7212d40ae97ec1c",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[two_owners_with_path]": "bc927be5ec3256814a88cca69a397b1d06ed7a2074d1580a86a533090931082d",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[two_owners_with_path]": "988db617a424851f980953313e895f8dcbc566a0df122b3d7837503242eda5c0",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[unsupported_address_type]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[with_multisig_transaction_signing_mode]": "4f0f020952c6ed5624474c81f26c8ac8e1d2cc9d4ec74c10fd71de065dace8ff",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[with_ordinary_transaction_signing_mode]": "c47df2c7ab5761679ac934cf6e839f9e320fafaa38887705d6581ca73e9dab50",
@@ -30186,11 +30186,11 @@
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[withdrawal_has_non_staking_path]": "d08931240e9fc6b64497244a1fc2d9ec77b71b0f0321a54d179a3d1e0689d36d",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[withdrawal_has_script_hash]": "d08931240e9fc6b64497244a1fc2d9ec77b71b0f0321a54d179a3d1e0689d36d",
"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[multisig_transaction_with_a_requ-c2fba589": "02cb3d77b765bbf1b7eb3db6d5b7fdde317b087f85ed2805cd53a9eb40ddbf47",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[ordinary_transaction_with_a_requ-9728607e": "8cce806b0081e46750a1539f3855c623e02dee60fdfb65c97863913dc3de6821",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_reference_input]": "bd6c095735bb3c97221e3849b72705f296c46ebe15f108fa35d2a513f899d51b",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_total_co-e846c221": "4ce4940e3745ab4c1066509055c67c0aa6aa321c2395f65f8ed98d6ae1880428",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_cip36_registrat-b9111c27": "8287532cc046291326b474c05792a5f56da8bc6b48f896ac55c008d7b17cd1bd",
-"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_stake_deregistr-6e84da2f": "07e9d7c5a6905dd3142760bc4f7771d1f7f373f5b6c2fd32e3f39fe58f5be660",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[ordinary_transaction_with_a_requ-9728607e": "1b31ef51cafa82894dedf968607ad6e59c74964d96de91903f844d041a416ee4",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_reference_input]": "3810df99b0f73d39665cec5f9cf5981d3f6b53f97b68ced615a3ef09840c1150",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_total_co-e846c221": "393ca01ede1ca8992da20f8c04e83912aed9f3f5252e4bb8db8bb36c76398164",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_cip36_registrat-b9111c27": "8419650973e7eb159a72a66e4bdd5716881914436ded2376b0ec44c4472f23d5",
+"T3W1_cs_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_stake_deregistr-6e84da2f": "0fa8364126b289956fb8ce904a0a28ca4b9a4f825bb6cc4c4caa8b1ab836251e",
"T3W1_cs_cardano-test_sign_tx.py::test_sign_tx_payment_req_failed[swap_-_multiple_outputs]": "f91ec1e4aea189e1c7ea7c9a3c629ba431b10aefa2058aa6b8325c188b8de6c5",
"T3W1_cs_cardano-test_sign_tx.py::test_signtx_payment_req[swap]": "e2c0f7c1b189a38c78666dd828e55bf6a0f5a3782af32c5cd6d876f690f18df5",
"T3W1_cs_ethereum-test_definitions.py::test_builtin": "22f165268973ba9120f180cc8d9bed2b8237be22cda6096b09ab323621737bb6",
@@ -30431,9 +30431,9 @@
"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress[m-44h-128h-0h-4Ahp23WfMrMFK3wYL2hLWQFGt87-f8cc3746": "e1bd0451b4f66217cc5204f5260955d1cce2073a277dafc2f5374b47a391d8f9",
"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress[m-44h-128h-1h-44iAazhoAkv5a5RqLNVyh82a1n3-1cc72b15": "f5df6515c622ecd300c2fa34956682275152d1bfcb7b931a9d45898d09b77f71",
"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress[m-44h-128h-2h-47ejhmbZ4wHUhXaqA4b7PN667oP-d571924b": "f734b9a119e8c29a31bd10124027c1eb728161986c1e98e93145bd480efe21c1",
-"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-0h-4Ahp23WfMr-1e763aba": "6b8325aa541930fd228e8b64fde6be16e1cd66ed109a727b1911d19d90d6fd8b",
-"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-1h-44iAazhoAk-005b0fdf": "ddb8cacb8772983ef3a5937ea5f318879a43932d56a92c70f0e5fac6b7d6c350",
-"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-2h-47ejhmbZ4w-df40ccfd": "747186780e7d9d6631b9836e0cdd689381c027c8172817428bbdc4b56ff5b268",
+"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-0h-4Ahp23WfMr-1e763aba": "75943b6ef9648c372bd8f248a264becf88f0d63bf81c85e88eecf4f26b74e4bb",
+"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-1h-44iAazhoAk-005b0fdf": "5841ac266c2416da6d66905d11a80a9cfd62de38086fddbf055f1e13c0d7cfba",
+"T3W1_cs_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-2h-47ejhmbZ4w-df40ccfd": "f3ce3437048b29959163c3751215c17126c9bd77d7658ea9bf2007014bca05ba",
"T3W1_cs_monero-test_getwatchkey.py::test_monero_getwatchkey": "3ff13189573e9369928463faf1df22651427074465670974e6a75e63b79ff84a",
"T3W1_cs_nostr-test_nostr.py::test_get_pubkey[17162c921dc4d2518f9a101db33695df1afb56ab82f5ff3e5da6ee-0bfd9abd": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
"T3W1_cs_nostr-test_nostr.py::test_get_pubkey[d41b22899549e1f3d335a31002cfd382174006e166d3e658e3a5ee-2f9dab71": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
@@ -30485,10 +30485,10 @@
"T3W1_cs_reset_recovery-test_recovery_slip39_basic_dryrun.py::test_2of3_invalid_seed_dryrun": "515e33902e6867a8de2088df03cf3023063965372b7337a570aadb31f9b74172",
"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Bip39-backup_flow_bip39]": "78fb704d2b1e162043b37fcda24b1062fd8c9f0125b37a882f5c5a382dd45086",
"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Slip39_Advanced_Ext-10ea47d6": "3589106e2503eed77f990b70301ffa203fb95db59b370dab3874ab3acc3bce61",
-"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Slip39_Basic_Extend-5dbe8b0f": "ea4da34ff0c1a951b532f81aa55a76fe4b389f0a838cde67bd0d35532adca314",
+"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Slip39_Basic_Extend-5dbe8b0f": "b7282662f29a5abe3f6f49da0b17f83a4ec3ce367bb89a1543120f010a73a4ec",
"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Bip39-backup_flow_bip39]": "4002e3d519dffd9c369a5603597c9a13736c194e4467e861f58dcaa09f730fc2",
"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Slip39_Advanced_Extend-8b11c1dc": "0304f02ddfe22f70199eebaad1b6dbb8c58dbf0b7dcfe101c4378e755dd52f55",
-"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Slip39_Basic_Extendabl-cc19e908": "2bada939c98bec6c2b384928a46841cbf7fa660a8109bcf59fbeeee64192660b",
+"T3W1_cs_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Slip39_Basic_Extendabl-cc19e908": "51cd9fa50322761fb33a4905a3b44b93d1fe28ac7841298e7c395696276c70e9",
"T3W1_cs_reset_recovery-test_reset_bip39_t2.py::test_already_initialized": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
"T3W1_cs_reset_recovery-test_reset_bip39_t2.py::test_entropy_check": "ced9babec1afcf4c9217e851ef16a65dc084e2d2e377d068b29d4f6ced9324bd",
"T3W1_cs_reset_recovery-test_reset_bip39_t2.py::test_failed_pin": "3e134db841ac72b605d615e7646c04d55344d13f98d777dc0c32eb34728ad652",
@@ -30500,11 +30500,11 @@
"T3W1_cs_reset_recovery-test_reset_bip39_t2.py::test_reset_failed_check": "c8c65aff5958b8d5c8d8de46f2762a65e2bbb603f65a441359fd51feaf7f262f",
"T3W1_cs_reset_recovery-test_reset_recovery_bip39.py::test_reset_recovery": "16297c3fae7b866ea80b98f9998c2041b0015d2a1b6580ba735acebb3bc7fb0d",
"T3W1_cs_reset_recovery-test_reset_recovery_slip39_advanced.py::test_reset_recovery": "a0e7a6a89b1eec7de0e83b89c6b7c995855276a0de2276c8342f35a0aabe3790",
-"T3W1_cs_reset_recovery-test_reset_recovery_slip39_basic.py::test_reset_recovery": "7bb758d07197ec65d33777fdbf3f256e918ffef6cd84f6cf6ea4c45b9ee79a58",
+"T3W1_cs_reset_recovery-test_reset_recovery_slip39_basic.py::test_reset_recovery": "48325cb422d0d5b7ee81302c6ce72c611ee5aaee09ce563e0e7d8772786e1dfc",
"T3W1_cs_reset_recovery-test_reset_slip39_advanced.py::test_reset_device_slip39_advanced": "d00e3aa2075918c8e96ad2ed5af26449ecd4d73690434c183f69f22f5bc9a560",
-"T3W1_cs_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic": "fffcb44f3ac5785c57e3e31b114e1eecdb8b022002ee52c9ceeedbb1bb0abb76",
-"T3W1_cs_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic_256": "2d02c6a3b9caa552b995b71d7db88a5f4ccd1e762e4995d548f566cca53cfc65",
-"T3W1_cs_reset_recovery-test_reset_slip39_basic.py::test_reset_entropy_check": "d704567a8c0258c26ff90ceabddb766eafca12f832434e74e140eaff2c0af3ff",
+"T3W1_cs_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic": "4c89659b3a0e1f2773b90a8cd2879588bd029cceaeda060ee740f71a132de9cc",
+"T3W1_cs_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic_256": "af302a10aa75135c01872b57d88222e5a2b6c85addce1f53d25b3fdf5a00839a",
+"T3W1_cs_reset_recovery-test_reset_slip39_basic.py::test_reset_entropy_check": "5518548be4cb79c9cdd872c8a09e90b02f23d2512515074e249b5a735134cdce",
"T3W1_cs_ripple-test_get_address.py::test_ripple_get_address[m-44h-144h-0h-0-0-rNaqKtKrMSwpwZSzRckPf-3321e5d1": "017b4240c9f477b6226943b2f2f95ca5d1f15297282c6c8b76adb77cf11984c6",
"T3W1_cs_ripple-test_get_address.py::test_ripple_get_address[m-44h-144h-0h-0-1-rBKz5MC2iXdoS3XgnNSYm-fd75b415": "ac9e5e953b4c4e9e108c1dd3191ba385712b905c573999d1ebf39225c4d12e58",
"T3W1_cs_ripple-test_get_address.py::test_ripple_get_address[m-44h-144h-1h-0-0-rJX2KwzaLJDyFhhtXKi3h-af5daf0f": "c19ffa08ef444d005b3a7b3d19899286cc551486d400b8b4a5c9db7539d82a01",
@@ -30527,7 +30527,7 @@
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[allocate_with_seed]": "bdc41c15a7e6ae828ab27caea15476d3e22fe96b3c9f456b05c7e6ac9dc0177f",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[approve]": "bf084666a31294c0d5c3844172ccd9d5a2401461a92a281c62f7eac52ffe8a08",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked]": "4bd694014084c9a5d1afd3bc57e55a5a492551165accc94b8e618234b69f8733",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked_-_multisig]": "b9566418956fa9a61d3fbedbd4a65fb8e49b6d4753c51fa95f38c599d2989ff0",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked_-_multisig]": "3f32f9d8fc576c9d58673fea5db15640ed4c2247ed38dbc2feefc00716aeb7c7",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked_with_token_definition]": "ea80dfb2f3202c2471133127dcf11152927a2b44f17dce89c7bd9ff15b950928",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[assign]": "ae92639ccfe357976f5379460ca4f33c1306a71c64236fb7b49211e82ebb248d",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[assign_with_seed]": "ed49467c73500f5a8a713af79e9767f8c26e6db4f81ce3914907ee3e0e9b8084",
@@ -30537,18 +30537,18 @@
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[authorize_nonce_account]": "3b1fa516c5ddbcb86b6602504bf4b74263eec255fda033d691bac6690515f07e",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[authorize_with_seed]": "aa7213f7c05e09ea6e3c8e831014d8303c41830e184f61efdadf29583b2d302c",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn]": "096cf5877a674f99e62456be4f83b19b4bad495ba21a50f624b9d77642632d95",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked]": "4ca89cc5a7f7a997d937c8d2cb74032edd0303068d4d9be9b33e1eb35ecc09a4",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_-_multisig]": "ca751e4046d73fda4d8c02b8614adec43d74f80d75b058c0b8fca07193284ca9",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_with_token_definition]": "21a938c1f78d2e49e90b1da2547d0343324a039169dbdd6913cbc6d8d23f9ba2",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked]": "a4710c9082c36969c6a8bdf63f54de0329b9ed7a25285a4429a87c14c4e9517b",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_-_multisig]": "26d0a1bcef205bbc19a08eb7c2b50a4c716210fb8a583abcc0aed8f107951df7",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_with_token_definition]": "8d802e7608c985d03c7653df2d5d08fe9774469d6065d271b14a009ddcfcdbb0",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[claim_instructions]": "d6ce40510d17590e1581b6a882cf4db60104424c100c6852f8d70b5a71497604",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[claim_instructions_with_warning]": "cfb72928e70d6f86362c23c3c31d05e47b0756d176c016e862a12603c544970f",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[close_account]": "f5f688b1ea702c8f8a1648adcc46b13d2752033645400b0af109a78c5fe0ffdb",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[close_account_-_multisig]": "c1a4c1c22543475c9b0d0b10c0e71256b6758cdb627fdab8e59e3255c36951e5",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[close_account_-_multisig]": "e374f611fec9c65a4d979010d8788d4cca387bced6394e79bbb7ba3921a24cf0",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_account]": "90b4089268cd72fffc29b23240216277152ddb617572460806fcb72606c28c46",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_account_with_seed]": "cedc7f74d9ac41d3e77dac46826440e3335d1bbb463eb37a158ab161e3d0b344",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account]": "a2dfb145df0c1b11be0a64d7004d2d867b6c95036c0ebd3c27c83fb407025c4e",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_idempotent]": "57ea0f7004e4f0e0244875c063c806a8e15bda36032e9d4a3a9002c1fb54ee3a",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_idempotent_luts_(#5379)]": "6cba43fb7d4f18e462ffbe00d456f4ea47df614752654d53a1243ebdad0c4706",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_idempotent_luts_(#5379)]": "8ad5343af76a093704eb8c61234ebbe2fcf32649e2edc8be9d43c604af68f010",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_with_sysvar_ren-cb526e6e": "a2dfb145df0c1b11be0a64d7004d2d867b6c95036c0ebd3c27c83fb407025c4e",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_stake_account]": "f196e58bed5955979922701bed3165719e8daf21306b97626bf16c059642b7ef",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[create_stake_account_with_compute_budget]": "e9592c39b6c1d5946615e4c63847d61928010e334a56ade80c0c0df27bc3284e",
@@ -30556,7 +30556,7 @@
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[deactivate]": "653c357055bfe7b09e224ec67c864cdf49f753e94638e8d1380287fa8ccfecb7",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[delegate]": "d3f5586e96043b1d8973753071d2f98c83d757949ad01e6f68b5bc245eca46c1",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[freeze_account]": "af2b5f236b4f32f3c0846c7729d841621aa57dfe1a4bd1e392bf5c5c4d9e6329",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[freeze_account_-_multisig]": "d6d9ad710c9426f27ba93f28b86cc8ba50afb41eea8b5dda2fe517bab824b315",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[freeze_account_-_multisig]": "7cac5eb1bb3412d093212608ec5641632244085aae9b06c012c22c2733125754",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[initialize_account]": "45ff02bac81c030caa3ef3337cde3a04b4f9fa94b7b98d0a5dea7c35132e4f1a",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[initialize_checked]": "b50abdc5b9dbd7e2b91667bfb0447d4e6b282dbba722c9bb224acaacf5f5a09a",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[initialize_immutable_owner]": "80926b7a991d65b713fbe09c59d017359852d4942d8e94d7066b6ebaf78b18b9",
@@ -30565,22 +30565,22 @@
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[initialize_stake_account]": "f0b3a3b2d337e523fc410be2d5ac58e99051835cf743c30041292af0a6a805ce",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[initialize_token_account_2]": "05c3b3f7c191405ae1820e5f8e8cc71acd7192a6b04340304d44de2db1726786",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[initialize_token_account_3]": "ac90d365e6dfbb14acbff17576adc6b4a9a3933b824b8c2e76d3cf0ea758e83d",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[lookup_tables]": "b6e02f88f848c3dd388292140ffd579ffb260c611e0851371d2664990ab6b4f1",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[lookup_tables]": "6ffb97a9cd6778f57ded3ff9fb1326cab3b8ce65d849bb995a24cb6b4a26fff7",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[memo]": "178cbc78c7b2d26cea6098d14e59dbd3d3270c34e7844d9c340983c48c2c119e",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[memo_legacy]": "63d12491ecbfd311478f7a6e28c16ddf6b23ddee491587e8a0601833f6992fed",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[merge]": "6671d456a729c4ade1f318e94d27a498b2a29776a95aea7bf93cfa55f6fe618e",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[mint_to]": "bcde4591bee96045d5530617555873ae96516c5f8c5dee54fd04d60baca9a08a",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked]": "05a03e93b5abdf4be7554ac1e9de44f99b3d813c06c7643bc9a6d5d42e2c3ed4",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked_-_multisig]": "891522e86c5b4b3be0e059b135fa9cc350533a85aefcdd7b6890d18b92419553",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked_-_multisig]": "3e17ef042c91cd1ceb26fefedffffbbfadd8fe3ee7e93a908b78c7b851fab9af",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked_with_token_definition]": "dad028b024e2d1ae56c6e6ef08e9e85731a76a7a4a264f02c3bbbb44f9594334",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[multiple_claim_instructions]": "8efc8408cb19c7b3c99f734e4a797a4852fee7c4af493260fc8f1144d65f93b8",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[multiple_unstake_instructions]": "16bc59324783318125c20801a6d00eddffeb858d4191a705ecae649f2373dc48",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[payment_request]": "c3ef28b073be6e3e56ccd8a1dd8277077626d16f81ec216a438cf4de83fa7601",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[payment_request_-_multiple_transfers]": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[revoke]": "9c01138beb41b7b777d0358b2d8a42b52b9c05fc08443b62939452adb724da96",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[revoke_-_multisig]": "a1fe08d2943e66b29cbff447f21afc89277abf1eb2a2d7ca0202a9c1fbffa752",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[revoke_-_multisig]": "d5a4cb764bca2731cf63b577eda22453faa4d41e881ed9e40b78d0ebaa7a60b9",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[set_authority]": "e7274f6ab5857135b522f8f02b9d38ab59c0f6cde1125729e58d160ab3b5e6c4",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[set_authority_-_multisig]": "be90ad7bae52883bdd6cd59d622de95d63afc2ebe4907980c47696d4f41fcf56",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[set_authority_-_multisig]": "771c2ca59ceea6f094bd567931ec0ce58fee1e4a35b31d026f9e440b3074b0b6",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[set_lockup_-_with_all_params_set]": "e1f84b75739713d903a925d644467821f783dd62ae5f88ebea7f7a10eb5b89bf",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[set_lockup_-_with_epoch_only]": "a3cd24e76292c59c5fb3e3e0ac7fd8ab614f75186063be3ce4ced12def6a2c13",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[set_lockup_checked]": "a0ea17c61172f98ce25bcfe943920a8c3908069afa8fcd7cee2988973bbe3b3d",
@@ -30590,11 +30590,11 @@
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[stake_instructions_with_warning]": "a78acaf9c5b93205b881cd768ff5641b8ce3f5c51dc425f5d054abf8403b87b6",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[sync_native]": "86ecf684964f88afff4a74f598f6de80094c9e4d5dc88a820c82a0fccf7ef736",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[thaw_account]": "9b7b5f61d11668f3c2d22d401d822764886cc887a2c3674f8c4e180aa12a5099",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[thaw_account_-_multisig]": "c4c71b10318fdd7744d26bcd7cb37fa32799c05d7d901e5086d7d873147be385",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[thaw_account_-_multisig]": "be5b4ff4d255d6c30a689f2bc9830bebfb73453612e908b9b833eaa7976f5749",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer0]": "8cdd3a6cbcf678a49108eb28fd8e526b03d6134e6f66f318ce7a29102e31ee0d",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer1]": "2a537271c98134c81c9967d52757079a16809f5fccd3fe306bce71f157ccb857",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked]": "4588b1121f5d9677d0db79654deb507c0fcd70ebf7507ce427c55054d308560f",
-"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked_-_multisig]": "60a0bbdb5e952bb92f3d01feeff3f9ac7da46788d6beade8afeb4c88d260f064",
+"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked_-_multisig]": "e1ce1f0c27a6340276d78b6b701842ec7a5245b11dff387a23df1a1b3b5c0fc5",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked_with_token_definition]": "7c200b245bdfa1322ab568edeb87b9cb82651de8c3494bb399dc5be02cecc5e0",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer_token_-_predefined]": "b781b632d6048d131cb65381151694af7d2a1d55cce335a083ed68e034412a83",
"T3W1_cs_solana-test_sign_tx.py::test_solana_sign_tx[transfer_token_-_predefined_-_with_definitions]": "0c1fcb7753b55dc387e197503330f8599c135448c1c454dbe610c3cd7a8ee168",
@@ -30743,11 +30743,11 @@
"T3W1_cs_test_msg_backup_device.py::test_backup_bip39": "87bef5cd4f797c163969f3d1b5a05cda2590a718d74f084532d02f516d856867",
"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_advanced[click_info]": "f7d6b593d0c9c81d2b074c60ba4ebbed9971539d309d39876447219f7c2e8998",
"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_advanced[no_click_info]": "38d5601c1f3f332fd6bdc3756ca222a89365c4cde3990a4fffa65d16f1bdc94f",
-"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_basic[click_info]": "bbc1cd812e7f2a1ccdd62de826f37aa9bd77cd7829bc7c4bae75ba9d153276ae",
-"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_basic[no_click_info]": "763f21676017d601fe4ea3299eef61543a8cc39fd0e4b3e63bc660fef24d699f",
+"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_basic[click_info]": "93ffd919dc5a4b248a8da81768a409e411b4eafb449f480d43f9761a3349575d",
+"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_basic[no_click_info]": "28a3947bd07fee8ae516c4cbb93fb97eb0ccc13af20f679ac059c7cab38988da",
"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_custom[1_of_1]": "315bba8f9a5cf8deec8e47a22881da5bedd1a0a0e80618a5e733112c77578832",
-"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_custom[2_of_2]": "8978fe83cf3bbb397c2298ff6d4aa78d7849547e81edff7c37964345b5b0a6c9",
-"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_custom[3_of_5]": "52f5ffe2566079ae3574ecb91a50b0367469e6056ee1df8be643c1f2c202a703",
+"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_custom[2_of_2]": "2537b6fccbc5d4b9895b84fc51687b9ee9621265c162b5af5782a6f1df2dcb6e",
+"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_custom[3_of_5]": "296382cd9ab8ad9110ffd5d0bf2ad0f9fe10bcb3cb0c9b988dbd03c7073bd1e7",
"T3W1_cs_test_msg_backup_device.py::test_backup_slip39_single": "74825228f6420c2d015e23235636f42f62ea84fe33d54549a90367ffa2949fe6",
"T3W1_cs_test_msg_backup_device.py::test_interrupt_backup_fails": "9b32ec62de19f57992387129821fe1ceec74b1c7a1fbc136429888ccbd7a9385",
"T3W1_cs_test_msg_backup_device.py::test_no_backup_fails": "d19e7595c0cf0e67ba02f980571b6a2ac492b16326eac379415774139a24d30b",
@@ -30796,10 +30796,10 @@
"T3W1_cs_test_protection_levels.py::test_unlocked": "7cff187b05f977cfc42a6729805c3925e36db3fed68b2231735b2c4630a5c9ab",
"T3W1_cs_test_protection_levels.py::test_verify_message_t2": "dd14b9b8f01484cc38a11a97c0ec189e9c7e50ee0df25cdd5b355ed3d13eb0a5",
"T3W1_cs_test_protection_levels.py::test_wipe_device": "14aed333a933325ce7b7bb562faf2e04e45c40533ac13beb371ee5295de19932",
-"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host": "e6c06ab20c9f3c7ae756e2d3d7320ebe79a3f4cb3af83bd372eb5ef28f3c2230",
-"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host_cancel": "31d9da3ff01dd6a4c9aaa792b86fb1a8368510a24aa7a5e1a6b4382b139a32be",
-"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host_send_disallowed_message": "31d9da3ff01dd6a4c9aaa792b86fb1a8368510a24aa7a5e1a6b4382b139a32be",
-"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host_upgrade_single": "7aead195e5ef28d758654693a6d9b28413d00aeb5b1e5ab8aa49fa954f6dbe9d",
+"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host": "8ef1f3b5e34ca694544e107461179d5774c0c9f6ae5025db065672f9636d5eee",
+"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host_cancel": "6b3deb2b1cb46f5cae68fa7dbd0d531c12f6554f5104b9ab3652687e0b26a3c0",
+"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host_send_disallowed_message": "6b3deb2b1cb46f5cae68fa7dbd0d531c12f6554f5104b9ab3652687e0b26a3c0",
+"T3W1_cs_test_repeated_backup.py::test_repeated_backup_via_host_upgrade_single": "49226e8b1988a76ac61d57f8e4aafa97c48bbac2660db56a7768b6b2c5e5dd74",
"T3W1_cs_test_serialnumber.py::test_cancel": "a98412b2534f99c6d9461356cab1dddde769b5dde669bf2e904c8c6da559a92f",
"T3W1_cs_test_serialnumber.py::test_same": "28d51af462320b9a3cf6854fa532884c29db80f1c1c0faa02133f2cdee29e958",
"T3W1_cs_test_session.py::test_clear_session": "5d42be00b26b1479856b46991050af2b5b6d8214bb1e9dbdb2849fed3810fe3a",
@@ -30813,7 +30813,7 @@
"T3W1_cs_tezos-test_getpublickey.py::test_tezos_get_public_key": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
"T3W1_cs_tezos-test_sign_tx.py::test_tezos_kt_remove_delegation": "5a6e4915823db723d1f4d2bba780ac2632806a435a30557010ad3369be36f9aa",
"T3W1_cs_tezos-test_sign_tx.py::test_tezos_sign_tx_delegation": "e68c9cd3c33b5eacc2e4c584f4f8b3e5c72792905bd48d5810d32d17651ba8c8",
-"T3W1_cs_tezos-test_sign_tx.py::test_tezos_sign_tx_multiple_proposals": "c2a56acd1619810edd0368ace20c0dcb3b79befc0dbb4d76cd76282ccf90aa4f",
+"T3W1_cs_tezos-test_sign_tx.py::test_tezos_sign_tx_multiple_proposals": "e071cab158413c7bb026f05938069182a999f2734018511c5ba246a1ca1f99e5",
"T3W1_cs_tezos-test_sign_tx.py::test_tezos_sign_tx_origination": "08a55a871853571b965658bd6c989e2990844a6415c7b27fcf8e36cdac01c330",
"T3W1_cs_tezos-test_sign_tx.py::test_tezos_sign_tx_proposal": "9d607559b2bf88c38bc66771ae3036d3bee2ae25df44b6ce0e55307ae3de1096",
"T3W1_cs_tezos-test_sign_tx.py::test_tezos_sign_tx_reveal": "c627eaaf3ee7390f23f916ad495aac5a4f3d7e115709e20ff926d4b47c681983",
@@ -30855,7 +30855,7 @@
"T3W1_cs_zcash-test_sign_tx.py::test_spend_multisig": "6adc65d24ceec2ba474cdf8236563b2b071707872e94dc197deeca35c9dea32f",
"T3W1_cs_zcash-test_sign_tx.py::test_spend_v4_input": "eeb5b95ed1d1ddd13761664976dcbe02092bff5e4a0e484d22468ad2bf45dd01",
"T3W1_cs_zcash-test_sign_tx.py::test_spend_v5_input": "e58e24db2348ac5e72cedc15b2b546b6fb904b9bf443910665b929464c2df5ee",
-"T3W1_cs_zcash-test_sign_tx.py::test_unified_address": "a8d9fd6057a8c9c52950f0ae0dcdb2ebc6d4e63801907b51f7b04a05c9dd940b",
+"T3W1_cs_zcash-test_sign_tx.py::test_unified_address": "3db622dcadd6ee78df04ebab48469e9d88428f7f36aec2b28bd8f89a743269f6",
"T3W1_cs_zcash-test_sign_tx.py::test_version_group_id_missing": "c24521e569c08e3605b164212c876f8ac57c5eef6cca6f2ca53a635a883ebc4b",
"T3W1_de_bitcoin-test_authorize_coinjoin.py::test_cancel_authorization": "f4613eb734ba12df4b0dfeb77b47404e723c5c5840239ad5ad27742e0bbd936a",
"T3W1_de_bitcoin-test_authorize_coinjoin.py::test_get_address": "a6edcd6018b4fe42139d028769ac6d6c972d68f46f6a104cd8e6a546795dbc30",
@@ -30875,42 +30875,42 @@
"T3W1_de_bitcoin-test_bcash.py::test_send_bch_multisig_wrongchange": "c6daa9d11a824f1486aaba691174128f49c16eeb57125ea13dc9c4e0696aa5ce",
"T3W1_de_bitcoin-test_bcash.py::test_send_bch_nochange": "c27826bf4ada0126becb50e96ac9aab2dd126642f9f00e2b89a7fb852a345f8a",
"T3W1_de_bitcoin-test_bcash.py::test_send_bch_oldaddr": "d2b47aaab2bae98292328200a2a295a0991badb495801ff183d6803e62c56412",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-10025-InputScriptType.SPENDTAPROOT--301d7568": "c6ef826af77bd5906882c5dac798ab643d843c7b23598ac5e7d3753b2b48adf5",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-10025-InputScriptType.SPENDTAPROOT--301d7568": "25e22dc45095c87def858b08e1a4ae7005849a3dfbb87b6e3453eb9b9c3b6aa7",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-44-InputScriptType.SPENDADDRESS-pkh-a1b0211f": "91c3a18afdfd4867b531067e2536e700e29125ed8c9375b5ab3a2cf7ef742fa0",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-49-InputScriptType.SPENDP2SHWITNESS-75f8d49f": "65ab7b00c07762cc4ee56cf927049603deda39790a50cc3eec5ae9dad8f16d9b",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-84-InputScriptType.SPENDWITNESS-wpk-cee65569": "390ccd081c99dd88d07f35ee3f0bef0f39fe4ba9e6047c4639b6a11d6a0a443b",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-86-InputScriptType.SPENDTAPROOT-tr(-6b548a1a": "483356df4b27a2262ffe39ad7d7a6829316bd732e408b56c5ebd7062b878b3d0",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-86-InputScriptType.SPENDTAPROOT-tr(-6b548a1a": "e4fad526f58bb2d5f77b84f28ccba8f09c76673ab798a1a34993b544c2e14f9a",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-44-InputScriptType.SPENDADDRESS-pkh-37215d1b": "f08cd2d33896306ddfb472c4ff5550b499e8be2cebc264bd58dc86648b20d56f",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-49-InputScriptType.SPENDP2SHWITNESS-3ccd985b": "b065e88bd2430fc77a46bfb6f98b4cf3e59b1ceceebbdb569be74d084384ef96",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-84-InputScriptType.SPENDWITNESS-wpk-21c3fa4c": "edaca0dbea5b0cbdec4b4bf9eb56463e8298be1f3fdc215022a32b4d9496015c",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-86-InputScriptType.SPENDTAPROOT-tr(-3a85f3dd": "09d0fa780af2ad8ab31754d1e40bd457c4b63ced40a4ef301d9b40ad26cc03e4",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-10025-InputScriptType.SPENDTAPROOT--591134d6": "1eca21df68ef958b55b805c9e2419a9eb2fa39574185235c5c8525764f31580b",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-86-InputScriptType.SPENDTAPROOT-tr(-3a85f3dd": "6e108004627069dba4b571a126b49c4dac4099625a6061f3d55268d3113db971",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-10025-InputScriptType.SPENDTAPROOT--591134d6": "3cfe632275bed41bda37fef2d151a0e3ae24c69d8a06afa0f1ad4b3c651b1b0c",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-44-InputScriptType.SPENDADDRESS-pkh-b7612f41": "ccd6ffb7b79ea2540a34e017217933ff9a713c357d4fa0cb6558f19078d54456",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-49-InputScriptType.SPENDP2SHWITNESS-4408e6b6": "7abd0929bd5cbe43b3019edb564b5f61c83d2442017d238235974c73b2462c80",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-84-InputScriptType.SPENDWITNESS-wpk-49d5549d": "0a4f8947f3a9cc7fff4a4e2d60a7d80232659df6627ce787975fbd6e525114fa",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-86-InputScriptType.SPENDTAPROOT-tr(-51c6f7dc": "522e084d2f2f9c26616d5ff6d0cf0e84d2c07d62baa9153c459820eb0b0f24d2",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-86-InputScriptType.SPENDTAPROOT-tr(-51c6f7dc": "266da543ee8d416ec25ee6c2b5be904c7c77e5d8c22856be45dd7d6dc2cb4606",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-44-InputScriptType.SPENDADDRESS-pkh-671fabde": "88b8eab6efe0ecacf246279ba085c1767b596b08755713d737e852e0452ee246",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-49-InputScriptType.SPENDP2SHWITNESS-6a0c7b09": "8985522205410e5b37c32ae89e3afec29b746fa15584e38f326d58a4a80c615a",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-84-InputScriptType.SPENDWITNESS-wpk-7c651f2d": "80786bd4d09a1e576be948ac60ea3f3cb3bdb2fad4c9ebd3d414838db487a321",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-86-InputScriptType.SPENDTAPROOT-tr(-b37d77de": "d235b1f02ed239ecbb776271160c92928b211121d39d348967949aad905b3faa",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-10025-InputScriptType.SPE-6c24ae6f": "c6ef826af77bd5906882c5dac798ab643d843c7b23598ac5e7d3753b2b48adf5",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-86-InputScriptType.SPENDTAPROOT-tr(-b37d77de": "f98e0f8a2441ff2f7ff64c5b2946dc094ca7c2b5ea799d186fe310099308c57b",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-10025-InputScriptType.SPE-6c24ae6f": "25e22dc45095c87def858b08e1a4ae7005849a3dfbb87b6e3453eb9b9c3b6aa7",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-44-InputScriptType.SPENDA-fc66840d": "91c3a18afdfd4867b531067e2536e700e29125ed8c9375b5ab3a2cf7ef742fa0",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-49-InputScriptType.SPENDP-3f679311": "65ab7b00c07762cc4ee56cf927049603deda39790a50cc3eec5ae9dad8f16d9b",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-84-InputScriptType.SPENDW-dedbd46d": "390ccd081c99dd88d07f35ee3f0bef0f39fe4ba9e6047c4639b6a11d6a0a443b",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-86-InputScriptType.SPENDT-9b717395": "483356df4b27a2262ffe39ad7d7a6829316bd732e408b56c5ebd7062b878b3d0",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-86-InputScriptType.SPENDT-9b717395": "e4fad526f58bb2d5f77b84f28ccba8f09c76673ab798a1a34993b544c2e14f9a",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-44-InputScriptType.SPENDA-908dd45b": "f08cd2d33896306ddfb472c4ff5550b499e8be2cebc264bd58dc86648b20d56f",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-49-InputScriptType.SPENDP-07c408b2": "b065e88bd2430fc77a46bfb6f98b4cf3e59b1ceceebbdb569be74d084384ef96",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-84-InputScriptType.SPENDW-ae5dad46": "edaca0dbea5b0cbdec4b4bf9eb56463e8298be1f3fdc215022a32b4d9496015c",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-86-InputScriptType.SPENDT-f5c0cb2f": "09d0fa780af2ad8ab31754d1e40bd457c4b63ced40a4ef301d9b40ad26cc03e4",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-10025-InputScriptType.SPE-ad017c81": "1eca21df68ef958b55b805c9e2419a9eb2fa39574185235c5c8525764f31580b",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-86-InputScriptType.SPENDT-f5c0cb2f": "6e108004627069dba4b571a126b49c4dac4099625a6061f3d55268d3113db971",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-10025-InputScriptType.SPE-ad017c81": "3cfe632275bed41bda37fef2d151a0e3ae24c69d8a06afa0f1ad4b3c651b1b0c",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-44-InputScriptType.SPENDA-87568704": "ccd6ffb7b79ea2540a34e017217933ff9a713c357d4fa0cb6558f19078d54456",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-49-InputScriptType.SPENDP-08c818f5": "7abd0929bd5cbe43b3019edb564b5f61c83d2442017d238235974c73b2462c80",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-84-InputScriptType.SPENDW-3a2da005": "0a4f8947f3a9cc7fff4a4e2d60a7d80232659df6627ce787975fbd6e525114fa",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-86-InputScriptType.SPENDT-0d2d3911": "522e084d2f2f9c26616d5ff6d0cf0e84d2c07d62baa9153c459820eb0b0f24d2",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-86-InputScriptType.SPENDT-0d2d3911": "266da543ee8d416ec25ee6c2b5be904c7c77e5d8c22856be45dd7d6dc2cb4606",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-44-InputScriptType.SPENDA-06441aab": "88b8eab6efe0ecacf246279ba085c1767b596b08755713d737e852e0452ee246",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-49-InputScriptType.SPENDP-2341fa5a": "8985522205410e5b37c32ae89e3afec29b746fa15584e38f326d58a4a80c615a",
"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-84-InputScriptType.SPENDW-59aa0a79": "80786bd4d09a1e576be948ac60ea3f3cb3bdb2fad4c9ebd3d414838db487a321",
-"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-86-InputScriptType.SPENDT-af95048b": "d235b1f02ed239ecbb776271160c92928b211121d39d348967949aad905b3faa",
+"T3W1_de_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-86-InputScriptType.SPENDT-af95048b": "f98e0f8a2441ff2f7ff64c5b2946dc094ca7c2b5ea799d186fe310099308c57b",
"T3W1_de_bitcoin-test_firo.py::test_spend_lelantus": "12b1af79a47247075f3117b8560f8ad75076a45a225517a330c225b8ffb0b9ba",
"T3W1_de_bitcoin-test_fujicoin.py::test_send_p2tr": "e57917d58f3ca38d439c0df83e6c733c6e20ed0530e00dfd3be82ab2ff344548",
"T3W1_de_bitcoin-test_getaddress.py::test_address_mac": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
@@ -31221,13 +31221,13 @@
"T3W1_de_bitcoin-test_signtx_amount_unit.py::test_signtx_testnet[AmountUnit.BITCOIN]": "9b0b69773344ac6d84cd4b0def748f3db59e07c51f522f4839f1558ee79674d6",
"T3W1_de_bitcoin-test_signtx_amount_unit.py::test_signtx_testnet[AmountUnit.MICROBITCOIN]": "1cf0742de3b83bc526425c3f5d14184cc5cbd87590886d6865776971f7080914",
"T3W1_de_bitcoin-test_signtx_amount_unit.py::test_signtx_testnet[AmountUnit.MILLIBITCOIN]": "77b394115c60c3651f0810ff691b5ec7ab49567302ebf109e2f1166fc5e27f45",
-"T3W1_de_bitcoin-test_signtx_amount_unit.py::test_signtx_testnet[AmountUnit.SATOSHI]": "e07d677462c5ff52844b9c76c93c96e25f1d09641951e80d62fa01dffcd496f5",
+"T3W1_de_bitcoin-test_signtx_amount_unit.py::test_signtx_testnet[AmountUnit.SATOSHI]": "bd919255637b0ac00c148a543ee1554c342e59aabff0e1ebd22002ab65ff90c5",
"T3W1_de_bitcoin-test_signtx_amount_unit.py::test_signtx_testnet[None]": "9b0b69773344ac6d84cd4b0def748f3db59e07c51f522f4839f1558ee79674d6",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2pkh_presigned": "e9a98a7e106ae11fb4cc28aa4e2db29fe0fec2376a771d9a9714b0751396625a",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2pkh_with_proof": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2tr_external_presigned": "170fe3447b54e1cbc053d0ae37c795f1ebcefd20815c0ec1e7bffd984f064796",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2tr_external_unverified": "b0d3e434f9f3ecf608afaaa9c74834d23f58868418314c6fdff936b97e46072c",
-"T3W1_de_bitcoin-test_signtx_external.py::test_p2tr_with_proof": "548165a69e460346c1a4efdc575442627e64ab13a74e6593f4fe07b7af1c8687",
+"T3W1_de_bitcoin-test_signtx_external.py::test_p2tr_with_proof": "b40755f07efecd9d5d9ec432f67384dfae37beb2d726c0c66a87974171dbe440",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2wpkh_external_unverified": "7068bddab21ee2c29aa9dfdb87ad6306d5fb71da39bf44070e9ea1dfc4418e84",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2wpkh_in_p2sh_presigned": "546c7b277f4417a433dcadb58f082d338bb06f83da90f896810f3b417dce96e4",
"T3W1_de_bitcoin-test_signtx_external.py::test_p2wpkh_in_p2sh_with_proof": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
@@ -31290,7 +31290,7 @@
"T3W1_de_bitcoin-test_signtx_replacement.py::test_p2wpkh_payjoin[19909859-89859-02483045022100eb74ab-881c7bef": "f1ca1c617eb5da2212503dc45d75ce0734faccccb95c6553a10e61bf4c642a3d",
"T3W1_de_bitcoin-test_signtx_replacement.py::test_tx_meld": "31a9b9afbdb40589c80b1b7d7b02312a3c0ce0164865d4415e9a5b2bee086440",
"T3W1_de_bitcoin-test_signtx_segwit.py::test_attack_change_input_address": "2fa07b0d2d1d39315b9827f64455c3a6c8f4d4f2f55cbf91ffd442f37cc7db9f",
-"T3W1_de_bitcoin-test_signtx_segwit.py::test_attack_mixed_inputs": "f5dd072e6ad2905395dfec5b37f5578712943eaf856b81b53aee8406b792dae1",
+"T3W1_de_bitcoin-test_signtx_segwit.py::test_attack_mixed_inputs": "c301512ae6ab3dae3bb50986124c3d5c1496a073064dac54387b625ec157e91c",
"T3W1_de_bitcoin-test_signtx_segwit.py::test_send_multisig_1": "45fedde007edc31a6f963900e18823b261692d5b9849c95d4e510d4903468fe6",
"T3W1_de_bitcoin-test_signtx_segwit.py::test_send_p2sh[False]": "8ad3fdd14e0008ab8d0c8892d118a89cec23814ba19bf8db794af78b5db18951",
"T3W1_de_bitcoin-test_signtx_segwit.py::test_send_p2sh[True]": "058f022d8b74c1bc44302bf7d99d199f59ab45dc99d165e12f4e62613b46ea7a",
@@ -31376,46 +31376,46 @@
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters7-result7]": "8e84c75511ca2ced6538ee1b7fb35c3dc4f236d1a850b7ee537fae922be3ef1f",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters8-result8]": "bfb3957e9724c9cf20ed7520e6a000d1d2d1c66f14b71df4e9cab454312f9d4c",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters9-result9]": "95ee6c5bdd00e22220c98ed0b86508e44ecea47527fb9843ac5055838f55119e",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-derivation]": "237649402e687d13666f046b7dcb56ba6265f94a9b126bb9724f78e76bf6e4f9",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-trezor-derivation]": "d7c02a99071f1c4e25dcd6bb074694ca67a87f8c3b332abbb0dbf485e82385f3",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-ledger-derivation]": "b9289289c1ae5242f813282ebfa5860518b5a2cc7b583285a8be424239d3be3d",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-derivation]": "1deda4df5b5653c9cedae4bfc64d289c4f3990fefa69e3840e7faab33c76172f",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-trezor-derivation]": "6616077131e9f3319c610faa75d8563e9db22db26a25fc9fe9647f6c38e95f3f",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-ledger-derivation]": "ac2ac5366840d97282c8c40a4925b2b14b1f78f7c4b90f5e8804d1dbce87c86b",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters0-result0]": "af9ca9daa935fa7e7910431bb7852c5e111c139f95c722d90e659acc5b7bea0a",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters1-result1]": "599fd2515b3ea00dd767fc8dfc078f5e4e0101f0e49ebcdab5c7d0841870d2e3",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters10-result10]": "defec4c8ad01979053bdf62733d1ad2794f39e3a2648ed608deabe04bf246878",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters11-result11]": "75e67181bad0266447dcf90213a4999cb642182f28f57e030470a7c40ffbd01c",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters12-result12]": "92cb3322faa3ab673e48ddc54f03847dca338020c61bfa99043e1dcd69b02aa1",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters13-result13]": "0529a3bc6abd1bd408d74f2860967f8892403272e06355182f27574facb785e8",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters14-result14]": "a5c4fc0d375ba190aec2f69b957b64750daa15e1a1331d61ccf4df30a3cca5e7",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters15-result15]": "00f5d45e83095a18b00cf9863e7b7c713300e7fd3eec76f6af0f79d931ae9f8f",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters16-result16]": "402554c76012a1d1e5700cfbe3c9c5375cc98f3584bd7c73dbc04196643ed478",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters17-result17]": "2a144c0b5d886c49094e7fb71cb39927cf8fa9ddbe6b1947bf0d79ccbedde429",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters18-result18]": "e977bffd81881b0b81ef26e939820dd623a074f72c823c4f200179afa4d1428e",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters19-result19]": "7d277450347c4de2170f2de3c4d03f94ede009b5afd0f2590bf7ba0613d5de06",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters10-result10]": "730686b199e7ccf6f4eb8c44d9e296be16414a9abc440b40d1c2f78450a9c6c6",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters11-result11]": "71ac091988c74a4c93ca4aa8fa7ab12f111e624b2165d0e3869cbc51f7586595",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters12-result12]": "d3d7583d1ec773370d9a4960e469bb35f425a8537bbad5cfd99d3f39d2889adb",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters13-result13]": "7d364523183701a5549b55eb9fc3d5e7bed24724cb8076a49f692cca0c9a418f",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters14-result14]": "f64bcf4aa817bdb783e632a3667f20d473b0296f01e171c9a923db8c213bc920",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters15-result15]": "b403f17b97bd76f11c5aeac9134f45b05cef0b6aef0f344459aa0e9995fed2bd",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters16-result16]": "2d0fbf0b3e124bfa0d7fad6d8f5da79e9bd224d435f504f4a98598b0fcd5c8aa",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters17-result17]": "37405b6af9806c6b41044047297619d08fd4069b672dbe0b7a5b799728614103",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters18-result18]": "fe1a2e3e7ee4fd63bc57327af3558c5fb66164463aa86e0e5c700e12f0597439",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters19-result19]": "288d64edaa805adc791404605c4495938c6d07c732c155ab3d3637129af6ec34",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters2-result2]": "2f05781be1d29c3a70cb57c171b463e918b26ea2f5f7d2125aeb5411b0b4b796",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters20-result20]": "fd43f347d12c0a1e0c6ae98c32a4d1f01441d557764bf749cf967e91c15d769c",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters21-result21]": "85d0d50461ed19fecbdae0695f32b601fb3209d92b92dd9f4e919d77f09549c8",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters22-result22]": "c258d1ed8e8cc41f7f5bfe972d220890b9c8b34ad63f888ae1c4dbc0104c1c81",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters23-result23]": "cd8fb04bd8bb39ec85e90e3c9dd130bc3b4a80346b83f2629508251d704689d2",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters24-result24]": "51b1d0b186c032aa9d6f8f95231848af509526d466ffeb654e1826af12095f0d",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters20-result20]": "863867de8d966251d4908d3b1cd21e6598f4c4aa4832c03322d29efe55e6e799",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters21-result21]": "ab6f556f3e5f67b3188cdcfff9cf5649c0dab7f52de9d720c8a1be91cc277b5c",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters22-result22]": "a9019aac065c967097f0254e288c993024a591ad536ffe500c9fd1c97c4d6c30",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters23-result23]": "e0caf0a87c128bec38290fb269728070930c9302c103f01ce9c4853d6e5377b7",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters24-result24]": "615e5f63459574c8da19f0707c8a5a236762b005b09414688524f8df50cce68a",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters25-result25]": "12a72f79c6d951b57c35339af332b7bfc6a439956e64d1a27a61c6e15e5b53fc",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters26-result26]": "8b9efd3e37c55ccc09f640787b10ea9fb32698e1dc3bf3c6e16cb850c7f3af14",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters27-result27]": "399955872d6cadd863f99b3615503bffbe4aa3823fcb116318170539bcd1115f",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters28-result28]": "acd104fd8dc1cfe4341aa57cd02c8ebebdcaacc0f4928b94e0227a0c4a081c33",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters29-result29]": "ea1aa325bcfd2a050ba3653867b443f4cfa7c131e46a5171fbc1b125216d9ee0",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters3-result3]": "ba6510fc92fd4e41a8838486b63f0762268ccbd8068a34718f47918a471ab1d4",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters30-result30]": "01f3f3561229ce21bf8fb683037f98d35a96c961e88800161935547811563ebb",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters3-result3]": "e66c3f22352750279a5f46f0180162000eea92f1bf5620996c487fec6ef8a12a",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters30-result30]": "e0df7119fa76a9518ca49aa476fc4e1050af151aa7750f6dcbc1d06b5634e0ed",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters31-result31]": "69fff17a2798fa7f5baa83e87ae002d15794103c4651cc537ffa9f1694db6dd7",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters32-result32]": "b870840ea04820995bbef4b5f29f76f95c94d117a27a9a84c5877d5f94cd7a7d",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters32-result32]": "2187cde336913682935e43169a985b2fddf7f481870af154efffa8689f86f822",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters33-result33]": "a5fd41af68c0439b34fb93bea8c14903639146ed51cdb2671378d71823e62642",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters34-result34]": "4e28c9161454fce30191fae6fb3448731927079a424cdc8517ac1b438a57cdee",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters35-result35]": "0d9aef669449b7c2feb36130a87d4f64f5861362ff578102715f13d0a374139c",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters36-result36]": "0f1b2736d8f04806e4b1e621dfe785a74d4796dd7f6fa868dc4dfdbabe47622f",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters4-result4]": "d95dc418161952142412ee80096fafe16ed38926bf45d2a9ab6125b096d576e5",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters5-result5]": "c5533d1aed6c3245e8eb187fe8a296d16e35d4e252e1c0714c630c6d532ba96b",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters4-result4]": "57865baadeca67cda07c84bbbdbe7ce18834cb91c6fe5975052199672e1d7327",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters5-result5]": "349c5e5700eb938f6849fa318dcd9bc1290b8aa73f2904d03638e4b1560d73a3",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters6-result6]": "fe026ff5e3179a423e4fe09eb6505ca023da5ebf6da7783ad6cf91f7f80e547b",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters7-result7]": "516ddcfb28bf6de382512d43764b0dbab16bec848f88fa4711499065b52bedf0",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters8-result8]": "b75ac42ad56e917e707fa3974fe8e1c01104bf3be576d5153545542199a7ef14",
-"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters9-result9]": "5ea85d904d851332bf13a06cc700dd4e76749018a57af3a3ca646573a1135e75",
+"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters9-result9]": "f1ed5dcdb599d21995ec0b608b01540eafdd6dd77c3c2a768a4883bc960eaf5f",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_public_key[icarus-derivation]": "287cbf567e3ba8dbc414497f560fe4b35af4d2e0b902b31d2a71a34712dd592e",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_public_key[icarus-trezor-derivation]": "75c1d1cb72c0a3be27a7ea30367b026d463b67c46872c72b41d22222a90d00f5",
"T3W1_de_cardano-test_address_public_key.py::test_cardano_get_public_key[ledger-derivation]": "2663be33b96f6158d5097d506e93672109cad483e68ef7aa080b31fd7a32b866",
@@ -31456,7 +31456,7 @@
"T3W1_de_cardano-test_get_native_script_hash.py::test_cardano_get_native_script_hash[pub_key_script]": "bae29502a0ba7a05a72cd00d3e0fdf9d15c5c58822be9a3a6eb62ead78dc9e89",
"T3W1_de_cardano-test_get_native_script_hash.py::test_cardano_get_native_script_hash[pub_key_script_-1579fe2a": "7605959f37f7244744042a386648830766fb4944fa4241aff19ef6f6eda89c2b",
"T3W1_de_cardano-test_sign_message.py::test_cardano_sign_message[ambiguous_ascii_payload_falls_back_to_hex]": "a67cc7e5dee3f5fdb1f880c69b539667421753d51b89cb37e2357efeb0789dc1",
-"T3W1_de_cardano-test_sign_message.py::test_cardano_sign_message[long_payload]": "2b4a53757f5111cc31fdd6d59a68f5b4a0b3db12f09cc59c059ecafa982f425a",
+"T3W1_de_cardano-test_sign_message.py::test_cardano_sign_message[long_payload]": "5221fa6f3803f831491a1bc413ee6e09138900e13f44b68feb65ad1819da2f3e",
"T3W1_de_cardano-test_sign_message.py::test_cardano_sign_message[non-ascii_payload_falls_back_to_hex]": "1fc6c62d25678724bcf1c50962ab50f69672095a7aeb21cb6cf4f90433929e72",
"T3W1_de_cardano-test_sign_message.py::test_cardano_sign_message[sign_empty_payload]": "4b26c4030460e12d3ffb4921f3c2a1f1c917be44bbc8c366adffcdc02a13a1b3",
"T3W1_de_cardano-test_sign_message.py::test_cardano_sign_message[sign_short_ascii_payload]": "1e3dbf57b85b30f4b2dd47cb977864eeeecbadf595f9ff4b40f0de040af445a2",
@@ -31475,13 +31475,13 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[mary_era_transaction_with_multiasset_output]": "f5d99aca42669341fdf76ca290cc09e5c10aa5e606c8c000962839c617cc8ecf",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[mary_era_transaction_with_no_ttl-validity_start]": "fa94a6fb1770d13f2ee259016a1070415934414a9059e53aa6bf3dfb9897dc82",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_a_required_signer]": "76beed632301c3d319cea15f5ac31346974864848ad115fc896902114149017c",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_most_elements_fille-29691455": "b62bf8130f846617eba6f34cddef880084078b6bef2623b9fe65c76c53b772d0",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_most_elements_fille-29691455": "c24694eba9aa1000c1c2ae4a974bf166e80a9feea9573b98f7c44c60e49bc506",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_output_datum_hash]": "db7931cc2857bfdc1c8e8cd9f9e23f4f5c2b060dd21af7efba27a16ccf14afd5",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_script_data_hash]": "fc2bb3d1089f4e36d5b524140c0b1bad7c28b9cab810e9c9c9d7ff52dcf55e97",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistratio-1ab28f77": "5956f33367c61389136f0d50d37739fbe5ffb24e9cac042cf6617cc18b32a3b2",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistration]": "5956f33367c61389136f0d50d37739fbe5ffb24e9cac042cf6617cc18b32a3b2",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-a144c34c": "6479596979930331d93d7193d89be59d751c50fd143ba3c965890f8b11942873",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-bf5f9707": "b4a099bb913f1596bd14804b38340e43c4b1a6c6675bef9335975954f0e19a44",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistratio-1ab28f77": "27022bb74200b3e7581efe2a7428eda169d846fd2b3813f67c3855f6c7974793",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistration]": "27022bb74200b3e7581efe2a7428eda169d846fd2b3813f67c3855f6c7974793",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-a144c34c": "5550dfe7eaf02831c08e379459b6aaa43bb40bd5755f0932c85020da4ac7778c",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-bf5f9707": "09c4dbdd6d57f010e899def7446e194492bafc77cb88fe199d130b574026f99d",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_token_minting]": "0edfb280d4a4430e32326927048de5b86de765d2dc6bde4ffa030fad875a5c46",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_a_required_signer]": "64ab1784f5ac1a670600a657da597f86b52b6257665bc60c9386b98c4d2e5c23",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_both_output_formats]": "5752b989c4bee512ea95e274fc5091727faf37826ec5be320d52cb47df539d7a",
@@ -31490,73 +31490,73 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_multiple_correctly_-6545455a": "7db046ae6e9aa9b6fa647a9c445abb492c07be2fe493de2d04f2f0a91dbb5d7a",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_network_id_included-d9df16f9": "92df7482081241af84012e643922ba7f06ccaede4abf6ebb412fae654d70b559",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-57a740e6": "753efe567f510153ab36ed31bd5608c2311f9f37df3e54b311c6eb74f81e688e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-f709f55f": "6ad647d69832cfceceba8aa12d6766548123924a779ec823f5e6794864051879",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-fab7e996": "976ca4e8ee19a8fcab1163c6ac375aaf915b988703bc81608c6ccd1f4bd779ae",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-f709f55f": "b0190cbfd9ab452fc8b3dc096f49644cbee0d1f70e50c71b6b9abea152a9859b",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-fab7e996": "21ef0425e2f3d43d53394c2396743de371c5c2d6173f3b198aa4e41f872dc72d",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_output_datum_hash]": "1348a69921ac84eb6391562ca61874de3891794797742c779ae544aa71f74819",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_output_datum_hash_a-84ad587a": "fa94a6fb1770d13f2ee259016a1070415934414a9059e53aa6bf3dfb9897dc82",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_script_address_but_-b0da7209": "1ccfce8ea37fa1c18d20fb3bb0308b96c240b27ed116dfec5a9ca960b9099d15",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_script_data_hash]": "936e8af5e4be8d4acd94a09bf08b3a765cbac065d703d59a7fbb1c9cdc2245ec",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_token_minting]": "1b7a8bd17f3efd63b23fb0756b751d0aae357d4888178452afdfc2d9f5d1d098",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_an_ordinary_input]": "65f93fae03816ce0f76fb017381bfc0f19b2b6c5bea53d514694923d77ade9df",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a33e6741": "8088222b4a370b134aafb8a554a4ffc00316ad2807780774b6820af67a7339e1",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a6481374": "5d83975c8779792b01c965cd28f073af19793be7d3d340a4a7dd10d5c0d301d5",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-ae657c7a": "48f46d1c68180429bcd0a05b0aff7d1ccfb0b02d0a0cffc8234901e3aee66098",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_key_script_addre-d3366a63": "089154d5e48efb8c3ffab99e02eb2b9f519f7f30608141a8a13732e6be7454f3",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_device-owned_collater-8f38b4d7": "ab4ae1504d1642ec36f01d9e82ceb77035cf46a8861d4aeea6a3ee782eea8098",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_external_collateral_return]": "2858cb3b347bf0b249a0db7eec2595175e3228ee7aaf34c130cdcd963b2e5dc4",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_output_datum_hash]": "bdea0cbe55b7a45b6edcd3a1165cfe988a9b2fef9e74d9a5f134973a425ab622",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_reference_input]": "a0804f6090c34f3d3ce86318834a9df9e6b6797b83bf7609bc2efa8db2c8636e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_required_signers,_ref-b419b9e1": "fcc91a91c948f339abc8f66c715d3c7099fd6e44a1510d88d68259b5fe423728",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-6a67c1eb": "5ce0d1d00366d12330702a3b85b03144ebd35d218f5e2f82990e5ed2d02c9af7",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-72ef969e": "174d6a4bcf009f32a9d657fd16881aeec38cc32db748dd175ae9f13baa491173",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration]": "30bdf27d101ae86f94c19df79d480cd01877b4e458ab2dce0187cf1ecda385a2",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration_-78f5c748": "e5332804415d230ccae1169962cabc6571abf9a1f3857db45382202d34511a08",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_an-4da9385a": "7e36886ca399db254f6d3f2324e6ae3659b4eb8a394a22b641d09e90634a2d6b",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_ce-46b0a250": "eea6d8e6dcf8c618bc2044cbff9722342e21bae417b220235a101fd57bd97c7a",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_token_minting]": "c746ea492e0901b0a5e6fc30eb53de694b2bb1515301d5762a637448262ce286",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral]": "a4ceaa763c02c1f6b5d5b91ce0a708c45f5325c74c49689214c597012afc36a5",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-3f0b305a": "fb58726395c59a798029729ecf8fed8d61531d31fe841f7cb69448d198b4e88a",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-c92d773b": "b70cc141b68eb0302f9849068c1a70ad98ac8c74be758acd017420f3b2f440ba",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_without_script_data_hash_a-9590827f": "a847c118191529ed295c643b737a44350ffda4841ca137c8495d79b86fc48747",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate]": "a205ad0ba82ccf0ebf89a7248063a1a2dd1edb7ade5bdaf90a7bd9a70f469175",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-336f4a44": "a205ad0ba82ccf0ebf89a7248063a1a2dd1edb7ade5bdaf90a7bd9a70f469175",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-d3427614": "e3c028991fac313d65936d88551c5a6d250df8065df866c025f54329ab0b58df",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-e1e17a76": "71df494636c38e60878a2150146f44e2139d8f1b60eac41bd95d9c2895f3c3c2",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_with_zero_margin]": "d883bda184f0e639b3a98068d354533fe0bf86d1af769d3a5d65ab0c9a20a8ea",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "b72f4724ba399a567ca9b466290dfd3d79f62a60bdb25895e1483d8142198031",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "41ad78d5d21da3ff48b0438c72e8cd9d6ff90e1e1305f17ee3cbf33b65b5efff",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "eb5bbb866629e67e9dabc713ca666dfb274cdfbb1c8f2bdf3f68a2ad474e67d7",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_an_ordinary_input]": "3add0a9882b51d885865b26654341c2cd685e3207dd5ad5e8c318ade4cbde3bf",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a33e6741": "bdda9257f8bdc5c0b4e784d378bbacc77e9468cb4cdba57eef8fdad97ec52df9",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a6481374": "2d2898f973b26a4da7b3c0782f38e3beb36ec855a261cced0d151f8915cdfec1",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-ae657c7a": "5f8aff2b5afd54d05fec247dbc12c60f1f2778febdf9b04c4b213554a4e74e65",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_key_script_addre-d3366a63": "b387388b7af8579f5988218ef405f679980e047c1ee77c3342503d13ed3a1689",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_device-owned_collater-8f38b4d7": "f6e8495b16400b86b3e763cc0a61cf1a6d905e0f1a72df7d31b7418d5d6e11fb",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_external_collateral_return]": "c29e3d005bc4a927914b00e7247c6d3a9e8f6592c7752694651d2cfe9f38f91f",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_output_datum_hash]": "b210f956b7f4325286fa974664372e1d204b9fb30e440630c55c135f479a2795",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_reference_input]": "6f99a0fdd38a0dff893bae2c4bde695549476e78c08522c06d7a00dd18527079",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_required_signers,_ref-b419b9e1": "1845183c003291d7508522bf5978647a4859d9afb16e3ebaf8f1737ac63f15c7",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-6a67c1eb": "8a661a9bf46287a469e0d379ee9494c1fa394caa0e61ea570229b6fe140a2023",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-72ef969e": "9d05f254104d1e3ef840a7ac90d4e7db24141fff303394eba611ca69d6a4ea4e",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration]": "198e719eca6114443b2d7b44e639ab96e5a7d06955c908515534bc5be03fb068",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration_-78f5c748": "9a1f1411cd9a4ef615e1ed95cb1d1ee553fdb5d8bc7a1aa16f29fc2a3cf3d4e3",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_an-4da9385a": "7f732d578d707a837b662c2ace5774504d22cae550e2d3d010e415e298e5384b",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_ce-46b0a250": "083bfcee0501631fca81cbe386062c49e60dcedf59dfbf957767bfc29c579012",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_token_minting]": "602b829b1c5a74941981444bd01a467ae08443725f80d19ffde09e3e77c8f4a8",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral]": "d74e2df59a5e392b9de2507773205759140eea7b3ce7a8c97bf084d9697820a0",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-3f0b305a": "114f72053fd685d283051473be229c1305888d67798d713957ec92f5ca54886a",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-c92d773b": "43144960ead4f245e0e5878217f22c20be4731b7bee25e3ad45c6749dcfbde98",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_without_script_data_hash_a-9590827f": "9f12d2d58dc775b4b32275d8564fd9cc05e951468e89cfe1d5b45b0aade6ed6b",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate]": "bd01982eff9dd77e71bec926120d5f8a4fb0b6c94b0847ac866adfb56f9a22ab",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-336f4a44": "bd01982eff9dd77e71bec926120d5f8a4fb0b6c94b0847ac866adfb56f9a22ab",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-d3427614": "9bcd553392b3d8d81ff5aeb3d2b988bde6168a17ee4eb3ddb223fd2339890599",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-e1e17a76": "23c3359444103e0e4a57dc816e8ebfb8ee451bd41133f3f99cc159603b467f4a",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_with_zero_margin]": "d84574eabbed140fa0aa0bf3cbd676a30d5c714e9b690564b64c58dc10fa694b",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "eb8806d2262796fa0d71d06f1aa4a1d75d5a5ae4d05b55babfb4ba43d413ddf3",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "5b577320c95e2c418d83b49365897074cad80bd3d03888988ed6a6269f3bc3fa",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "ef11dc7844e59fc1d13d8cabdc1ace0ae158bede6835a73467f6025edc20dfcf",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-0c37e6dc": "6d9f94040ee16974b638ebc298294b8d5c1b3cbc577ed9d998b8c04c5240e5ac",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-7f1d12f6": "4d685aebd862a2c9cbc8f3956ed1412b48f70154f9a9455e295ab55354dd5790",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_output]": "936e8af5e4be8d4acd94a09bf08b3a765cbac065d703d59a7fbb1c9cdc2245ec",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_script_address_a-56fc16f7": "5f7dc4b321b9215cfd0e4c11d88216e10b7a28e569ded24dcb255b7fd6278814",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_enterprise_address_ch-15518a4c": "3b2abfd7bae425e3974e0e7d4c8ab0b34255665282bff779821aa09d4700b682",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_pointer_address_change_output]": "e4c40148aa8f63fa663119adf396b0f0d87c41a2068dd51d42630fafddcdb589",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_certificate_with_no_p-0bbad967": "e657b9e7abb19e3f0de67aec79032569c1bac99df70dae64cad7af43d944912e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_on_testnet]": "9fdd10fbdbf8dff8bf7dce6cbbd7a95e726e06c9e5ebd87e1d503c473edce270",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_certificate_with_no_p-0bbad967": "420be3091ad7e4222664cf43b2c75bb7797a79b40798471a7adff7bd2ed2ee28",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_on_testnet]": "c0b269aa4a3359c149e444b531a21aee27f7f4adb12439cea8c59386a7c4408a",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[testnet_transaction0]": "f1565c6943b5725793b50bfcaee71aac6e1a40f121b08b52b29f61a619818bdc",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[testnet_transaction1]": "44474245a5b627fc453ba971ebf2372b7608f08943f5173773c97c668a9a62a0",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_key_hash]": "7f074a66f40804731919954e45ec669fa7f9bf80e19b71a455e59f4bced55326",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_script_hash]": "917067997acaaa193ae83359bbc33bb17e4ed563b1caad489ec39507ccf3e287",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-5d8f87d7": "f59775f9a47a4d769d6b8c617898857634e5d4ffd7c64b2f313ba9083df5c56d",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_key_hash]": "dfdda5db22d798341821914ceb780c014eacc0a36cfc4907bcf9d1f533bb4898",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_script_hash]": "9b435acd8f3a4208af8c1c3733345fb786257b42b4d3a13050ce9b54b8155f5e",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-5d8f87d7": "30c4ace40e160ad3a90cb88758000fee19210184915466d9f6f36c774442fb11",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-d7163ee4": "743c289d95bc47908dbbec45388af5304a438ed6da7efad4f77b9648f54bbed7",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_auxiliary_data_hash]": "64ab1784f5ac1a670600a657da597f86b52b6257665bc60c9386b98c4d2e5c23",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_p-3c7243e1": "f6c6e219545e4df648a815691f20ece4d19792e693708a6da8e6f0218315204f",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_s-20438873": "a9bf6caec3536ebc906f6e7f8f01c608fe57e7e785f7d2d145942134fee4c0de",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip15_registration]": "e9007da8f0150a1975529698337aeff1c71f9a592c34f298efc2965ca746faf6",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-a66e1a50": "4e3c9df18f0c581e085e1e1aec8a697bedbc2f0aa06b76ff59442a4d2d4fdc99",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-b18e613a": "23c0ffc2861edbd7273a1904c186e52c8a587bf75feb1271c8aae4c214a07848",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "d5dca29d5ec7632b233868e76d8a40f839ca8d014ddcb657904951ae6dfa0fe8",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "e1e55892f757aa9633a4f87aa7d549ea92a7d789a534bb88d6ff6142aa6f6e48",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "2105ab35f4109e87251cba1a6998b05d4b90885cc49a6a28cf6759e60098ce99",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_p-3c7243e1": "f1aff21c33c13b5287bea696429425ab633e1357a97eb5e315f31af2e21eab8b",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_s-20438873": "25882d737bce056b1f27f7436b32a0fd77def81d6dd0e193679bcf37b2a6a184",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip15_registration]": "7c37f0041f2bd417e5c44d680eb1e3cb55c77a2bd28834963ebbbdca15bcd4cc",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-a66e1a50": "6c5a6314ab17d36a480cb4a9efc72edd5a0efdab8d2431b278cde4cd369f0977",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-b18e613a": "07c11b94e87b664a2ede6f7b409e8eabf3c4c0683901933e73b72ff359393af3",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "28616100f56d0150868ec0b13eb1a34ea70f3997400ca2266fb95e681b0825ef",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "fa9b9169633d532752221cfaf21c01a84d459eb2b1e70bb920c640148c9e3649",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "f449a589c34a270ab96bd6f3e6e2310508a5b9207a273f9c47686d9f368501bb",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_deregistration_-15956782": "5123c3e97deaea42f78599a59059e235d33c174619ea494b0c2b0069fe911872",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_registration_ce-19717d22": "59d9c97d5c2a1dd1f7191801cb65c5188f7895404bccf1bff06f1a80a98a1e8f",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_registration_ce-8a443506": "59d9c97d5c2a1dd1f7191801cb65c5188f7895404bccf1bff06f1a80a98a1e8f",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "6d2e6fc33b9e4537377de27af71806f0f2a051a170601aef76560012ccfa240a",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "5d22cfdf126de7dd172252097fe50c5a9b15ec51bb6979c6a7e56a964dcc7e26",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration]": "fe33425d6db0765ee3ab213897d4588dea8af3dd500c6de5d30f057b2b854d86",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_and_withdrawal]": "accac6c78bcda19eaa66f98de2fe86f4f217fcf0f368c37bc8328998e1ec9dfb",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_with_ac-9ca046f0": "d5ac1fb916b3ba233d69731b098b6c9f47b254a076033fa5a03a28d9595dc02c",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_and_stake-3fdfc583": "f58de0a81ff44b907b0799d92f99a12e48174da072773357a18fafec98d668c9",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_and_stake-3fdfc583": "5afc17f9766ae636ba701025d0bd14058ceafbcd5a473fd90a66d9fd4949cfdb",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_certifica-e7bd462a": "9e3c429f4c41d09ceeb520fe9aa149700181fd09acfaacca7a8c6f34ef278eae",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_certificate]": "b0e74abbaca75940477903063724759f410af82b5e06868bd05bfba3bce296e9",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_ttl_equal_to_0]": "936e8af5e4be8d4acd94a09bf08b3a765cbac065d703d59a7fbb1c9cdc2245ec",
@@ -31564,7 +31564,7 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[1854_change_output_path_in_ordinary_tr-805f9bd0": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[1854_input_path_in_ordinary_transaction]": "4fc88edb035ea6b473485a8e8dfafa721084944734abd5667428e9d24564823e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[additional_witness_requests_in_ordinar-9c4f94c0": "4fc88edb035ea6b473485a8e8dfafa721084944734abd5667428e9d24564823e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[all_tx_inputs_must_be_external_(without_path)]": "67eae548ad5f9e3ef86e778a78d67978059cc21907e930438978e3a1feb11e68",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[all_tx_inputs_must_be_external_(without_path)]": "1099df9bd162318ecec0661367afee41b6599d3934938fe1db10e945694610b2",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[asset_names_in_mint_token_group_in_wrong_order]": "f823079fe10c54dd370e8b645e74815db307d2b4a986e022a14de275caa8c43e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[asset_names_in_multiasset_token_group_-7c1351bc": "703fabdc3aef38ec8f75b59494e1e5803138b2dee63161d35accd90838485e9e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[auxiliary_data_hash_has_incorrect_length]": "85de844149a488dd66b44d1d0debad0783dd4dab50c0c70795df39497c8125ca",
@@ -31593,15 +31593,15 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[contains_withdrawal]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[fee_is_too_high]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[inline_datum_present_in_output_with_le-43c025ef": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_change_output_account_mismatch]": "495356099a054ff53f1a3fc3fca598fcf4367075410ba01d47479938f96cabc8",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_change_output_account_mismatch]": "5e9df0e4d80b018fae69cc0ff074b4e711012d2bb746cabe3fc78d80aee0959e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_stake_deregistration_certifi-b3383de2": "d44647b55b5a9e41cf423c89a7fb4d6619fe6604194b4dc0cc5b32893e2cfe30",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_withdrawal_account_mismatch]": "6b6d78dd4cab2ac3422d332507895c3bb296a75594a56b219533d148b91f6775",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_withdrawal_account_mismatch]": "28d6cd36de37aae9708f6a35b671128065f3cd84239e76de28b22655c5512593",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_prev_hash_has_incorrect_length]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[invalid_pool_id]": "9efe232ed6e2dcc2e5e079aeea34acfbaca3586f3aecea6b8839285541fb81fe",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[mainnet_protocol_magic_with_testnet_network_id]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[mainnet_transaction_with_testnet_output]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[margin_higher_than_1]": "9efe232ed6e2dcc2e5e079aeea34acfbaca3586f3aecea6b8839285541fb81fe",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[missing_owner_with_path]": "484a1eceb6b9a626634612a54a8a86264c6b2bbfd8e502f054fcfb7ecbcd4ddc",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[missing_owner_with_path]": "2ecc867d2577555199598439714971c9daed43d74f44197fd3beed6fdc2e6848",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_1852_multisi-b7679330": "9dda59ca4bbe08745704cbd5cc676278dd4d12c32841ab5bc6c66c871724d34e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_a_collateral_input]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_collateral_return]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
@@ -31644,14 +31644,14 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[repeated_policyid_in_multiasset_output]": "d2a470d6458f375cc0376564d12080a00e2ae8f53a8e76380cfa241680a756bb",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[required_signer_with_both_key_path_and-7d9a3c59": "bb56f9eaf296403a4329d8993dde7a2c648f0c21d3d915eeb15c44c53e40b327",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-02b129f8": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-11c8b442": "c06b969c027450cb35f2a546eddb2d6b4f17dead2179a5e935eaf0cd7af944d1",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-11c8b442": "b97a88cffbc506dc0577e99810eaf30000d6dd01d99ea17cc2d0b4d9a07aaa07",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-2d1899d5": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-3f8170f6": "c06b969c027450cb35f2a546eddb2d6b4f17dead2179a5e935eaf0cd7af944d1",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-3f8170f6": "b97a88cffbc506dc0577e99810eaf30000d6dd01d99ea17cc2d0b4d9a07aaa07",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-60961d51": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-790fc948": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-883e81d5": "51e29608c4c717ba8e8620dba1e9faa3da6205d1ae6928b2c6a9e76cf8157b57",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-883e81d5": "f63e5cd6979bb88fdcad74eebdf3ad09d08eab91d596b770a39053aa8b4516cc",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-9ae6620c": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-c3588066": "c06b969c027450cb35f2a546eddb2d6b4f17dead2179a5e935eaf0cd7af944d1",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-c3588066": "b97a88cffbc506dc0577e99810eaf30000d6dd01d99ea17cc2d0b4d9a07aaa07",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-d0eba163": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-e7a533e7": "9efe232ed6e2dcc2e5e079aeea34acfbaca3586f3aecea6b8839285541fb81fe",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-e908b1a8": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
@@ -31668,7 +31668,7 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_both_auxiliary_data_b-6f1ead27": "69277b85b97628dc6e555a5620c4ddbae161f1a8985777025f26d4160a9dd523",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_both_vote_public_key_-3e8cccb4": "69277b85b97628dc6e555a5620c4ddbae161f1a8985777025f26d4160a9dd523",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_cvote_registration_co-2dcb1cea": "69277b85b97628dc6e555a5620c4ddbae161f1a8985777025f26d4160a9dd523",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[two_owners_with_path]": "9d99cbcc7c830b3c49fc925bf1006432abe8317f9fe368eca2e6625fc6d28e4d",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[two_owners_with_path]": "d8c9070e0015816e7ae447d981612403f7e9cd1f8c0a94f094fa8eb6012ce754",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[unsupported_address_type]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[with_multisig_transaction_signing_mode]": "341b1f50b949fbb5641442c13e95a31ed21a91fb2a98278a05f5175d222f357f",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[with_ordinary_transaction_signing_mode]": "7b74a59a4804e6f48679b2e1ff0f57025e0b4c50bed710a2608b37e87b18093c",
@@ -31681,11 +31681,11 @@
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[withdrawal_has_non_staking_path]": "7913de147959a1d344418dd12168ae7642cdc5e496c732cb94bbb818f6ba14e7",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[withdrawal_has_script_hash]": "7913de147959a1d344418dd12168ae7642cdc5e496c732cb94bbb818f6ba14e7",
"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[multisig_transaction_with_a_requ-c2fba589": "110eb1fbe623d4e0dd1f58686a0ac378f73f9c7d7cbdff94ce8eb21d97adbb3a",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[ordinary_transaction_with_a_requ-9728607e": "02dcce535283bb68e8fac2993897599c4d1524b140b10f8e0f22051dfe43d4e1",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_reference_input]": "5a601ef6f3abf906664e90e0f474468da0443d88df541a6a8fcdea769c9d11ab",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_total_co-e846c221": "6deda149472d2ace708bf3c3c4069c2cce7afdf0a3cc8b9f5dcf4d3563a3cb85",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_cip36_registrat-b9111c27": "d48b0d301647ec63f530ef1ea4d8ea7d6106969401a3b80e25495b97b07aa929",
-"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_stake_deregistr-6e84da2f": "c117fd2eed3de49b5d92a293a82b5a3608fab31910a2cd791bf4f9bfc7d3f6f2",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[ordinary_transaction_with_a_requ-9728607e": "347993e2acb75199972356a2fdab697b0146122420a349865c7c7f1800e86d48",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_reference_input]": "04300fc21d1aefaf1b6e1de7170f1e934d77df8d80e00fe9d1797e9c77f4501d",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_total_co-e846c221": "75f4112e6ec3cb68e0f3612d0a5245b9caba8d717897d853e43b5f85e8f28998",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_cip36_registrat-b9111c27": "d14c21d35712d6e107e9fb081a4617d9b60f190147f0c3c98f3c175ce41707da",
+"T3W1_de_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_stake_deregistr-6e84da2f": "09d75971c74c1001a9c9402996ea57c92a7b469c9838346659542a89dc707d9f",
"T3W1_de_cardano-test_sign_tx.py::test_sign_tx_payment_req_failed[swap_-_multiple_outputs]": "0a489dde865f96d41084ce7b8a11efb09c59ea586a997f503efb0125574f223e",
"T3W1_de_cardano-test_sign_tx.py::test_signtx_payment_req[swap]": "76056e51a03de4184dd063895e429a218effb6b0a110ed2aa0dda0a528cb5888",
"T3W1_de_ethereum-test_definitions.py::test_builtin": "13e450553e57ab05af4d9e629c11538908a0206f1670b0a4499ba714c37152cd",
@@ -31926,9 +31926,9 @@
"T3W1_de_monero-test_getaddress.py::test_monero_getaddress[m-44h-128h-0h-4Ahp23WfMrMFK3wYL2hLWQFGt87-f8cc3746": "46c7f80f0dd7c313b5664639cb3cb419e4dd41b3b010dfd3917fa33edfd763aa",
"T3W1_de_monero-test_getaddress.py::test_monero_getaddress[m-44h-128h-1h-44iAazhoAkv5a5RqLNVyh82a1n3-1cc72b15": "31546f0d25276d7574c3255db4ba6f7d2a0dc0b40f6032aa62b6f6cbf7c6dea2",
"T3W1_de_monero-test_getaddress.py::test_monero_getaddress[m-44h-128h-2h-47ejhmbZ4wHUhXaqA4b7PN667oP-d571924b": "d4b8080f1da95fc442d5fd06df10e292a9aa3df7eb7a1c3b245e9115ad6f1b16",
-"T3W1_de_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-0h-4Ahp23WfMr-1e763aba": "3f5870b7f4e47dbfbc2246ebbaa1efc6b19abb84d80d4301d666d690eed427d7",
-"T3W1_de_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-1h-44iAazhoAk-005b0fdf": "96c12d8e3553f6507959e2d4676191b74189b470d0f11367b9e4a6b73cf64077",
-"T3W1_de_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-2h-47ejhmbZ4w-df40ccfd": "229061b62f279ec95342ae27a252915be4e885c3564c64e244f989d0b33e59c7",
+"T3W1_de_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-0h-4Ahp23WfMr-1e763aba": "aefeb8b2d6ecf7368b25a35a5ce5942797665cc1d5cb0c668f7f787ecfdc1b74",
+"T3W1_de_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-1h-44iAazhoAk-005b0fdf": "428ec7304e6aa067cec747d4b82548d8cbaa6a8d5320b5989406325909274190",
+"T3W1_de_monero-test_getaddress.py::test_monero_getaddress_chunkify_details[m-44h-128h-2h-47ejhmbZ4w-df40ccfd": "42015f6539d9e638881969bd29084f0dea2e2ca6d5209eb64a7f3a337f12c97f",
"T3W1_de_monero-test_getwatchkey.py::test_monero_getwatchkey": "a36cb076b5796093edc2a639f0d9826b02c5f96a49b05808d267367e9c9b1e4d",
"T3W1_de_nostr-test_nostr.py::test_get_pubkey[17162c921dc4d2518f9a101db33695df1afb56ab82f5ff3e5da6ee-0bfd9abd": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
"T3W1_de_nostr-test_nostr.py::test_get_pubkey[d41b22899549e1f3d335a31002cfd382174006e166d3e658e3a5ee-2f9dab71": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
@@ -31980,10 +31980,10 @@
"T3W1_de_reset_recovery-test_recovery_slip39_basic_dryrun.py::test_2of3_invalid_seed_dryrun": "fcf9e086d9b9d04985179b5be4d64067d87d5a15418076529ebaf54dacf85485",
"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Bip39-backup_flow_bip39]": "5775b1cbb8a560f296e01a5ebb70d2ec2faffed70e9cf9fce6d57402edb42649",
"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Slip39_Advanced_Ext-10ea47d6": "09b99dadced14ca7738b1f8cba99ada31d2640fbd28ef3b768d99d7cd22eb8fe",
-"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Slip39_Basic_Extend-5dbe8b0f": "e560b1b1e0c8f243659266605f3d587fcd6a37d116b524fba0a390fdb8d6f72c",
+"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_manual[BackupType.Slip39_Basic_Extend-5dbe8b0f": "dd245251abc07dac57e05d09042673a47fc271d5b0aafe2bdaea5ce4dd8857d6",
"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Bip39-backup_flow_bip39]": "0d8717946b21dfee8b73eb232efd5bd8b014c27b092ad487ad537a3218b6057c",
"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Slip39_Advanced_Extend-8b11c1dc": "1373c4971e818cfb79d2afb9f4daa2fa1c28f07c438a59935297fea41eb120ea",
-"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Slip39_Basic_Extendabl-cc19e908": "731520db38a264efda9dd84d0170971c1d81d9e4fa0ca2276dc3d2ff9ab517eb",
+"T3W1_de_reset_recovery-test_reset_backup.py::test_skip_backup_msg[BackupType.Slip39_Basic_Extendabl-cc19e908": "8d45d881d333260d66abf5b0fb26cc6e11e71875c9c026e5757d94f1e76325c3",
"T3W1_de_reset_recovery-test_reset_bip39_t2.py::test_already_initialized": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
"T3W1_de_reset_recovery-test_reset_bip39_t2.py::test_entropy_check": "b89991693d426bf1c699cd0f0b096ec33cfd8fd244235b2af2df03dde404a86a",
"T3W1_de_reset_recovery-test_reset_bip39_t2.py::test_failed_pin": "8e13c70b5f92fb05d54d8b5ff93319dae980af2276215831845b91e79e4f5a05",
@@ -31995,11 +31995,11 @@
"T3W1_de_reset_recovery-test_reset_bip39_t2.py::test_reset_failed_check": "69841a1514f657332eaf148c78d88865beaea16f096442bdaf4bb949c4b26de0",
"T3W1_de_reset_recovery-test_reset_recovery_bip39.py::test_reset_recovery": "ca991c3598f82303862338133deee1c845b23fce3e6dd4fb0b4783f1b67757cc",
"T3W1_de_reset_recovery-test_reset_recovery_slip39_advanced.py::test_reset_recovery": "0ded284259de4eb50acc9ffd18ad35cafc2b1dc3e334b41df67bc508c055511c",
-"T3W1_de_reset_recovery-test_reset_recovery_slip39_basic.py::test_reset_recovery": "e0f8faa50f40e6b0f9b9e6a02d3fff7da5017b1260fa4fe490828b22138a30c8",
+"T3W1_de_reset_recovery-test_reset_recovery_slip39_basic.py::test_reset_recovery": "662e1a68c5191578c0856638db310740ccea4ef0a0526ce1315c787b77ec27ea",
"T3W1_de_reset_recovery-test_reset_slip39_advanced.py::test_reset_device_slip39_advanced": "5fdda35d3c62e4b3966caae440930908615ac9d79969391d4a5348d055856d4f",
-"T3W1_de_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic": "901f1e5306e9f4d3937ab6e62fbf2e6010a4e54e98e5751d1e491fa99ce6207e",
-"T3W1_de_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic_256": "0ace339c57a1175abf1753866f22f6b73430399f732271fa70d802b3ca9937bb",
-"T3W1_de_reset_recovery-test_reset_slip39_basic.py::test_reset_entropy_check": "f4374131885734d73c07e3c484441e3c2ba6c26c47e0ceda1190ca57822d8023",
+"T3W1_de_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic": "9f4c7afd110611704634222f6289a151e002e003b3afefb2027e27c11686fa18",
+"T3W1_de_reset_recovery-test_reset_slip39_basic.py::test_reset_device_slip39_basic_256": "e068e657bbc3627cbd3fd5e5f46c3cb5d0c0847b2187af71d5777b070b7714cb",
+"T3W1_de_reset_recovery-test_reset_slip39_basic.py::test_reset_entropy_check": "a9d781950f6bf524eb7020e8a6bbcbdce41e68dcb54e1bdac3446d66a82c1854",
"T3W1_de_ripple-test_get_address.py::test_ripple_get_address[m-44h-144h-0h-0-0-rNaqKtKrMSwpwZSzRckPf-3321e5d1": "0724c297bb304ee57a6688a5988bbacff0f5c5bc176bf237b192695bff152d9e",
"T3W1_de_ripple-test_get_address.py::test_ripple_get_address[m-44h-144h-0h-0-1-rBKz5MC2iXdoS3XgnNSYm-fd75b415": "b226d13934de21406d673cc214d0ce7a7bd4daf0a91864ed80dce6b367d7b706",
"T3W1_de_ripple-test_get_address.py::test_ripple_get_address[m-44h-144h-1h-0-0-rJX2KwzaLJDyFhhtXKi3h-af5daf0f": "ab683aa595daa92e1c14e0c65e3510e4a9098288711f341549769e43235c49c9",
@@ -32022,7 +32022,7 @@
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[allocate_with_seed]": "ebaf4f2d35bfb9c0786f2de30ba26681fd5632eaa92d02d3519db753368516cf",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[approve]": "a3496c95e166750af9c10c37fd3ef4f9a1fce24d13ea2d540948599e9529f9dd",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked]": "929d935bfa1c4ea916d20ffb8d3ed18e1984f7a1c1f14d6b6ecc2e3c21a1ff85",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked_-_multisig]": "a613f3945dcd6c1b5e4b0b93362b2167ee10d724e08c056441b54e76792dee76",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked_-_multisig]": "52b2d67d5c07d910605b3f9045740d4425de4c3c51c3386c1d88e66160cd40e9",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[approve_checked_with_token_definition]": "3ed84f2e2dc0a080e5cdc1c68461f0787fc7a3f4db31062c8b060eee4e68bc7a",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[assign]": "284acae7785cfca5115dda9dcc3f8c87e3a52df30d4126796a10631710254cf9",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[assign_with_seed]": "4b6cd75e714169faca9c097f63e89bfe3a5a9d036bf4b93590a266f4bda2f2bd",
@@ -32032,18 +32032,18 @@
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[authorize_nonce_account]": "7de9e5debac2ebd23d22065ffe33f5f7026107e3296c4952ac6e3809ef3d1a26",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[authorize_with_seed]": "c74c7383008d793f93a980c12fd974fe1d1654d9a94d307dd251b0aae4f09bb8",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn]": "8ff5935f8e4e219d7e6dd3408b46050dd4411a7571d86dc8a388f6fe68ddb7d5",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked]": "14609a3ad7bec782a64ed95e9ae220a8b98610fccab9968c3116526a5979313d",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_-_multisig]": "facdf9822c6d1f995dc5d50c1dc528870f2982a448f05baacaea0273eb512696",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_with_token_definition]": "36f638072d84ddd4f75d7f3bf4f563d8924cc2a1830dfac573adb24d3ece7b5f",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked]": "be8ca5361ba29776b7483965f3bed343e736f619ed08c2c863399e858a88d0eb",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_-_multisig]": "8c8140b0094a2be8aeab7e0feb3ec9a66483b91eb68aa4ad3ee6e495d7c36913",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[burn_checked_with_token_definition]": "6fd1c3c711194cc7210fe9dac9b61b6362f92003b19c70e5922fda9c712ba393",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[claim_instructions]": "75e403a4acea6f1f8f8afcb0fe98dd940f5c8e080757eb4311fc6d1b52fd319a",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[claim_instructions_with_warning]": "737520708a970a01d52211fc4d30e865bde21ac323ab35fe376288fbda48aa86",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[close_account]": "03114c482f0b924433edd5d79de7e6b3f7051263ff077cd8e00e2368237f6f3e",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[close_account_-_multisig]": "5ee6977903246d928a5ae179c243ec49fd607ec83f91f142717c4d0598528eed",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[close_account_-_multisig]": "291932a6ebf0d11038ed0b58ba807c2ecf24491429d286ba3becd2da82358c02",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_account]": "c784d5a318a96642a6e504a502767573ebc26db4da35006d4a4eeae6b872ea9d",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_account_with_seed]": "53119676cf129494a4e5e98220a0173f8fdea3afb690ff31aa80edcd71efb354",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account]": "181020e1cbbcb5c9068b8b1d429801d7a7e7c060f6c184f8d0f51361ad6354ac",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_idempotent]": "2a57d22aa6028005d1e37a1c4b75a3f97a959a8b1d475280a41dde4cb07d2b89",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_idempotent_luts_(#5379)]": "714841fc2199890a9d7ca8287982f6b82432f66b29d1a0b207d7f89bb5458f20",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_idempotent_luts_(#5379)]": "003362a0af1d7705ff98e88245bbc69f8da005ccb7f628e66763127cdc1db261",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_associated_token_account_with_sysvar_ren-cb526e6e": "181020e1cbbcb5c9068b8b1d429801d7a7e7c060f6c184f8d0f51361ad6354ac",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_stake_account]": "3ca911fdb9fe78c6b78133548c82ec97c38e181347572d97128ac3819d5891cb",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[create_stake_account_with_compute_budget]": "74757ccb33a2b484da712042bb6126b447b5c07c9d2d14a0f07efbd47d5915ca",
@@ -32051,7 +32051,7 @@
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[deactivate]": "61960bd35c6ced10ace4ef02bde40dc3e6b6432e7b6a770e965ecf95517e4e7b",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[delegate]": "75c1a2a4d0acd3f9b8a3b805527a17b1ff8657fcf9d9649964c231e1b4b621ee",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[freeze_account]": "cde0240a34c32663709da710814694886c57711c1bfc13bf79d8d568068dcce7",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[freeze_account_-_multisig]": "f5dcf03201a955b256c3049c8a3244a3723a599f4fbba73aa67d06bdadeb1add",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[freeze_account_-_multisig]": "1db9bb7340716ac1371628c0d51d47948a423fb7058c7fed9b973a971f8240f8",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[initialize_account]": "411acc278e1a25a28094f6e5055a4783cb94a4d0c036aca2d7cbe1f2d1327c95",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[initialize_checked]": "1ec50e61374762cbd52b0ff564916f4c494340134f77c6c695765e8bb2a32b25",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[initialize_immutable_owner]": "ffc289670b924988de4ca76604347e5da64a4d29fd4ab87c97efb7637b011f89",
@@ -32060,22 +32060,22 @@
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[initialize_stake_account]": "c9249b468355ec170ea333943af96876533c3004d069212e042acf7a81c47702",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[initialize_token_account_2]": "9a2ebcfd6a66d2f32290dae2adc46e8325de83248e1d79377d6107b2ce2000cc",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[initialize_token_account_3]": "232419d328f16eab04b30226e5d1d8d809110089149bfe450f5e4c09dbc04e0d",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[lookup_tables]": "7cfd0b1a1a344ed8f98714462059418a990fd380ee68a54edc06d32283de85ab",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[lookup_tables]": "c8a883343acd7311a23e9b2f442abc99872f951a7136da1c7ca45d05d89881ea",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[memo]": "ea06cf13c35c6163f6b2467cc3add8b88ee734b3e703b084c525c43a7f172525",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[memo_legacy]": "ca71ccda39ab3528d695a6f8a2956b699e10dd678abeaee22f64bf38ccda4932",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[merge]": "f2aa119b324d3107b1d795642936583db4b56a4dcbf4cc1953826ed4e267acb3",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[mint_to]": "521f3a106c0010904e06ff14704744b9fabfabd6c3d2a69e271e0f5e45b47c89",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked]": "eabf35c58f2c8746d9dc02229ee019cb0066d2aaa245ef855746a914513dc4ad",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked_-_multisig]": "c698c0646cab16d3e74da90795d9db76e2feb4ca4345c0be81e55818b46e1394",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked_-_multisig]": "639d774939f9dce496de7623ead417207138e5c2a4089b1c1f5aa09549b37587",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[mint_to_checked_with_token_definition]": "34b246d7cac231abc46e271342ab1e5596d48c8266a2a64e1bcfc2a94dd4a00a",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[multiple_claim_instructions]": "72b8dc4bc32c536b5634901e90e417e928cfb7f92a80a6953a9e9133530c377a",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[multiple_unstake_instructions]": "d2cdde6db4a17632c4c064bd76814c4f2f13c259b4d23fa4e6f55215b42f04e5",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[payment_request]": "ff37bafd7d867e59efeb30b1f7198e68b763e75d3b669bab7ba88b8a899ace66",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[payment_request_-_multiple_transfers]": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[revoke]": "45c67976b9b67933567ec000e9900b3f9d0938087a3c0deb6722115f6ffab0bf",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[revoke_-_multisig]": "747662a63d90e98c432d787d6ee77ad00539fc4df2fa3779fb2c7a1a88b01cbd",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[revoke_-_multisig]": "bdbd0d13d5856d5879c436314ac34c2316868d43fae32f4a52bdf58e41f48de8",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[set_authority]": "3a9b8ac7e6b43e0af9240680e80b97ca37762988878d236f14694cd026164549",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[set_authority_-_multisig]": "fe28316aa8551377010dbb9a4b815b934d2c2591c2852e2297b1b52583be22d3",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[set_authority_-_multisig]": "6bf372fd37fe1ce978cded0d7c6fb4a55c72ee9b46c35da7a7880029413ee3bf",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[set_lockup_-_with_all_params_set]": "3fb6f5fc6c92cbf9a768a8055d2a80b5cc5c8d679b46ae0c5eb1f8cae6da265d",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[set_lockup_-_with_epoch_only]": "c79c7832d3c816f5481f4b9a93c2464578759c05b2f9a7cd239ad25e94084cff",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[set_lockup_checked]": "a2852d519ed25827dd1e1e7af8a003a11ae7542014ac55b8df2ae95eb6704f52",
@@ -32085,11 +32085,11 @@
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[stake_instructions_with_warning]": "f0ed4cf4ac6b0f87099fa17f6a1b62605f1bca082130669a3ddb981268b5ab6d",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[sync_native]": "e0e221c356e41b1c8beee24f89f38606b50b1a29b13307bb7bd9674e8f48825c",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[thaw_account]": "e6cf4c7500eec2a2b1c377e7c3a4451cc80de01816ace5c027720804ff82f67c",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[thaw_account_-_multisig]": "b3dfdd34f919e4be5d80e13ff1710124de436d02921f45d3cce402440a87e486",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[thaw_account_-_multisig]": "13441cf8874b9627dd69ad38e33e4c1fcda8f0eec89a7d1c42835cea17fdfb24",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer0]": "9395d3baceaa2ebaa4fe35c8d97964762d8fd7dff5d6109231a585a1269bb5eb",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer1]": "499205e85a5b098d833a8054ff165b4aba022780cc76ffb1993f21efdd600260",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked]": "72d39a1c59f3392a843d8a5cb8f1dcf3c0279f43f6169f038562be47a220279b",
-"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked_-_multisig]": "0a176ff88151cd6b0875fd0305281e2a071e507ffbbe9338764cd26f63e0ccaf",
+"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked_-_multisig]": "a5cbad3f81112fa55b0ae781f3167d91b2e60f56896df562c1a93a3e9a239a9f",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer_checked_with_token_definition]": "39b8a21efa1832f9bd7f596e3ff1ce8daa76ca1b08105ddb2aeb2e29e924f6f2",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer_token_-_predefined]": "128a54aca291b77aa93c4011252b66edbf99769db71053bd97f50e6558cdfc5d",
"T3W1_de_solana-test_sign_tx.py::test_solana_sign_tx[transfer_token_-_predefined_-_with_definitions]": "63ea1fb6aa09b2007d5a67839125685e7a00569923d50ea723ea803c542dbaf2",
@@ -32238,11 +32238,11 @@
"T3W1_de_test_msg_backup_device.py::test_backup_bip39": "7e025129488af6901f62b3c60c7d5592c98ae86e1b39a2945392684b3f99a3df",
"T3W1_de_test_msg_backup_device.py::test_backup_slip39_advanced[click_info]": "04a4869241477673019c938bd48fd7bfafe271c7aed07fdbe2baa4ee8e012c06",
"T3W1_de_test_msg_backup_device.py::test_backup_slip39_advanced[no_click_info]": "80697e40f8d57ac5b0f060b4f5cd7bf6e4476f2770da41cbdf9b8681fe634014",
-"T3W1_de_test_msg_backup_device.py::test_backup_slip39_basic[click_info]": "c78dd825224dc8633ccdfc42896a27a0beea5ca2e0a78d0eedc01ebdc9d7c0c1",
-"T3W1_de_test_msg_backup_device.py::test_backup_slip39_basic[no_click_info]": "5232f67461aaf64b2d2638f9adfd7f20c1c47dbe77017f1ade24f0a232d30fc7",
+"T3W1_de_test_msg_backup_device.py::test_backup_slip39_basic[click_info]": "14be3b04dbfdece57890a40b5b1bec5854f74653ba4a56591f22b96d99af8a8d",
+"T3W1_de_test_msg_backup_device.py::test_backup_slip39_basic[no_click_info]": "028980a34689ef04ae85a4af5c6a2941efe625e8f95ae8f532045663c0f5d845",
"T3W1_de_test_msg_backup_device.py::test_backup_slip39_custom[1_of_1]": "6bd4eebbf9bc7d38337a9ccd6fe7227567a9aab6c7486c8d79d2f099277672d8",
-"T3W1_de_test_msg_backup_device.py::test_backup_slip39_custom[2_of_2]": "8b25fffe7de9211ab551ad54b699b3b9c1c044565cf2506776a2b59abee76cfc",
-"T3W1_de_test_msg_backup_device.py::test_backup_slip39_custom[3_of_5]": "4e80d2c4ec46ae0680b85d0ae3441d8c46f0caa53b6ff6cbc470d5c9e5e525e1",
+"T3W1_de_test_msg_backup_device.py::test_backup_slip39_custom[2_of_2]": "124f463a741a6aad67a319df83b636cba3301d0df905dda2a1db63eb7604eee4",
+"T3W1_de_test_msg_backup_device.py::test_backup_slip39_custom[3_of_5]": "0a24b2de6ad4828eca630d204b91b743a9835ca3b27fb1a6b1d2ea6aa753da7b",
"T3W1_de_test_msg_backup_device.py::test_backup_slip39_single": "24e54dc72b51fdbea61066f12e0d21b0e02f91b756e32e9b29b7e2434f84b8cc",
"T3W1_de_test_msg_backup_device.py::test_interrupt_backup_fails": "5d799df4752442b8ae1f5bdb9b1831c97869c8079e6cbb2384193447aed3d04f",
"T3W1_de_test_msg_backup_device.py::test_no_backup_fails": "32f7ece1a421303cf214be5af0d36255a4ae85750129df37a4862c1e540b00e5",
@@ -32291,10 +32291,10 @@
"T3W1_de_test_protection_levels.py::test_unlocked": "d48141d260d8281a5a34070fd880e87da3411b7b550d3c9e30b05ffbb80a3595",
"T3W1_de_test_protection_levels.py::test_verify_message_t2": "722243f853362aa4fbba6519cf55e8dec0e7da983a44c2c1f634a35692966289",
"T3W1_de_test_protection_levels.py::test_wipe_device": "369c7b0581f6ccbc1d90a735e340013a9cdfc0f1896db827c7ffdc186f61ffe3",
-"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host": "51c8062224393df5e645caf50dfbc2004d964d221d9a1cd14a3a988fea2543b3",
-"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host_cancel": "af4183a1bb56e6d84cf32ae169f089165ded2e9cfba30c8782c8903fdbb62ae6",
-"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host_send_disallowed_message": "af4183a1bb56e6d84cf32ae169f089165ded2e9cfba30c8782c8903fdbb62ae6",
-"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host_upgrade_single": "6e910320ad207475ed435aad25cb73bbe2d7cf72eba6058e90d9cfa1fc7c21f4",
+"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host": "cf47aa50ecf8a494fe67e0b193fe1c8ec4378eb8439da49d8c1eef93ad6f2d8e",
+"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host_cancel": "ff80d6b3bb717ba8894feff63e900c162457cfa938e4188f269f388cafa6649e",
+"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host_send_disallowed_message": "ff80d6b3bb717ba8894feff63e900c162457cfa938e4188f269f388cafa6649e",
+"T3W1_de_test_repeated_backup.py::test_repeated_backup_via_host_upgrade_single": "116edac8314be879ce1fb8d7d5495a1345e5ac251989a459826c3412a4b80463",
"T3W1_de_test_serialnumber.py::test_cancel": "4b2961ea2412c0dcc28a41bd90b3214cb826c5208437263f96aec90da28a6bd6",
"T3W1_de_test_serialnumber.py::test_same": "4b1c17d0e920c334666a74f7db3248cdd91453928bf76c991552cc096b81d72e",
"T3W1_de_test_session.py::test_clear_session": "256bd01a2ce4abcd1353eaa0ca54775383bfde3c819cf91319fe22ca49ff09d0",
@@ -32308,7 +32308,7 @@
"T3W1_de_tezos-test_getpublickey.py::test_tezos_get_public_key": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
"T3W1_de_tezos-test_sign_tx.py::test_tezos_kt_remove_delegation": "484afcf0eff84203a890bc3f96a31166f8b5a020ccc5b5208ce00583a5293987",
"T3W1_de_tezos-test_sign_tx.py::test_tezos_sign_tx_delegation": "a7c0640b4238c35671e2533b78ff8e333373b3c6d60f97298113841890e76f1b",
-"T3W1_de_tezos-test_sign_tx.py::test_tezos_sign_tx_multiple_proposals": "f3f74aa12a3a16979912005e9ab7c4b6fe2f74ba4a9c90d51772da9f4dd7061b",
+"T3W1_de_tezos-test_sign_tx.py::test_tezos_sign_tx_multiple_proposals": "029870c3c53d0f68be1e519db8b4ca1a4ee7eee525a917a5c796fd5038c4e8a8",
"T3W1_de_tezos-test_sign_tx.py::test_tezos_sign_tx_origination": "f3c7355b33711a654ffd72d1023a7cf6b3f412a68fd4ff788ec260909588ed81",
"T3W1_de_tezos-test_sign_tx.py::test_tezos_sign_tx_proposal": "93dbb720e9945d38e560d5504a2d6fcf92e4bdd4aff21a6871612e4b5a563bc1",
"T3W1_de_tezos-test_sign_tx.py::test_tezos_sign_tx_reveal": "3a813b326a396d88db33ec29ca194037bd1f5d715319c1d5c39ad8f1dfd46f66",
@@ -32350,7 +32350,7 @@
"T3W1_de_zcash-test_sign_tx.py::test_spend_multisig": "ceea95ed5991295d0ffb6ed0fbaca871d3ff01e133b06c90fd3cdd05c5e1e8bd",
"T3W1_de_zcash-test_sign_tx.py::test_spend_v4_input": "e9ba20b69acbdf1461cb86ff0df647541689d4b482863a906b02632347eea83c",
"T3W1_de_zcash-test_sign_tx.py::test_spend_v5_input": "992cf58481f451dd7a2d7694e0190897865411fa6ecd27612aa3a0fb4c180edb",
-"T3W1_de_zcash-test_sign_tx.py::test_unified_address": "e09a62ad373d3d0c16799ada2f07c45d53abd506143286eb54b0a24135a29f45",
+"T3W1_de_zcash-test_sign_tx.py::test_unified_address": "0b54ce25b0095762b190b8838a82993197d109e8f7b1ca6928234f133ea8e2ab",
"T3W1_de_zcash-test_sign_tx.py::test_version_group_id_missing": "98735f888f827501b25c78c6a737c1983a800c620f709c65b1d95f6c8c9a2b90",
"T3W1_en_bitcoin-test_authorize_coinjoin.py::test_cancel_authorization": "8b38818b4ea60878b3c09fb775ef1177ec10e261768856c90e2d9c90a6db492f",
"T3W1_en_bitcoin-test_authorize_coinjoin.py::test_get_address": "a10c802286650bb131789933973aeef9e65958404d6522afbcdf9b75be3043b1",
@@ -32370,42 +32370,42 @@
"T3W1_en_bitcoin-test_bcash.py::test_send_bch_multisig_wrongchange": "17e84cdec4953ad0c36a36252bb8543ebb6dc0ad63e7dfa90f5a78425562070a",
"T3W1_en_bitcoin-test_bcash.py::test_send_bch_nochange": "c8f41fccd20436f64a68a33a03e58c4efdd6f4b543a7d45521fee1247511989d",
"T3W1_en_bitcoin-test_bcash.py::test_send_bch_oldaddr": "27ebb1d547ac4e3c8d899694d0e3c7db041f128f0f824e34f726052278745463",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-10025-InputScriptType.SPENDTAPROOT--301d7568": "497f26b863b6e8d7d53096805d1b0b55d5e94111d27c4ddefd152df3dbfdeb9d",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-10025-InputScriptType.SPENDTAPROOT--301d7568": "12d183cfeeffee326aff7f6246f484644ae181652f6b57d2a4daf9de05cb12ea",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-44-InputScriptType.SPENDADDRESS-pkh-a1b0211f": "d0e45a99e28822ad64603f967521c871b7aea4267d7874fe2769dd79d648c1b5",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-49-InputScriptType.SPENDP2SHWITNESS-75f8d49f": "2e149130ed3a578708dea413f6e5c42482bf8b10f109f6b768c4b2cfff1d1687",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-84-InputScriptType.SPENDWITNESS-wpk-cee65569": "a569736586527f5247366c48b4062be8b89708fd38569db0bae8750d5cdcad78",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-86-InputScriptType.SPENDTAPROOT-tr(-6b548a1a": "e75915d0839992c35c45202723ff51a6655d53418c95d887f7b2a49017623bc1",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-0-86-InputScriptType.SPENDTAPROOT-tr(-6b548a1a": "0b8c471ef6fa3a0141745aa1d182924974b6768828742f795a93c2f198de4f21",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-44-InputScriptType.SPENDADDRESS-pkh-37215d1b": "11265547bd227aefacee2c65886da37812f7b62054429bd2117ea3a69a7118e0",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-49-InputScriptType.SPENDP2SHWITNESS-3ccd985b": "965608b0364463b144c88cd6318e14b754bfd3fbd31175d2ba230e33ce9f8213",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-84-InputScriptType.SPENDWITNESS-wpk-21c3fa4c": "d8bd844ae633eb997870035c8d4f0b570c3732ee883f5d991608cb490e1997db",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-86-InputScriptType.SPENDTAPROOT-tr(-3a85f3dd": "27543ffb1703fd49b7339583745482fdf131d1368d579d4eafca35ebac62b968",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-10025-InputScriptType.SPENDTAPROOT--591134d6": "187adb14b085fb77f212b48a4ff91b550a1ac309d26036c6449a5c79a0cbe778",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Bitcoin-1-86-InputScriptType.SPENDTAPROOT-tr(-3a85f3dd": "5b71c1f8be6113410605e8eb31b07dfed18a1622cb97c5e807f07b60d289b944",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-10025-InputScriptType.SPENDTAPROOT--591134d6": "83cb0752e48df205a7cc19878a52e7f087b8db6d9d497094d8ee0304c95e5352",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-44-InputScriptType.SPENDADDRESS-pkh-b7612f41": "e852294c064293f55ce1b383db66c78b017e56a24992ea91e4150eb41b6a7d9d",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-49-InputScriptType.SPENDP2SHWITNESS-4408e6b6": "9b52b1bebfef95ea094affca22a85abc3c82781f484a3961a46cee8cc3cf29d0",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-84-InputScriptType.SPENDWITNESS-wpk-49d5549d": "82af7ca3b795a654c89d63381dcb89902b4b69aa98d5f990c13e31d6af9f107d",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-86-InputScriptType.SPENDTAPROOT-tr(-51c6f7dc": "43bbc78be220560acb3e194ee83ec594c8030b992b46e706ee221c0909dc6a2d",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-0-86-InputScriptType.SPENDTAPROOT-tr(-51c6f7dc": "5e7bf6a5ed0699cbde10d87f5fdab5bd9a7a35267d3f0ab1de72e9ecbed87e8a",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-44-InputScriptType.SPENDADDRESS-pkh-671fabde": "3b63c806eada869a7e1c589b9a6455be85a4d1b158a0bd7690a209d378563af0",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-49-InputScriptType.SPENDP2SHWITNESS-6a0c7b09": "0da02b4993f6932771014fa2a8a313267ae22295c2e87c2a934dfc79d4b8ba8f",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-84-InputScriptType.SPENDWITNESS-wpk-7c651f2d": "49884a461a4eb342bc78f7036a8d0f9c6b76376c7fbd552e0e949129eb6a212d",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-86-InputScriptType.SPENDTAPROOT-tr(-b37d77de": "b785f15b1ba04e35601f1b157748b7e1d2bfcb4ce70fbb872a182e470335a40f",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-10025-InputScriptType.SPE-6c24ae6f": "497f26b863b6e8d7d53096805d1b0b55d5e94111d27c4ddefd152df3dbfdeb9d",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors[Testnet-1-86-InputScriptType.SPENDTAPROOT-tr(-b37d77de": "4ccaf3a9fae64b4ca6fe23ccf6b5f917cb57dc6ec7f31be219a4b17abd2be8a4",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-10025-InputScriptType.SPE-6c24ae6f": "12d183cfeeffee326aff7f6246f484644ae181652f6b57d2a4daf9de05cb12ea",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-44-InputScriptType.SPENDA-fc66840d": "d0e45a99e28822ad64603f967521c871b7aea4267d7874fe2769dd79d648c1b5",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-49-InputScriptType.SPENDP-3f679311": "2e149130ed3a578708dea413f6e5c42482bf8b10f109f6b768c4b2cfff1d1687",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-84-InputScriptType.SPENDW-dedbd46d": "a569736586527f5247366c48b4062be8b89708fd38569db0bae8750d5cdcad78",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-86-InputScriptType.SPENDT-9b717395": "e75915d0839992c35c45202723ff51a6655d53418c95d887f7b2a49017623bc1",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-0-86-InputScriptType.SPENDT-9b717395": "0b8c471ef6fa3a0141745aa1d182924974b6768828742f795a93c2f198de4f21",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-44-InputScriptType.SPENDA-908dd45b": "11265547bd227aefacee2c65886da37812f7b62054429bd2117ea3a69a7118e0",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-49-InputScriptType.SPENDP-07c408b2": "965608b0364463b144c88cd6318e14b754bfd3fbd31175d2ba230e33ce9f8213",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-84-InputScriptType.SPENDW-ae5dad46": "d8bd844ae633eb997870035c8d4f0b570c3732ee883f5d991608cb490e1997db",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-86-InputScriptType.SPENDT-f5c0cb2f": "27543ffb1703fd49b7339583745482fdf131d1368d579d4eafca35ebac62b968",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-10025-InputScriptType.SPE-ad017c81": "187adb14b085fb77f212b48a4ff91b550a1ac309d26036c6449a5c79a0cbe778",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Bitcoin-1-86-InputScriptType.SPENDT-f5c0cb2f": "5b71c1f8be6113410605e8eb31b07dfed18a1622cb97c5e807f07b60d289b944",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-10025-InputScriptType.SPE-ad017c81": "83cb0752e48df205a7cc19878a52e7f087b8db6d9d497094d8ee0304c95e5352",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-44-InputScriptType.SPENDA-87568704": "e852294c064293f55ce1b383db66c78b017e56a24992ea91e4150eb41b6a7d9d",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-49-InputScriptType.SPENDP-08c818f5": "9b52b1bebfef95ea094affca22a85abc3c82781f484a3961a46cee8cc3cf29d0",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-84-InputScriptType.SPENDW-3a2da005": "82af7ca3b795a654c89d63381dcb89902b4b69aa98d5f990c13e31d6af9f107d",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-86-InputScriptType.SPENDT-0d2d3911": "43bbc78be220560acb3e194ee83ec594c8030b992b46e706ee221c0909dc6a2d",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-0-86-InputScriptType.SPENDT-0d2d3911": "5e7bf6a5ed0699cbde10d87f5fdab5bd9a7a35267d3f0ab1de72e9ecbed87e8a",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-44-InputScriptType.SPENDA-06441aab": "3b63c806eada869a7e1c589b9a6455be85a4d1b158a0bd7690a209d378563af0",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-49-InputScriptType.SPENDP-2341fa5a": "0da02b4993f6932771014fa2a8a313267ae22295c2e87c2a934dfc79d4b8ba8f",
"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-84-InputScriptType.SPENDW-59aa0a79": "49884a461a4eb342bc78f7036a8d0f9c6b76376c7fbd552e0e949129eb6a212d",
-"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-86-InputScriptType.SPENDT-af95048b": "b785f15b1ba04e35601f1b157748b7e1d2bfcb4ce70fbb872a182e470335a40f",
+"T3W1_en_bitcoin-test_descriptors.py::test_descriptors_trezorlib[Testnet-1-86-InputScriptType.SPENDT-af95048b": "4ccaf3a9fae64b4ca6fe23ccf6b5f917cb57dc6ec7f31be219a4b17abd2be8a4",
"T3W1_en_bitcoin-test_firo.py::test_spend_lelantus": "7ee537cfdd7787563d9ff885499fa020985fe59bb6c0ed7ebb0f324deb5d3a33",
"T3W1_en_bitcoin-test_fujicoin.py::test_send_p2tr": "cca4c1dec9a6ff09eaaa95b9a6fc140faf4aa7ee0b74be144a0d674224fe500c",
"T3W1_en_bitcoin-test_getaddress.py::test_address_mac": "931d9afceb0ba1e4faae891775819277242d889644d5c0c5863fc8c9fcf859b1",
@@ -32871,46 +32871,46 @@
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters7-result7]": "10e64dbaf3539837869798a5b3b341413b67b481e1a5c4ffd3e5e394e6c22d82",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters8-result8]": "3554894a0de8802f241a51199bd95b2305bc90860b25d6cb7ac804469357a045",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[False-parameters9-result9]": "8f0df0b3b285248acbaf90f82099104a6caf99bbcd4d97789daafecd87e82517",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-derivation]": "882c7fe4514743d172005e868e4907b37a86c440bcf334d1914183483e161513",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-trezor-derivation]": "1e298984761cca0a1f1d649f0b2214d84631c94497c0efaddbd5c231e895b629",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-ledger-derivation]": "7c970f6da1661c3280c46b5646781d1c0caa3d4bf118637afb36781524fcf5a8",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-derivation]": "ae36ef45c096d74096a16cf6487565088b2bb6003cd22b8d76e6be48550974c1",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-icarus-trezor-derivation]": "c01e8caa0b7a368119b4fbe06fbdc5ab8ede869f81471cc004ed29ab3e2e652a",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-ledger-derivation]": "396495bf848fbed23eddb992b2ae4defd008727798bc6957d4fc1629c0b3140b",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters0-result0]": "66fde038838af9a25c6ca8000e4d9feff726d048d461c75e562123250896a2a9",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters1-result1]": "5699aee4755a9c55a1b384aca810feea740ee38347e427ada7e737c1db09937f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters10-result10]": "83bf20dc38154cb9446ffa39a01d0a7df993cc04aec7d2ade3e3dec5352b6398",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters11-result11]": "f6d7a4340051c23360369b0c89295e829463974d227743abdf7ba6c15f3b124f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters12-result12]": "1f1e5c03768d139eac1e2b8f80a78b64f6e3298b27bbe5da1ff03d6b79eaf32f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters13-result13]": "81bb35b214181fe5ddbf57c24b9de8ba5421a352f53de9aa0ed799f5027148fd",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters14-result14]": "bee7f256793fbf466edd0eabaf54bd1bfdf28bce44e7c1e5d3043b93cbbceb2f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters15-result15]": "0d1bfdd12daff8e6f97b8f72eb77cc2ebdc36167368863490f56896ecafa7375",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters16-result16]": "c25e06a9a24b17d43f3651ea102b577ad0d6264921430812f561a4126b1d3998",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters17-result17]": "b862a96cccf269727f3f53a4e4c312da2f703f6ffe9e8bcbc71e109d737d3e0f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters18-result18]": "d6f44f95c63cc571dd072c775b6f63b2198032695c28c49cd390ea6ea6e55749",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters19-result19]": "40c7de8182e6cf835485739fbf2f6e7b4d4ae5d6480fdbff73d0822bd4ee1fea",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters10-result10]": "e8b68d3513b01d00c1719689719112f4c64e8df12827a86e721c453b40a41cef",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters11-result11]": "92ba5f09a273bcee027ac8a165bdb97a19c30e8cf8449e79d03a20671d9a9e2f",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters12-result12]": "6df4bf1be5d0da5a5adf21ad69c1146c1cc5719e1f9a247d95c85bbe1604cee8",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters13-result13]": "58c9cc7a10d05a264d12c2c979c5a82467fdb68ceedeabd520c4b1d53fe656f4",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters14-result14]": "2f1adbcd8a12b4ae39fe789bcc718f1b6cf92b7bbcaf9cbb7ce0932b32ddcf42",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters15-result15]": "b2700bf6c49c70d4a058b5bb58c2468376f0ca0ac8033a1c1554c6d2a2cf4027",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters16-result16]": "e60188d11c9a65d503dd136eafff7228f40d3619b5ce18297a1bff5f10d2b409",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters17-result17]": "3e1165ec2f3558cb2de14526893902982928411a929c06b54efb6f7863c03e05",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters18-result18]": "745dae49947bfa478ad21576d688dd3f9f9f9f9d89aefcb26d6c0669a67c6c99",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters19-result19]": "5bc9330c87c8169110132feed70b400d87dbbe356ec5b3e1f7778d0b5f933619",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters2-result2]": "d2240c15a50d8d7d675f62793967ce65adbe51cbe27574ac6534c4f09e04003f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters20-result20]": "fb45729111cff27db05afc9463ac50fb0647838c4f10723c1acd50759bbf5f84",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters21-result21]": "3ec50a19092a8b0d9b9306daa18522f9871896df9f4245e6726a74fd46665aac",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters22-result22]": "2f95bc4f4b6d526a324b48edea1fc074083bc89acc7c4bb10d4c757a1e2ce000",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters23-result23]": "1554d190511b227e0ac33a5c3cb24174ab213504f7bf31d634c402f4ed8e9e55",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters24-result24]": "2160e8f154403f4df80627e7cd739622886f7caa20dbc85f6fd20e3c5959667f",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters20-result20]": "0c215fe8d1345f2eca1a82d9ca4b13e72b5a7ef2694dab9192ff18a49e3e8f78",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters21-result21]": "6c6432ebacaf89f3200f5c51fc02c43bad35e46f5c2294775a34039e4521e60c",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters22-result22]": "0d6a1f8dd3d7b9a383cfdb377f71b4f5a702fc60301a34c8dc4712dd3b1504b8",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters23-result23]": "93ff1f3eed1d555cf66bc353e897a52e0d8aef32f7f10057c704f4fee02d7e47",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters24-result24]": "ac681bb067726a9a1bde92dbf675b0da01f21af6fee887baab376fd308eba097",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters25-result25]": "f39c0333c0a4b3dda05c711ac6c3e4827e04dbdb0546bb788bd97a734ad7f08a",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters26-result26]": "7894b062a2676fac6b01411bbeb47508d22216dbcf00094c1e662869a57610d9",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters27-result27]": "88b1e9dbc319da24c531b7c267ea805b5257ce081c91d1fb67099bb586c2fe4a",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters28-result28]": "4eb9d58710a9035f12190c828721f4dfc7a1c4fcc4d0dc393d93de01416a25fd",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters29-result29]": "3182958776010043b4b2281dfb45b022f61579396ef3b1e24a3bc21f28be6c16",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters3-result3]": "1cfde8ed983da854474e6eea1e0e0179e0bcab762dc2d487b8ce4ee14ad1bb76",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters30-result30]": "95d2ffbd2213f36bc4e76930e6053869091df66ebfe3f87a6da08b2cf54e6861",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters3-result3]": "7bdb4436bbd34e2d6d3fe675a70fb642f9353ad8876dc8bee72341bf068de86b",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters30-result30]": "690da4d576bd9b03276635c2912bb66486f670676c8283baa6313fd299a9900f",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters31-result31]": "b2eeb22fe79f6be8c1c0685c4bf8247287a1231b0946a3192f29d05464a4782f",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters32-result32]": "54d634e8f9b702698343155135c0aa5c32922a9851d64a3e2aad42f1cf549290",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters32-result32]": "f9f2be349c98e6404a2650114906629884dba73cb66ab272c8ca54c6d4708126",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters33-result33]": "9b9975c46838965dd24306f3defe5f5b871a9a7fb5e04fee1e1032f7733c6cc9",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters34-result34]": "c7d3ffc67981b43127ec36369b5f062370bda6757ca5f4c42c6aa3e189853e15",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters35-result35]": "1448a1a8c18a426e6d3fd07ee6e9255df5086fe15cd9bc41afce441e828eb98a",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters36-result36]": "ad9851f3780956d01027e16baaf798d1f6f18fdca84978f66850fe48fe69dee1",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters4-result4]": "3954a925d27fa2316d3c7a096e5239a6138ac52d14f68967459c4c73e24abc8d",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters5-result5]": "9c714158cd30cfa855e2788be9d5c5f31da84ef01138c41638c6e5477c5bc4bd",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters4-result4]": "09479b070c60f330f30feab058e671f16f099dc222168795441d2ad76d88039c",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters5-result5]": "4de110f015ef18e5c652a7b10ec068c0780e9ffd9590d7773e838a265568ac6c",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters6-result6]": "f4a5fb3290096efc44e21874cf5da183f2ce1066db22ae36d4720eb6e2758da3",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters7-result7]": "bd14577128edd56d9161465fab031540204dd0d9e6decbf32c693823dbedb770",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters8-result8]": "14dbfd0c69fc84b54cebbfaf065ea64b0d3124bf31d5188f99410470e803d8f2",
-"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters9-result9]": "d7da6a8159d9c0cdf3cbc91e0831bd9a2a725984c948f02ad1ed033f97e1609b",
+"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_address[True-parameters9-result9]": "85fcdfddb72f2e3a9811f22332b3a19a65c78c65d3acc9f5f4755de498210944",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_public_key[icarus-derivation]": "ae9171addf6a88f9f9bfdab0b2fa715f63fc3fac72632758e46b028824b85ea6",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_public_key[icarus-trezor-derivation]": "0393ce4b2b4399fa062a6d4740d515181980919860bc172ed28cffd6e32cdef2",
"T3W1_en_cardano-test_address_public_key.py::test_cardano_get_public_key[ledger-derivation]": "557b353d9ccb6129443f2c1124246665c70b045d1dc9b11426085e7d1aaba930",
@@ -32951,7 +32951,7 @@
"T3W1_en_cardano-test_get_native_script_hash.py::test_cardano_get_native_script_hash[pub_key_script]": "636d38a5ba9e003986ccd1fdeaa4d871f36d430caf439afe87b9e0ea3e786bed",
"T3W1_en_cardano-test_get_native_script_hash.py::test_cardano_get_native_script_hash[pub_key_script_-1579fe2a": "64224259fae02532111e6a0094f0350f6c50da3a09cd88b4c7721ab936386d52",
"T3W1_en_cardano-test_sign_message.py::test_cardano_sign_message[ambiguous_ascii_payload_falls_back_to_hex]": "c164fa516bd3bc4b25cb254a06029e8f1beb1efafd7398a6cb63d9323d406134",
-"T3W1_en_cardano-test_sign_message.py::test_cardano_sign_message[long_payload]": "9694e8f7fcb3dffdb4e8ff6cf72708fa24eefeb30f345dace1f39b3d62023d4d",
+"T3W1_en_cardano-test_sign_message.py::test_cardano_sign_message[long_payload]": "2b8db1f13362a7e644d8ca7c462b6e97644699f872d0fbd3da7349b6870bf6a1",
"T3W1_en_cardano-test_sign_message.py::test_cardano_sign_message[non-ascii_payload_falls_back_to_hex]": "fad79352626b8846218a584540c5acda605a6cf76cb876aa71f1e25eb31f44d5",
"T3W1_en_cardano-test_sign_message.py::test_cardano_sign_message[sign_empty_payload]": "9c5ea8d3063335a01fb48c49f00be358b9f03af74f38642ffb746ff1127f572a",
"T3W1_en_cardano-test_sign_message.py::test_cardano_sign_message[sign_short_ascii_payload]": "3384ea2a82d35c44665dbf3da6c2280f8c158ce0933101b177abb5fdc168039a",
@@ -32970,13 +32970,13 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[mary_era_transaction_with_multiasset_output]": "ba07306989218f7ce4565a857fb9a508d2e03ee77dfa47bb32d0d9d506d4e6b3",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[mary_era_transaction_with_no_ttl-validity_start]": "463aa9833eeca7f317be2f5c9c50685e533a8a0d9b07b4dd9107e464eafe654f",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_a_required_signer]": "1725341f1482bfb2c88640884b235af15bbc9e74243c5e868a81d8f411c7dc4c",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_most_elements_fille-29691455": "b232ad33c890b1e9c30834f855ee876e292b9beead6c7b2b48fd57af97186b47",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_most_elements_fille-29691455": "aa83a81dff2315c22241a40eb16eee5ba883e67d0116ebfc0a7525da8334ec73",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_output_datum_hash]": "ebac2369b574963c9eaa391098679992dcab30ef08a5aea3cbb86dc37ced7297",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_script_data_hash]": "9ebf1f39356f99d3d8e2074223d684b11f9f444dd0f75c1a90fd95a0e788ab39",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistratio-1ab28f77": "d581b319ad21f31f2e2b25581799f2db59e06bb6a2fa965910ca24a7ae32e628",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistration]": "d581b319ad21f31f2e2b25581799f2db59e06bb6a2fa965910ca24a7ae32e628",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-a144c34c": "391b01c8e7386635eb3683cf97d0fedf804409523061249e6e01fdc5fb415de4",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-bf5f9707": "b95bc03b1a54710c0a50a047552f3957c82f19cb7b2ad2538a75844c93dad401",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistratio-1ab28f77": "b48c5b0f23ed1f8e983d5d2f90991887ad16d3cc7a3242b997054c58b91bb18f",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_deregistration]": "b48c5b0f23ed1f8e983d5d2f90991887ad16d3cc7a3242b997054c58b91bb18f",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-a144c34c": "5bb33b6f5e39b09e8cad76a7c9b6b011f104a17c2dbbacd54f87ffbccb6bc90d",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_stake_registration_-bf5f9707": "cde708572b6bbcbeedd63061de1768b81f6c318d53b02ab8d140118a9a2708df",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[multisig_transaction_with_token_minting]": "684e0b125fd99f5855b46601b0602e8c49c468875ca23f4b4a6ff96144ae563d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_a_required_signer]": "d9a00256031fbea19c27e3c7034048c1149e5368ea5f71138541125e831ef6fe",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_both_output_formats]": "57e01888a151b8c14ee20bb2bc935e9c93964f51eb87a12e6027f63348f2bad5",
@@ -32985,73 +32985,73 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_multiple_correctly_-6545455a": "349e4d52313b409d01694964821b716ba46eca8579fddd1e432ecbe2aac23ac9",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_network_id_included-d9df16f9": "012ce1c25cd8b6cc252b5969b69c003f3d87c3e02b33a547dec8ade251ab2c02",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-57a740e6": "a15b28c652468b4c3d3d641dcbf696638a88165bd7701df63855f78cd19dc488",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-f709f55f": "0bc4ccbf9d1807749a485ccbda430d36f3d4e00a0cc9c6fefae630b9231a1c1d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-fab7e996": "64baf3f121de9e81ea7694d245e3d75c51af9f21216869e3f7407b816f713430",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-f709f55f": "19595f33f7edd1caeefd2184dec953ee073369dbc5216f98b00c83350e9a7469",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_non-zero_address_in-fab7e996": "d62b1e8de6d9d3381fb05da93e685f72550a916df094eda80ee689a0e78e89eb",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_output_datum_hash]": "b807ffb7a04adb1a195827eb4942cb3ab8a6bbcc41f356b8b301fd88698f4061",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_output_datum_hash_a-84ad587a": "463aa9833eeca7f317be2f5c9c50685e533a8a0d9b07b4dd9107e464eafe654f",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_script_address_but_-b0da7209": "7103dfa93700b8bb59534fe098d51bb071f011303f365dc426e2f3e59a8fb4f4",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_script_data_hash]": "fe104f884f92fa055be493a40c1d2523bb7c7314165d76a03f5dfe793614d797",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[ordinary_transaction_with_token_minting]": "9d75249d3e9f7c5cd1e7c16d0408b1378b5b74d06dfd35b6d97687ccbcb0f22e",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_an_ordinary_input]": "c2e2db816ce288c86270afb119cdbb492ab9cc18d891beda5904147d285870fa",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a33e6741": "2bf0d37766ac8e43dd60c7ac066f35bcb92d99816c186c4a59cf642e9ecfe933",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a6481374": "74b56db4850e40e51b74efcbd39e5f74d610a8a84754dfab26c26a758158fcef",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-ae657c7a": "8c9a675f6881ac14ee235fea1818276c9b0cb75d6265c7ec47f13f60c8b514a8",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_key_script_addre-d3366a63": "02ae9c84ebc4db06c143c18a0df3518863c95746af0fd2aee3326285a3fe9e6d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_device-owned_collater-8f38b4d7": "9d5166dbad5463f6d563d25fe3c2126e9856d1240b1d46e484443a3b8a7b5ff3",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_external_collateral_return]": "670c4b0715e39d1adfb06d69d8db42e85b67488cd62d58cd2b746d14bf0df6b7",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_output_datum_hash]": "e819c2e07efc871b257e0686e5e534c528421c84208db14c36a5b06330f96a69",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_reference_input]": "6f3f64eaa7fe513e84a7dd5dc703a1f43afdba5d84e3bffb56b7eb6970ef8182",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_required_signers,_ref-b419b9e1": "edf308212bb4c008ed5c81debe5c5f0beec86624864ee8dc4bff81e8a237f085",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-6a67c1eb": "ed76e4e91cffbcfbca256083c630b6c58700b502cff60b9fd56bb67ada44dc0f",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-72ef969e": "404eb9b976fa4407a5cdc5fbb9bb2c7d3864518e99a3cab5d3bf0f51ce71a7b1",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration]": "751976fb76beebecd47a3b94333cf0d2e309fbf99a68c393843049295d7841df",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration_-78f5c748": "c1198b80f36e89eaa124696bd3854063424834c7deaa1157eb18649a6553505c",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_an-4da9385a": "d33f5a6a1a250590ce7522e67e7a13c5b87627a0fa0edb0963fd5bdc4cebfa8a",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_ce-46b0a250": "37b8f81fb275db02e6a3ecd6ff03d911c0d60f4b8485d9332df4a6f371e15916",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_token_minting]": "c69149d57367c48cfda3ce9f7d1565e2c3f68c71fe69c7408f9383b09fafad79",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral]": "ae8e1f4fb2e6bba6e54354f0c1713363cdeee01604f63b92635c38e0e464e0d7",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-3f0b305a": "d7ef9a37a3fe0f9d553869b2c2ca1459f89c3feac1ca1afa35bd9f4c233c29c2",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-c92d773b": "f827a8ef6cdcbb9e29db9fac13483ebee9ee44917dac575c8c0451db6555a139",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_without_script_data_hash_a-9590827f": "08f570d1e35f77c10841af2aa1a0a68e5dd641b9fd23038c99aa1eaff22652d0",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate]": "f4116952b08065c8d7607bde8bd036659c2dbe927404c5b073a6bbd39d9a6b71",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-336f4a44": "f4116952b08065c8d7607bde8bd036659c2dbe927404c5b073a6bbd39d9a6b71",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-d3427614": "9e02d915bef1ebf30ace141506e1b9a13b49ba170be20c765d377b1782f39492",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-e1e17a76": "46534b675a84f22f4d0ff5b528bd1cb3edcd51b2a9bba9c0c672cfcfc3cdd502",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_with_zero_margin]": "2cab1f046ebee5003506d37f1c78d721ca055b92a2e5bae761e74aa74fd2debf",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "6cfbb5a873cb1ab0d8e5d69366c23d972d2f0dcab5ae44a9d5e612be20110fb5",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "32dc70fbd1b9677e3575929df2e65a2fb86e8e36f562040c61afbbabd1062c11",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "d19d1fc1b2c81d9bd67bd53f3bf4b14314471c3058bdfc6cc187b15c91743ac0",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_an_ordinary_input]": "3f8715012c911b13e1841e1b9185f1bea86accbc4fb68ff4dd10aca85af921fb",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a33e6741": "a330cd1868b4b03f51a87bc293bd0733fbfbc9f58790594ec25d0bd7c2f87600",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-a6481374": "289f755994bcb27043efa8924888e59daae2a302077e18960115eb0c3fa50079",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_address_device-o-ae657c7a": "c108ddc509606b2254c5fdeaaffa3f80e1a71fd11e48561934fe1780d5473098",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_base_key_script_addre-d3366a63": "856b6ad941e672fd2e1e488173a3c32c394015add76e935a48c5f2a2db080eea",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_device-owned_collater-8f38b4d7": "4295a1a4d47bd0de89a8667a137225f03ada17e82978df6b39852067a98ac922",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_external_collateral_return]": "442f41fefda704b9829bb58fc89b166a122dced3397d7940089762b270f7560c",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_output_datum_hash]": "9ccde071fc96042bcabdf99a3a174cb64619aca3ec1a11d59e2f932253cb6141",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_reference_input]": "4c548bc9d4a1a9116bbb01b21c8d1d36b9a34af59ba2fe5190b23c6535abe75e",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_required_signers,_ref-b419b9e1": "9e3b84a81b4ec88878c3380d70c265f5258d7a196cee0f49d31a1b16d22a95a4",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-6a67c1eb": "9347775fab9a9352180a28211f3da1e2d8939a9273389f8b1ab074162642fa6d",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_credentials_giv-72ef969e": "0529ff9392b4a0b1d078d28946f118075769efe313634ab844fdcb8955a0b97d",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration]": "c86a7366fb89def9c106981f1590c08f68c1208e182a039fbeea242147798556",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_deregistration_-78f5c748": "a696ce2e77b2e9698f7ed1ff13aac195339be6a3de64314b303301e2b3f39eac",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_an-4da9385a": "c0d086567a950ec6bd0bc5514bc4528d712014a4540d4e5e3addb70f01123e7e",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_stake_registration_ce-46b0a250": "923260ba6aeadb23c9a1f5a4d25d4c5f098d0f765647245ea65f831924a9ee3e",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_token_minting]": "6dccfe0e9fbb7cddbd76f079006765bbabb91d3784f4227730b53f72110fd2bd",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral]": "15b91981233540c2cb15889cce02006c254b1224ce580cd3c34fb2fca08d8aba",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-3f0b305a": "a8faeb49ce3e9650739a347313b0de91d3881b87ec6e0cce57f3194fea38cb94",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_with_total_collateral_and_-c92d773b": "b7fdd4ae6ce447a4f330c62ae8b1557b61a47f509ef0e88c19725df2828c115a",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[plutus_transaction_without_script_data_hash_a-9590827f": "6ef8cdf633578512eb937ff8d5b4d1f8531cf2bc11f2ea72cae5fdbd5b3c5b58",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate]": "69930cf470b2df9d5b94ae6987d00e4b574cea602580f571750ff1f6881caaa1",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-336f4a44": "69930cf470b2df9d5b94ae6987d00e4b574cea602580f571750ff1f6881caaa1",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-d3427614": "6b660af9342b4a896655757178a8620ce5c112bdd92fb782077d8c7375a87a6e",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_certificate_wi-e1e17a76": "63bd336334ebc0495b2d595b6503b3575b17078a211c5764d85f861e912d87af",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[sample_stake_pool_registration_with_zero_margin]": "d72d9610adef5c9889d8b63c263057e0cbcc88aa9eb9380d0c331779275d8614",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "9ffba39db46a423c25afa959c87bbe31f76355ec2f1a351ca3af202f904e86a9",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "76e0511d649bfb799e9d2747ad17a4a773c537d1932ea5adfecb69af46342e5c",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "e8a02a7a6b057a45e4c5cddb035c72beddfbb43d38437becbc0cdd78f2356a2d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-0c37e6dc": "e1be8fe20f2d0e55170e3bc069fb27b8cb2e75dabd575ba68d9ea1bbb7db3e54",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-7f1d12f6": "d01ac670560a4972b2a11e9d3947365387c4db258cfcf0fb37856d5c4c0e97d2",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_output]": "fe104f884f92fa055be493a40c1d2523bb7c7314165d76a03f5dfe793614d797",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_script_address_a-56fc16f7": "f1a7b55aca90133f96c59eebac6c1b6b30f3988e5bc308413c63c76be79ddafc",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_enterprise_address_ch-15518a4c": "92d1d57411f13ee83633fc99f253a611bebf62bc8d9280dfdee057e25695c324",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_pointer_address_change_output]": "1834ee105261ea935ed5d836c99120a98d4b9ba3dd356ffe13af9311209c0152",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_certificate_with_no_p-0bbad967": "858d4605e6b0ca588a9845e162274721251bedcd9b6c737c59813e51a7c7c372",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_on_testnet]": "b98404052cae67b735c0326c2e614f6e63440f9b4d26c4de0698936a09020745",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_certificate_with_no_p-0bbad967": "0388f6144982392015b75eaf919ef6ebc2694e8cf045e974e3a5dc555eac606a",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[stake_pool_registration_on_testnet]": "f30bf10fec7334b587e376bb1efd5035c3c415badec1fde628cabb244628e12b",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[testnet_transaction0]": "41e06d1c8dc421713c8eabd8226ee5dcccaeaf77c7d524320e7766104624e6eb",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[testnet_transaction1]": "7b2ce646435ebd1325102847bebe146dd32504b70f5624b12df275e2fc00bbe9",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_key_hash]": "4bf7d242a34db08d8636ac9ad701df012b9972b21379c0257c45ab2bdf1fada1",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_script_hash]": "7376a55e4ba3b812d2e6c71553418de942fef282227b957f3b0b2ad97ad22334",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_key_hash]": "397e1e65c2ce06db461364b7fca7af1bbcc94abdc49f75465c26c1a2a37464d5",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_drep_by_script_hash]": "3193e368b0cc99254d0542458b26bca00b7e7346d3fb3fd73e0e639f580ab576",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-5d8f87d7": "0360ad9c80c19dbfced6ef6177803a0a91ec7f158e7071660cf845de90b83e31",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-d7163ee4": "161fd0059e2f920169ff04345865d5d92b9be3e5cda95d9dc91b6fbe94aee644",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_delegating_vote_to_predefined_dre-d7163ee4": "fa84271480272919fa9ab7cd4c3c5e52b9b3cb96769d51d6576822b38ef9613a",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_auxiliary_data_hash]": "d9a00256031fbea19c27e3c7034048c1149e5368ea5f71138541125e831ef6fe",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_p-3c7243e1": "3930372da13fa89938d416763ab1da82e7ea2072bdd78d954c93a9aea2754b43",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_s-20438873": "d75a970de7a0f37a1604b885286eb3378b0c75a6e232b3d7c393b64f4e54574b",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip15_registration]": "beb5a9da3a1fcf7b9b1b3593780456904a76bb8a14b07cdf32c7454a18da9cf4",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-a66e1a50": "800963373d7c82847e2e73fdfc2be61b28c3c242db743fa99c25bfb2291e9529",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-b18e613a": "6ab8a8f19022cf77caea4e9815ba2dcf31469bcbe3cea55bd4f2e86e82540a8f",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "affeed867d81b58d23b34b1ec09c1e28c6b4ae516aba3927cf815028dee6aa01",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "e60bda0d747157309c35b5fcb53c426d6852dc2c1522796062409cf038394169",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "a7fc8e5a28d0c88f38db56d671df3678ad6bac783ad2f516cf8558700fff842a",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_p-3c7243e1": "811e5b909de9a129686869f572bf4be359ceceb45dd8b90638bcbc9848e48c08",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_base_address_change_output_s-20438873": "9e61a2f42503ff7fd2be455678725213655e7b372d63a79661b02238105df344",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip15_registration]": "5d760eccaa70c02b30b60f690eeb8f052c0139200a6f93f7eb898298bf6405c9",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-a66e1a50": "a1230b9c389a9ae70eb2c2f62f83061dfd7c1656b1e07d7b89b32ad12458b6af",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_exter-b18e613a": "d8c019fd4757d6f4c7c79d5c6afb16f406ecc9b1a255557a4116dbb7f42794ba",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "40525e21646032d21b4b528fdaca56db8298eec629119cd8f796387ac8c5d0b4",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "c5dd4cb31dbd08cb46499cc77acfb0069277ffb1f7c696ae5a747c8c4a81ccee",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "8dd66d427dc7db7b4646099101b91ffe577e175e221c8f22c2fc9bde737d2bf0",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_deregistration_-15956782": "d6f129c4d1ade116849e4f3d1c081d33f92a57586272d076bd1abac354bae713",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_registration_ce-19717d22": "45f12bc748e48e92efed21d07abde48acf0a6ffd8df1c1c025bd2324d6806faa",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_conway_stake_registration_ce-8a443506": "45f12bc748e48e92efed21d07abde48acf0a6ffd8df1c1c025bd2324d6806faa",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "8f7e887c78c5d81971489a8749afee65e7cecb394eb641e21acdc0b80d39648e",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "60d5264a2f1e822cae09091bb67d18c2b212e07636424692514c8dfd2d9dc7fb",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration]": "b8bfc89502b5cfe0cce204628c4d5a567d0247d8260799d07b4506dd694fd6c2",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_and_withdrawal]": "3b83c3ae944d9d330ff91b89697e90a563c5514ddd247fe1fbb0dc4855bd59eb",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_with_ac-9ca046f0": "a1a35ae300fbc68ee3ab8bb28a0aa3b966ebe1a79ed03a027f446d47d0bdec28",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_and_stake-3fdfc583": "eeeb8cfca9b435b3f1c2d55f30d429e3f81b093317739e1ee2721f22008591a0",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_and_stake-3fdfc583": "a9660130769f6fa3821fd353b1d938a6be3705088e3d6a416b6f96bcfd4aaeef",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_certifica-e7bd462a": "04315311db63416cc9e148a71e4518c74a650a52e175430fd8a9ffa4ee6f7f34",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_registration_certificate]": "0c014d4f415bd7e441d2d93c275b87f3cd2e7516012ee503b76054fc2354e5cd",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_ttl_equal_to_0]": "fe104f884f92fa055be493a40c1d2523bb7c7314165d76a03f5dfe793614d797",
@@ -33059,7 +33059,7 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[1854_change_output_path_in_ordinary_tr-805f9bd0": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[1854_input_path_in_ordinary_transaction]": "b617860cc73256adec0ff063b038d189885ef9972cf9034e403ebb6bfb21da85",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[additional_witness_requests_in_ordinar-9c4f94c0": "b617860cc73256adec0ff063b038d189885ef9972cf9034e403ebb6bfb21da85",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[all_tx_inputs_must_be_external_(without_path)]": "e293729fea31519af478b455746bc8aa9bf9efaffbe0687f24de347cf4fb23fa",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[all_tx_inputs_must_be_external_(without_path)]": "2f4480afa60d179632ffdc9d710ed52f6089699c755866762e84069b1d03e459",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[asset_names_in_mint_token_group_in_wrong_order]": "ddd37d43e99cb082a6d4376fbaef89d01defd7257dcc210be306f3df5b40249c",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[asset_names_in_multiasset_token_group_-7c1351bc": "3eebaaedf8078050f769cca1cf19bd5d9565094570f94bad226514a898aa83b3",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[auxiliary_data_hash_has_incorrect_length]": "6367a5550b18da19737b166dd2f1ece0952a0bab36e83373edae8667cbd973f2",
@@ -33088,15 +33088,15 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[contains_withdrawal]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[fee_is_too_high]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[inline_datum_present_in_output_with_le-43c025ef": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_change_output_account_mismatch]": "f31ed5d47433ecaa450e7e461797c356811cbd097ba4c647252de5dd2c8da9f6",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_change_output_account_mismatch]": "0db385887407d181c60bc5a8ac34348f461a5af2f0f16ac6d4752fce06298940",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_stake_deregistration_certifi-b3383de2": "3fd6f102d73a7f4e44755f4536f9921fd5f048aa2df788bd0e2420355fd44af5",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_withdrawal_account_mismatch]": "fd4f1f78d27836900abe45a50eb483c67f626255e8bfa34bcfc4c94e7c463e1c",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_and_withdrawal_account_mismatch]": "244ae0613ec9b8d95cda4371aea8907db5d83a05fac21e09d13b4066a7145db6",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[input_prev_hash_has_incorrect_length]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[invalid_pool_id]": "3b99798a3487229b9d30b2240ead9fa8c3fe9e952316c171206c2a7e3f8360a4",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[mainnet_protocol_magic_with_testnet_network_id]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[mainnet_transaction_with_testnet_output]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[margin_higher_than_1]": "3b99798a3487229b9d30b2240ead9fa8c3fe9e952316c171206c2a7e3f8360a4",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[missing_owner_with_path]": "8b017fedb1fed6c926b225c7bf2efccc23f6b1be878cfa806d6847b80a133585",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[missing_owner_with_path]": "7ac57153365e0b6d210810bdd1b4dd0b43b7ce83b55b197e6519a1e214a0bd92",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_1852_multisi-b7679330": "9c1d7c527122759989d98bca4ba6bdb8d3b33cc2e3e02f8f337bb4d24741dfea",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_a_collateral_input]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[multisig_transaction_with_collateral_return]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
@@ -33139,14 +33139,14 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[repeated_policyid_in_multiasset_output]": "85fb1b6478e186b2cf2769498ce6df417db2ca213f09ef4a7201cecc8993353b",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[required_signer_with_both_key_path_and-7d9a3c59": "5e4da7ea7d89d084d16b3eb5bb504fe0ccf5676c25924e2266d31afa89fe8450",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-02b129f8": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-11c8b442": "647e5f6769cedd7d5638fc930d97388cd45d8d418ad9f4711ca816370eeb43c5",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-11c8b442": "b70f6c61369a3f17465651fe2149d23eb9131c266f854763cd654d5068b6f208",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-2d1899d5": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-3f8170f6": "647e5f6769cedd7d5638fc930d97388cd45d8d418ad9f4711ca816370eeb43c5",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-3f8170f6": "b70f6c61369a3f17465651fe2149d23eb9131c266f854763cd654d5068b6f208",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-60961d51": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-790fc948": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-883e81d5": "b4f48fe352ea4423905eef6a0cda95b24796f6b1ee08ba659c7b6202e826cf5e",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-883e81d5": "9e3945474b7a64764e14b0c252677a69516d631c0f7bc818f2feccb107069a55",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-9ae6620c": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-c3588066": "647e5f6769cedd7d5638fc930d97388cd45d8d418ad9f4711ca816370eeb43c5",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-c3588066": "b70f6c61369a3f17465651fe2149d23eb9131c266f854763cd654d5068b6f208",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-d0eba163": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-e7a533e7": "3b99798a3487229b9d30b2240ead9fa8c3fe9e952316c171206c2a7e3f8360a4",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[sample_stake_pool_registration_certifi-e908b1a8": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
@@ -33163,7 +33163,7 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_both_auxiliary_data_b-6f1ead27": "2ded3263c017ce06461f70eb6b4d353b709bc4ad520511270e65474e4a6632a6",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_both_vote_public_key_-3e8cccb4": "2ded3263c017ce06461f70eb6b4d353b709bc4ad520511270e65474e4a6632a6",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[transaction_with_cvote_registration_co-2dcb1cea": "2ded3263c017ce06461f70eb6b4d353b709bc4ad520511270e65474e4a6632a6",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[two_owners_with_path]": "5adb98d03a2893520faa3e04aa5ed44b33b745a848f6d8a16570af336510f2ba",
+"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[two_owners_with_path]": "77563a0940d3d2bb0b959afa0dd36a5851c048591dd1d25e18e06ff9effcfb34",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[unsupported_address_type]": "d1fb9582f19779de622a052bed6ddeb5481cdd1cc5aae1ac9c2259389174498d",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[with_multisig_transaction_signing_mode]": "f3984124eafffb60fe4dc2a1c3766b42c1ccd1035864bbc02198ea75d434dfb3",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[with_ordinary_transaction_signing_mode]": "3a6df589d409b3e8e456fa037623a46b534d72464c28b0e3e912e30cf03a802b",
@@ -33176,11 +33176,11 @@
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[withdrawal_has_non_staking_path]": "35b4a312f0feb70aa99d1293d9df40be96d39efd4ef8b95bf0b015edc2383701",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_failed[withdrawal_has_script_hash]": "35b4a312f0feb70aa99d1293d9df40be96d39efd4ef8b95bf0b015edc2383701",
"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[multisig_transaction_with_a_requ-c2fba589": "557ad51c8fe0986a0e965d06051b269e88c4b098b24e485bc1eff3ba4da00f83",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[ordinary_transaction_with_a_requ-9728607e": "caa60eed3ead3385c55958cc8a751fcb6a0b481faf2805011ef12e0c7ec8f8d6",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_reference_input]": "36a75568f7eea63ff0bae919c2296f883a7ad48cfd39894b3cc77f02db318105",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[plutus_transaction_with_total_co-e846c221": "806db31f53bb77750e01f9b433de875ee865fb48d8994bcc5f7ce33795bdc48e",
-"T3W1_en_cardano-test_sign_tx.py::test_cardano_sign_tx_show_details[transaction_with_cip36_registrat-b9111c27": "fa0b4036cdddf178972fbfad5d53Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.