Holesky Testnet

Contract

0x5B494Aba42B752B46C91E35FC914b4c2F8D61A00

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer41446762025-07-11 4:15:006 days ago1752207300IN
0x5B494Aba...2F8D61A00
0 ETH0.000000060.001265
_mint TERC39871092025-06-11 20:22:2435 days ago1749673344IN
0x5B494Aba...2F8D61A00
0 ETH0.000000080.00349608
_mint TERC38587042025-05-19 1:31:4859 days ago1747618308IN
0x5B494Aba...2F8D61A00
0 ETH0.000000120.00349607
Transfer38386922025-05-15 6:06:2463 days ago1747289184IN
0x5B494Aba...2F8D61A00
0 ETH0.000000040.00138339
Transfer38343142025-05-14 9:51:1264 days ago1747216272IN
0x5B494Aba...2F8D61A00
0 ETH0.000000180.00349607
Transfer38291742025-05-13 10:14:1265 days ago1747131252IN
0x5B494Aba...2F8D61A00
0 ETH0.000000140.00402029
Transfer38078212025-05-09 9:11:1269 days ago1746781872IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00165768
Transfer38078002025-05-09 9:05:3669 days ago1746781536IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00165687
Transfer37274742025-04-24 15:13:1284 days ago1745507592IN
0x5B494Aba...2F8D61A00
0 ETH0.000000040.00117669
Transfer37255172025-04-24 6:57:3684 days ago1745477856IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00099252
Transfer37255172025-04-24 6:57:3684 days ago1745477856IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00099252
Transfer37255082025-04-24 6:54:4884 days ago1745477688IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00099252
_mint TERC36819162025-04-16 10:27:1292 days ago1744799232IN
0x5B494Aba...2F8D61A00
0 ETH0.000000020.00098926
_mint TERC36819102025-04-16 10:26:0092 days ago1744799160IN
0x5B494Aba...2F8D61A00
0 ETH0.000000020.00098926
Transfer36543692025-04-11 10:40:2497 days ago1744368024IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00162952
Transfer36542662025-04-11 10:14:0097 days ago1744366440IN
0x5B494Aba...2F8D61A00
0 ETH0.000000080.00162952
Transfer36536482025-04-11 7:33:1297 days ago1744356792IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00162952
Transfer35616402025-03-26 14:02:00113 days ago1742997720IN
0x5B494Aba...2F8D61A00
0 ETH0.000000180.00514423
Transfer35611952025-03-26 12:16:12113 days ago1742991372IN
0x5B494Aba...2F8D61A00
0 ETH0.000000170.00331376
Transfer35320992025-03-21 16:02:24118 days ago1742572944IN
0x5B494Aba...2F8D61A00
0 ETH0.000000220.0043058
Transfer35319952025-03-21 15:38:24118 days ago1742571504IN
0x5B494Aba...2F8D61A00
0 ETH0.000040381.1525566
Transfer35195782025-03-19 14:27:24120 days ago1742394444IN
0x5B494Aba...2F8D61A00
0 ETH0.000001860.0531888
Transfer35193632025-03-19 13:38:00120 days ago1742391480IN
0x5B494Aba...2F8D61A00
0 ETH0.000023330.44740718
Transfer35133142025-03-18 13:28:36121 days ago1742304516IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00097
Transfer35132842025-03-18 13:21:24121 days ago1742304084IN
0x5B494Aba...2F8D61A00
0 ETH0.000000050.00097
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xDd415a79...35Df4F1E2
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TERC20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract TERC20 is ERC20 {
    uint8 private _decimals;

    constructor(string memory name, string memory symbol, uint8 decimals) ERC20(name, symbol) {
        _decimals = decimals;
    }

    function _mintTERC(uint256 amount) public {
        if (amount <= 10 * (10**_decimals)) {
            _mint(msg.sender, amount);
        }
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 {}
}

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract ABI

API
[{"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":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":"uint256","name":"amount","type":"uint256"}],"name":"_mintTERC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"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":[{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

0x60806040523480156200001157600080fd5b5060405162001c7f38038062001c7f833981810160405281019062000037919062000254565b828281600390816200004a919062000539565b5080600490816200005c919062000539565b50505080600560006101000a81548160ff021916908360ff16021790555050505062000620565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620000ec82620000a1565b810181811067ffffffffffffffff821117156200010e576200010d620000b2565b5b80604052505050565b60006200012362000083565b9050620001318282620000e1565b919050565b600067ffffffffffffffff821115620001545762000153620000b2565b5b6200015f82620000a1565b9050602081019050919050565b60005b838110156200018c5780820151818401526020810190506200016f565b60008484015250505050565b6000620001af620001a98462000136565b62000117565b905082815260208101848484011115620001ce57620001cd6200009c565b5b620001db8482856200016c565b509392505050565b600082601f830112620001fb57620001fa62000097565b5b81516200020d84826020860162000198565b91505092915050565b600060ff82169050919050565b6200022e8162000216565b81146200023a57600080fd5b50565b6000815190506200024e8162000223565b92915050565b60008060006060848603121562000270576200026f6200008d565b5b600084015167ffffffffffffffff81111562000291576200029062000092565b5b6200029f86828701620001e3565b935050602084015167ffffffffffffffff811115620002c357620002c262000092565b5b620002d186828701620001e3565b9250506040620002e4868287016200023d565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034157607f821691505b602082108103620003575762000356620002f9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000382565b620003cd868362000382565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200041a620004146200040e84620003e5565b620003ef565b620003e5565b9050919050565b6000819050919050565b6200043683620003f9565b6200044e620004458262000421565b8484546200038f565b825550505050565b600090565b6200046562000456565b620004728184846200042b565b505050565b5b818110156200049a576200048e6000826200045b565b60018101905062000478565b5050565b601f821115620004e957620004b3816200035d565b620004be8462000372565b81016020851015620004ce578190505b620004e6620004dd8562000372565b83018262000477565b50505b505050565b600082821c905092915050565b60006200050e60001984600802620004ee565b1980831691505092915050565b6000620005298383620004fb565b9150826002028217905092915050565b6200054482620002ee565b67ffffffffffffffff81111562000560576200055f620000b2565b5b6200056c825462000328565b620005798282856200049e565b600060209050601f831160018114620005b157600084156200059c578287015190505b620005a885826200051b565b86555062000618565b601f198416620005c1866200035d565b60005b82811015620005eb57848901518255600182019150602085019450602081019050620005c4565b868310156200060b578489015162000607601f891682620004fb565b8355505b6001600288020188555050505b505050505050565b61164f80620006306000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461018f57806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d75780631140fabd1461010757806318160ddd1461012357806323b872dd14610141578063313ce56714610171575b600080fd5b6100c161029d565b6040516100ce9190610cd3565b60405180910390f35b6100f160048036038101906100ec9190610d8e565b61032f565b6040516100fe9190610de9565b60405180910390f35b610121600480360381019061011c9190610e04565b610352565b005b61012b61038e565b6040516101389190610e40565b60405180910390f35b61015b60048036038101906101569190610e5b565b610398565b6040516101689190610de9565b60405180910390f35b6101796103c7565b6040516101869190610eca565b60405180910390f35b6101a960048036038101906101a49190610d8e565b6103de565b6040516101b69190610de9565b60405180910390f35b6101d960048036038101906101d49190610ee5565b610415565b6040516101e69190610e40565b60405180910390f35b6101f761045d565b6040516102049190610cd3565b60405180910390f35b61022760048036038101906102229190610d8e565b6104ef565b6040516102349190610de9565b60405180910390f35b61025760048036038101906102529190610d8e565b610566565b6040516102649190610de9565b60405180910390f35b61028760048036038101906102829190610f12565b610589565b6040516102949190610e40565b60405180910390f35b6060600380546102ac90610f81565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610f81565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a610610565b9050610347818585610618565b600191505092915050565b600560009054906101000a900460ff16600a61036e9190611114565b600a61037a919061115f565b811161038b5761038a33826107e1565b5b50565b6000600254905090565b6000806103a3610610565b90506103b0858285610937565b6103bb8585856109c3565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b6000806103e9610610565b905061040a8185856103fb8589610589565b61040591906111a1565b610618565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046c90610f81565b80601f016020809104026020016040519081016040528092919081815260200182805461049890610f81565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b6000806104fa610610565b905060006105088286610589565b90508381101561054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490611247565b60405180910390fd5b61055a8286868403610618565b60019250505092915050565b600080610571610610565b905061057e8185856109c3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e906112d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed9061136b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107d49190610e40565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610847906113d7565b60405180910390fd5b61085c60008383610c39565b806002600082825461086e91906111a1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161091f9190610e40565b60405180910390a361093360008383610c3e565b5050565b60006109438484610589565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109bd57818110156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690611443565b60405180910390fd5b6109bc8484848403610618565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a29906114d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890611567565b60405180910390fd5b610aac838383610c39565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906115f9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c209190610e40565b60405180910390a3610c33848484610c3e565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c7d578082015181840152602081019050610c62565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ca582610c43565b610caf8185610c4e565b9350610cbf818560208601610c5f565b610cc881610c89565b840191505092915050565b60006020820190508181036000830152610ced8184610c9a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d2582610cfa565b9050919050565b610d3581610d1a565b8114610d4057600080fd5b50565b600081359050610d5281610d2c565b92915050565b6000819050919050565b610d6b81610d58565b8114610d7657600080fd5b50565b600081359050610d8881610d62565b92915050565b60008060408385031215610da557610da4610cf5565b5b6000610db385828601610d43565b9250506020610dc485828601610d79565b9150509250929050565b60008115159050919050565b610de381610dce565b82525050565b6000602082019050610dfe6000830184610dda565b92915050565b600060208284031215610e1a57610e19610cf5565b5b6000610e2884828501610d79565b91505092915050565b610e3a81610d58565b82525050565b6000602082019050610e556000830184610e31565b92915050565b600080600060608486031215610e7457610e73610cf5565b5b6000610e8286828701610d43565b9350506020610e9386828701610d43565b9250506040610ea486828701610d79565b9150509250925092565b600060ff82169050919050565b610ec481610eae565b82525050565b6000602082019050610edf6000830184610ebb565b92915050565b600060208284031215610efb57610efa610cf5565b5b6000610f0984828501610d43565b91505092915050565b60008060408385031215610f2957610f28610cf5565b5b6000610f3785828601610d43565b9250506020610f4885828601610d43565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f9957607f821691505b602082108103610fac57610fab610f52565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156110385780860481111561101457611013610fb2565b5b60018516156110235780820291505b808102905061103185610fe1565b9450610ff8565b94509492505050565b600082611051576001905061110d565b8161105f576000905061110d565b8160018114611075576002811461107f576110ae565b600191505061110d565b60ff84111561109157611090610fb2565b5b8360020a9150848211156110a8576110a7610fb2565b5b5061110d565b5060208310610133831016604e8410600b84101617156110e35782820a9050838111156110de576110dd610fb2565b5b61110d565b6110f08484846001610fee565b9250905081840481111561110757611106610fb2565b5b81810290505b9392505050565b600061111f82610d58565b915061112a83610eae565b92506111577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611041565b905092915050565b600061116a82610d58565b915061117583610d58565b925082820261118381610d58565b9150828204841483151761119a57611199610fb2565b5b5092915050565b60006111ac82610d58565b91506111b783610d58565b92508282019050808211156111cf576111ce610fb2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611231602583610c4e565b915061123c826111d5565b604082019050919050565b6000602082019050818103600083015261126081611224565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112c3602483610c4e565b91506112ce82611267565b604082019050919050565b600060208201905081810360008301526112f2816112b6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611355602283610c4e565b9150611360826112f9565b604082019050919050565b6000602082019050818103600083015261138481611348565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006113c1601f83610c4e565b91506113cc8261138b565b602082019050919050565b600060208201905081810360008301526113f0816113b4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061142d601d83610c4e565b9150611438826113f7565b602082019050919050565b6000602082019050818103600083015261145c81611420565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114bf602583610c4e565b91506114ca82611463565b604082019050919050565b600060208201905081810360008301526114ee816114b2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611551602383610c4e565b915061155c826114f5565b604082019050919050565b6000602082019050818103600083015261158081611544565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006115e3602683610c4e565b91506115ee82611587565b604082019050919050565b60006020820190508181036000830152611612816115d6565b905091905056fea2646970667358221220203f3e028a604a46e94577e0e8b32a97fa0d9e42d09d4b78bec519f002e1bd5c64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000007544552433244500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075445524332445000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461018f57806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d75780631140fabd1461010757806318160ddd1461012357806323b872dd14610141578063313ce56714610171575b600080fd5b6100c161029d565b6040516100ce9190610cd3565b60405180910390f35b6100f160048036038101906100ec9190610d8e565b61032f565b6040516100fe9190610de9565b60405180910390f35b610121600480360381019061011c9190610e04565b610352565b005b61012b61038e565b6040516101389190610e40565b60405180910390f35b61015b60048036038101906101569190610e5b565b610398565b6040516101689190610de9565b60405180910390f35b6101796103c7565b6040516101869190610eca565b60405180910390f35b6101a960048036038101906101a49190610d8e565b6103de565b6040516101b69190610de9565b60405180910390f35b6101d960048036038101906101d49190610ee5565b610415565b6040516101e69190610e40565b60405180910390f35b6101f761045d565b6040516102049190610cd3565b60405180910390f35b61022760048036038101906102229190610d8e565b6104ef565b6040516102349190610de9565b60405180910390f35b61025760048036038101906102529190610d8e565b610566565b6040516102649190610de9565b60405180910390f35b61028760048036038101906102829190610f12565b610589565b6040516102949190610e40565b60405180910390f35b6060600380546102ac90610f81565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610f81565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a610610565b9050610347818585610618565b600191505092915050565b600560009054906101000a900460ff16600a61036e9190611114565b600a61037a919061115f565b811161038b5761038a33826107e1565b5b50565b6000600254905090565b6000806103a3610610565b90506103b0858285610937565b6103bb8585856109c3565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b6000806103e9610610565b905061040a8185856103fb8589610589565b61040591906111a1565b610618565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046c90610f81565b80601f016020809104026020016040519081016040528092919081815260200182805461049890610f81565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b6000806104fa610610565b905060006105088286610589565b90508381101561054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490611247565b60405180910390fd5b61055a8286868403610618565b60019250505092915050565b600080610571610610565b905061057e8185856109c3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e906112d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed9061136b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107d49190610e40565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610847906113d7565b60405180910390fd5b61085c60008383610c39565b806002600082825461086e91906111a1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161091f9190610e40565b60405180910390a361093360008383610c3e565b5050565b60006109438484610589565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109bd57818110156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690611443565b60405180910390fd5b6109bc8484848403610618565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a29906114d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890611567565b60405180910390fd5b610aac838383610c39565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906115f9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c209190610e40565b60405180910390a3610c33848484610c3e565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c7d578082015181840152602081019050610c62565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ca582610c43565b610caf8185610c4e565b9350610cbf818560208601610c5f565b610cc881610c89565b840191505092915050565b60006020820190508181036000830152610ced8184610c9a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d2582610cfa565b9050919050565b610d3581610d1a565b8114610d4057600080fd5b50565b600081359050610d5281610d2c565b92915050565b6000819050919050565b610d6b81610d58565b8114610d7657600080fd5b50565b600081359050610d8881610d62565b92915050565b60008060408385031215610da557610da4610cf5565b5b6000610db385828601610d43565b9250506020610dc485828601610d79565b9150509250929050565b60008115159050919050565b610de381610dce565b82525050565b6000602082019050610dfe6000830184610dda565b92915050565b600060208284031215610e1a57610e19610cf5565b5b6000610e2884828501610d79565b91505092915050565b610e3a81610d58565b82525050565b6000602082019050610e556000830184610e31565b92915050565b600080600060608486031215610e7457610e73610cf5565b5b6000610e8286828701610d43565b9350506020610e9386828701610d43565b9250506040610ea486828701610d79565b9150509250925092565b600060ff82169050919050565b610ec481610eae565b82525050565b6000602082019050610edf6000830184610ebb565b92915050565b600060208284031215610efb57610efa610cf5565b5b6000610f0984828501610d43565b91505092915050565b60008060408385031215610f2957610f28610cf5565b5b6000610f3785828601610d43565b9250506020610f4885828601610d43565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f9957607f821691505b602082108103610fac57610fab610f52565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156110385780860481111561101457611013610fb2565b5b60018516156110235780820291505b808102905061103185610fe1565b9450610ff8565b94509492505050565b600082611051576001905061110d565b8161105f576000905061110d565b8160018114611075576002811461107f576110ae565b600191505061110d565b60ff84111561109157611090610fb2565b5b8360020a9150848211156110a8576110a7610fb2565b5b5061110d565b5060208310610133831016604e8410600b84101617156110e35782820a9050838111156110de576110dd610fb2565b5b61110d565b6110f08484846001610fee565b9250905081840481111561110757611106610fb2565b5b81810290505b9392505050565b600061111f82610d58565b915061112a83610eae565b92506111577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611041565b905092915050565b600061116a82610d58565b915061117583610d58565b925082820261118381610d58565b9150828204841483151761119a57611199610fb2565b5b5092915050565b60006111ac82610d58565b91506111b783610d58565b92508282019050808211156111cf576111ce610fb2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611231602583610c4e565b915061123c826111d5565b604082019050919050565b6000602082019050818103600083015261126081611224565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112c3602483610c4e565b91506112ce82611267565b604082019050919050565b600060208201905081810360008301526112f2816112b6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611355602283610c4e565b9150611360826112f9565b604082019050919050565b6000602082019050818103600083015261138481611348565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006113c1601f83610c4e565b91506113cc8261138b565b602082019050919050565b600060208201905081810360008301526113f0816113b4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061142d601d83610c4e565b9150611438826113f7565b602082019050919050565b6000602082019050818103600083015261145c81611420565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114bf602583610c4e565b91506114ca82611463565b604082019050919050565b600060208201905081810360008301526114ee816114b2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611551602383610c4e565b915061155c826114f5565b604082019050919050565b6000602082019050818103600083015261158081611544565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006115e3602683610c4e565b91506115ee82611587565b604082019050919050565b60006020820190508181036000830152611612816115d6565b905091905056fea2646970667358221220203f3e028a604a46e94577e0e8b32a97fa0d9e42d09d4b78bec519f002e1bd5c64736f6c63430008140033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.