ETH Price: $2,976.53 (+1.93%)
Gas: 2 Gwei

Token

DripCoin (DRIP)
 

Overview

Max Total Supply

1,000,000,000 DRIP

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
206,423.413881143972989017 DRIP

Value
$0.00
0x51b8a875e7797e87d97c95cd4447fa7060672eb1
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:
DripCoin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-27
*/

pragma solidity ^0.8.0;

//Twitter - https://twitter.com/dripcoin_
/**
 * @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;
    }
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }   
    
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function getUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
    
    function getTime() public view returns (uint256) {
        return block.timestamp;
    }

    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}


library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


/**
 * @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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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


pragma solidity ^0.8.9;


contract DripCoin is ERC20, Ownable {
    constructor() ERC20("DripCoin", "DRIP") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnlockTime","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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f44726970436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f445249500000000000000000000000000000000000000000000000000000000081525081600390816200008f91906200059d565b508060049081620000a191906200059d565b5050506000620000b66200019b60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000195336200016a620001a360201b60201c565b600a62000178919062000814565b633b9aca0062000189919062000865565b620001ac60201b60201c565b6200099c565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200021e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002159062000911565b60405180910390fd5b62000232600083836200031960201b60201c565b806002600082825462000246919062000933565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f991906200097f565b60405180910390a362000315600083836200031e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a557607f821691505b602082108103620003bb57620003ba6200035d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003e6565b620004318683620003e6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200047e62000478620004728462000449565b62000453565b62000449565b9050919050565b6000819050919050565b6200049a836200045d565b620004b2620004a98262000485565b848454620003f3565b825550505050565b600090565b620004c9620004ba565b620004d68184846200048f565b505050565b5b81811015620004fe57620004f2600082620004bf565b600181019050620004dc565b5050565b601f8211156200054d576200051781620003c1565b6200052284620003d6565b8101602085101562000532578190505b6200054a6200054185620003d6565b830182620004db565b50505b505050565b600082821c905092915050565b6000620005726000198460080262000552565b1980831691505092915050565b60006200058d83836200055f565b9150826002028217905092915050565b620005a88262000323565b67ffffffffffffffff811115620005c457620005c36200032e565b5b620005d082546200038c565b620005dd82828562000502565b600060209050601f83116001811462000615576000841562000600578287015190505b6200060c85826200057f565b8655506200067c565b601f1984166200062586620003c1565b60005b828110156200064f5784890151825560018201915060208501945060208101905062000628565b868310156200066f57848901516200066b601f8916826200055f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200071257808604811115620006ea57620006e962000684565b5b6001851615620006fa5780820291505b80810290506200070a85620006b3565b9450620006ca565b94509492505050565b6000826200072d576001905062000800565b816200073d576000905062000800565b8160018114620007565760028114620007615762000797565b600191505062000800565b60ff84111562000776576200077562000684565b5b8360020a91508482111562000790576200078f62000684565b5b5062000800565b5060208310610133831016604e8410600b8410161715620007d15782820a905083811115620007cb57620007ca62000684565b5b62000800565b620007e08484846001620006c0565b92509050818404811115620007fa57620007f962000684565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008218262000449565b91506200082e8362000807565b92506200085d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200071b565b905092915050565b6000620008728262000449565b91506200087f8362000449565b92508282026200088f8162000449565b91508282048414831517620008a957620008a862000684565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008f9601f83620008b0565b91506200090682620008c1565b602082019050919050565b600060208201905081810360008301526200092c81620008ea565b9050919050565b6000620009408262000449565b91506200094d8362000449565b925082820190508082111562000968576200096762000684565b5b92915050565b620009798162000449565b82525050565b60006020820190506200099660008301846200096e565b92915050565b611c9480620009ac6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a69df4b511610071578063a69df4b5146102e7578063a9059cbb146102f1578063dd46706414610321578063dd62ed3e1461033d578063f2fde38b1461036d57610116565b8063715018a6146102715780638da5cb5b1461027b57806395d89b4114610299578063a457c2d7146102b757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d5578063557ed1ba14610205578063602bc62b1461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610389565b604051610130919061131e565b60405180910390f35b610153600480360381019061014e91906113d9565b61041b565b6040516101609190611434565b60405180910390f35b61017161043e565b60405161017e919061145e565b60405180910390f35b6101a1600480360381019061019c9190611479565b610448565b6040516101ae9190611434565b60405180910390f35b6101bf610477565b6040516101cc91906114e8565b60405180910390f35b6101ef60048036038101906101ea91906113d9565b610480565b6040516101fc9190611434565b60405180910390f35b61020d6104b7565b60405161021a919061145e565b60405180910390f35b61022b6104bf565b604051610238919061145e565b60405180910390f35b61025b60048036038101906102569190611503565b6104c9565b604051610268919061145e565b60405180910390f35b610279610511565b005b610283610669565b604051610290919061153f565b60405180910390f35b6102a1610693565b6040516102ae919061131e565b60405180910390f35b6102d160048036038101906102cc91906113d9565b610725565b6040516102de9190611434565b60405180910390f35b6102ef61079c565b005b61030b600480360381019061030691906113d9565b610973565b6040516103189190611434565b60405180910390f35b61033b6004803603810190610336919061155a565b610996565b005b61035760048036038101906103529190611587565b610b64565b604051610364919061145e565b60405180910390f35b61038760048036038101906103829190611503565b610beb565b005b606060038054610398906115f6565b80601f01602080910402602001604051908101604052809291908181526020018280546103c4906115f6565b80156104115780601f106103e657610100808354040283529160200191610411565b820191906000526020600020905b8154815290600101906020018083116103f457829003601f168201915b5050505050905090565b600080610426610db1565b9050610433818585610db9565b600191505092915050565b6000600254905090565b600080610453610db1565b9050610460858285610f82565b61046b85858561100e565b60019150509392505050565b60006012905090565b60008061048b610db1565b90506104ac81858561049d8589610b64565b6104a79190611656565b610db9565b600191505092915050565b600042905090565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610519610db1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f906116d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106a2906115f6565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce906115f6565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610db1565b9050600061073e8286610b64565b905083811015610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90611768565b60405180910390fd5b6107908286868403610db9565b60019250505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906117fa565b60405180910390fd5b6007544211610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790611866565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008061097e610db1565b905061098b81858561100e565b600191505092915050565b61099e610db1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906116d6565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610ade9190611656565b600781905550600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bf3610db1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906116d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906118f8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f9061198a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90611a1c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f75919061145e565b60405180910390a3505050565b6000610f8e8484610b64565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110085781811015610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190611a88565b60405180910390fd5b6110078484848403610db9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490611b1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390611bac565b60405180910390fd5b6110f7838383611284565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490611c3e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126b919061145e565b60405180910390a361127e848484611289565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c85780820151818401526020810190506112ad565b60008484015250505050565b6000601f19601f8301169050919050565b60006112f08261128e565b6112fa8185611299565b935061130a8185602086016112aa565b611313816112d4565b840191505092915050565b6000602082019050818103600083015261133881846112e5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137082611345565b9050919050565b61138081611365565b811461138b57600080fd5b50565b60008135905061139d81611377565b92915050565b6000819050919050565b6113b6816113a3565b81146113c157600080fd5b50565b6000813590506113d3816113ad565b92915050565b600080604083850312156113f0576113ef611340565b5b60006113fe8582860161138e565b925050602061140f858286016113c4565b9150509250929050565b60008115159050919050565b61142e81611419565b82525050565b60006020820190506114496000830184611425565b92915050565b611458816113a3565b82525050565b6000602082019050611473600083018461144f565b92915050565b60008060006060848603121561149257611491611340565b5b60006114a08682870161138e565b93505060206114b18682870161138e565b92505060406114c2868287016113c4565b9150509250925092565b600060ff82169050919050565b6114e2816114cc565b82525050565b60006020820190506114fd60008301846114d9565b92915050565b60006020828403121561151957611518611340565b5b60006115278482850161138e565b91505092915050565b61153981611365565b82525050565b60006020820190506115546000830184611530565b92915050565b6000602082840312156115705761156f611340565b5b600061157e848285016113c4565b91505092915050565b6000806040838503121561159e5761159d611340565b5b60006115ac8582860161138e565b92505060206115bd8582860161138e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061160e57607f821691505b602082108103611621576116206115c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611661826113a3565b915061166c836113a3565b925082820190508082111561168457611683611627565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116c0602083611299565b91506116cb8261168a565b602082019050919050565b600060208201905081810360008301526116ef816116b3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611752602583611299565b915061175d826116f6565b604082019050919050565b6000602082019050818103600083015261178181611745565b9050919050565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b60006117e4602383611299565b91506117ef82611788565b604082019050919050565b60006020820190508181036000830152611813816117d7565b9050919050565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b6000611850601f83611299565b915061185b8261181a565b602082019050919050565b6000602082019050818103600083015261187f81611843565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118e2602683611299565b91506118ed82611886565b604082019050919050565b60006020820190508181036000830152611911816118d5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611974602483611299565b915061197f82611918565b604082019050919050565b600060208201905081810360008301526119a381611967565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a06602283611299565b9150611a11826119aa565b604082019050919050565b60006020820190508181036000830152611a35816119f9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a72601d83611299565b9150611a7d82611a3c565b602082019050919050565b60006020820190508181036000830152611aa181611a65565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b04602583611299565b9150611b0f82611aa8565b604082019050919050565b60006020820190508181036000830152611b3381611af7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b96602383611299565b9150611ba182611b3a565b604082019050919050565b60006020820190508181036000830152611bc581611b89565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c28602683611299565b9150611c3382611bcc565b604082019050919050565b60006020820190508181036000830152611c5781611c1b565b905091905056fea2646970667358221220b62a7bbabccb98177aa8f6675664557251e81aed90ac43da4179703384adcf5264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a69df4b511610071578063a69df4b5146102e7578063a9059cbb146102f1578063dd46706414610321578063dd62ed3e1461033d578063f2fde38b1461036d57610116565b8063715018a6146102715780638da5cb5b1461027b57806395d89b4114610299578063a457c2d7146102b757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d5578063557ed1ba14610205578063602bc62b1461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610389565b604051610130919061131e565b60405180910390f35b610153600480360381019061014e91906113d9565b61041b565b6040516101609190611434565b60405180910390f35b61017161043e565b60405161017e919061145e565b60405180910390f35b6101a1600480360381019061019c9190611479565b610448565b6040516101ae9190611434565b60405180910390f35b6101bf610477565b6040516101cc91906114e8565b60405180910390f35b6101ef60048036038101906101ea91906113d9565b610480565b6040516101fc9190611434565b60405180910390f35b61020d6104b7565b60405161021a919061145e565b60405180910390f35b61022b6104bf565b604051610238919061145e565b60405180910390f35b61025b60048036038101906102569190611503565b6104c9565b604051610268919061145e565b60405180910390f35b610279610511565b005b610283610669565b604051610290919061153f565b60405180910390f35b6102a1610693565b6040516102ae919061131e565b60405180910390f35b6102d160048036038101906102cc91906113d9565b610725565b6040516102de9190611434565b60405180910390f35b6102ef61079c565b005b61030b600480360381019061030691906113d9565b610973565b6040516103189190611434565b60405180910390f35b61033b6004803603810190610336919061155a565b610996565b005b61035760048036038101906103529190611587565b610b64565b604051610364919061145e565b60405180910390f35b61038760048036038101906103829190611503565b610beb565b005b606060038054610398906115f6565b80601f01602080910402602001604051908101604052809291908181526020018280546103c4906115f6565b80156104115780601f106103e657610100808354040283529160200191610411565b820191906000526020600020905b8154815290600101906020018083116103f457829003601f168201915b5050505050905090565b600080610426610db1565b9050610433818585610db9565b600191505092915050565b6000600254905090565b600080610453610db1565b9050610460858285610f82565b61046b85858561100e565b60019150509392505050565b60006012905090565b60008061048b610db1565b90506104ac81858561049d8589610b64565b6104a79190611656565b610db9565b600191505092915050565b600042905090565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610519610db1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f906116d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106a2906115f6565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce906115f6565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610db1565b9050600061073e8286610b64565b905083811015610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90611768565b60405180910390fd5b6107908286868403610db9565b60019250505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906117fa565b60405180910390fd5b6007544211610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790611866565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008061097e610db1565b905061098b81858561100e565b600191505092915050565b61099e610db1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906116d6565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610ade9190611656565b600781905550600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bf3610db1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906116d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906118f8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f9061198a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90611a1c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f75919061145e565b60405180910390a3505050565b6000610f8e8484610b64565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110085781811015610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190611a88565b60405180910390fd5b6110078484848403610db9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490611b1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390611bac565b60405180910390fd5b6110f7838383611284565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490611c3e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126b919061145e565b60405180910390a361127e848484611289565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c85780820151818401526020810190506112ad565b60008484015250505050565b6000601f19601f8301169050919050565b60006112f08261128e565b6112fa8185611299565b935061130a8185602086016112aa565b611313816112d4565b840191505092915050565b6000602082019050818103600083015261133881846112e5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137082611345565b9050919050565b61138081611365565b811461138b57600080fd5b50565b60008135905061139d81611377565b92915050565b6000819050919050565b6113b6816113a3565b81146113c157600080fd5b50565b6000813590506113d3816113ad565b92915050565b600080604083850312156113f0576113ef611340565b5b60006113fe8582860161138e565b925050602061140f858286016113c4565b9150509250929050565b60008115159050919050565b61142e81611419565b82525050565b60006020820190506114496000830184611425565b92915050565b611458816113a3565b82525050565b6000602082019050611473600083018461144f565b92915050565b60008060006060848603121561149257611491611340565b5b60006114a08682870161138e565b93505060206114b18682870161138e565b92505060406114c2868287016113c4565b9150509250925092565b600060ff82169050919050565b6114e2816114cc565b82525050565b60006020820190506114fd60008301846114d9565b92915050565b60006020828403121561151957611518611340565b5b60006115278482850161138e565b91505092915050565b61153981611365565b82525050565b60006020820190506115546000830184611530565b92915050565b6000602082840312156115705761156f611340565b5b600061157e848285016113c4565b91505092915050565b6000806040838503121561159e5761159d611340565b5b60006115ac8582860161138e565b92505060206115bd8582860161138e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061160e57607f821691505b602082108103611621576116206115c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611661826113a3565b915061166c836113a3565b925082820190508082111561168457611683611627565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116c0602083611299565b91506116cb8261168a565b602082019050919050565b600060208201905081810360008301526116ef816116b3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611752602583611299565b915061175d826116f6565b604082019050919050565b6000602082019050818103600083015261178181611745565b9050919050565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b60006117e4602383611299565b91506117ef82611788565b604082019050919050565b60006020820190508181036000830152611813816117d7565b9050919050565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b6000611850601f83611299565b915061185b8261181a565b602082019050919050565b6000602082019050818103600083015261187f81611843565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118e2602683611299565b91506118ed82611886565b604082019050919050565b60006020820190508181036000830152611911816118d5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611974602483611299565b915061197f82611918565b604082019050919050565b600060208201905081810360008301526119a381611967565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a06602283611299565b9150611a11826119aa565b604082019050919050565b60006020820190508181036000830152611a35816119f9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a72601d83611299565b9150611a7d82611a3c565b602082019050919050565b60006020820190508181036000830152611aa181611a65565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b04602583611299565b9150611b0f82611aa8565b604082019050919050565b60006020820190508181036000830152611b3381611af7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b96602383611299565b9150611ba182611b3a565b604082019050919050565b60006020820190508181036000830152611bc581611b89565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c28602683611299565b9150611c3382611bcc565b604082019050919050565b60006020820190508181036000830152611c5781611c1b565b905091905056fea2646970667358221220b62a7bbabccb98177aa8f6675664557251e81aed90ac43da4179703384adcf5264736f6c63430008120033

Deployed Bytecode Sourcemap

20809:153:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9590:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11941:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10710:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12722:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10552:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13426:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1948:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10881:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1438:148;;;:::i;:::-;;1213:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9809:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14167:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2284:305;;;:::i;:::-;;11214:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2046:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11470:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1594:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9590:100;9644:13;9677:5;9670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9590:100;:::o;11941:201::-;12024:4;12041:13;12057:12;:10;:12::i;:::-;12041:28;;12080:32;12089:5;12096:7;12105:6;12080:8;:32::i;:::-;12130:4;12123:11;;;11941:201;;;;:::o;10710:108::-;10771:7;10798:12;;10791:19;;10710:108;:::o;12722:295::-;12853:4;12870:15;12888:12;:10;:12::i;:::-;12870:30;;12911:38;12927:4;12933:7;12942:6;12911:15;:38::i;:::-;12960:27;12970:4;12976:2;12980:6;12960:9;:27::i;:::-;13005:4;12998:11;;;12722:295;;;;;:::o;10552:93::-;10610:5;10635:2;10628:9;;10552:93;:::o;13426:238::-;13514:4;13531:13;13547:12;:10;:12::i;:::-;13531:28;;13570:64;13579:5;13586:7;13623:10;13595:25;13605:5;13612:7;13595:9;:25::i;:::-;:38;;;;:::i;:::-;13570:8;:64::i;:::-;13652:4;13645:11;;;13426:238;;;;:::o;1948:90::-;1988:7;2015:15;2008:22;;1948:90;:::o;1846:::-;1892:7;1919:9;;1912:16;;1846:90;:::o;10881:127::-;10955:7;10982:9;:18;10992:7;10982:18;;;;;;;;;;;;;;;;10975:25;;10881:127;;;:::o;1438:148::-;1357:12;:10;:12::i;:::-;1347:22;;:6;;;;;;;;;;;:22;;;1339:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1545:1:::1;1508:40;;1529:6;;;;;;;;;;;1508:40;;;;;;;;;;;;1576:1;1559:6;;:19;;;;;;;;;;;;;;;;;;1438:148::o:0;1213:79::-;1251:7;1278:6;;;;;;;;;;;1271:13;;1213:79;:::o;9809:104::-;9865:13;9898:7;9891:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9809:104;:::o;14167:436::-;14260:4;14277:13;14293:12;:10;:12::i;:::-;14277:28;;14316:24;14343:25;14353:5;14360:7;14343:9;:25::i;:::-;14316:52;;14407:15;14387:16;:35;;14379:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14500:60;14509:5;14516:7;14544:15;14525:16;:34;14500:8;:60::i;:::-;14591:4;14584:11;;;;14167:436;;;;:::o;2284:305::-;2354:10;2336:28;;:14;;;;;;;;;;;:28;;;2328:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2441:9;;2423:15;:27;2415:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2532:14;;;;;;;;;;;2503:44;;2524:6;;;;;;;;;;;2503:44;;;;;;;;;;;;2567:14;;;;;;;;;;;2558:6;;:23;;;;;;;;;;;;;;;;;;2284:305::o;11214:193::-;11293:4;11310:13;11326:12;:10;:12::i;:::-;11310:28;;11349;11359:5;11366:2;11370:6;11349:9;:28::i;:::-;11395:4;11388:11;;;11214:193;;;;:::o;2046:226::-;1357:12;:10;:12::i;:::-;1347:22;;:6;;;;;;;;;;;:22;;;1339:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2127:6:::1;;;;;;;;;;;2110:14;;:23;;;;;;;;;;;;;;;;;;2161:1;2144:6;;:19;;;;;;;;;;;;;;;;;;2204:4;2186:15;:22;;;;:::i;:::-;2174:9;:34;;;;2261:1;2224:40;;2245:6;;;;;;;;;;;2224:40;;;;;;;;;;;;2046:226:::0;:::o;11470:151::-;11559:7;11586:11;:18;11598:5;11586:18;;;;;;;;;;;;;;;:27;11605:7;11586:27;;;;;;;;;;;;;;;;11579:34;;11470:151;;;;:::o;1594:244::-;1357:12;:10;:12::i;:::-;1347:22;;:6;;;;;;;;;;;:22;;;1339:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1703:1:::1;1683:22;;:8;:22;;::::0;1675:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1793:8;1764:38;;1785:6;;;;;;;;;;;1764:38;;;;;;;;;;;;1822:8;1813:6;;:17;;;;;;;;;;;;;;;;;;1594:244:::0;:::o;610:98::-;663:7;690:10;683:17;;610:98;:::o;18194:380::-;18347:1;18330:19;;:5;:19;;;18322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18428:1;18409:21;;:7;:21;;;18401:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18512:6;18482:11;:18;18494:5;18482:18;;;;;;;;;;;;;;;:27;18501:7;18482:27;;;;;;;;;;;;;;;:36;;;;18550:7;18534:32;;18543:5;18534:32;;;18559:6;18534:32;;;;;;:::i;:::-;;;;;;;;18194:380;;;:::o;18865:453::-;19000:24;19027:25;19037:5;19044:7;19027:9;:25::i;:::-;19000:52;;19087:17;19067:16;:37;19063:248;;19149:6;19129:16;:26;;19121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19233:51;19242:5;19249:7;19277:6;19258:16;:25;19233:8;:51::i;:::-;19063:248;18989:329;18865:453;;;:::o;15073:840::-;15220:1;15204:18;;:4;:18;;;15196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15297:1;15283:16;;:2;:16;;;15275:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15352:38;15373:4;15379:2;15383:6;15352:20;:38::i;:::-;15403:19;15425:9;:15;15435:4;15425:15;;;;;;;;;;;;;;;;15403:37;;15474:6;15459:11;:21;;15451:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15591:6;15577:11;:20;15559:9;:15;15569:4;15559:15;;;;;;;;;;;;;;;:38;;;;15794:6;15777:9;:13;15787:2;15777:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15844:2;15829:26;;15838:4;15829:26;;;15848:6;15829:26;;;;;;:::i;:::-;;;;;;;;15868:37;15888:4;15894:2;15898:6;15868:19;:37::i;:::-;15185:728;15073:840;;;:::o;19918:125::-;;;;:::o;20647:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:182::-;7390:34;7386:1;7378:6;7374:14;7367:58;7250:182;:::o;7438:366::-;7580:3;7601:67;7665:2;7660:3;7601:67;:::i;:::-;7594:74;;7677:93;7766:3;7677:93;:::i;:::-;7795:2;7790:3;7786:12;7779:19;;7438:366;;;:::o;7810:419::-;7976:4;8014:2;8003:9;7999:18;7991:26;;8063:9;8057:4;8053:20;8049:1;8038:9;8034:17;8027:47;8091:131;8217:4;8091:131;:::i;:::-;8083:139;;7810:419;;;:::o;8235:224::-;8375:34;8371:1;8363:6;8359:14;8352:58;8444:7;8439:2;8431:6;8427:15;8420:32;8235:224;:::o;8465:366::-;8607:3;8628:67;8692:2;8687:3;8628:67;:::i;:::-;8621:74;;8704:93;8793:3;8704:93;:::i;:::-;8822:2;8817:3;8813:12;8806:19;;8465:366;;;:::o;8837:419::-;9003:4;9041:2;9030:9;9026:18;9018:26;;9090:9;9084:4;9080:20;9076:1;9065:9;9061:17;9054:47;9118:131;9244:4;9118:131;:::i;:::-;9110:139;;8837:419;;;:::o;9262:222::-;9402:34;9398:1;9390:6;9386:14;9379:58;9471:5;9466:2;9458:6;9454:15;9447:30;9262:222;:::o;9490:366::-;9632:3;9653:67;9717:2;9712:3;9653:67;:::i;:::-;9646:74;;9729:93;9818:3;9729:93;:::i;:::-;9847:2;9842:3;9838:12;9831:19;;9490:366;;;:::o;9862:419::-;10028:4;10066:2;10055:9;10051:18;10043:26;;10115:9;10109:4;10105:20;10101:1;10090:9;10086:17;10079:47;10143:131;10269:4;10143:131;:::i;:::-;10135:139;;9862:419;;;:::o;10287:181::-;10427:33;10423:1;10415:6;10411:14;10404:57;10287:181;:::o;10474:366::-;10616:3;10637:67;10701:2;10696:3;10637:67;:::i;:::-;10630:74;;10713:93;10802:3;10713:93;:::i;:::-;10831:2;10826:3;10822:12;10815:19;;10474:366;;;:::o;10846:419::-;11012:4;11050:2;11039:9;11035:18;11027:26;;11099:9;11093:4;11089:20;11085:1;11074:9;11070:17;11063:47;11127:131;11253:4;11127:131;:::i;:::-;11119:139;;10846:419;;;:::o;11271:225::-;11411:34;11407:1;11399:6;11395:14;11388:58;11480:8;11475:2;11467:6;11463:15;11456:33;11271:225;:::o;11502:366::-;11644:3;11665:67;11729:2;11724:3;11665:67;:::i;:::-;11658:74;;11741:93;11830:3;11741:93;:::i;:::-;11859:2;11854:3;11850:12;11843:19;;11502:366;;;:::o;11874:419::-;12040:4;12078:2;12067:9;12063:18;12055:26;;12127:9;12121:4;12117:20;12113:1;12102:9;12098:17;12091:47;12155:131;12281:4;12155:131;:::i;:::-;12147:139;;11874:419;;;:::o;12299:223::-;12439:34;12435:1;12427:6;12423:14;12416:58;12508:6;12503:2;12495:6;12491:15;12484:31;12299:223;:::o;12528:366::-;12670:3;12691:67;12755:2;12750:3;12691:67;:::i;:::-;12684:74;;12767:93;12856:3;12767:93;:::i;:::-;12885:2;12880:3;12876:12;12869:19;;12528:366;;;:::o;12900:419::-;13066:4;13104:2;13093:9;13089:18;13081:26;;13153:9;13147:4;13143:20;13139:1;13128:9;13124:17;13117:47;13181:131;13307:4;13181:131;:::i;:::-;13173:139;;12900:419;;;:::o;13325:221::-;13465:34;13461:1;13453:6;13449:14;13442:58;13534:4;13529:2;13521:6;13517:15;13510:29;13325:221;:::o;13552:366::-;13694:3;13715:67;13779:2;13774:3;13715:67;:::i;:::-;13708:74;;13791:93;13880:3;13791:93;:::i;:::-;13909:2;13904:3;13900:12;13893:19;;13552:366;;;:::o;13924:419::-;14090:4;14128:2;14117:9;14113:18;14105:26;;14177:9;14171:4;14167:20;14163:1;14152:9;14148:17;14141:47;14205:131;14331:4;14205:131;:::i;:::-;14197:139;;13924:419;;;:::o;14349:179::-;14489:31;14485:1;14477:6;14473:14;14466:55;14349:179;:::o;14534:366::-;14676:3;14697:67;14761:2;14756:3;14697:67;:::i;:::-;14690:74;;14773:93;14862:3;14773:93;:::i;:::-;14891:2;14886:3;14882:12;14875:19;;14534:366;;;:::o;14906:419::-;15072:4;15110:2;15099:9;15095:18;15087:26;;15159:9;15153:4;15149:20;15145:1;15134:9;15130:17;15123:47;15187:131;15313:4;15187:131;:::i;:::-;15179:139;;14906:419;;;:::o;15331:224::-;15471:34;15467:1;15459:6;15455:14;15448:58;15540:7;15535:2;15527:6;15523:15;15516:32;15331:224;:::o;15561:366::-;15703:3;15724:67;15788:2;15783:3;15724:67;:::i;:::-;15717:74;;15800:93;15889:3;15800:93;:::i;:::-;15918:2;15913:3;15909:12;15902:19;;15561:366;;;:::o;15933:419::-;16099:4;16137:2;16126:9;16122:18;16114:26;;16186:9;16180:4;16176:20;16172:1;16161:9;16157:17;16150:47;16214:131;16340:4;16214:131;:::i;:::-;16206:139;;15933:419;;;:::o;16358:222::-;16498:34;16494:1;16486:6;16482:14;16475:58;16567:5;16562:2;16554:6;16550:15;16543:30;16358:222;:::o;16586:366::-;16728:3;16749:67;16813:2;16808:3;16749:67;:::i;:::-;16742:74;;16825:93;16914:3;16825:93;:::i;:::-;16943:2;16938:3;16934:12;16927:19;;16586:366;;;:::o;16958:419::-;17124:4;17162:2;17151:9;17147:18;17139:26;;17211:9;17205:4;17201:20;17197:1;17186:9;17182:17;17175:47;17239:131;17365:4;17239:131;:::i;:::-;17231:139;;16958:419;;;:::o;17383:225::-;17523:34;17519:1;17511:6;17507:14;17500:58;17592:8;17587:2;17579:6;17575:15;17568:33;17383:225;:::o;17614:366::-;17756:3;17777:67;17841:2;17836:3;17777:67;:::i;:::-;17770:74;;17853:93;17942:3;17853:93;:::i;:::-;17971:2;17966:3;17962:12;17955:19;;17614:366;;;:::o;17986:419::-;18152:4;18190:2;18179:9;18175:18;18167:26;;18239:9;18233:4;18229:20;18225:1;18214:9;18210:17;18203:47;18267:131;18393:4;18267:131;:::i;:::-;18259:139;;17986:419;;;:::o

Swarm Source

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