ETH Price: $3,521.45 (+2.93%)
Gas: 5 Gwei

Token

Eterheum (ETER)
 

Overview

Max Total Supply

1,000,000,000 ETER

Holders

100

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
worst-trader-ever.eth
Balance
0.300552317183321634 ETER

Value
$0.00
0x4c74c21d006e855b45232e2a21144e47f1fe1d08
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:
EterheumToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Eterheum.sol
// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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 {}
}

pragma solidity ^0.8.0;


contract EterheumToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("Eterheum", "ETER") {
        _mint(msg.sender, 1000000000 * 10 **18);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, 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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280600881526020017f457465726865756d0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f45544552000000000000000000000000000000000000000000000000000000008152506200009d62000091620000e760201b60201c565b620000ee60201b60201c565b8160049081620000ae9190620008d2565b508060059081620000c09190620008d2565b505050620000e1336b033b2e3c9fd0803ce8000000620001af60201b60201c565b62000c11565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002179062000a14565b60405180910390fd5b620002335f83836200032060201b60201c565b8060035f82825462000246919062000a61565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200029b919062000a61565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000301919062000aac565b60405180910390a36200031c5f8383620005fc60201b60201c565b5050565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015620003bf575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b62000401576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f89062000b15565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200052257620004666200060160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004da5750620004ab6200060160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200051c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005139062000b83565b60405180910390fd5b620005f7565b60065f9054906101000a900460ff1680156200058a575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620005f65760075481620005a5846200062860201b60201c565b620005b1919062000a61565b1115620005f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ec9062000bf1565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006ea57607f821691505b6020821081036200070057620006ff620006a5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000727565b62000770868362000727565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007ba620007b4620007ae8462000788565b62000791565b62000788565b9050919050565b5f819050919050565b620007d5836200079a565b620007ed620007e482620007c1565b84845462000733565b825550505050565b5f90565b62000803620007f5565b62000810818484620007ca565b505050565b5b8181101562000837576200082b5f82620007f9565b60018101905062000816565b5050565b601f8211156200088657620008508162000706565b6200085b8462000718565b810160208510156200086b578190505b620008836200087a8562000718565b83018262000815565b50505b505050565b5f82821c905092915050565b5f620008a85f19846008026200088b565b1980831691505092915050565b5f620008c2838362000897565b9150826002028217905092915050565b620008dd826200066e565b67ffffffffffffffff811115620008f957620008f862000678565b5b620009058254620006d2565b620009128282856200083b565b5f60209050601f83116001811462000948575f841562000933578287015190505b6200093f8582620008b5565b865550620009ae565b601f198416620009588662000706565b5f5b8281101562000981578489015182556001820191506020850194506020810190506200095a565b86831015620009a157848901516200099d601f89168262000897565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620009fc601f83620009b6565b915062000a0982620009c6565b602082019050919050565b5f6020820190508181035f83015262000a2d81620009ee565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a6d8262000788565b915062000a7a8362000788565b925082820190508082111562000a955762000a9462000a34565b5b92915050565b62000aa68162000788565b82525050565b5f60208201905062000ac15f83018462000a9b565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f62000afd600b83620009b6565b915062000b0a8262000ac7565b602082019050919050565b5f6020820190508181035f83015262000b2e8162000aef565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f62000b6b601683620009b6565b915062000b788262000b35565b602082019050919050565b5f6020820190508181035f83015262000b9c8162000b5d565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f62000bd9600683620009b6565b915062000be68262000ba3565b602082019050919050565b5f6020820190508181035f83015262000c0a8162000bcb565b9050919050565b61223c8062000c1f5f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c806370a08231116100b65780638da5cb5b1161007a5780638da5cb5b1461033b57806395d89b4114610359578063a457c2d714610377578063a9059cbb146103a7578063dd62ed3e146103d7578063f2fde38b1461040757610135565b806370a08231146102a9578063715018a6146102d95780637abf9d26146102e3578063860a32ec146102ff57806389f9a1d31461031d57610135565b8063313ce567116100fd578063313ce567146102055780633950935114610223578063404e51291461025357806342966c681461026f57806349bd5a5e1461028b57610135565b806306fdde0314610139578063095ea7b31461015757806316c021291461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b610141610423565b60405161014e91906116a8565b60405180910390f35b610171600480360381019061016c9190611759565b6104b3565b60405161017e91906117b1565b60405180910390f35b6101a1600480360381019061019c91906117ca565b6104d0565b6040516101ae91906117b1565b60405180910390f35b6101bf6104ed565b6040516101cc9190611804565b60405180910390f35b6101ef60048036038101906101ea919061181d565b6104f6565b6040516101fc91906117b1565b60405180910390f35b61020d6105e8565b60405161021a9190611888565b60405180910390f35b61023d60048036038101906102389190611759565b6105f0565b60405161024a91906117b1565b60405180910390f35b61026d600480360381019061026891906118cb565b610697565b005b61028960048036038101906102849190611909565b61076b565b005b610293610778565b6040516102a09190611943565b60405180910390f35b6102c360048036038101906102be91906117ca565b61079d565b6040516102d09190611804565b60405180910390f35b6102e16107e3565b005b6102fd60048036038101906102f8919061195c565b61086a565b005b61030761094b565b60405161031491906117b1565b60405180910390f35b61032561095d565b6040516103329190611804565b60405180910390f35b610343610963565b6040516103509190611943565b60405180910390f35b61036161098a565b60405161036e91906116a8565b60405180910390f35b610391600480360381019061038c9190611759565b610a1a565b60405161039e91906117b1565b60405180910390f35b6103c160048036038101906103bc9190611759565b610b00565b6040516103ce91906117b1565b60405180910390f35b6103f160048036038101906103ec91906119ac565b610b1d565b6040516103fe9190611804565b60405180910390f35b610421600480360381019061041c91906117ca565b610b9f565b005b60606004805461043290611a17565b80601f016020809104026020016040519081016040528092919081815260200182805461045e90611a17565b80156104a95780601f10610480576101008083540402835291602001916104a9565b820191905f5260205f20905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b5f6104c66104bf610c95565b8484610c9c565b6001905092915050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b5f610502848484610e5f565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610549610c95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf90611ab7565b60405180910390fd5b6105dc856105d4610c95565b858403610c9c565b60019150509392505050565b5f6012905090565b5f61068d6105fc610c95565b848460025f610609610c95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106889190611b02565b610c9c565b6001905092915050565b61069f610c95565b73ffffffffffffffffffffffffffffffffffffffff166106bd610963565b73ffffffffffffffffffffffffffffffffffffffff1614610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070a90611b7f565b60405180910390fd5b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61077533826110d7565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107eb610c95565b73ffffffffffffffffffffffffffffffffffffffff16610809610963565b73ffffffffffffffffffffffffffffffffffffffff161461085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690611b7f565b60405180910390fd5b6108685f6112a5565b565b610872610c95565b73ffffffffffffffffffffffffffffffffffffffff16610890610963565b73ffffffffffffffffffffffffffffffffffffffff16146108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611b7f565b60405180910390fd5b8260065f6101000a81548160ff0219169083151502179055508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461099990611a17565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590611a17565b8015610a105780601f106109e757610100808354040283529160200191610a10565b820191905f5260205f20905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b5f8060025f610a27610c95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611c0d565b60405180910390fd5b610af5610aec610c95565b85858403610c9c565b600191505092915050565b5f610b13610b0c610c95565b8484610e5f565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ba7610c95565b73ffffffffffffffffffffffffffffffffffffffff16610bc5610963565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611b7f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090611c9b565b60405180910390fd5b610c92816112a5565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611d29565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90611db7565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e529190611804565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490611e45565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290611ed3565b60405180910390fd5b610f46838383611366565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190611f61565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461105a9190611b02565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110be9190611804565b60405180910390a36110d1848484611619565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90611fef565b60405180910390fd5b611150825f83611366565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061207d565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f828254611229919061209b565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128d9190611804565b60405180910390a36112a0835f84611619565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611404575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612118565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361154e5761149f610963565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061150a57506114db610963565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090612180565b60405180910390fd5b611614565b60065f9054906101000a900460ff1680156115b5575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561161357600754816115c78461079d565b6115d19190611b02565b1115611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906121e8565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561165557808201518184015260208101905061163a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61167a8261161e565b6116848185611628565b9350611694818560208601611638565b61169d81611660565b840191505092915050565b5f6020820190508181035f8301526116c08184611670565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116f5826116cc565b9050919050565b611705816116eb565b811461170f575f80fd5b50565b5f81359050611720816116fc565b92915050565b5f819050919050565b61173881611726565b8114611742575f80fd5b50565b5f813590506117538161172f565b92915050565b5f806040838503121561176f5761176e6116c8565b5b5f61177c85828601611712565b925050602061178d85828601611745565b9150509250929050565b5f8115159050919050565b6117ab81611797565b82525050565b5f6020820190506117c45f8301846117a2565b92915050565b5f602082840312156117df576117de6116c8565b5b5f6117ec84828501611712565b91505092915050565b6117fe81611726565b82525050565b5f6020820190506118175f8301846117f5565b92915050565b5f805f60608486031215611834576118336116c8565b5b5f61184186828701611712565b935050602061185286828701611712565b925050604061186386828701611745565b9150509250925092565b5f60ff82169050919050565b6118828161186d565b82525050565b5f60208201905061189b5f830184611879565b92915050565b6118aa81611797565b81146118b4575f80fd5b50565b5f813590506118c5816118a1565b92915050565b5f80604083850312156118e1576118e06116c8565b5b5f6118ee85828601611712565b92505060206118ff858286016118b7565b9150509250929050565b5f6020828403121561191e5761191d6116c8565b5b5f61192b84828501611745565b91505092915050565b61193d816116eb565b82525050565b5f6020820190506119565f830184611934565b92915050565b5f805f60608486031215611973576119726116c8565b5b5f611980868287016118b7565b935050602061199186828701611712565b92505060406119a286828701611745565b9150509250925092565b5f80604083850312156119c2576119c16116c8565b5b5f6119cf85828601611712565b92505060206119e085828601611712565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a2e57607f821691505b602082108103611a4157611a406119ea565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611aa1602883611628565b9150611aac82611a47565b604082019050919050565b5f6020820190508181035f830152611ace81611a95565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b0c82611726565b9150611b1783611726565b9250828201905080821115611b2f57611b2e611ad5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b69602083611628565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611bf7602583611628565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611c85602683611628565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d13602483611628565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611da1602283611628565b9150611dac82611d47565b604082019050919050565b5f6020820190508181035f830152611dce81611d95565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e2f602583611628565b9150611e3a82611dd5565b604082019050919050565b5f6020820190508181035f830152611e5c81611e23565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611ebd602383611628565b9150611ec882611e63565b604082019050919050565b5f6020820190508181035f830152611eea81611eb1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f4b602683611628565b9150611f5682611ef1565b604082019050919050565b5f6020820190508181035f830152611f7881611f3f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611fd9602183611628565b9150611fe482611f7f565b604082019050919050565b5f6020820190508181035f83015261200681611fcd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612067602283611628565b91506120728261200d565b604082019050919050565b5f6020820190508181035f8301526120948161205b565b9050919050565b5f6120a582611726565b91506120b083611726565b92508282039050818111156120c8576120c7611ad5565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612102600b83611628565b915061210d826120ce565b602082019050919050565b5f6020820190508181035f83015261212f816120f6565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f61216a601683611628565b915061217582612136565b602082019050919050565b5f6020820190508181035f8301526121978161215e565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f6121d2600683611628565b91506121dd8261219e565b602082019050919050565b5f6020820190508181035f8301526121ff816121c6565b905091905056fea2646970667358221220fa288758db628631f9696ceaee786b6fcc113371e366d05e7f661b3ad4a15f7864736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c806370a08231116100b65780638da5cb5b1161007a5780638da5cb5b1461033b57806395d89b4114610359578063a457c2d714610377578063a9059cbb146103a7578063dd62ed3e146103d7578063f2fde38b1461040757610135565b806370a08231146102a9578063715018a6146102d95780637abf9d26146102e3578063860a32ec146102ff57806389f9a1d31461031d57610135565b8063313ce567116100fd578063313ce567146102055780633950935114610223578063404e51291461025357806342966c681461026f57806349bd5a5e1461028b57610135565b806306fdde0314610139578063095ea7b31461015757806316c021291461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b610141610423565b60405161014e91906116a8565b60405180910390f35b610171600480360381019061016c9190611759565b6104b3565b60405161017e91906117b1565b60405180910390f35b6101a1600480360381019061019c91906117ca565b6104d0565b6040516101ae91906117b1565b60405180910390f35b6101bf6104ed565b6040516101cc9190611804565b60405180910390f35b6101ef60048036038101906101ea919061181d565b6104f6565b6040516101fc91906117b1565b60405180910390f35b61020d6105e8565b60405161021a9190611888565b60405180910390f35b61023d60048036038101906102389190611759565b6105f0565b60405161024a91906117b1565b60405180910390f35b61026d600480360381019061026891906118cb565b610697565b005b61028960048036038101906102849190611909565b61076b565b005b610293610778565b6040516102a09190611943565b60405180910390f35b6102c360048036038101906102be91906117ca565b61079d565b6040516102d09190611804565b60405180910390f35b6102e16107e3565b005b6102fd60048036038101906102f8919061195c565b61086a565b005b61030761094b565b60405161031491906117b1565b60405180910390f35b61032561095d565b6040516103329190611804565b60405180910390f35b610343610963565b6040516103509190611943565b60405180910390f35b61036161098a565b60405161036e91906116a8565b60405180910390f35b610391600480360381019061038c9190611759565b610a1a565b60405161039e91906117b1565b60405180910390f35b6103c160048036038101906103bc9190611759565b610b00565b6040516103ce91906117b1565b60405180910390f35b6103f160048036038101906103ec91906119ac565b610b1d565b6040516103fe9190611804565b60405180910390f35b610421600480360381019061041c91906117ca565b610b9f565b005b60606004805461043290611a17565b80601f016020809104026020016040519081016040528092919081815260200182805461045e90611a17565b80156104a95780601f10610480576101008083540402835291602001916104a9565b820191905f5260205f20905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b5f6104c66104bf610c95565b8484610c9c565b6001905092915050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b5f610502848484610e5f565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610549610c95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf90611ab7565b60405180910390fd5b6105dc856105d4610c95565b858403610c9c565b60019150509392505050565b5f6012905090565b5f61068d6105fc610c95565b848460025f610609610c95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106889190611b02565b610c9c565b6001905092915050565b61069f610c95565b73ffffffffffffffffffffffffffffffffffffffff166106bd610963565b73ffffffffffffffffffffffffffffffffffffffff1614610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070a90611b7f565b60405180910390fd5b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61077533826110d7565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107eb610c95565b73ffffffffffffffffffffffffffffffffffffffff16610809610963565b73ffffffffffffffffffffffffffffffffffffffff161461085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690611b7f565b60405180910390fd5b6108685f6112a5565b565b610872610c95565b73ffffffffffffffffffffffffffffffffffffffff16610890610963565b73ffffffffffffffffffffffffffffffffffffffff16146108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611b7f565b60405180910390fd5b8260065f6101000a81548160ff0219169083151502179055508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461099990611a17565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590611a17565b8015610a105780601f106109e757610100808354040283529160200191610a10565b820191905f5260205f20905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b5f8060025f610a27610c95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611c0d565b60405180910390fd5b610af5610aec610c95565b85858403610c9c565b600191505092915050565b5f610b13610b0c610c95565b8484610e5f565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ba7610c95565b73ffffffffffffffffffffffffffffffffffffffff16610bc5610963565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611b7f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090611c9b565b60405180910390fd5b610c92816112a5565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611d29565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90611db7565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e529190611804565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490611e45565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290611ed3565b60405180910390fd5b610f46838383611366565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190611f61565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461105a9190611b02565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110be9190611804565b60405180910390a36110d1848484611619565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90611fef565b60405180910390fd5b611150825f83611366565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061207d565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f828254611229919061209b565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128d9190611804565b60405180910390a36112a0835f84611619565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611404575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612118565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361154e5761149f610963565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061150a57506114db610963565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090612180565b60405180910390fd5b611614565b60065f9054906101000a900460ff1680156115b5575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561161357600754816115c78461079d565b6115d19190611b02565b1115611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906121e8565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561165557808201518184015260208101905061163a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61167a8261161e565b6116848185611628565b9350611694818560208601611638565b61169d81611660565b840191505092915050565b5f6020820190508181035f8301526116c08184611670565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116f5826116cc565b9050919050565b611705816116eb565b811461170f575f80fd5b50565b5f81359050611720816116fc565b92915050565b5f819050919050565b61173881611726565b8114611742575f80fd5b50565b5f813590506117538161172f565b92915050565b5f806040838503121561176f5761176e6116c8565b5b5f61177c85828601611712565b925050602061178d85828601611745565b9150509250929050565b5f8115159050919050565b6117ab81611797565b82525050565b5f6020820190506117c45f8301846117a2565b92915050565b5f602082840312156117df576117de6116c8565b5b5f6117ec84828501611712565b91505092915050565b6117fe81611726565b82525050565b5f6020820190506118175f8301846117f5565b92915050565b5f805f60608486031215611834576118336116c8565b5b5f61184186828701611712565b935050602061185286828701611712565b925050604061186386828701611745565b9150509250925092565b5f60ff82169050919050565b6118828161186d565b82525050565b5f60208201905061189b5f830184611879565b92915050565b6118aa81611797565b81146118b4575f80fd5b50565b5f813590506118c5816118a1565b92915050565b5f80604083850312156118e1576118e06116c8565b5b5f6118ee85828601611712565b92505060206118ff858286016118b7565b9150509250929050565b5f6020828403121561191e5761191d6116c8565b5b5f61192b84828501611745565b91505092915050565b61193d816116eb565b82525050565b5f6020820190506119565f830184611934565b92915050565b5f805f60608486031215611973576119726116c8565b5b5f611980868287016118b7565b935050602061199186828701611712565b92505060406119a286828701611745565b9150509250925092565b5f80604083850312156119c2576119c16116c8565b5b5f6119cf85828601611712565b92505060206119e085828601611712565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a2e57607f821691505b602082108103611a4157611a406119ea565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611aa1602883611628565b9150611aac82611a47565b604082019050919050565b5f6020820190508181035f830152611ace81611a95565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b0c82611726565b9150611b1783611726565b9250828201905080821115611b2f57611b2e611ad5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b69602083611628565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611bf7602583611628565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611c85602683611628565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d13602483611628565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611da1602283611628565b9150611dac82611d47565b604082019050919050565b5f6020820190508181035f830152611dce81611d95565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e2f602583611628565b9150611e3a82611dd5565b604082019050919050565b5f6020820190508181035f830152611e5c81611e23565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611ebd602383611628565b9150611ec882611e63565b604082019050919050565b5f6020820190508181035f830152611eea81611eb1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f4b602683611628565b9150611f5682611ef1565b604082019050919050565b5f6020820190508181035f830152611f7881611f3f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611fd9602183611628565b9150611fe482611f7f565b604082019050919050565b5f6020820190508181035f83015261200681611fcd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612067602283611628565b91506120728261200d565b604082019050919050565b5f6020820190508181035f8301526120948161205b565b9050919050565b5f6120a582611726565b91506120b083611726565b92508282039050818111156120c8576120c7611ad5565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612102600b83611628565b915061210d826120ce565b602082019050919050565b5f6020820190508181035f83015261212f816120f6565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f61216a601683611628565b915061217582612136565b602082019050919050565b5f6020820190508181035f8301526121978161215e565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f6121d2600683611628565b91506121dd8261219e565b602082019050919050565b5f6020820190508181035f8301526121ff816121c6565b905091905056fea2646970667358221220fa288758db628631f9696ceaee786b6fcc113371e366d05e7f661b3ad4a15f7864736f6c63430008140033

Loading...
Loading
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.