ETH Price: $2,484.78 (+2.78%)

Token

Million Dollar Extreme (MDE)
 

Overview

Max Total Supply

1,000,000 MDE

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 MDE

Value
$0.00
0x128f0b163b89d8777efebde9ad74b9760dc74a02
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:
MDEToken

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : MDE_Stefano_version.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/**
............................ ......................... .........................  
....... . ........................................................... . ......... 
............................... .................... ............................
.................. ........ ......................................... ........ .. 
................................................................................. 
...................... .................................. ....... ....... ....... 
................................................................................. 
..............+%@@@@*:......=#@@@@%=..+@@@@@@%=.......=%@@@@@@@@@%+.............. 
.............-@@@@@@@%=...:+@@%%%@@@.-@@@@@@@@@*:....:%@%%%%@@@@@@@-............. 
.............=@*::::=%@+:-%@#:.::=@@.-@%-::::-%@#-...:@%::.-===-=%@-............. 
..............=@*:.:::-#@%@@*=-:..+@@.-@#.::**-:*@%=..:@%::-#@@@@@@@:............ 
......... ...=@+:::=+::+%@*--+-.:=@@.-@#.-*@@@=.=%@+::@%..+#:::::-+........ ... .
.............=@+.-:@@@=:-=:%@@%::-@@.=@#.-%@=@@+.-%@@-@%..-#@@@@@@@:.......... .. 
.... . ......=@+:-=@+@@*-:@@@*@:.-@@.=@#.-%@-=%*--=*#-@%..::.:::-#@-........... . 
........ ....=@*:-+@*-%@@@@*.%@:.-@@.-@#.-%@=@@#-:@@%:@#.:-%@@@@@@@: ........ ... 
....... .....=@*:-+@*.:#@@=..%@:.-@@.-@#.:*@@@#:+@@+.-@#::+#:....-=....  ........ 
.............=@*.-*@*........%@:.-@@.=@#..=*#+.%@@=..-@#..=%@@@@@@@:............. 
.......  ....+@#==#@*........@@=--@@.=@%==++=:@@@-...=@#--====+++@@:............. 
.............+@@@@@@+........%@@@@@@.=@@@@@@@@@#:....=@@@@@@@@@@@@@:............. 
.............-%@@@@%-........=@@@@@+.:#@@@@@@@+......-#@@@@@@@@@@@*.............. 
...................................... ........ .......................... ...... 
........................................ ........ ................... .. ........
........... .... ............................. .......... ....................... 
................. ............................................................... 
... . ............................................... ...........................
.....  .................... ....... ... ................................ ........ 
............................ ......................... .........................

OFFICIAL GENESIS COMMS: x.com/mdevipeth  t.me/mdevipeth  www.milliondollarextreme.vip
BACKUP COMMS: x.com/mdecoineth , www.mdecoin.vip , mde.vip,  www.milliondollarextremecoin.vip 
*/
/**
 * @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)
/**
 * @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)
/**
 * @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)

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

    //Storage for addresses with MDE above 100
    uint[] public above100;

    struct Addr { 
        uint id;
        uint index;
        bool listed;
    }

    mapping(uint => address) public addrById;
    mapping(address => Addr) public addrInfo;
    uint public lastAddressID;  
    
    function checkAbove100(address _addr, uint _balance) private {
        if(_balance > 100000000000000000000 && !addrInfo[_addr].listed) {
            
            if(addrInfo[_addr].id == 0) {
                addrInfo[_addr].id = lastAddressID;
                addrById[lastAddressID] = _addr;
                above100.push(lastAddressID);
                lastAddressID++; 
            } else {
                above100.push(addrInfo[_addr].id);
            }

            addrInfo[_addr].index = above100.length - 1;
            addrInfo[_addr].listed = true;

        } else if(_balance < 100000000000000000000 && addrInfo[_addr].listed){
            //delete
            above100[addrInfo[_addr].index] = above100[above100.length-1];
            above100.pop();
            addrInfo[_addr].listed = false;
        }
    }

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

        checkAbove100(sender, balanceOf(sender));
        checkAbove100(recipient, balanceOf(recipient));
    }

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


contract MDEToken is Ownable, ERC20 {

    address public uniswapV2Pair;

    constructor() ERC20("Million Dollar Extreme", "MDE") {
        _mint(msg.sender, 1_000_000 * 10 ** decimals());
    }

    function setUniswapAddress(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }
    
    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
    
    function getIdByIndex(uint _index) public view returns (uint) {
        return above100[_index];
    }

    function getLenghList() public view returns (uint) {
        return above100.length;
    }

    function getAddrById(uint _id) public view returns (address) {
        return addrById[_id];
    }

    
}

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":"uint256","name":"","type":"uint256"}],"name":"above100","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addrById","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addrInfo","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bool","name":"listed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256","name":"_id","type":"uint256"}],"name":"getAddrById","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getIdByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLenghList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastAddressID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapAddress","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"}]

608060405234801562000010575f80fd5b506040518060400160405280601681526020017f4d696c6c696f6e20446f6c6c61722045787472656d65000000000000000000008152506040518060400160405280600381526020017f4d444500000000000000000000000000000000000000000000000000000000008152506200009d620000916200010860201b60201c565b6200010f60201b60201c565b8160049081620000ae919062000700565b508060059081620000c0919062000700565b5050506200010233620000d8620001d060201b60201c565b600a620000e691906200096d565b620f4240620000f69190620009bd565b620001d860201b60201c565b62000b59565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002409062000a65565b60405180910390fd5b6200025c5f83836200034960201b60201c565b8060035f8282546200026f919062000a85565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620002c4919062000a85565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032a919062000ad0565b60405180910390a3620003455f83836200047060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200046a57620003ae6200047560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004225750620003f36200047560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045b9062000b39565b60405180910390fd5b6200046b565b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200051857607f821691505b6020821081036200052e576200052d620004d3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000555565b6200059e868362000555565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005e8620005e2620005dc84620005b6565b620005bf565b620005b6565b9050919050565b5f819050919050565b6200060383620005c8565b6200061b6200061282620005ef565b84845462000561565b825550505050565b5f90565b6200063162000623565b6200063e818484620005f8565b505050565b5b818110156200066557620006595f8262000627565b60018101905062000644565b5050565b601f821115620006b4576200067e8162000534565b620006898462000546565b8101602085101562000699578190505b620006b1620006a88562000546565b83018262000643565b50505b505050565b5f82821c905092915050565b5f620006d65f1984600802620006b9565b1980831691505092915050565b5f620006f08383620006c5565b9150826002028217905092915050565b6200070b826200049c565b67ffffffffffffffff811115620007275762000726620004a6565b5b62000733825462000500565b6200074082828562000669565b5f60209050601f83116001811462000776575f841562000761578287015190505b6200076d8582620006e3565b865550620007dc565b601f198416620007868662000534565b5f5b82811015620007af5784890151825560018201915060208501945060208101905062000788565b86831015620007cf5784890151620007cb601f891682620006c5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200086e57808604811115620008465762000845620007e4565b5b6001851615620008565780820291505b8081029050620008668562000811565b945062000826565b94509492505050565b5f826200088857600190506200095a565b8162000897575f90506200095a565b8160018114620008b05760028114620008bb57620008f1565b60019150506200095a565b60ff841115620008d057620008cf620007e4565b5b8360020a915084821115620008ea57620008e9620007e4565b5b506200095a565b5060208310610133831016604e8410600b84101617156200092b5782820a905083811115620009255762000924620007e4565b5b6200095a565b6200093a84848460016200081d565b92509050818404811115620009545762000953620007e4565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200097982620005b6565b9150620009868362000961565b9250620009b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000877565b905092915050565b5f620009c982620005b6565b9150620009d683620005b6565b9250828202620009e681620005b6565b9150828204841483151762000a0057620009ff620007e4565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a4d601f8362000a07565b915062000a5a8262000a17565b602082019050919050565b5f6020820190508181035f83015262000a7e8162000a3f565b9050919050565b5f62000a9182620005b6565b915062000a9e83620005b6565b925082820190508082111562000ab95762000ab8620007e4565b5b92915050565b62000aca81620005b6565b82525050565b5f60208201905062000ae55f83018462000abf565b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f62000b2160168362000a07565b915062000b2e8262000aeb565b602082019050919050565b5f6020820190508181035f83015262000b528162000b13565b9050919050565b6127328062000b675f395ff3fe608060405234801561000f575f80fd5b5060043610610171575f3560e01c8063715018a6116100dc578063a9059cbb11610095578063dd62ed3e1161006f578063dd62ed3e14610475578063e4e81ad8146104a5578063f2fde38b146104d5578063ff94e502146104f157610171565b8063a9059cbb146103f7578063aa8d0b3214610427578063bf83fec11461044557610171565b8063715018a6146103475780637884e7c6146103515780638da5cb5b1461036d57806395617b8a1461038b57806395d89b41146103a9578063a457c2d7146103c757610171565b8063395093511161012e578063395093511461025f57806340c10f191461028f57806342966c68146102ab57806349bd5a5e146102c757806355606e31146102e557806370a082311461031757610171565b806306fdde0314610175578063095ea7b3146101935780630d5f095a146101c357806318160ddd146101f357806323b872dd14610211578063313ce56714610241575b5f80fd5b61017d610521565b60405161018a9190611be8565b60405180910390f35b6101ad60048036038101906101a89190611c99565b6105b1565b6040516101ba9190611cf1565b60405180910390f35b6101dd60048036038101906101d89190611d0a565b6105ce565b6040516101ea9190611d44565b60405180910390f35b6101fb610607565b6040516102089190611d6c565b60405180910390f35b61022b60048036038101906102269190611d85565b610610565b6040516102389190611cf1565b60405180910390f35b610249610702565b6040516102569190611df0565b60405180910390f35b61027960048036038101906102749190611c99565b61070a565b6040516102869190611cf1565b60405180910390f35b6102a960048036038101906102a49190611c99565b6107b1565b005b6102c560048036038101906102c09190611d0a565b61083b565b005b6102cf610848565b6040516102dc9190611d44565b60405180910390f35b6102ff60048036038101906102fa9190611e09565b61086d565b60405161030e93929190611e34565b60405180910390f35b610331600480360381019061032c9190611e09565b61089f565b60405161033e9190611d6c565b60405180910390f35b61034f6108e5565b005b61036b60048036038101906103669190611e09565b61096c565b005b610375610a2b565b6040516103829190611d44565b60405180910390f35b610393610a52565b6040516103a09190611d6c565b60405180910390f35b6103b1610a5e565b6040516103be9190611be8565b60405180910390f35b6103e160048036038101906103dc9190611c99565b610aee565b6040516103ee9190611cf1565b60405180910390f35b610411600480360381019061040c9190611c99565b610bd4565b60405161041e9190611cf1565b60405180910390f35b61042f610bf1565b60405161043c9190611d6c565b60405180910390f35b61045f600480360381019061045a9190611d0a565b610bf7565b60405161046c9190611d6c565b60405180910390f35b61048f600480360381019061048a9190611e69565b610c17565b60405161049c9190611d6c565b60405180910390f35b6104bf60048036038101906104ba9190611d0a565b610c99565b6040516104cc9190611d44565b60405180910390f35b6104ef60048036038101906104ea9190611e09565b610cc9565b005b61050b60048036038101906105069190611d0a565b610dbf565b6040516105189190611d6c565b60405180910390f35b60606004805461053090611ed4565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90611ed4565b80156105a75780601f1061057e576101008083540402835291602001916105a7565b820191905f5260205f20905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b5f6105c46105bd610de4565b8484610deb565b6001905092915050565b5f60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f600354905090565b5f61061c848484610fae565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610663610de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d990611f74565b60405180910390fd5b6106f6856106ee610de4565b858403610deb565b60019150509392505050565b5f6012905090565b5f6107a7610716610de4565b848460025f610723610de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107a29190611fbf565b610deb565b6001905092915050565b6107b9610de4565b73ffffffffffffffffffffffffffffffffffffffff166107d7610a2b565b73ffffffffffffffffffffffffffffffffffffffff161461082d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108249061203c565b60405180910390fd5b610837828261124a565b5050565b61084533826113a2565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6008602052805f5260405f205f91509050805f015490806001015490806002015f9054906101000a900460ff16905083565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108ed610de4565b73ffffffffffffffffffffffffffffffffffffffff1661090b610a2b565b73ffffffffffffffffffffffffffffffffffffffff1614610961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109589061203c565b60405180910390fd5b61096a5f611570565b565b610974610de4565b73ffffffffffffffffffffffffffffffffffffffff16610992610a2b565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df9061203c565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600680549050905090565b606060058054610a6d90611ed4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990611ed4565b8015610ae45780601f10610abb57610100808354040283529160200191610ae4565b820191905f5260205f20905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b5f8060025f610afb610de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906120ca565b60405180910390fd5b610bc9610bc0610de4565b85858403610deb565b600191505092915050565b5f610be7610be0610de4565b8484610fae565b6001905092915050565b60095481565b60068181548110610c06575f80fd5b905f5260205f20015f915090505481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cd1610de4565b73ffffffffffffffffffffffffffffffffffffffff16610cef610a2b565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061203c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612158565b60405180910390fd5b610dbc81611570565b50565b5f60068281548110610dd457610dd3612176565b5b905f5260205f2001549050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612213565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906122a1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fa19190611d6c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110139061232f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611081906123bd565b60405180910390fd5b611095838383611631565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061244b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111a99190611fbf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120d9190611d6c565b60405180910390a3611220848484611742565b6112328461122d8661089f565b611747565b6112448361123f8561089f565b611747565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906124b3565b60405180910390fd5b6112c35f8383611631565b8060035f8282546112d49190611fbf565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113279190611fbf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161138b9190611d6c565b60405180910390a361139e5f8383611742565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790612541565b60405180910390fd5b61141b825f83611631565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906125cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546114f491906125ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115589190611d6c565b60405180910390a361156b835f84611742565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361173c5761168d610a2b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116f857506116c9610a2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e9061266a565b60405180910390fd5b61173d565b5b505050565b505050565b68056bc75e2d63100000811180156117a9575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f9054906101000a900460ff16155b156119e8575f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0154036118cf5760095460085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055508160075f60095481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600954908060018154018082558091505060019003905f5260205f20015f909190919091505560095f8154809291906118c590612688565b9190505550611935565b600660085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0154908060018154018082558091505060019003905f5260205f20015f90919091909150555b600160068054905061194791906125ed565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010181905550600160085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f6101000a81548160ff021916908315150217905550611b5a565b68056bc75e2d6310000081108015611a49575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f9054906101000a900460ff165b15611b595760066001600680549050611a6291906125ed565b81548110611a7357611a72612176565b5b905f5260205f200154600660085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015481548110611ad057611acf612176565b5b905f5260205f2001819055506006805480611aee57611aed6126cf565b5b600190038181905f5260205f20015f905590555f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f6101000a81548160ff0219169083151502179055505b5b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b95578082015181840152602081019050611b7a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bba82611b5e565b611bc48185611b68565b9350611bd4818560208601611b78565b611bdd81611ba0565b840191505092915050565b5f6020820190508181035f830152611c008184611bb0565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c3582611c0c565b9050919050565b611c4581611c2b565b8114611c4f575f80fd5b50565b5f81359050611c6081611c3c565b92915050565b5f819050919050565b611c7881611c66565b8114611c82575f80fd5b50565b5f81359050611c9381611c6f565b92915050565b5f8060408385031215611caf57611cae611c08565b5b5f611cbc85828601611c52565b9250506020611ccd85828601611c85565b9150509250929050565b5f8115159050919050565b611ceb81611cd7565b82525050565b5f602082019050611d045f830184611ce2565b92915050565b5f60208284031215611d1f57611d1e611c08565b5b5f611d2c84828501611c85565b91505092915050565b611d3e81611c2b565b82525050565b5f602082019050611d575f830184611d35565b92915050565b611d6681611c66565b82525050565b5f602082019050611d7f5f830184611d5d565b92915050565b5f805f60608486031215611d9c57611d9b611c08565b5b5f611da986828701611c52565b9350506020611dba86828701611c52565b9250506040611dcb86828701611c85565b9150509250925092565b5f60ff82169050919050565b611dea81611dd5565b82525050565b5f602082019050611e035f830184611de1565b92915050565b5f60208284031215611e1e57611e1d611c08565b5b5f611e2b84828501611c52565b91505092915050565b5f606082019050611e475f830186611d5d565b611e546020830185611d5d565b611e616040830184611ce2565b949350505050565b5f8060408385031215611e7f57611e7e611c08565b5b5f611e8c85828601611c52565b9250506020611e9d85828601611c52565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611eeb57607f821691505b602082108103611efe57611efd611ea7565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611f5e602883611b68565b9150611f6982611f04565b604082019050919050565b5f6020820190508181035f830152611f8b81611f52565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611fc982611c66565b9150611fd483611c66565b9250828201905080821115611fec57611feb611f92565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612026602083611b68565b915061203182611ff2565b602082019050919050565b5f6020820190508181035f8301526120538161201a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120b4602583611b68565b91506120bf8261205a565b604082019050919050565b5f6020820190508181035f8301526120e1816120a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612142602683611b68565b915061214d826120e8565b604082019050919050565b5f6020820190508181035f83015261216f81612136565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121fd602483611b68565b9150612208826121a3565b604082019050919050565b5f6020820190508181035f83015261222a816121f1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61228b602283611b68565b915061229682612231565b604082019050919050565b5f6020820190508181035f8301526122b88161227f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612319602583611b68565b9150612324826122bf565b604082019050919050565b5f6020820190508181035f8301526123468161230d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123a7602383611b68565b91506123b28261234d565b604082019050919050565b5f6020820190508181035f8301526123d48161239b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612435602683611b68565b9150612440826123db565b604082019050919050565b5f6020820190508181035f83015261246281612429565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61249d601f83611b68565b91506124a882612469565b602082019050919050565b5f6020820190508181035f8301526124ca81612491565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61252b602183611b68565b9150612536826124d1565b604082019050919050565b5f6020820190508181035f8301526125588161251f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125b9602283611b68565b91506125c48261255f565b604082019050919050565b5f6020820190508181035f8301526125e6816125ad565b9050919050565b5f6125f782611c66565b915061260283611c66565b925082820390508181111561261a57612619611f92565b5b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f612654601683611b68565b915061265f82612620565b602082019050919050565b5f6020820190508181035f83015261268181612648565b9050919050565b5f61269282611c66565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126c4576126c3611f92565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220726930b532716da35e04d2e6480141d3fc6971f0e2f52a5d3de197c652cbc27a64736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610171575f3560e01c8063715018a6116100dc578063a9059cbb11610095578063dd62ed3e1161006f578063dd62ed3e14610475578063e4e81ad8146104a5578063f2fde38b146104d5578063ff94e502146104f157610171565b8063a9059cbb146103f7578063aa8d0b3214610427578063bf83fec11461044557610171565b8063715018a6146103475780637884e7c6146103515780638da5cb5b1461036d57806395617b8a1461038b57806395d89b41146103a9578063a457c2d7146103c757610171565b8063395093511161012e578063395093511461025f57806340c10f191461028f57806342966c68146102ab57806349bd5a5e146102c757806355606e31146102e557806370a082311461031757610171565b806306fdde0314610175578063095ea7b3146101935780630d5f095a146101c357806318160ddd146101f357806323b872dd14610211578063313ce56714610241575b5f80fd5b61017d610521565b60405161018a9190611be8565b60405180910390f35b6101ad60048036038101906101a89190611c99565b6105b1565b6040516101ba9190611cf1565b60405180910390f35b6101dd60048036038101906101d89190611d0a565b6105ce565b6040516101ea9190611d44565b60405180910390f35b6101fb610607565b6040516102089190611d6c565b60405180910390f35b61022b60048036038101906102269190611d85565b610610565b6040516102389190611cf1565b60405180910390f35b610249610702565b6040516102569190611df0565b60405180910390f35b61027960048036038101906102749190611c99565b61070a565b6040516102869190611cf1565b60405180910390f35b6102a960048036038101906102a49190611c99565b6107b1565b005b6102c560048036038101906102c09190611d0a565b61083b565b005b6102cf610848565b6040516102dc9190611d44565b60405180910390f35b6102ff60048036038101906102fa9190611e09565b61086d565b60405161030e93929190611e34565b60405180910390f35b610331600480360381019061032c9190611e09565b61089f565b60405161033e9190611d6c565b60405180910390f35b61034f6108e5565b005b61036b60048036038101906103669190611e09565b61096c565b005b610375610a2b565b6040516103829190611d44565b60405180910390f35b610393610a52565b6040516103a09190611d6c565b60405180910390f35b6103b1610a5e565b6040516103be9190611be8565b60405180910390f35b6103e160048036038101906103dc9190611c99565b610aee565b6040516103ee9190611cf1565b60405180910390f35b610411600480360381019061040c9190611c99565b610bd4565b60405161041e9190611cf1565b60405180910390f35b61042f610bf1565b60405161043c9190611d6c565b60405180910390f35b61045f600480360381019061045a9190611d0a565b610bf7565b60405161046c9190611d6c565b60405180910390f35b61048f600480360381019061048a9190611e69565b610c17565b60405161049c9190611d6c565b60405180910390f35b6104bf60048036038101906104ba9190611d0a565b610c99565b6040516104cc9190611d44565b60405180910390f35b6104ef60048036038101906104ea9190611e09565b610cc9565b005b61050b60048036038101906105069190611d0a565b610dbf565b6040516105189190611d6c565b60405180910390f35b60606004805461053090611ed4565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90611ed4565b80156105a75780601f1061057e576101008083540402835291602001916105a7565b820191905f5260205f20905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b5f6105c46105bd610de4565b8484610deb565b6001905092915050565b5f60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f600354905090565b5f61061c848484610fae565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610663610de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d990611f74565b60405180910390fd5b6106f6856106ee610de4565b858403610deb565b60019150509392505050565b5f6012905090565b5f6107a7610716610de4565b848460025f610723610de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107a29190611fbf565b610deb565b6001905092915050565b6107b9610de4565b73ffffffffffffffffffffffffffffffffffffffff166107d7610a2b565b73ffffffffffffffffffffffffffffffffffffffff161461082d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108249061203c565b60405180910390fd5b610837828261124a565b5050565b61084533826113a2565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6008602052805f5260405f205f91509050805f015490806001015490806002015f9054906101000a900460ff16905083565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108ed610de4565b73ffffffffffffffffffffffffffffffffffffffff1661090b610a2b565b73ffffffffffffffffffffffffffffffffffffffff1614610961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109589061203c565b60405180910390fd5b61096a5f611570565b565b610974610de4565b73ffffffffffffffffffffffffffffffffffffffff16610992610a2b565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df9061203c565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600680549050905090565b606060058054610a6d90611ed4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990611ed4565b8015610ae45780601f10610abb57610100808354040283529160200191610ae4565b820191905f5260205f20905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b5f8060025f610afb610de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906120ca565b60405180910390fd5b610bc9610bc0610de4565b85858403610deb565b600191505092915050565b5f610be7610be0610de4565b8484610fae565b6001905092915050565b60095481565b60068181548110610c06575f80fd5b905f5260205f20015f915090505481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cd1610de4565b73ffffffffffffffffffffffffffffffffffffffff16610cef610a2b565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061203c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612158565b60405180910390fd5b610dbc81611570565b50565b5f60068281548110610dd457610dd3612176565b5b905f5260205f2001549050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612213565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906122a1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fa19190611d6c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110139061232f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611081906123bd565b60405180910390fd5b611095838383611631565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061244b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111a99190611fbf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120d9190611d6c565b60405180910390a3611220848484611742565b6112328461122d8661089f565b611747565b6112448361123f8561089f565b611747565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906124b3565b60405180910390fd5b6112c35f8383611631565b8060035f8282546112d49190611fbf565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113279190611fbf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161138b9190611d6c565b60405180910390a361139e5f8383611742565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790612541565b60405180910390fd5b61141b825f83611631565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906125cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546114f491906125ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115589190611d6c565b60405180910390a361156b835f84611742565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361173c5761168d610a2b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116f857506116c9610a2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e9061266a565b60405180910390fd5b61173d565b5b505050565b505050565b68056bc75e2d63100000811180156117a9575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f9054906101000a900460ff16155b156119e8575f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0154036118cf5760095460085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055508160075f60095481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600954908060018154018082558091505060019003905f5260205f20015f909190919091505560095f8154809291906118c590612688565b9190505550611935565b600660085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0154908060018154018082558091505060019003905f5260205f20015f90919091909150555b600160068054905061194791906125ed565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010181905550600160085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f6101000a81548160ff021916908315150217905550611b5a565b68056bc75e2d6310000081108015611a49575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f9054906101000a900460ff165b15611b595760066001600680549050611a6291906125ed565b81548110611a7357611a72612176565b5b905f5260205f200154600660085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015481548110611ad057611acf612176565b5b905f5260205f2001819055506006805480611aee57611aed6126cf565b5b600190038181905f5260205f20015f905590555f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015f6101000a81548160ff0219169083151502179055505b5b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b95578082015181840152602081019050611b7a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bba82611b5e565b611bc48185611b68565b9350611bd4818560208601611b78565b611bdd81611ba0565b840191505092915050565b5f6020820190508181035f830152611c008184611bb0565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c3582611c0c565b9050919050565b611c4581611c2b565b8114611c4f575f80fd5b50565b5f81359050611c6081611c3c565b92915050565b5f819050919050565b611c7881611c66565b8114611c82575f80fd5b50565b5f81359050611c9381611c6f565b92915050565b5f8060408385031215611caf57611cae611c08565b5b5f611cbc85828601611c52565b9250506020611ccd85828601611c85565b9150509250929050565b5f8115159050919050565b611ceb81611cd7565b82525050565b5f602082019050611d045f830184611ce2565b92915050565b5f60208284031215611d1f57611d1e611c08565b5b5f611d2c84828501611c85565b91505092915050565b611d3e81611c2b565b82525050565b5f602082019050611d575f830184611d35565b92915050565b611d6681611c66565b82525050565b5f602082019050611d7f5f830184611d5d565b92915050565b5f805f60608486031215611d9c57611d9b611c08565b5b5f611da986828701611c52565b9350506020611dba86828701611c52565b9250506040611dcb86828701611c85565b9150509250925092565b5f60ff82169050919050565b611dea81611dd5565b82525050565b5f602082019050611e035f830184611de1565b92915050565b5f60208284031215611e1e57611e1d611c08565b5b5f611e2b84828501611c52565b91505092915050565b5f606082019050611e475f830186611d5d565b611e546020830185611d5d565b611e616040830184611ce2565b949350505050565b5f8060408385031215611e7f57611e7e611c08565b5b5f611e8c85828601611c52565b9250506020611e9d85828601611c52565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611eeb57607f821691505b602082108103611efe57611efd611ea7565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611f5e602883611b68565b9150611f6982611f04565b604082019050919050565b5f6020820190508181035f830152611f8b81611f52565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611fc982611c66565b9150611fd483611c66565b9250828201905080821115611fec57611feb611f92565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612026602083611b68565b915061203182611ff2565b602082019050919050565b5f6020820190508181035f8301526120538161201a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120b4602583611b68565b91506120bf8261205a565b604082019050919050565b5f6020820190508181035f8301526120e1816120a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612142602683611b68565b915061214d826120e8565b604082019050919050565b5f6020820190508181035f83015261216f81612136565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121fd602483611b68565b9150612208826121a3565b604082019050919050565b5f6020820190508181035f83015261222a816121f1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61228b602283611b68565b915061229682612231565b604082019050919050565b5f6020820190508181035f8301526122b88161227f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612319602583611b68565b9150612324826122bf565b604082019050919050565b5f6020820190508181035f8301526123468161230d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123a7602383611b68565b91506123b28261234d565b604082019050919050565b5f6020820190508181035f8301526123d48161239b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612435602683611b68565b9150612440826123db565b604082019050919050565b5f6020820190508181035f83015261246281612429565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61249d601f83611b68565b91506124a882612469565b602082019050919050565b5f6020820190508181035f8301526124ca81612491565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61252b602183611b68565b9150612536826124d1565b604082019050919050565b5f6020820190508181035f8301526125588161251f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125b9602283611b68565b91506125c48261255f565b604082019050919050565b5f6020820190508181035f8301526125e6816125ad565b9050919050565b5f6125f782611c66565b915061260283611c66565b925082820390508181111561261a57612619611f92565b5b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f612654601683611b68565b915061265f82612620565b602082019050919050565b5f6020820190508181035f83015261268181612648565b9050919050565b5f61269282611c66565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126c4576126c3611f92565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220726930b532716da35e04d2e6480141d3fc6971f0e2f52a5d3de197c652cbc27a64736f6c63430008160033

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.