Contract Address Details

0x953C90a1b63C9B4946eb99b1A36f0f40CbcD6F5d

Token
CWBTC (CWBTC)
Creator
0x1710f9–729fb5 at 0x4961f8–936d26
Balance
0 mADA
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
24049482
Contract name:
CToken




Optimization enabled
false
Compiler version
v0.8.0+commit.c7dfd78e




EVM Version
default




Verified at
2022-05-20T17:05:12.148568Z

Constructor Arguments

000000000000000000000000aaede8344c29706d27aee05251c3b33c55ec23aa0000000000000000000000005a211c8465a73ddff7554485f3c3d907cf46a3db00000000000000000000000052343b6a823e1b3b4362d772c078224f5693fcd100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000005435742544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054357425443000000000000000000000000000000000000000000000000000000
              

Contract source code

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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);
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)



/**
 * @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;
    }
}




// import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Pausable.sol";


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol)




// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)





// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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);
}



/**
 * @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, allowance(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 = allowance(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 {}
}


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)





/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}



contract CToken is ERC20Pausable {
    address[3] private _owner;
    uint8 private _decimal;
    mapping(bytes32 => address) private task;
    event TaskExecuted(bytes32 indexed hash);
    event TaskAccepted(bytes32 indexed hash, address sender);
    event Minted(uint256 indexed taskKey, address to, uint256 amount);
    event OwnershipTransferred(
        uint256 indexed i,
        address indexed oldOwner,
        address indexed newOwner
    );
    event Burned(
        address indexed tokenOwner,
        uint256 amount,
        string toChain,
        string toAddress
    );

    constructor(
        address[3] memory owner,
        string memory name,
        string memory symbol,
        uint8 decimal
    ) ERC20(name, symbol) {
        _owner = owner;
        _decimal = decimal;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimal;
    }

    function pause() public onlyOwner whenNotPaused returns (bool) {
        super._pause();
        return paused();
    }

    function unpause() public onlyOwner whenPaused returns (bool) {
        super._unpause();
        return paused();
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        uint256 index = 3;
        for (uint256 i = 0; i < _owner.length; i++) {
            if (_msgSender() == _owner[i]) {
                index = i;
                break;
            }
        }
        require(index < 3, "Ownable: Sender is not the owner");
        _;
    }

    function changeOwner(
        uint256 taskKey,
        uint256 i,
        address newOwner
    ) public whenPaused onlyOwner returns (bytes32) {
        bytes32 key = keccak256(abi.encodePacked(taskKey, i, newOwner));
        if (_multiSignAllowed(key)) {
            _transferOwnership(i, newOwner);
        }
        return key;
    }

    function _transferOwnership(uint256 i, address newOwner) internal virtual {
        require(i < 3, "This contract only has 3 owner");
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        address oldOwner = _owner[i];
        _owner[i] = newOwner;
        emit OwnershipTransferred(i, oldOwner, newOwner);
    }


    function mint(
        uint256 taskKey,
        address to,
        uint256 amount
    ) public onlyOwner whenNotPaused returns (bytes32) {
        bytes32 key = keccak256(abi.encodePacked(taskKey, to, amount));
        if (_multiSignAllowed(key)) {
            super._mint(to, amount);
            emit Minted(taskKey, to, amount);
        }
        return key;
    }


    function burn(
        uint256 amount,
        string memory toChain,
        string memory toAddress
    ) public whenNotPaused {
        super._burn(_msgSender(), amount);
        emit Burned(_msgSender(), amount, toChain, toAddress);
    }


    function _multiSignAllowed(bytes32 key) internal returns (bool) {
        address oldValue = task[key];
        bool canExec = false;
        require(
            oldValue != 0x1111111111111111111111111111111111111111,
            "task has executed"
        );
        if (oldValue == 0x0000000000000000000000000000000000000000) {
            task[key] = _msgSender();
            canExec = false;
        } else {
            require(_msgSender() != oldValue, "Should be different sender");
            task[key] = 0x1111111111111111111111111111111111111111;
            canExec = true;
        }
        emit TaskAccepted(key, _msgSender());
        return canExec;
    }

    function queryTask(bytes32 key) public view returns (address) {
        return task[key];
    }
}



        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address[3]","name":"owner","internalType":"address[3]"},{"type":"string","name":"name","internalType":"string"},{"type":"string","name":"symbol","internalType":"string"},{"type":"uint8","name":"decimal","internalType":"uint8"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Burned","inputs":[{"type":"address","name":"tokenOwner","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"string","name":"toChain","internalType":"string","indexed":false},{"type":"string","name":"toAddress","internalType":"string","indexed":false}],"anonymous":false},{"type":"event","name":"Minted","inputs":[{"type":"uint256","name":"taskKey","internalType":"uint256","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"uint256","name":"i","internalType":"uint256","indexed":true},{"type":"address","name":"oldOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"TaskAccepted","inputs":[{"type":"bytes32","name":"hash","internalType":"bytes32","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"TaskExecuted","inputs":[{"type":"bytes32","name":"hash","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"string","name":"toChain","internalType":"string"},{"type":"string","name":"toAddress","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"changeOwner","inputs":[{"type":"uint256","name":"taskKey","internalType":"uint256"},{"type":"uint256","name":"i","internalType":"uint256"},{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[3]","name":"","internalType":"address[3]"}],"name":"listOwners","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"mint","inputs":[{"type":"uint256","name":"taskKey","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"queryTask","inputs":[{"type":"bytes32","name":"key","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"unpause","inputs":[]}]
            

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063836a1040116100ad578063a9059cbb11610071578063a9059cbb14610348578063ba211db014610378578063dd62ed3e14610394578063e63ba282146103c4578063ed60c0fc146103f457610121565b8063836a10401461027c5780638456cb59146102ac5780638d3943ec146102ca57806395d89b41146102fa578063a457c2d71461031857610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633f4ba83a146102105780635c975abb1461022e57806370a082311461024c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e610412565b60405161013b9190612886565b60405180910390f35b61015e60048036038101906101599190611ec9565b6104a4565b60405161016b9190612850565b60405180910390f35b61017c6104c7565b6040516101899190612ae8565b60405180910390f35b6101ac60048036038101906101a79190611e7a565b6104d1565b6040516101b99190612850565b60405180910390f35b6101ca610500565b6040516101d79190612b48565b60405180910390f35b6101fa60048036038101906101f59190611ec9565b610517565b6040516102079190612850565b60405180910390f35b61021861054e565b6040516102259190612850565b60405180910390f35b6102366106b3565b6040516102439190612850565b60405180910390f35b61026660048036038101906102619190611e15565b6106ca565b6040516102739190612ae8565b60405180910390f35b61029660048036038101906102919190611f2e565b610712565b6040516102a3919061286b565b60405180910390f35b6102b46108f0565b6040516102c19190612850565b60405180910390f35b6102e460048036038101906102df9190611f05565b610a56565b6040516102f191906127f1565b60405180910390f35b610302610a93565b60405161030f9190612886565b60405180910390f35b610332600480360381019061032d9190611ec9565b610b25565b60405161033f9190612850565b60405180910390f35b610362600480360381019061035d9190611ec9565b610b9c565b60405161036f9190612850565b60405180910390f35b610392600480360381019061038d9190611f7d565b610bbf565b005b6103ae60048036038101906103a99190611e3e565b610c76565b6040516103bb9190612ae8565b60405180910390f35b6103de60048036038101906103d99190611ffc565b610cfd565b6040516103eb919061286b565b60405180910390f35b6103fc610ea1565b6040516104099190612835565b60405180910390f35b60606003805461042190612d38565b80601f016020809104026020016040519081016040528092919081815260200182805461044d90612d38565b801561049a5780601f1061046f5761010080835404028352916020019161049a565b820191906000526020600020905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b6000806104af610f22565b90506104bc818585610f2a565b600191505092915050565b6000600254905090565b6000806104dc610f22565b90506104e98582856110f5565b6104f4858585611181565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b600080610522610f22565b90506105438185856105348589610c76565b61053e9190612c0d565b610f2a565b600191505092915050565b6000806003905060005b6003811015610612576006816003811061059b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166105db610f22565b73ffffffffffffffffffffffffffffffffffffffff1614156105ff57809150610612565b808061060a90612d6a565b915050610558565b5060038110610656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064d90612a68565b60405180910390fd5b61065e6106b3565b61069d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610694906128c8565b60405180910390fd5b6106a5611402565b6106ad6106b3565b91505090565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806003905060005b60038110156107d6576006816003811061075f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661079f610f22565b73ffffffffffffffffffffffffffffffffffffffff1614156107c3578091506107d6565b80806107ce90612d6a565b91505061071c565b506003811061081a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081190612a68565b60405180910390fd5b6108226106b3565b15610862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610859906129a8565b60405180910390fd5b600085858560405160200161087993929190612777565b60405160208183030381529060405280519060200120905061089a816114a4565b156108e4576108a98585611723565b857fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e3986866040516108db92919061280c565b60405180910390a25b80925050509392505050565b6000806003905060005b60038110156109b4576006816003811061093d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097d610f22565b73ffffffffffffffffffffffffffffffffffffffff1614156109a1578091506109b4565b80806109ac90612d6a565b9150506108fa565b50600381106109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90612a68565b60405180910390fd5b610a006106b3565b15610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906129a8565b60405180910390fd5b610a48611883565b610a506106b3565b91505090565b6000600a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b606060048054610aa290612d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610ace90612d38565b8015610b1b5780601f10610af057610100808354040283529160200191610b1b565b820191906000526020600020905b815481529060010190602001808311610afe57829003601f168201915b5050505050905090565b600080610b30610f22565b90506000610b3e8286610c76565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612a88565b60405180910390fd5b610b908286868403610f2a565b60019250505092915050565b600080610ba7610f22565b9050610bb4818585611181565b600191505092915050565b610bc76106b3565b15610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906129a8565b60405180910390fd5b610c18610c12610f22565b84611926565b610c20610f22565b73ffffffffffffffffffffffffffffffffffffffff167fe7fe72e51b458dcd29475a3be9675669af7aa5c3d7e9161fdb6cbba71803dd50848484604051610c6993929190612b03565b60405180910390a2505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610d076106b3565b610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906128c8565b60405180910390fd5b60006003905060005b6003811015610e095760068160038110610d92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610dd2610f22565b73ffffffffffffffffffffffffffffffffffffffff161415610df657809150610e09565b8080610e0190612d6a565b915050610d4f565b5060038110610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612a68565b60405180910390fd5b6000858585604051602001610e64939291906127b4565b604051602081830303815290604052805190602001209050610e85816114a4565b15610e9557610e948585611afd565b5b80925050509392505050565b610ea9611d4c565b6006600380602002604051908101604052809291908260038015610f18576020028201915b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610ece575b5050505050905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190612a28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190612928565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e89190612ae8565b60405180910390a3505050565b60006111018484610c76565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461117b578181101561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612948565b60405180910390fd5b61117a8484848403610f2a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906128a8565b60405180910390fd5b61126c838383611cea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990612968565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113859190612c0d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113e99190612ae8565b60405180910390a36113fc848484611d42565b50505050565b61140a6106b3565b611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906128c8565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61148d610f22565b60405161149a91906127f1565b60405180910390a1565b600080600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073111111111111111111111111111111111111111173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990612a48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f95761159f610f22565b600a600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600090506116da565b8173ffffffffffffffffffffffffffffffffffffffff16611618610f22565b73ffffffffffffffffffffffffffffffffffffffff16141561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906129c8565b60405180910390fd5b731111111111111111111111111111111111111111600a600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b837ffed1e5369ff33c087cc916cadc196d1c9b196d0596482eaef4c4ee74e895409b611704610f22565b60405161171191906127f1565b60405180910390a28092505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90612aa8565b60405180910390fd5b61179f60008383611cea565b80600260008282546117b19190612c0d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118069190612c0d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161186b9190612ae8565b60405180910390a361187f60008383611d42565b5050565b61188b6106b3565b156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906129a8565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861190f610f22565b60405161191c91906127f1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d906129e8565b60405180910390fd5b6119a282600083611cea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f906128e8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611a7f9190612c63565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ae49190612ae8565b60405180910390a3611af883600084611d42565b505050565b60038210611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790612988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790612908565b60405180910390fd5b600060068360038110611bec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160068460038110611c4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16847f16b85f49bf01212961345d3016c9a531894accf62eb7680f2045d79185cc0ec060405160405180910390a4505050565b611cf5838383611d47565b611cfd6106b3565b15611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490612ac8565b60405180910390fd5b505050565b505050565b505050565b6040518060600160405280600390602082028036833780820191505090505090565b6000611d81611d7c84612b94565b612b63565b905082815260208101848484011115611d9957600080fd5b611da4848285612cf6565b509392505050565b600081359050611dbb81612e8c565b92915050565b600081359050611dd081612ea3565b92915050565b600082601f830112611de757600080fd5b8135611df7848260208601611d6e565b91505092915050565b600081359050611e0f81612eba565b92915050565b600060208284031215611e2757600080fd5b6000611e3584828501611dac565b91505092915050565b60008060408385031215611e5157600080fd5b6000611e5f85828601611dac565b9250506020611e7085828601611dac565b9150509250929050565b600080600060608486031215611e8f57600080fd5b6000611e9d86828701611dac565b9350506020611eae86828701611dac565b9250506040611ebf86828701611e00565b9150509250925092565b60008060408385031215611edc57600080fd5b6000611eea85828601611dac565b9250506020611efb85828601611e00565b9150509250929050565b600060208284031215611f1757600080fd5b6000611f2584828501611dc1565b91505092915050565b600080600060608486031215611f4357600080fd5b6000611f5186828701611e00565b9350506020611f6286828701611dac565b9250506040611f7386828701611e00565b9150509250925092565b600080600060608486031215611f9257600080fd5b6000611fa086828701611e00565b935050602084013567ffffffffffffffff811115611fbd57600080fd5b611fc986828701611dd6565b925050604084013567ffffffffffffffff811115611fe657600080fd5b611ff286828701611dd6565b9150509250925092565b60008060006060848603121561201157600080fd5b600061201f86828701611e00565b935050602061203086828701611e00565b925050604061204186828701611dac565b9150509250925092565b60006120578383612063565b60208301905092915050565b61206c81612c97565b82525050565b61207b81612c97565b82525050565b61209261208d82612c97565b612db3565b82525050565b6120a181612bce565b6120ab8184612bf1565b92506120b682612bc4565b8060005b838110156120e75781516120ce878261204b565b96506120d983612be4565b9250506001810190506120ba565b505050505050565b6120f881612ca9565b82525050565b61210781612cb5565b82525050565b600061211882612bd9565b6121228185612bfc565b9350612132818560208601612d05565b61213b81612e6e565b840191505092915050565b6000612153602383612bfc565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121b9601483612bfc565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006121f9602283612bfc565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061225f602683612bfc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122c5602283612bfc565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061232b601d83612bfc565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061236b602683612bfc565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123d1601e83612bfc565b91507f5468697320636f6e7472616374206f6e6c79206861732033206f776e657200006000830152602082019050919050565b6000612411601083612bfc565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612451601a83612bfc565b91507f53686f756c6420626520646966666572656e742073656e6465720000000000006000830152602082019050919050565b6000612491602183612bfc565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124f7602583612bfc565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061255d602483612bfc565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125c3601183612bfc565b91507f7461736b206861732065786563757465640000000000000000000000000000006000830152602082019050919050565b6000612603602083612bfc565b91507f4f776e61626c653a2053656e646572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612643602583612bfc565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126a9601f83612bfc565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b60006126e9602a83612bfc565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b61274b81612cdf565b82525050565b61276261275d82612cdf565b612dd7565b82525050565b61277181612ce9565b82525050565b60006127838286612751565b6020820191506127938285612081565b6014820191506127a38284612751565b602082019150819050949350505050565b60006127c08286612751565b6020820191506127d08285612751565b6020820191506127e08284612081565b601482019150819050949350505050565b60006020820190506128066000830184612072565b92915050565b60006040820190506128216000830185612072565b61282e6020830184612742565b9392505050565b600060608201905061284a6000830184612098565b92915050565b600060208201905061286560008301846120ef565b92915050565b600060208201905061288060008301846120fe565b92915050565b600060208201905081810360008301526128a0818461210d565b905092915050565b600060208201905081810360008301526128c181612146565b9050919050565b600060208201905081810360008301526128e1816121ac565b9050919050565b60006020820190508181036000830152612901816121ec565b9050919050565b6000602082019050818103600083015261292181612252565b9050919050565b60006020820190508181036000830152612941816122b8565b9050919050565b600060208201905081810360008301526129618161231e565b9050919050565b600060208201905081810360008301526129818161235e565b9050919050565b600060208201905081810360008301526129a1816123c4565b9050919050565b600060208201905081810360008301526129c181612404565b9050919050565b600060208201905081810360008301526129e181612444565b9050919050565b60006020820190508181036000830152612a0181612484565b9050919050565b60006020820190508181036000830152612a21816124ea565b9050919050565b60006020820190508181036000830152612a4181612550565b9050919050565b60006020820190508181036000830152612a61816125b6565b9050919050565b60006020820190508181036000830152612a81816125f6565b9050919050565b60006020820190508181036000830152612aa181612636565b9050919050565b60006020820190508181036000830152612ac18161269c565b9050919050565b60006020820190508181036000830152612ae1816126dc565b9050919050565b6000602082019050612afd6000830184612742565b92915050565b6000606082019050612b186000830186612742565b8181036020830152612b2a818561210d565b90508181036040830152612b3e818461210d565b9050949350505050565b6000602082019050612b5d6000830184612768565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612b8a57612b89612e3f565b5b8060405250919050565b600067ffffffffffffffff821115612baf57612bae612e3f565b5b601f19601f8301169050602081019050919050565b6000819050919050565b600060039050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b6000612c1882612cdf565b9150612c2383612cdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5857612c57612de1565b5b828201905092915050565b6000612c6e82612cdf565b9150612c7983612cdf565b925082821015612c8c57612c8b612de1565b5b828203905092915050565b6000612ca282612cbf565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612d23578082015181840152602081019050612d08565b83811115612d32576000848401525b50505050565b60006002820490506001821680612d5057607f821691505b60208210811415612d6457612d63612e10565b5b50919050565b6000612d7582612cdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612da857612da7612de1565b5b600182019050919050565b6000612dbe82612dc5565b9050919050565b6000612dd082612e7f565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612e9581612c97565b8114612ea057600080fd5b50565b612eac81612cb5565b8114612eb757600080fd5b50565b612ec381612cdf565b8114612ece57600080fd5b5056fea264697066735822122072345c4c7c440d2f6def84636de7e6793750cb5c91f8ec60ee75a9b6e64441ce64736f6c63430008000033