diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..f2fb620f --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +# Checklist + +- [ ] App update process has been followed +- [ ] Target branch is `develop` +- [ ] Application version has been bumped + + diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index db8203bb..d2204287 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -4,60 +4,17 @@ on: workflow_dispatch: push: branches: + - master - develop pull_request: - branches: - - develop jobs: - build_debug_app: - name: Build debug app - runs-on: ubuntu-latest - strategy: - matrix: - device: - - path: $NANOS_SDK - name: nanos - - path: $NANOX_SDK - name: nanox - - path: $NANOSP_SDK - name: nanosp - container: - image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder - steps: - - name: Clone - uses: actions/checkout@v3 - - name: Build for ${{ matrix.device.name }} - run: | - make BOLOS_SDK=${{ matrix.device.path }} DEBUG=1 - - - name: Upload app binary - uses: actions/upload-artifact@v2 - with: - name: stellar-app-${{ matrix.device.name }}-debug - path: bin - - scan_build: - name: Clang Static Analyzer - runs-on: ubuntu-latest - needs: build_debug_app - - container: - image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder - - steps: - - uses: actions/checkout@v3 - - - name: Build with Clang Static Analyzer - run: | - make clean - scan-build --use-cc=clang -analyze-headers -enable-checker security -enable-checker unix -enable-checker valist -o scan-build --status-bugs make default - - uses: actions/upload-artifact@v2 - if: failure() - with: - name: scan-build - path: scan-build + build_application: + name: Build application + uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1 + with: + upload_app_binaries_artifact: compiled_app_binaries unit_tests: name: Unit test @@ -87,7 +44,7 @@ jobs: lcov --directory . -b "$(realpath build/)" --remove coverage.info '*/tests_unit/*' -o coverage.info && \ genhtml coverage.info -o coverage - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: code-coverage path: tests_unit/coverage @@ -105,11 +62,10 @@ jobs: name: Stellar e2e tests strategy: matrix: - device: ["nanos", "nanox", "nanosp"] + device: ["nanos", "nanox", "nanosp", "stax"] fail-fast: false needs: - - build_debug_app - - unit_tests + - build_application runs-on: ubuntu-latest steps: - name: Checkout @@ -127,21 +83,17 @@ jobs: run: cd tests_zemu && npm install - name: Download app binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: - name: stellar-app-${{ matrix.device }}-debug - path: stellar-app-${{ matrix.device }}-debug - - - name: Gather elf - run: | - cp ./stellar-app-${{ matrix.device }}-debug/app.elf ./tests_zemu/elfs/stellar_${{ matrix.device }}.elf + name: compiled_app_binaries + path: build - name: Run zemu tests run: cd tests_zemu && npm run test -- -t "\(${{ matrix.device }}\)" - name: Upload snapshots - if: always() - uses: actions/upload-artifact@v2 + if: failure() + uses: actions/upload-artifact@v3 with: - name: zemu-snapshots + name: ${{ matrix.device }}-zemu-snapshots path: tests_zemu/snapshots-tmp/ diff --git a/.github/workflows/guidelines_enforcer.yml b/.github/workflows/guidelines_enforcer.yml new file mode 100644 index 00000000..fdaf9f27 --- /dev/null +++ b/.github/workflows/guidelines_enforcer.yml @@ -0,0 +1,23 @@ +name: Ensure compliance with Ledger guidelines + +# This workflow is mandatory in all applications +# It calls a reusable workflow guidelines_enforcer developed by Ledger's internal developer team. +# The successful completion of the reusable workflow is a mandatory step for an app to be available on the Ledger +# application store. +# +# More information on the guidelines can be found in the repository: +# LedgerHQ/ledger-app-workflows/ + +on: + workflow_dispatch: + push: + branches: + - master + - main + - develop + pull_request: + +jobs: + guidelines_enforcer: + name: Call Ledger guidelines_enforcer + uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_guidelines_enforcer.yml@v1 diff --git a/.github/workflows/lint-workflow.yml b/.github/workflows/lint-workflow.yml index 0c80e047..ce4e794c 100644 --- a/.github/workflows/lint-workflow.yml +++ b/.github/workflows/lint-workflow.yml @@ -4,10 +4,9 @@ on: workflow_dispatch: push: branches: + - master - develop pull_request: - branches: - - develop jobs: lint: @@ -16,7 +15,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Lint uses: DoozyX/clang-format-lint-action@v0.13 diff --git a/.github/workflows/swap-ci-workflow.yml b/.github/workflows/swap-ci-workflow.yml index 648b94d3..2b2e95bc 100644 --- a/.github/workflows/swap-ci-workflow.yml +++ b/.github/workflows/swap-ci-workflow.yml @@ -1,171 +1,16 @@ -# https://github.com/LedgerHQ/app-exchange/blob/develop/.github/workflows/ci-workflow.yml -name: Swap function tests +name: Swap functional tests on: workflow_dispatch: push: branches: + - master - develop pull_request: - branches: - - develop - jobs: - build_sideloaded_apps: - strategy: - matrix: - sdk: - - path: $NANOS_SDK - name: nanos - - path: $NANOX_SDK - name: nanox - - path: $NANOSP_SDK - name: nanosp - coin: - - name: tezos - repo: LedgerHQ/app-tezos - branch: develop - - name: xrp - repo: LedgerHQ/app-xrp - branch: develop - - name: ethereum - repo: LedgerHQ/app-ethereum - branch: develop - - name: litecoin - repo: LedgerHQ/app-bitcoin - branch: master - - name: bitcoin_legacy - repo: LedgerHQ/app-bitcoin - branch: master - - name: bitcoin - repo: LedgerHQ/app-bitcoin-new - branch: develop - - name: Build App - runs-on: ubuntu-latest - container: - image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder - - steps: - - name: Clone ${{ matrix.coin.repo }} for coin ${{ matrix.coin.name }} - uses: actions/checkout@v3 - with: - repository: ${{ matrix.coin.repo }} - ref: ${{ matrix.coin.branch }} - - - name: Build in ${{ matrix.coin.repo }} coin ${{ matrix.coin.name }} for SDK ${{ matrix.sdk.name }} - run: | - make clean ; make COIN=${{ matrix.coin.name }} BOLOS_SDK=${{ matrix.sdk.path }} - cp bin/app.elf ${{ matrix.coin.name }}_${{ matrix.sdk.name }}.elf - - name: Upload ${{ matrix.coin.name }} binaries - uses: actions/upload-artifact@v2 - with: - name: ${{ matrix.coin.name }}_binaries - path: ./*.elf - if-no-files-found: error - - build_stellar_app: - strategy: - matrix: - sdk: - - path: $NANOS_SDK - name: nanos - - path: $NANOX_SDK - name: nanox - - path: $NANOSP_SDK - name: nanosp - - name: Build Stellar App - runs-on: ubuntu-latest - container: - image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder - - steps: - - name: Clone - uses: actions/checkout@v3 - - - name: Build for SDK ${{ matrix.sdk.name }} - run: | - make clean ; make BOLOS_SDK=${{ matrix.sdk.path }} - cp bin/app.elf stellar_${{ matrix.sdk.name }}.elf - - name: Upload stellar binaries - uses: actions/upload-artifact@v2 - with: - name: stellar_binaries - path: ./*.elf - if-no-files-found: error - - build_exchange: - name: Build Exchange - runs-on: ubuntu-latest - strategy: - matrix: - sdk: [{path: $NANOS_SDK, name: nanos}, {path: $NANOX_SDK, name: nanox}, {path: $NANOSP_SDK, name: nanosp}] - - container: - image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder - - steps: - - name: Clone - uses: actions/checkout@v3 - with: - repository: "LedgerHQ/app-exchange" - ref: "develop" - submodules: true - - - name: Build Exchange - run: | - make clean ; make BOLOS_SDK=${{ matrix.sdk.path }} TESTING=1 TEST_PUBLIC_KEY=1 - cp bin/app.elf exchange_${{ matrix.sdk.name }}.elf - - name: Upload Exchange binaries - uses: actions/upload-artifact@v2 - with: - name: exchange_binaries - path: ./*.elf - if-no-files-found: error - - e2e_tests: - name: Swap e2e tests - strategy: - matrix: - device: ["Nano S", "Nano X", "Nano SP"] - needs: - - build_exchange - - build_sideloaded_apps - - build_stellar_app - runs-on: ubuntu-latest - - steps: - - name: Clone - uses: actions/checkout@v3 - with: - repository: "LedgerHQ/app-exchange" - ref: "develop" - - - name: Install APT dependencies - run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev - - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Install Yarn - run: npm install -g yarn - - - name: Install JS dependencies - run: cd test && yarn install - - - name: Upgrade @zondax/zemu - run: cd test && yarn upgrade @zondax/zemu@0.32.0 - - - name: Download all binaries - uses: actions/download-artifact@v2 - - - name: Gather artifacts - run: | - mkdir test/elfs - mv *_binaries/*.elf test/elfs - - name: Run zemu tests for device ${{ matrix.device }} - run: cd test && yarn test -t "\[${{ matrix.device }}\]" + job_functional_tests: + uses: LedgerHQ/app-exchange/.github/workflows/reusable_swap_functional_tests.yml@develop + with: + branch_for_stellar: ${{ github.ref }} + test_filter: '"XLM or xlm or Stellar or stellar"' diff --git a/.gitignore b/.gitignore index 01969a04..accf6921 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,8 @@ # Compilation of Ledger's app -src/glyphs.c -src/glyphs.h bin/ elfs/ debug/ -dep/ -obj/ +build/ tests_unit/build/ tests_unit/testcases/*.raw tests_zemu/node_modules/ diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d9234efe..f958fed6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ { "label": "make", "type": "shell", - "command": "make clean && make", + "command": "BOLOS_SDK=${input:sdk} make", "group": { "kind": "build", "isDefault": true @@ -14,9 +14,9 @@ ] }, { - "label": "[debug] make", + "label": "make debug", "type": "shell", - "command": "make clean && make DEBUG=1", + "command": "BOLOS_SDK=${input:sdk} make DEBUG=1", "group": { "kind": "build", "isDefault": true @@ -37,65 +37,49 @@ "$gcc" ] }, - { - "label": "make load", - "type": "shell", - "command": "make load", - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": [ - "$gcc" - ] - }, { "label": "run Speculos", "type": "shell", - "command": "speculos -m nanos -s $MNEMONIC --apdu-port 9999 --display headless ${workspaceFolder}/bin/app.elf", + "command": "python3 /speculos/speculos.py --model ${input:model} ${workspaceFolder}/bin/app.elf --display headless", "group": { "kind": "build", "isDefault": true }, - "dependsOn": [ - "make debug" - ], "problemMatcher": [] }, { - "label": "[debug] run Speculos", + "label": "kill Speculos", "type": "shell", - "command": "speculos -m nanos -s $MNEMONIC --apdu-port 9999 --display headless -d ${workspaceFolder}/bin/app.elf", + "command": "pkill -f speculos.py", "group": { "kind": "build", "isDefault": true }, - "dependsOn": [ - "make debug" - ], "problemMatcher": [] - }, + } + ], + "inputs": [ { - "label": "run unit tests", - "type": "shell", - "command": "make tests-unit", - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": [ - "$gcc" + "id" : "sdk", + "type": "pickString", + "description": "Which SDK to you want to use ?", + "options": [ + "$NANOS_SDK TARGET=nanos", + "$NANOX_SDK TARGET=nanox", + "$NANOSP_SDK TARGET=nanos2", + "$STAX_SDK TARGET=stax", ] }, { - "label": "kill Speculos", - "type": "shell", - "command": "pkill -f speculos", - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": [] + "id" : "model", + "type": "pickString", + "description": "Which model to run speculos for ?", + "options": [ + "nanos", + "nanox", + "nanosp", + "stax", + ] } ] } \ No newline at end of file diff --git a/Makefile b/Makefile index 0769a4ec..cb0e71aa 100755 --- a/Makefile +++ b/Makefile @@ -21,21 +21,25 @@ endif include $(BOLOS_SDK)/Makefile.defines APPNAME = Stellar -APPVERSION_M=4 +APPVERSION_M=5 APPVERSION_N=0 APPVERSION_P=3 APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) ifeq ($(TARGET_NAME), TARGET_NANOS) -APP_LOAD_FLAGS=--appFlags 0x800 # APPLICATION_FLAG_LIBRARY +APP_LOAD_PARAMS = --appFlags 0x800 # APPLICATION_FLAG_LIBRARY else -APP_LOAD_FLAGS=--appFlags 0xa00 # APPLICATION_FLAG_LIBRARY + APPLICATION_FLAG_BOLOS_SETTINGS +APP_LOAD_PARAMS = --appFlags 0xa00 # APPLICATION_FLAG_LIBRARY + APPLICATION_FLAG_BOLOS_SETTINGS endif -APP_LOAD_PARAMS=$(APP_LOAD_FLAGS) --path "44'/148'" --curve ed25519 $(COMMON_LOAD_PARAMS) +APP_LOAD_PARAMS += --curve ed25519 +APP_LOAD_PARAMS += --path "44'/148'" +APP_LOAD_PARAMS += $(COMMON_LOAD_PARAMS) #prepare hsm generation ifeq ($(TARGET_NAME),TARGET_NANOS) ICONNAME=icons/nanos_app_stellar.gif +else ifeq ($(TARGET_NAME),TARGET_STAX) + ICONNAME=icons/stax_app_stellar.gif else ICONNAME=icons/nanox_app_stellar.gif endif @@ -48,28 +52,35 @@ all: default ############ # Platform # ############ +ifneq ($(TARGET_NAME),TARGET_STAX) + DEFINES += HAVE_BAGL HAVE_UX_FLOW +endif DEFINES += OS_IO_SEPROXYHAL -DEFINES += HAVE_BAGL HAVE_SPRINTF +DEFINES += HAVE_SPRINTF DEFINES += HAVE_IO_USB HAVE_L4_USBLIB IO_USB_MAX_ENDPOINTS=4 IO_HID_EP_LENGTH=64 HAVE_USB_APDU DEFINES += MAJOR_VERSION=$(APPVERSION_M) MINOR_VERSION=$(APPVERSION_N) PATCH_VERSION=$(APPVERSION_P) DEFINES += USB_SEGMENT_SIZE=64 DEFINES += BLE_SEGMENT_SIZE=32 #max MTU, min 20 -DEFINES += UNUSED\(x\)=\(void\)x DEFINES += APPVERSION=\"$(APPVERSION)\" -DEFINES += HAVE_UX_FLOW - DEFINES += HAVE_WEBUSB WEBUSB_URL_SIZE_B=0 WEBUSB_URL="" +# BLE ifeq ($(TARGET_NAME),TARGET_NANOX) - DEFINES += HAVE_BLE BLE_COMMAND_TIMEOUT_MS=2000 - DEFINES += HAVE_BLE_APDU # basic ledger apdu transport over BLE +DEFINES += HAVE_BLE BLE_COMMAND_TIMEOUT_MS=2000 HAVE_BLE_APDU +else ifeq ($(TARGET_NAME),TARGET_STAX) +DEFINES += HAVE_BLE BLE_COMMAND_TIMEOUT_MS=2000 HAVE_BLE_APDU endif + ifeq ($(TARGET_NAME),TARGET_NANOS) DEFINES += IO_SEPROXYHAL_BUFFER_SIZE_B=128 +else ifeq ($(TARGET_NAME),TARGET_STAX) + DEFINES += IO_SEPROXYHAL_BUFFER_SIZE_B=300 + DEFINES += NBGL_QRCODE + SDK_SOURCE_PATH += qrcode else DEFINES += IO_SEPROXYHAL_BUFFER_SIZE_B=300 DEFINES += HAVE_GLO096 @@ -114,12 +125,8 @@ $(info GCCPATH is not set: arm-none-eabi-* will be used from PATH) endif CC := $(CLANGPATH)clang - -#CFLAGS += -O0 -CFLAGS += -O3 -Os AS := $(GCCPATH)arm-none-eabi-gcc LD := $(GCCPATH)arm-none-eabi-gcc -LDFLAGS += -O3 -Os LDLIBS += -lm -lgcc -lc # import rules to compile glyphs(/pone) @@ -129,10 +136,15 @@ include $(BOLOS_SDK)/Makefile.glyphs APP_SOURCE_PATH += src SDK_SOURCE_PATH += lib_stusb SDK_SOURCE_PATH += lib_stusb_impl -SDK_SOURCE_PATH += lib_ux + +ifneq ($(TARGET_NAME),TARGET_STAX) +SDK_SOURCE_PATH += lib_ux +endif ifeq ($(TARGET_NAME),TARGET_NANOX) - SDK_SOURCE_PATH += lib_blewbxx lib_blewbxx_impl +SDK_SOURCE_PATH += lib_blewbxx lib_blewbxx_impl +else ifeq ($(TARGET_NAME),TARGET_STAX) +SDK_SOURCE_PATH += lib_blewbxx lib_blewbxx_impl endif @@ -158,7 +170,7 @@ tests-unit: rm -rf tests_unit/build && cmake -Btests_unit/build -Htests_unit/ && make -C tests_unit/build/ && make -C tests_unit/build test tests-zemu: - ./build_elfs.sh && rm -rf ./tests_zemu/elfs/stellar_nano*.elf && cp ./elfs/stellar_nano*.elf ./tests_zemu/elfs + ./build_elfs.sh cd tests_common_js && npm install && npm run build cd tests_zemu && npm install && rm -rf snapshots-tmp && npm run test diff --git a/build_elfs.sh b/build_elfs.sh index 9e5f69dd..5a2f7910 100755 --- a/build_elfs.sh +++ b/build_elfs.sh @@ -2,43 +2,26 @@ set -e -BUILD_FULL_PATH=$(dirname "$(realpath "$0")") - # FILL THESE WITH YOUR OWN SDKs PATHS # NANOS_SDK= # NANOSP_SDK= # NANOX_SDK= - -APPNAME="stellar" +# STAX_SDK= # list of SDKS -NANO_SDKS=("$NANOS_SDK" "$NANOSP_SDK" "$NANOX_SDK") -# list of target elf file name suffix -FILE_SUFFIXES=("nanos" "nanosp" "nanox") - -# move to the build directory -cd "$BUILD_FULL_PATH" || exit 1 +DEVICE_SDKS=("$NANOS_SDK" "$NANOSP_SDK" "$NANOX_SDK" "$STAX_SDK") # Do it only now since before the cd command, we might not have been inside the repository GIT_REPO_ROOT=$(git rev-parse --show-toplevel) -BUILD_REL_PATH=$(realpath --relative-to="$GIT_REPO_ROOT" "$BUILD_FULL_PATH") - -# create elfs directory if it doesn't exist -mkdir -p elfs # move to repo's root to build apps cd "$GIT_REPO_ROOT" || exit 1 -for ((sdk_idx=0; sdk_idx < "${#NANO_SDKS[@]}"; sdk_idx++)) -do - nano_sdk="${NANO_SDKS[$sdk_idx]}" - elf_suffix="${FILE_SUFFIXES[$sdk_idx]}" - echo "* Building elfs for $(basename "$nano_sdk")..." +make clean - echo "** Building app $appname..." - make clean BOLOS_SDK="$nano_sdk" - make -j DEBUG=1 BOLOS_SDK="$nano_sdk" - cp bin/app.elf "$BUILD_REL_PATH/elfs/${APPNAME}_${elf_suffix}.elf" +for sdk in "${DEVICE_SDKS[@]}"; do + echo "* Building elfs for $(basename "$sdk")..." + make -j DEBUG=1 BOLOS_SDK="$sdk" done echo "done" diff --git a/glyphs/badge_stellar.gif b/glyphs/badge_stellar.gif deleted file mode 100755 index 15b3623a..00000000 Binary files a/glyphs/badge_stellar.gif and /dev/null differ diff --git a/glyphs/badge_transaction.gif b/glyphs/badge_transaction.gif deleted file mode 100644 index 131325d4..00000000 Binary files a/glyphs/badge_transaction.gif and /dev/null differ diff --git a/glyphs/icon_stellar_64px.gif b/glyphs/icon_stellar_64px.gif new file mode 100644 index 00000000..50739d36 Binary files /dev/null and b/glyphs/icon_stellar_64px.gif differ diff --git a/glyphs/icon_toggle_reset.gif b/glyphs/icon_toggle_reset.gif deleted file mode 100644 index 450bc869..00000000 Binary files a/glyphs/icon_toggle_reset.gif and /dev/null differ diff --git a/glyphs/icon_toggle_set.gif b/glyphs/icon_toggle_set.gif deleted file mode 100644 index 571264c7..00000000 Binary files a/glyphs/icon_toggle_set.gif and /dev/null differ diff --git a/icons/stax_app_stellar.gif b/icons/stax_app_stellar.gif new file mode 100644 index 00000000..60e1d6b4 Binary files /dev/null and b/icons/stax_app_stellar.gif differ diff --git a/ledger_app.toml b/ledger_app.toml new file mode 100644 index 00000000..46d9b9cb --- /dev/null +++ b/ledger_app.toml @@ -0,0 +1,7 @@ +[app] +build_directory = "./" +sdk = "C" +devices = ["nanos", "nanox", "nanos+", "stax"] + +[tests] +unit_directory = "./tests_unit/" diff --git a/src/crypto.c b/src/crypto.c index 6af02bb0..47e94d71 100644 --- a/src/crypto.c +++ b/src/crypto.c @@ -84,7 +84,6 @@ int crypto_sign_message(const uint8_t *message, const uint8_t *signature, uint8_t signature_len) { cx_ecfp_private_key_t private_key = {0}; - int sig_len = 0; // derive private key according to BIP32 path int error = @@ -105,7 +104,7 @@ int crypto_sign_message(const uint8_t *message, (unsigned char *) signature, signature_len, NULL); - PRINTF("Signature: %.*H\n", sig_len, signature); + PRINTF("Signature: %.*H\n", signature_len, signature); } CATCH_OTHER(e) { error = e; diff --git a/src/handler/sign_transaction.c b/src/handler/sign_transaction.c index 0d671599..81f03804 100644 --- a/src/handler/sign_transaction.c +++ b/src/handler/sign_transaction.c @@ -23,6 +23,7 @@ #include "../crypto.h" #include "../ui/ui.h" #include "../swap/swap_lib_calls.h" +#include "../swap/handle_swap_commands.h" #include "../transaction/transaction_parser.h" int handler_sign_tx(buffer_t *cdata, bool is_first_chunk, bool more) { diff --git a/src/io.c b/src/io.c index 79aadd81..8926e5bd 100644 --- a/src/io.c +++ b/src/io.c @@ -23,25 +23,45 @@ #include "./globals.h" #include "./common/buffer.h" #include "./common/write.h" +#include "handle_swap_commands.h" +#ifdef HAVE_BAGL void io_seproxyhal_display(const bagl_element_t *element) { io_seproxyhal_display_default((bagl_element_t *) element); } +#endif // HAVE_BAGL uint8_t io_event(uint8_t channel __attribute__((unused))) { switch (G_io_seproxyhal_spi_buffer[0]) { +#ifdef HAVE_NBGL + case SEPROXYHAL_TAG_FINGER_EVENT: + UX_FINGER_EVENT(G_io_seproxyhal_spi_buffer); + break; +#endif // HAVE_NBGL + +#ifdef HAVE_BAGL case SEPROXYHAL_TAG_BUTTON_PUSH_EVENT: UX_BUTTON_PUSH_EVENT(G_io_seproxyhal_spi_buffer); break; +#endif // HAVE_BAGL + case SEPROXYHAL_TAG_STATUS_EVENT: if (G_io_apdu_media == IO_APDU_MEDIA_USB_HID && // !(U4BE(G_io_seproxyhal_spi_buffer, 3) & // SEPROXYHAL_TAG_STATUS_EVENT_FLAG_USB_POWERED)) { THROW(EXCEPTION_IO_RESET); } + /* fallthrough */ + __attribute__((fallthrough)); + case SEPROXYHAL_TAG_DISPLAY_PROCESSED_EVENT: +#ifdef HAVE_BAGL UX_DISPLAYED_EVENT({}); +#endif // HAVE_BAGL +#ifdef HAVE_NBGL + UX_DEFAULT_EVENT(); +#endif // HAVE_NBGL break; case SEPROXYHAL_TAG_TICKER_EVENT: UX_TICKER_EVENT(G_io_seproxyhal_spi_buffer, {}); @@ -82,19 +102,12 @@ uint16_t io_exchange_al(uint8_t channel, uint16_t tx_len) { } int io_recv_command() { - int ret; + int ret = -1; switch (G_io_state) { case READY: G_io_state = RECEIVED; - // If we are in swap mode and have validated a TX, we send it and immediatly quit - if (G_called_from_swap && G.swap.response_ready) { - ret = io_exchange(CHANNEL_APDU | IO_RETURN_AFTER_TX, G_output_len); - PRINTF("Swap answer is processed and sent. The app will quit\n"); - os_sched_exit(0); - } else { - ret = io_exchange(CHANNEL_APDU, G_output_len); - } + ret = io_exchange(CHANNEL_APDU, G_output_len); break; case RECEIVED: G_io_state = WAITING; @@ -128,8 +141,19 @@ int io_send_response(const buffer_t *rdata, uint16_t sw) { write_u16_be(G_io_apdu_buffer, G_output_len, sw); G_output_len += 2; + // If we are in swap mode and have validated a TX, we send it and immediately quit + if (G_called_from_swap && G.swap.response_ready) { + if (io_exchange(CHANNEL_APDU | IO_RETURN_AFTER_TX, G_output_len) == 0) { + finalize_exchange_sign_transaction(sw == SW_OK); + } else { + PRINTF("Unrecoverable\n"); + os_sched_exit(-1); + } + } + switch (G_io_state) { case READY: + PRINTF("G_io_state error\n"); ret = -1; break; case RECEIVED: diff --git a/src/io.h b/src/io.h index 8119e5d6..ab5f4c5e 100644 --- a/src/io.h +++ b/src/io.h @@ -9,7 +9,9 @@ #include "./types.h" #include "./common/buffer.h" +#ifdef HAVE_BAGL void io_seproxyhal_display(const bagl_element_t *element); +#endif // HAVE_BAGL /** * IO callback called when an interrupt based channel has received diff --git a/src/main.c b/src/main.c index b4786867..b2a8e3cb 100644 --- a/src/main.c +++ b/src/main.c @@ -25,6 +25,7 @@ #include "./settings.h" #include "./apdu/apdu_parser.h" #include "./apdu/dispatcher.h" +#include "./swap/handle_swap_commands.h" #include "./swap/swap_lib_calls.h" #include "./ui/ui.h" @@ -121,7 +122,7 @@ void standalone_app_main() { nvm_write((void *) &N_settings, (void *) &storage, sizeof(internal_storage_t)); } -#ifdef TARGET_NANOX +#ifdef HAVE_BLE // grab the current plane mode setting G_io_app.plane_mode = os_setting_get(OS_SETTING_PLANEMODE, NULL, 0); #endif // TARGET_NANOX @@ -132,7 +133,7 @@ void standalone_app_main() { #ifdef HAVE_BLE BLE_power(0, NULL); - BLE_power(1, "Nano X"); + BLE_power(1, NULL); #endif // HAVE_BLE app_main(); } diff --git a/src/swap/handle_get_printable_amount.c b/src/swap/handle_get_printable_amount.c index 29648cb6..9791e21c 100644 --- a/src/swap/handle_get_printable_amount.c +++ b/src/swap/handle_get_printable_amount.c @@ -4,6 +4,7 @@ #include "os.h" #include "./swap_lib_calls.h" +#include "./handle_swap_commands.h" #include "../utils.h" /* return 0 on error, 1 otherwise */ diff --git a/src/swap/handle_swap_commands.h b/src/swap/handle_swap_commands.h new file mode 100644 index 00000000..bd331863 --- /dev/null +++ b/src/swap/handle_swap_commands.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include +#include + +#include "swap_lib_calls.h" + +int handle_check_address(const check_address_parameters_t* params); +int handle_get_printable_amount(get_printable_amount_parameters_t* params); +bool copy_transaction_parameters(create_transaction_parameters_t* params); +void handle_swap_sign_transaction(void); +bool swap_check(); +bool swap_str_to_u64(const uint8_t* src, size_t length, uint64_t* result); + +void __attribute__((noreturn)) finalize_exchange_sign_transaction(bool is_success); diff --git a/src/swap/handle_swap_sign_transaction.c b/src/swap/handle_swap_sign_transaction.c index c5366b5f..e3646599 100644 --- a/src/swap/handle_swap_sign_transaction.c +++ b/src/swap/handle_swap_sign_transaction.c @@ -3,11 +3,19 @@ #include "os_io_seproxyhal.h" #include "./swap_lib_calls.h" +#include "handle_swap_commands.h" #include "../globals.h" #include "os.h" #include "../types.h" -bool copy_transaction_parameters(const create_transaction_parameters_t* params) { +#ifdef HAVE_NBGL +#include "nbgl_use_case.h" +#endif + +// Save the BSS address where we will write the return value when finished +static uint8_t* G_swap_sign_return_value_address; + +bool copy_transaction_parameters(create_transaction_parameters_t* params) { // first copy parameters to stack, and then to global data. // We need this "trick" as the input data position can overlap with btc-app globals swap_values_t stack_data; @@ -34,22 +42,32 @@ bool copy_transaction_parameters(const create_transaction_parameters_t* params) return false; } + // Full reset the global variables os_explicit_zero_BSS_segment(); + // Keep the address at which we'll reply the signing status + G_swap_sign_return_value_address = ¶ms->result; + // Commit the values read from exchange to the clean global space memcpy(&G.swap.values, &stack_data, sizeof(stack_data)); return true; } +void __attribute__((noreturn)) finalize_exchange_sign_transaction(bool is_success) { + *G_swap_sign_return_value_address = is_success; + os_lib_end(); +} + void handle_swap_sign_transaction(void) { io_seproxyhal_init(); UX_INIT(); +#ifdef HAVE_NBGL + nbgl_useCaseSpinner("Signing"); +#endif // HAVE_BAGL USB_power(0); USB_power(1); PRINTF("USB power ON/OFF\n"); #ifdef HAVE_BLE // grab the current plane mode setting G_io_app.plane_mode = os_setting_get(OS_SETTING_PLANEMODE, NULL, 0); -#endif // HAVE_BLE -#ifdef HAVE_BLE BLE_power(0, NULL); BLE_power(1, NULL); #endif // HAVE_BLE diff --git a/src/swap/swap_lib_calls.h b/src/swap/swap_lib_calls.h index 58464807..dc88417a 100644 --- a/src/swap/swap_lib_calls.h +++ b/src/swap/swap_lib_calls.h @@ -1,24 +1,43 @@ #pragma once -#include -#include -#include +/* This file is the shared API between Exchange and the apps started in Library mode for Exchange + * + * DO NOT MODIFY THIS FILE IN APPLICATIONS OTHER THAN EXCHANGE + * On modification in Exchange, forward the changes to all applications supporting Exchange + */ + +#include "stdbool.h" +#include "stdint.h" + +#define RUN_APPLICATION 1 + +#define SIGN_TRANSACTION 2 + +#define CHECK_ADDRESS 3 -#define SIGN_TRANSACTION 2 -#define CHECK_ADDRESS 3 #define GET_PRINTABLE_AMOUNT 4 +/* + * Amounts are stored as bytes, with a max size of 16 (see protobuf + * specifications). Max 16B integer is 340282366920938463463374607431768211455 + * in decimal, which is a 32-long char string. + * The printable amount also contains spaces, the ticker symbol (with variable + * size, up to 12 in Ethereum for instance) and a terminating null byte, so 50 + * bytes total should be a fair maximum. + */ +#define MAX_PRINTABLE_AMOUNT_SIZE 50 + // structure that should be send to specific coin application to get address typedef struct check_address_parameters_s { // IN - unsigned char* coin_configuration; - unsigned char coin_configuration_length; + uint8_t *coin_configuration; + uint8_t coin_configuration_length; // serialized path, segwit, version prefix, hash used, dictionary etc. // fields and serialization format depends on spesific coin app - unsigned char* address_parameters; - unsigned char address_parameters_length; - char* address_to_check; - char* extra_id_to_check; + uint8_t *address_parameters; + uint8_t address_parameters_length; + char *address_to_check; + char *extra_id_to_check; // OUT int result; } check_address_parameters_t; @@ -26,24 +45,27 @@ typedef struct check_address_parameters_s { // structure that should be send to specific coin application to get printable amount typedef struct get_printable_amount_parameters_s { // IN - unsigned char* coin_configuration; - unsigned char coin_configuration_length; - unsigned char* amount; - unsigned char amount_length; + uint8_t *coin_configuration; + uint8_t coin_configuration_length; + uint8_t *amount; + uint8_t amount_length; bool is_fee; // OUT - char printable_amount[30]; + char printable_amount[MAX_PRINTABLE_AMOUNT_SIZE]; } get_printable_amount_parameters_t; typedef struct create_transaction_parameters_s { - unsigned char* coin_configuration; - unsigned char coin_configuration_length; - unsigned char* amount; - unsigned char amount_length; - unsigned char* fee_amount; - unsigned char fee_amount_length; - char* destination_address; - char* destination_address_extra_id; + // IN + uint8_t *coin_configuration; + uint8_t coin_configuration_length; + uint8_t *amount; + uint8_t amount_length; + uint8_t *fee_amount; + uint8_t fee_amount_length; + char *destination_address; + char *destination_address_extra_id; + // OUT + uint8_t result; } create_transaction_parameters_t; typedef struct libargs_s { @@ -51,15 +73,8 @@ typedef struct libargs_s { unsigned int command; unsigned int unused; union { - check_address_parameters_t* check_address; - create_transaction_parameters_t* create_transaction; - get_printable_amount_parameters_t* get_printable_amount; + check_address_parameters_t *check_address; + create_transaction_parameters_t *create_transaction; + get_printable_amount_parameters_t *get_printable_amount; }; } libargs_t; - -int handle_check_address(const check_address_parameters_t* params); -int handle_get_printable_amount(get_printable_amount_parameters_t* params); -bool copy_transaction_parameters(const create_transaction_parameters_t* params); -void handle_swap_sign_transaction(void); -bool swap_check(); -bool swap_str_to_u64(const uint8_t* src, size_t length, uint64_t* result); diff --git a/src/swap/swap_lib_calls.c b/src/swap/swap_utils.c similarity index 90% rename from src/swap/swap_lib_calls.c rename to src/swap/swap_utils.c index 090cc769..a1d5a48b 100644 --- a/src/swap/swap_lib_calls.c +++ b/src/swap/swap_utils.c @@ -1,6 +1,6 @@ #include -#include "./swap_lib_calls.h" +#include "handle_swap_commands.h" bool swap_str_to_u64(const uint8_t* src, size_t length, uint64_t* result) { if (length > sizeof(uint64_t)) { diff --git a/src/transaction/transaction_formatter.c b/src/transaction/transaction_formatter.c index 72247f33..16cfb083 100644 --- a/src/transaction/transaction_formatter.c +++ b/src/transaction/transaction_formatter.c @@ -1646,17 +1646,17 @@ static const format_function_t formatters[] = {&format_create_account, void format_confirm_operation(tx_ctx_t *tx_ctx) { if (tx_ctx->tx_details.operations_count > 1) { - size_t len; + size_t length; STRLCPY(op_caption, "Operation ", OPERATION_CAPTION_MAX_LENGTH); - len = strlen(op_caption); + length = strlen(op_caption); FORMATTER_CHECK(print_uint(tx_ctx->tx_details.operation_index, - op_caption + len, - OPERATION_CAPTION_MAX_LENGTH - len)) + op_caption + length, + OPERATION_CAPTION_MAX_LENGTH - length)) STRLCAT(op_caption, " of ", sizeof(op_caption)); - len = strlen(op_caption); + length = strlen(op_caption); FORMATTER_CHECK(print_uint(tx_ctx->tx_details.operations_count, - op_caption + len, - OPERATION_CAPTION_MAX_LENGTH - len)) + op_caption + length, + OPERATION_CAPTION_MAX_LENGTH - length)) push_to_formatter_stack( ((format_function_t) PIC(formatters[tx_ctx->tx_details.op_details.type]))); } else { diff --git a/src/transaction/transaction_formatter.h b/src/transaction/transaction_formatter.h index bb48c2db..4b6181ac 100644 --- a/src/transaction/transaction_formatter.h +++ b/src/transaction/transaction_formatter.h @@ -25,3 +25,4 @@ extern char op_caption[OPERATION_CAPTION_MAX_LENGTH]; extern int8_t formatter_index; void set_state_data(bool forward); +format_function_t get_formatter(tx_ctx_t *tx_ctx, bool forward); diff --git a/src/ui/action/validate.c b/src/ui/action/validate.c index 34f8d928..2526b457 100644 --- a/src/ui/action/validate.c +++ b/src/ui/action/validate.c @@ -30,8 +30,9 @@ void ui_action_validate_pubkey(bool choice) { } else { io_send_sw(SW_DENY); } - +#ifndef HAVE_NBGL ui_menu_main(); +#endif // HAVE_NBGL } void ui_action_validate_transaction(bool choice) { @@ -51,5 +52,7 @@ void ui_action_validate_transaction(bool choice) { G_context.state = STATE_NONE; io_send_sw(SW_DENY); } +#ifndef HAVE_NBGL ui_menu_main(); +#endif // HAVE_NBGL }; diff --git a/src/ui/ui_address.c b/src/ui/ui_address_bagl.c similarity index 98% rename from src/ui/ui_address.c rename to src/ui/ui_address_bagl.c index 3f6d6086..9a07346e 100644 --- a/src/ui/ui_address.c +++ b/src/ui/ui_address_bagl.c @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ - +#ifdef HAVE_BAGL #include // bool #include // memset @@ -78,3 +78,4 @@ int ui_display_address() { ux_flow_init(0, ux_display_pubkey_flow, NULL); return 0; } +#endif // HAVE_BAGL diff --git a/src/ui/ui_address_nbgl.c b/src/ui/ui_address_nbgl.c new file mode 100644 index 00000000..5e2440f3 --- /dev/null +++ b/src/ui/ui_address_nbgl.c @@ -0,0 +1,52 @@ +/***************************************************************************** + * Ledger Stellar App. + * (c) 2022 Ledger SAS. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *****************************************************************************/ +#ifdef HAVE_NBGL +#include // bool +#include // memset + +#include "./ui.h" +#include "./action/validate.h" +#include "../globals.h" +#include "../sw.h" +#include "../utils.h" +#include "../io.h" +#include "nbgl_use_case.h" + +static void confirmationChoice(bool confirm) { + ui_action_validate_pubkey(confirm); + if (confirm) { + nbgl_useCaseStatus("ADDRESS\nVERIFIED", true, ui_menu_main); + } else { + nbgl_useCaseStatus("Address verification\ncancelled", false, ui_menu_main); + } +} + +int ui_display_address(void) { + if (G_context.req_type != CONFIRM_ADDRESS || G_context.state != STATE_NONE) { + G_context.state = STATE_NONE; + return io_send_sw(SW_BAD_STATE); + } + memset(G.ui.detail_value, 0, sizeof(G.ui.detail_value)); + if (!encode_ed25519_public_key(G_context.raw_public_key, + G.ui.detail_value, + sizeof(G.ui.detail_value))) { + return io_send_sw(SW_DISPLAY_ADDRESS_FAIL); + } + nbgl_useCaseAddressConfirmation(G.ui.detail_value, confirmationChoice); + return 0; +} +#endif // HAVE_NBGL diff --git a/src/ui/ui_menu.c b/src/ui/ui_menu_bagl.c similarity index 99% rename from src/ui/ui_menu.c rename to src/ui/ui_menu_bagl.c index c2343016..5f316f88 100644 --- a/src/ui/ui_menu.c +++ b/src/ui/ui_menu_bagl.c @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ - +#ifdef HAVE_BAGL #include "./ui.h" #include "../globals.h" #include "../settings.h" @@ -124,3 +124,4 @@ void switch_settings_sequence_number() { SETTING_TOGGLE(S_SEQUENCE_NUMBER_ENABLED); display_settings(&ux_settings_sequence_number_step); } +#endif // HAVE_BAGL diff --git a/src/ui/ui_menu_nbgl.c b/src/ui/ui_menu_nbgl.c new file mode 100644 index 00000000..becbf323 --- /dev/null +++ b/src/ui/ui_menu_nbgl.c @@ -0,0 +1,109 @@ +/***************************************************************************** + * Ledger Stellar App. + * (c) 2022 Ledger SAS. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *****************************************************************************/ +#ifdef HAVE_NBGL +#include "ui.h" +#include "globals.h" +#include "settings.h" + +#include "os.h" +#include "os_io_seproxyhal.h" +#include "glyphs.h" +#include "ux.h" +#include "nbgl_use_case.h" +#include "settings.h" + +static void displaySettingsMenu(void); +static void settingsControlsCallback(int token, uint8_t index); +static bool settingsNavCallback(uint8_t page, nbgl_pageContent_t* content); + +enum { SWITCH_HASH_SET_TOKEN = FIRST_USER_TOKEN, SWITCH_SEQUENCE_SET_TOKEN }; + +#define NB_INFO_FIELDS 2 +static const char* const infoTypes[] = {"Version", "Developer"}; +static const char* const infoContents[] = {APPVERSION, "Ledger"}; + +#define NB_SETTINGS_SWITCHES 2 +#define SETTINGS_INIT_PAGE 0 +#define SETTINGS_NB_PAGES 2 +#define SETTINGS_TOUCHABLE false +static nbgl_layoutSwitch_t switches[NB_SETTINGS_SWITCHES]; + +void onQuitCallback(void) { + os_sched_exit(-1); +} + +static bool settingsNavCallback(uint8_t page, nbgl_pageContent_t* content) { + if (page == 0) { + content->type = INFOS_LIST; + content->infosList.nbInfos = NB_INFO_FIELDS; + content->infosList.infoTypes = (const char**) infoTypes; + content->infosList.infoContents = (const char**) infoContents; + } else if (page == 1) { + switches[0].text = "Hash signing"; + switches[0].subText = "Enable transaction hash\nsigning"; + switches[0].token = SWITCH_HASH_SET_TOKEN; + switches[0].tuneId = TUNE_TAP_CASUAL; + switches[0].initState = (HAS_SETTING(S_HASH_SIGNING_ENABLED)) ? ON_STATE : OFF_STATE; + switches[1].text = "Sequence number"; + switches[1].subText = "Display sequence in\ntransactions"; + switches[1].token = SWITCH_SEQUENCE_SET_TOKEN; + switches[1].tuneId = TUNE_TAP_CASUAL; + switches[1].initState = (HAS_SETTING(S_SEQUENCE_NUMBER_ENABLED)) ? ON_STATE : OFF_STATE; + + content->type = SWITCHES_LIST; + content->switchesList.nbSwitches = NB_SETTINGS_SWITCHES; + content->switchesList.switches = (nbgl_layoutSwitch_t*) switches; + } else { + return false; + } + return true; +} + +static void settingsControlsCallback(int token, uint8_t index) { + UNUSED(index); + switch (token) { + case SWITCH_HASH_SET_TOKEN: + SETTING_TOGGLE(S_HASH_SIGNING_ENABLED); + break; + case SWITCH_SEQUENCE_SET_TOKEN: + SETTING_TOGGLE(S_SEQUENCE_NUMBER_ENABLED); + break; + default: + PRINTF("Should not happen !"); + break; + } +} + +static void displaySettingsMenu(void) { + nbgl_useCaseSettings("Stellar settings", + SETTINGS_INIT_PAGE, + SETTINGS_NB_PAGES, + SETTINGS_TOUCHABLE, + ui_menu_main, + settingsNavCallback, + settingsControlsCallback); +} + +void ui_menu_main(void) { + nbgl_useCaseHome("Stellar", + &C_icon_stellar_64px, + NULL, + true, + displaySettingsMenu, + onQuitCallback); +} +#endif // HAVE_NBGL diff --git a/src/ui/ui_transaction.c b/src/ui/ui_transaction_bagl.c similarity index 99% rename from src/ui/ui_transaction.c rename to src/ui/ui_transaction_bagl.c index 3f3e2b2c..d74b44e3 100644 --- a/src/ui/ui_transaction.c +++ b/src/ui/ui_transaction_bagl.c @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ - +#ifdef HAVE_BAGL #include // bool #include // memset @@ -166,4 +166,5 @@ int ui_approve_tx_init(void) { G.ui.validate_callback = &ui_action_validate_transaction; ux_flow_init(0, ux_confirm_flow, NULL); return 0; -} \ No newline at end of file +} +#endif // HAVE_BAGL diff --git a/src/ui/ui_transaction_hash.c b/src/ui/ui_transaction_hash_bagl.c similarity index 99% rename from src/ui/ui_transaction_hash.c rename to src/ui/ui_transaction_hash_bagl.c index 2ea0d77a..4503b1a9 100644 --- a/src/ui/ui_transaction_hash.c +++ b/src/ui/ui_transaction_hash_bagl.c @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ - +#ifdef HAVE_BAGL #include // bool #include // memset @@ -198,4 +198,5 @@ int ui_approve_tx_hash_init() { G.ui.validate_callback = &ui_action_validate_transaction; ux_flow_init(0, ux_tx_hash_signing_flow, NULL); return 0; -} \ No newline at end of file +} +#endif // HAVE_BAGL diff --git a/src/ui/ui_transaction_hash_nbgl.c b/src/ui/ui_transaction_hash_nbgl.c new file mode 100644 index 00000000..d8afd423 --- /dev/null +++ b/src/ui/ui_transaction_hash_nbgl.c @@ -0,0 +1,132 @@ +/***************************************************************************** + * Ledger Stellar App. + * (c) 2022 Ledger SAS. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *****************************************************************************/ +#ifdef HAVE_NBGL +#include // bool +#include // memset + +#include "ui.h" +#include "validate.h" +#include "globals.h" +#include "sw.h" +#include "utils.h" +#include "io.h" +#include "format.h" +#include "nbgl_use_case.h" + +// Macros +#define TAG_VAL_LST_PAIR_NB 2 + +// Globals +static char str_values[TAG_VAL_LST_PAIR_NB][DETAIL_VALUE_MAX_LENGTH]; +static nbgl_pageInfoLongPress_t infoLongPress; +static nbgl_layoutTagValue_t caption_value_pairs[TAG_VAL_LST_PAIR_NB]; +static nbgl_layoutTagValueList_t pairList; + +// Static functions declarations +static void reviewStart(void); +static void reviewWarning(void); +static void reviewContinue(void); +static void rejectConfirmation(void); +static void rejectChoice(void); + +// Functions definitions +static void preparePage(void) { + explicit_bzero(caption_value_pairs, sizeof(caption_value_pairs)); + explicit_bzero(str_values, sizeof(str_values)); + + // Address caption/value preparation. + caption_value_pairs[0].item = "Address"; + if (!encode_ed25519_public_key(G_context.raw_public_key, + str_values[0], + DETAIL_VALUE_MAX_LENGTH)) { + io_send_sw(SW_DISPLAY_ADDRESS_FAIL); + return; + } + caption_value_pairs[0].value = str_values[0]; + + // Hash caption/value preparation. + caption_value_pairs[1].item = "Hash"; + if (!format_hex(G_context.hash, 32, str_values[1], DETAIL_VALUE_MAX_LENGTH)) { + io_send_sw(SW_DISPLAY_TRANSACTION_HASH_FAIL); + return; + } + caption_value_pairs[1].value = str_values[1]; +} + +static void rejectConfirmation(void) { + ui_action_validate_transaction(false); + nbgl_useCaseStatus("Transaction\nRejected", false, ui_menu_main); +} + +static void rejectChoice(void) { + nbgl_useCaseConfirm("Reject transaction?", + NULL, + "Yes, Reject", + "Go back to transaction", + rejectConfirmation); +} + +static void reviewChoice(bool confirm) { + if (confirm) { + ui_action_validate_transaction(true); + nbgl_useCaseStatus("TRANSACTION\nSIGNED", true, ui_menu_main); + } else { + rejectChoice(); + } +} + +static void reviewStart(void) { + nbgl_useCaseReviewStart(&C_icon_stellar_64px, + "Review transaction", + "", + "Reject transaction", + reviewWarning, + rejectChoice); +} + +static void reviewWarning(void) { + nbgl_useCaseReviewStart(NULL, + "WARNING", + "Hash signing", + "Reject transaction", + reviewContinue, + rejectChoice); +} + +static void reviewContinue(void) { + pairList.pairs = caption_value_pairs; + pairList.nbPairs = TAG_VAL_LST_PAIR_NB; + + infoLongPress.text = "Sign transaction?"; + infoLongPress.icon = &C_icon_stellar_64px; + infoLongPress.longPressText = "Hold to sign"; + infoLongPress.longPressToken = 0; + infoLongPress.tuneId = TUNE_TAP_CASUAL; + + nbgl_useCaseStaticReview(&pairList, &infoLongPress, "Reject transaction", reviewChoice); +} + +int ui_approve_tx_hash_init() { + if (G_context.req_type != CONFIRM_TRANSACTION_HASH || G_context.state != STATE_NONE) { + G_context.state = STATE_NONE; + return io_send_sw(SW_BAD_STATE); + } + preparePage(); + reviewStart(); + return 0; +} +#endif // HAVE_NBGL diff --git a/src/ui/ui_transaction_nbgl.c b/src/ui/ui_transaction_nbgl.c new file mode 100644 index 00000000..64edd72c --- /dev/null +++ b/src/ui/ui_transaction_nbgl.c @@ -0,0 +1,271 @@ +/***************************************************************************** + * Ledger Stellar App. + * (c) 2022 Ledger SAS. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *****************************************************************************/ +#ifdef HAVE_NBGL +#include // bool +#include // memset + +#include "ui.h" +#include "validate.h" +#include "globals.h" +#include "utils.h" +#include "sw.h" +#include "io.h" +#include "transaction_parser.h" +#include "transaction_formatter.h" +#include "nbgl_page.h" +#include "nbgl_use_case.h" +#include "settings.h" + +// Macros +#define TAG_VAL_LST_MAX_LINES_PER_PAGE 10 +#define TAG_VAL_LST_MAX_PAIR_NB TAG_VAL_LST_MAX_LINES_PER_PAGE / 2 +#define TAG_VAL_LST_ITEM_MAX_CHAR_PER_LINE 31 +#define TAG_VAL_LST_VAL_MAX_CHAR_PER_LINE 17 +#define TAG_VAL_LST_VAL_MAX_LEN_PER_PAGE \ + TAG_VAL_LST_VAL_MAX_CHAR_PER_LINE *(TAG_VAL_LST_MAX_LINES_PER_PAGE - \ + 1) // -1 because at least one line is used by a tag item. +#define MAX_NUMBER_OF_PAGES 40 +// Enums and Structs +typedef struct { + uint8_t pagePairNb; + bool centered_info; + uint8_t formatter_index; + uint8_t data_idx; +} page_infos_t; + +// Globals +static uint8_t nbPages; +static int16_t currentPage; +nbgl_layoutTagValue_t caption_value_pairs[TAG_VAL_LST_MAX_PAIR_NB]; +static char str_values[TAG_VAL_LST_MAX_PAIR_NB][DETAIL_VALUE_MAX_LENGTH]; +static char str_captions[TAG_VAL_LST_MAX_PAIR_NB][DETAIL_CAPTION_MAX_LENGTH]; +static page_infos_t pagesInfos[MAX_NUMBER_OF_PAGES]; + +static void reviewContinue(void); +static void reviewStart(void); +static void rejectConfirmation(void); +static void rejectChoice(void); + +// Functions definitions +static inline void INCR_AND_CHECK_PAGE_NB(void) { + nbPages++; + if (nbPages >= MAX_NUMBER_OF_PAGES) { + THROW(SW_TX_FORMATTING_FAIL); + } +} + +static void prepareTxPagesInfos(void) { + uint8_t tagLineNb = 0; + uint8_t tagItemLineNb = 0; + uint8_t tagValueLineNb = 0; + uint8_t pageLineNb = 0; + uint16_t fieldLen = 0; + bool continue_loop = true; + uint8_t previous_idx = 0; + uint8_t previous_data = 0; + + // Reset globals. + nbPages = 0; + G.ui.current_data_index = 1; + G_context.tx_info.offset = 0; + formatter_index = 0; + explicit_bzero(formatter_stack, sizeof(formatter_stack)); + explicit_bzero(pagesInfos, sizeof(pagesInfos)); + pagesInfos[0].data_idx = G.ui.current_data_index; + + // Prepare formatter stack. + formatter_stack[0] = get_formatter(&G_context.tx_info, true); // SET FORMATTERS STACK + + while (continue_loop) { // Execute loop until last tx formatter is reached. + explicit_bzero(G.ui.detail_caption, sizeof(G.ui.detail_caption)); + explicit_bzero(G.ui.detail_value, sizeof(G.ui.detail_value)); + explicit_bzero(op_caption, sizeof(op_caption)); + previous_idx = formatter_index; + previous_data = G.ui.current_data_index; + // Call formatter function. + formatter_stack[formatter_index](&G_context.tx_info); + PRINTF("Page %d - Item : %s - Value : %s\n", + nbPages, + G.ui.detail_caption, + G.ui.detail_value); + // Compute number of lines filled by tag item string. + fieldLen = strlen(G.ui.detail_caption); + tagItemLineNb = fieldLen / TAG_VAL_LST_ITEM_MAX_CHAR_PER_LINE; + tagItemLineNb += (fieldLen % TAG_VAL_LST_ITEM_MAX_CHAR_PER_LINE != 0) ? 1 : 0; + // Compute number of lines filled by tag value string. + fieldLen = strlen(G.ui.detail_value); + tagValueLineNb = fieldLen / TAG_VAL_LST_VAL_MAX_CHAR_PER_LINE; + tagValueLineNb += (fieldLen % TAG_VAL_LST_VAL_MAX_CHAR_PER_LINE != 0) ? 1 : 0; + // Add number of screen lines occupied by tag pair to total lines occupied in page. + tagLineNb = tagValueLineNb + tagItemLineNb; + pageLineNb += tagLineNb; + // If there are multiple operations and a new operation is reached, create a + // special page with only one caption/value pair to display operation number. + if (G.ui.current_data_index > previous_data && + G_context.tx_info.tx_details.operations_count > 1) { + INCR_AND_CHECK_PAGE_NB(); + pagesInfos[nbPages].pagePairNb = 1; + pagesInfos[nbPages].formatter_index = previous_idx; + pagesInfos[nbPages].data_idx = previous_data; + pagesInfos[nbPages].centered_info = true; + INCR_AND_CHECK_PAGE_NB(); + pageLineNb = 0; + pagesInfos[nbPages].pagePairNb = 0; + pagesInfos[nbPages].formatter_index = formatter_index + 1; + pagesInfos[nbPages].data_idx = G.ui.current_data_index; + } + // Else if number of lines occupied on page > allowed max number of lines per page, + // go to next page. + else if (pageLineNb > TAG_VAL_LST_MAX_LINES_PER_PAGE) { + INCR_AND_CHECK_PAGE_NB(); + pageLineNb = tagLineNb; + pagesInfos[nbPages].pagePairNb = 1; + pagesInfos[nbPages].formatter_index = formatter_index; + pagesInfos[nbPages].data_idx = G.ui.current_data_index; + } else + // Otherwise save number of pairs on current page + { + pagesInfos[nbPages].pagePairNb++; + } + formatter_index++; + continue_loop = (formatter_stack[formatter_index] != NULL) ? true : false; + } + + INCR_AND_CHECK_PAGE_NB(); +} + +static void preparePage(uint8_t page) { + uint8_t i = 0; + // Rewind transaction from the start until the page's + // operation and formatter indexes are reached. + // Execution time is probably not optimal but it works... + formatter_index = 0; + G_context.tx_info.offset = 0; + G_context.tx_info.tx_details.operation_index = 0; + G.ui.current_data_index = pagesInfos[page].data_idx; + + explicit_bzero(caption_value_pairs, sizeof(caption_value_pairs)); + explicit_bzero(str_values, sizeof(str_values)); + explicit_bzero(str_captions, sizeof(str_captions)); + + formatter_stack[0] = get_formatter(&G_context.tx_info, true); + // Loop which goes through the formatter functions + // from tx start. + for (i = 0; i < pagesInfos[page].formatter_index; i++) { + explicit_bzero(G.ui.detail_caption, sizeof(G.ui.detail_caption)); + explicit_bzero(G.ui.detail_value, sizeof(G.ui.detail_value)); + formatter_stack[formatter_index](&G_context.tx_info); + formatter_index++; + } + // Prepare current page's caption / value pairs + // to be displayed. + for (i = 0; i < pagesInfos[page].pagePairNb; i++) { + explicit_bzero(G.ui.detail_caption, sizeof(G.ui.detail_caption)); + explicit_bzero(G.ui.detail_value, sizeof(G.ui.detail_value)); + explicit_bzero(op_caption, sizeof(op_caption)); + formatter_stack[formatter_index](&G_context.tx_info); + strncpy(str_captions[i], G.ui.detail_caption, sizeof(str_captions[i])); + strncpy(str_values[i], G.ui.detail_value, sizeof(str_values[i])); + caption_value_pairs[i].item = str_captions[i]; + caption_value_pairs[i].value = str_values[i]; + + formatter_index++; + } +} + +static bool displayTransactionPage(uint8_t page, nbgl_pageContent_t *content) { + currentPage = page; + if (page < nbPages) { + preparePage(page); + if (pagesInfos[page].centered_info) { + content->type = CENTERED_INFO; + content->centeredInfo.style = LARGE_CASE_INFO; + content->centeredInfo.text1 = "Please review"; + content->centeredInfo.text2 = caption_value_pairs[0].item; + content->centeredInfo.text3 = NULL; + content->centeredInfo.icon = &C_icon_stellar_64px; + content->centeredInfo.offsetY = 35; + content->centeredInfo.onTop = false; + } else { + content->type = TAG_VALUE_LIST; + content->tagValueList.nbPairs = pagesInfos[page].pagePairNb; + content->tagValueList.pairs = (nbgl_layoutTagValue_t *) &caption_value_pairs; + content->tagValueList.smallCaseForValue = false; + content->tagValueList.wrapping = true; + content->tagValueList.nbMaxLinesForValue = 0; + } + } else { + content->type = INFO_LONG_PRESS, content->infoLongPress.icon = &C_icon_stellar_64px; + content->infoLongPress.text = "Sign transaction?"; + content->infoLongPress.longPressText = "Hold to sign"; + } + return true; +} + +static void rejectConfirmation(void) { + ui_action_validate_transaction(false); + nbgl_useCaseStatus("Transaction\nRejected", false, ui_menu_main); +} + +static void rejectChoice(void) { + nbgl_useCaseConfirm("Reject transaction?", + NULL, + "Yes, Reject", + "Go back to transaction", + rejectConfirmation); +} + +static void reviewChoice(bool confirm) { + if (confirm) { + ui_action_validate_transaction(true); + nbgl_useCaseStatus("TRANSACTION\nSIGNED", true, ui_menu_main); + } else { + rejectChoice(); + } +} + +static void reviewContinue(void) { + nbgl_useCaseRegularReview(currentPage, + nbPages + 1, + "Reject transaction", + NULL, + displayTransactionPage, + reviewChoice); +} + +static void reviewStart(void) { + nbgl_useCaseReviewStart(&C_icon_stellar_64px, + "Review transaction", + NULL, + "Reject transaction", + reviewContinue, + rejectChoice); +} + +int ui_approve_tx_init(void) { + if (G_context.req_type != CONFIRM_TRANSACTION || G_context.state != STATE_PARSED) { + G_context.state = STATE_NONE; + return io_send_sw(SW_BAD_STATE); + } + + currentPage = 0; + prepareTxPagesInfos(); + reviewStart(); + + return 0; +} +#endif // HAVE_NBGL diff --git a/src/utils.c b/src/utils.c index 6825009b..44f685b4 100644 --- a/src/utils.c +++ b/src/utils.c @@ -447,7 +447,7 @@ bool print_asset(const asset_t *asset, uint8_t network_id, char *out, size_t out return true; } -bool print_flag(char *flag, char *out, size_t out_len) { +bool print_flag(const char *flag, char *out, size_t out_len) { if (out[0]) { if (strlcat(out, ", ", out_len) >= out_len) { return false; diff --git a/tests_unit/CMakeLists.txt b/tests_unit/CMakeLists.txt index 94d85f5c..28f89242 100644 --- a/tests_unit/CMakeLists.txt +++ b/tests_unit/CMakeLists.txt @@ -46,13 +46,14 @@ add_executable(test_tx_formatter test_tx_formatter.c) add_executable(test_swap test_swap.c) file(GLOB src_common "../src/common/*.c") +file(GLOB swap_files ../src/swap/handle_get_printable_amount.c ../src/swap/handle_check_address.c ../src/swap/swap_utils.c ) add_library(common STATIC ${src_common}) add_library(utils STATIC ../src/utils.c) add_library(globals STATIC ../src/globals.c) add_library(tx_parser STATIC ../src/transaction/transaction_parser.c) add_library(tx_formatter STATIC ../src/transaction/transaction_formatter.c) -add_library(swap STATIC ../src/swap/swap_lib_calls.c) +add_library(swap STATIC ${swap_files}) target_link_libraries(test_utils PUBLIC cmocka gcov utils common bsd) target_link_libraries(test_tx_parser PUBLIC cmocka gcov tx_parser utils common bsd) @@ -62,4 +63,4 @@ target_link_libraries(test_swap PUBLIC cmocka gcov swap tx_formatter tx_parser u add_test(test_utils test_utils) add_test(test_tx_parser test_tx_parser) add_test(test_tx_formatter test_tx_formatter) -add_test(test_swap test_swap) \ No newline at end of file +add_test(test_swap test_swap) diff --git a/tests_zemu/elfs/.gitkeep b/tests_zemu/elfs/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/tests_zemu/package-lock.json b/tests_zemu/package-lock.json index d8013bc1..6d5abd2b 100644 --- a/tests_zemu/package-lock.json +++ b/tests_zemu/package-lock.json @@ -1,7 +1,7 @@ { "name": "stellar-app-integration-tests", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { @@ -10,13 +10,14 @@ "license": "Apache-2.0", "devDependencies": { "@ledgerhq/hw-app-str": "^6.27.1", - "@types/jest": "^27.4.1", - "@zondax/zemu": "0.33.1", - "jest": "^27.5.1", + "@ledgerhq/hw-transport-http": "^6.28.3", + "@types/jest": "^29.2.1", + "@zondax/zemu": "^0.44.1", + "jest": "29.2.2", "stellar-base": "^8.1.0", "tests-common": "file:../tests_common_js", - "ts-jest": "^27.1.4", - "typescript": "^4.6.3" + "ts-jest": "^29.0.3", + "typescript": "^4.5.3" } }, "../tests_common_js": { @@ -33,54 +34,59 @@ } }, "node_modules/@ampproject/remapping": { - "version": "2.1.2", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.0" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/code-frame": { - "version": "7.16.7", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.17.7", + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.3.tgz", + "integrity": "sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.17.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.9", - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helpers": "^7.17.9", - "@babel/parser": "^7.17.9", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.9", - "@babel/types": "^7.17.0", + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.1.tgz", + "integrity": "sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.22.0", + "@babel/helper-compilation-targets": "^7.22.1", + "@babel/helper-module-transforms": "^7.22.1", + "@babel/helpers": "^7.22.0", + "@babel/parser": "^7.22.0", + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", + "json5": "^2.2.2", "semver": "^6.3.0" }, "engines": { @@ -91,35 +97,46 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/generator": { - "version": "7.17.9", + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.3.tgz", + "integrity": "sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.17.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "@babel/types": "^7.22.3", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/generator/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.17.7", + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.1.tgz", + "integrity": "sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-validator-option": "^7.16.7", - "browserslist": "^4.17.5", + "@babel/compat-data": "^7.22.0", + "@babel/helper-validator-option": "^7.21.0", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", "semver": "^6.3.0" }, "engines": { @@ -129,134 +146,161 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.16.7", + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.1.tgz", + "integrity": "sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==", "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.16.7" - }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.17.9", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.16.7", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.16.7", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", + "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.21.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.17.7", + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.1.tgz", + "integrity": "sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.3", - "@babel/types": "^7.17.0" + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-simple-access": "^7.21.5", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.16.7", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", + "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.17.7", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", + "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.17.0" + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.16.7", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/helper-string-parser": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", + "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.16.7", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.16.7", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.17.9", + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.3.tgz", + "integrity": "sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.9", - "@babel/types": "^7.17.0" + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.17.9", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -269,7 +313,6 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -282,7 +325,6 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -297,7 +339,6 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "1.1.3" } @@ -306,15 +347,13 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -324,7 +363,6 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } @@ -334,7 +372,6 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -343,9 +380,10 @@ } }, "node_modules/@babel/parser": { - "version": "7.17.9", + "version": "7.22.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.4.tgz", + "integrity": "sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==", "dev": true, - "license": "MIT", "bin": { "parser": "bin/babel-parser.js" }, @@ -358,7 +396,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -371,7 +408,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -384,7 +420,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -397,7 +432,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -410,7 +444,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -418,12 +451,26 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", + "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -436,7 +483,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -449,7 +495,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -462,7 +507,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -475,7 +519,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -488,7 +531,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -501,7 +543,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -513,11 +554,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.16.7", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", + "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -527,42 +569,45 @@ } }, "node_modules/@babel/runtime": { - "version": "7.17.9", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", + "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", "dev": true, - "license": "MIT", "dependencies": { - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.16.7", + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.21.9.tgz", + "integrity": "sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.21.4", + "@babel/parser": "^7.21.9", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.17.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.9", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.17.9", - "@babel/types": "^7.17.0", + "version": "7.22.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.4.tgz", + "integrity": "sha512-Tn1pDsjIcI+JcLKq1AVlZEr4226gpuAQTsLMorsYg9tuS/kG7nuwwJ4AB8jfQuEgb/COBwR/DqJxmoiYFu5/rQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.22.3", + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.22.4", + "@babel/types": "^7.22.4", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -571,32 +616,38 @@ } }, "node_modules/@babel/types": { - "version": "7.17.0", + "version": "7.22.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.4.tgz", + "integrity": "sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-string-parser": "^7.21.5", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@balena/dockerignore": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@balena/dockerignore/-/dockerignore-1.0.2.tgz", + "integrity": "sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==", + "dev": true + }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/@grpc/grpc-js": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.7.tgz", - "integrity": "sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==", + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.9.3.tgz", + "integrity": "sha512-b8iWtdrYIeT5fdZdS4Br/6h/kuk0PW5EVBUGk1amSbrpL8DlktJD43CdcCWwRdd6+jgwHhADSbL9CsNnm6EUPA==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@grpc/proto-loader": "^0.6.4", + "@grpc/proto-loader": "^0.7.8", "@types/node": ">=12.12.47" }, "engines": { @@ -604,15 +655,15 @@ } }, "node_modules/@grpc/proto-loader": { - "version": "0.6.9", + "version": "0.7.9", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.9.tgz", + "integrity": "sha512-YJsOehVXzgurc+lLAxYnlSMc1p/Gu6VAvnfx0ATi2nzvr0YZcjhmZDeY8SeAKv1M7zE3aEJH0Xo9mK1iZ8GYoQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@types/long": "^4.0.1", "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^6.10.0", - "yargs": "^16.2.0" + "long": "^5.0.0", + "protobufjs": "^7.2.4", + "yargs": "^17.7.2" }, "bin": { "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" @@ -626,7 +677,6 @@ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -638,82 +688,69 @@ "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/console": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", - "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", + "@jest/types": "^29.5.0", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/core": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", - "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/console": "^27.5.1", - "@jest/reporters": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "emittery": "^0.8.1", + "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^27.5.1", - "jest-config": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-resolve-dependencies": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "jest-watcher": "^27.5.1", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", "micromatch": "^4.0.4", - "rimraf": "^3.0.0", + "pretty-format": "^29.5.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -725,89 +762,110 @@ } }, "node_modules/@jest/environment": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", - "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", "@types/node": "*", - "jest-mock": "^27.5.1" + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", - "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "@sinonjs/fake-timers": "^8.0.1", + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", - "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/types": "^27.5.1", - "expect": "^27.5.1" + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", - "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", "dev": true, - "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", - "glob": "^7.1.2", + "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-haste-map": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", "slash": "^3.0.0", - "source-map": "^0.6.0", "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.1.0" + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -818,239 +876,257 @@ } } }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/@jest/source-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", - "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", "dev": true, - "license": "MIT", "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", "callsites": "^3.0.0", - "graceful-fs": "^4.2.9", - "source-map": "^0.6.0" + "graceful-fs": "^4.2.9" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/test-result": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", - "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/console": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/test-sequencer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", - "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/test-result": "^27.5.1", + "@jest/test-result": "^29.5.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-runtime": "^27.5.1" + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" + "write-file-atomic": "^4.0.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", "dev": true, - "license": "MIT", "dependencies": { + "@jest/schemas": "^29.4.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", + "@types/yargs": "^17.0.8", "chalk": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.0.6", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.0.0" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.11", + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dev": true, - "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, "node_modules/@ledgerhq/devices": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/devices/-/devices-6.27.1.tgz", - "integrity": "sha512-jX++oy89jtv7Dp2X6gwt3MMkoajel80JFWcdc0HCouwDsV1mVJ3SQdwl/bQU0zd8HI6KebvUP95QTwbQLLK/RQ==", + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/@ledgerhq/devices/-/devices-8.0.7.tgz", + "integrity": "sha512-BbPyET52lXnVs7CxJWrGYqmtGdbGzj+XnfCqLsDnA7QYr1CZREysxmie+Rr6BKpNDBRVesAovXjtaVaZOn+upw==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@ledgerhq/errors": "^6.10.0", - "@ledgerhq/logs": "^6.10.0", + "@ledgerhq/errors": "^6.14.0", + "@ledgerhq/logs": "^6.10.1", "rxjs": "6", "semver": "^7.3.5" } }, - "node_modules/@ledgerhq/devices/node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@ledgerhq/errors": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.0.tgz", - "integrity": "sha512-fQFnl2VIXh9Yd41lGjReCeK+Q2hwxQJvLZfqHnKqWapTz68NHOv5QcI0OHuZVNEbv0xhgdLhi5b65kgYeQSUVg==", - "dev": true, - "license": "Apache-2.0" + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.14.0.tgz", + "integrity": "sha512-ZWJw2Ti6Dq1Ott/+qYqJdDWeZm16qI3VNG5rFlb0TQ3UcAyLIQZbnnzzdcVVwVeZiEp66WIpINd/pBdqsHVyOA==", + "dev": true }, "node_modules/@ledgerhq/hw-app-str": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/hw-app-str/-/hw-app-str-6.27.1.tgz", - "integrity": "sha512-cAtl6UKdD/KThcEnsCDn99XZtNxMNcMc6Wcbk7L7h/lmF8zgl6b8fjaA9yPvEZZgOfu6CQ8NTjf4Mp6BHMx4lQ==", + "version": "6.27.15", + "resolved": "https://registry.npmjs.org/@ledgerhq/hw-app-str/-/hw-app-str-6.27.15.tgz", + "integrity": "sha512-UqPvEghLNoEeclIiWiKpyQN0vAbQJKvMnL+d6CChkAVnOzHMcRuMXK1Iu3OCoTkqvk4R1PjPW/ORydIE3nrvuw==", "dev": true, "dependencies": { - "@ledgerhq/hw-transport": "^6.27.1", + "@ledgerhq/hw-transport": "^6.28.4", "base32.js": "^0.1.0", "sha.js": "^2.3.6", "tweetnacl": "^1.0.3" } }, - "node_modules/@ledgerhq/hw-app-str/node_modules/tweetnacl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", - "dev": true - }, "node_modules/@ledgerhq/hw-transport": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.1.tgz", - "integrity": "sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==", + "version": "6.28.8", + "resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.28.8.tgz", + "integrity": "sha512-XxQVl4htd018u/M66r0iu5nlHi+J6QfdPsORzDF6N39jaz+tMqItb7tUlXM/isggcuS5lc7GJo7NOuJ8rvHZaQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@ledgerhq/devices": "^6.27.1", - "@ledgerhq/errors": "^6.10.0", + "@ledgerhq/devices": "^8.0.7", + "@ledgerhq/errors": "^6.14.0", "events": "^3.3.0" } }, "node_modules/@ledgerhq/hw-transport-http": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport-http/-/hw-transport-http-6.27.1.tgz", - "integrity": "sha512-494Zk5jvHcasa5xjZW7l5g+QqJqLlZpuV/RvlIWnKHdVdrBWYvG/1VukQfJQPgbK3WHtt/9WhrnJoLI+xv2PrA==", + "version": "6.28.3", + "resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport-http/-/hw-transport-http-6.28.3.tgz", + "integrity": "sha512-Z+zzK3v+rs/j9V2fc1uDJ38wBviziyU2sSSSHy0F2VnOhdEuE9i82hYsRniwi3c+pi9LThZP9kQrHOyeAnTaow==", "dev": true, "dependencies": { - "@ledgerhq/errors": "^6.10.0", - "@ledgerhq/hw-transport": "^6.27.1", - "@ledgerhq/logs": "^6.10.0", + "@ledgerhq/errors": "^6.14.0", + "@ledgerhq/hw-transport": "^6.28.8", + "@ledgerhq/logs": "^6.10.1", "axios": "^0.26.1", - "ws": "8.5.0" + "ws": "^7.5.2" } }, - "node_modules/@ledgerhq/logs": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.0.tgz", - "integrity": "sha512-lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw==", + "node_modules/@ledgerhq/hw-transport-http/node_modules/axios": { + "version": "0.26.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", + "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", "dev": true, - "license": "Apache-2.0" + "dependencies": { + "follow-redirects": "^1.14.8" + } + }, + "node_modules/@ledgerhq/logs": { + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.1.tgz", + "integrity": "sha512-z+ILK8Q3y+nfUl43ctCPuR4Y2bIxk/ooCQFwZxhtci1EhAtMDzMAx2W25qx8G1PPL9UUOdnUax19+F0OjXoj4w==", + "dev": true }, "node_modules/@protobufjs/aspromise": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/base64": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/codegen": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/eventemitter": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/fetch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@protobufjs/aspromise": "^1.1.1", "@protobufjs/inquire": "^1.1.0" @@ -1060,76 +1136,64 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/inquire": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/path": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/pool": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/@protobufjs/utf8": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true }, "node_modules/@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz", + "integrity": "sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "@sinonjs/commons": "^1.7.0" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" + "@sinonjs/commons": "^3.0.0" } }, "node_modules/@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" @@ -1140,7 +1204,6 @@ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } @@ -1150,26 +1213,25 @@ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { - "version": "7.17.0", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } @@ -1178,15 +1240,13 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, - "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } @@ -1196,48 +1256,43 @@ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, - "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { - "version": "27.4.1", + "version": "29.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", + "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", "dev": true, - "license": "MIT", "dependencies": { - "jest-matcher-utils": "^27.0.0", - "pretty-format": "^27.0.0" + "expect": "^29.0.0", + "pretty-format": "^29.0.0" } }, - "node_modules/@types/long": { - "version": "4.0.1", - "dev": true, - "license": "MIT" - }, "node_modules/@types/node": { - "version": "17.0.25", - "dev": true, - "license": "MIT" + "version": "20.2.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz", + "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==", + "dev": true }, "node_modules/@types/prettier": { - "version": "2.6.0", - "dev": true, - "license": "MIT" + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dev": true, - "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } @@ -1246,130 +1301,24 @@ "version": "21.0.0", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/@zondax/zemu": { - "version": "0.33.1", - "resolved": "https://mirrors.cloud.tencent.com/npm/@zondax%2fzemu/-/zemu-0.33.1.tgz", - "integrity": "sha512-6BJ8eXim6cXyY/idhSLy18iCN170BxCGBHU+BiXlC4dfWCsrIqG+mX0g3CGyHvFP9Cs6ruxrEm7UQbov639ttA==", + "version": "0.44.1", + "resolved": "https://registry.npmjs.org/@zondax/zemu/-/zemu-0.44.1.tgz", + "integrity": "sha512-GxH+W2rLs36tGQh1EpB5AJu85oqHoTS9ZHp1cGk7Uufm0l/MivOWNUKPfQjzZ11RCYbbhTGKyg2QVVF/m7b9vA==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "@grpc/grpc-js": "^1.5.5", - "@grpc/proto-loader": "^0.6.9", - "@ledgerhq/hw-transport": "^6.24.1", - "@ledgerhq/hw-transport-http": "^6.24.1", - "axios": "^0.27.2", - "axios-retry": "^3.2.0", + "@grpc/grpc-js": "^1.9.3", + "@grpc/proto-loader": "^0.7.9", + "axios": "^1.5.0", + "axios-retry": "^3.7.0", "dockerode": "^3.3.1", "elfy": "^1.0.0", - "fs-extra": "^10.0.0", + "fs-extra": "^11.0.0", "get-port": "^5.1.1", - "path": "^0.12.7", - "pngjs": "^6.0.0", - "randomstring": "^1.2.1" - } - }, - "node_modules/@zondax/zemu/node_modules/axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" - } - }, - "node_modules/@zondax/zemu/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@zondax/zemu/node_modules/get-port": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", - "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/acorn": { - "version": "8.7.0", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" + "pngjs": "^7.0.0", + "randomstring": "^1.3.0" } }, "node_modules/ansi-escapes": { @@ -1377,7 +1326,6 @@ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -1393,7 +1341,6 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -1403,7 +1350,6 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -1415,11 +1361,10 @@ } }, "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, - "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -1433,27 +1378,15 @@ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, - "node_modules/array-uniq": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz", - "integrity": "sha512-GVYjmpL05al4dNlKJm53mKE4w9OOLiuVHWorsIA3YVz+Hu0hcn6PtE3Ydl0EqU7v+7ABC4mjjWsnLUxbpno+CA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/asn1": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } @@ -1462,46 +1395,45 @@ "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/axios": { - "version": "0.26.1", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", - "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.0.tgz", + "integrity": "sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==", "dev": true, - "license": "MIT", "dependencies": { - "follow-redirects": "^1.14.8" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/axios-retry": { - "version": "3.2.4", + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/axios-retry/-/axios-retry-3.7.0.tgz", + "integrity": "sha512-ZTnCkJbRtfScvwiRnoVskFAfvU0UG3xNcsjwTR0mawSbIJoothxn67gKsMaNAFHRXJ1RmuLhmZBzvyXi3+9WyQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.15.4", "is-retry-allowed": "^2.2.0" } }, "node_modules/babel-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/transform": "^29.5.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", + "babel-preset-jest": "^29.5.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "@babel/core": "^7.8.0" @@ -1512,7 +1444,6 @@ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -1525,19 +1456,18 @@ } }, "node_modules/babel-plugin-jest-hoist": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", "dev": true, - "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", + "@types/babel__core": "^7.1.14", "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/babel-preset-current-node-syntax": { @@ -1545,7 +1475,6 @@ "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", @@ -1565,17 +1494,16 @@ } }, "node_modules/babel-preset-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", "dev": true, - "license": "MIT", "dependencies": { - "babel-plugin-jest-hoist": "^27.5.1", + "babel-plugin-jest-hoist": "^29.5.0", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0" @@ -1585,13 +1513,12 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/base32.js": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/base32.js/-/base32.js-0.1.0.tgz", - "integrity": "sha1-tYLexpPC8R6JPPBk7mrFthMaIgI=", + "integrity": "sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==", "dev": true, "engines": { "node": ">=0.12.0" @@ -1615,19 +1542,23 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, + "node_modules/bcrypt-pbkdf/node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, "node_modules/bignumber.js": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-4.1.0.tgz", @@ -1642,7 +1573,6 @@ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "license": "MIT", "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", @@ -1654,7 +1584,6 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -1665,7 +1594,6 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "license": "MIT", "dependencies": { "fill-range": "^7.0.1" }, @@ -1673,15 +1601,10 @@ "node": ">=8" } }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true, - "license": "BSD-2-Clause" - }, "node_modules/browserslist": { - "version": "4.20.2", + "version": "4.21.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz", + "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==", "dev": true, "funding": [ { @@ -1691,15 +1614,17 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001317", - "electron-to-chromium": "^1.4.84", - "escalade": "^3.1.1", - "node-releases": "^2.0.2", - "picocolors": "^1.0.0" + "caniuse-lite": "^1.0.30001489", + "electron-to-chromium": "^1.4.411", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" }, "bin": { "browserslist": "cli.js" @@ -1725,7 +1650,6 @@ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } @@ -1749,7 +1673,6 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -1759,13 +1682,12 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/buildcheck": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.3.tgz", - "integrity": "sha512-pziaA+p/wdVImfcbsZLNF32EiWyujlQLwolMqUQE8xpKNOH7KmZQaY8sXN7DGOEzPAElo9QTaeNRfGnf3iOJbA==", + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.6.tgz", + "integrity": "sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==", "dev": true, "optional": true, "engines": { @@ -1777,26 +1699,23 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, "node_modules/caniuse-lite": { - "version": "1.0.30001332", + "version": "1.0.30001492", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001492.tgz", + "integrity": "sha512-2efF8SAZwgAX1FJr87KWhvuJxnGJKOnctQa8xLOskAXNXq8oiuqgl6u1kk3fFpsp3GgvzlRjiK1sl63hNtFADw==", "dev": true, "funding": [ { @@ -1806,16 +1725,18 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } - ], - "license": "CC-BY-4.0" + ] }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -1832,7 +1753,6 @@ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } @@ -1841,31 +1761,41 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/ci-info": { - "version": "3.3.0", + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } }, "node_modules/cjs-module-lexer": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, "node_modules/co": { @@ -1873,7 +1803,6 @@ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, - "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -1883,15 +1812,13 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -1903,15 +1830,13 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, - "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -1923,29 +1848,24 @@ "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, "node_modules/cpu-features": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.4.tgz", - "integrity": "sha512-fKiZ/zp1mUwQbnzb9IghXtHtDoTMtNeb8oYGx6kX2SYfhnG0HNdBEBIzB9b5KlXu5DQPhfy3mInbBxFcgwAr3A==", + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.8.tgz", + "integrity": "sha512-BbHBvtYhUhksqTjr6bhNOjGgMnhwhGTQmOoZGD+K7BCaQDCuZl/Ve1ZxUSMRwVC4D/rkCPQ2MAIeYzrWyK7eEg==", "dev": true, "hasInstallScript": true, "optional": true, "dependencies": { - "buildcheck": "0.0.3", - "nan": "^2.15.0" + "buildcheck": "~0.0.6", + "nan": "^2.17.0" }, "engines": { "node": ">=10.0.0" @@ -1965,7 +1885,6 @@ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -1975,54 +1894,11 @@ "node": ">= 8" } }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true, - "license": "MIT" - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "license": "MIT", - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true, - "license": "MIT" - }, - "node_modules/data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -2035,33 +1911,17 @@ } } }, - "node_modules/decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", - "dev": true, - "license": "MIT" - }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true, - "license": "MIT" - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -2071,7 +1931,6 @@ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } @@ -2081,40 +1940,41 @@ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/diff-sequences": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "dev": true, - "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/docker-modem": { - "version": "3.0.3", + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-3.0.8.tgz", + "integrity": "sha512-f0ReSURdM3pcKPNS30mxOHSbaFLcknGmQjwSfmbcdOw1XWKXVhukM3NJHhr7NpY9BIyyWQb0EBo3KQvvuU5egQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "debug": "^4.1.1", "readable-stream": "^3.5.0", "split-ca": "^1.0.1", - "ssh2": "^1.4.0" + "ssh2": "^1.11.0" }, "engines": { "node": ">= 8.0" } }, "node_modules/dockerode": { - "version": "3.3.1", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-3.3.5.tgz", + "integrity": "sha512-/0YNa3ZDNeLr/tSckmD69+Gq+qVNhvKfAHNeZJBnp7EOP6RGKV8ORrJHkUn20So5wU+xxT7+1n5u8PjHbfjbSA==", "dev": true, - "license": "Apache-2.0", "dependencies": { + "@balena/dockerignore": "^1.0.2", "docker-modem": "^3.0.0", "tar-fs": "~2.0.1" }, @@ -2122,52 +1982,28 @@ "node": ">= 8.0" } }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "dev": true, - "license": "MIT", - "dependencies": { - "webidl-conversions": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=8" - } - }, "node_modules/electron-to-chromium": { - "version": "1.4.118", - "dev": true, - "license": "ISC" + "version": "1.4.417", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.417.tgz", + "integrity": "sha512-8rY8HdCxuSVY8wku3i/eDac4g1b4cSbruzocenrqBlzqruAZYHjQCHIjC66dLR9DXhEHTojsC4EjhZ8KmzwXqA==", + "dev": true }, "node_modules/elfy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/elfy/-/elfy-1.0.0.tgz", "integrity": "sha512-4Kp3AA94jC085IJox+qnvrZ3PudqTi4gQNvIoTZfJJ9IqkRuCoqP60vCVYlIg00c5aYusi5Wjh2bf0cHYt+6gQ==", "dev": true, - "license": "MIT", "dependencies": { "endian-reader": "^0.3.0" } }, "node_modules/emittery": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sindresorhus/emittery?sponsor=1" @@ -2177,15 +2013,13 @@ "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "license": "MIT", "dependencies": { "once": "^1.4.0" } @@ -2194,15 +2028,13 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/endian-reader/-/endian-reader-0.3.0.tgz", "integrity": "sha512-zPlHN59VLEjeJtpEU41ti/i7ZvTbwclvUN2M8anCsI3tOC/3mq6WNTJEKi49A5eLGvDkA0975LZb67Xwp7u4xQ==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } @@ -2212,7 +2044,6 @@ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -2222,40 +2053,15 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -2264,32 +2070,11 @@ "node": ">=4" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.x" } @@ -2299,7 +2084,6 @@ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -2328,41 +2112,32 @@ } }, "node_modules/expect": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } @@ -2372,7 +2147,6 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -2385,7 +2159,6 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -2395,7 +2168,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.14.9", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true, "funding": [ { @@ -2403,7 +2178,6 @@ "url": "https://github.com/sponsors/RubenVerborgh" } ], - "license": "MIT", "engines": { "node": ">=4.0" }, @@ -2414,11 +2188,10 @@ } }, "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, - "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -2432,44 +2205,53 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "license": "ISC" + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -2479,7 +2261,6 @@ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } @@ -2489,17 +2270,27 @@ "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.0.0" } }, + "node_modules/get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -2508,14 +2299,15 @@ } }, "node_modules/glob": { - "version": "7.2.0", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, @@ -2531,24 +2323,21 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true, - "license": "ISC" + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, - "license": "MIT", "dependencies": { "function-bind": "^1.1.1" }, @@ -2561,83 +2350,25 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-encoding": "^1.0.5" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true, - "license": "MIT" - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } + "dev": true }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=10.17.0" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -2656,15 +2387,13 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "BSD-3-Clause" + ] }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, - "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -2684,7 +2413,6 @@ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.19" } @@ -2694,7 +2422,6 @@ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, - "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -2704,20 +2431,19 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/is-core-module": { - "version": "2.9.0", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", "dev": true, - "license": "MIT", "dependencies": { "has": "^1.0.3" }, @@ -2730,7 +2456,6 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -2740,7 +2465,6 @@ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -2750,24 +2474,15 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.12.0" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true, - "license": "MIT" - }, "node_modules/is-retry-allowed": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-2.2.0.tgz", "integrity": "sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -2780,7 +2495,6 @@ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -2788,36 +2502,26 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true, - "license": "MIT" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -2829,12 +2533,20 @@ "node": ">=8" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", @@ -2849,7 +2561,6 @@ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", @@ -2860,9 +2571,10 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.4", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -2872,21 +2584,21 @@ } }, "node_modules/jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "version": "29.2.2", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.2.2.tgz", + "integrity": "sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/core": "^27.5.1", + "@jest/core": "^29.2.2", + "@jest/types": "^29.2.1", "import-local": "^3.0.2", - "jest-cli": "^27.5.1" + "jest-cli": "^29.2.2" }, "bin": { "jest": "bin/jest.js" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -2898,76 +2610,73 @@ } }, "node_modules/jest-changed-files": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", "execa": "^5.0.0", - "throat": "^6.0.1" + "p-limit": "^3.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-circus": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", - "expect": "^27.5.1", "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" + "stack-utils": "^2.0.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-cli": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", "prompts": "^2.0.1", - "yargs": "^16.2.0" + "yargs": "^17.3.1" }, "bin": { "jest": "bin/jest.js" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -2979,269 +2688,211 @@ } }, "node_modules/jest-config": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", - "glob": "^7.1.1", + "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", + "pretty-format": "^29.5.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { + "@types/node": "*", "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, "ts-node": { "optional": true } } }, "node_modules/jest-diff": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", "dev": true, - "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-each": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", + "@jest/types": "^29.5.0", "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-jsdom": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", "micromatch": "^4.0.4", - "walker": "^1.0.7" + "walker": "^1.0.8" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "optionalDependencies": { "fsevents": "^2.3.2" } }, - "node_modules/jest-jasmine2": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, "node_modules/jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", "dev": true, - "license": "MIT", "dependencies": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", + "@jest/types": "^29.5.0", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", + "pretty-format": "^29.5.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*" + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" }, @@ -3255,191 +2906,153 @@ } }, "node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, - "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", + "jest-haste-map": "^29.5.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", + "resolve.exports": "^2.0.0", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve-dependencies": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", "@types/node": "*", "chalk": "^4.0.0", - "emittery": "^0.8.1", + "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/core": "^7.7.2", + "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^27.5.1", + "expect": "^29.5.0", "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "pretty-format": "^29.5.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", + "@jest/types": "^29.5.0", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -3447,59 +3060,70 @@ "picomatch": "^2.2.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", + "@jest/types": "^29.5.0", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", + "jest-get-type": "^29.4.3", "leven": "^3.1.0", - "pretty-format": "^27.5.1" + "pretty-format": "^29.5.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", "dev": true, - "license": "MIT", "dependencies": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "jest-util": "^27.5.1", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", "string-length": "^4.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", + "jest-util": "^29.5.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-worker/node_modules/supports-color": { @@ -3507,7 +3131,6 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3522,8 +3145,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/js-xdr": { "version": "1.3.0", @@ -3538,7 +3160,7 @@ "node_modules/js-xdr/node_modules/long": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/long/-/long-2.4.0.tgz", - "integrity": "sha1-n6GAux2VAM3CnEFWdmoZleH0Uk8=", + "integrity": "sha512-ijUtjmO/n2A5PaosNG9ZGDsQ3vxJg7ZW8vsY8Kp0f2yIZWhSJvjmegV7t+9RPQKxKrvj8yKGehhS+po14hPLGQ==", "dev": true, "engines": { "node": ">=0.6" @@ -3549,7 +3171,6 @@ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, - "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -3558,79 +3179,11 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", - "dev": true, - "license": "MIT", - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsdom/node_modules/ws": { - "version": "7.5.7", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, @@ -3642,13 +3195,12 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/json5": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz", - "integrity": "sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "bin": { "json5": "lib/cli.js" @@ -3662,7 +3214,6 @@ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, - "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, @@ -3675,7 +3226,6 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -3685,38 +3235,21 @@ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -3728,40 +3261,33 @@ "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, "node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", - "dev": true, - "license": "Apache-2.0" + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "dev": true }, "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, - "license": "ISC", "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "node_modules/make-dir": { @@ -3769,7 +3295,6 @@ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, - "license": "MIT", "dependencies": { "semver": "^6.0.0" }, @@ -3780,6 +3305,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -3791,7 +3325,6 @@ "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" } @@ -3800,15 +3333,13 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "license": "MIT", "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" @@ -3822,7 +3353,6 @@ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -3832,7 +3362,6 @@ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, @@ -3845,7 +3374,6 @@ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -3855,7 +3383,6 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -3867,33 +3394,31 @@ "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/nan": { - "version": "2.15.0", + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", "dev": true, - "license": "MIT", "optional": true }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, "optional": true, "bin": { @@ -3906,20 +3431,19 @@ "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/node-releases": { - "version": "2.0.3", - "dev": true, - "license": "MIT" + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3929,7 +3453,6 @@ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -3937,17 +3460,11 @@ "node": ">=8" } }, - "node_modules/nwsapi": { - "version": "2.2.0", - "dev": true, - "license": "MIT" - }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "license": "ISC", "dependencies": { "wrappy": "1" } @@ -3957,7 +3474,6 @@ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -3968,35 +3484,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "license": "MIT", "dependencies": { - "p-try": "^2.0.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -4007,7 +3504,6 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -4015,12 +3511,26 @@ "node": ">=8" } }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -4030,7 +3540,6 @@ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -4044,30 +3553,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - } - }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -4077,7 +3567,6 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4087,7 +3576,6 @@ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -4096,22 +3584,19 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.6" }, @@ -4124,7 +3609,6 @@ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } @@ -4134,7 +3618,6 @@ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, @@ -4143,37 +3626,26 @@ } }, "node_modules/pngjs": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", - "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-7.0.0.tgz", + "integrity": "sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=14.19.0" } }, "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dev": true, - "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1", + "@jest/schemas": "^29.4.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/pretty-format/node_modules/ansi-styles": { @@ -4181,7 +3653,6 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -4189,22 +3660,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, - "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -4214,9 +3674,9 @@ } }, "node_modules/protobufjs": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz", - "integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -4230,56 +3690,57 @@ "@protobufjs/path": "^1.1.2", "@protobufjs/pool": "^1.1.0", "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", "@types/node": ">=13.7.0", - "long": "^4.0.0" + "long": "^5.0.0" }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" + "engines": { + "node": ">=12.0.0" } }, - "node_modules/psl": { - "version": "1.8.0", - "dev": true, - "license": "MIT" + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true }, "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] }, "node_modules/randombytes": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.3.tgz", "integrity": "sha512-lDVjxQQFoCG1jcrP06LNo2lbWp4QTShEXnhActFBwYuHprllQV6VUpwreApsYqCgD+N1mHoqJ/BI/4eV4R2GYg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/randomstring": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/randomstring/-/randomstring-1.2.2.tgz", - "integrity": "sha512-9FByiB8guWZLbE+akdQiWE3I1I6w7Vn5El4o4y7o5bWQ6DWPcEOp+aLG7Jezc8BVRKKpgJd2ppRX0jnKu1YCfg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/randomstring/-/randomstring-1.3.0.tgz", + "integrity": "sha512-gY7aQ4i1BgwZ8I1Op4YseITAyiDiajeZOPQUbIq9TPGPhUm5FX59izIaOpmKbME1nmnEiABf28d9K2VSii6BBg==", "dev": true, - "license": "MIT", "dependencies": { - "array-uniq": "1.0.2", "randombytes": "2.0.3" }, "bin": { @@ -4290,18 +3751,16 @@ } }, "node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true, - "license": "MIT" + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -4312,28 +3771,27 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true, - "license": "MIT" + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/resolve": { - "version": "1.22.0", + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", "dev": true, - "license": "MIT", "dependencies": { - "is-core-module": "^2.8.1", + "is-core-module": "^2.11.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -4349,7 +3807,6 @@ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, @@ -4362,43 +3819,24 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "tslib": "^1.9.0" }, @@ -4407,42 +3845,64 @@ } }, "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "license": "MIT" + "dev": true }, - "node_modules/saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dev": true, - "license": "ISC", "dependencies": { - "xmlchars": "^2.2.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/sha.js": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", @@ -4461,7 +3921,6 @@ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -4474,7 +3933,6 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -4483,30 +3941,27 @@ "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/sodium-native": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sodium-native/-/sodium-native-3.3.0.tgz", - "integrity": "sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/sodium-native/-/sodium-native-3.4.1.tgz", + "integrity": "sha512-PaNN/roiFWzVVTL6OqjzYct38NSXewdl2wz8SRB51Br/MLIJPrbM3XexhVWkq7D3UWMysfrhKVf1v1phZq6MeQ==", "dev": true, "hasInstallScript": true, "optional": true, @@ -4519,17 +3974,15 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -4539,38 +3992,37 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz", "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/ssh2": { - "version": "1.9.0", + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.13.0.tgz", + "integrity": "sha512-CIZBFRRY1y9mAZSqBGFE4EB4dNJad2ysT2PqO8OpkiI3UTB/gUZwE5EaN16qVyQ6s/M7EgC/iaV/MnjdlvnuzA==", "dev": true, "hasInstallScript": true, "dependencies": { - "asn1": "^0.2.4", + "asn1": "^0.2.6", "bcrypt-pbkdf": "^1.0.2" }, "engines": { "node": ">=10.16.0" }, "optionalDependencies": { - "cpu-features": "~0.0.4", - "nan": "^2.15.0" + "cpu-features": "~0.0.7", + "nan": "^2.17.0" } }, "node_modules/stack-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", - "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, - "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -4579,9 +4031,9 @@ } }, "node_modules/stellar-base": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/stellar-base/-/stellar-base-8.1.0.tgz", - "integrity": "sha512-sQaLZZ2qaFUokOtFVfimFNCCZuX5QEYV2Zxa4Ve+br8cdv1pl6AOaAlpyjs0T7E4V3FmvLi5MJkUQ50i0yHfmA==", + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/stellar-base/-/stellar-base-8.2.2.tgz", + "integrity": "sha512-YVCIuJXU1bPn+vU0ded+g0D99DcpYXH9CEXfpYEDc4Gf04h65YjOVhGojQBm1hqVHq3rKT7m1tgfNACkU84FTA==", "dev": true, "dependencies": { "base32.js": "^0.1.0", @@ -4596,49 +4048,20 @@ "sodium-native": "^3.3.0" } }, - "node_modules/stellar-base/node_modules/tweetnacl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", - "dev": true - }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" @@ -4652,7 +4075,6 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -4667,7 +4089,6 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -4680,7 +4101,6 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -4690,7 +4110,6 @@ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -4700,7 +4119,6 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -4713,7 +4131,6 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4721,26 +4138,11 @@ "node": ">=8" } }, - "node_modules/supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -4748,19 +4150,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true, - "license": "MIT" - }, "node_modules/tar-fs": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.0.1.tgz", "integrity": "sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==", "dev": true, - "license": "MIT", "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", @@ -4773,7 +4167,6 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, - "license": "MIT", "dependencies": { "bl": "^4.0.3", "end-of-stream": "^1.4.1", @@ -4785,29 +4178,11 @@ "node": ">=6" } }, - "node_modules/terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", @@ -4821,26 +4196,17 @@ "resolved": "../tests_common_js", "link": true }, - "node_modules/throat": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", - "dev": true, - "license": "MIT" - }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true, - "license": "BSD-3-Clause" + "dev": true }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } @@ -4850,7 +4216,6 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -4858,77 +4223,39 @@ "node": ">=8.0" } }, - "node_modules/tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.1.2" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ts-jest": { - "version": "27.1.4", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz", - "integrity": "sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==", + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", "dev": true, "dependencies": { "bs-logger": "0.x", "fast-json-stable-stringify": "2.x", - "jest-util": "^27.0.0", - "json5": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", "semver": "7.x", - "yargs-parser": "20.x" + "yargs-parser": "^21.0.1" }, "bin": { "ts-jest": "cli.js" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", - "@types/jest": "^27.0.0", - "babel-jest": ">=27.0.0 <28", - "jest": "^27.0.0", - "typescript": ">=3.8 <5.0" + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" }, "peerDependenciesMeta": { "@babel/core": { "optional": true }, - "@types/jest": { + "@jest/types": { "optional": true }, "babel-jest": { @@ -4939,54 +4266,23 @@ } } }, - "node_modules/ts-jest/node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true, - "license": "0BSD" + "dev": true }, "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true, - "license": "Unlicense" - }, - "node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", + "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", + "dev": true }, "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } @@ -4996,7 +4292,6 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -5004,20 +4299,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, "node_modules/typescript": { - "version": "4.6.3", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true, - "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -5031,139 +4317,80 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.0.0" } }, - "node_modules/util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "inherits": "2.0.3" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true, - "license": "MIT" - }, - "node_modules/util/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/v8-to-istanbul": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", - "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", "dev": true, - "license": "ISC", "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" + "convert-source-map": "^1.6.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/source-map": { - "version": "0.7.3", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">= 8" - } - }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, - "node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - } + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" } }, - "node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=10.4" - } - }, - "node_modules/whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "dev": true, - "license": "MIT", - "dependencies": { - "iconv-lite": "0.4.24" - } - }, - "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", - "dev": true, - "license": "MIT" - }, - "node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -5174,22 +4401,11 @@ "node": ">= 8" } }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -5206,30 +4422,28 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true, - "license": "ISC" + "dev": true }, "node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, "node_modules/ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "dev": true, - "license": "MIT", "engines": { - "node": ">=10.0.0" + "node": ">=8.3.0" }, "peerDependencies": { "bufferutil": "^4.0.1", @@ -5244,3813 +4458,59 @@ } } }, - "node_modules/xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true, - "license": "MIT" - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, - "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true }, "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "license": "MIT", "dependencies": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "string-width": "^4.2.0", + "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, - "license": "ISC", "engines": { - "node": ">=10" - } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.1.2", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.0" - } - }, - "@babel/code-frame": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/highlight": "^7.16.7" - } - }, - "@babel/compat-data": { - "version": "7.17.7", - "dev": true - }, - "@babel/core": { - "version": "7.17.9", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.9", - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helpers": "^7.17.9", - "@babel/parser": "^7.17.9", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.9", - "@babel/types": "^7.17.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "node": ">=12" } }, - "@babel/generator": { - "version": "7.17.9", + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "requires": { - "@babel/types": "^7.17.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "engines": { + "node": ">=10" }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "dev": true - } - } - }, - "@babel/helper-compilation-targets": { - "version": "7.17.7", - "dev": true, - "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-validator-option": "^7.16.7", - "browserslist": "^4.17.5", - "semver": "^6.3.0" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-function-name": { - "version": "7.17.9", - "dev": true, - "requires": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-module-imports": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-module-transforms": { - "version": "7.17.7", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.3", - "@babel/types": "^7.17.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } - }, - "@babel/helper-plugin-utils": { - "version": "7.16.7", - "dev": true - }, - "@babel/helper-simple-access": { - "version": "7.17.7", - "dev": true, - "requires": { - "@babel/types": "^7.17.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.16.7", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.16.7", - "dev": true - }, - "@babel/helpers": { - "version": "7.17.9", - "dev": true, - "requires": { - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.9", - "@babel/types": "^7.17.0" - } - }, - "@babel/highlight": { - "version": "7.17.9", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/parser": { - "version": "7.17.9", - "dev": true - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.16.7" - } - }, - "@babel/runtime": { - "version": "7.17.9", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" - } - }, - "@babel/traverse": { - "version": "7.17.9", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.9", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.17.9", - "@babel/types": "^7.17.0", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.17.0", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "@grpc/grpc-js": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.7.tgz", - "integrity": "sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==", - "dev": true, - "requires": { - "@grpc/proto-loader": "^0.6.4", - "@types/node": ">=12.12.47" - } - }, - "@grpc/proto-loader": { - "version": "0.6.9", - "dev": true, - "requires": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^6.10.0", - "yargs": "^16.2.0" - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - } - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true - }, - "@jest/console": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", - "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0" - } - }, - "@jest/core": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", - "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", - "dev": true, - "requires": { - "@jest/console": "^27.5.1", - "@jest/reporters": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^27.5.1", - "jest-config": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-resolve-dependencies": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "jest-watcher": "^27.5.1", - "micromatch": "^4.0.4", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "@jest/environment": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", - "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", - "dev": true, - "requires": { - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1" - } - }, - "@jest/fake-timers": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", - "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@sinonjs/fake-timers": "^8.0.1", - "@types/node": "*", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - } - }, - "@jest/globals": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", - "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/types": "^27.5.1", - "expect": "^27.5.1" - } - }, - "@jest/reporters": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", - "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-haste-map": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.1.0" - } - }, - "@jest/source-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", - "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", - "dev": true, - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9", - "source-map": "^0.6.0" - } - }, - "@jest/test-result": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", - "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", - "dev": true, - "requires": { - "@jest/console": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", - "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", - "dev": true, - "requires": { - "@jest/test-result": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-runtime": "^27.5.1" - } - }, - "@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - } - }, - "@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.0.6", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.11", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@ledgerhq/devices": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/devices/-/devices-6.27.1.tgz", - "integrity": "sha512-jX++oy89jtv7Dp2X6gwt3MMkoajel80JFWcdc0HCouwDsV1mVJ3SQdwl/bQU0zd8HI6KebvUP95QTwbQLLK/RQ==", - "dev": true, - "requires": { - "@ledgerhq/errors": "^6.10.0", - "@ledgerhq/logs": "^6.10.0", - "rxjs": "6", - "semver": "^7.3.5" - }, - "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@ledgerhq/errors": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.0.tgz", - "integrity": "sha512-fQFnl2VIXh9Yd41lGjReCeK+Q2hwxQJvLZfqHnKqWapTz68NHOv5QcI0OHuZVNEbv0xhgdLhi5b65kgYeQSUVg==", - "dev": true - }, - "@ledgerhq/hw-app-str": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/hw-app-str/-/hw-app-str-6.27.1.tgz", - "integrity": "sha512-cAtl6UKdD/KThcEnsCDn99XZtNxMNcMc6Wcbk7L7h/lmF8zgl6b8fjaA9yPvEZZgOfu6CQ8NTjf4Mp6BHMx4lQ==", - "dev": true, - "requires": { - "@ledgerhq/hw-transport": "^6.27.1", - "base32.js": "^0.1.0", - "sha.js": "^2.3.6", - "tweetnacl": "^1.0.3" - }, - "dependencies": { - "tweetnacl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", - "dev": true - } - } - }, - "@ledgerhq/hw-transport": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.1.tgz", - "integrity": "sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==", - "dev": true, - "requires": { - "@ledgerhq/devices": "^6.27.1", - "@ledgerhq/errors": "^6.10.0", - "events": "^3.3.0" - } - }, - "@ledgerhq/hw-transport-http": { - "version": "6.27.1", - "resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport-http/-/hw-transport-http-6.27.1.tgz", - "integrity": "sha512-494Zk5jvHcasa5xjZW7l5g+QqJqLlZpuV/RvlIWnKHdVdrBWYvG/1VukQfJQPgbK3WHtt/9WhrnJoLI+xv2PrA==", - "dev": true, - "requires": { - "@ledgerhq/errors": "^6.10.0", - "@ledgerhq/hw-transport": "^6.27.1", - "@ledgerhq/logs": "^6.10.0", - "axios": "^0.26.1", - "ws": "8.5.0" - } - }, - "@ledgerhq/logs": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.0.tgz", - "integrity": "sha512-lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw==", - "dev": true - }, - "@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", - "dev": true - }, - "@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "dev": true - }, - "@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", - "dev": true - }, - "@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", - "dev": true - }, - "@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "dev": true, - "requires": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "dev": true - }, - "@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", - "dev": true - }, - "@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", - "dev": true - }, - "@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", - "dev": true - }, - "@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", - "dev": true - }, - "@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", - "dev": true, - "requires": { - "@sinonjs/commons": "^1.7.0" - } - }, - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, - "@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.17.0", - "dev": true, - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "27.4.1", - "dev": true, - "requires": { - "jest-matcher-utils": "^27.0.0", - "pretty-format": "^27.0.0" - } - }, - "@types/long": { - "version": "4.0.1", - "dev": true - }, - "@types/node": { - "version": "17.0.25", - "dev": true - }, - "@types/prettier": { - "version": "2.6.0", - "dev": true - }, - "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "@zondax/zemu": { - "version": "0.33.1", - "resolved": "https://mirrors.cloud.tencent.com/npm/@zondax%2fzemu/-/zemu-0.33.1.tgz", - "integrity": "sha512-6BJ8eXim6cXyY/idhSLy18iCN170BxCGBHU+BiXlC4dfWCsrIqG+mX0g3CGyHvFP9Cs6ruxrEm7UQbov639ttA==", - "dev": true, - "requires": { - "@grpc/grpc-js": "^1.5.5", - "@grpc/proto-loader": "^0.6.9", - "@ledgerhq/hw-transport": "^6.24.1", - "@ledgerhq/hw-transport-http": "^6.24.1", - "axios": "^0.27.2", - "axios-retry": "^3.2.0", - "dockerode": "^3.3.1", - "elfy": "^1.0.0", - "fs-extra": "^10.0.0", - "get-port": "^5.1.1", - "path": "^0.12.7", - "pngjs": "^6.0.0", - "randomstring": "^1.2.1" - }, - "dependencies": { - "axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", - "dev": true, - "requires": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" - } - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "get-port": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", - "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true - } - } - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, - "acorn": { - "version": "8.7.0", - "dev": true - }, - "acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - } - } - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "array-uniq": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz", - "integrity": "sha512-GVYjmpL05al4dNlKJm53mKE4w9OOLiuVHWorsIA3YVz+Hu0hcn6PtE3Ydl0EqU7v+7ABC4mjjWsnLUxbpno+CA==", - "dev": true - }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "axios": { - "version": "0.26.1", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", - "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", - "dev": true, - "requires": { - "follow-redirects": "^1.14.8" - } - }, - "axios-retry": { - "version": "3.2.4", - "dev": true, - "requires": { - "@babel/runtime": "^7.15.4", - "is-retry-allowed": "^2.2.0" - } - }, - "babel-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", - "dev": true, - "requires": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^27.5.1", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "base32.js": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/base32.js/-/base32.js-0.1.0.tgz", - "integrity": "sha1-tYLexpPC8R6JPPBk7mrFthMaIgI=", - "dev": true - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bignumber.js": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-4.1.0.tgz", - "integrity": "sha512-eJzYkFYy9L4JzXsbymsFn3p54D+llV27oTQ+ziJG7WFRheJcNZilgVXMG0LoZtlQSKBsJdWtLFqOD0u+U0jZKA==", - "dev": true - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true - }, - "browserslist": { - "version": "4.20.2", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001317", - "electron-to-chromium": "^1.4.84", - "escalade": "^3.1.1", - "node-releases": "^2.0.2", - "picocolors": "^1.0.0" - } - }, - "bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "buildcheck": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.3.tgz", - "integrity": "sha512-pziaA+p/wdVImfcbsZLNF32EiWyujlQLwolMqUQE8xpKNOH7KmZQaY8sXN7DGOEzPAElo9QTaeNRfGnf3iOJbA==", - "dev": true, - "optional": true - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001332", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "ci-info": { - "version": "3.3.0", - "dev": true - }, - "cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", - "dev": true - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cpu-features": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.4.tgz", - "integrity": "sha512-fKiZ/zp1mUwQbnzb9IghXtHtDoTMtNeb8oYGx6kX2SYfhnG0HNdBEBIzB9b5KlXu5DQPhfy3mInbBxFcgwAr3A==", - "dev": true, - "optional": true, - "requires": { - "buildcheck": "0.0.3", - "nan": "^2.15.0" - } - }, - "crc": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", - "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", - "dev": true, - "requires": { - "buffer": "^5.1.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true - }, - "cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "requires": { - "cssom": "~0.3.6" - }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - } - } - }, - "data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "dev": true, - "requires": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", - "dev": true - }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", - "dev": true - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true - }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true - }, - "diff-sequences": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", - "dev": true - }, - "docker-modem": { - "version": "3.0.3", - "dev": true, - "requires": { - "debug": "^4.1.1", - "readable-stream": "^3.5.0", - "split-ca": "^1.0.1", - "ssh2": "^1.4.0" - } - }, - "dockerode": { - "version": "3.3.1", - "dev": true, - "requires": { - "docker-modem": "^3.0.0", - "tar-fs": "~2.0.1" - } - }, - "domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "dev": true, - "requires": { - "webidl-conversions": "^5.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true - } - } - }, - "electron-to-chromium": { - "version": "1.4.118", - "dev": true - }, - "elfy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/elfy/-/elfy-1.0.0.tgz", - "integrity": "sha512-4Kp3AA94jC085IJox+qnvrZ3PudqTi4gQNvIoTZfJJ9IqkRuCoqP60vCVYlIg00c5aYusi5Wjh2bf0cHYt+6gQ==", - "dev": true, - "requires": { - "endian-reader": "^0.3.0" - } - }, - "emittery": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "endian-reader": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/endian-reader/-/endian-reader-0.3.0.tgz", - "integrity": "sha512-zPlHN59VLEjeJtpEU41ti/i7ZvTbwclvUN2M8anCsI3tOC/3mq6WNTJEKi49A5eLGvDkA0975LZb67Xwp7u4xQ==", - "dev": true - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true - }, - "escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true - }, - "expect": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "follow-redirects": { - "version": "1.14.9", - "dev": true - }, - "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "glob": { - "version": "7.2.0", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "dev": true, - "requires": { - "whatwg-encoding": "^1.0.5" - } - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "is-core-module": { - "version": "2.9.0", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "is-retry-allowed": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-2.2.0.tgz", - "integrity": "sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - } - }, - "istanbul-reports": { - "version": "3.1.4", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", - "dev": true, - "requires": { - "@jest/core": "^27.5.1", - "import-local": "^3.0.2", - "jest-cli": "^27.5.1" - } - }, - "jest-changed-files": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "execa": "^5.0.0", - "throat": "^6.0.1" - } - }, - "jest-circus": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" - } - }, - "jest-cli": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", - "dev": true, - "requires": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - } - }, - "jest-config": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", - "dev": true, - "requires": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - } - }, - "jest-diff": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - } - }, - "jest-docblock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", - "dev": true, - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" - } - }, - "jest-environment-jsdom": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" - } - }, - "jest-environment-node": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - } - }, - "jest-get-type": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", - "dev": true - }, - "jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - } - }, - "jest-jasmine2": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" - } - }, - "jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", - "dev": true, - "requires": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - } - }, - "jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - } - }, - "jest-message-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*" - } - }, - "jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", - "dev": true, - "requires": {} - }, - "jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "dev": true - }, - "jest-resolve": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - } - }, - "jest-resolve-dependencies": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" - } - }, - "jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", - "dev": true, - "requires": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" - } - }, - "jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - } - }, - "jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dev": true, - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - } - }, - "jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", - "dev": true, - "requires": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" - }, - "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - } - }, - "jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", - "dev": true, - "requires": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" - } - }, - "jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-xdr": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/js-xdr/-/js-xdr-1.3.0.tgz", - "integrity": "sha512-fjLTm2uBtFvWsE3l2J14VjTuuB8vJfeTtYuNS7LiLHDWIX2kt0l1pqq9334F8kODUkKPMuULjEcbGbkFFwhx5g==", - "dev": true, - "requires": { - "lodash": "^4.17.5", - "long": "^2.2.3" - }, - "dependencies": { - "long": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/long/-/long-2.4.0.tgz", - "integrity": "sha1-n6GAux2VAM3CnEFWdmoZleH0Uk8=", - "dev": true - } - } - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", - "dev": true, - "requires": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" - }, - "dependencies": { - "ws": { - "version": "7.5.7", - "dev": true, - "requires": {} - } - } - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json5": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz", - "integrity": "sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", - "dev": true - }, - "long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "requires": { - "tmpl": "1.0.5" - } - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nan": { - "version": "2.15.0", - "dev": true, - "optional": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==", - "dev": true, - "optional": true - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node-releases": { - "version": "2.0.3", - "dev": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "nwsapi": { - "version": "2.2.0", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, - "path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", - "dev": true, - "requires": { - "process": "^0.11.1", - "util": "^0.10.3" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "pngjs": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", - "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "dev": true - }, - "pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - } - } - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true - }, - "prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "protobufjs": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz", - "integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==", - "dev": true, - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - } - }, - "psl": { - "version": "1.8.0", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "randombytes": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.3.tgz", - "integrity": "sha512-lDVjxQQFoCG1jcrP06LNo2lbWp4QTShEXnhActFBwYuHprllQV6VUpwreApsYqCgD+N1mHoqJ/BI/4eV4R2GYg==", - "dev": true - }, - "randomstring": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/randomstring/-/randomstring-1.2.2.tgz", - "integrity": "sha512-9FByiB8guWZLbE+akdQiWE3I1I6w7Vn5El4o4y7o5bWQ6DWPcEOp+aLG7Jezc8BVRKKpgJd2ppRX0jnKu1YCfg==", - "dev": true, - "requires": { - "array-uniq": "1.0.2", - "randombytes": "2.0.3" - } - }, - "react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true - }, - "resolve": { - "version": "1.22.0", - "dev": true, - "requires": { - "is-core-module": "^2.8.1", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "dev": true, - "requires": { - "xmlchars": "^2.2.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "sodium-native": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sodium-native/-/sodium-native-3.3.0.tgz", - "integrity": "sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==", - "dev": true, - "optional": true, - "requires": { - "node-gyp-build": "^4.3.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "split-ca": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz", - "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==", - "dev": true - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "ssh2": { - "version": "1.9.0", - "dev": true, - "requires": { - "asn1": "^0.2.4", - "bcrypt-pbkdf": "^1.0.2", - "cpu-features": "~0.0.4", - "nan": "^2.15.0" - } - }, - "stack-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", - "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", - "dev": true, - "requires": { - "escape-string-regexp": "^2.0.0" - } - }, - "stellar-base": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/stellar-base/-/stellar-base-8.1.0.tgz", - "integrity": "sha512-sQaLZZ2qaFUokOtFVfimFNCCZuX5QEYV2Zxa4Ve+br8cdv1pl6AOaAlpyjs0T7E4V3FmvLi5MJkUQ50i0yHfmA==", - "dev": true, - "requires": { - "base32.js": "^0.1.0", - "bignumber.js": "^4.0.0", - "crc": "^3.5.0", - "js-xdr": "^1.1.3", - "lodash": "^4.17.21", - "sha.js": "^2.3.6", - "sodium-native": "^3.3.0", - "tweetnacl": "^1.0.3" - }, - "dependencies": { - "tweetnacl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", - "dev": true - } - } - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } - } - }, - "string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dev": true, - "requires": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, - "tar-fs": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.0.1.tgz", - "integrity": "sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==", - "dev": true, - "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.0.0" - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - } - }, - "terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - } - }, - "test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - } - }, - "tests-common": { - "version": "file:../tests_common_js", - "requires": { - "@types/node": "^17.0.29", - "stellar-base": "^8.1.0", - "typescript": "^4.6.3" - } - }, - "throat": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", - "dev": true - }, - "tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "dev": true, - "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.1.2" - }, - "dependencies": { - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - } - } - }, - "tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - }, - "ts-jest": { - "version": "27.1.4", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz", - "integrity": "sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==", - "dev": true, - "requires": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^27.0.0", - "json5": "2.x", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "20.x" - }, - "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true - }, - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "typescript": { - "version": "4.6.3", - "dev": true - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dev": true, - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "v8-to-istanbul": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", - "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "dev": true - } - } - }, - "w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "dev": true, - "requires": { - "browser-process-hrtime": "^1.0.0" - } - }, - "w3c-xmlserializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "dev": true, - "requires": { - "xml-name-validator": "^3.0.0" - } - }, - "walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "requires": { - "makeerror": "1.0.12" - } - }, - "webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "dev": true - }, - "whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "dev": true, - "requires": { - "iconv-lite": "0.4.24" - } - }, - "whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", - "dev": true - }, - "whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dev": true, - "requires": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", - "dev": true, - "requires": {} - }, - "xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "dev": true - }, - "xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true } } } diff --git a/tests_zemu/package.json b/tests_zemu/package.json index 6e2b4f60..1aa7215e 100644 --- a/tests_zemu/package.json +++ b/tests_zemu/package.json @@ -12,12 +12,13 @@ }, "devDependencies": { "@ledgerhq/hw-app-str": "^6.27.1", - "@types/jest": "^27.4.1", - "@zondax/zemu": "0.33.1", - "jest": "^27.5.1", + "@ledgerhq/hw-transport-http": "^6.28.3", + "@types/jest": "^29.2.1", + "@zondax/zemu": "^0.44.1", + "jest": "29.2.2", "stellar-base": "^8.1.0", "tests-common": "file:../tests_common_js", - "ts-jest": "^27.1.4", - "typescript": "^4.6.3" + "ts-jest": "^29.0.3", + "typescript": "^4.5.3" } -} \ No newline at end of file +} diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00001.png new file mode 100644 index 00000000..6bf87ccc Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00002.png new file mode 100644 index 00000000..a7e72c09 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00003.png new file mode 100644 index 00000000..22597384 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00004.png new file mode 100644 index 00000000..660d9bd8 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00005.png new file mode 100644 index 00000000..e4759295 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00006.png new file mode 100644 index 00000000..f5ad669a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00007.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00007.png new file mode 100644 index 00000000..74c1121e Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00007.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00008.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00008.png new file mode 100644 index 00000000..32f595ca Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00008.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00009.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00009.png new file mode 100644 index 00000000..94716c0a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00009.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00010.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00010.png new file mode 100644 index 00000000..25ba3f59 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00010.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00011.png b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00011.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-hide-sequence/00011.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00001.png new file mode 100644 index 00000000..ce5242a1 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00002.png new file mode 100644 index 00000000..cf3a6f5c Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00003.png new file mode 100644 index 00000000..18910df0 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00004.png new file mode 100644 index 00000000..8e14c0a3 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00005.png new file mode 100644 index 00000000..abbafeed Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00006.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00001.png new file mode 100644 index 00000000..f9b9fd9c Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png new file mode 100644 index 00000000..985c509b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png new file mode 100644 index 00000000..18910df0 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png new file mode 100644 index 00000000..8e14c0a3 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00005.png new file mode 100644 index 00000000..abbafeed Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00001.png new file mode 100644 index 00000000..3e206b50 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png new file mode 100644 index 00000000..72b61e3c Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png new file mode 100644 index 00000000..f10626ea Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png new file mode 100644 index 00000000..53d6ad80 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00005.png new file mode 100644 index 00000000..abbafeed Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00001.png new file mode 100644 index 00000000..6bf87ccc Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00002.png new file mode 100644 index 00000000..a7e72c09 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00003.png new file mode 100644 index 00000000..22597384 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00004.png new file mode 100644 index 00000000..660d9bd8 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00005.png new file mode 100644 index 00000000..e4759295 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00006.png new file mode 100644 index 00000000..f5ad669a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00007.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00007.png new file mode 100644 index 00000000..74c1121e Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00007.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00008.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00008.png new file mode 100644 index 00000000..32f595ca Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00008.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00009.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00009.png new file mode 100644 index 00000000..94716c0a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00009.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00010.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00010.png new file mode 100644 index 00000000..25ba3f59 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00010.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-reject/00011.png b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00011.png new file mode 100644 index 00000000..babad989 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-reject/00011.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00001.png new file mode 100644 index 00000000..a5da60ad Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00002.png new file mode 100644 index 00000000..5b533763 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00003.png new file mode 100644 index 00000000..b2579bf7 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00004.png new file mode 100644 index 00000000..660d9bd8 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00005.png new file mode 100644 index 00000000..e4759295 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00006.png new file mode 100644 index 00000000..f5ad669a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00007.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00007.png new file mode 100644 index 00000000..74c1121e Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00007.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00008.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00008.png new file mode 100644 index 00000000..32f595ca Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00008.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00009.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00009.png new file mode 100644 index 00000000..94716c0a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00009.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00010.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00010.png new file mode 100644 index 00000000..25ba3f59 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00010.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00011.png b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00011.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx-with-muxed-fee-source/00011.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00000.png b/tests_zemu/snapshots/stax-fee-bump-tx/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00000.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00001.png b/tests_zemu/snapshots/stax-fee-bump-tx/00001.png new file mode 100644 index 00000000..6bf87ccc Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00001.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00002.png b/tests_zemu/snapshots/stax-fee-bump-tx/00002.png new file mode 100644 index 00000000..a7e72c09 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00002.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00003.png b/tests_zemu/snapshots/stax-fee-bump-tx/00003.png new file mode 100644 index 00000000..22597384 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00003.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00004.png b/tests_zemu/snapshots/stax-fee-bump-tx/00004.png new file mode 100644 index 00000000..660d9bd8 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00004.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00005.png b/tests_zemu/snapshots/stax-fee-bump-tx/00005.png new file mode 100644 index 00000000..e4759295 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00005.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00006.png b/tests_zemu/snapshots/stax-fee-bump-tx/00006.png new file mode 100644 index 00000000..f5ad669a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00006.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00007.png b/tests_zemu/snapshots/stax-fee-bump-tx/00007.png new file mode 100644 index 00000000..74c1121e Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00007.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00008.png b/tests_zemu/snapshots/stax-fee-bump-tx/00008.png new file mode 100644 index 00000000..32f595ca Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00008.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00009.png b/tests_zemu/snapshots/stax-fee-bump-tx/00009.png new file mode 100644 index 00000000..94716c0a Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00009.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00010.png b/tests_zemu/snapshots/stax-fee-bump-tx/00010.png new file mode 100644 index 00000000..25ba3f59 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00010.png differ diff --git a/tests_zemu/snapshots/stax-fee-bump-tx/00011.png b/tests_zemu/snapshots/stax-fee-bump-tx/00011.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-fee-bump-tx/00011.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-approve/00000.png b/tests_zemu/snapshots/stax-hash-signing-approve/00000.png new file mode 100644 index 00000000..b2880ff7 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-approve/00000.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-approve/00001.png b/tests_zemu/snapshots/stax-hash-signing-approve/00001.png new file mode 100644 index 00000000..338e2e6a Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-approve/00001.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-approve/00002.png b/tests_zemu/snapshots/stax-hash-signing-approve/00002.png new file mode 100644 index 00000000..86481b75 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-approve/00002.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-approve/00003.png b/tests_zemu/snapshots/stax-hash-signing-approve/00003.png new file mode 100644 index 00000000..af68500d Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-approve/00003.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-approve/00004.png b/tests_zemu/snapshots/stax-hash-signing-approve/00004.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-approve/00004.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-approve/00005.png b/tests_zemu/snapshots/stax-hash-signing-approve/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-approve/00005.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-reject/00000.png b/tests_zemu/snapshots/stax-hash-signing-reject/00000.png new file mode 100644 index 00000000..b2880ff7 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-reject/00000.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-reject/00001.png b/tests_zemu/snapshots/stax-hash-signing-reject/00001.png new file mode 100644 index 00000000..338e2e6a Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-reject/00001.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-reject/00002.png b/tests_zemu/snapshots/stax-hash-signing-reject/00002.png new file mode 100644 index 00000000..86481b75 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-reject/00002.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-reject/00003.png b/tests_zemu/snapshots/stax-hash-signing-reject/00003.png new file mode 100644 index 00000000..af68500d Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-reject/00003.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-reject/00004.png b/tests_zemu/snapshots/stax-hash-signing-reject/00004.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-reject/00004.png differ diff --git a/tests_zemu/snapshots/stax-hash-signing-reject/00005.png b/tests_zemu/snapshots/stax-hash-signing-reject/00005.png new file mode 100644 index 00000000..babad989 Binary files /dev/null and b/tests_zemu/snapshots/stax-hash-signing-reject/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00000.png b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00001.png b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00002.png b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00002.png new file mode 100644 index 00000000..6c0e247c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00003.png b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00003.png new file mode 100644 index 00000000..66e04549 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00004.png b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00005.png b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge/00000.png b/tests_zemu/snapshots/stax-op-account-merge/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge/00001.png b/tests_zemu/snapshots/stax-op-account-merge/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge/00002.png b/tests_zemu/snapshots/stax-op-account-merge/00002.png new file mode 100644 index 00000000..6c0e247c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge/00003.png b/tests_zemu/snapshots/stax-op-account-merge/00003.png new file mode 100644 index 00000000..fac23323 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge/00004.png b/tests_zemu/snapshots/stax-op-account-merge/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-account-merge/00005.png b/tests_zemu/snapshots/stax-op-account-merge/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-account-merge/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00000.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00001.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00002.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00002.png new file mode 100644 index 00000000..f818ce64 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00003.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00003.png new file mode 100644 index 00000000..e32b0da8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00004.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00005.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize-to-maintain-liabilities/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize/00000.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize/00001.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize/00002.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00002.png new file mode 100644 index 00000000..f818ce64 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize/00003.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00003.png new file mode 100644 index 00000000..2ff80b75 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize/00004.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-authorize/00005.png b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-authorize/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00000.png b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00001.png b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00002.png b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00002.png new file mode 100644 index 00000000..f818ce64 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00003.png b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00003.png new file mode 100644 index 00000000..e25d2c36 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00004.png b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00005.png b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-allow-trust-deauthorize/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00000.png b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00001.png b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00002.png b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00002.png new file mode 100644 index 00000000..8ed585a2 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00003.png b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00004.png b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-begin-sponsoring-future-reserves/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-bump-sequence/00000.png b/tests_zemu/snapshots/stax-op-bump-sequence/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-bump-sequence/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-bump-sequence/00001.png b/tests_zemu/snapshots/stax-op-bump-sequence/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-bump-sequence/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-bump-sequence/00002.png b/tests_zemu/snapshots/stax-op-bump-sequence/00002.png new file mode 100644 index 00000000..3d7dce56 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-bump-sequence/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-bump-sequence/00003.png b/tests_zemu/snapshots/stax-op-bump-sequence/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-bump-sequence/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-bump-sequence/00004.png b/tests_zemu/snapshots/stax-op-bump-sequence/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-bump-sequence/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00000.png b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00001.png b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00002.png b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00002.png new file mode 100644 index 00000000..d8abbf2c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00003.png b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00004.png b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-add-trust-line/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00000.png b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00001.png b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00002.png b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00002.png new file mode 100644 index 00000000..05430b0e Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00003.png b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00004.png b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-remove-trust-line/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00000.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png new file mode 100644 index 00000000..0a14cb21 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png new file mode 100644 index 00000000..0c6c4841 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00004.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00000.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png new file mode 100644 index 00000000..73418254 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00004.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-claim-claimable-balance/00000.png b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-claim-claimable-balance/00001.png b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-claim-claimable-balance/00002.png b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00002.png new file mode 100644 index 00000000..ccca4f99 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-claim-claimable-balance/00003.png b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-claim-claimable-balance/00004.png b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-claim-claimable-balance/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00000.png b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00001.png b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00002.png b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00002.png new file mode 100644 index 00000000..7ae265a6 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00003.png b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00004.png b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00005.png b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00000.png b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00001.png b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00002.png b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00002.png new file mode 100644 index 00000000..ba33df38 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00003.png b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00003.png new file mode 100644 index 00000000..5fd51f67 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00004.png b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00005.png b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback-with-muxed-from/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback/00000.png b/tests_zemu/snapshots/stax-op-clawback/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback/00001.png b/tests_zemu/snapshots/stax-op-clawback/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback/00002.png b/tests_zemu/snapshots/stax-op-clawback/00002.png new file mode 100644 index 00000000..1b0ed0e4 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback/00003.png b/tests_zemu/snapshots/stax-op-clawback/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback/00004.png b/tests_zemu/snapshots/stax-op-clawback/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-clawback/00005.png b/tests_zemu/snapshots/stax-op-clawback/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-clawback/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-create-account/00000.png b/tests_zemu/snapshots/stax-op-create-account/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-account/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-create-account/00001.png b/tests_zemu/snapshots/stax-op-create-account/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-account/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-create-account/00002.png b/tests_zemu/snapshots/stax-op-create-account/00002.png new file mode 100644 index 00000000..0d60a727 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-account/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-create-account/00003.png b/tests_zemu/snapshots/stax-op-create-account/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-account/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-create-account/00004.png b/tests_zemu/snapshots/stax-op-create-account/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-account/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-create-account/00005.png b/tests_zemu/snapshots/stax-op-create-account/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-account/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-create-claimable-balance/00000.png b/tests_zemu/snapshots/stax-op-create-claimable-balance/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-claimable-balance/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-create-claimable-balance/00001.png b/tests_zemu/snapshots/stax-op-create-claimable-balance/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-create-claimable-balance/00002.png b/tests_zemu/snapshots/stax-op-create-claimable-balance/00002.png new file mode 100644 index 00000000..911e868e Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-create-claimable-balance/00003.png b/tests_zemu/snapshots/stax-op-create-claimable-balance/00003.png new file mode 100644 index 00000000..97a05a2c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-create-claimable-balance/00004.png b/tests_zemu/snapshots/stax-op-create-claimable-balance/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-claimable-balance/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-create-claimable-balance/00005.png b/tests_zemu/snapshots/stax-op-create-claimable-balance/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00000.png b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00001.png b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00002.png b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00002.png new file mode 100644 index 00000000..64d9b572 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00003.png b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00004.png b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00005.png b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-create-passive-sell-offer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00000.png b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00001.png b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00002.png b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00002.png new file mode 100644 index 00000000..4e2a720a Binary files /dev/null and b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00003.png b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00004.png b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-end-sponsoring-future-reserves/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-inflation/00000.png b/tests_zemu/snapshots/stax-op-inflation/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-inflation/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-inflation/00001.png b/tests_zemu/snapshots/stax-op-inflation/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-inflation/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-inflation/00002.png b/tests_zemu/snapshots/stax-op-inflation/00002.png new file mode 100644 index 00000000..992127bc Binary files /dev/null and b/tests_zemu/snapshots/stax-op-inflation/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-inflation/00003.png b/tests_zemu/snapshots/stax-op-inflation/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-inflation/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-inflation/00004.png b/tests_zemu/snapshots/stax-op-inflation/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-inflation/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00000.png b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00001.png b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00002.png b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00002.png new file mode 100644 index 00000000..8282d3b4 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00003.png b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00003.png new file mode 100644 index 00000000..9baa77b6 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00004.png b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00005.png b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-deposit/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00000.png b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00001.png b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00002.png b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00002.png new file mode 100644 index 00000000..d1033127 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00003.png b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00003.png new file mode 100644 index 00000000..1d6257a2 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00004.png b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00005.png b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-liquidity-pool-withdraw/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00000.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00001.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00002.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00002.png new file mode 100644 index 00000000..ee0d9eb9 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00003.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00004.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00005.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-create/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00000.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00001.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00002.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00002.png new file mode 100644 index 00000000..e6a7980c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00003.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00004.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-delete/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00000.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00001.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00002.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00002.png new file mode 100644 index 00000000..9afcc207 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00003.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00004.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00005.png b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-buy-offer-update/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00000.png b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00001.png b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00002.png b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00002.png new file mode 100644 index 00000000..f014d2d4 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00003.png b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00004.png b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add-with-unprintable-data/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add/00000.png b/tests_zemu/snapshots/stax-op-manage-data-add/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add/00001.png b/tests_zemu/snapshots/stax-op-manage-data-add/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add/00002.png b/tests_zemu/snapshots/stax-op-manage-data-add/00002.png new file mode 100644 index 00000000..3dd9d388 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add/00003.png b/tests_zemu/snapshots/stax-op-manage-data-add/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add/00004.png b/tests_zemu/snapshots/stax-op-manage-data-add/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-add/00005.png b/tests_zemu/snapshots/stax-op-manage-data-add/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-add/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-remove/00000.png b/tests_zemu/snapshots/stax-op-manage-data-remove/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-remove/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-remove/00001.png b/tests_zemu/snapshots/stax-op-manage-data-remove/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-remove/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-remove/00002.png b/tests_zemu/snapshots/stax-op-manage-data-remove/00002.png new file mode 100644 index 00000000..defa7c5f Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-remove/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-remove/00003.png b/tests_zemu/snapshots/stax-op-manage-data-remove/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-remove/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-data-remove/00004.png b/tests_zemu/snapshots/stax-op-manage-data-remove/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-data-remove/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00000.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00001.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00002.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00002.png new file mode 100644 index 00000000..c5b2526c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00003.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00004.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00005.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-create/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00000.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00001.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00002.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00002.png new file mode 100644 index 00000000..ed47ecea Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00003.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00004.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-delete/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00000.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00001.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00002.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00002.png new file mode 100644 index 00000000..f300f4fb Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00003.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00004.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00005.png b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-manage-sell-offer-update/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00000.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00001.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00002.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00002.png new file mode 100644 index 00000000..b2fd83c8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00003.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00004.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00005.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-empty-path/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00000.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00001.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00002.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00002.png new file mode 100644 index 00000000..f941b2f1 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00003.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00003.png new file mode 100644 index 00000000..98814c19 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00004.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00005.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00000.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00001.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00002.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00002.png new file mode 100644 index 00000000..b2fd83c8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00003.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00004.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00005.png b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-receive/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00000.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00001.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00002.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00002.png new file mode 100644 index 00000000..3758def1 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00003.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00003.png new file mode 100644 index 00000000..000380d8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00004.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00005.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-empty-path/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00000.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00001.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00002.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00002.png new file mode 100644 index 00000000..65dcf983 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00003.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00003.png new file mode 100644 index 00000000..000380d8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00004.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00005.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send/00000.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send/00001.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send/00002.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00002.png new file mode 100644 index 00000000..3758def1 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send/00003.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00003.png new file mode 100644 index 00000000..000380d8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send/00004.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-path-payment-strict-send/00005.png b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-path-payment-strict-send/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00000.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00001.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00002.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00002.png new file mode 100644 index 00000000..0c1e2fb6 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00003.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00004.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00005.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum12/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00000.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00001.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00002.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00002.png new file mode 100644 index 00000000..31399f4d Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00003.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00004.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00005.png b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-alphanum4/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-native/00000.png b/tests_zemu/snapshots/stax-op-payment-asset-native/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-native/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-native/00001.png b/tests_zemu/snapshots/stax-op-payment-asset-native/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-native/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-native/00002.png b/tests_zemu/snapshots/stax-op-payment-asset-native/00002.png new file mode 100644 index 00000000..99bafe66 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-native/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-native/00003.png b/tests_zemu/snapshots/stax-op-payment-asset-native/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-native/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-asset-native/00004.png b/tests_zemu/snapshots/stax-op-payment-asset-native/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-asset-native/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00000.png b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00001.png b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00002.png b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00002.png new file mode 100644 index 00000000..83932e6f Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00003.png b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00004.png b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00005.png b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-payment-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00002.png new file mode 100644 index 00000000..fe322d93 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-account/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00002.png new file mode 100644 index 00000000..68316bf8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00002.png new file mode 100644 index 00000000..0b964e2f Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00003.png new file mode 100644 index 00000000..bbcf345c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-data/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00002.png new file mode 100644 index 00000000..4fe407a3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00003.png new file mode 100644 index 00000000..a79f710a Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-ed25519-public-key-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00002.png new file mode 100644 index 00000000..a5f568a1 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00003.png new file mode 100644 index 00000000..b6c50d53 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-hash-x-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00002.png new file mode 100644 index 00000000..78082ade Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-liquidity-pool/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00002.png new file mode 100644 index 00000000..1c1f9105 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-offer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00002.png new file mode 100644 index 00000000..b8f128b7 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00003.png new file mode 100644 index 00000000..86e2bc0b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-pre-auth-tx-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00002.png new file mode 100644 index 00000000..e0dc9b38 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-asset/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00000.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png new file mode 100644 index 00000000..87bd9084 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png new file mode 100644 index 00000000..32743b1c Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00004.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00002.png new file mode 100644 index 00000000..08e31f1a Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-ed25519-signer-payload-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00002.png new file mode 100644 index 00000000..2d9a85b0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00003.png new file mode 100644 index 00000000..15ec187e Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-hash-x-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00002.png new file mode 100644 index 00000000..23a11cb6 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00003.png new file mode 100644 index 00000000..15ec187e Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-pre-auth-tx-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00002.png new file mode 100644 index 00000000..b5904515 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00003.png new file mode 100644 index 00000000..15ec187e Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-add-public-key-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00002.png new file mode 100644 index 00000000..9995e11a Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-ed25519-signer-payload-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00002.png new file mode 100644 index 00000000..f2b85234 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-hash-x-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00002.png new file mode 100644 index 00000000..a9cdf2d8 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-pre-auth-tx-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00000.png b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00001.png b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00002.png b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00002.png new file mode 100644 index 00000000..42da3149 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00003.png b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00004.png b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00005.png b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-remove-public-key-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00000.png b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00001.png b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00002.png b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00002.png new file mode 100644 index 00000000..c2d18562 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00003.png b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00004.png b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options-with-empty-body/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00000.png b/tests_zemu/snapshots/stax-op-set-options/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00001.png b/tests_zemu/snapshots/stax-op-set-options/00001.png new file mode 100644 index 00000000..9d442f10 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00002.png b/tests_zemu/snapshots/stax-op-set-options/00002.png new file mode 100644 index 00000000..d3703385 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00003.png b/tests_zemu/snapshots/stax-op-set-options/00003.png new file mode 100644 index 00000000..b3b598c5 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00004.png b/tests_zemu/snapshots/stax-op-set-options/00004.png new file mode 100644 index 00000000..cf1effec Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00005.png b/tests_zemu/snapshots/stax-op-set-options/00005.png new file mode 100644 index 00000000..0d940c67 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00006.png b/tests_zemu/snapshots/stax-op-set-options/00006.png new file mode 100644 index 00000000..fa6092da Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00006.png differ diff --git a/tests_zemu/snapshots/stax-op-set-options/00007.png b/tests_zemu/snapshots/stax-op-set-options/00007.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-options/00007.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00000.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png new file mode 100644 index 00000000..25df2d37 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png new file mode 100644 index 00000000..6208b965 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00004.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00000.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png new file mode 100644 index 00000000..25df2d37 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png new file mode 100644 index 00000000..5d6b0349 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00004.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00000.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00001.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00002.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00002.png new file mode 100644 index 00000000..25df2d37 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00003.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00003.png new file mode 100644 index 00000000..ae538a4e Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00004.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00005.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-authorized/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00000.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00001.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00002.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00002.png new file mode 100644 index 00000000..25df2d37 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00003.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00003.png new file mode 100644 index 00000000..77f78d9f Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00004.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00005.png b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-set-trust-line-flags-unauthorized/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00000.png b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png new file mode 100644 index 00000000..408df211 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png new file mode 100644 index 00000000..61ac5810 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00004.png b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png new file mode 100644 index 00000000..ecd866ec Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png new file mode 100644 index 00000000..f16ab684 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png new file mode 100644 index 00000000..ecd866ec Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png new file mode 100644 index 00000000..61ac5810 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png new file mode 100644 index 00000000..8b9444a9 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png new file mode 100644 index 00000000..2666e89a Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00000.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png new file mode 100644 index 00000000..408df211 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png new file mode 100644 index 00000000..eae5e0ae Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00004.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00000.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png new file mode 100644 index 00000000..cf9f7bdf Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00004.png b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-source-omit-tx-source-equal-signer-not-equal-op-source/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-with-empty-source/00000.png b/tests_zemu/snapshots/stax-op-with-empty-source/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-empty-source/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-with-empty-source/00001.png b/tests_zemu/snapshots/stax-op-with-empty-source/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-empty-source/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-with-empty-source/00002.png b/tests_zemu/snapshots/stax-op-with-empty-source/00002.png new file mode 100644 index 00000000..9d3a6ca2 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-empty-source/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-with-empty-source/00003.png b/tests_zemu/snapshots/stax-op-with-empty-source/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-empty-source/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-with-empty-source/00004.png b/tests_zemu/snapshots/stax-op-with-empty-source/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-empty-source/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-with-muxed-source/00000.png b/tests_zemu/snapshots/stax-op-with-muxed-source/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-muxed-source/00000.png differ diff --git a/tests_zemu/snapshots/stax-op-with-muxed-source/00001.png b/tests_zemu/snapshots/stax-op-with-muxed-source/00001.png new file mode 100644 index 00000000..3c818e4b Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-muxed-source/00001.png differ diff --git a/tests_zemu/snapshots/stax-op-with-muxed-source/00002.png b/tests_zemu/snapshots/stax-op-with-muxed-source/00002.png new file mode 100644 index 00000000..d63c16cc Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-muxed-source/00002.png differ diff --git a/tests_zemu/snapshots/stax-op-with-muxed-source/00003.png b/tests_zemu/snapshots/stax-op-with-muxed-source/00003.png new file mode 100644 index 00000000..f16ab684 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-muxed-source/00003.png differ diff --git a/tests_zemu/snapshots/stax-op-with-muxed-source/00004.png b/tests_zemu/snapshots/stax-op-with-muxed-source/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-muxed-source/00004.png differ diff --git a/tests_zemu/snapshots/stax-op-with-muxed-source/00005.png b/tests_zemu/snapshots/stax-op-with-muxed-source/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-op-with-muxed-source/00005.png differ diff --git a/tests_zemu/snapshots/stax-public-key-approve/00000.png b/tests_zemu/snapshots/stax-public-key-approve/00000.png new file mode 100644 index 00000000..825a71e8 Binary files /dev/null and b/tests_zemu/snapshots/stax-public-key-approve/00000.png differ diff --git a/tests_zemu/snapshots/stax-public-key-approve/00001.png b/tests_zemu/snapshots/stax-public-key-approve/00001.png new file mode 100644 index 00000000..f59899e9 Binary files /dev/null and b/tests_zemu/snapshots/stax-public-key-approve/00001.png differ diff --git a/tests_zemu/snapshots/stax-public-key-reject/00000.png b/tests_zemu/snapshots/stax-public-key-reject/00000.png new file mode 100644 index 00000000..825a71e8 Binary files /dev/null and b/tests_zemu/snapshots/stax-public-key-reject/00000.png differ diff --git a/tests_zemu/snapshots/stax-public-key-reject/00001.png b/tests_zemu/snapshots/stax-public-key-reject/00001.png new file mode 100644 index 00000000..b0eba3f0 Binary files /dev/null and b/tests_zemu/snapshots/stax-public-key-reject/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00000.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00001.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00001.png new file mode 100644 index 00000000..012ad763 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00002.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00003.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00004.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-one-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00000.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00001.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00001.png new file mode 100644 index 00000000..012ad763 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00002.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00003.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00004.png b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-extra-signers-with-two-signers/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-is-none/00000.png b/tests_zemu/snapshots/stax-tx-cond-is-none/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-is-none/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-is-none/00001.png b/tests_zemu/snapshots/stax-tx-cond-is-none/00001.png new file mode 100644 index 00000000..2e18d3e6 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-is-none/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-is-none/00002.png b/tests_zemu/snapshots/stax-tx-cond-is-none/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-is-none/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-is-none/00003.png b/tests_zemu/snapshots/stax-tx-cond-is-none/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-is-none/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-is-none/00004.png b/tests_zemu/snapshots/stax-tx-cond-is-none/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-is-none/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00000.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00001.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00001.png new file mode 100644 index 00000000..012ad763 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00002.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00003.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00004.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-are-zero/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00000.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00001.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00001.png new file mode 100644 index 00000000..a3cd67cf Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00002.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00003.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00004.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-max-is-zero/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00000.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00001.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00001.png new file mode 100644 index 00000000..9b0f573f Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00002.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00003.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00004.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds-min-is-zero/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00000.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00001.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00001.png new file mode 100644 index 00000000..327c71dd Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00002.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00003.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00004.png b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-ledger-bounds/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00000.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00001.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00001.png new file mode 100644 index 00000000..0eec3d06 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00002.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00003.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00004.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-age/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00000.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00001.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00001.png new file mode 100644 index 00000000..a9e79f96 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00002.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00003.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00004.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence-ledger-gap/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00000.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00001.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00001.png new file mode 100644 index 00000000..d4e9347e Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00002.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00003.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00004.png b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-min-account-sequence/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00000.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00001.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00001.png new file mode 100644 index 00000000..012ad763 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00002.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00003.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00004.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-are-zero/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00000.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00001.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00001.png new file mode 100644 index 00000000..d9b6fb01 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00002.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00002.png new file mode 100644 index 00000000..337b7c41 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00003.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00003.png new file mode 100644 index 00000000..fac23323 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00004.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00005.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-is-none/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00000.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00001.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00001.png new file mode 100644 index 00000000..2dfc340b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00002.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00003.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00004.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-max-is-zero/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00000.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00001.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00001.png new file mode 100644 index 00000000..663c9884 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00002.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00003.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00004.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds-min-is-zero/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds/00000.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds/00001.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00001.png new file mode 100644 index 00000000..6a139ef1 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds/00002.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00002.png new file mode 100644 index 00000000..1efc355b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds/00003.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds/00004.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-time-bounds/00005.png b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-time-bounds/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00000.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00001.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00001.png new file mode 100644 index 00000000..31733bfa Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00002.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00002.png new file mode 100644 index 00000000..b6e1c867 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00003.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00003.png new file mode 100644 index 00000000..bc20abe2 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00004.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00004.png new file mode 100644 index 00000000..50016674 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00005.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00005.png new file mode 100644 index 00000000..abbafeed Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-cond-with-all-items/00006.png b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00006.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-cond-with-all-items/00006.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00000.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00001.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00001.png new file mode 100644 index 00000000..c7d52d39 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00002.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00002.png new file mode 100644 index 00000000..a51f5892 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00003.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00003.png new file mode 100644 index 00000000..c76b5c2d Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00004.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00004.png new file mode 100644 index 00000000..7a75a717 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00005.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00005.png new file mode 100644 index 00000000..7a101ad9 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00006.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00006.png new file mode 100644 index 00000000..fa6092da Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00006.png differ diff --git a/tests_zemu/snapshots/stax-tx-custom-base-fee/00007.png b/tests_zemu/snapshots/stax-tx-custom-base-fee/00007.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-custom-base-fee/00007.png differ diff --git a/tests_zemu/snapshots/stax-tx-hide-sequence/00000.png b/tests_zemu/snapshots/stax-tx-hide-sequence/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-hide-sequence/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-hide-sequence/00001.png b/tests_zemu/snapshots/stax-tx-hide-sequence/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-hide-sequence/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-hide-sequence/00002.png b/tests_zemu/snapshots/stax-tx-hide-sequence/00002.png new file mode 100644 index 00000000..2666e89a Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-hide-sequence/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-hide-sequence/00003.png b/tests_zemu/snapshots/stax-tx-hide-sequence/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-hide-sequence/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-hide-sequence/00004.png b/tests_zemu/snapshots/stax-tx-hide-sequence/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-hide-sequence/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-hash/00000.png b/tests_zemu/snapshots/stax-tx-memo-hash/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-hash/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-hash/00001.png b/tests_zemu/snapshots/stax-tx-memo-hash/00001.png new file mode 100644 index 00000000..f9fe11f5 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-hash/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-hash/00002.png b/tests_zemu/snapshots/stax-tx-memo-hash/00002.png new file mode 100644 index 00000000..1efc355b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-hash/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-hash/00003.png b/tests_zemu/snapshots/stax-tx-memo-hash/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-hash/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-hash/00004.png b/tests_zemu/snapshots/stax-tx-memo-hash/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-hash/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-hash/00005.png b/tests_zemu/snapshots/stax-tx-memo-hash/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-hash/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-id/00000.png b/tests_zemu/snapshots/stax-tx-memo-id/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-id/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-id/00001.png b/tests_zemu/snapshots/stax-tx-memo-id/00001.png new file mode 100644 index 00000000..6b0fbc26 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-id/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-id/00002.png b/tests_zemu/snapshots/stax-tx-memo-id/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-id/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-id/00003.png b/tests_zemu/snapshots/stax-tx-memo-id/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-id/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-id/00004.png b/tests_zemu/snapshots/stax-tx-memo-id/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-id/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-none/00000.png b/tests_zemu/snapshots/stax-tx-memo-none/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-none/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-none/00001.png b/tests_zemu/snapshots/stax-tx-memo-none/00001.png new file mode 100644 index 00000000..d4d966ce Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-none/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-none/00002.png b/tests_zemu/snapshots/stax-tx-memo-none/00002.png new file mode 100644 index 00000000..83b33500 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-none/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-none/00003.png b/tests_zemu/snapshots/stax-tx-memo-none/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-none/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-none/00004.png b/tests_zemu/snapshots/stax-tx-memo-none/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-none/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-return-hash/00000.png b/tests_zemu/snapshots/stax-tx-memo-return-hash/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-return-hash/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-return-hash/00001.png b/tests_zemu/snapshots/stax-tx-memo-return-hash/00001.png new file mode 100644 index 00000000..a286f6c7 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-return-hash/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-return-hash/00002.png b/tests_zemu/snapshots/stax-tx-memo-return-hash/00002.png new file mode 100644 index 00000000..1efc355b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-return-hash/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-return-hash/00003.png b/tests_zemu/snapshots/stax-tx-memo-return-hash/00003.png new file mode 100644 index 00000000..6c562095 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-return-hash/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-return-hash/00004.png b/tests_zemu/snapshots/stax-tx-memo-return-hash/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-return-hash/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-return-hash/00005.png b/tests_zemu/snapshots/stax-tx-memo-return-hash/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-return-hash/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00000.png b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00001.png b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00001.png new file mode 100644 index 00000000..78592db5 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00002.png b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00003.png b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00004.png b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text-unprintable/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text/00000.png b/tests_zemu/snapshots/stax-tx-memo-text/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text/00001.png b/tests_zemu/snapshots/stax-tx-memo-text/00001.png new file mode 100644 index 00000000..4f447bf0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text/00002.png b/tests_zemu/snapshots/stax-tx-memo-text/00002.png new file mode 100644 index 00000000..672a5dbb Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text/00003.png b/tests_zemu/snapshots/stax-tx-memo-text/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-memo-text/00004.png b/tests_zemu/snapshots/stax-tx-memo-text/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-memo-text/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00000.png b/tests_zemu/snapshots/stax-tx-multi-operations/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00001.png b/tests_zemu/snapshots/stax-tx-multi-operations/00001.png new file mode 100644 index 00000000..c866d15c Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00002.png b/tests_zemu/snapshots/stax-tx-multi-operations/00002.png new file mode 100644 index 00000000..20bace13 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00003.png b/tests_zemu/snapshots/stax-tx-multi-operations/00003.png new file mode 100644 index 00000000..e1de0ef4 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00004.png b/tests_zemu/snapshots/stax-tx-multi-operations/00004.png new file mode 100644 index 00000000..2ba5ef8b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00005.png b/tests_zemu/snapshots/stax-tx-multi-operations/00005.png new file mode 100644 index 00000000..bc406ea8 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00006.png b/tests_zemu/snapshots/stax-tx-multi-operations/00006.png new file mode 100644 index 00000000..c3033126 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00006.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00007.png b/tests_zemu/snapshots/stax-tx-multi-operations/00007.png new file mode 100644 index 00000000..7cff56bc Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00007.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00008.png b/tests_zemu/snapshots/stax-tx-multi-operations/00008.png new file mode 100644 index 00000000..f9e8c366 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00008.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00009.png b/tests_zemu/snapshots/stax-tx-multi-operations/00009.png new file mode 100644 index 00000000..b9a25ca2 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00009.png differ diff --git a/tests_zemu/snapshots/stax-tx-multi-operations/00010.png b/tests_zemu/snapshots/stax-tx-multi-operations/00010.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-multi-operations/00010.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-custom/00000.png b/tests_zemu/snapshots/stax-tx-network-custom/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-custom/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-custom/00001.png b/tests_zemu/snapshots/stax-tx-network-custom/00001.png new file mode 100644 index 00000000..286ce65f Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-custom/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-custom/00002.png b/tests_zemu/snapshots/stax-tx-network-custom/00002.png new file mode 100644 index 00000000..ef628035 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-custom/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-custom/00003.png b/tests_zemu/snapshots/stax-tx-network-custom/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-custom/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-custom/00004.png b/tests_zemu/snapshots/stax-tx-network-custom/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-custom/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-public/00000.png b/tests_zemu/snapshots/stax-tx-network-public/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-public/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-public/00001.png b/tests_zemu/snapshots/stax-tx-network-public/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-public/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-public/00002.png b/tests_zemu/snapshots/stax-tx-network-public/00002.png new file mode 100644 index 00000000..2666e89a Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-public/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-public/00003.png b/tests_zemu/snapshots/stax-tx-network-public/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-public/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-public/00004.png b/tests_zemu/snapshots/stax-tx-network-public/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-public/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-testnet/00000.png b/tests_zemu/snapshots/stax-tx-network-testnet/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-testnet/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-testnet/00001.png b/tests_zemu/snapshots/stax-tx-network-testnet/00001.png new file mode 100644 index 00000000..912ca911 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-testnet/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-testnet/00002.png b/tests_zemu/snapshots/stax-tx-network-testnet/00002.png new file mode 100644 index 00000000..ef628035 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-testnet/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-testnet/00003.png b/tests_zemu/snapshots/stax-tx-network-testnet/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-testnet/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-network-testnet/00004.png b/tests_zemu/snapshots/stax-tx-network-testnet/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-network-testnet/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-reject/00000.png b/tests_zemu/snapshots/stax-tx-reject/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-reject/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-reject/00001.png b/tests_zemu/snapshots/stax-tx-reject/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-reject/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-reject/00002.png b/tests_zemu/snapshots/stax-tx-reject/00002.png new file mode 100644 index 00000000..2666e89a Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-reject/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-reject/00003.png b/tests_zemu/snapshots/stax-tx-reject/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-reject/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-reject/00004.png b/tests_zemu/snapshots/stax-tx-reject/00004.png new file mode 100644 index 00000000..babad989 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-reject/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00002.png new file mode 100644 index 00000000..ecd866ec Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00003.png new file mode 100644 index 00000000..61ac5810 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00005.png b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-muxed-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00000.png b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00001.png b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00001.png new file mode 100644 index 00000000..0f27dd35 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00002.png b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00002.png new file mode 100644 index 00000000..2666e89a Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00003.png b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00003.png new file mode 100644 index 00000000..ebc0b7e3 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00004.png b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00004.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00000.png b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00001.png b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00002.png b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00002.png new file mode 100644 index 00000000..408df211 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00003.png b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00003.png new file mode 100644 index 00000000..eae5e0ae Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00004.png b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00005.png b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-source-omit-source-not-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/stax-tx-with-muxed-source/00000.png b/tests_zemu/snapshots/stax-tx-with-muxed-source/00000.png new file mode 100644 index 00000000..3e30e23b Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-with-muxed-source/00000.png differ diff --git a/tests_zemu/snapshots/stax-tx-with-muxed-source/00001.png b/tests_zemu/snapshots/stax-tx-with-muxed-source/00001.png new file mode 100644 index 00000000..02e6b25d Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-with-muxed-source/00001.png differ diff --git a/tests_zemu/snapshots/stax-tx-with-muxed-source/00002.png b/tests_zemu/snapshots/stax-tx-with-muxed-source/00002.png new file mode 100644 index 00000000..80a8c296 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-with-muxed-source/00002.png differ diff --git a/tests_zemu/snapshots/stax-tx-with-muxed-source/00003.png b/tests_zemu/snapshots/stax-tx-with-muxed-source/00003.png new file mode 100644 index 00000000..052d53f8 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-with-muxed-source/00003.png differ diff --git a/tests_zemu/snapshots/stax-tx-with-muxed-source/00004.png b/tests_zemu/snapshots/stax-tx-with-muxed-source/00004.png new file mode 100644 index 00000000..75a118a0 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-with-muxed-source/00004.png differ diff --git a/tests_zemu/snapshots/stax-tx-with-muxed-source/00005.png b/tests_zemu/snapshots/stax-tx-with-muxed-source/00005.png new file mode 100644 index 00000000..cd2f5275 Binary files /dev/null and b/tests_zemu/snapshots/stax-tx-with-muxed-source/00005.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00002.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00002.png index d72ec205..ac4a8c47 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00003.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00003.png index 45b232ee..4d6b44c8 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00005.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00005.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00005.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00005.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00006.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00006.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00008.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00008.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00008.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00008.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00009.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00009.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00009.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00009.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00011.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00011.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00011.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00011.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00012.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00012.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00012.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00012.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00013.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00013.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00014.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00014.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00015.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00015.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00015.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00015.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00017.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00017.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00017.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00017.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00018.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00018.png index 349bce7a..40df6355 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00018.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00018.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00019.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00019.png index a19cd2a9..e8214054 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00019.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00019.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00020.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00020.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00020.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00020.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00021.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00021.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00021.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00021.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00023.png b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00023.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00023.png and b/tests_zemu/snapshots/x-fee-bump-tx-hide-sequence/00023.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00002.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00002.png index d72ec205..ac4a8c47 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00003.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00003.png index 9e9d65b3..43682b3e 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00005.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00005.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00006.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00006.png index 01f221f9..ebf8b908 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00007.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00007.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00007.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00009.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00009.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00009.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00010.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00010.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00012.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00012.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00012.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00013.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00013.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00014.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00014.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00016.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00016.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00016.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-equal-signer/00016.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png index 36f530e6..8b99b7ac 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png index 87df7a36..d45fcdbf 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png index 9e9d65b3..43682b3e 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00007.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00007.png index 01f221f9..ebf8b908 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00007.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00008.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00008.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00008.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00010.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00010.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00010.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00011.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00011.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00011.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00013.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00013.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00014.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00014.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00015.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00015.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00015.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00015.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00017.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00017.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00017.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-fee-source-not-equal-signer/00017.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png index afb59c82..3f8d070a 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png index 34178afd..fc4dfbbe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png index 9e9d65b3..43682b3e 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00004.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00007.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00007.png index 01f221f9..ebf8b908 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00007.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00008.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00008.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00010.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00010.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00011.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00011.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00011.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00013.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00013.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00014.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00014.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00015.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00015.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00015.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00015.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00017.png b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00017.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00017.png and b/tests_zemu/snapshots/x-fee-bump-tx-omit-muxed-fee-source-equal-signer/00017.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00002.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00002.png index d72ec205..ac4a8c47 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00003.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00003.png index 45b232ee..4d6b44c8 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00005.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00005.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00005.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00005.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00006.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00006.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00007.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00007.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00007.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00007.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00009.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00009.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00009.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00009.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00010.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00010.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00010.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00010.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00012.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00012.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00012.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00012.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00013.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00013.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00014.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00014.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00015.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00015.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00015.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00015.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00016.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00016.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00016.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00016.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00018.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00018.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00018.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00018.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00019.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00019.png index 349bce7a..40df6355 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00019.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00019.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00020.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00020.png index a19cd2a9..e8214054 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00020.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00020.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00021.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00021.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00021.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00021.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00022.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00022.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00022.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00022.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-reject/00025.png b/tests_zemu/snapshots/x-fee-bump-tx-reject/00025.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-reject/00025.png and b/tests_zemu/snapshots/x-fee-bump-tx-reject/00025.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00002.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00002.png index afb59c82..3f8d070a 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00003.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00003.png index 34178afd..fc4dfbbe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00004.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00004.png index 45b232ee..4d6b44c8 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00004.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00004.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00006.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00006.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00007.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00007.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00007.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00007.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00008.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00008.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00008.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00008.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00010.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00010.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00010.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00010.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00011.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00011.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00011.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00011.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00013.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00013.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00014.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00014.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00015.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00015.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00015.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00015.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00016.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00016.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00016.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00016.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00017.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00017.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00017.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00017.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00019.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00019.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00019.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00019.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00020.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00020.png index 349bce7a..40df6355 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00020.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00020.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00021.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00021.png index a19cd2a9..e8214054 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00021.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00021.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00022.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00022.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00022.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00022.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00023.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00023.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00023.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00023.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00025.png b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00025.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00025.png and b/tests_zemu/snapshots/x-fee-bump-tx-with-muxed-fee-source/00025.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00002.png b/tests_zemu/snapshots/x-fee-bump-tx/00002.png index d72ec205..ac4a8c47 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00002.png and b/tests_zemu/snapshots/x-fee-bump-tx/00002.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00003.png b/tests_zemu/snapshots/x-fee-bump-tx/00003.png index 45b232ee..4d6b44c8 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00003.png and b/tests_zemu/snapshots/x-fee-bump-tx/00003.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00005.png b/tests_zemu/snapshots/x-fee-bump-tx/00005.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00005.png and b/tests_zemu/snapshots/x-fee-bump-tx/00005.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00006.png b/tests_zemu/snapshots/x-fee-bump-tx/00006.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00006.png and b/tests_zemu/snapshots/x-fee-bump-tx/00006.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00007.png b/tests_zemu/snapshots/x-fee-bump-tx/00007.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00007.png and b/tests_zemu/snapshots/x-fee-bump-tx/00007.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00009.png b/tests_zemu/snapshots/x-fee-bump-tx/00009.png index 0f15324a..c47baab5 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00009.png and b/tests_zemu/snapshots/x-fee-bump-tx/00009.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00010.png b/tests_zemu/snapshots/x-fee-bump-tx/00010.png index 55508a4d..cc3b7bfe 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00010.png and b/tests_zemu/snapshots/x-fee-bump-tx/00010.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00012.png b/tests_zemu/snapshots/x-fee-bump-tx/00012.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00012.png and b/tests_zemu/snapshots/x-fee-bump-tx/00012.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00013.png b/tests_zemu/snapshots/x-fee-bump-tx/00013.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00013.png and b/tests_zemu/snapshots/x-fee-bump-tx/00013.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00014.png b/tests_zemu/snapshots/x-fee-bump-tx/00014.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00014.png and b/tests_zemu/snapshots/x-fee-bump-tx/00014.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00015.png b/tests_zemu/snapshots/x-fee-bump-tx/00015.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00015.png and b/tests_zemu/snapshots/x-fee-bump-tx/00015.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00016.png b/tests_zemu/snapshots/x-fee-bump-tx/00016.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00016.png and b/tests_zemu/snapshots/x-fee-bump-tx/00016.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00018.png b/tests_zemu/snapshots/x-fee-bump-tx/00018.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00018.png and b/tests_zemu/snapshots/x-fee-bump-tx/00018.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00019.png b/tests_zemu/snapshots/x-fee-bump-tx/00019.png index 349bce7a..40df6355 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00019.png and b/tests_zemu/snapshots/x-fee-bump-tx/00019.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00020.png b/tests_zemu/snapshots/x-fee-bump-tx/00020.png index a19cd2a9..e8214054 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00020.png and b/tests_zemu/snapshots/x-fee-bump-tx/00020.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00021.png b/tests_zemu/snapshots/x-fee-bump-tx/00021.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00021.png and b/tests_zemu/snapshots/x-fee-bump-tx/00021.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00022.png b/tests_zemu/snapshots/x-fee-bump-tx/00022.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00022.png and b/tests_zemu/snapshots/x-fee-bump-tx/00022.png differ diff --git a/tests_zemu/snapshots/x-fee-bump-tx/00024.png b/tests_zemu/snapshots/x-fee-bump-tx/00024.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-fee-bump-tx/00024.png and b/tests_zemu/snapshots/x-fee-bump-tx/00024.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-approve/00001.png b/tests_zemu/snapshots/x-hash-signing-approve/00001.png index 61e944eb..e8f503ec 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-approve/00001.png and b/tests_zemu/snapshots/x-hash-signing-approve/00001.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-approve/00002.png b/tests_zemu/snapshots/x-hash-signing-approve/00002.png index efb147a7..671b365f 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-approve/00002.png and b/tests_zemu/snapshots/x-hash-signing-approve/00002.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-approve/00003.png b/tests_zemu/snapshots/x-hash-signing-approve/00003.png index 9d9f6dbf..5c056861 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-approve/00003.png and b/tests_zemu/snapshots/x-hash-signing-approve/00003.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-approve/00007.png b/tests_zemu/snapshots/x-hash-signing-approve/00007.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-approve/00007.png and b/tests_zemu/snapshots/x-hash-signing-approve/00007.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-reject/00001.png b/tests_zemu/snapshots/x-hash-signing-reject/00001.png index 61e944eb..e8f503ec 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-reject/00001.png and b/tests_zemu/snapshots/x-hash-signing-reject/00001.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-reject/00002.png b/tests_zemu/snapshots/x-hash-signing-reject/00002.png index efb147a7..671b365f 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-reject/00002.png and b/tests_zemu/snapshots/x-hash-signing-reject/00002.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-reject/00003.png b/tests_zemu/snapshots/x-hash-signing-reject/00003.png index 9d9f6dbf..5c056861 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-reject/00003.png and b/tests_zemu/snapshots/x-hash-signing-reject/00003.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-reject/00007.png b/tests_zemu/snapshots/x-hash-signing-reject/00007.png index c9222461..e90cd9db 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-reject/00007.png and b/tests_zemu/snapshots/x-hash-signing-reject/00007.png differ diff --git a/tests_zemu/snapshots/x-hash-signing-reject/00008.png b/tests_zemu/snapshots/x-hash-signing-reject/00008.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-hash-signing-reject/00008.png and b/tests_zemu/snapshots/x-hash-signing-reject/00008.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00001.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00001.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00002.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00002.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00003.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00003.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00005.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00005.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00006.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00006.png index 6e04454e..b97bf8bd 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00006.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00006.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00007.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00007.png index 924a0fda..39d85d54 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00007.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00007.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00008.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00008.png index 360a4316..d36cda7a 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00008.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00008.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00009.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00009.png index ea1b11a7..a9670471 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00009.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00009.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00011.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00011.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00011.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00013.png b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00013.png and b/tests_zemu/snapshots/x-op-account-merge-with-muxed-destination/00013.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00001.png b/tests_zemu/snapshots/x-op-account-merge/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00001.png and b/tests_zemu/snapshots/x-op-account-merge/00001.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00002.png b/tests_zemu/snapshots/x-op-account-merge/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00002.png and b/tests_zemu/snapshots/x-op-account-merge/00002.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00003.png b/tests_zemu/snapshots/x-op-account-merge/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00003.png and b/tests_zemu/snapshots/x-op-account-merge/00003.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00005.png b/tests_zemu/snapshots/x-op-account-merge/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00005.png and b/tests_zemu/snapshots/x-op-account-merge/00005.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00006.png b/tests_zemu/snapshots/x-op-account-merge/00006.png index 6e04454e..b97bf8bd 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00006.png and b/tests_zemu/snapshots/x-op-account-merge/00006.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00007.png b/tests_zemu/snapshots/x-op-account-merge/00007.png index 924a0fda..39d85d54 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00007.png and b/tests_zemu/snapshots/x-op-account-merge/00007.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00008.png b/tests_zemu/snapshots/x-op-account-merge/00008.png index 360a4316..d36cda7a 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00008.png and b/tests_zemu/snapshots/x-op-account-merge/00008.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00009.png b/tests_zemu/snapshots/x-op-account-merge/00009.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00009.png and b/tests_zemu/snapshots/x-op-account-merge/00009.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00010.png b/tests_zemu/snapshots/x-op-account-merge/00010.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00010.png and b/tests_zemu/snapshots/x-op-account-merge/00010.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00011.png b/tests_zemu/snapshots/x-op-account-merge/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00011.png and b/tests_zemu/snapshots/x-op-account-merge/00011.png differ diff --git a/tests_zemu/snapshots/x-op-account-merge/00013.png b/tests_zemu/snapshots/x-op-account-merge/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-account-merge/00013.png and b/tests_zemu/snapshots/x-op-account-merge/00013.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00001.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00001.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00001.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00002.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00002.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00002.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00003.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00003.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00003.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00005.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00005.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00005.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00007.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00007.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00007.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00008.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00008.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00008.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00009.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00009.png index d7877240..9919c284 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00009.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00009.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00010.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00010.png index 7a54b4da..aad8b574 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00010.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00010.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00011.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00011.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00011.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00013.png b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00013.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize-to-maintain-liabilities/00013.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00001.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00001.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00001.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00002.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00002.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00002.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00003.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00003.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00003.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00005.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00005.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00005.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00007.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00007.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00007.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00008.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00008.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00008.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00009.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00009.png index d7877240..9919c284 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00009.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00009.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00011.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00011.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00011.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-authorize/00013.png b/tests_zemu/snapshots/x-op-allow-trust-authorize/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-authorize/00013.png and b/tests_zemu/snapshots/x-op-allow-trust-authorize/00013.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00001.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00001.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00001.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00002.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00002.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00002.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00003.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00003.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00003.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00005.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00005.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00005.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00007.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00007.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00007.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00008.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00008.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00008.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00009.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00009.png index d7877240..9919c284 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00009.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00009.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00011.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00011.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00011.png differ diff --git a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00013.png b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00013.png and b/tests_zemu/snapshots/x-op-allow-trust-deauthorize/00013.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00001.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00001.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00001.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00002.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00002.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00002.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00003.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00003.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00003.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00005.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00005.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00005.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00007.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00007.png index bc7f2d8e..fe5c1075 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00007.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00007.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00008.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00008.png index 58e43c80..662e9a95 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00008.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00008.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00009.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00009.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00009.png differ diff --git a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00011.png b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00011.png and b/tests_zemu/snapshots/x-op-begin-sponsoring-future-reserves/00011.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00001.png b/tests_zemu/snapshots/x-op-bump-sequence/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00001.png and b/tests_zemu/snapshots/x-op-bump-sequence/00001.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00002.png b/tests_zemu/snapshots/x-op-bump-sequence/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00002.png and b/tests_zemu/snapshots/x-op-bump-sequence/00002.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00003.png b/tests_zemu/snapshots/x-op-bump-sequence/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00003.png and b/tests_zemu/snapshots/x-op-bump-sequence/00003.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00005.png b/tests_zemu/snapshots/x-op-bump-sequence/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00005.png and b/tests_zemu/snapshots/x-op-bump-sequence/00005.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00007.png b/tests_zemu/snapshots/x-op-bump-sequence/00007.png index e6a128f6..52986b07 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00007.png and b/tests_zemu/snapshots/x-op-bump-sequence/00007.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00008.png b/tests_zemu/snapshots/x-op-bump-sequence/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00008.png and b/tests_zemu/snapshots/x-op-bump-sequence/00008.png differ diff --git a/tests_zemu/snapshots/x-op-bump-sequence/00010.png b/tests_zemu/snapshots/x-op-bump-sequence/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-bump-sequence/00010.png and b/tests_zemu/snapshots/x-op-bump-sequence/00010.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00001.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00001.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00002.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00002.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00003.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00003.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00005.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00005.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00005.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00007.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00007.png index 25afd4f2..b12e670d 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00007.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00007.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00008.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00008.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00008.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00010.png b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00010.png and b/tests_zemu/snapshots/x-op-change-trust-add-trust-line/00010.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00001.png b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00001.png and b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00002.png b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00002.png and b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00003.png b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00003.png and b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00005.png b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00005.png and b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00005.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00007.png b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00007.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00007.png and b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00007.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00009.png b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00009.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00009.png and b/tests_zemu/snapshots/x-op-change-trust-remove-trust-line/00009.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00005.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00007.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00007.png index 04d1561b..a5872d4a 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00007.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00007.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00008.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00008.png index 8849a6a3..aaa0faa8 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00008.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00008.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00010.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00010.png index 25afd4f2..b12e670d 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00010.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00010.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00011.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00011.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00011.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00013.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00013.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-add-trust-line/00013.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00001.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00002.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00003.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00005.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00007.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00007.png index 04d1561b..a5872d4a 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00007.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00007.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00008.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00008.png index 8849a6a3..aaa0faa8 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00008.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00008.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00010.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00010.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00010.png differ diff --git a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00012.png b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00012.png and b/tests_zemu/snapshots/x-op-change-trust-with-liquidity-pool-asset-remove-trust-line/00012.png differ diff --git a/tests_zemu/snapshots/x-op-claim-claimable-balance/00001.png b/tests_zemu/snapshots/x-op-claim-claimable-balance/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-claim-claimable-balance/00001.png and b/tests_zemu/snapshots/x-op-claim-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/x-op-claim-claimable-balance/00002.png b/tests_zemu/snapshots/x-op-claim-claimable-balance/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-claim-claimable-balance/00002.png and b/tests_zemu/snapshots/x-op-claim-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/x-op-claim-claimable-balance/00003.png b/tests_zemu/snapshots/x-op-claim-claimable-balance/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-claim-claimable-balance/00003.png and b/tests_zemu/snapshots/x-op-claim-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/x-op-claim-claimable-balance/00005.png b/tests_zemu/snapshots/x-op-claim-claimable-balance/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-claim-claimable-balance/00005.png and b/tests_zemu/snapshots/x-op-claim-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/x-op-claim-claimable-balance/00008.png b/tests_zemu/snapshots/x-op-claim-claimable-balance/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-claim-claimable-balance/00008.png and b/tests_zemu/snapshots/x-op-claim-claimable-balance/00008.png differ diff --git a/tests_zemu/snapshots/x-op-claim-claimable-balance/00010.png b/tests_zemu/snapshots/x-op-claim-claimable-balance/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-claim-claimable-balance/00010.png and b/tests_zemu/snapshots/x-op-claim-claimable-balance/00010.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00001.png b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00001.png and b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00002.png b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00002.png and b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00003.png b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00003.png and b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00005.png b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00005.png and b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00009.png b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00009.png and b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00009.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00011.png b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-claimable-balance/00011.png and b/tests_zemu/snapshots/x-op-clawback-claimable-balance/00011.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00001.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00001.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00001.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00002.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00002.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00002.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00003.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00003.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00003.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00005.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00005.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00005.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00007.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00007.png index 1c9b8431..dab80bee 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00007.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00007.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00008.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00008.png index a8de9ce1..2e65ee2f 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00008.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00008.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00010.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00010.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00010.png differ diff --git a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00012.png b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00012.png and b/tests_zemu/snapshots/x-op-clawback-with-muxed-from/00012.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00001.png b/tests_zemu/snapshots/x-op-clawback/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00001.png and b/tests_zemu/snapshots/x-op-clawback/00001.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00002.png b/tests_zemu/snapshots/x-op-clawback/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00002.png and b/tests_zemu/snapshots/x-op-clawback/00002.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00003.png b/tests_zemu/snapshots/x-op-clawback/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00003.png and b/tests_zemu/snapshots/x-op-clawback/00003.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00005.png b/tests_zemu/snapshots/x-op-clawback/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00005.png and b/tests_zemu/snapshots/x-op-clawback/00005.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00007.png b/tests_zemu/snapshots/x-op-clawback/00007.png index 1c9b8431..dab80bee 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00007.png and b/tests_zemu/snapshots/x-op-clawback/00007.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00008.png b/tests_zemu/snapshots/x-op-clawback/00008.png index 959dba6b..6f30fe54 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00008.png and b/tests_zemu/snapshots/x-op-clawback/00008.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00009.png b/tests_zemu/snapshots/x-op-clawback/00009.png index 296484f8..2358f44d 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00009.png and b/tests_zemu/snapshots/x-op-clawback/00009.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00010.png b/tests_zemu/snapshots/x-op-clawback/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00010.png and b/tests_zemu/snapshots/x-op-clawback/00010.png differ diff --git a/tests_zemu/snapshots/x-op-clawback/00012.png b/tests_zemu/snapshots/x-op-clawback/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-clawback/00012.png and b/tests_zemu/snapshots/x-op-clawback/00012.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00001.png b/tests_zemu/snapshots/x-op-create-account/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00001.png and b/tests_zemu/snapshots/x-op-create-account/00001.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00002.png b/tests_zemu/snapshots/x-op-create-account/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00002.png and b/tests_zemu/snapshots/x-op-create-account/00002.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00003.png b/tests_zemu/snapshots/x-op-create-account/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00003.png and b/tests_zemu/snapshots/x-op-create-account/00003.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00005.png b/tests_zemu/snapshots/x-op-create-account/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00005.png and b/tests_zemu/snapshots/x-op-create-account/00005.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00007.png b/tests_zemu/snapshots/x-op-create-account/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00007.png and b/tests_zemu/snapshots/x-op-create-account/00007.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00008.png b/tests_zemu/snapshots/x-op-create-account/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00008.png and b/tests_zemu/snapshots/x-op-create-account/00008.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00009.png b/tests_zemu/snapshots/x-op-create-account/00009.png index dba8ca3c..bbc7db02 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00009.png and b/tests_zemu/snapshots/x-op-create-account/00009.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00010.png b/tests_zemu/snapshots/x-op-create-account/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00010.png and b/tests_zemu/snapshots/x-op-create-account/00010.png differ diff --git a/tests_zemu/snapshots/x-op-create-account/00012.png b/tests_zemu/snapshots/x-op-create-account/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-create-account/00012.png and b/tests_zemu/snapshots/x-op-create-account/00012.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00001.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00001.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00002.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00002.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00003.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00003.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00005.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00005.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00008.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00008.png index ab78f5b7..37dde270 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00008.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00008.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00009.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00009.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00009.png differ diff --git a/tests_zemu/snapshots/x-op-create-claimable-balance/00011.png b/tests_zemu/snapshots/x-op-create-claimable-balance/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-create-claimable-balance/00011.png and b/tests_zemu/snapshots/x-op-create-claimable-balance/00011.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00001.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00001.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00002.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00002.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00003.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00003.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00005.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00005.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00007.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00007.png index bfcaa634..e5ddbf9f 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00007.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00008.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00008.png index 4a19f3bf..7e574b9b 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00008.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00009.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00009.png index 5cbcd2df..b85c6ed2 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00009.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00010.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00010.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00012.png b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-create-passive-sell-offer/00012.png and b/tests_zemu/snapshots/x-op-create-passive-sell-offer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00001.png b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00001.png and b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00001.png differ diff --git a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00002.png b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00002.png and b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00002.png differ diff --git a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00003.png b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00003.png and b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00003.png differ diff --git a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00005.png b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00005.png and b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00005.png differ diff --git a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00007.png b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00007.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00007.png and b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00007.png differ diff --git a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00009.png b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00009.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00009.png and b/tests_zemu/snapshots/x-op-end-sponsoring-future-reserves/00009.png differ diff --git a/tests_zemu/snapshots/x-op-inflation/00001.png b/tests_zemu/snapshots/x-op-inflation/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-inflation/00001.png and b/tests_zemu/snapshots/x-op-inflation/00001.png differ diff --git a/tests_zemu/snapshots/x-op-inflation/00002.png b/tests_zemu/snapshots/x-op-inflation/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-inflation/00002.png and b/tests_zemu/snapshots/x-op-inflation/00002.png differ diff --git a/tests_zemu/snapshots/x-op-inflation/00003.png b/tests_zemu/snapshots/x-op-inflation/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-inflation/00003.png and b/tests_zemu/snapshots/x-op-inflation/00003.png differ diff --git a/tests_zemu/snapshots/x-op-inflation/00005.png b/tests_zemu/snapshots/x-op-inflation/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-inflation/00005.png and b/tests_zemu/snapshots/x-op-inflation/00005.png differ diff --git a/tests_zemu/snapshots/x-op-inflation/00007.png b/tests_zemu/snapshots/x-op-inflation/00007.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-inflation/00007.png and b/tests_zemu/snapshots/x-op-inflation/00007.png differ diff --git a/tests_zemu/snapshots/x-op-inflation/00009.png b/tests_zemu/snapshots/x-op-inflation/00009.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-inflation/00009.png and b/tests_zemu/snapshots/x-op-inflation/00009.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00001.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00001.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00001.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00002.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00002.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00002.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00003.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00003.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00003.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00005.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00005.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00005.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00009.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00009.png index efaa904a..e61455a0 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00009.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00009.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00010.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00010.png index 541168fc..86459c96 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00010.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00010.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00012.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00012.png index 94625bde..e16ac808 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00012.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00012.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00013.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00013.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00013.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00013.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00015.png b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00015.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00015.png and b/tests_zemu/snapshots/x-op-liquidity-pool-deposit/00015.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00001.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00001.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00001.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00002.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00002.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00002.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00003.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00003.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00003.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00005.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00005.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00005.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00010.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00010.png index 38aa20f9..c58f6cbe 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00010.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00010.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00011.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00011.png index 7c7f45e9..9700e2c6 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00011.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00011.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00012.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00012.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00012.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00012.png differ diff --git a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00014.png b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00014.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00014.png and b/tests_zemu/snapshots/x-op-liquidity-pool-withdraw/00014.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00001.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00001.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00002.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00002.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00003.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00003.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00005.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00005.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00007.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00007.png index 51752fb4..9852658c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00007.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00008.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00008.png index 14e8a577..16642f17 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00008.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00008.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00009.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00009.png index cc8af917..fc2dfbba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00009.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00010.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00010.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00010.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00012.png b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-create/00012.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-create/00012.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00001.png b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00001.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00002.png b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00002.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00003.png b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00003.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00005.png b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00005.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00007.png b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00007.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00007.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00009.png b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00009.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00009.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-delete/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00001.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00001.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00002.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00002.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00003.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00003.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00005.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00005.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00007.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00007.png index 51752fb4..9852658c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00007.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00008.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00008.png index 14e8a577..16642f17 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00008.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00008.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00009.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00009.png index cc8af917..fc2dfbba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00009.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00010.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00010.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00010.png differ diff --git a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00012.png b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-buy-offer-update/00012.png and b/tests_zemu/snapshots/x-op-manage-buy-offer-update/00012.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00001.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00001.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00002.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00002.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00003.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00003.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00005.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00005.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00006.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00006.png index 89b13c14..5a9e1ab5 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00006.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00006.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00007.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00007.png index eae3dab8..9642afef 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00007.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00009.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00009.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00011.png b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00011.png and b/tests_zemu/snapshots/x-op-manage-data-add-with-unprintable-data/00011.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00001.png b/tests_zemu/snapshots/x-op-manage-data-add/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00001.png and b/tests_zemu/snapshots/x-op-manage-data-add/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00002.png b/tests_zemu/snapshots/x-op-manage-data-add/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00002.png and b/tests_zemu/snapshots/x-op-manage-data-add/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00003.png b/tests_zemu/snapshots/x-op-manage-data-add/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00003.png and b/tests_zemu/snapshots/x-op-manage-data-add/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00005.png b/tests_zemu/snapshots/x-op-manage-data-add/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00005.png and b/tests_zemu/snapshots/x-op-manage-data-add/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00006.png b/tests_zemu/snapshots/x-op-manage-data-add/00006.png index 89b13c14..5a9e1ab5 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00006.png and b/tests_zemu/snapshots/x-op-manage-data-add/00006.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00007.png b/tests_zemu/snapshots/x-op-manage-data-add/00007.png index eae3dab8..9642afef 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00007.png and b/tests_zemu/snapshots/x-op-manage-data-add/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00010.png b/tests_zemu/snapshots/x-op-manage-data-add/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00010.png and b/tests_zemu/snapshots/x-op-manage-data-add/00010.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-add/00012.png b/tests_zemu/snapshots/x-op-manage-data-add/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-add/00012.png and b/tests_zemu/snapshots/x-op-manage-data-add/00012.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-remove/00001.png b/tests_zemu/snapshots/x-op-manage-data-remove/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-remove/00001.png and b/tests_zemu/snapshots/x-op-manage-data-remove/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-remove/00002.png b/tests_zemu/snapshots/x-op-manage-data-remove/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-remove/00002.png and b/tests_zemu/snapshots/x-op-manage-data-remove/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-remove/00003.png b/tests_zemu/snapshots/x-op-manage-data-remove/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-remove/00003.png and b/tests_zemu/snapshots/x-op-manage-data-remove/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-remove/00005.png b/tests_zemu/snapshots/x-op-manage-data-remove/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-remove/00005.png and b/tests_zemu/snapshots/x-op-manage-data-remove/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-remove/00008.png b/tests_zemu/snapshots/x-op-manage-data-remove/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-remove/00008.png and b/tests_zemu/snapshots/x-op-manage-data-remove/00008.png differ diff --git a/tests_zemu/snapshots/x-op-manage-data-remove/00010.png b/tests_zemu/snapshots/x-op-manage-data-remove/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-data-remove/00010.png and b/tests_zemu/snapshots/x-op-manage-data-remove/00010.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00001.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00001.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00002.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00002.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00003.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00003.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00005.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00005.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00007.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00007.png index bfcaa634..e5ddbf9f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00007.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00008.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00008.png index 4a19f3bf..7e574b9b 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00008.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00008.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00009.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00009.png index 5cbcd2df..b85c6ed2 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00009.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00010.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00010.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00010.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00012.png b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-create/00012.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-create/00012.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00001.png b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00001.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00002.png b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00002.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00003.png b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00003.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00005.png b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00005.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00007.png b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00007.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00007.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00009.png b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00009.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00009.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-delete/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00001.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00001.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00001.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00002.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00002.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00002.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00003.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00003.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00003.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00005.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00005.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00005.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00007.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00007.png index bfcaa634..e5ddbf9f 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00007.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00007.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00008.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00008.png index 4a19f3bf..7e574b9b 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00008.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00008.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00009.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00009.png index 5cbcd2df..b85c6ed2 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00009.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00009.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00010.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00010.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00010.png differ diff --git a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00012.png b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-manage-sell-offer-update/00012.png and b/tests_zemu/snapshots/x-op-manage-sell-offer-update/00012.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00001.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00001.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00001.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00002.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00002.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00002.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00003.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00003.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00003.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00005.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00005.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00005.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00006.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00006.png index f40f4d68..48abb447 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00006.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00006.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00007.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00007.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00007.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00008.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00008.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00008.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00009.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00009.png index 3aaecbbe..1bce7f56 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00009.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00009.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00010.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00010.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00010.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00012.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00012.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-empty-path/00012.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00001.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00001.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00002.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00002.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00003.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00003.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00005.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00005.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00006.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00006.png index f40f4d68..48abb447 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00006.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00006.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00007.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00007.png index ea1b11a7..a9670471 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00007.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00007.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00009.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00009.png index 3aaecbbe..1bce7f56 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00009.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00009.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00010.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00010.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00010.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00012.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00012.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive-with-muxed-destination/00012.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00001.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00001.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00001.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00002.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00002.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00002.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00003.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00003.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00003.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00005.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00005.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00005.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00006.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00006.png index f40f4d68..48abb447 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00006.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00006.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00007.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00007.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00007.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00008.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00008.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00008.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00009.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00009.png index 3aaecbbe..1bce7f56 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00009.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00009.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00010.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00010.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00010.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00012.png b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-receive/00012.png and b/tests_zemu/snapshots/x-op-path-payment-strict-receive/00012.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00001.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00001.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00001.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00002.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00002.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00002.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00003.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00003.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00003.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00005.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00005.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00005.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00006.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00006.png index 491f48d5..36f586e9 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00006.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00006.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00007.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00007.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00007.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00008.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00008.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00008.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00009.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00009.png index 618d9038..3f7d321c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00009.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00009.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00010.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00010.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00010.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00012.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00012.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-empty-path/00012.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00001.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00001.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00002.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00002.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00003.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00003.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00005.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00005.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00006.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00006.png index 491f48d5..36f586e9 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00006.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00006.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00007.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00007.png index ea1b11a7..a9670471 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00007.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00007.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00009.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00009.png index 618d9038..3f7d321c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00009.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00009.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00010.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00010.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00010.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00012.png b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00012.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send-with-muxed-destination/00012.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00001.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00001.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00001.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00002.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00002.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00002.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00003.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00003.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00003.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00005.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00005.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00005.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00006.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00006.png index 491f48d5..36f586e9 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00006.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00006.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00007.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00007.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00007.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00008.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00008.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00008.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00009.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00009.png index 618d9038..3f7d321c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00009.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00009.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00010.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00010.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00010.png differ diff --git a/tests_zemu/snapshots/x-op-path-payment-strict-send/00012.png b/tests_zemu/snapshots/x-op-path-payment-strict-send/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-path-payment-strict-send/00012.png and b/tests_zemu/snapshots/x-op-path-payment-strict-send/00012.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00001.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00001.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00001.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00002.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00002.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00002.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00003.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00003.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00003.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00005.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00005.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00005.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00006.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00006.png index 55792351..6451ba3d 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00006.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00006.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00007.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00007.png index 76770bb5..e5bf63ee 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00007.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00007.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00008.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00008.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00008.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00009.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00009.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00009.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00010.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00010.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00010.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00012.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00012.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum12/00012.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00001.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00001.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00001.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00002.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00002.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00002.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00003.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00003.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00003.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00005.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00005.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00005.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00006.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00006.png index 8a547ece..562b6383 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00006.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00006.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00007.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00007.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00007.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00008.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00008.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00008.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00009.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00009.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00009.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00011.png b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00011.png and b/tests_zemu/snapshots/x-op-payment-asset-alphanum4/00011.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00001.png b/tests_zemu/snapshots/x-op-payment-asset-native/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00001.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00001.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00002.png b/tests_zemu/snapshots/x-op-payment-asset-native/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00002.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00002.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00003.png b/tests_zemu/snapshots/x-op-payment-asset-native/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00003.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00003.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00005.png b/tests_zemu/snapshots/x-op-payment-asset-native/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00005.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00005.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00006.png b/tests_zemu/snapshots/x-op-payment-asset-native/00006.png index a8a420c3..3729654f 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00006.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00006.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00007.png b/tests_zemu/snapshots/x-op-payment-asset-native/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00007.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00007.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00008.png b/tests_zemu/snapshots/x-op-payment-asset-native/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00008.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00008.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00009.png b/tests_zemu/snapshots/x-op-payment-asset-native/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00009.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00009.png differ diff --git a/tests_zemu/snapshots/x-op-payment-asset-native/00011.png b/tests_zemu/snapshots/x-op-payment-asset-native/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-payment-asset-native/00011.png and b/tests_zemu/snapshots/x-op-payment-asset-native/00011.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00001.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00001.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00001.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00002.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00002.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00002.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00003.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00003.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00003.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00005.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00005.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00005.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00006.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00006.png index a8a420c3..3729654f 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00006.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00006.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00007.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00007.png index ea1b11a7..a9670471 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00007.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00007.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00009.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00009.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00009.png differ diff --git a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00011.png b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00011.png and b/tests_zemu/snapshots/x-op-payment-with-muxed-destination/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00009.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00009.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00009.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-account/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00006.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00006.png index a3a1325a..99e87238 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00006.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00006.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00009.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00009.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00009.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-claimable-balance/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00013.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00013.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-data/00013.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00006.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00006.png index 4c4b912b..f7f0cba7 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00006.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00009.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00009.png index b2883ac9..a0d35f57 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00009.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00010.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00010.png index 3a1749fa..95680b45 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00010.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00011.png index 00cf1a83..4ef06745 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00012.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00012.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00012.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00014.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00014.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00014.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-ed25519-public-key-signer/00014.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00006.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00006.png index 4c4b912b..f7f0cba7 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00006.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00009.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00009.png index bfdef21d..11808978 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00009.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00010.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00010.png index 609f80a1..621b579f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00010.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00011.png index d0c4c91c..941a71c6 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00012.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00012.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00012.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00014.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00014.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00014.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-hash-x-signer/00014.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00006.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00006.png index 183ef322..e1fbe3a5 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00006.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00006.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00009.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00009.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00009.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-liquidity-pool/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00007.png index 0d5cf21b..e210407c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00008.png index 9a9290c9..a7035ad6 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00010.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00010.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00012.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00012.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-offer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00006.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00006.png index 4c4b912b..f7f0cba7 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00006.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00009.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00009.png index bc66f86d..25bf2d60 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00009.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00010.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00010.png index a443dd67..6cac010f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00010.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00011.png index 1b948fdb..0e99d4b1 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00012.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00012.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00012.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00014.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00014.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00014.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-pre-auth-tx-signer/00014.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00010.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00010.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00010.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00012.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00012.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-asset/00012.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00001.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00002.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00003.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00005.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00007.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00007.png index 62df4806..6f88341c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00007.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00007.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00008.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00008.png index c5b4dd7b..3025a242 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00008.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00008.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00011.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00011.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00011.png differ diff --git a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00013.png b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00013.png and b/tests_zemu/snapshots/x-op-revoke-sponsorship-trust-line-with-liquidity-pool-id/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00007.png index b2110819..884aac43 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00008.png index f90bd1df..f38dd797 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00010.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00010.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00012.png b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00012.png and b/tests_zemu/snapshots/x-op-set-options-add-ed25519-signer-payload-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00007.png index 734052eb..ec26c879 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00008.png index 609f80a1..621b579f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00009.png index d0c4c91c..941a71c6 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00011.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00011.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00013.png b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00013.png and b/tests_zemu/snapshots/x-op-set-options-add-hash-x-signer/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00007.png index 07f22e4c..72467465 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00008.png index a443dd67..6cac010f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00009.png index 1b948fdb..0e99d4b1 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00011.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00011.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00013.png b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00013.png and b/tests_zemu/snapshots/x-op-set-options-add-pre-auth-tx-signer/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00007.png index 2b30765f..f07c1a03 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00008.png index be99bd3d..ec8cfbbf 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00009.png index bd1c2d09..206bc02d 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00011.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00011.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00013.png b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00013.png and b/tests_zemu/snapshots/x-op-set-options-add-public-key-signer/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00007.png index 070462d1..c49ce350 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00008.png index f90bd1df..f38dd797 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00011.png b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00011.png and b/tests_zemu/snapshots/x-op-set-options-remove-ed25519-signer-payload-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00007.png index 745c081f..32e153b5 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00008.png index 609f80a1..621b579f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00009.png index d0c4c91c..941a71c6 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00010.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00010.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00012.png b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00012.png and b/tests_zemu/snapshots/x-op-set-options-remove-hash-x-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00007.png index 2379be74..7ff89bab 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00008.png index a443dd67..6cac010f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00009.png index 1b948fdb..0e99d4b1 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00010.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00010.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00012.png b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00012.png and b/tests_zemu/snapshots/x-op-set-options-remove-pre-auth-tx-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00001.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00001.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00002.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00002.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00003.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00003.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00005.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00005.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00006.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00006.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00007.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00007.png index 73ca7a6a..abce542d 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00007.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00008.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00008.png index be99bd3d..ec8cfbbf 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00008.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00009.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00009.png index bd1c2d09..206bc02d 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00009.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00010.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00010.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00012.png b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00012.png and b/tests_zemu/snapshots/x-op-set-options-remove-public-key-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00001.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00001.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00002.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00002.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00003.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00003.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00005.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00005.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00006.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00006.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00007.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00007.png index 9d7a4ccb..7d8c0c89 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00007.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00008.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00008.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00010.png b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options-with-empty-body/00010.png and b/tests_zemu/snapshots/x-op-set-options-with-empty-body/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00001.png b/tests_zemu/snapshots/x-op-set-options/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00001.png and b/tests_zemu/snapshots/x-op-set-options/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00002.png b/tests_zemu/snapshots/x-op-set-options/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00002.png and b/tests_zemu/snapshots/x-op-set-options/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00003.png b/tests_zemu/snapshots/x-op-set-options/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00003.png and b/tests_zemu/snapshots/x-op-set-options/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00005.png b/tests_zemu/snapshots/x-op-set-options/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00005.png and b/tests_zemu/snapshots/x-op-set-options/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00006.png b/tests_zemu/snapshots/x-op-set-options/00006.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00006.png and b/tests_zemu/snapshots/x-op-set-options/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00007.png b/tests_zemu/snapshots/x-op-set-options/00007.png index a1792be7..3213b46b 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00007.png and b/tests_zemu/snapshots/x-op-set-options/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00008.png b/tests_zemu/snapshots/x-op-set-options/00008.png index 1b8b48f4..902e8f54 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00008.png and b/tests_zemu/snapshots/x-op-set-options/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00009.png b/tests_zemu/snapshots/x-op-set-options/00009.png index 27de4247..d564e6a2 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00009.png and b/tests_zemu/snapshots/x-op-set-options/00009.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00010.png b/tests_zemu/snapshots/x-op-set-options/00010.png index d67ca0d9..2d6e187a 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00010.png and b/tests_zemu/snapshots/x-op-set-options/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00016.png b/tests_zemu/snapshots/x-op-set-options/00016.png index 2b30765f..f07c1a03 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00016.png and b/tests_zemu/snapshots/x-op-set-options/00016.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00017.png b/tests_zemu/snapshots/x-op-set-options/00017.png index 3a1749fa..95680b45 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00017.png and b/tests_zemu/snapshots/x-op-set-options/00017.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00018.png b/tests_zemu/snapshots/x-op-set-options/00018.png index 00cf1a83..4ef06745 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00018.png and b/tests_zemu/snapshots/x-op-set-options/00018.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00020.png b/tests_zemu/snapshots/x-op-set-options/00020.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00020.png and b/tests_zemu/snapshots/x-op-set-options/00020.png differ diff --git a/tests_zemu/snapshots/x-op-set-options/00022.png b/tests_zemu/snapshots/x-op-set-options/00022.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-options/00022.png and b/tests_zemu/snapshots/x-op-set-options/00022.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00006.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00006.png index fe37ee8d..b4be404e 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00006.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00007.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00007.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00008.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00008.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00010.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00010.png index a118eeb0..e391b9bc 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00010.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00011.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00011.png index 4b70bf88..6f105756 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00011.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00012.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00012.png index fe5760ad..7d409ef2 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00012.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00013.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00013.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00013.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00015.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00015.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00015.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-and-clawback-enabled/00015.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00006.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00006.png index fe37ee8d..b4be404e 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00006.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00007.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00007.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00008.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00008.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00010.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00010.png index bc3aa781..8eed55d9 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00010.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00011.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00011.png index 20059ee4..b9b2f944 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00011.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00012.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00012.png index 457aa4d5..d92b3a3b 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00012.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00013.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00013.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00013.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00015.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00015.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00015.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized-to-maintain-liabilities/00015.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00001.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00001.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00002.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00002.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00003.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00003.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00005.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00005.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00006.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00006.png index fe37ee8d..b4be404e 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00006.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00007.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00007.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00008.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00008.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00010.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00010.png index 568aa65d..90f730a1 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00010.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00011.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00011.png index d86bb945..e4c766a1 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00011.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00012.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00012.png index 4ca40c14..bfcbb6f8 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00012.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00013.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00013.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00013.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00015.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00015.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00015.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-authorized/00015.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00001.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00001.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00001.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00002.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00002.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00002.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00003.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00003.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00003.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00005.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00005.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00005.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00006.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00006.png index fe37ee8d..b4be404e 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00006.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00006.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00007.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00007.png index 91837361..5cdc8b87 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00007.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00007.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00008.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00008.png index c7b05375..f33ba708 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00008.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00008.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00010.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00010.png index dde0ee89..2169b22a 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00010.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00010.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00011.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00011.png index 0eab1d25..51c1dec3 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00011.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00011.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00012.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00012.png index 10179d51..2a42a3d3 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00012.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00012.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00013.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00013.png index dd790245..c439338e 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00013.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00013.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00014.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00014.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00014.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00014.png differ diff --git a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00016.png b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00016.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00016.png and b/tests_zemu/snapshots/x-op-set-trust-line-flags-unauthorized/00016.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png index 7dbb4d7a..b0d30635 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00006.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00006.png index 5f9656de..22740f21 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00006.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00006.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00008.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00008.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00009.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00009.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00009.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00009.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00010.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00010.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00010.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00010.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00012.png b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00012.png and b/tests_zemu/snapshots/x-op-source-omit-op-source-equal-signer-not-equal-tx-source/00012.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png index 188a9b9e..d7f46534 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00006.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00006.png index 7f4ebd9c..429130d0 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00006.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00008.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00009.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00009.png index 01b51481..24a69a05 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00009.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00010.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00010.png index a72ea709..0e027d6f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00012.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00012.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-muxed-source-equal-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png index 188a9b9e..d7f46534 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00006.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00006.png index 7f4ebd9c..429130d0 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00006.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00008.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00009.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00009.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00009.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00010.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00010.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00012.png b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00012.png and b/tests_zemu/snapshots/x-op-source-omit-tx-muxed-source-equal-op-source-equal-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00005.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00007.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00007.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00007.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00008.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00008.png index 01b51481..24a69a05 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00009.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00009.png index a72ea709..0e027d6f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00009.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00011.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00011.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-muxed-source-equal-signer/00011.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00005.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00007.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00007.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00007.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00008.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00010.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png index 7dbb4d7a..b0d30635 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00006.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00006.png index 5f9656de..22740f21 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00006.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00008.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00008.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00009.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00009.png index d7e84285..a365da7b 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00009.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00010.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00010.png index 6aaffb04..982bd122 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00010.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00012.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00012.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-op-source-not-equal-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00001.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00002.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00003.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00005.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00005.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00005.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00007.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00007.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00007.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00007.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00008.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00008.png index d7e84285..a365da7b 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00008.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00008.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00009.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00009.png index 6aaffb04..982bd122 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00009.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00009.png differ diff --git a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00011.png b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00011.png and b/tests_zemu/snapshots/x-op-source-omit-tx-source-equal-signer-not-equal-op-source/00011.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00001.png b/tests_zemu/snapshots/x-op-with-empty-source/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00001.png and b/tests_zemu/snapshots/x-op-with-empty-source/00001.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00002.png b/tests_zemu/snapshots/x-op-with-empty-source/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00002.png and b/tests_zemu/snapshots/x-op-with-empty-source/00002.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00003.png b/tests_zemu/snapshots/x-op-with-empty-source/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00003.png and b/tests_zemu/snapshots/x-op-with-empty-source/00003.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00005.png b/tests_zemu/snapshots/x-op-with-empty-source/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00005.png and b/tests_zemu/snapshots/x-op-with-empty-source/00005.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00006.png b/tests_zemu/snapshots/x-op-with-empty-source/00006.png index a8a420c3..3729654f 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00006.png and b/tests_zemu/snapshots/x-op-with-empty-source/00006.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00007.png b/tests_zemu/snapshots/x-op-with-empty-source/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00007.png and b/tests_zemu/snapshots/x-op-with-empty-source/00007.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00008.png b/tests_zemu/snapshots/x-op-with-empty-source/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00008.png and b/tests_zemu/snapshots/x-op-with-empty-source/00008.png differ diff --git a/tests_zemu/snapshots/x-op-with-empty-source/00010.png b/tests_zemu/snapshots/x-op-with-empty-source/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-with-empty-source/00010.png and b/tests_zemu/snapshots/x-op-with-empty-source/00010.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00001.png b/tests_zemu/snapshots/x-op-with-muxed-source/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00001.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00001.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00002.png b/tests_zemu/snapshots/x-op-with-muxed-source/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00002.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00002.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00003.png b/tests_zemu/snapshots/x-op-with-muxed-source/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00003.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00003.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00005.png b/tests_zemu/snapshots/x-op-with-muxed-source/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00005.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00005.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00006.png b/tests_zemu/snapshots/x-op-with-muxed-source/00006.png index a8a420c3..3729654f 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00006.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00006.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00007.png b/tests_zemu/snapshots/x-op-with-muxed-source/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00007.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00007.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00008.png b/tests_zemu/snapshots/x-op-with-muxed-source/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00008.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00008.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00009.png b/tests_zemu/snapshots/x-op-with-muxed-source/00009.png index 01b51481..24a69a05 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00009.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00009.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00010.png b/tests_zemu/snapshots/x-op-with-muxed-source/00010.png index a72ea709..0e027d6f 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00010.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00010.png differ diff --git a/tests_zemu/snapshots/x-op-with-muxed-source/00012.png b/tests_zemu/snapshots/x-op-with-muxed-source/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-op-with-muxed-source/00012.png and b/tests_zemu/snapshots/x-op-with-muxed-source/00012.png differ diff --git a/tests_zemu/snapshots/x-public-key-approve/00001.png b/tests_zemu/snapshots/x-public-key-approve/00001.png index efb147a7..671b365f 100644 Binary files a/tests_zemu/snapshots/x-public-key-approve/00001.png and b/tests_zemu/snapshots/x-public-key-approve/00001.png differ diff --git a/tests_zemu/snapshots/x-public-key-approve/00002.png b/tests_zemu/snapshots/x-public-key-approve/00002.png index 9d9f6dbf..5c056861 100644 Binary files a/tests_zemu/snapshots/x-public-key-approve/00002.png and b/tests_zemu/snapshots/x-public-key-approve/00002.png differ diff --git a/tests_zemu/snapshots/x-public-key-approve/00004.png b/tests_zemu/snapshots/x-public-key-approve/00004.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-public-key-approve/00004.png and b/tests_zemu/snapshots/x-public-key-approve/00004.png differ diff --git a/tests_zemu/snapshots/x-public-key-reject/00001.png b/tests_zemu/snapshots/x-public-key-reject/00001.png index efb147a7..671b365f 100644 Binary files a/tests_zemu/snapshots/x-public-key-reject/00001.png and b/tests_zemu/snapshots/x-public-key-reject/00001.png differ diff --git a/tests_zemu/snapshots/x-public-key-reject/00002.png b/tests_zemu/snapshots/x-public-key-reject/00002.png index 9d9f6dbf..5c056861 100644 Binary files a/tests_zemu/snapshots/x-public-key-reject/00002.png and b/tests_zemu/snapshots/x-public-key-reject/00002.png differ diff --git a/tests_zemu/snapshots/x-public-key-reject/00004.png b/tests_zemu/snapshots/x-public-key-reject/00004.png index c9222461..e90cd9db 100644 Binary files a/tests_zemu/snapshots/x-public-key-reject/00004.png and b/tests_zemu/snapshots/x-public-key-reject/00004.png differ diff --git a/tests_zemu/snapshots/x-public-key-reject/00005.png b/tests_zemu/snapshots/x-public-key-reject/00005.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-public-key-reject/00005.png and b/tests_zemu/snapshots/x-public-key-reject/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00001.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00001.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00002.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00002.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00003.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00003.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00004.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00004.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00004.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00005.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00005.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00005.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00006.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00006.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00006.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00007.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00007.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00007.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00008.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00008.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00010.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00010.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-one-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00001.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00001.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00002.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00002.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00003.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00003.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00004.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00004.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00004.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00005.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00005.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00005.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00006.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00006.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00006.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00007.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00007.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00007.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00008.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00008.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00010.png b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00010.png and b/tests_zemu/snapshots/x-tx-cond-extra-signers-with-two-signers/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00001.png b/tests_zemu/snapshots/x-tx-cond-is-none/00001.png index 3b4f6621..552a295a 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00001.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00002.png b/tests_zemu/snapshots/x-tx-cond-is-none/00002.png index 2f40c037..3d4b9dfa 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00002.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00003.png b/tests_zemu/snapshots/x-tx-cond-is-none/00003.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00003.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00004.png b/tests_zemu/snapshots/x-tx-cond-is-none/00004.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00004.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00005.png b/tests_zemu/snapshots/x-tx-cond-is-none/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00005.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00006.png b/tests_zemu/snapshots/x-tx-cond-is-none/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00006.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00007.png b/tests_zemu/snapshots/x-tx-cond-is-none/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00007.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00008.png b/tests_zemu/snapshots/x-tx-cond-is-none/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00008.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00009.png b/tests_zemu/snapshots/x-tx-cond-is-none/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00009.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-is-none/00011.png b/tests_zemu/snapshots/x-tx-cond-is-none/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-is-none/00011.png and b/tests_zemu/snapshots/x-tx-cond-is-none/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00001.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00001.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00002.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00002.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00003.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00003.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00004.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00004.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00004.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00005.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00005.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00005.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00006.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00006.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00006.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00007.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00007.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00007.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00008.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00008.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00010.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00010.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-are-zero/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00001.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00001.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00002.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00002.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00003.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00003.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00004.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00004.png index 749f55f1..312fd9ce 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00004.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00005.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00005.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00006.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00006.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00007.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00007.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00008.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00008.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00009.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00009.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00011.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00011.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-max-is-zero/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00001.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00001.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00002.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00002.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00003.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00003.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00004.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00004.png index 1c1d9d2a..c776ed20 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00004.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00005.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00005.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00006.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00006.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00007.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00007.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00008.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00008.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00009.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00009.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00011.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00011.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds-min-is-zero/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00001.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00001.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00002.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00002.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00003.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00003.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00004.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00004.png index 749f55f1..312fd9ce 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00004.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00005.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00005.png index 1c1d9d2a..c776ed20 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00005.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00006.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00006.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00006.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00007.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00007.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00007.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00008.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00008.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00009.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00009.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00010.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00010.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00012.png b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00012.png and b/tests_zemu/snapshots/x-tx-cond-ledger-bounds/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00001.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00001.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00002.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00002.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00003.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00003.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00004.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00004.png index 9d363a86..08155608 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00004.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00005.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00005.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00006.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00006.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00007.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00007.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00008.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00008.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00009.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00009.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00011.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00011.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-age/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00001.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00001.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00002.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00002.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00003.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00003.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00004.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00004.png index ad30db8e..4c60fd17 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00004.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00005.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00005.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00006.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00006.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00007.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00007.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00008.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00008.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00009.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00009.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00011.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00011.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence-ledger-gap/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00001.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00001.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00002.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00002.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00003.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00003.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00004.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00004.png index 693ad27f..2c2bbfe4 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00004.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00005.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00005.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00006.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00006.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00007.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00007.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00008.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00008.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00009.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00009.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00011.png b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00011.png and b/tests_zemu/snapshots/x-tx-cond-min-account-sequence/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00001.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00001.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00002.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00002.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00003.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00003.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00004.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00004.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00004.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00005.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00005.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00005.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00006.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00006.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00006.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00007.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00007.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00007.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00008.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00008.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00010.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00010.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-are-zero/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00001.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00001.png index 3b4f6621..552a295a 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00001.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00002.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00002.png index 2f40c037..3d4b9dfa 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00002.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00003.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00003.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00003.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00004.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00004.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00004.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00005.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00005.png index 749f55f1..312fd9ce 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00005.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00006.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00006.png index 1c1d9d2a..c776ed20 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00006.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00007.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00007.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00007.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00008.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00008.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00008.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00009.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00009.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00009.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00010.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00010.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00010.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00011.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00011.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00011.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00013.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00013.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-is-none/00013.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00001.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00001.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00002.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00002.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00003.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00003.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00005.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00005.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00006.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00006.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00007.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00007.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00008.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00008.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00009.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00009.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00011.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00011.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-max-is-zero/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00001.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00001.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00002.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00002.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00003.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00003.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00005.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00005.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00006.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00006.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00007.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00007.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00008.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00008.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00009.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00009.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00011.png b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00011.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds-min-is-zero/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00001.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00001.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00002.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00002.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00003.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00003.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00006.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00006.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00006.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00007.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00007.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00007.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00008.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00008.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00009.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00009.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00010.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00010.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-time-bounds/00012.png b/tests_zemu/snapshots/x-tx-cond-time-bounds/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-time-bounds/00012.png and b/tests_zemu/snapshots/x-tx-cond-time-bounds/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00001.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00001.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00002.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00002.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00003.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00003.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00006.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00006.png index 749f55f1..312fd9ce 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00006.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00007.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00007.png index 1c1d9d2a..c776ed20 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00007.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00008.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00008.png index 693ad27f..2c2bbfe4 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00008.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00009.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00009.png index 9d363a86..08155608 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00009.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00010.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00010.png index ad30db8e..4c60fd17 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00010.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00011.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00011.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00011.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00012.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00012.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00012.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00013.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00013.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00013.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00013.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00014.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00014.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00014.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00014.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00015.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00015.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00015.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00015.png differ diff --git a/tests_zemu/snapshots/x-tx-cond-with-all-items/00017.png b/tests_zemu/snapshots/x-tx-cond-with-all-items/00017.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-cond-with-all-items/00017.png and b/tests_zemu/snapshots/x-tx-cond-with-all-items/00017.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00001.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00001.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00002.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00002.png index ca567cf5..8041a598 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00002.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00003.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00003.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00005.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00005.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00007.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00007.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00007.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00008.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00008.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00009.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00009.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00010.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00010.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00012.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00012.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00012.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00013.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00013.png index 349bce7a..40df6355 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00013.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00013.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00014.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00014.png index a19cd2a9..e8214054 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00014.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00014.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00015.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00015.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00015.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00015.png differ diff --git a/tests_zemu/snapshots/x-tx-custom-base-fee/00017.png b/tests_zemu/snapshots/x-tx-custom-base-fee/00017.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-custom-base-fee/00017.png and b/tests_zemu/snapshots/x-tx-custom-base-fee/00017.png differ diff --git a/tests_zemu/snapshots/x-tx-hide-sequence/00001.png b/tests_zemu/snapshots/x-tx-hide-sequence/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-hide-sequence/00001.png and b/tests_zemu/snapshots/x-tx-hide-sequence/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-hide-sequence/00002.png b/tests_zemu/snapshots/x-tx-hide-sequence/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-hide-sequence/00002.png and b/tests_zemu/snapshots/x-tx-hide-sequence/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-hide-sequence/00004.png b/tests_zemu/snapshots/x-tx-hide-sequence/00004.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-hide-sequence/00004.png and b/tests_zemu/snapshots/x-tx-hide-sequence/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-hide-sequence/00006.png b/tests_zemu/snapshots/x-tx-hide-sequence/00006.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-hide-sequence/00006.png and b/tests_zemu/snapshots/x-tx-hide-sequence/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-hide-sequence/00007.png b/tests_zemu/snapshots/x-tx-hide-sequence/00007.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-hide-sequence/00007.png and b/tests_zemu/snapshots/x-tx-hide-sequence/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-hide-sequence/00009.png b/tests_zemu/snapshots/x-tx-hide-sequence/00009.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-hide-sequence/00009.png and b/tests_zemu/snapshots/x-tx-hide-sequence/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00001.png b/tests_zemu/snapshots/x-tx-memo-hash/00001.png index b7d5d01d..7807e491 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00001.png and b/tests_zemu/snapshots/x-tx-memo-hash/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00002.png b/tests_zemu/snapshots/x-tx-memo-hash/00002.png index 50e58d3e..67e4a3fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00002.png and b/tests_zemu/snapshots/x-tx-memo-hash/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00003.png b/tests_zemu/snapshots/x-tx-memo-hash/00003.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00003.png and b/tests_zemu/snapshots/x-tx-memo-hash/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00004.png b/tests_zemu/snapshots/x-tx-memo-hash/00004.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00004.png and b/tests_zemu/snapshots/x-tx-memo-hash/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00006.png b/tests_zemu/snapshots/x-tx-memo-hash/00006.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00006.png and b/tests_zemu/snapshots/x-tx-memo-hash/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00007.png b/tests_zemu/snapshots/x-tx-memo-hash/00007.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00007.png and b/tests_zemu/snapshots/x-tx-memo-hash/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00008.png b/tests_zemu/snapshots/x-tx-memo-hash/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00008.png and b/tests_zemu/snapshots/x-tx-memo-hash/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00009.png b/tests_zemu/snapshots/x-tx-memo-hash/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00009.png and b/tests_zemu/snapshots/x-tx-memo-hash/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00010.png b/tests_zemu/snapshots/x-tx-memo-hash/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00010.png and b/tests_zemu/snapshots/x-tx-memo-hash/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-hash/00012.png b/tests_zemu/snapshots/x-tx-memo-hash/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-hash/00012.png and b/tests_zemu/snapshots/x-tx-memo-hash/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00001.png b/tests_zemu/snapshots/x-tx-memo-id/00001.png index 95152b0f..8daeba9a 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00001.png and b/tests_zemu/snapshots/x-tx-memo-id/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00002.png b/tests_zemu/snapshots/x-tx-memo-id/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00002.png and b/tests_zemu/snapshots/x-tx-memo-id/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00003.png b/tests_zemu/snapshots/x-tx-memo-id/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00003.png and b/tests_zemu/snapshots/x-tx-memo-id/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00005.png b/tests_zemu/snapshots/x-tx-memo-id/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00005.png and b/tests_zemu/snapshots/x-tx-memo-id/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00006.png b/tests_zemu/snapshots/x-tx-memo-id/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00006.png and b/tests_zemu/snapshots/x-tx-memo-id/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00007.png b/tests_zemu/snapshots/x-tx-memo-id/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00007.png and b/tests_zemu/snapshots/x-tx-memo-id/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00008.png b/tests_zemu/snapshots/x-tx-memo-id/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00008.png and b/tests_zemu/snapshots/x-tx-memo-id/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00009.png b/tests_zemu/snapshots/x-tx-memo-id/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00009.png and b/tests_zemu/snapshots/x-tx-memo-id/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-id/00011.png b/tests_zemu/snapshots/x-tx-memo-id/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-id/00011.png and b/tests_zemu/snapshots/x-tx-memo-id/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00001.png b/tests_zemu/snapshots/x-tx-memo-none/00001.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00001.png and b/tests_zemu/snapshots/x-tx-memo-none/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00002.png b/tests_zemu/snapshots/x-tx-memo-none/00002.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00002.png and b/tests_zemu/snapshots/x-tx-memo-none/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00004.png b/tests_zemu/snapshots/x-tx-memo-none/00004.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00004.png and b/tests_zemu/snapshots/x-tx-memo-none/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00005.png b/tests_zemu/snapshots/x-tx-memo-none/00005.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00005.png and b/tests_zemu/snapshots/x-tx-memo-none/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00006.png b/tests_zemu/snapshots/x-tx-memo-none/00006.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00006.png and b/tests_zemu/snapshots/x-tx-memo-none/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00007.png b/tests_zemu/snapshots/x-tx-memo-none/00007.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00007.png and b/tests_zemu/snapshots/x-tx-memo-none/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00008.png b/tests_zemu/snapshots/x-tx-memo-none/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00008.png and b/tests_zemu/snapshots/x-tx-memo-none/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-none/00010.png b/tests_zemu/snapshots/x-tx-memo-none/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-none/00010.png and b/tests_zemu/snapshots/x-tx-memo-none/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00001.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00001.png index 3b4f6621..552a295a 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00001.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00002.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00002.png index 2f40c037..3d4b9dfa 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00002.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00003.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00003.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00003.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00004.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00004.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00004.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00006.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00006.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00006.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00007.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00007.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00007.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00008.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00008.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00009.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00009.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00010.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00010.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-return-hash/00012.png b/tests_zemu/snapshots/x-tx-memo-return-hash/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-return-hash/00012.png and b/tests_zemu/snapshots/x-tx-memo-return-hash/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00001.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00001.png index c9e7fe42..2f370633 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00001.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00002.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00002.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00003.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00003.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00005.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00005.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00006.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00006.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00007.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00007.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00008.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00008.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00009.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00009.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00011.png b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text-unprintable/00011.png and b/tests_zemu/snapshots/x-tx-memo-text-unprintable/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00001.png b/tests_zemu/snapshots/x-tx-memo-text/00001.png index 54eefaee..7c7dbed5 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00001.png and b/tests_zemu/snapshots/x-tx-memo-text/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00002.png b/tests_zemu/snapshots/x-tx-memo-text/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00002.png and b/tests_zemu/snapshots/x-tx-memo-text/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00003.png b/tests_zemu/snapshots/x-tx-memo-text/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00003.png and b/tests_zemu/snapshots/x-tx-memo-text/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00005.png b/tests_zemu/snapshots/x-tx-memo-text/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00005.png and b/tests_zemu/snapshots/x-tx-memo-text/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00006.png b/tests_zemu/snapshots/x-tx-memo-text/00006.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00006.png and b/tests_zemu/snapshots/x-tx-memo-text/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00007.png b/tests_zemu/snapshots/x-tx-memo-text/00007.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00007.png and b/tests_zemu/snapshots/x-tx-memo-text/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00008.png b/tests_zemu/snapshots/x-tx-memo-text/00008.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00008.png and b/tests_zemu/snapshots/x-tx-memo-text/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00009.png b/tests_zemu/snapshots/x-tx-memo-text/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00009.png and b/tests_zemu/snapshots/x-tx-memo-text/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-memo-text/00011.png b/tests_zemu/snapshots/x-tx-memo-text/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-memo-text/00011.png and b/tests_zemu/snapshots/x-tx-memo-text/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00001.png b/tests_zemu/snapshots/x-tx-multi-operations/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00001.png and b/tests_zemu/snapshots/x-tx-multi-operations/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00002.png b/tests_zemu/snapshots/x-tx-multi-operations/00002.png index 89ed6634..709af206 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00002.png and b/tests_zemu/snapshots/x-tx-multi-operations/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00003.png b/tests_zemu/snapshots/x-tx-multi-operations/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00003.png and b/tests_zemu/snapshots/x-tx-multi-operations/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00005.png b/tests_zemu/snapshots/x-tx-multi-operations/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00005.png and b/tests_zemu/snapshots/x-tx-multi-operations/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00007.png b/tests_zemu/snapshots/x-tx-multi-operations/00007.png index a8a420c3..3729654f 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00007.png and b/tests_zemu/snapshots/x-tx-multi-operations/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00008.png b/tests_zemu/snapshots/x-tx-multi-operations/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00008.png and b/tests_zemu/snapshots/x-tx-multi-operations/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00009.png b/tests_zemu/snapshots/x-tx-multi-operations/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00009.png and b/tests_zemu/snapshots/x-tx-multi-operations/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00010.png b/tests_zemu/snapshots/x-tx-multi-operations/00010.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00010.png and b/tests_zemu/snapshots/x-tx-multi-operations/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00012.png b/tests_zemu/snapshots/x-tx-multi-operations/00012.png index 8a547ece..562b6383 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00012.png and b/tests_zemu/snapshots/x-tx-multi-operations/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00013.png b/tests_zemu/snapshots/x-tx-multi-operations/00013.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00013.png and b/tests_zemu/snapshots/x-tx-multi-operations/00013.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00014.png b/tests_zemu/snapshots/x-tx-multi-operations/00014.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00014.png and b/tests_zemu/snapshots/x-tx-multi-operations/00014.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00015.png b/tests_zemu/snapshots/x-tx-multi-operations/00015.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00015.png and b/tests_zemu/snapshots/x-tx-multi-operations/00015.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00017.png b/tests_zemu/snapshots/x-tx-multi-operations/00017.png index d7dc42b0..2ee2b057 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00017.png and b/tests_zemu/snapshots/x-tx-multi-operations/00017.png differ diff --git a/tests_zemu/snapshots/x-tx-multi-operations/00020.png b/tests_zemu/snapshots/x-tx-multi-operations/00020.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-multi-operations/00020.png and b/tests_zemu/snapshots/x-tx-multi-operations/00020.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00002.png b/tests_zemu/snapshots/x-tx-network-custom/00002.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00002.png and b/tests_zemu/snapshots/x-tx-network-custom/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00003.png b/tests_zemu/snapshots/x-tx-network-custom/00003.png index e4bee7c6..665136b9 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00003.png and b/tests_zemu/snapshots/x-tx-network-custom/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00004.png b/tests_zemu/snapshots/x-tx-network-custom/00004.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00004.png and b/tests_zemu/snapshots/x-tx-network-custom/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00006.png b/tests_zemu/snapshots/x-tx-network-custom/00006.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00006.png and b/tests_zemu/snapshots/x-tx-network-custom/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00008.png b/tests_zemu/snapshots/x-tx-network-custom/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00008.png and b/tests_zemu/snapshots/x-tx-network-custom/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00009.png b/tests_zemu/snapshots/x-tx-network-custom/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00009.png and b/tests_zemu/snapshots/x-tx-network-custom/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-network-custom/00011.png b/tests_zemu/snapshots/x-tx-network-custom/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-network-custom/00011.png and b/tests_zemu/snapshots/x-tx-network-custom/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00001.png b/tests_zemu/snapshots/x-tx-network-public/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00001.png and b/tests_zemu/snapshots/x-tx-network-public/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00002.png b/tests_zemu/snapshots/x-tx-network-public/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00002.png and b/tests_zemu/snapshots/x-tx-network-public/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00003.png b/tests_zemu/snapshots/x-tx-network-public/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00003.png and b/tests_zemu/snapshots/x-tx-network-public/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00005.png b/tests_zemu/snapshots/x-tx-network-public/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00005.png and b/tests_zemu/snapshots/x-tx-network-public/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00007.png b/tests_zemu/snapshots/x-tx-network-public/00007.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00007.png and b/tests_zemu/snapshots/x-tx-network-public/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00008.png b/tests_zemu/snapshots/x-tx-network-public/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00008.png and b/tests_zemu/snapshots/x-tx-network-public/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-network-public/00010.png b/tests_zemu/snapshots/x-tx-network-public/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-network-public/00010.png and b/tests_zemu/snapshots/x-tx-network-public/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00002.png b/tests_zemu/snapshots/x-tx-network-testnet/00002.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00002.png and b/tests_zemu/snapshots/x-tx-network-testnet/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00003.png b/tests_zemu/snapshots/x-tx-network-testnet/00003.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00003.png and b/tests_zemu/snapshots/x-tx-network-testnet/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00004.png b/tests_zemu/snapshots/x-tx-network-testnet/00004.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00004.png and b/tests_zemu/snapshots/x-tx-network-testnet/00004.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00006.png b/tests_zemu/snapshots/x-tx-network-testnet/00006.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00006.png and b/tests_zemu/snapshots/x-tx-network-testnet/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00008.png b/tests_zemu/snapshots/x-tx-network-testnet/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00008.png and b/tests_zemu/snapshots/x-tx-network-testnet/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00009.png b/tests_zemu/snapshots/x-tx-network-testnet/00009.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00009.png and b/tests_zemu/snapshots/x-tx-network-testnet/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-network-testnet/00011.png b/tests_zemu/snapshots/x-tx-network-testnet/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-network-testnet/00011.png and b/tests_zemu/snapshots/x-tx-network-testnet/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00001.png b/tests_zemu/snapshots/x-tx-reject/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00001.png and b/tests_zemu/snapshots/x-tx-reject/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00002.png b/tests_zemu/snapshots/x-tx-reject/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00002.png and b/tests_zemu/snapshots/x-tx-reject/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00003.png b/tests_zemu/snapshots/x-tx-reject/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00003.png and b/tests_zemu/snapshots/x-tx-reject/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00005.png b/tests_zemu/snapshots/x-tx-reject/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00005.png and b/tests_zemu/snapshots/x-tx-reject/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00007.png b/tests_zemu/snapshots/x-tx-reject/00007.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00007.png and b/tests_zemu/snapshots/x-tx-reject/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00008.png b/tests_zemu/snapshots/x-tx-reject/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00008.png and b/tests_zemu/snapshots/x-tx-reject/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-reject/00011.png b/tests_zemu/snapshots/x-tx-reject/00011.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-reject/00011.png and b/tests_zemu/snapshots/x-tx-reject/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00001.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00001.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00002.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00003.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00005.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00005.png index 188a9b9e..d7f46534 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00006.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00006.png index 7f4ebd9c..429130d0 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00006.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00008.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00009.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00009.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00009.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00010.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00010.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00012.png b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00012.png and b/tests_zemu/snapshots/x-tx-source-omit-muxed-source-equal-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00001.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00001.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00002.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00002.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00003.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00003.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00005.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00005.png index 7fc42f29..06db03ba 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00005.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00007.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00007.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00007.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00008.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00008.png index 746f94e1..2debbe6c 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00008.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00010.png b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00010.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00010.png and b/tests_zemu/snapshots/x-tx-source-omit-source-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00001.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00001.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00002.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00002.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00003.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00003.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00005.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00005.png index 7dbb4d7a..b0d30635 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00005.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00006.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00006.png index 5f9656de..22740f21 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00006.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00008.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00008.png index 1571c9b3..5a7ffae2 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00008.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00009.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00009.png index d7e84285..a365da7b 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00009.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00010.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00010.png index 6aaffb04..982bd122 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00010.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00012.png b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00012.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00012.png and b/tests_zemu/snapshots/x-tx-source-omit-source-not-equal-signer/00012.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00001.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00001.png index 0b599bce..2e650e1f 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00001.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00001.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00002.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00002.png index e5793eb5..eff68d24 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00002.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00002.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00003.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00003.png index 1c7329ee..a1f1e09c 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00003.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00003.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00005.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00005.png index 188a9b9e..d7f46534 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00005.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00005.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00006.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00006.png index 7f4ebd9c..429130d0 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00006.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00006.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00007.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00007.png index bae17cff..716253dd 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00007.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00007.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00008.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00008.png index 9fc66f1d..21ca90fc 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00008.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00008.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00009.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00009.png index 55496b82..cffd5a33 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00009.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00009.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00010.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00010.png index 4e2026a1..61032206 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00010.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00010.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00011.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00011.png index 5cea3230..9bc20076 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00011.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00011.png differ diff --git a/tests_zemu/snapshots/x-tx-with-muxed-source/00013.png b/tests_zemu/snapshots/x-tx-with-muxed-source/00013.png index 96627275..fb27b648 100644 Binary files a/tests_zemu/snapshots/x-tx-with-muxed-source/00013.png and b/tests_zemu/snapshots/x-tx-with-muxed-source/00013.png differ diff --git a/tests_zemu/tests/common.ts b/tests_zemu/tests/common.ts index 43e2a33a..815fdf95 100644 --- a/tests_zemu/tests/common.ts +++ b/tests_zemu/tests/common.ts @@ -1,15 +1,20 @@ -import { DeviceModel } from '@zondax/zemu' +import { IDeviceModel } from "@zondax/zemu"; -const Resolve = require('path').resolve +const Resolve = require("path").resolve; -export const APP_SEED = 'other base behind follow wet put glad muscle unlock sell income october' +export const APP_SEED = "other base behind follow wet put glad muscle unlock sell income october"; -const APP_PATH_S = Resolve('./elfs/stellar_nanos.elf') -const APP_PATH_X = Resolve('./elfs/stellar_nanox.elf') -const APP_PATH_SP = Resolve('./elfs/stellar_nanosp.elf') +const APP_PATH_S = Resolve("../build/nanos/bin/app.elf"); +const APP_PATH_X = Resolve("../build/nanox/bin/app.elf"); +const APP_PATH_SP = Resolve("../build/nanos2/bin/app.elf"); +const APP_PATH_STAX = Resolve("../build/stax/bin/app.elf"); -export const models: DeviceModel[] = [ - { name: 'nanos', prefix: 'S', path: APP_PATH_S }, - { name: 'nanox', prefix: 'X', path: APP_PATH_X }, - { name: 'nanosp', prefix: 'SP', path: APP_PATH_SP }, -] +const NANO_START_TEXT = "is ready"; +const STAX_START_TEXT = "This app enables"; + +export const models: { dev: IDeviceModel; startText: string }[] = [ + { dev: { name: "stax", prefix: "stax", path: APP_PATH_STAX }, startText: STAX_START_TEXT }, + { dev: { name: "nanos", prefix: "S", path: APP_PATH_S }, startText: NANO_START_TEXT }, + { dev: { name: "nanox", prefix: "X", path: APP_PATH_X }, startText: NANO_START_TEXT }, + { dev: { name: "nanosp", prefix: "SP", path: APP_PATH_SP }, startText: NANO_START_TEXT }, +]; diff --git a/tests_zemu/tests/main.test.ts b/tests_zemu/tests/main.test.ts index 59e15a2a..71909df5 100644 --- a/tests_zemu/tests/main.test.ts +++ b/tests_zemu/tests/main.test.ts @@ -1,9 +1,9 @@ -import { DEFAULT_START_OPTIONS } from "@zondax/zemu"; +import { DEFAULT_START_OPTIONS, ButtonKind, TouchNavigation } from "@zondax/zemu"; import { APP_SEED, models } from "./common"; -import * as testCasesFunction from 'tests-common' -import { Keypair } from 'stellar-base' -import Str from '@ledgerhq/hw-app-str' -import Zemu from './zemu' +import * as testCasesFunction from "tests-common"; +import { Keypair } from "stellar-base"; +import Str from "@ledgerhq/hw-app-str"; +import Zemu from "@zondax/zemu"; beforeAll(async () => { await Zemu.checkAndPullImage(); @@ -11,281 +11,411 @@ beforeAll(async () => { jest.setTimeout(1000 * 60 * 60); -const defaultOptions = { +let defaultOptions = { ...DEFAULT_START_OPTIONS, logging: true, custom: `-s "${APP_SEED}"`, X11: false, - startText: "is ready", }; -test.each(models)("can start and stop container ($name)", async (m) => { - const sim = new Zemu(m.path); +test.each(models)("can start and stop container ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); } finally { await sim.close(); } }); -test.each(models)("app version ($name)", async (m) => { - const sim = new Zemu(m.path); +test.each(models)("app version ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); const result = await str.getAppConfiguration(); - expect(result.version).toBe('4.0.1'); + expect(result.version).toBe("5.0.2"); } finally { await sim.close(); } }); -describe('get public key', () => { - test.each(models)("get public key without confirmation ($name)", async (m) => { - const sim = new Zemu(m.path); +describe("get public key", () => { + test.each(models)("get public key without confirmation ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); const result = await str.getPublicKey("44'/148'/0'", false, false); - const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK") + const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK"); expect(result).toStrictEqual({ publicKey: kp.publicKey(), - raw: kp.rawPublicKey() - }) + raw: kp.rawPublicKey(), + }); } finally { await sim.close(); } }); - test.each(models)("get public key with confirmation - approve ($name)", async (m) => { - const sim = new Zemu(m.path); + test.each(models)("get public key with confirmation - approve ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + let confirmText = "Approve"; + if (dev.name == "stax") { + confirmText = "Address"; + } + await sim.start({ ...defaultOptions, model: dev.name, startText: startText, approveAction: ButtonKind.ApproveTapButton }); const transport = await sim.getTransport(); const str = new Str(transport); const result = str.getPublicKey("44'/148'/0'", false, true); - const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK") - - await sim.waitScreenChange() - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-public-key-approve`, 'Approve') - + const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK"); + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + await sim.navigateAndCompareUntilText(".", `${dev.prefix.toLowerCase()}-public-key-approve`, confirmText, true); expect(result).resolves.toStrictEqual({ publicKey: kp.publicKey(), - raw: kp.rawPublicKey() - }) + raw: kp.rawPublicKey(), + }); } finally { await sim.close(); } }); - test.each(models)("get public key with confirmation - reject ($name)", async (m) => { - const sim = new Zemu(m.path); + test.each(models)("get public key with confirmation - reject ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + let confirmText = "Reject"; + if (dev.name == "stax") { + confirmText = "Address"; + } + await sim.start({ ...defaultOptions, model: dev.name, startText: startText, approveAction: ButtonKind.RejectButton }); const transport = await sim.getTransport(); const str = new Str(transport); // TODO: Maybe we should throw a more specific exception in @ledgerhq/hw-app-str - expect(() => str.getPublicKey("44'/148'/0'", false, true)).rejects.toThrow("Ledger device: Condition of use not satisfied (denied by the user?) (0x6985)"); + expect(() => str.getPublicKey("44'/148'/0'", false, true)).rejects.toThrow( + "Ledger device: Condition of use not satisfied (denied by the user?) (0x6985)" + ); - await sim.waitScreenChange() - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-public-key-reject`, 'Reject') + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + await sim.navigateAndCompareUntilText(".", `${dev.prefix.toLowerCase()}-public-key-reject`, confirmText, true); } finally { await sim.close(); } }); -}) +}); -describe('hash signing', () => { - test.each(models)("hash signing mode is not enabled ($name)", async (m) => { - const sim = new Zemu(m.path); +describe("hash signing", () => { + test.each(models)("hash signing mode is not enabled ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); - const hash = Buffer.from("3389e9f0f1a65f19736cacf544c2e825313e8447f569233bb8db39aa607c8889", "hex") - expect(() => str.signHash("44'/148'/0'", hash)).rejects.toThrow(new Error("Hash signing not allowed. Have you enabled it in the app settings?")); + const hash = Buffer.from("3389e9f0f1a65f19736cacf544c2e825313e8447f569233bb8db39aa607c8889", "hex"); + expect(() => str.signHash("44'/148'/0'", hash)).rejects.toThrow( + new Error("Hash signing not allowed. Have you enabled it in the app settings?") + ); } finally { await sim.close(); } }); - test.each(models)("approve ($name)", async (m) => { - const sim = new Zemu(m.path); + test.each(models)("approve ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); // enable hash signing - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - await sim.clickBoth(undefined, false, 0) - - const hash = Buffer.from("3389e9f0f1a65f19736cacf544c2e825313e8447f569233bb8db39aa607c8889", "hex") - const result = str.signHash("44'/148'/0'", hash) - await sim.waitScreenChange() - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-hash-signing-approve`, 'Approve') - const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK") + if (dev.name == "stax") { + const settingNav = new TouchNavigation([ + ButtonKind.InfoButton, + ButtonKind.NavRightButton, + ButtonKind.ToggleSettingButton1, + ]); + await sim.navigate(".", `${dev.prefix.toLowerCase()}-hash-signing-approve`, settingNav.schedule, true, false); + } else { + await sim.clickRight(); + await sim.clickBoth(undefined, false); + await sim.clickBoth(undefined, false); + } + const hash = Buffer.from("3389e9f0f1a65f19736cacf544c2e825313e8447f569233bb8db39aa607c8889", "hex"); + const result = str.signHash("44'/148'/0'", hash); + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + let textToFind = "Approve"; + if (dev.name == "stax") { + textToFind = "Hold to"; + } + await sim.navigateAndCompareUntilText(".", `${dev.prefix.toLowerCase()}-hash-signing-approve`, textToFind, true); + const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK"); expect((await result).signature).toStrictEqual(kp.sign(hash)); } finally { await sim.close(); } }); - test.each(models)("reject ($name)", async (m) => { - const sim = new Zemu(m.path); + test.each(models)("reject ($dev.name)", async ({ dev, startText }) => { + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText, approveAction: ButtonKind.RejectButton }); const transport = await sim.getTransport(); const str = new Str(transport); + let textToFind = "Reject"; // enable hash signing - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - await sim.clickBoth(undefined, false, 0) + if (dev.name == "stax") { + textToFind = "Hold to"; + const settingNav = new TouchNavigation([ + ButtonKind.InfoButton, + ButtonKind.NavRightButton, + ButtonKind.ToggleSettingButton1, + ]); + await sim.navigate(".", `${dev.prefix.toLowerCase()}-hash-signing-reject`, settingNav.schedule, true, false); + } else { + await sim.clickRight(); + await sim.clickBoth(undefined, false); + await sim.clickBoth(undefined, false); + } - const hash = Buffer.from("3389e9f0f1a65f19736cacf544c2e825313e8447f569233bb8db39aa607c8889", "hex") + const hash = Buffer.from("3389e9f0f1a65f19736cacf544c2e825313e8447f569233bb8db39aa607c8889", "hex"); expect(() => str.signHash("44'/148'/0'", hash)).rejects.toThrow(new Error("Transaction approval request was rejected")); - await sim.waitScreenChange() - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-hash-signing-reject`, 'Reject') + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + await sim.navigateAndCompareUntilText(".", `${dev.prefix.toLowerCase()}-hash-signing-reject`, textToFind, true); + if (dev.name == "stax") { + const settingNav = new TouchNavigation([ButtonKind.ApproveTapButton]); + await sim.navigate(".", `${dev.prefix.toLowerCase()}-hash-signing-reject`, settingNav.schedule, true, false); + } } finally { await sim.close(); } }); -}) +}); -describe('transactions', () => { - describe.each(getTestCases())('$caseName', (c) => { - test.each(models)("device ($name)", async (m) => { +describe("transactions", () => { + describe.each(getTestCases())("$caseName", (c) => { + test.each(models)("device ($dev.name)", async ({ dev, startText }) => { const tx = c.txFunction(); - const sim = new Zemu(m.path); + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); - - // display sequence - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - - const result = str.signTransaction("44'/148'/0'", tx.signatureBase()) - await sim.waitScreenChange(1000 * 60 * 60) - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-${c.filePath}`, 'Finalize', true, undefined, 1000 * 60 * 60) - const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK") - tx.sign(kp) + if (dev.name == "stax") { + const settingNav = new TouchNavigation([ + ButtonKind.InfoButton, + ButtonKind.NavRightButton, + ButtonKind.ToggleSettingButton2, + ]); + await sim.navigate(".", `tx`, settingNav.schedule, true, false); + } else { + await sim.clickRight(); + await sim.clickBoth(undefined, false); + await sim.clickRight(); + await sim.clickBoth(undefined, false); + } + const result = str.signTransaction("44'/148'/0'", tx.signatureBase()); + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + let textToFind = "Finalize"; + if (dev.name == "stax") { + textToFind = "Hold to"; + } + await sim.navigateAndCompareUntilText( + ".", + `${dev.prefix.toLowerCase()}-${c.filePath}`, + textToFind, + true, + undefined, + 1000 * 60 * 60 + ); + const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK"); + tx.sign(kp); expect((await result).signature).toStrictEqual(tx.signatures[0].signature()); } finally { await sim.close(); } }); - }) + }); - test.each(models)("reject tx ($name)", async (m) => { - const tx = testCasesFunction.txNetworkPublic() - const sim = new Zemu(m.path); + test.each(models)("reject tx ($dev.name)", async ({ dev, startText }) => { + const tx = testCasesFunction.txNetworkPublic(); + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText, approveAction: ButtonKind.RejectButton }); const transport = await sim.getTransport(); const str = new Str(transport); - + let textToFind = "Cancel"; // display sequence - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - - expect(() => str.signTransaction("44'/148'/0'", tx.signatureBase())).rejects.toThrow(new Error("Transaction approval request was rejected")); + if (dev.name == "stax") { + textToFind = "Hold to"; + const settingNav = new TouchNavigation([ + ButtonKind.InfoButton, + ButtonKind.NavRightButton, + ButtonKind.ToggleSettingButton2, + ]); + await sim.navigate(".", `reject tx`, settingNav.schedule, true, false); + } else { + await sim.clickRight(); + await sim.clickBoth(undefined, false); + await sim.clickRight(); + await sim.clickBoth(undefined, false); + } - await sim.waitScreenChange(1000 * 60 * 60) - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-tx-reject`, 'Cancel', true, undefined, 1000 * 60 * 60) + expect(() => str.signTransaction("44'/148'/0'", tx.signatureBase())).rejects.toThrow( + new Error("Transaction approval request was rejected") + ); + + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + await sim.navigateAndCompareUntilText( + ".", + `${dev.prefix.toLowerCase()}-tx-reject`, + textToFind, + true, + undefined, + 1000 * 60 * 60 + ); + if (dev.name == "stax") { + const settingNav = new TouchNavigation([ButtonKind.ApproveTapButton]); + await sim.navigate(".", `reject tx`, settingNav.schedule, true, false); + } } finally { await sim.close(); } - }) + }); - test.each(models)("reject fee bump tx ($name)", async (m) => { - const tx = testCasesFunction.feeBumpTx() - const sim = new Zemu(m.path); + test.each(models)("reject fee bump tx ($dev.name)", async ({ dev, startText }) => { + const tx = testCasesFunction.feeBumpTx(); + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText, approveAction: ButtonKind.RejectButton }); const transport = await sim.getTransport(); const str = new Str(transport); + let textToFind = "Cancel"; // display sequence - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - await sim.clickRight() - await sim.clickBoth(undefined, false, 0) - - expect(() => str.signTransaction("44'/148'/0'", tx.signatureBase())).rejects.toThrow(new Error("Transaction approval request was rejected")); + if (dev.name == "stax") { + textToFind = "Hold to"; + const settingNav = new TouchNavigation([ + ButtonKind.InfoButton, + ButtonKind.NavRightButton, + ButtonKind.ToggleSettingButton2, + ]); + await sim.navigate(".", `reject fee bump tx`, settingNav.schedule, true, false); + } else { + await sim.clickRight(); + await sim.clickBoth(undefined, false); + await sim.clickRight(); + await sim.clickBoth(undefined, false); + } - await sim.waitScreenChange(1000 * 60 * 60) - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-fee-bump-tx-reject`, 'Cancel', true, undefined, 1000 * 60 * 60) + expect(() => str.signTransaction("44'/148'/0'", tx.signatureBase())).rejects.toThrow( + new Error("Transaction approval request was rejected") + ); + + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + await sim.navigateAndCompareUntilText( + ".", + `${dev.prefix.toLowerCase()}-fee-bump-tx-reject`, + textToFind, + true, + undefined, + 1000 * 60 * 60 + ); + if (dev.name == "stax") { + const settingNav = new TouchNavigation([ButtonKind.ApproveTapButton]); + await sim.navigate(".", `reject fee bump tx`, settingNav.schedule, true, false); + } } finally { await sim.close(); } - }) + }); - test.each(models)("hide sequence tx ($name)", async (m) => { - const tx = testCasesFunction.txNetworkPublic() - const sim = new Zemu(m.path); + test.each(models)("hide sequence tx ($dev.name)", async ({ dev, startText }) => { + const tx = testCasesFunction.txNetworkPublic(); + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); - const result = str.signTransaction("44'/148'/0'", tx.signatureBase()) - await sim.waitScreenChange(1000 * 60 * 60) - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-tx-hide-sequence`, 'Finalize', true, undefined, 1000 * 60 * 60) - - const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK") - tx.sign(kp) + const result = str.signTransaction("44'/148'/0'", tx.signatureBase()); + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + let textToFind = "Finalize"; + if (dev.name == "stax") { + textToFind = "Hold to"; + } + await sim.navigateAndCompareUntilText( + ".", + `${dev.prefix.toLowerCase()}-tx-hide-sequence`, + textToFind, + true, + undefined, + 1000 * 60 * 60 + ); + const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK"); + tx.sign(kp); expect((await result).signature).toStrictEqual(tx.signatures[0].signature()); } finally { await sim.close(); } - }) + }); - test.each(models)("hide sequence fee bump tx ($name)", async (m) => { - const tx = testCasesFunction.feeBumpTx() - const sim = new Zemu(m.path); + test.each(models)("hide sequence fee bump tx ($dev.name)", async ({ dev, startText }) => { + const tx = testCasesFunction.feeBumpTx(); + const sim = new Zemu(dev.path); try { - await sim.start({ ...defaultOptions, model: m.name }); + await sim.start({ ...defaultOptions, model: dev.name, startText: startText }); const transport = await sim.getTransport(); const str = new Str(transport); - const result = str.signTransaction("44'/148'/0'", tx.signatureBase()) - await sim.waitScreenChange(1000 * 60 * 60) - await sim.navigateAndCompareUntilText(".", `${m.prefix.toLowerCase()}-fee-bump-tx-hide-sequence`, 'Finalize', true, undefined, 1000 * 60 * 60) - - const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK") - tx.sign(kp) + const result = str.signTransaction("44'/148'/0'", tx.signatureBase()); + const events = await sim.getEvents(); + await sim.waitForScreenChanges(events); + let textToFind = "Finalize"; + if (dev.name == "stax") { + textToFind = "Hold to"; + } + await sim.navigateAndCompareUntilText( + ".", + `${dev.prefix.toLowerCase()}-fee-bump-tx-hide-sequence`, + textToFind, + true, + undefined, + 1000 * 60 * 60 + ); + + const kp = Keypair.fromSecret("SAIYWGGWU2WMXYDSK33UBQBMBDKU4TTJVY3ZIFF24H2KQDR7RQW5KAEK"); + tx.sign(kp); expect((await result).signature).toStrictEqual(tx.signatures[0].signature()); } finally { await sim.close(); } - }) -}) + }); +}); function camelToFilePath(str: string) { - return str.replace(/([A-Z])/g, '-$1').toLowerCase(); + return str.replace(/([A-Z])/g, "-$1").toLowerCase(); } function getTestCases() { const casesFunction = Object.keys(testCasesFunction); - const cases = [] + const cases = []; for (const rawCase of casesFunction) { cases.push({ caseName: rawCase, filePath: camelToFilePath(rawCase), - txFunction: (testCasesFunction as any)[rawCase] // dirty hack + txFunction: (testCasesFunction as any)[rawCase], // dirty hack }); } return cases; diff --git a/tests_zemu/tests/zemu.ts b/tests_zemu/tests/zemu.ts deleted file mode 100644 index 6deef4a9..00000000 --- a/tests_zemu/tests/zemu.ts +++ /dev/null @@ -1,48 +0,0 @@ -import Zemu from "@zondax/zemu"; -import axios from "axios"; - - -export default class StellarZemu extends Zemu { - async click( - endpoint: string, - filename?: string, - waitForScreenUpdate?: boolean, - waitBeforeSnapshot?: number - ) { - let previousScreen - if (waitForScreenUpdate) { - previousScreen = await this.snapshot() - } - const bothClickUrl = 'http://localhost:' + this.speculosApiPort?.toString() + endpoint - const payload = { action: 'press-and-release' } - await axios.post(bothClickUrl, payload) - this.log(`Click ${endpoint} -> ${filename}`) - - // Wait and poll Speculos until the application screen gets updated - if (waitForScreenUpdate) { - let watchdog = 5000 - let currentScreen = await this.snapshot() - while (currentScreen.data.equals(previousScreen.data)) { - this.log('sleep') - Zemu.delay(100) - watchdog -= 100 - if (watchdog <= 0) throw 'Timeout waiting for screen update' - currentScreen = await this.snapshot() - } - } else { - // A minimum delay is required - Zemu.delay(100) - } - // In GitHub Action, it is often encountered that the screen is only refreshed halfway - // before being snapshotted, which will cause the test to fail, so we made this change, - // which can greatly reduce the occurrence of this situation. - if (waitBeforeSnapshot) { - await Zemu.delay(waitBeforeSnapshot); - } - return this.snapshot(filename); - } - - async clickBoth(filename?: string, waitForScreenUpdate = true, waitBeforeSnapshot = 1000) { - return this.click('/button/both', filename, waitForScreenUpdate, waitBeforeSnapshot) - } -}