ETH Price: $3,969.62 (-0.84%)

Token

ERC-20: Binance USD (BUSD)

Overview

Max Total Supply

198,604.787939349785870265 BUSD

Holders

199,803

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000393250380161703 BUSD

Value
$0.00
0xc725463d8a278b3bb767660e4d317cc8f186b3f6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
MultiBridgeToken

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : MultiBridgeToken.sol
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity 0.8.17;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../../safeguard/Ownable.sol";

/**
 * @title Example Multi-Bridge Pegged ERC20 token
 */
contract MultiBridgeToken is ERC20, Ownable {
    struct Supply {
        uint256 cap;
        uint256 total;
    }
    mapping(address => Supply) public bridges; // bridge address -> supply

    uint8 private immutable _decimals;

    event BridgeSupplyCapUpdated(address bridge, uint256 supplyCap);

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) ERC20(name_, symbol_) {
        _decimals = decimals_;
    }

    /**
     * @notice Mints tokens to an address. Increases total amount minted by the calling bridge.
     * @param _to The address to mint tokens to.
     * @param _amount The amount to mint.
     */
    function mint(address _to, uint256 _amount) external returns (bool) {
        Supply storage b = bridges[msg.sender];
        require(b.cap > 0, "invalid caller");
        b.total += _amount;
        require(b.total <= b.cap, "exceeds bridge supply cap");
        _mint(_to, _amount);
        return true;
    }

    /**
     * @notice Burns tokens for msg.sender.
     * @param _amount The amount to burn.
     */
    function burn(uint256 _amount) external returns (bool) {
        _burn(msg.sender, _amount);
        return true;
    }

    /**
     * @notice Burns tokens from an address. Decreases total amount minted if called by a bridge.
     * Alternative to {burnFrom} for compatibility with some bridge implementations.
     * See {_burnFrom}.
     * @param _from The address to burn tokens from.
     * @param _amount The amount to burn.
     */
    function burn(address _from, uint256 _amount) external returns (bool) {
        return _burnFrom(_from, _amount);
    }

    /**
     * @notice Burns tokens from an address. Decreases total amount minted if called by a bridge.
     * See {_burnFrom}.
     * @param _from The address to burn tokens from.
     * @param _amount The amount to burn.
     */
    function burnFrom(address _from, uint256 _amount) external returns (bool) {
        return _burnFrom(_from, _amount);
    }

    /**
     * @dev Burns tokens from an address, deducting from the caller's allowance.
     *      Decreases total amount minted if called by a bridge.
     * @param _from The address to burn tokens from.
     * @param _amount The amount to burn.
     */
    function _burnFrom(address _from, uint256 _amount) internal returns (bool) {
        Supply storage b = bridges[msg.sender];
        if (b.cap > 0 || b.total > 0) {
            // set cap to 1 would effectively disable a deprecated bridge's ability to burn
            require(b.total >= _amount, "exceeds bridge minted amount");
            unchecked {
                b.total -= _amount;
            }
        }
        _spendAllowance(_from, msg.sender, _amount);
        _burn(_from, _amount);
        return true;
    }

    /**
     * @notice Returns the decimals of the token.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @notice Updates the supply cap for a bridge.
     * @param _bridge The bridge address.
     * @param _cap The new supply cap.
     */
    function updateBridgeSupplyCap(address _bridge, uint256 _cap) external onlyOwner {
        // cap == 0 means revoking bridge role
        bridges[_bridge].cap = _cap;
        emit BridgeSupplyCapUpdated(_bridge, _cap);
    }

    /**
     * @notice Returns the owner address. Required by BEP20.
     */
    function getOwner() external view returns (address) {
        return owner();
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 6 : Ownable.sol
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 *
 * This adds a normal func that setOwner if _owner is address(0). So we can't allow
 * renounceOwnership. So we can support Proxy based upgradable contract
 */
abstract contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(msg.sender);
    }

    /**
     * @dev Only to be called by inherit contracts, in their init func called by Proxy
     * we require _owner == address(0), which is only possible when it's a delegateCall
     * because constructor sets _owner in contract state.
     */
    function initOwner() internal {
        require(_owner == address(0), "owner already set");
        _setOwner(msg.sender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "optimizer": {
    "enabled": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bridge","type":"address"},{"indexed":false,"internalType":"uint256","name":"supplyCap","type":"uint256"}],"name":"BridgeSupplyCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bridges","outputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bridge","type":"address"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"updateBridgeSupplyCap","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000251b4493bf2a0d0eff839b3cd85618ddb8d187b13264d344e256bc7636c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000b42696e616e63652055534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044255534400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00020000000000020008000000000002000100000001035500000060011002700000020e0010019d0000000101200190000000750000c13d00000080050000390000004001000039000300000001001d00000000005104350000000001000031000000040110008c000003730000413d0000000101000367000000000101043b000000e001100270000002170210009c000000ee0000613d000002180210009c000001240000613d000002190210009c000001430000613d0000021a0210009c0000015d0000613d0000021b0210009c000000cc0000613d0000021c0210009c000001840000613d0000021d0210009c000001ba0000613d0000021e0210009c000001f10000613d0000021f0210009c0000020e0000613d000002200210009c000002530000613d000002210210009c000000cb0000613d000002220210009c000002750000613d000002230210009c000002790000613d000002240210009c000002940000613d000002250210009c000000cb0000613d000002260210009c000002d70000613d000002270210009c0000031a0000613d000002280210009c000003390000613d000002290210009c000003620000613d0000022a0110009c000003730000c13d0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000000310004c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d000800000005001d0000000301000039000700000001001d083408320000040f000000010210018f00000001031002700000007f0430018f000000000520004c000000000403c0190000001f0340008c00000000030000190000000103002039000000000331013f0000000103300190000003860000c13d00000008030000290000000000430435000000000220004c0000045a0000c13d000001000200008a000000000121016f000000a0020000390000000000120435000000000140004c000000c005000039000000a0050060390000001f01500039000000200200008a000000000221016f0000023b012000410000023c0110009c000000c30000413d000000030100002900000000002104350000000001020019000800000001001d0000008002000039083405f40000040f00000008030000290000000002310049000000000103001900000000030000190834058f0000040f000000a001000039000000400200003900000000001204350000000001000416000000000110004c000003730000c13d0000000001000031000800000001001d083405a20000040f00000008080000290000001f0280018f000000010300036700000000070100190000000501800270000000000410004c0000008e0000613d000000000400001900000005054002100000000006570019000000000553034f000000000505043b00000000005604350000000104400039000000000514004b000000860000413d000000000420004c0000009d0000613d0000000501100210000000000313034f00000000011700190000000302200210000000000401043300000000042401cf000000000424022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000242019f00000000002104350000020f01000041000000600280008c000000000200001900000000020140190000020f03800197000000000430004c000000000100a0190000020f0330009c000000000102c019000000000110004c000003730000c13d0000000001070433000002100210009c000003730000213d00000000028700190000000001710019000800000002001d000700000007001d083405b90000040f0000000703000029000500000001001d00000020013000390000000001010433000002100210009c000003730000213d00000000013100190000000802000029083405b90000040f000200000001001d000000070100002900000040011000390000000002010433000000ff0120008c000003730000213d00000005010000290000000003010433000002110130009c000003760000413d0000023701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f0834061c0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000000310004c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000003010000290000000001010433000800000001001d0000023901000041000000000010043900000000010004120000000402000039000000000012043900000024010000390000000000010439083405800000040f000000ff0210018f00000008010000290000000000210435000000200200003900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000200310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000004010000390000000101100367000000000201043b000002130120009c000003730000213d0000000501000039000800000002001d083408320000040f000600000001001d00000213021001970000000001000411000700000002001d000000000112004b00000000010000190000000101006039083408150000040f0000000803000029000000000130004c0000046f0000c13d0000000301000029000000000101043300000064021000390000022b03000041000000000032043500000044021000390000022c0300004100000000003204350000002402100039000000260300003900000000003204350000022d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039083405990000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0834060a0000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411083407140000040f0000000301000029000000000101043300000001020000390000000000210435000000200200003900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000000310004c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0000000201000039083408320000040f0000000302000029000000000302043300000000001304350000002002000039000000000103001900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000600310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0834060a0000040f000800000001001d083406130000040f00000044020000390000000102200367000000000302043b000600000003001d000700000001001d00000000020004110000000801000029083407700000040f000000080100002900000007020000290000000603000029083406840000040f0000000301000029000000000101043300000001020000390000000000210435000000200200003900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0834060a0000040f0000000002000411000500000002001d00000000002004350000000103000039000600000003001d0000002002000039000800000002001d0000000000320435000700000001001d00000000010000190000000302000029083405690000040f0000000702000029000002130220019700000000002004350000000802000029000000000012043500000000010000190000000302000029083405690000040f083408320000040f00000024020000390000000102200367000000000202043b083406750000040f000000000301001900000005010000290000000702000029083407140000040f0000000301000029000000000101043300000006020000290000000000210435000000080200002900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000001010003670000000402100370000000000302043b000002130230009c000003730000213d000400000003001d0000002401100370000000000101043b000600000001001d0000000001000411000000000010043500000006010000390000002002000039000800000002001d000000000012043500000040020000390000000001000019000700000002001d083405690000040f000500000001001d083408320000040f000000000210004c000004860000c13d0000000701000029000000000101043300000044021000390000023803000041000000000032043500000024021000390000000e0300003900000000003204350000022d0200004100000000002104350000000402100039000000080300002900000000003204350000006402000039083405990000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000200310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000004010000390000000101100367000000000201043b0000000001000411083407a20000040f0000000301000029000000000101043300000001020000390000000000210435000000200200003900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000001010003670000000402100370000000000302043b000002130230009c000003730000213d0000002401100370000000000101043b000800000001001d0000000501000039000700000003001d083408320000040f00000213011001970000000002000411000000000121004b00000000010000190000000101006039083408150000040f0000000701000029000000000010043500000006010000390000002002000039000000000012043500000000010000190000000302000029083405690000040f00000000020100190000000801000029083408300000040f00000003010000290000000001010433000000200210003900000008030000290000000000320435000000070200002900000000002104350000020e0200004100000000030004140000020e0430009c00000000030280190000020e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000231011001c70000800d0200003900000001030000390000023204000041083408260000040f0000000101200190000003730000613d000004820000013d0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000200310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0834060a0000040f000002130110019700000000001004350000002001000039000800000001001d000000000001043500000000010000190000000302000029083405690000040f083408320000040f0000000302000029000000000202043300000000001204350000000001020019000000080200002900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d0000027c0000013d0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000000310004c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0000000501000039083408320000040f00000003020000290000000003020433000002130110019700000000001304350000002002000039000000000103001900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000000310004c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000003010000290000000001010433000600000001001d0000000401000039000800000001001d083408320000040f000000010210018f00000001031002700000007f0430018f000000000520004c000000000403c0190000001f0340008c00000000030000190000000103002039000000000331013f0000000103300190000003860000c13d00000006030000290000000000430435000000000220004c00000000020300190000049c0000c13d000001000300008a000000000131016f00000020032000390000000000130435000000000140004c000000200500003900000000050060190000003f01500039000000200300008a000000000131016f0000000004210019000000000114004b00000000010000190000000101004039000002100340009c000000c30000213d0000000101100190000000c30000c13d000000030100002900000000004104350000000001040019000800000004001d083405f40000040f00000008030000290000000002310049000000000103001900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d00000001010003670000000402100370000000000302043b000002130230009c000003730000213d0000002401100370000000000101043b000500000001001d0000000001000411000300000001001d000000000010043500000001010000390000002002000039000600000002001d000400000001001d00000000001204350000004002000039000800000002001d0000000001000019000700000003001d083405690000040f000000070200002900000000002004350000000602000029000000000012043500000000010000190000000802000029083405690000040f083408320000040f0000000503000029000000000231004b000004b20000813d0000000801000029000000000101043300000064021000390000022e03000041000000000032043500000044021000390000022f0300004100000000003204350000002402100039000000250300003900000000003204350000022d0200004100000000002104350000000402100039000000060300002900000000003204350000008402000039083405990000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0834060a0000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411083406840000040f0000000301000029000000000101043300000001020000390000000000210435000000200200003900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000200310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003730000c13d0834060a0000040f0000021301100197000000000010043500000006010000390000002002000039000000000012043500000000010000190000000302000029083405690000040f000700000001001d083408320000040f000800000001001d00000007010000290000000101100039083408320000040f000000030200002900000000040204330000002003400039000000000013043500000008010000290000000000140435000000000104001900000000030000190834058f0000040f0000000001000416000000000110004c000003730000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000003cd0000613d00000000010000190000000002000019083405990000040f000400000003001d000100000002001d0000000301000039000600000001001d083408320000040f000000010210018f00000001011002700000007f0310018f000000000420004c000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000038e0000613d0000023701000041000000000010043500000022010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f000000200130008c000003ab0000413d0000000601000029000000000010043500000020020000390000000001000019000800000003001d083405690000040f00000004030000290000001f023000390000000502200270000000200330008c000000000200401900000008030000290000001f0330003900000005033002700000000003310019000700000003001d00000000022100190000000701000029000000000112004b000003ab0000813d0000000001000019000800000002001d0000000802000029083408300000040f00000008020000290000000102200039000003a10000013d00000004040000290000001f0140008c000003eb0000a13d000000060100002900000000001004350000002002000039000800000002001d0000000001000019083405690000040f00000008040000290000000403000029000000200200008a000000000223016f000300000002001d000000000201001900000000050000190000000301000029000000000115004b00000005010000290000000001140019000003f80000813d0000000001010433000700000002001d000800000004001d000600000005001d083408300000040f0000000605000029000000080400002900000007020000290000000403000029000000200550003900000020044000390000000102200039000003bb0000013d0834060a0000040f000800000001001d083406130000040f00000008020000290000021302200197000000000020043500000001020000390000002003000039000800000003001d0000000000230435000700000001001d00000000010000190000000302000029083405690000040f0000000702000029000002130220019700000000002004350000000802000029000000000012043500000000010000190000000302000029083405690000040f083408320000040f0000000302000029000000000202043300000000001204350000000001020019000000080200002900000000030000190834058f0000040f000000000140004c0000000001000019000003f10000613d0000000501000029000000200110003900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000004060000013d0000000304000029000000000434004b000004040000813d0000000303300210000000f80430018f000000010300008a000000000443022f000000000334013f0000000001010433000000000131016f083408300000040f000000040300002900000001010000390000000102300210000000000112019f0000000302000039083408300000040f00000002010000290000000002010433000002100120009c000000c30000213d000500000002001d0000000401000039000600000001001d083408320000040f000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000003860000c13d000000200130008c000004380000413d0000000601000029000000000010043500000020020000390000000001000019000800000003001d083405690000040f00000005030000290000001f023000390000000502200270000000200330008c000000000200401900000008030000290000001f0330003900000005033002700000000003310019000700000003001d00000000022100190000000701000029000000000112004b000004380000813d0000000001000019000800000002001d0000000802000029083408300000040f000000080200002900000001022000390000042e0000013d00000005040000290000001f0140008c000004bd0000a13d000000060100002900000000001004350000002002000039000800000002001d0000000001000019083405690000040f00000008040000290000000503000029000000200200008a000000000223016f000400000002001d000000000201001900000000050000190000000401000029000000000115004b00000002010000290000000001140019000004ca0000813d0000000001010433000700000002001d000800000004001d000600000005001d083408300000040f0000000605000029000000080400002900000007020000290000000503000029000000200550003900000020044000390000000102200039000004480000013d000000070100002900000000001004350000023a020000410000000003000019000500000004001d000000a005300039000000000143004b000000640000813d0000000001020019000800000002001d000700000003001d000600000005001d083408320000040f00000007030000290000000802000029000000050400002900000006050000290000000000150435000000200330003900000001022000390000045f0000013d00000006010000290000021201100197000000000131019f0000000502000039083408300000040f0000020e0100004100000000020004140000020e0320009c0000000001024019000000c00110021000000214011001c70000800d020000390000000303000039000002150400004100000007050000290000000806000029083408260000040f0000000101200190000003730000613d0000000001000019000000000200001900000000030000190834058f0000040f000300000001001d0000000701000029000000080100002900000005010000290000000101100039000500000001001d083408320000040f00000006020000290000000003210019000000000113004b000000000100001900000001010040390000000101100190000005030000613d0000023701000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f0000000801000029000000000010043500000230010000410000002003200039000400000003001d0000000005000019000500000004001d000000000345004b000002c20000813d000800000005001d000700000001001d083408320000040f000000080500002900000005040000290000000602000029000000040300002900000000035300190000000000130435000000070100002900000020055000390000000101100039000004a30000013d000000000331004900000003010000290000000702000029083407140000040f0000000801000029000000000101043300000004020000290000000000210435000000200200003900000000030000190834058f0000040f000000000140004c0000000001000019000004c30000613d0000000201000029000000200110003900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000004d80000013d0000000404000029000000000434004b000004d60000813d0000000303300210000000f80430018f000000010300008a000000000443022f000000000334013f0000000001010433000000000131016f083408300000040f000000050300002900000001010000390000000102300210000000000112019f0000000402000039083408300000040f0000000501000039000600000001001d083408320000040f000700000001001d0000000002000411000800000002001d0000021203100197000000000123019f0000000602000029083408300000040f0000020e0100004100000000020004140000020e0320009c0000000001024019000000c0011002100000000702000029000002130520019700000214011001c70000800d02000039000000030300003900000215040000410000000806000029083408260000040f00000001012001900000000103000029000003730000613d00000080020000390000000000320435000001400100003900000000000104390000016001000039000000000031043900000020030000390000010001000039000000000031043900000001030000390000012004000039000000000034043900000216030000410834058f0000040f00000000010300190000000502000029000500000003001d083408300000040f00000003010000290000000502000029000000000112004b0000051a0000a13d000000070100002900000000010104330000004402100039000002360300004100000000003204350000002402100039000000190300003900000000003204350000022d0200004100000000002104350000000402100039000000080300002900000000003204350000006402000039083405990000040f0000000401000029000000000110004c0000052c0000c13d0000000701000029000000000101043300000044021000390000023503000041000000000032043500000024021000390000001f0300003900000000003204350000022d0200004100000000002104350000000402100039000000080300002900000000003204350000006402000039083405990000040f0000000201000039083408320000040f000000000201001900000006010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000004940000c13d0000000202000039083408300000040f000000040100002900000000001004350000000801000029000000000001043500000040020000390000000001000019000800000002001d083405690000040f000700000001001d083408320000040f000000060300002900000000020100190000000001320019000000000221004b000000000200001900000001020040390000000102200190000004940000c13d0000000702000029083408300000040f00000008010000290000000001010433000000060200002900000000002104350000020e0200004100000000030004140000020e0430009c00000000030280190000020e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000233011001c70000800d020000390000000303000039000002340400004100000000050000190000000406000029083408260000040f0000000101200190000003730000613d0000000801000029000000000101043300000001020000390000000000210435000000200200003900000000030000190834058f0000040f0000020e030000410000020e0410009c000000000103801900000040011002100000020e0420009c00000000020380190000006002200210000000000112019f00000000020004140000020e0420009c0000000002038019000000c002200210000000000112019f00000214011001c700008010020000390834082b0000040f00000001022001900000057d0000613d000000000101043b000000000001042d00000000010000190000000002000019083405990000040f0000020e0100004100000000020004140000020e0320009c0000000001024019000000c0011002100000023d011001c700008005020000390834082b0000040f00000001022001900000058c0000613d000000000101043b000000000001042d00000000010000190000000002000019083405990000040f0000020e040000410000020e0510009c0000000001048019000000400110021000000000013100190000020e0320009c000000000204801900000060022002100000000001210019000008350001042e0000020e030000410000020e0420009c00000000020380190000020e0410009c000000000103801900000040011002100000006002200210000000000112019f00000836000104300000001f01100039000000200200008a000000000321016f000000400200003900000000010204330000000003310019000000000413004b00000000040000190000000104004039000002100530009c000005b10000213d0000000104400190000005b10000c13d0000000000320435000000000001042d0000023701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f00030000000000020000001f051000390000020f07000041000000000325004b000000000300001900000000030740190000020f042001970000020f06500197000000000546004b00000000050000190000000005072019000000000446013f0000020f0440009c0000000003056019000000000330004c000005e90000613d000300000002001d0000000003010433000002110230009c000200000001001d000005ec0000813d0000003f01300039000000200200008a000000000121016f000100000003001d083405a20000040f000000010600002900000000006104350000000205000029000000000265001900000020022000390000000303000029000000000232004b000005e90000213d0000000002000019000000000362004b000005e40000813d00000020022000390000000003120019000000000452001900000000040404330000000000430435000005dc0000013d0000000002160019000000200220003900000000000204350000000300000005000000000001042d00000000010000190000000002000019083405990000040f0000023701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000006030000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000005fb0000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000101100367000000000101043b0000023e0210009c000006100000813d000000000001042d00000000010000190000000002000019083405990000040f00000024010000390000000101100367000000000101043b0000023e0210009c000006190000813d000000000001042d00000000010000190000000002000019083405990000040f00060000000000020000000001000416000000000110004c000006330000c13d000000040100008a00000000011000310000020f02000041000000400310008c000000000300001900000000030240190000020f01100197000000000410004c000000000200a0190000020f0110009c00000000010300190000000001026019000000000110004c000006330000c13d00000001010003670000000402100370000000000302043b000002130230009c000006360000a13d00000000010000190000000002000019083405990000040f000400000003001d0000002401100370000000000101043b000600000001001d0000000001000411000200000001001d000000000010043500000006010000390000002002000039000100000002001d000000000012043500000040020000390000000001000019000300000002001d083405690000040f000500000001001d083408320000040f000000000110004c00000005010000290000000101100039000500000001001d000006510000c13d0000000501000029083408320000040f000000000110004c0000000501000029000006670000613d083408320000040f0000000603000029000000000231004b000006640000813d0000000301000029000000000101043300000044021000390000023f03000041000000000032043500000024021000390000001c0300003900000000003204350000022d0200004100000000002104350000000402100039000000010300002900000000003204350000006402000039083405990000040f00000000013100490000000502000029083408300000040f000000040100002900000002020000290000000603000029083407700000040f00000004010000290000000602000029083407a20000040f0000000301000029000000000101043300000001020000390000000000210435000000200200003900000000030000190834058f0000040f0000000001120019000000000221004b0000000002000019000000010200403900000001022001900000067c0000c13d000000000001042d0000023701000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f00060000000000020000021304100197000000000140004c000006d30000613d000600000003001d0000021301200197000500000001001d000000000110004c000006e50000613d00000000004004350000002001000039000300000001001d000000000001043500000040020000390000000001000019000100000002001d000400000004001d083405690000040f083408320000040f0000000602000029000200000001001d000000000121004b000006f70000413d00000004010000290000000000100435000000030100002900000000000104350000004002000039000300000002001d0000000001000019083405690000040f000000060200002900000002030000290000000002230049000000000301001900000000010200190000000002030019083408300000040f0000000501000029000000000010043500000000010000190000000302000029083405690000040f000200000001001d083408320000040f000000000201001900000006010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000007090000c13d0000000202000029083408300000040f00000003010000290000000001010433000000060200002900000000002104350000020e0200004100000000030004140000020e0430009c00000000030280190000020e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000233011001c70000800d020000390000000303000039000002340400004100000004050000290000000506000029083408260000040f0000000101200190000007110000613d0000000600000005000000000001042d000000400100003900000000010104330000006402100039000002440300004100000000003204350000004402100039000002450300004100000000003204350000002402100039000000250300003900000000003204350000022d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039083405990000040f000000400100003900000000010104330000006402100039000002420300004100000000003204350000004402100039000002430300004100000000003204350000002402100039000000230300003900000000003204350000022d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039083405990000040f000000010100002900000000010104330000006402100039000002400300004100000000003204350000004402100039000002410300004100000000003204350000002402100039000000260300003900000000003204350000022d0200004100000000002104350000000402100039000000030300002900000000003204350000008402000039083405990000040f0000023701000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f00000000010000190000000002000019083405990000040f00050000000000020000021304100197000000000140004c000007490000613d000400000003001d0000021301200197000500000001001d000000000110004c0000075b0000613d000000000040043500000001010000390000002002000039000100000002001d00000000001204350000004002000039000300000002001d0000000001000019000200000004001d083405690000040f000000050200002900000000002004350000000102000029000000000012043500000000010000190000000302000029083405690000040f00000000020100190000000401000029083408300000040f00000003010000290000000001010433000000040200002900000000002104350000020e0200004100000000030004140000020e0430009c00000000030280190000020e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000233011001c70000800d020000390000000303000039000002460400004100000002050000290000000506000029083408260000040f00000001012001900000076d0000613d0000000500000005000000000001042d0000004001000039000000000101043300000064021000390000024903000041000000000032043500000044021000390000024a0300004100000000003204350000002402100039000000240300003900000000003204350000022d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039083405990000040f000000400100003900000000010104330000006402100039000002470300004100000000003204350000004402100039000002480300004100000000003204350000002402100039000000220300003900000000003204350000022d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039083405990000040f00000000010000190000000002000019083405990000040f0005000000000002000200000003001d000500000002001d000100000001001d0000021301100197000000000010043500000001010000390000002002000039000400000002001d00000000001204350000004002000039000300000002001d0000000001000019083405690000040f0000000502000029000002130220019700000000002004350000000402000029000000000012043500000000010000190000000302000029083405690000040f083408320000040f000000010200008a000000000221004b000007910000613d0000000203000029000000000231004b000007930000413d000000000331004900000001010000290000000502000029083407140000040f0000000500000005000000000001042d0000000301000029000000000101043300000044021000390000024b03000041000000000032043500000024021000390000001d0300003900000000003204350000022d0200004100000000002104350000000402100039000000040300002900000000003204350000006402000039083405990000040f0005000000000002000500000002001d0000021302100197000000000120004c000007e60000613d000400000002001d00000000002004350000002001000039000300000001001d000000000001043500000040020000390000000001000019000100000002001d083405690000040f083408320000040f00000000020100190000000501000029000200000002001d000000000112004b000007f80000413d000000040100002900000000001004350000000301000029000000000001043500000040020000390000000001000019000300000002001d083405690000040f000000050300002900000002020000290000000002320049000000000301001900000000010200190000000002030019083408300000040f0000000201000039083408320000040f0000000502000029000000000221004b0000080a0000413d000000050200002900000000012100490000000202000039083408300000040f00000003010000290000000001010433000000050200002900000000002104350000020e0200004100000000030004140000020e0430009c00000000030280190000020e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000233011001c70000800d020000390000000303000039000002340400004100000004050000290000000006000019083408260000040f0000000101200190000008120000613d0000000500000005000000000001042d0000004001000039000000000101043300000064021000390000024e03000041000000000032043500000044021000390000024f0300004100000000003204350000002402100039000000210300003900000000003204350000022d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039083405990000040f0000000101000029000000000101043300000064021000390000024c03000041000000000032043500000044021000390000024d0300004100000000003204350000002402100039000000220300003900000000003204350000022d0200004100000000002104350000000402100039000000030300002900000000003204350000008402000039083405990000040f0000023701000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019083405990000040f00000000010000190000000002000019083405990000040f000000000110004c000008180000613d000000000001042d000000400100003900000000010104330000004402100039000002500300004100000000003204350000022d020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039083405990000040f00000829002104210000000102000039000000000001042d0000000002000019000000000001042d0000082e002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000083400000432000008350001042e0000083600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004ce2f71a0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc679000000000000000000000000000000000000000000000000000000000893d20e8000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009dc29fac00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000ced67f0c00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000006fdde0364647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b020000000000000000000000000000000000004000000000000000000000000059e1e4348943de408b89af8ab71e502ea722dd41efd1ff4a3548c60e83e91c600200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f206164647265737300657863656564732062726964676520737570706c7920636170000000000000004e487b7100000000000000000000000000000000000000000000000000000000696e76616c69642063616c6c6572000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32ec2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000080020000020000000000000000000000000000004400000000000000000000000000000000000000000000000100000000000000000000000000000000000000006578636565647320627269646765206d696e74656420616d6f756e7400000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0x000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000b42696e616e63652055534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044255534400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Binance USD
Arg [1] : symbol_ (string): BUSD
Arg [2] : decimals_ (uint8): 18

-----Encoded View---------------


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.