ETH Price: $3,453.43 (+1.63%)
Gas: 10 Gwei

Token

WODIU2.0 (WODIU2.0)
 

Overview

Max Total Supply

10,000,000,000 WODIU2.0

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000750154797543 WODIU2.0

Value
$0.00
0xfd336a0b6252d59869e4553be956a0c9b7a641ca
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : WODIU2.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";

contract Token is ERC20  {

    mapping (uint => uint) private _txCount;

    address public pair;
    address public treasury;

    constructor(
        
        ) ERC20("WODIU2.0", "WODIU2.0") {
        address _factory=0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
        address _pairToken=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
        address _treasury=0x2699eD9d4e41c22FF15D8FCf14F7F8E183aac52c;

        pair = IUniswapV2Factory(_factory).createPair(address(this), _pairToken);
        _mint(0xD8218b18485F4CF14CE977e62140ee6006E7Dde9, 100e8 * 10 ** decimals());
        treasury = _treasury;
    }

    function _transfer(address from, address to, uint256 amount) internal override blockLimit {
        
        if(from == pair){
            // buy
            _t(from, to, amount);
        }else if(to  == pair){
            // sell
            _t(from, to, amount);
        }else{
            // others
            super._transfer(from, to, amount);
        }
    }

    function _t(address from, address to, uint256 amount) internal {
        uint treasuryAmount =amount * 3 / 100;
        amount -= treasuryAmount;

        super._transfer(from, treasury, treasuryAmount);
        super._transfer(from, to, amount);
    }

    modifier blockLimit() {
        require(_txCount[block.number] < 5, "over block limit");
        _;
        _txCount[block.number] ++;
    }

}

File 2 of 7 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 3 of 7 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f574f444955322e300000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f574f444955322e3000000000000000000000000000000000000000000000000081525081600390816200008f919062000656565b508060049081620000a1919062000656565b5050506000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9050600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290506000732699ed9d4e41c22ff15d8fcf14f7f8e183aac52c90508273ffffffffffffffffffffffffffffffffffffffff1663c9c6539630846040518363ffffffff1660e01b81526004016200012c92919062000782565b6020604051808303816000875af11580156200014c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001729190620007e5565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200020773d8218b18485f4cf14ce977e62140ee6006e7dde9620001db6200025160201b60201c565b600a620001e99190620009a7565b6402540be400620001fb9190620009f8565b6200025a60201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000b2f565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c39062000aa4565b60405180910390fd5b620002e060008383620003d260201b60201c565b8060026000828254620002f4919062000ac6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034b919062000ac6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b2919062000b12565b60405180910390a3620003ce60008383620003d760201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045e57607f821691505b60208210810362000474576200047362000416565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004de7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200049f565b620004ea86836200049f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000537620005316200052b8462000502565b6200050c565b62000502565b9050919050565b6000819050919050565b620005538362000516565b6200056b62000562826200053e565b848454620004ac565b825550505050565b600090565b6200058262000573565b6200058f81848462000548565b505050565b5b81811015620005b757620005ab60008262000578565b60018101905062000595565b5050565b601f8211156200060657620005d0816200047a565b620005db846200048f565b81016020851015620005eb578190505b62000603620005fa856200048f565b83018262000594565b50505b505050565b600082821c905092915050565b60006200062b600019846008026200060b565b1980831691505092915050565b600062000646838362000618565b9150826002028217905092915050565b6200066182620003dc565b67ffffffffffffffff8111156200067d576200067c620003e7565b5b62000689825462000445565b62000696828285620005bb565b600060209050601f831160018114620006ce5760008415620006b9578287015190505b620006c5858262000638565b86555062000735565b601f198416620006de866200047a565b60005b828110156200070857848901518255600182019150602085019450602081019050620006e1565b8683101562000728578489015162000724601f89168262000618565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200076a826200073d565b9050919050565b6200077c816200075d565b82525050565b600060408201905062000799600083018562000771565b620007a8602083018462000771565b9392505050565b600080fd5b620007bf816200075d565b8114620007cb57600080fd5b50565b600081519050620007df81620007b4565b92915050565b600060208284031215620007fe57620007fd620007af565b5b60006200080e84828501620007ce565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620008a5578086048111156200087d576200087c62000817565b5b60018516156200088d5780820291505b80810290506200089d8562000846565b94506200085d565b94509492505050565b600082620008c0576001905062000993565b81620008d0576000905062000993565b8160018114620008e95760028114620008f4576200092a565b600191505062000993565b60ff84111562000909576200090862000817565b5b8360020a91508482111562000923576200092262000817565b5b5062000993565b5060208310610133831016604e8410600b8410161715620009645782820a9050838111156200095e576200095d62000817565b5b62000993565b62000973848484600162000853565b925090508184048111156200098d576200098c62000817565b5b81810290505b9392505050565b600060ff82169050919050565b6000620009b48262000502565b9150620009c1836200099a565b9250620009f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008ae565b905092915050565b600062000a058262000502565b915062000a128362000502565b925082820262000a228162000502565b9150828204841483151762000a3c5762000a3b62000817565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a8c601f8362000a43565b915062000a998262000a54565b602082019050919050565b6000602082019050818103600083015262000abf8162000a7d565b9050919050565b600062000ad38262000502565b915062000ae08362000502565b925082820190508082111562000afb5762000afa62000817565b5b92915050565b62000b0c8162000502565b82525050565b600060208201905062000b29600083018462000b01565b92915050565b6117438062000b3f6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806361d027b31161008c578063a457c2d711610066578063a457c2d71461022a578063a8aa1b311461025a578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b806361d027b3146101be57806370a08231146101dc57806395d89b411461020c576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d8565b6040516100e99190610e6c565b60405180910390f35b61010c60048036038101906101079190610f27565b61036a565b6040516101199190610f82565b60405180910390f35b61012a61038d565b6040516101379190610fac565b60405180910390f35b61015a60048036038101906101559190610fc7565b610397565b6040516101679190610f82565b60405180910390f35b6101786103c6565b6040516101859190611036565b60405180910390f35b6101a860048036038101906101a39190610f27565b6103cf565b6040516101b59190610f82565b60405180910390f35b6101c6610479565b6040516101d39190611060565b60405180910390f35b6101f660048036038101906101f1919061107b565b61049f565b6040516102039190610fac565b60405180910390f35b6102146104e7565b6040516102219190610e6c565b60405180910390f35b610244600480360381019061023f9190610f27565b610579565b6040516102519190610f82565b60405180910390f35b610262610663565b60405161026f9190611060565b60405180910390f35b610292600480360381019061028d9190610f27565b610689565b60405161029f9190610f82565b60405180910390f35b6102c260048036038101906102bd91906110a8565b6106ac565b6040516102cf9190610fac565b60405180910390f35b6060600380546102e790611117565b80601f016020809104026020016040519081016040528092919081815260200182805461031390611117565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b600080610375610733565b905061038281858561073b565b600191505092915050565b6000600254905090565b6000806103a2610733565b90506103af858285610904565b6103ba858585610990565b60019150509392505050565b60006012905090565b6000806103da610733565b905061046e818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104699190611177565b61073b565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104f690611117565b80601f016020809104026020016040519081016040528092919081815260200182805461052290611117565b801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600080610584610733565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561064a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106419061121d565b60405180910390fd5b610657828686840361073b565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610694610733565b90506106a1818585610990565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906112af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611341565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f79190610fac565b60405180910390a3505050565b600061091084846106ac565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461098a578181101561097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906113ad565b60405180910390fd5b610989848484840361073b565b5b50505050565b600580600043815260200190815260200160002054106109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90611419565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4a57610a45838383610aea565b610abc565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aaf57610aaa838383610aea565b610abb565b610aba838383610b53565b5b5b600560004381526020019081526020016000206000815480929190610ae090611439565b9190505550505050565b60006064600383610afb9190611481565b610b0591906114f2565b90508082610b139190611523565b9150610b4284600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610b53565b610b4d848484610b53565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb9906115c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061165b565b60405180910390fd5b610c3c838383610dd2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb9906116ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d559190611177565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db99190610fac565b60405180910390a3610dcc848484610dd7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e16578082015181840152602081019050610dfb565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e3e82610ddc565b610e488185610de7565b9350610e58818560208601610df8565b610e6181610e22565b840191505092915050565b60006020820190508181036000830152610e868184610e33565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ebe82610e93565b9050919050565b610ece81610eb3565b8114610ed957600080fd5b50565b600081359050610eeb81610ec5565b92915050565b6000819050919050565b610f0481610ef1565b8114610f0f57600080fd5b50565b600081359050610f2181610efb565b92915050565b60008060408385031215610f3e57610f3d610e8e565b5b6000610f4c85828601610edc565b9250506020610f5d85828601610f12565b9150509250929050565b60008115159050919050565b610f7c81610f67565b82525050565b6000602082019050610f976000830184610f73565b92915050565b610fa681610ef1565b82525050565b6000602082019050610fc16000830184610f9d565b92915050565b600080600060608486031215610fe057610fdf610e8e565b5b6000610fee86828701610edc565b9350506020610fff86828701610edc565b925050604061101086828701610f12565b9150509250925092565b600060ff82169050919050565b6110308161101a565b82525050565b600060208201905061104b6000830184611027565b92915050565b61105a81610eb3565b82525050565b60006020820190506110756000830184611051565b92915050565b60006020828403121561109157611090610e8e565b5b600061109f84828501610edc565b91505092915050565b600080604083850312156110bf576110be610e8e565b5b60006110cd85828601610edc565b92505060206110de85828601610edc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061112f57607f821691505b602082108103611142576111416110e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061118282610ef1565b915061118d83610ef1565b92508282019050808211156111a5576111a4611148565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611207602583610de7565b9150611212826111ab565b604082019050919050565b60006020820190508181036000830152611236816111fa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611299602483610de7565b91506112a48261123d565b604082019050919050565b600060208201905081810360008301526112c88161128c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061132b602283610de7565b9150611336826112cf565b604082019050919050565b6000602082019050818103600083015261135a8161131e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611397601d83610de7565b91506113a282611361565b602082019050919050565b600060208201905081810360008301526113c68161138a565b9050919050565b7f6f76657220626c6f636b206c696d697400000000000000000000000000000000600082015250565b6000611403601083610de7565b915061140e826113cd565b602082019050919050565b60006020820190508181036000830152611432816113f6565b9050919050565b600061144482610ef1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361147657611475611148565b5b600182019050919050565b600061148c82610ef1565b915061149783610ef1565b92508282026114a581610ef1565b915082820484148315176114bc576114bb611148565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006114fd82610ef1565b915061150883610ef1565b925082611518576115176114c3565b5b828204905092915050565b600061152e82610ef1565b915061153983610ef1565b925082820390508181111561155157611550611148565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115b3602583610de7565b91506115be82611557565b604082019050919050565b600060208201905081810360008301526115e2816115a6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611645602383610de7565b9150611650826115e9565b604082019050919050565b6000602082019050818103600083015261167481611638565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116d7602683610de7565b91506116e28261167b565b604082019050919050565b60006020820190508181036000830152611706816116ca565b905091905056fea2646970667358221220fc62c17954906ddd2a4a420571bb44003c80da67cea48a292c1db5dfe2f216d864736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806361d027b31161008c578063a457c2d711610066578063a457c2d71461022a578063a8aa1b311461025a578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b806361d027b3146101be57806370a08231146101dc57806395d89b411461020c576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d8565b6040516100e99190610e6c565b60405180910390f35b61010c60048036038101906101079190610f27565b61036a565b6040516101199190610f82565b60405180910390f35b61012a61038d565b6040516101379190610fac565b60405180910390f35b61015a60048036038101906101559190610fc7565b610397565b6040516101679190610f82565b60405180910390f35b6101786103c6565b6040516101859190611036565b60405180910390f35b6101a860048036038101906101a39190610f27565b6103cf565b6040516101b59190610f82565b60405180910390f35b6101c6610479565b6040516101d39190611060565b60405180910390f35b6101f660048036038101906101f1919061107b565b61049f565b6040516102039190610fac565b60405180910390f35b6102146104e7565b6040516102219190610e6c565b60405180910390f35b610244600480360381019061023f9190610f27565b610579565b6040516102519190610f82565b60405180910390f35b610262610663565b60405161026f9190611060565b60405180910390f35b610292600480360381019061028d9190610f27565b610689565b60405161029f9190610f82565b60405180910390f35b6102c260048036038101906102bd91906110a8565b6106ac565b6040516102cf9190610fac565b60405180910390f35b6060600380546102e790611117565b80601f016020809104026020016040519081016040528092919081815260200182805461031390611117565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b600080610375610733565b905061038281858561073b565b600191505092915050565b6000600254905090565b6000806103a2610733565b90506103af858285610904565b6103ba858585610990565b60019150509392505050565b60006012905090565b6000806103da610733565b905061046e818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104699190611177565b61073b565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104f690611117565b80601f016020809104026020016040519081016040528092919081815260200182805461052290611117565b801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600080610584610733565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561064a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106419061121d565b60405180910390fd5b610657828686840361073b565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610694610733565b90506106a1818585610990565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906112af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611341565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f79190610fac565b60405180910390a3505050565b600061091084846106ac565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461098a578181101561097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906113ad565b60405180910390fd5b610989848484840361073b565b5b50505050565b600580600043815260200190815260200160002054106109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90611419565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4a57610a45838383610aea565b610abc565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aaf57610aaa838383610aea565b610abb565b610aba838383610b53565b5b5b600560004381526020019081526020016000206000815480929190610ae090611439565b9190505550505050565b60006064600383610afb9190611481565b610b0591906114f2565b90508082610b139190611523565b9150610b4284600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610b53565b610b4d848484610b53565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb9906115c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061165b565b60405180910390fd5b610c3c838383610dd2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb9906116ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d559190611177565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db99190610fac565b60405180910390a3610dcc848484610dd7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e16578082015181840152602081019050610dfb565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e3e82610ddc565b610e488185610de7565b9350610e58818560208601610df8565b610e6181610e22565b840191505092915050565b60006020820190508181036000830152610e868184610e33565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ebe82610e93565b9050919050565b610ece81610eb3565b8114610ed957600080fd5b50565b600081359050610eeb81610ec5565b92915050565b6000819050919050565b610f0481610ef1565b8114610f0f57600080fd5b50565b600081359050610f2181610efb565b92915050565b60008060408385031215610f3e57610f3d610e8e565b5b6000610f4c85828601610edc565b9250506020610f5d85828601610f12565b9150509250929050565b60008115159050919050565b610f7c81610f67565b82525050565b6000602082019050610f976000830184610f73565b92915050565b610fa681610ef1565b82525050565b6000602082019050610fc16000830184610f9d565b92915050565b600080600060608486031215610fe057610fdf610e8e565b5b6000610fee86828701610edc565b9350506020610fff86828701610edc565b925050604061101086828701610f12565b9150509250925092565b600060ff82169050919050565b6110308161101a565b82525050565b600060208201905061104b6000830184611027565b92915050565b61105a81610eb3565b82525050565b60006020820190506110756000830184611051565b92915050565b60006020828403121561109157611090610e8e565b5b600061109f84828501610edc565b91505092915050565b600080604083850312156110bf576110be610e8e565b5b60006110cd85828601610edc565b92505060206110de85828601610edc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061112f57607f821691505b602082108103611142576111416110e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061118282610ef1565b915061118d83610ef1565b92508282019050808211156111a5576111a4611148565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611207602583610de7565b9150611212826111ab565b604082019050919050565b60006020820190508181036000830152611236816111fa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611299602483610de7565b91506112a48261123d565b604082019050919050565b600060208201905081810360008301526112c88161128c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061132b602283610de7565b9150611336826112cf565b604082019050919050565b6000602082019050818103600083015261135a8161131e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611397601d83610de7565b91506113a282611361565b602082019050919050565b600060208201905081810360008301526113c68161138a565b9050919050565b7f6f76657220626c6f636b206c696d697400000000000000000000000000000000600082015250565b6000611403601083610de7565b915061140e826113cd565b602082019050919050565b60006020820190508181036000830152611432816113f6565b9050919050565b600061144482610ef1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361147657611475611148565b5b600182019050919050565b600061148c82610ef1565b915061149783610ef1565b92508282026114a581610ef1565b915082820484148315176114bc576114bb611148565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006114fd82610ef1565b915061150883610ef1565b925082611518576115176114c3565b5b828204905092915050565b600061152e82610ef1565b915061153983610ef1565b925082820390508181111561155157611550611148565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115b3602583610de7565b91506115be82611557565b604082019050919050565b600060208201905081810360008301526115e2816115a6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611645602383610de7565b9150611650826115e9565b604082019050919050565b6000602082019050818103600083015261167481611638565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116d7602683610de7565b91506116e28261167b565b604082019050919050565b60006020820190508181036000830152611706816116ca565b905091905056fea2646970667358221220fc62c17954906ddd2a4a420571bb44003c80da67cea48a292c1db5dfe2f216d864736f6c63430008120033

Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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