Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

ab9b429121d7aa64ca1de3b5fb1a4293b122dfe2e6039af8fa46c3ee2faabb4c
Timestamp (utc)
2022-01-27 20:51:21
Fee Paid
0.00003915 BSV
(
0.01569102 BSV
-
0.01565187 BSV
)
Fee Rate
600 sat/KB
Version
1
Confirmations
253,434
Size Stats
6,525 B

2 Outputs

Total Output:
0.01565187 BSV
  • j!ëFOQê°Z±zìI œˆâkŸE !b"à¥2&7ÜRMgen (für Paket '$W_PACKAGE')" ;; pl*) _W_mountmsg="Proszę włożyć dysk '$_W_expected_volname' (potrzebny paczce '$W_PACKAGE')" ;; ru*) _W_mountmsg="Пожалуйста, вставьте том '$_W_expected_volname' (требуется для пакета '$W_PACKAGE')" ;; uk*) _W_mountmsg="Будь ласка, вставте том '$_W_expected_volname' (потрібний для пакунка '$W_PACKAGE')" ;; zh_CN*) _W_mountmsg="请插入卷 '$_W_expected_volname' (为包 '$W_PACKAGE 所需')" ;; zh_TW*|zh_HK*) _W_mountmsg="請插入卷 '$_W_expected_volname' (為包 '$W_PACKAGE 所需')" ;; *) _W_mountmsg="Please insert volume '$_W_expected_volname' (needed for package '$W_PACKAGE')" ;; esac if test "$WINE" = ""; then # Assume already mounted, just get drive letter W_ISO_MOUNT_LETTER=$(awk '/iso/ {print $1}' < /proc/mounts | tr -d :) W_ISO_MOUNT_ROOT=$(awk '/iso/ {print $2}' < /proc/mounts) else while ! winetricks_is_mounted "$_W_expected_volname"; do w_try w_warn_cancel "$_W_mountmsg" # In non-gui case, give user two seconds to futz with disc drive before spamming him again sleep 2 done WINETRICKS_DEV=$_W_dev W_ISO_MOUNT_ROOT="$_W_mountpoint" # Gotta provide a symlink to the raw disc, else installers that check volume names will fail rm -f "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}:"* ln -sf "$WINETRICKS_DEV" "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}::" ln -sf "$W_ISO_MOUNT_ROOT" "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}:" fi # FIXME: need to remount some discs with unhide option, # add that as option to w_mount unset _W_mountmsg } winetricks_cleanup() { # We don't want to run this multiple times, so unfortunately we have to run it here: if test "$W_NGEN_CMD"; then "$W_NGEN_CMD" fi set +e if test -f "$WINETRICKS_WORKDIR/dd-pid"; then # shellcheck disable=SC2046 kill $(cat "$WINETRICKS_WORKDIR/dd-pid") fi test "$WINETRICKS_CACHE_SYMLINK" && rm -f "$WINETRICKS_CACHE_SYMLINK" test "$W_OPT_NOCLEAN" = 1 || rm -rf "$WINETRICKS_WORKDIR" # if $W_TMP_EARLY was created by mktemp, remove it (but not if W_OPT_NOCLEAN is set to 1): test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP_EARLY" test "$W_OPT_NOCLEAN" = 1 || rm -rf "$WINEPREFIX"/wrapper.cfg } winetricks_set_unattended() { # We shouldn't use all these extra variables. Instead, we should # use ${foo:+bar} to jam in commandline options for silent install # only if W_OPT_UNATTENDED is nonempty. See # https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_02 # So in attended mode, W_OPT_UNATTENDED should be empty. case "$1" in 1) W_OPT_UNATTENDED=1 # Might want to trim our stable of variables here a bit... W_UNATTENDED_SLASH_Q="/q" W_UNATTENDED_SLASH_QB="/qb" W_UNATTENDED_SLASH_QN="/qn" W_UNATTENDED_SLASH_QNT="/qnt" W_UNATTENDED_SLASH_QT="/qt" W_UNATTENDED_SLASH_QUIET="/quiet" W_UNATTENDED_SLASH_CAP_QUIET="/Quiet" W_UNATTENDED_SLASH_S="/S" W_UNATTENDED_DASH_SILENT="-silent" W_UNATTENDED_SLASH_SILENT="/silent" ;; *) W_OPT_UNATTENDED="" W_UNATTENDED_SLASH_Q="" W_UNATTENDED_SLASH_QB="" W_UNATTENDED_SLASH_QN="" W_UNATTENDED_SLASH_QNT="" W_UNATTENDED_SLASH_QT="" W_UNATTENDED_SLASH_QUIET="" W_UNATTENDED_SLASH_S="" W_UNATTENDED_DASH_SILENT="" W_UNATTENDED_SLASH_SILENT="" ;; esac } # Usage: winetricks_print_wineprefix_info # Print some useful info about $WINEPREFIX if things fail in winetricks_set_wineprefix() winetricks_print_wineprefix_info() { printf "WINEPREFIX INFO:\\n" printf "Drive C: %s\\n\\n" "$(ls -al1 "${WINEPREFIX}/drive_c")" printf "Registry info:\\n" for regfile in "${WINEPREFIX}"/*.reg; do printf "%s:%s\\n" "${regfile}" "$(grep '#arch=' "${regfile}")" done } # Force creation of 32 or 64bit wineprefix on 64 bit systems. # On 32bit systems, trying to create a 64bit wineprefix will fail. # This must be called prior to winetricks_set_wineprefix() winetricks_set_winearch() { if [ "$1" = "32" ] || [ "$1" = "win32" ]; then export WINEARCH=win32 elif [ "$1" = "64" ] || [ "$1" = "win64" ]; then export WINEARCH=win64 else w_die "arch: Invalid architecture: $1" fi } # Usage: winetricks_set_wineprefix [bottlename] # Bottlename must not contain spaces, slashes, or other special characters # If bottlename is omitted, the default bottle (~/.wine) is used. # # shellcheck disable=SC2034 winetricks_set_wineprefix() { # Note: these are arch independent, but are needed by some arch dependent variables # Defining here to avoid having two arch checks: if ! test "$1"; then WINEPREFIX="$WINETRICKS_ORIGINAL_WINEPREFIX" else WINEPREFIX="$W_PREFIXES_ROOT/$1" fi export WINEPREFIX w_try mkdir -p "$(dirname "$WINEPREFIX")" case "$W_PLATFORM" in windows_cmd) W_DRIVE_C="/cygdrive/c" ;; *) W_DRIVE_C="$WINEPREFIX/dosdevices/c:" ;; esac W_WINDIR_UNIX="$W_DRIVE_C/windows" # Make sure the prefix is initialized: w_try winetricks_early_wine cmd /c "echo init" > /dev/null 2>&1 # Win(e) 32/64? # Using the variable W_SYSTEM32_DLLS instead of SYSTEM32 because some stuff does go under system32 for both arch's # e.g., spool/drivers/color if test -d "$W_DRIVE_C/windows/syswow64"; then # Probably need fancier handling/checking, but for a basic start: # Note 'wine' may be named 'wine-stable'/'wine-staging'/etc.): # WINE64 = wine64, available on 64-bit prefixes # WINE_ARCH = the native wine for the prefix (wine for 32-bit, wine64 for 64-bit) # WINE_@Salted__«[—c6Œ0;î6¦öIøáR›±á1䊘F¬cah˜v•¸GJއ5ièºÚvÒuÄA›ŠÖ3ƒ[XÜå ñ¤©wh…×ÿ^˜ñÅþPƸ+ö~ÆÈ#w ÕêQDÕ(Ø;Q«äUÏÙ&™¢û§7~<w~
    https://whatsonchain.com/tx/ab9b429121d7aa64ca1de3b5fb1a4293b122dfe2e6039af8fa46c3ee2faabb4c