ETH Price: $2,526.43 (+0.15%)

Token

RUMOR (RUMOR)
 

Overview

Max Total Supply

21,000,000 RUMOR

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
488,456 RUMOR

Value
$0.00
0xc627455ba67fc5e741923d3588eb15a24757021f
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:
Rumor

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
Buy the Rumor. Trust the Rumor. Hold the Rumor. Spread the Rumor

Website: rumor.lol

Twitter: https://twitter.com/rumorcoin

Telegram: https://t.me/rumor_coin

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _setOwner(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Rumor is ERC20, Ownable {
    bool public tradeEnabled;
    mapping(address => bool) public exempted;

    event TradeEnabled(bool);

    constructor() ERC20("RUMOR", "RUMOR") {
        _mint(msg.sender, 21_000_000 * 1e18);

        exempted[msg.sender] = true;
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    // @dev can open trade only once
    function _openTrade() external onlyOwner {
        require(!tradeEnabled, "Error: Trade is already enabled.");

        tradeEnabled = true;

        emit TradeEnabled(true);
    }

    function _exemptWallets(address _wallet) external onlyOwner {
        require(!exempted[_wallet], "Error: Already extempted.");

        exempted[_wallet] = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (!exempted[sender] && !exempted[recipient]) {
            require(tradeEnabled, "Error: Trading is not enabled.");
        }

        super._transfer(sender, recipient, amount);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        return true;
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }
}

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":false,"internalType":"bool","name":"","type":"bool"}],"name":"TradeEnabled","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":"_wallet","type":"address"}],"name":"_exemptWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exempted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f52554d4f520000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f52554d4f5200000000000000000000000000000000000000000000000000000081525081600390816200008f919062000609565b508060049081620000a1919062000609565b505050620000c4620000b86200013f60201b60201c565b6200014760201b60201c565b620000e1336a115eec47f6cf7e350000006200020d60201b60201c565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200080b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002769062000751565b60405180910390fd5b62000293600083836200038560201b60201c565b8060026000828254620002a79190620007a2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fe9190620007a2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003659190620007ee565b60405180910390a362000381600083836200038a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041157607f821691505b602082108103620004275762000426620003c9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000452565b6200049d868362000452565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ea620004e4620004de84620004b5565b620004bf565b620004b5565b9050919050565b6000819050919050565b6200050683620004c9565b6200051e6200051582620004f1565b8484546200045f565b825550505050565b600090565b6200053562000526565b62000542818484620004fb565b505050565b5b818110156200056a576200055e6000826200052b565b60018101905062000548565b5050565b601f821115620005b95762000583816200042d565b6200058e8462000442565b810160208510156200059e578190505b620005b6620005ad8562000442565b83018262000547565b50505b505050565b600082821c905092915050565b6000620005de60001984600802620005be565b1980831691505092915050565b6000620005f98383620005cb565b9150826002028217905092915050565b62000614826200038f565b67ffffffffffffffff81111562000630576200062f6200039a565b5b6200063c8254620003f8565b620006498282856200056e565b600060209050601f8311600181146200068157600084156200066c578287015190505b620006788582620005eb565b865550620006e8565b601f19841662000691866200042d565b60005b82811015620006bb5784890151825560018201915060208501945060208101905062000694565b86831015620006db5784890151620006d7601f891682620005cb565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000739601f83620006f0565b9150620007468262000701565b602082019050919050565b600060208201905081810360008301526200076c816200072a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007af82620004b5565b9150620007bc83620004b5565b9250828201905080821115620007d757620007d662000773565b5b92915050565b620007e881620004b5565b82525050565b6000602082019050620008056000830184620007dd565b92915050565b611f51806200081b6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063bfe262cc11610071578063bfe262cc1461031e578063ca43f3131461034e578063d621e81314610358578063dd62ed3e14610376578063f2fde38b146103a657610121565b8063715018a6146102785780638da5cb5b1461028257806395d89b41146102a0578063a457c2d7146102be578063a9059cbb146102ee57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c68146102105780634efb21e41461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c2565b60405161013b91906114a9565b60405180910390f35b61015e60048036038101906101599190611564565b610454565b60405161016b91906115bf565b60405180910390f35b61017c610472565b60405161018991906115e9565b60405180910390f35b6101ac60048036038101906101a79190611604565b61047c565b6040516101b991906115bf565b60405180910390f35b6101ca610494565b6040516101d79190611673565b60405180910390f35b6101fa60048036038101906101f59190611564565b61049d565b60405161020791906115bf565b60405180910390f35b61022a6004803603810190610225919061168e565b610549565b005b610246600480360381019061024191906116bb565b610556565b005b610262600480360381019061025d91906116bb565b6106ba565b60405161026f91906115e9565b60405180910390f35b610280610702565b005b61028a61078a565b60405161029791906116f7565b60405180910390f35b6102a86107b4565b6040516102b591906114a9565b60405180910390f35b6102d860048036038101906102d39190611564565b610846565b6040516102e591906115bf565b60405180910390f35b61030860048036038101906103039190611564565b610931565b60405161031591906115bf565b60405180910390f35b610338600480360381019061033391906116bb565b610948565b60405161034591906115bf565b60405180910390f35b610356610968565b005b610360610a89565b60405161036d91906115bf565b60405180910390f35b610390600480360381019061038b9190611712565b610a9c565b60405161039d91906115e9565b60405180910390f35b6103c060048036038101906103bb91906116bb565b610b23565b005b6060600380546103d190611781565b80601f01602080910402602001604051908101604052809291908181526020018280546103fd90611781565b801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b5050505050905090565b6000610468610461610c1a565b8484610c22565b6001905092915050565b6000600254905090565b6000610489848484610deb565b600190509392505050565b60006012905090565b600061053f6104aa610c1a565b8484600160006104b8610c1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053a91906117e1565b610c22565b6001905092915050565b6105533382610ef4565b50565b61055e610c1a565b73ffffffffffffffffffffffffffffffffffffffff1661057c61078a565b73ffffffffffffffffffffffffffffffffffffffff16146105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c990611861565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561065f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610656906118cd565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070a610c1a565b73ffffffffffffffffffffffffffffffffffffffff1661072861078a565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611861565b60405180910390fd5b61078860006110ca565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c390611781565b80601f01602080910402602001604051908101604052809291908181526020018280546107ef90611781565b801561083c5780601f106108115761010080835404028352916020019161083c565b820191906000526020600020905b81548152906001019060200180831161081f57829003601f168201915b5050505050905090565b60008060016000610855610c1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109099061195f565b60405180910390fd5b61092661091d610c1a565b85858403610c22565b600191505092915050565b600061093e338484610deb565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b610970610c1a565b73ffffffffffffffffffffffffffffffffffffffff1661098e61078a565b73ffffffffffffffffffffffffffffffffffffffff16146109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90611861565b60405180910390fd5b600560149054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906119cb565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f7d7f00509dd73ac4449f698ae75ccc797895eff5fa9d446d3df387598a26e7356001604051610a7f91906115bf565b60405180910390a1565b600560149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b2b610c1a565b73ffffffffffffffffffffffffffffffffffffffff16610b4961078a565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690611861565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590611a5d565b60405180910390fd5b610c17816110ca565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890611aef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790611b81565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dde91906115e9565b60405180910390a3505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610e8f5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610ee457600560149054906101000a900460ff16610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611bed565b60405180910390fd5b5b610eef838383611190565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90611c7f565b60405180910390fd5b610f6f8260008361140f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90611d11565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461104c9190611d31565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b191906115e9565b60405180910390a36110c583600084611414565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690611dd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590611e69565b60405180910390fd5b61127983838361140f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690611efb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139291906117e1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f691906115e9565b60405180910390a3611409848484611414565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611453578082015181840152602081019050611438565b60008484015250505050565b6000601f19601f8301169050919050565b600061147b82611419565b6114858185611424565b9350611495818560208601611435565b61149e8161145f565b840191505092915050565b600060208201905081810360008301526114c38184611470565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114fb826114d0565b9050919050565b61150b816114f0565b811461151657600080fd5b50565b60008135905061152881611502565b92915050565b6000819050919050565b6115418161152e565b811461154c57600080fd5b50565b60008135905061155e81611538565b92915050565b6000806040838503121561157b5761157a6114cb565b5b600061158985828601611519565b925050602061159a8582860161154f565b9150509250929050565b60008115159050919050565b6115b9816115a4565b82525050565b60006020820190506115d460008301846115b0565b92915050565b6115e38161152e565b82525050565b60006020820190506115fe60008301846115da565b92915050565b60008060006060848603121561161d5761161c6114cb565b5b600061162b86828701611519565b935050602061163c86828701611519565b925050604061164d8682870161154f565b9150509250925092565b600060ff82169050919050565b61166d81611657565b82525050565b60006020820190506116886000830184611664565b92915050565b6000602082840312156116a4576116a36114cb565b5b60006116b28482850161154f565b91505092915050565b6000602082840312156116d1576116d06114cb565b5b60006116df84828501611519565b91505092915050565b6116f1816114f0565b82525050565b600060208201905061170c60008301846116e8565b92915050565b60008060408385031215611729576117286114cb565b5b600061173785828601611519565b925050602061174885828601611519565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179957607f821691505b6020821081036117ac576117ab611752565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ec8261152e565b91506117f78361152e565b925082820190508082111561180f5761180e6117b2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061184b602083611424565b915061185682611815565b602082019050919050565b6000602082019050818103600083015261187a8161183e565b9050919050565b7f4572726f723a20416c726561647920657874656d707465642e00000000000000600082015250565b60006118b7601983611424565b91506118c282611881565b602082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611949602583611424565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b7f4572726f723a20547261646520697320616c726561647920656e61626c65642e600082015250565b60006119b5602083611424565b91506119c08261197f565b602082019050919050565b600060208201905081810360008301526119e4816119a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a47602683611424565b9150611a52826119eb565b604082019050919050565b60006020820190508181036000830152611a7681611a3a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ad9602483611424565b9150611ae482611a7d565b604082019050919050565b60006020820190508181036000830152611b0881611acc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b6b602283611424565b9150611b7682611b0f565b604082019050919050565b60006020820190508181036000830152611b9a81611b5e565b9050919050565b7f4572726f723a2054726164696e67206973206e6f7420656e61626c65642e0000600082015250565b6000611bd7601e83611424565b9150611be282611ba1565b602082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c69602183611424565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cfb602283611424565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b6000611d3c8261152e565b9150611d478361152e565b9250828203905081811115611d5f57611d5e6117b2565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611dc1602583611424565b9150611dcc82611d65565b604082019050919050565b60006020820190508181036000830152611df081611db4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e53602383611424565b9150611e5e82611df7565b604082019050919050565b60006020820190508181036000830152611e8281611e46565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ee5602683611424565b9150611ef082611e89565b604082019050919050565b60006020820190508181036000830152611f1481611ed8565b905091905056fea26469706673582212200f7c4d7750df68405910c55db2544cd170da5dfd2667e3b9488b3d0da444854964736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063bfe262cc11610071578063bfe262cc1461031e578063ca43f3131461034e578063d621e81314610358578063dd62ed3e14610376578063f2fde38b146103a657610121565b8063715018a6146102785780638da5cb5b1461028257806395d89b41146102a0578063a457c2d7146102be578063a9059cbb146102ee57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c68146102105780634efb21e41461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c2565b60405161013b91906114a9565b60405180910390f35b61015e60048036038101906101599190611564565b610454565b60405161016b91906115bf565b60405180910390f35b61017c610472565b60405161018991906115e9565b60405180910390f35b6101ac60048036038101906101a79190611604565b61047c565b6040516101b991906115bf565b60405180910390f35b6101ca610494565b6040516101d79190611673565b60405180910390f35b6101fa60048036038101906101f59190611564565b61049d565b60405161020791906115bf565b60405180910390f35b61022a6004803603810190610225919061168e565b610549565b005b610246600480360381019061024191906116bb565b610556565b005b610262600480360381019061025d91906116bb565b6106ba565b60405161026f91906115e9565b60405180910390f35b610280610702565b005b61028a61078a565b60405161029791906116f7565b60405180910390f35b6102a86107b4565b6040516102b591906114a9565b60405180910390f35b6102d860048036038101906102d39190611564565b610846565b6040516102e591906115bf565b60405180910390f35b61030860048036038101906103039190611564565b610931565b60405161031591906115bf565b60405180910390f35b610338600480360381019061033391906116bb565b610948565b60405161034591906115bf565b60405180910390f35b610356610968565b005b610360610a89565b60405161036d91906115bf565b60405180910390f35b610390600480360381019061038b9190611712565b610a9c565b60405161039d91906115e9565b60405180910390f35b6103c060048036038101906103bb91906116bb565b610b23565b005b6060600380546103d190611781565b80601f01602080910402602001604051908101604052809291908181526020018280546103fd90611781565b801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b5050505050905090565b6000610468610461610c1a565b8484610c22565b6001905092915050565b6000600254905090565b6000610489848484610deb565b600190509392505050565b60006012905090565b600061053f6104aa610c1a565b8484600160006104b8610c1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053a91906117e1565b610c22565b6001905092915050565b6105533382610ef4565b50565b61055e610c1a565b73ffffffffffffffffffffffffffffffffffffffff1661057c61078a565b73ffffffffffffffffffffffffffffffffffffffff16146105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c990611861565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561065f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610656906118cd565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070a610c1a565b73ffffffffffffffffffffffffffffffffffffffff1661072861078a565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611861565b60405180910390fd5b61078860006110ca565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c390611781565b80601f01602080910402602001604051908101604052809291908181526020018280546107ef90611781565b801561083c5780601f106108115761010080835404028352916020019161083c565b820191906000526020600020905b81548152906001019060200180831161081f57829003601f168201915b5050505050905090565b60008060016000610855610c1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109099061195f565b60405180910390fd5b61092661091d610c1a565b85858403610c22565b600191505092915050565b600061093e338484610deb565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b610970610c1a565b73ffffffffffffffffffffffffffffffffffffffff1661098e61078a565b73ffffffffffffffffffffffffffffffffffffffff16146109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90611861565b60405180910390fd5b600560149054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906119cb565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f7d7f00509dd73ac4449f698ae75ccc797895eff5fa9d446d3df387598a26e7356001604051610a7f91906115bf565b60405180910390a1565b600560149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b2b610c1a565b73ffffffffffffffffffffffffffffffffffffffff16610b4961078a565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690611861565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590611a5d565b60405180910390fd5b610c17816110ca565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890611aef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790611b81565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dde91906115e9565b60405180910390a3505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610e8f5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610ee457600560149054906101000a900460ff16610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611bed565b60405180910390fd5b5b610eef838383611190565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90611c7f565b60405180910390fd5b610f6f8260008361140f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90611d11565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461104c9190611d31565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b191906115e9565b60405180910390a36110c583600084611414565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690611dd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590611e69565b60405180910390fd5b61127983838361140f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690611efb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139291906117e1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f691906115e9565b60405180910390a3611409848484611414565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611453578082015181840152602081019050611438565b60008484015250505050565b6000601f19601f8301169050919050565b600061147b82611419565b6114858185611424565b9350611495818560208601611435565b61149e8161145f565b840191505092915050565b600060208201905081810360008301526114c38184611470565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114fb826114d0565b9050919050565b61150b816114f0565b811461151657600080fd5b50565b60008135905061152881611502565b92915050565b6000819050919050565b6115418161152e565b811461154c57600080fd5b50565b60008135905061155e81611538565b92915050565b6000806040838503121561157b5761157a6114cb565b5b600061158985828601611519565b925050602061159a8582860161154f565b9150509250929050565b60008115159050919050565b6115b9816115a4565b82525050565b60006020820190506115d460008301846115b0565b92915050565b6115e38161152e565b82525050565b60006020820190506115fe60008301846115da565b92915050565b60008060006060848603121561161d5761161c6114cb565b5b600061162b86828701611519565b935050602061163c86828701611519565b925050604061164d8682870161154f565b9150509250925092565b600060ff82169050919050565b61166d81611657565b82525050565b60006020820190506116886000830184611664565b92915050565b6000602082840312156116a4576116a36114cb565b5b60006116b28482850161154f565b91505092915050565b6000602082840312156116d1576116d06114cb565b5b60006116df84828501611519565b91505092915050565b6116f1816114f0565b82525050565b600060208201905061170c60008301846116e8565b92915050565b60008060408385031215611729576117286114cb565b5b600061173785828601611519565b925050602061174885828601611519565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179957607f821691505b6020821081036117ac576117ab611752565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ec8261152e565b91506117f78361152e565b925082820190508082111561180f5761180e6117b2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061184b602083611424565b915061185682611815565b602082019050919050565b6000602082019050818103600083015261187a8161183e565b9050919050565b7f4572726f723a20416c726561647920657874656d707465642e00000000000000600082015250565b60006118b7601983611424565b91506118c282611881565b602082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611949602583611424565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b7f4572726f723a20547261646520697320616c726561647920656e61626c65642e600082015250565b60006119b5602083611424565b91506119c08261197f565b602082019050919050565b600060208201905081810360008301526119e4816119a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a47602683611424565b9150611a52826119eb565b604082019050919050565b60006020820190508181036000830152611a7681611a3a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ad9602483611424565b9150611ae482611a7d565b604082019050919050565b60006020820190508181036000830152611b0881611acc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b6b602283611424565b9150611b7682611b0f565b604082019050919050565b60006020820190508181036000830152611b9a81611b5e565b9050919050565b7f4572726f723a2054726164696e67206973206e6f7420656e61626c65642e0000600082015250565b6000611bd7601e83611424565b9150611be282611ba1565b602082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c69602183611424565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cfb602283611424565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b6000611d3c8261152e565b9150611d478361152e565b9250828203905081811115611d5f57611d5e6117b2565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611dc1602583611424565b9150611dcc82611d65565b604082019050919050565b60006020820190508181036000830152611df081611db4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e53602383611424565b9150611e5e82611df7565b604082019050919050565b60006020820190508181036000830152611e8281611e46565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ee5602683611424565b9150611ef082611e89565b604082019050919050565b60006020820190508181036000830152611f1481611ed8565b905091905056fea26469706673582212200f7c4d7750df68405910c55db2544cd170da5dfd2667e3b9488b3d0da444854964736f6c63430008130033

Deployed Bytecode Sourcemap

17713:1751:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7345:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19268:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8465:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19045:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8307:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11283:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18007:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18328:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8636:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1476:94;;;:::i;:::-;;1253:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7564:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12083:482;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18840:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17784:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18134:186;;;:::i;:::-;;17753:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9305:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1578:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7345:100;7399:13;7432:5;7425:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7345:100;:::o;19268:193::-;19370:4;19392:39;19401:12;:10;:12::i;:::-;19415:7;19424:6;19392:8;:39::i;:::-;19449:4;19442:11;;19268:193;;;;:::o;8465:108::-;8526:7;8553:12;;8546:19;;8465:108;:::o;19045:215::-;19177:4;19194:36;19204:6;19212:9;19223:6;19194:9;:36::i;:::-;19248:4;19241:11;;19045:215;;;;;:::o;8307:93::-;8365:5;8390:2;8383:9;;8307:93;:::o;11283:297::-;11398:4;11420:130;11443:12;:10;:12::i;:::-;11470:7;11529:10;11492:11;:25;11504:12;:10;:12::i;:::-;11492:25;;;;;;;;;;;;;;;:34;11518:7;11492:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11420:8;:130::i;:::-;11568:4;11561:11;;11283:297;;;;:::o;18007:81::-;18056:24;18062:10;18074:5;18056;:24::i;:::-;18007:81;:::o;18328:172::-;1399:12;:10;:12::i;:::-;1388:23;;:7;:5;:7::i;:::-;:23;;;1380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18408:8:::1;:17;18417:7;18408:17;;;;;;;;;;;;;;;;;;;;;;;;;18407:18;18399:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18488:4;18468:8;:17;18477:7;18468:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;18328:172:::0;:::o;8636:177::-;8755:7;8787:9;:18;8797:7;8787:18;;;;;;;;;;;;;;;;8780:25;;8636:177;;;:::o;1476:94::-;1399:12;:10;:12::i;:::-;1388:23;;:7;:5;:7::i;:::-;:23;;;1380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1541:21:::1;1559:1;1541:9;:21::i;:::-;1476:94::o:0;1253:87::-;1299:7;1326:6;;;;;;;;;;;1319:13;;1253:87;:::o;7564:104::-;7620:13;7653:7;7646:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7564:104;:::o;12083:482::-;12203:4;12225:24;12252:11;:25;12264:12;:10;:12::i;:::-;12252:25;;;;;;;;;;;;;;;:34;12278:7;12252:34;;;;;;;;;;;;;;;;12225:61;;12339:15;12319:16;:35;;12297:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;12455:67;12464:12;:10;:12::i;:::-;12478:7;12506:15;12487:16;:34;12455:8;:67::i;:::-;12553:4;12546:11;;;12083:482;;;;:::o;18840:197::-;18945:4;18967:40;18977:10;18989:9;19000:6;18967:9;:40::i;:::-;19025:4;19018:11;;18840:197;;;;:::o;17784:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;18134:186::-;1399:12;:10;:12::i;:::-;1388:23;;:7;:5;:7::i;:::-;:23;;;1380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18195:12:::1;;;;;;;;;;;18194:13;18186:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;18272:4;18257:12;;:19;;;;;;;;;;;;;;;;;;18294:18;18307:4;18294:18;;;;;;:::i;:::-;;;;;;;;18134:186::o:0;17753:24::-;;;;;;;;;;;;;:::o;9305:201::-;9439:7;9471:11;:18;9483:5;9471:18;;;;;;;;;;;;;;;:27;9490:7;9471:27;;;;;;;;;;;;;;;;9464:34;;9305:201;;;;:::o;1578:229::-;1399:12;:10;:12::i;:::-;1388:23;;:7;:5;:7::i;:::-;:23;;;1380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1701:1:::1;1681:22;;:8;:22;;::::0;1659:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1780:19;1790:8;1780:9;:19::i;:::-;1578:229:::0;:::o;783:98::-;836:7;863:10;856:17;;783:98;:::o;15873:380::-;16026:1;16009:19;;:5;:19;;;16001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16107:1;16088:21;;:7;:21;;;16080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16191:6;16161:11;:18;16173:5;16161:18;;;;;;;;;;;;;;;:27;16180:7;16161:27;;;;;;;;;;;;;;;:36;;;;16229:7;16213:32;;16222:5;16213:32;;;16238:6;16213:32;;;;;;:::i;:::-;;;;;;;;15873:380;;;:::o;18508:324::-;18646:8;:16;18655:6;18646:16;;;;;;;;;;;;;;;;;;;;;;;;;18645:17;:41;;;;;18667:8;:19;18676:9;18667:19;;;;;;;;;;;;;;;;;;;;;;;;;18666:20;18645:41;18641:129;;;18711:12;;;;;;;;;;;18703:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;18641:129;18782:42;18798:6;18806:9;18817:6;18782:15;:42::i;:::-;18508:324;;;:::o;14844:591::-;14947:1;14928:21;;:7;:21;;;14920:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15000:49;15021:7;15038:1;15042:6;15000:20;:49::i;:::-;15062:22;15087:9;:18;15097:7;15087:18;;;;;;;;;;;;;;;;15062:43;;15142:6;15124:14;:24;;15116:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15261:6;15244:14;:23;15223:9;:18;15233:7;15223:18;;;;;;;;;;;;;;;:44;;;;15305:6;15289:12;;:22;;;;;;;:::i;:::-;;;;;;;;15355:1;15329:37;;15338:7;15329:37;;;15359:6;15329:37;;;;;;:::i;:::-;;;;;;;;15379:48;15399:7;15416:1;15420:6;15379:19;:48::i;:::-;14909:526;14844:591;;:::o;1815:173::-;1871:16;1890:6;;;;;;;;;;;1871:25;;1916:8;1907:6;;:17;;;;;;;;;;;;;;;;;;1971:8;1940:40;;1961:8;1940:40;;;;;;;;;;;;1860:128;1815:173;:::o;13055:770::-;13213:1;13195:20;;:6;:20;;;13187:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13297:1;13276:23;;:9;:23;;;13268:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13352:47;13373:6;13381:9;13392:6;13352:20;:47::i;:::-;13412:21;13436:9;:17;13446:6;13436:17;;;;;;;;;;;;;;;;13412:41;;13503:6;13486:13;:23;;13464:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;13647:6;13631:13;:22;13611:9;:17;13621:6;13611:17;;;;;;;;;;;;;;;:42;;;;13699:6;13675:9;:20;13685:9;13675:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13740:9;13723:35;;13732:6;13723:35;;;13751:6;13723:35;;;;;;:::i;:::-;;;;;;;;13771:46;13791:6;13799:9;13810:6;13771:19;:46::i;:::-;13176:649;13055:770;;;:::o;16853:125::-;;;;:::o;17582: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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::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:175::-;8375:27;8371:1;8363:6;8359:14;8352:51;8235:175;:::o;8416:366::-;8558:3;8579:67;8643:2;8638:3;8579:67;:::i;:::-;8572:74;;8655:93;8744:3;8655:93;:::i;:::-;8773:2;8768:3;8764:12;8757:19;;8416:366;;;:::o;8788:419::-;8954:4;8992:2;8981:9;8977:18;8969:26;;9041:9;9035:4;9031:20;9027:1;9016:9;9012:17;9005:47;9069:131;9195:4;9069:131;:::i;:::-;9061:139;;8788:419;;;:::o;9213:224::-;9353:34;9349:1;9341:6;9337:14;9330:58;9422:7;9417:2;9409:6;9405:15;9398:32;9213:224;:::o;9443:366::-;9585:3;9606:67;9670:2;9665:3;9606:67;:::i;:::-;9599:74;;9682:93;9771:3;9682:93;:::i;:::-;9800:2;9795:3;9791:12;9784:19;;9443:366;;;:::o;9815:419::-;9981:4;10019:2;10008:9;10004:18;9996:26;;10068:9;10062:4;10058:20;10054:1;10043:9;10039:17;10032:47;10096:131;10222:4;10096:131;:::i;:::-;10088:139;;9815:419;;;:::o;10240:182::-;10380:34;10376:1;10368:6;10364:14;10357:58;10240:182;:::o;10428:366::-;10570:3;10591:67;10655:2;10650:3;10591:67;:::i;:::-;10584:74;;10667:93;10756:3;10667:93;:::i;:::-;10785:2;10780:3;10776:12;10769:19;;10428:366;;;:::o;10800:419::-;10966:4;11004:2;10993:9;10989:18;10981:26;;11053:9;11047:4;11043:20;11039:1;11028:9;11024:17;11017:47;11081:131;11207:4;11081:131;:::i;:::-;11073:139;;10800:419;;;:::o;11225:225::-;11365:34;11361:1;11353:6;11349:14;11342:58;11434:8;11429:2;11421:6;11417:15;11410:33;11225:225;:::o;11456:366::-;11598:3;11619:67;11683:2;11678:3;11619:67;:::i;:::-;11612:74;;11695:93;11784:3;11695:93;:::i;:::-;11813:2;11808:3;11804:12;11797:19;;11456:366;;;:::o;11828:419::-;11994:4;12032:2;12021:9;12017:18;12009:26;;12081:9;12075:4;12071:20;12067:1;12056:9;12052:17;12045:47;12109:131;12235:4;12109:131;:::i;:::-;12101:139;;11828:419;;;:::o;12253:223::-;12393:34;12389:1;12381:6;12377:14;12370:58;12462:6;12457:2;12449:6;12445:15;12438:31;12253:223;:::o;12482:366::-;12624:3;12645:67;12709:2;12704:3;12645:67;:::i;:::-;12638:74;;12721:93;12810:3;12721:93;:::i;:::-;12839:2;12834:3;12830:12;12823:19;;12482:366;;;:::o;12854:419::-;13020:4;13058:2;13047:9;13043:18;13035:26;;13107:9;13101:4;13097:20;13093:1;13082:9;13078:17;13071:47;13135:131;13261:4;13135:131;:::i;:::-;13127:139;;12854:419;;;:::o;13279:221::-;13419:34;13415:1;13407:6;13403:14;13396:58;13488:4;13483:2;13475:6;13471:15;13464:29;13279:221;:::o;13506:366::-;13648:3;13669:67;13733:2;13728:3;13669:67;:::i;:::-;13662:74;;13745:93;13834:3;13745:93;:::i;:::-;13863:2;13858:3;13854:12;13847:19;;13506:366;;;:::o;13878:419::-;14044:4;14082:2;14071:9;14067:18;14059:26;;14131:9;14125:4;14121:20;14117:1;14106:9;14102:17;14095:47;14159:131;14285:4;14159:131;:::i;:::-;14151:139;;13878:419;;;:::o;14303:180::-;14443:32;14439:1;14431:6;14427:14;14420:56;14303:180;:::o;14489:366::-;14631:3;14652:67;14716:2;14711:3;14652:67;:::i;:::-;14645:74;;14728:93;14817:3;14728:93;:::i;:::-;14846:2;14841:3;14837:12;14830:19;;14489:366;;;:::o;14861:419::-;15027:4;15065:2;15054:9;15050:18;15042:26;;15114:9;15108:4;15104:20;15100:1;15089:9;15085:17;15078:47;15142:131;15268:4;15142:131;:::i;:::-;15134:139;;14861:419;;;:::o;15286:220::-;15426:34;15422:1;15414:6;15410:14;15403:58;15495:3;15490:2;15482:6;15478:15;15471:28;15286:220;:::o;15512:366::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:419::-;16050:4;16088:2;16077:9;16073:18;16065:26;;16137:9;16131:4;16127:20;16123:1;16112:9;16108:17;16101:47;16165:131;16291:4;16165:131;:::i;:::-;16157:139;;15884:419;;;:::o;16309:221::-;16449:34;16445:1;16437:6;16433:14;16426:58;16518:4;16513:2;16505:6;16501:15;16494:29;16309:221;:::o;16536:366::-;16678:3;16699:67;16763:2;16758:3;16699:67;:::i;:::-;16692:74;;16775:93;16864:3;16775:93;:::i;:::-;16893:2;16888:3;16884:12;16877:19;;16536:366;;;:::o;16908:419::-;17074:4;17112:2;17101:9;17097:18;17089:26;;17161:9;17155:4;17151:20;17147:1;17136:9;17132:17;17125:47;17189:131;17315:4;17189:131;:::i;:::-;17181:139;;16908:419;;;:::o;17333:194::-;17373:4;17393:20;17411:1;17393:20;:::i;:::-;17388:25;;17427:20;17445:1;17427:20;:::i;:::-;17422:25;;17471:1;17468;17464:9;17456:17;;17495:1;17489:4;17486:11;17483:37;;;17500:18;;:::i;:::-;17483:37;17333:194;;;;:::o;17533:224::-;17673:34;17669:1;17661:6;17657:14;17650:58;17742:7;17737:2;17729:6;17725:15;17718:32;17533:224;:::o;17763:366::-;17905:3;17926:67;17990:2;17985:3;17926:67;:::i;:::-;17919:74;;18002:93;18091:3;18002:93;:::i;:::-;18120:2;18115:3;18111:12;18104:19;;17763:366;;;:::o;18135:419::-;18301:4;18339:2;18328:9;18324:18;18316:26;;18388:9;18382:4;18378:20;18374:1;18363:9;18359:17;18352:47;18416:131;18542:4;18416:131;:::i;:::-;18408:139;;18135:419;;;:::o;18560:222::-;18700:34;18696:1;18688:6;18684:14;18677:58;18769:5;18764:2;18756:6;18752:15;18745:30;18560:222;:::o;18788:366::-;18930:3;18951:67;19015:2;19010:3;18951:67;:::i;:::-;18944:74;;19027:93;19116:3;19027:93;:::i;:::-;19145:2;19140:3;19136:12;19129:19;;18788:366;;;:::o;19160:419::-;19326:4;19364:2;19353:9;19349:18;19341:26;;19413:9;19407:4;19403:20;19399:1;19388:9;19384:17;19377:47;19441:131;19567:4;19441:131;:::i;:::-;19433:139;;19160:419;;;:::o;19585:225::-;19725:34;19721:1;19713:6;19709:14;19702:58;19794:8;19789:2;19781:6;19777:15;19770:33;19585:225;:::o;19816:366::-;19958:3;19979:67;20043:2;20038:3;19979:67;:::i;:::-;19972:74;;20055:93;20144:3;20055:93;:::i;:::-;20173:2;20168:3;20164:12;20157:19;;19816:366;;;:::o;20188:419::-;20354:4;20392:2;20381:9;20377:18;20369:26;;20441:9;20435:4;20431:20;20427:1;20416:9;20412:17;20405:47;20469:131;20595:4;20469:131;:::i;:::-;20461:139;;20188:419;;;:::o

Swarm Source

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