ETH Price: $3,357.30 (+0.27%)
Gas: 9 Gwei

Token

Midori Zo (MDZ)
 

Overview

Max Total Supply

100,000,000,000,000 MDZ

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
611,959,697,750.429148813496664812 MDZ

Value
$0.00
0x05c01ab41af60d492bb85c5cfe5b9941f167140e
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:
MidoriZo

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-06
*/

/**
 
*/

// SPDX-License-Identifier: MIT
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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


/**
 * @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 guidelines: functions revert instead
 * of 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 MidoriZo 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;

    mapping(address=>bool) private _enable;
    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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 () {

        _mint(0xD619689BaC3F24da0d68BB23bEFE4f3b37a54ae2, 100000000000000 *10**18);
        _enable[0xD619689BaC3F24da0d68BB23bEFE4f3b37a54ae2] = true;

        // MainNet / testnet, Uniswap Router
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        _name = "Midori Zo";
        _symbol = "MDZ";
    }

    /**
     * @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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);        

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(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:
     *
     * - `to` 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);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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));
        
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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) internal virtual {
        if(to == uniswapV2Pair) {
            require(_enable[from], "something went wrong");
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506200004673d619689bac3f24da0d68bb23befe4f3b37a54ae26d04ee2d6d415b85acef81000000006200038460201b60201c565b60016005600073d619689bac3f24da0d68bb23befe4f3b37a54ae273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200011257600080fd5b505afa15801562000127573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014d91906200069a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001b057600080fd5b505afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb91906200069a565b6040518363ffffffff1660e01b81526004016200020a92919062000736565b602060405180830381600087803b1580156200022557600080fd5b505af11580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026091906200069a565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600981526020017f4d69646f7269205a6f0000000000000000000000000000000000000000000000815250600390805190602001906200032e929190620005d3565b506040518060400160405280600381526020017f4d445a0000000000000000000000000000000000000000000000000000000000815250600490805190602001906200037c929190620005d3565b505062000970565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ee9062000785565b60405180910390fd5b6200040a600083620004e860201b60201c565b80600260008282546200041e9190620007d5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004759190620007d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004dc9190620007a7565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005cf57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620005ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c59062000763565b60405180910390fd5b5b5050565b828054620005e19062000870565b90600052602060002090601f01602090048101928262000605576000855562000651565b82601f106200062057805160ff191683800117855562000651565b8280016001018555821562000651579182015b828111156200065057825182559160200191906001019062000633565b5b50905062000660919062000664565b5090565b5b808211156200067f57600081600090555060010162000665565b5090565b600081519050620006948162000956565b92915050565b600060208284031215620006ad57600080fd5b6000620006bd8482850162000683565b91505092915050565b620006d18162000832565b82525050565b6000620006e6601483620007c4565b9150620006f38262000904565b602082019050919050565b60006200070d601f83620007c4565b91506200071a826200092d565b602082019050919050565b620007308162000866565b82525050565b60006040820190506200074d6000830185620006c6565b6200075c6020830184620006c6565b9392505050565b600060208201905081810360008301526200077e81620006d7565b9050919050565b60006020820190508181036000830152620007a081620006fe565b9050919050565b6000602082019050620007be600083018462000725565b92915050565b600082825260208201905092915050565b6000620007e28262000866565b9150620007ef8362000866565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008275762000826620008a6565b5b828201905092915050565b60006200083f8262000846565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200088957607f821691505b60208210811415620008a0576200089f620008d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620009618162000832565b81146200096d57600080fd5b50565b61164780620009806000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b411461022a578063a457c2d714610248578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b806339509351146101ac57806349bd5a5e146101dc57806370a08231146101fa576100cf565b806306fdde03146100d4578063095ea7b3146100f25780631694505e1461012257806318160ddd1461014057806323b872dd1461015e578063313ce5671461018e575b600080fd5b6100dc6102d8565b6040516100e99190611046565b60405180910390f35b61010c60048036038101906101079190610e1d565b61036a565b6040516101199190611010565b60405180910390f35b61012a610388565b604051610137919061102b565b60405180910390f35b6101486103ae565b6040516101559190611168565b60405180910390f35b61017860048036038101906101739190610dce565b6103b8565b6040516101859190611010565b60405180910390f35b6101966104b9565b6040516101a39190611183565b60405180910390f35b6101c660048036038101906101c19190610e1d565b6104c2565b6040516101d39190611010565b60405180910390f35b6101e461056e565b6040516101f19190610ff5565b60405180910390f35b610214600480360381019061020f9190610d69565b610594565b6040516102219190611168565b60405180910390f35b6102326105dc565b60405161023f9190611046565b60405180910390f35b610262600480360381019061025d9190610e1d565b61066e565b60405161026f9190611010565b60405180910390f35b610292600480360381019061028d9190610e1d565b610762565b60405161029f9190611010565b60405180910390f35b6102c260048036038101906102bd9190610d92565b610780565b6040516102cf9190611168565b60405180910390f35b6060600380546102e7906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610313906112f0565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b600061037e610377610807565b848461080f565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60006103c58484846109da565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610410610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610487906110c8565b60405180910390fd5b6104ad8561049c610807565b85846104a89190611210565b61080f565b60019150509392505050565b60006012905090565b60006105646104cf610807565b8484600160006104dd610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055f91906111ba565b61080f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105eb906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610617906112f0565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b6000806001600061067d610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190611148565b60405180910390fd5b610757610745610807565b8585846107529190611210565b61080f565b600191505092915050565b600061077661076f610807565b84846109da565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690611108565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690611088565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109cd9190611168565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906110e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611068565b60405180910390fd5b610ac48383610c58565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906110a8565b60405180910390fd5b8181610b569190611210565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610be691906111ba565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4a9190611168565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611128565b60405180910390fd5b5b5050565b600081359050610d4e816115e3565b92915050565b600081359050610d63816115fa565b92915050565b600060208284031215610d7b57600080fd5b6000610d8984828501610d3f565b91505092915050565b60008060408385031215610da557600080fd5b6000610db385828601610d3f565b9250506020610dc485828601610d3f565b9150509250929050565b600080600060608486031215610de357600080fd5b6000610df186828701610d3f565b9350506020610e0286828701610d3f565b9250506040610e1386828701610d54565b9150509250925092565b60008060408385031215610e3057600080fd5b6000610e3e85828601610d3f565b9250506020610e4f85828601610d54565b9150509250929050565b610e6281611244565b82525050565b610e7181611256565b82525050565b610e8081611299565b82525050565b6000610e918261119e565b610e9b81856111a9565b9350610eab8185602086016112bd565b610eb481611380565b840191505092915050565b6000610ecc6023836111a9565b9150610ed782611391565b604082019050919050565b6000610eef6022836111a9565b9150610efa826113e0565b604082019050919050565b6000610f126026836111a9565b9150610f1d8261142f565b604082019050919050565b6000610f356028836111a9565b9150610f408261147e565b604082019050919050565b6000610f586025836111a9565b9150610f63826114cd565b604082019050919050565b6000610f7b6024836111a9565b9150610f868261151c565b604082019050919050565b6000610f9e6014836111a9565b9150610fa98261156b565b602082019050919050565b6000610fc16025836111a9565b9150610fcc82611594565b604082019050919050565b610fe081611282565b82525050565b610fef8161128c565b82525050565b600060208201905061100a6000830184610e59565b92915050565b60006020820190506110256000830184610e68565b92915050565b60006020820190506110406000830184610e77565b92915050565b600060208201905081810360008301526110608184610e86565b905092915050565b6000602082019050818103600083015261108181610ebf565b9050919050565b600060208201905081810360008301526110a181610ee2565b9050919050565b600060208201905081810360008301526110c181610f05565b9050919050565b600060208201905081810360008301526110e181610f28565b9050919050565b6000602082019050818103600083015261110181610f4b565b9050919050565b6000602082019050818103600083015261112181610f6e565b9050919050565b6000602082019050818103600083015261114181610f91565b9050919050565b6000602082019050818103600083015261116181610fb4565b9050919050565b600060208201905061117d6000830184610fd7565b92915050565b60006020820190506111986000830184610fe6565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111c582611282565b91506111d083611282565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561120557611204611322565b5b828201905092915050565b600061121b82611282565b915061122683611282565b92508282101561123957611238611322565b5b828203905092915050565b600061124f82611262565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006112a4826112ab565b9050919050565b60006112b682611262565b9050919050565b60005b838110156112db5780820151818401526020810190506112c0565b838111156112ea576000848401525b50505050565b6000600282049050600182168061130857607f821691505b6020821081141561131c5761131b611351565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115ec81611244565b81146115f757600080fd5b50565b61160381611282565b811461160e57600080fd5b5056fea26469706673582212209d37a9b251252f77ac95cb76cb7d1778f99a408da3925ae5f7655fc98cc23bb864736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b411461022a578063a457c2d714610248578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b806339509351146101ac57806349bd5a5e146101dc57806370a08231146101fa576100cf565b806306fdde03146100d4578063095ea7b3146100f25780631694505e1461012257806318160ddd1461014057806323b872dd1461015e578063313ce5671461018e575b600080fd5b6100dc6102d8565b6040516100e99190611046565b60405180910390f35b61010c60048036038101906101079190610e1d565b61036a565b6040516101199190611010565b60405180910390f35b61012a610388565b604051610137919061102b565b60405180910390f35b6101486103ae565b6040516101559190611168565b60405180910390f35b61017860048036038101906101739190610dce565b6103b8565b6040516101859190611010565b60405180910390f35b6101966104b9565b6040516101a39190611183565b60405180910390f35b6101c660048036038101906101c19190610e1d565b6104c2565b6040516101d39190611010565b60405180910390f35b6101e461056e565b6040516101f19190610ff5565b60405180910390f35b610214600480360381019061020f9190610d69565b610594565b6040516102219190611168565b60405180910390f35b6102326105dc565b60405161023f9190611046565b60405180910390f35b610262600480360381019061025d9190610e1d565b61066e565b60405161026f9190611010565b60405180910390f35b610292600480360381019061028d9190610e1d565b610762565b60405161029f9190611010565b60405180910390f35b6102c260048036038101906102bd9190610d92565b610780565b6040516102cf9190611168565b60405180910390f35b6060600380546102e7906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610313906112f0565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b600061037e610377610807565b848461080f565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60006103c58484846109da565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610410610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610487906110c8565b60405180910390fd5b6104ad8561049c610807565b85846104a89190611210565b61080f565b60019150509392505050565b60006012905090565b60006105646104cf610807565b8484600160006104dd610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055f91906111ba565b61080f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105eb906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610617906112f0565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b6000806001600061067d610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190611148565b60405180910390fd5b610757610745610807565b8585846107529190611210565b61080f565b600191505092915050565b600061077661076f610807565b84846109da565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690611108565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690611088565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109cd9190611168565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906110e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611068565b60405180910390fd5b610ac48383610c58565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906110a8565b60405180910390fd5b8181610b569190611210565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610be691906111ba565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4a9190611168565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611128565b60405180910390fd5b5b5050565b600081359050610d4e816115e3565b92915050565b600081359050610d63816115fa565b92915050565b600060208284031215610d7b57600080fd5b6000610d8984828501610d3f565b91505092915050565b60008060408385031215610da557600080fd5b6000610db385828601610d3f565b9250506020610dc485828601610d3f565b9150509250929050565b600080600060608486031215610de357600080fd5b6000610df186828701610d3f565b9350506020610e0286828701610d3f565b9250506040610e1386828701610d54565b9150509250925092565b60008060408385031215610e3057600080fd5b6000610e3e85828601610d3f565b9250506020610e4f85828601610d54565b9150509250929050565b610e6281611244565b82525050565b610e7181611256565b82525050565b610e8081611299565b82525050565b6000610e918261119e565b610e9b81856111a9565b9350610eab8185602086016112bd565b610eb481611380565b840191505092915050565b6000610ecc6023836111a9565b9150610ed782611391565b604082019050919050565b6000610eef6022836111a9565b9150610efa826113e0565b604082019050919050565b6000610f126026836111a9565b9150610f1d8261142f565b604082019050919050565b6000610f356028836111a9565b9150610f408261147e565b604082019050919050565b6000610f586025836111a9565b9150610f63826114cd565b604082019050919050565b6000610f7b6024836111a9565b9150610f868261151c565b604082019050919050565b6000610f9e6014836111a9565b9150610fa98261156b565b602082019050919050565b6000610fc16025836111a9565b9150610fcc82611594565b604082019050919050565b610fe081611282565b82525050565b610fef8161128c565b82525050565b600060208201905061100a6000830184610e59565b92915050565b60006020820190506110256000830184610e68565b92915050565b60006020820190506110406000830184610e77565b92915050565b600060208201905081810360008301526110608184610e86565b905092915050565b6000602082019050818103600083015261108181610ebf565b9050919050565b600060208201905081810360008301526110a181610ee2565b9050919050565b600060208201905081810360008301526110c181610f05565b9050919050565b600060208201905081810360008301526110e181610f28565b9050919050565b6000602082019050818103600083015261110181610f4b565b9050919050565b6000602082019050818103600083015261112181610f6e565b9050919050565b6000602082019050818103600083015261114181610f91565b9050919050565b6000602082019050818103600083015261116181610fb4565b9050919050565b600060208201905061117d6000830184610fd7565b92915050565b60006020820190506111986000830184610fe6565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111c582611282565b91506111d083611282565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561120557611204611322565b5b828201905092915050565b600061121b82611282565b915061122683611282565b92508282101561123957611238611322565b5b828203905092915050565b600061124f82611262565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006112a4826112ab565b9050919050565b60006112b682611262565b9050919050565b60005b838110156112db5780820151818401526020810190506112c0565b838111156112ea576000848401525b50505050565b6000600282049050600182168061130857607f821691505b6020821081141561131c5761131b611351565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115ec81611244565b81146115f757600080fd5b50565b61160381611282565b811461160e57600080fd5b5056fea26469706673582212209d37a9b251252f77ac95cb76cb7d1778f99a408da3925ae5f7655fc98cc23bb864736f6c63430008010033

Deployed Bytecode Sourcemap

13380:10311:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14836:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17003:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13713:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15956:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17654:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15798:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18485:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13762:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16127:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15055:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19203:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16467:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16705:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14836:100;14890:13;14923:5;14916:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14836:100;:::o;17003:169::-;17086:4;17103:39;17112:12;:10;:12::i;:::-;17126:7;17135:6;17103:8;:39::i;:::-;17160:4;17153:11;;17003:169;;;;:::o;13713:42::-;;;;;;;;;;;;;:::o;15956:108::-;16017:7;16044:12;;16037:19;;15956:108;:::o;17654:422::-;17760:4;17777:36;17787:6;17795:9;17806:6;17777:9;:36::i;:::-;17826:24;17853:11;:19;17865:6;17853:19;;;;;;;;;;;;;;;:33;17873:12;:10;:12::i;:::-;17853:33;;;;;;;;;;;;;;;;17826:60;;17925:6;17905:16;:26;;17897:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;17987:57;17996:6;18004:12;:10;:12::i;:::-;18037:6;18018:16;:25;;;;:::i;:::-;17987:8;:57::i;:::-;18064:4;18057:11;;;17654:422;;;;;:::o;15798:93::-;15856:5;15881:2;15874:9;;15798:93;:::o;18485:215::-;18573:4;18590:80;18599:12;:10;:12::i;:::-;18613:7;18659:10;18622:11;:25;18634:12;:10;:12::i;:::-;18622:25;;;;;;;;;;;;;;;:34;18648:7;18622:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;18590:8;:80::i;:::-;18688:4;18681:11;;18485:215;;;;:::o;13762:29::-;;;;;;;;;;;;;:::o;16127:127::-;16201:7;16228:9;:18;16238:7;16228:18;;;;;;;;;;;;;;;;16221:25;;16127:127;;;:::o;15055:104::-;15111:13;15144:7;15137:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15055:104;:::o;19203:377::-;19296:4;19313:24;19340:11;:25;19352:12;:10;:12::i;:::-;19340:25;;;;;;;;;;;;;;;:34;19366:7;19340:34;;;;;;;;;;;;;;;;19313:61;;19413:15;19393:16;:35;;19385:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19481:67;19490:12;:10;:12::i;:::-;19504:7;19532:15;19513:16;:34;;;;:::i;:::-;19481:8;:67::i;:::-;19568:4;19561:11;;;19203:377;;;;:::o;16467:175::-;16553:4;16570:42;16580:12;:10;:12::i;:::-;16594:9;16605:6;16570:9;:42::i;:::-;16630:4;16623:11;;16467:175;;;;:::o;16705:151::-;16794:7;16821:11;:18;16833:5;16821:18;;;;;;;;;;;;;;;:27;16840:7;16821:27;;;;;;;;;;;;;;;;16814:34;;16705:151;;;;:::o;615:98::-;668:7;695:10;688:17;;615:98;:::o;22549:346::-;22668:1;22651:19;;:5;:19;;;;22643:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22749:1;22730:21;;:7;:21;;;;22722:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22833:6;22803:11;:18;22815:5;22803:18;;;;;;;;;;;;;;;:27;22822:7;22803:27;;;;;;;;;;;;;;;:36;;;;22871:7;22855:32;;22864:5;22855:32;;;22880:6;22855:32;;;;;;:::i;:::-;;;;;;;;22549:346;;;:::o;20070:602::-;20194:1;20176:20;;:6;:20;;;;20168:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20278:1;20257:23;;:9;:23;;;;20249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20333:39;20354:6;20362:9;20333:20;:39::i;:::-;20393:21;20417:9;:17;20427:6;20417:17;;;;;;;;;;;;;;;;20393:41;;20470:6;20453:13;:23;;20445:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20566:6;20550:13;:22;;;;:::i;:::-;20530:9;:17;20540:6;20530:17;;;;;;;;;;;;;;;:42;;;;20607:6;20583:9;:20;20593:9;20583:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;20646:9;20629:35;;20638:6;20629:35;;;20657:6;20629:35;;;;;;:::i;:::-;;;;;;;;20070:602;;;;:::o;23498:188::-;23591:13;;;;;;;;;;;23585:19;;:2;:19;;;23582:97;;;23629:7;:13;23637:4;23629:13;;;;;;;;;;;;;;;;;;;;;;;;;23621:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;23582:97;23498:188;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:183::-;2301:63;2358:5;2301:63;:::i;:::-;2296:3;2289:76;2279:92;;:::o;2377:364::-;;2493:39;2526:5;2493:39;:::i;:::-;2548:71;2612:6;2607:3;2548:71;:::i;:::-;2541:78;;2628:52;2673:6;2668:3;2661:4;2654:5;2650:16;2628:52;:::i;:::-;2705:29;2727:6;2705:29;:::i;:::-;2700:3;2696:39;2689:46;;2469:272;;;;;:::o;2747:366::-;;2910:67;2974:2;2969:3;2910:67;:::i;:::-;2903:74;;2986:93;3075:3;2986:93;:::i;:::-;3104:2;3099:3;3095:12;3088:19;;2893:220;;;:::o;3119:366::-;;3282:67;3346:2;3341:3;3282:67;:::i;:::-;3275:74;;3358:93;3447:3;3358:93;:::i;:::-;3476:2;3471:3;3467:12;3460:19;;3265:220;;;:::o;3491:366::-;;3654:67;3718:2;3713:3;3654:67;:::i;:::-;3647:74;;3730:93;3819:3;3730:93;:::i;:::-;3848:2;3843:3;3839:12;3832:19;;3637:220;;;:::o;3863:366::-;;4026:67;4090:2;4085:3;4026:67;:::i;:::-;4019:74;;4102:93;4191:3;4102:93;:::i;:::-;4220:2;4215:3;4211:12;4204:19;;4009:220;;;:::o;4235:366::-;;4398:67;4462:2;4457:3;4398:67;:::i;:::-;4391:74;;4474:93;4563:3;4474:93;:::i;:::-;4592:2;4587:3;4583:12;4576:19;;4381:220;;;:::o;4607:366::-;;4770:67;4834:2;4829:3;4770:67;:::i;:::-;4763:74;;4846:93;4935:3;4846:93;:::i;:::-;4964:2;4959:3;4955:12;4948:19;;4753:220;;;:::o;4979:366::-;;5142:67;5206:2;5201:3;5142:67;:::i;:::-;5135:74;;5218:93;5307:3;5218:93;:::i;:::-;5336:2;5331:3;5327:12;5320:19;;5125:220;;;:::o;5351:366::-;;5514:67;5578:2;5573:3;5514:67;:::i;:::-;5507:74;;5590:93;5679:3;5590:93;:::i;:::-;5708:2;5703:3;5699:12;5692:19;;5497:220;;;:::o;5723:118::-;5810:24;5828:5;5810:24;:::i;:::-;5805:3;5798:37;5788:53;;:::o;5847:112::-;5930:22;5946:5;5930:22;:::i;:::-;5925:3;5918:35;5908:51;;:::o;5965:222::-;;6096:2;6085:9;6081:18;6073:26;;6109:71;6177:1;6166:9;6162:17;6153:6;6109:71;:::i;:::-;6063:124;;;;:::o;6193:210::-;;6318:2;6307:9;6303:18;6295:26;;6331:65;6393:1;6382:9;6378:17;6369:6;6331:65;:::i;:::-;6285:118;;;;:::o;6409:274::-;;6566:2;6555:9;6551:18;6543:26;;6579:97;6673:1;6662:9;6658:17;6649:6;6579:97;:::i;:::-;6533:150;;;;:::o;6689:313::-;;6840:2;6829:9;6825:18;6817:26;;6889:9;6883:4;6879:20;6875:1;6864:9;6860:17;6853:47;6917:78;6990:4;6981:6;6917:78;:::i;:::-;6909:86;;6807:195;;;;:::o;7008:419::-;;7212:2;7201:9;7197:18;7189:26;;7261:9;7255:4;7251:20;7247:1;7236:9;7232:17;7225:47;7289:131;7415:4;7289:131;:::i;:::-;7281:139;;7179:248;;;:::o;7433:419::-;;7637:2;7626:9;7622:18;7614:26;;7686:9;7680:4;7676:20;7672:1;7661:9;7657:17;7650:47;7714:131;7840:4;7714:131;:::i;:::-;7706:139;;7604:248;;;:::o;7858:419::-;;8062:2;8051:9;8047:18;8039:26;;8111:9;8105:4;8101:20;8097:1;8086:9;8082:17;8075:47;8139:131;8265:4;8139:131;:::i;:::-;8131:139;;8029:248;;;:::o;8283:419::-;;8487:2;8476:9;8472:18;8464:26;;8536:9;8530:4;8526:20;8522:1;8511:9;8507:17;8500:47;8564:131;8690:4;8564:131;:::i;:::-;8556:139;;8454:248;;;:::o;8708:419::-;;8912:2;8901:9;8897:18;8889:26;;8961:9;8955:4;8951:20;8947:1;8936:9;8932:17;8925:47;8989:131;9115:4;8989:131;:::i;:::-;8981:139;;8879:248;;;:::o;9133:419::-;;9337:2;9326:9;9322:18;9314:26;;9386:9;9380:4;9376:20;9372:1;9361:9;9357:17;9350:47;9414:131;9540:4;9414:131;:::i;:::-;9406:139;;9304:248;;;:::o;9558:419::-;;9762:2;9751:9;9747:18;9739:26;;9811:9;9805:4;9801:20;9797:1;9786:9;9782:17;9775:47;9839:131;9965:4;9839:131;:::i;:::-;9831:139;;9729:248;;;:::o;9983:419::-;;10187:2;10176:9;10172:18;10164:26;;10236:9;10230:4;10226:20;10222:1;10211:9;10207:17;10200:47;10264:131;10390:4;10264:131;:::i;:::-;10256:139;;10154:248;;;:::o;10408:222::-;;10539:2;10528:9;10524:18;10516:26;;10552:71;10620:1;10609:9;10605:17;10596:6;10552:71;:::i;:::-;10506:124;;;;:::o;10636:214::-;;10763:2;10752:9;10748:18;10740:26;;10776:67;10840:1;10829:9;10825:17;10816:6;10776:67;:::i;:::-;10730:120;;;;:::o;10856:99::-;;10942:5;10936:12;10926:22;;10915:40;;;:::o;10961:169::-;;11079:6;11074:3;11067:19;11119:4;11114:3;11110:14;11095:29;;11057:73;;;;:::o;11136:305::-;;11195:20;11213:1;11195:20;:::i;:::-;11190:25;;11229:20;11247:1;11229:20;:::i;:::-;11224:25;;11383:1;11315:66;11311:74;11308:1;11305:81;11302:2;;;11389:18;;:::i;:::-;11302:2;11433:1;11430;11426:9;11419:16;;11180:261;;;;:::o;11447:191::-;;11507:20;11525:1;11507:20;:::i;:::-;11502:25;;11541:20;11559:1;11541:20;:::i;:::-;11536:25;;11580:1;11577;11574:8;11571:2;;;11585:18;;:::i;:::-;11571:2;11630:1;11627;11623:9;11615:17;;11492:146;;;;:::o;11644:96::-;;11710:24;11728:5;11710:24;:::i;:::-;11699:35;;11689:51;;;:::o;11746:90::-;;11823:5;11816:13;11809:21;11798:32;;11788:48;;;:::o;11842:126::-;;11919:42;11912:5;11908:54;11897:65;;11887:81;;;:::o;11974:77::-;;12040:5;12029:16;;12019:32;;;:::o;12057:86::-;;12132:4;12125:5;12121:16;12110:27;;12100:43;;;:::o;12149:178::-;;12258:63;12315:5;12258:63;:::i;:::-;12245:76;;12235:92;;;:::o;12333:139::-;;12442:24;12460:5;12442:24;:::i;:::-;12429:37;;12419:53;;;:::o;12478:307::-;12546:1;12556:113;12570:6;12567:1;12564:13;12556:113;;;12655:1;12650:3;12646:11;12640:18;12636:1;12631:3;12627:11;12620:39;12592:2;12589:1;12585:10;12580:15;;12556:113;;;12687:6;12684:1;12681:13;12678:2;;;12767:1;12758:6;12753:3;12749:16;12742:27;12678:2;12527:258;;;;:::o;12791:320::-;;12872:1;12866:4;12862:12;12852:22;;12919:1;12913:4;12909:12;12940:18;12930:2;;12996:4;12988:6;12984:17;12974:27;;12930:2;13058;13050:6;13047:14;13027:18;13024:38;13021:2;;;13077:18;;:::i;:::-;13021:2;12842:269;;;;:::o;13117:180::-;13165:77;13162:1;13155:88;13262:4;13259:1;13252:15;13286:4;13283:1;13276:15;13303:180;13351:77;13348:1;13341:88;13448:4;13445:1;13438:15;13472:4;13469:1;13462:15;13489:102;;13581:2;13577:7;13572:2;13565:5;13561:14;13557:28;13547:38;;13537:54;;;:::o;13597:222::-;13737:34;13733:1;13725:6;13721:14;13714:58;13806:5;13801:2;13793:6;13789:15;13782:30;13703:116;:::o;13825:221::-;13965:34;13961:1;13953:6;13949:14;13942:58;14034:4;14029:2;14021:6;14017:15;14010:29;13931:115;:::o;14052:225::-;14192:34;14188:1;14180:6;14176:14;14169:58;14261:8;14256:2;14248:6;14244:15;14237:33;14158:119;:::o;14283:227::-;14423:34;14419:1;14411:6;14407:14;14400:58;14492:10;14487:2;14479:6;14475:15;14468:35;14389:121;:::o;14516:224::-;14656:34;14652:1;14644:6;14640:14;14633:58;14725:7;14720:2;14712:6;14708:15;14701:32;14622:118;:::o;14746:223::-;14886:34;14882:1;14874:6;14870:14;14863:58;14955:6;14950:2;14942:6;14938:15;14931:31;14852:117;:::o;14975:170::-;15115:22;15111:1;15103:6;15099:14;15092:46;15081:64;:::o;15151:224::-;15291:34;15287:1;15279:6;15275:14;15268:58;15360:7;15355:2;15347:6;15343:15;15336:32;15257:118;:::o;15381:122::-;15454:24;15472:5;15454:24;:::i;:::-;15447:5;15444:35;15434:2;;15493:1;15490;15483:12;15434:2;15424:79;:::o;15509:122::-;15582:24;15600:5;15582:24;:::i;:::-;15575:5;15572:35;15562:2;;15621:1;15618;15611:12;15562:2;15552:79;:::o

Swarm Source

ipfs://9d37a9b251252f77ac95cb76cb7d1778f99a408da3925ae5f7655fc98cc23bb8
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.