ETH Price: $3,846.24 (-2.03%)

Token

ERC-20: MINIMUTANTSYETICOIN (MMYETI)
 

Overview

Max Total Supply

1,000,000,000 MMYETI

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,080,059.746004071400510991 MMYETI

Value
$0.00
0x6c94797d8a6baf711f3eee2f7c9869de4102bb91
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:
MiniMutantsYetiCoin

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-07
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: coin.sol


pragma solidity ^0.8.9;





contract MiniMutantsYetiCoin is ERC20, ERC20Burnable, Pausable, Ownable {
	constructor() ERC20("MINIMUTANTSYETICOIN", "MMYETI") {
		_mint(msg.sender, 1000000000 * 10 ** decimals());
	}

	function pause() public onlyOwner {
		_pause();
	}

	function unpause() public onlyOwner {
		_unpause();
	}

	function _beforeTokenTransfer(address from, address to, uint256 amount)
		internal
		whenNotPaused
		override
	{
		super._beforeTokenTransfer(from, to, amount);
	}

// Airdrop function to distribute token at the start of the project
function airdropToWallets(address[] memory wallets, uint256[] memory amountsInTokens) external onlyOwner {
	require(wallets.length == amountsInTokens.length, "error with array format");
	require(wallets.length < 200, "may reach gas limit");
	for(uint256 i = 0; i < wallets.length; i++){
		address wallet = wallets[i];
		uint256 amount = amountsInTokens[i];
		super._transfer(msg.sender, wallet, amount);
	}
}

}

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":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amountsInTokens","type":"uint256[]"}],"name":"airdropToWallets","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280601381526020017f4d494e494d5554414e545359455449434f494e000000000000000000000000008152506040518060400160405280600681526020017f4d4d59455449000000000000000000000000000000000000000000000000000081525081600390816200008e91906200065b565b508060049081620000a091906200065b565b5050505f60055f6101000a81548160ff021916908315150217905550620000dc620000d06200012260201b60201c565b6200012960201b60201c565b6200011c33620000f1620001ee60201b60201c565b600a620000ff9190620008c8565b633b9aca0062000110919062000918565b620001f660201b60201c565b62000ab4565b5f33905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000267576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025e90620009c0565b60405180910390fd5b6200027a5f83836200035b60201b60201c565b8060025f8282546200028d9190620009e0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c919062000a2b565b60405180910390a3620003575f83836200038360201b60201c565b5050565b6200036b6200038860201b60201c565b6200037e838383620003dd60201b60201c565b505050565b505050565b62000398620003e260201b60201c565b15620003db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d29062000a94565b60405180910390fd5b565b505050565b5f60055f9054906101000a900460ff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200047357607f821691505b6020821081036200048957620004886200042e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b0565b620004f98683620004b0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005436200053d620005378462000511565b6200051a565b62000511565b9050919050565b5f819050919050565b6200055e8362000523565b620005766200056d826200054a565b848454620004bc565b825550505050565b5f90565b6200058c6200057e565b6200059981848462000553565b505050565b5b81811015620005c057620005b45f8262000582565b6001810190506200059f565b5050565b601f8211156200060f57620005d9816200048f565b620005e484620004a1565b81016020851015620005f4578190505b6200060c6200060385620004a1565b8301826200059e565b50505b505050565b5f82821c905092915050565b5f620006315f198460080262000614565b1980831691505092915050565b5f6200064b838362000620565b9150826002028217905092915050565b6200066682620003f7565b67ffffffffffffffff81111562000682576200068162000401565b5b6200068e82546200045b565b6200069b828285620005c4565b5f60209050601f831160018114620006d1575f8415620006bc578287015190505b620006c885826200063e565b86555062000737565b601f198416620006e1866200048f565b5f5b828110156200070a57848901518255600182019150602085019450602081019050620006e3565b868310156200072a578489015162000726601f89168262000620565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620007c957808604811115620007a157620007a06200073f565b5b6001851615620007b15780820291505b8081029050620007c1856200076c565b945062000781565b94509492505050565b5f82620007e35760019050620008b5565b81620007f2575f9050620008b5565b81600181146200080b576002811462000816576200084c565b6001915050620008b5565b60ff8411156200082b576200082a6200073f565b5b8360020a9150848211156200084557620008446200073f565b5b50620008b5565b5060208310610133831016604e8410600b8410161715620008865782820a90508381111562000880576200087f6200073f565b5b620008b5565b62000895848484600162000778565b92509050818404811115620008af57620008ae6200073f565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620008d48262000511565b9150620008e183620008bc565b9250620009107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007d2565b905092915050565b5f620009248262000511565b9150620009318362000511565b9250828202620009418162000511565b915082820484148315176200095b576200095a6200073f565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620009a8601f8362000962565b9150620009b58262000972565b602082019050919050565b5f6020820190508181035f830152620009d9816200099a565b9050919050565b5f620009ec8262000511565b9150620009f98362000511565b925082820190508082111562000a145762000a136200073f565b5b92915050565b62000a258162000511565b82525050565b5f60208201905062000a405f83018462000a1a565b92915050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f62000a7c60108362000962565b915062000a898262000a46565b602082019050919050565b5f6020820190508181035f83015262000aad8162000a6e565b9050919050565b61205a8062000ac25f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f6578063a457c2d714610314578063a9059cbb14610344578063dd62ed3e14610374578063f2fde38b146103a45761012a565b806370a0823114610278578063715018a6146102a857806379cc6790146102b25780638456cb59146102ce5780638da5cb5b146102d85761012a565b8063313ce567116100f2578063313ce567146101e657806339509351146102045780633f4ba83a1461023457806342966c681461023e5780635c975abb1461025a5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c5780632307b4411461019a57806323b872dd146101b6575b5f80fd5b6101366103c0565b60405161014391906112bf565b60405180910390f35b6101666004803603810190610161919061137d565b610450565b60405161017391906113d5565b60405180910390f35b610184610472565b60405161019191906113fd565b60405180910390f35b6101b460048036038101906101af9190611616565b61047b565b005b6101d060048036038101906101cb919061168c565b610571565b6040516101dd91906113d5565b60405180910390f35b6101ee61059f565b6040516101fb91906116f7565b60405180910390f35b61021e6004803603810190610219919061137d565b6105a7565b60405161022b91906113d5565b60405180910390f35b61023c6105dd565b005b61025860048036038101906102539190611710565b6105ef565b005b610262610603565b60405161026f91906113d5565b60405180910390f35b610292600480360381019061028d919061173b565b610618565b60405161029f91906113fd565b60405180910390f35b6102b061065d565b005b6102cc60048036038101906102c7919061137d565b610670565b005b6102d6610690565b005b6102e06106a2565b6040516102ed9190611775565b60405180910390f35b6102fe6106cb565b60405161030b91906112bf565b60405180910390f35b61032e6004803603810190610329919061137d565b61075b565b60405161033b91906113d5565b60405180910390f35b61035e6004803603810190610359919061137d565b6107d0565b60405161036b91906113d5565b60405180910390f35b61038e6004803603810190610389919061178e565b6107f2565b60405161039b91906113fd565b60405180910390f35b6103be60048036038101906103b9919061173b565b610874565b005b6060600380546103cf906117f9565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb906117f9565b80156104465780601f1061041d57610100808354040283529160200191610446565b820191905f5260205f20905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b5f8061045a6108f6565b90506104678185856108fd565b600191505092915050565b5f600254905090565b610483610ac0565b80518251146104c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104be90611873565b60405180910390fd5b60c882511061050b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610502906118db565b60405180910390fd5b5f5b825181101561056c575f83828151811061052a576105296118f9565b5b602002602001015190505f838381518110610548576105476118f9565b5b6020026020010151905061055d338383610b3e565b5050808060010191505061050d565b505050565b5f8061057b6108f6565b9050610588858285610daa565b610593858585610b3e565b60019150509392505050565b5f6012905090565b5f806105b16108f6565b90506105d28185856105c385896107f2565b6105cd9190611953565b6108fd565b600191505092915050565b6105e5610ac0565b6105ed610e35565b565b6106006105fa6108f6565b82610e96565b50565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610665610ac0565b61066e5f611059565b565b6106828261067c6108f6565b83610daa565b61068c8282610e96565b5050565b610698610ac0565b6106a061111e565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106da906117f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610706906117f9565b80156107515780601f1061072857610100808354040283529160200191610751565b820191905f5260205f20905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b5f806107656108f6565b90505f61077282866107f2565b9050838110156107b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ae906119f6565b60405180910390fd5b6107c482868684036108fd565b60019250505092915050565b5f806107da6108f6565b90506107e7818585610b3e565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61087c610ac0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190611a84565b60405180910390fd5b6108f381611059565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290611b12565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090611ba0565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab391906113fd565b60405180910390a3505050565b610ac86108f6565b73ffffffffffffffffffffffffffffffffffffffff16610ae66106a2565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390611c08565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390611c96565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190611d24565b60405180910390fd5b610c25838383611180565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611db2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9191906113fd565b60405180910390a3610da4848484611198565b50505050565b5f610db584846107f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e2f5781811015610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611e1a565b60405180910390fd5b610e2e84848484036108fd565b5b50505050565b610e3d61119d565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610e7f6108f6565b604051610e8c9190611775565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611ea8565b60405180910390fd5b610f0f825f83611180565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611f36565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104191906113fd565b60405180910390a3611054835f84611198565b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111266111e6565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111696108f6565b6040516111769190611775565b60405180910390a1565b6111886111e6565b611193838383611230565b505050565b505050565b6111a5610603565b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90611f9e565b60405180910390fd5b565b6111ee610603565b1561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590612006565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561126c578082015181840152602081019050611251565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61129182611235565b61129b818561123f565b93506112ab81856020860161124f565b6112b481611277565b840191505092915050565b5f6020820190508181035f8301526112d78184611287565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611319826112f0565b9050919050565b6113298161130f565b8114611333575f80fd5b50565b5f8135905061134481611320565b92915050565b5f819050919050565b61135c8161134a565b8114611366575f80fd5b50565b5f8135905061137781611353565b92915050565b5f8060408385031215611393576113926112e8565b5b5f6113a085828601611336565b92505060206113b185828601611369565b9150509250929050565b5f8115159050919050565b6113cf816113bb565b82525050565b5f6020820190506113e85f8301846113c6565b92915050565b6113f78161134a565b82525050565b5f6020820190506114105f8301846113ee565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61145082611277565b810181811067ffffffffffffffff8211171561146f5761146e61141a565b5b80604052505050565b5f6114816112df565b905061148d8282611447565b919050565b5f67ffffffffffffffff8211156114ac576114ab61141a565b5b602082029050602081019050919050565b5f80fd5b5f6114d36114ce84611492565b611478565b905080838252602082019050602084028301858111156114f6576114f56114bd565b5b835b8181101561151f578061150b8882611336565b8452602084019350506020810190506114f8565b5050509392505050565b5f82601f83011261153d5761153c611416565b5b813561154d8482602086016114c1565b91505092915050565b5f67ffffffffffffffff8211156115705761156f61141a565b5b602082029050602081019050919050565b5f61159361158e84611556565b611478565b905080838252602082019050602084028301858111156115b6576115b56114bd565b5b835b818110156115df57806115cb8882611369565b8452602084019350506020810190506115b8565b5050509392505050565b5f82601f8301126115fd576115fc611416565b5b813561160d848260208601611581565b91505092915050565b5f806040838503121561162c5761162b6112e8565b5b5f83013567ffffffffffffffff811115611649576116486112ec565b5b61165585828601611529565b925050602083013567ffffffffffffffff811115611676576116756112ec565b5b611682858286016115e9565b9150509250929050565b5f805f606084860312156116a3576116a26112e8565b5b5f6116b086828701611336565b93505060206116c186828701611336565b92505060406116d286828701611369565b9150509250925092565b5f60ff82169050919050565b6116f1816116dc565b82525050565b5f60208201905061170a5f8301846116e8565b92915050565b5f60208284031215611725576117246112e8565b5b5f61173284828501611369565b91505092915050565b5f602082840312156117505761174f6112e8565b5b5f61175d84828501611336565b91505092915050565b61176f8161130f565b82525050565b5f6020820190506117885f830184611766565b92915050565b5f80604083850312156117a4576117a36112e8565b5b5f6117b185828601611336565b92505060206117c285828601611336565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061181057607f821691505b602082108103611823576118226117cc565b5b50919050565b7f6572726f72207769746820617272617920666f726d61740000000000000000005f82015250565b5f61185d60178361123f565b915061186882611829565b602082019050919050565b5f6020820190508181035f83015261188a81611851565b9050919050565b7f6d617920726561636820676173206c696d6974000000000000000000000000005f82015250565b5f6118c560138361123f565b91506118d082611891565b602082019050919050565b5f6020820190508181035f8301526118f2816118b9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61195d8261134a565b91506119688361134a565b92508282019050808211156119805761197f611926565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119e060258361123f565b91506119eb82611986565b604082019050919050565b5f6020820190508181035f830152611a0d816119d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a6e60268361123f565b9150611a7982611a14565b604082019050919050565b5f6020820190508181035f830152611a9b81611a62565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611afc60248361123f565b9150611b0782611aa2565b604082019050919050565b5f6020820190508181035f830152611b2981611af0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b8a60228361123f565b9150611b9582611b30565b604082019050919050565b5f6020820190508181035f830152611bb781611b7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bf260208361123f565b9150611bfd82611bbe565b602082019050919050565b5f6020820190508181035f830152611c1f81611be6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c8060258361123f565b9150611c8b82611c26565b604082019050919050565b5f6020820190508181035f830152611cad81611c74565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611d0e60238361123f565b9150611d1982611cb4565b604082019050919050565b5f6020820190508181035f830152611d3b81611d02565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d9c60268361123f565b9150611da782611d42565b604082019050919050565b5f6020820190508181035f830152611dc981611d90565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e04601d8361123f565b9150611e0f82611dd0565b602082019050919050565b5f6020820190508181035f830152611e3181611df8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e9260218361123f565b9150611e9d82611e38565b604082019050919050565b5f6020820190508181035f830152611ebf81611e86565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f2060228361123f565b9150611f2b82611ec6565b604082019050919050565b5f6020820190508181035f830152611f4d81611f14565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611f8860148361123f565b9150611f9382611f54565b602082019050919050565b5f6020820190508181035f830152611fb581611f7c565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611ff060108361123f565b9150611ffb82611fbc565b602082019050919050565b5f6020820190508181035f83015261201d81611fe4565b905091905056fea26469706673582212206cbbda429fde62e82bfb5fb00ee88d4292e6917dd6d9c180f3787ec89c88022f64736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f6578063a457c2d714610314578063a9059cbb14610344578063dd62ed3e14610374578063f2fde38b146103a45761012a565b806370a0823114610278578063715018a6146102a857806379cc6790146102b25780638456cb59146102ce5780638da5cb5b146102d85761012a565b8063313ce567116100f2578063313ce567146101e657806339509351146102045780633f4ba83a1461023457806342966c681461023e5780635c975abb1461025a5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c5780632307b4411461019a57806323b872dd146101b6575b5f80fd5b6101366103c0565b60405161014391906112bf565b60405180910390f35b6101666004803603810190610161919061137d565b610450565b60405161017391906113d5565b60405180910390f35b610184610472565b60405161019191906113fd565b60405180910390f35b6101b460048036038101906101af9190611616565b61047b565b005b6101d060048036038101906101cb919061168c565b610571565b6040516101dd91906113d5565b60405180910390f35b6101ee61059f565b6040516101fb91906116f7565b60405180910390f35b61021e6004803603810190610219919061137d565b6105a7565b60405161022b91906113d5565b60405180910390f35b61023c6105dd565b005b61025860048036038101906102539190611710565b6105ef565b005b610262610603565b60405161026f91906113d5565b60405180910390f35b610292600480360381019061028d919061173b565b610618565b60405161029f91906113fd565b60405180910390f35b6102b061065d565b005b6102cc60048036038101906102c7919061137d565b610670565b005b6102d6610690565b005b6102e06106a2565b6040516102ed9190611775565b60405180910390f35b6102fe6106cb565b60405161030b91906112bf565b60405180910390f35b61032e6004803603810190610329919061137d565b61075b565b60405161033b91906113d5565b60405180910390f35b61035e6004803603810190610359919061137d565b6107d0565b60405161036b91906113d5565b60405180910390f35b61038e6004803603810190610389919061178e565b6107f2565b60405161039b91906113fd565b60405180910390f35b6103be60048036038101906103b9919061173b565b610874565b005b6060600380546103cf906117f9565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb906117f9565b80156104465780601f1061041d57610100808354040283529160200191610446565b820191905f5260205f20905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b5f8061045a6108f6565b90506104678185856108fd565b600191505092915050565b5f600254905090565b610483610ac0565b80518251146104c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104be90611873565b60405180910390fd5b60c882511061050b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610502906118db565b60405180910390fd5b5f5b825181101561056c575f83828151811061052a576105296118f9565b5b602002602001015190505f838381518110610548576105476118f9565b5b6020026020010151905061055d338383610b3e565b5050808060010191505061050d565b505050565b5f8061057b6108f6565b9050610588858285610daa565b610593858585610b3e565b60019150509392505050565b5f6012905090565b5f806105b16108f6565b90506105d28185856105c385896107f2565b6105cd9190611953565b6108fd565b600191505092915050565b6105e5610ac0565b6105ed610e35565b565b6106006105fa6108f6565b82610e96565b50565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610665610ac0565b61066e5f611059565b565b6106828261067c6108f6565b83610daa565b61068c8282610e96565b5050565b610698610ac0565b6106a061111e565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106da906117f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610706906117f9565b80156107515780601f1061072857610100808354040283529160200191610751565b820191905f5260205f20905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b5f806107656108f6565b90505f61077282866107f2565b9050838110156107b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ae906119f6565b60405180910390fd5b6107c482868684036108fd565b60019250505092915050565b5f806107da6108f6565b90506107e7818585610b3e565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61087c610ac0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190611a84565b60405180910390fd5b6108f381611059565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290611b12565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090611ba0565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab391906113fd565b60405180910390a3505050565b610ac86108f6565b73ffffffffffffffffffffffffffffffffffffffff16610ae66106a2565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390611c08565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390611c96565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190611d24565b60405180910390fd5b610c25838383611180565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611db2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9191906113fd565b60405180910390a3610da4848484611198565b50505050565b5f610db584846107f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e2f5781811015610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611e1a565b60405180910390fd5b610e2e84848484036108fd565b5b50505050565b610e3d61119d565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610e7f6108f6565b604051610e8c9190611775565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611ea8565b60405180910390fd5b610f0f825f83611180565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611f36565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104191906113fd565b60405180910390a3611054835f84611198565b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111266111e6565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111696108f6565b6040516111769190611775565b60405180910390a1565b6111886111e6565b611193838383611230565b505050565b505050565b6111a5610603565b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90611f9e565b60405180910390fd5b565b6111ee610603565b1561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590612006565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561126c578082015181840152602081019050611251565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61129182611235565b61129b818561123f565b93506112ab81856020860161124f565b6112b481611277565b840191505092915050565b5f6020820190508181035f8301526112d78184611287565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611319826112f0565b9050919050565b6113298161130f565b8114611333575f80fd5b50565b5f8135905061134481611320565b92915050565b5f819050919050565b61135c8161134a565b8114611366575f80fd5b50565b5f8135905061137781611353565b92915050565b5f8060408385031215611393576113926112e8565b5b5f6113a085828601611336565b92505060206113b185828601611369565b9150509250929050565b5f8115159050919050565b6113cf816113bb565b82525050565b5f6020820190506113e85f8301846113c6565b92915050565b6113f78161134a565b82525050565b5f6020820190506114105f8301846113ee565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61145082611277565b810181811067ffffffffffffffff8211171561146f5761146e61141a565b5b80604052505050565b5f6114816112df565b905061148d8282611447565b919050565b5f67ffffffffffffffff8211156114ac576114ab61141a565b5b602082029050602081019050919050565b5f80fd5b5f6114d36114ce84611492565b611478565b905080838252602082019050602084028301858111156114f6576114f56114bd565b5b835b8181101561151f578061150b8882611336565b8452602084019350506020810190506114f8565b5050509392505050565b5f82601f83011261153d5761153c611416565b5b813561154d8482602086016114c1565b91505092915050565b5f67ffffffffffffffff8211156115705761156f61141a565b5b602082029050602081019050919050565b5f61159361158e84611556565b611478565b905080838252602082019050602084028301858111156115b6576115b56114bd565b5b835b818110156115df57806115cb8882611369565b8452602084019350506020810190506115b8565b5050509392505050565b5f82601f8301126115fd576115fc611416565b5b813561160d848260208601611581565b91505092915050565b5f806040838503121561162c5761162b6112e8565b5b5f83013567ffffffffffffffff811115611649576116486112ec565b5b61165585828601611529565b925050602083013567ffffffffffffffff811115611676576116756112ec565b5b611682858286016115e9565b9150509250929050565b5f805f606084860312156116a3576116a26112e8565b5b5f6116b086828701611336565b93505060206116c186828701611336565b92505060406116d286828701611369565b9150509250925092565b5f60ff82169050919050565b6116f1816116dc565b82525050565b5f60208201905061170a5f8301846116e8565b92915050565b5f60208284031215611725576117246112e8565b5b5f61173284828501611369565b91505092915050565b5f602082840312156117505761174f6112e8565b5b5f61175d84828501611336565b91505092915050565b61176f8161130f565b82525050565b5f6020820190506117885f830184611766565b92915050565b5f80604083850312156117a4576117a36112e8565b5b5f6117b185828601611336565b92505060206117c285828601611336565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061181057607f821691505b602082108103611823576118226117cc565b5b50919050565b7f6572726f72207769746820617272617920666f726d61740000000000000000005f82015250565b5f61185d60178361123f565b915061186882611829565b602082019050919050565b5f6020820190508181035f83015261188a81611851565b9050919050565b7f6d617920726561636820676173206c696d6974000000000000000000000000005f82015250565b5f6118c560138361123f565b91506118d082611891565b602082019050919050565b5f6020820190508181035f8301526118f2816118b9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61195d8261134a565b91506119688361134a565b92508282019050808211156119805761197f611926565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119e060258361123f565b91506119eb82611986565b604082019050919050565b5f6020820190508181035f830152611a0d816119d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a6e60268361123f565b9150611a7982611a14565b604082019050919050565b5f6020820190508181035f830152611a9b81611a62565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611afc60248361123f565b9150611b0782611aa2565b604082019050919050565b5f6020820190508181035f830152611b2981611af0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b8a60228361123f565b9150611b9582611b30565b604082019050919050565b5f6020820190508181035f830152611bb781611b7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bf260208361123f565b9150611bfd82611bbe565b602082019050919050565b5f6020820190508181035f830152611c1f81611be6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c8060258361123f565b9150611c8b82611c26565b604082019050919050565b5f6020820190508181035f830152611cad81611c74565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611d0e60238361123f565b9150611d1982611cb4565b604082019050919050565b5f6020820190508181035f830152611d3b81611d02565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d9c60268361123f565b9150611da782611d42565b604082019050919050565b5f6020820190508181035f830152611dc981611d90565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e04601d8361123f565b9150611e0f82611dd0565b602082019050919050565b5f6020820190508181035f830152611e3181611df8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e9260218361123f565b9150611e9d82611e38565b604082019050919050565b5f6020820190508181035f830152611ebf81611e86565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f2060228361123f565b9150611f2b82611ec6565b604082019050919050565b5f6020820190508181035f830152611f4d81611f14565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611f8860148361123f565b9150611f9382611f54565b602082019050919050565b5f6020820190508181035f830152611fb581611f7c565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611ff060108361123f565b9150611ffb82611fbc565b602082019050919050565b5f6020820190508181035f83015261201d81611fe4565b905091905056fea26469706673582212206cbbda429fde62e82bfb5fb00ee88d4292e6917dd6d9c180f3787ec89c88022f64736f6c63430008160033

Deployed Bytecode Sourcemap

24217:973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12002:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14362:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13131:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24769:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15143:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12973:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15813:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24466:56;;;:::i;:::-;;23578:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5292:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13302:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:103;;;:::i;:::-;;23988:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24409:52;;;:::i;:::-;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12221:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16554:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13635:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13891:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3060:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12002:100;12056:13;12089:5;12082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12002:100;:::o;14362:201::-;14445:4;14462:13;14478:12;:10;:12::i;:::-;14462:28;;14501:32;14510:5;14517:7;14526:6;14501:8;:32::i;:::-;14551:4;14544:11;;;14362:201;;;;:::o;13131:108::-;13192:7;13219:12;;13212:19;;13131:108;:::o;24769:416::-;2047:13;:11;:13::i;:::-;24904:15:::1;:22;24886:7;:14;:40;24878:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24983:3;24966:7;:14;:20;24958:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;25018:9;25014:168;25037:7;:14;25033:1;:18;25014:168;;;25062:14;25079:7;25087:1;25079:10;;;;;;;;:::i;:::-;;;;;;;;25062:27;;25094:14;25111:15;25127:1;25111:18;;;;;;;;:::i;:::-;;;;;;;;25094:35;;25134:43;25150:10;25162:6;25170;25134:15;:43::i;:::-;25057:125;;25053:3;;;;;;;25014:168;;;;24769:416:::0;;:::o;15143:261::-;15240:4;15257:15;15275:12;:10;:12::i;:::-;15257:30;;15298:38;15314:4;15320:7;15329:6;15298:15;:38::i;:::-;15347:27;15357:4;15363:2;15367:6;15347:9;:27::i;:::-;15392:4;15385:11;;;15143:261;;;;;:::o;12973:93::-;13031:5;13056:2;13049:9;;12973:93;:::o;15813:238::-;15901:4;15918:13;15934:12;:10;:12::i;:::-;15918:28;;15957:64;15966:5;15973:7;16010:10;15982:25;15992:5;15999:7;15982:9;:25::i;:::-;:38;;;;:::i;:::-;15957:8;:64::i;:::-;16039:4;16032:11;;;15813:238;;;;:::o;24466:56::-;2047:13;:11;:13::i;:::-;24507:10:::1;:8;:10::i;:::-;24466:56::o:0;23578:91::-;23634:27;23640:12;:10;:12::i;:::-;23654:6;23634:5;:27::i;:::-;23578:91;:::o;5292:86::-;5339:4;5363:7;;;;;;;;;;;5356:14;;5292:86;:::o;13302:127::-;13376:7;13403:9;:18;13413:7;13403:18;;;;;;;;;;;;;;;;13396:25;;13302:127;;;:::o;2802:103::-;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;23988:164::-;24065:46;24081:7;24090:12;:10;:12::i;:::-;24104:6;24065:15;:46::i;:::-;24122:22;24128:7;24137:6;24122:5;:22::i;:::-;23988:164;;:::o;24409:52::-;2047:13;:11;:13::i;:::-;24448:8:::1;:6;:8::i;:::-;24409:52::o:0;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;12221:104::-;12277:13;12310:7;12303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12221:104;:::o;16554:436::-;16647:4;16664:13;16680:12;:10;:12::i;:::-;16664:28;;16703:24;16730:25;16740:5;16747:7;16730:9;:25::i;:::-;16703:52;;16794:15;16774:16;:35;;16766:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16887:60;16896:5;16903:7;16931:15;16912:16;:34;16887:8;:60::i;:::-;16978:4;16971:11;;;;16554:436;;;;:::o;13635:193::-;13714:4;13731:13;13747:12;:10;:12::i;:::-;13731:28;;13770;13780:5;13787:2;13791:6;13770:9;:28::i;:::-;13816:4;13809:11;;;13635:193;;;;:::o;13891:151::-;13980:7;14007:11;:18;14019:5;14007:18;;;;;;;;;;;;;;;:27;14026:7;14007:27;;;;;;;;;;;;;;;;14000:34;;13891:151;;;;:::o;3060:201::-;2047:13;:11;:13::i;:::-;3169:1:::1;3149:22;;:8;:22;;::::0;3141:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;20547:346::-;20666:1;20649:19;;:5;:19;;;20641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20747:1;20728:21;;:7;:21;;;20720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20831:6;20801:11;:18;20813:5;20801:18;;;;;;;;;;;;;;;:27;20820:7;20801:27;;;;;;;;;;;;;;;:36;;;;20869:7;20853:32;;20862:5;20853:32;;;20878:6;20853:32;;;;;;:::i;:::-;;;;;;;;20547:346;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;17460:806::-;17573:1;17557:18;;:4;:18;;;17549:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17650:1;17636:16;;:2;:16;;;17628:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17705:38;17726:4;17732:2;17736:6;17705:20;:38::i;:::-;17756:19;17778:9;:15;17788:4;17778:15;;;;;;;;;;;;;;;;17756:37;;17827:6;17812:11;:21;;17804:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;17944:6;17930:11;:20;17912:9;:15;17922:4;17912:15;;;;;;;;;;;;;;;:38;;;;18147:6;18130:9;:13;18140:2;18130:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18197:2;18182:26;;18191:4;18182:26;;;18201:6;18182:26;;;;;;:::i;:::-;;;;;;;;18221:37;18241:4;18247:2;18251:6;18221:19;:37::i;:::-;17538:728;17460:806;;;:::o;21184:419::-;21285:24;21312:25;21322:5;21329:7;21312:9;:25::i;:::-;21285:52;;21372:17;21352:16;:37;21348:248;;21434:6;21414:16;:26;;21406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21518:51;21527:5;21534:7;21562:6;21543:16;:25;21518:8;:51::i;:::-;21348:248;21274:329;21184:419;;;:::o;6147:120::-;5156:16;:14;:16::i;:::-;6216:5:::1;6206:7;;:15;;;;;;;;;;;;;;;;;;6237:22;6246:12;:10;:12::i;:::-;6237:22;;;;;;:::i;:::-;;;;;;;;6147:120::o:0;19434:675::-;19537:1;19518:21;;:7;:21;;;19510:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19590:49;19611:7;19628:1;19632:6;19590:20;:49::i;:::-;19652:22;19677:9;:18;19687:7;19677:18;;;;;;;;;;;;;;;;19652:43;;19732:6;19714:14;:24;;19706:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19851:6;19834:14;:23;19813:9;:18;19823:7;19813:18;;;;;;;;;;;;;;;:44;;;;19968:6;19952:12;;:22;;;;;;;;;;;20029:1;20003:37;;20012:7;20003:37;;;20033:6;20003:37;;;;;;:::i;:::-;;;;;;;;20053:48;20073:7;20090:1;20094:6;20053:19;:48::i;:::-;19499:610;19434:675;;:::o;3421:191::-;3495:16;3514:6;;;;;;;;;;;3495:25;;3540:8;3531:6;;:17;;;;;;;;;;;;;;;;;;3595:8;3564:40;;3585:8;3564:40;;;;;;;;;;;;3484:128;3421:191;:::o;5888:118::-;4897:19;:17;:19::i;:::-;5958:4:::1;5948:7;;:14;;;;;;;;;;;;;;;;;;5978:20;5985:12;:10;:12::i;:::-;5978:20;;;;;;:::i;:::-;;;;;;;;5888:118::o:0;24527:169::-;4897:19;:17;:19::i;:::-;24647:44:::1;24674:4;24680:2;24684:6;24647:26;:44::i;:::-;24527:169:::0;;;:::o;22898:90::-;;;;:::o;5636:108::-;5703:8;:6;:8::i;:::-;5695:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5636:108::o;5451:::-;5522:8;:6;:8::i;:::-;5521:9;5513:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5451:108::o;22203:91::-;;;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:117::-;3907:1;3904;3897:12;3921:180;3969:77;3966:1;3959:88;4066:4;4063:1;4056:15;4090:4;4087:1;4080:15;4107:281;4190:27;4212:4;4190:27;:::i;:::-;4182:6;4178:40;4320:6;4308:10;4305:22;4284:18;4272:10;4269:34;4266:62;4263:88;;;4331:18;;:::i;:::-;4263:88;4371:10;4367:2;4360:22;4150:238;4107:281;;:::o;4394:129::-;4428:6;4455:20;;:::i;:::-;4445:30;;4484:33;4512:4;4504:6;4484:33;:::i;:::-;4394:129;;;:::o;4529:311::-;4606:4;4696:18;4688:6;4685:30;4682:56;;;4718:18;;:::i;:::-;4682:56;4768:4;4760:6;4756:17;4748:25;;4828:4;4822;4818:15;4810:23;;4529:311;;;:::o;4846:117::-;4955:1;4952;4945:12;4986:710;5082:5;5107:81;5123:64;5180:6;5123:64;:::i;:::-;5107:81;:::i;:::-;5098:90;;5208:5;5237:6;5230:5;5223:21;5271:4;5264:5;5260:16;5253:23;;5324:4;5316:6;5312:17;5304:6;5300:30;5353:3;5345:6;5342:15;5339:122;;;5372:79;;:::i;:::-;5339:122;5487:6;5470:220;5504:6;5499:3;5496:15;5470:220;;;5579:3;5608:37;5641:3;5629:10;5608:37;:::i;:::-;5603:3;5596:50;5675:4;5670:3;5666:14;5659:21;;5546:144;5530:4;5525:3;5521:14;5514:21;;5470:220;;;5474:21;5088:608;;4986:710;;;;;:::o;5719:370::-;5790:5;5839:3;5832:4;5824:6;5820:17;5816:27;5806:122;;5847:79;;:::i;:::-;5806:122;5964:6;5951:20;5989:94;6079:3;6071:6;6064:4;6056:6;6052:17;5989:94;:::i;:::-;5980:103;;5796:293;5719:370;;;;:::o;6095:311::-;6172:4;6262:18;6254:6;6251:30;6248:56;;;6284:18;;:::i;:::-;6248:56;6334:4;6326:6;6322:17;6314:25;;6394:4;6388;6384:15;6376:23;;6095:311;;;:::o;6429:710::-;6525:5;6550:81;6566:64;6623:6;6566:64;:::i;:::-;6550:81;:::i;:::-;6541:90;;6651:5;6680:6;6673:5;6666:21;6714:4;6707:5;6703:16;6696:23;;6767:4;6759:6;6755:17;6747:6;6743:30;6796:3;6788:6;6785:15;6782:122;;;6815:79;;:::i;:::-;6782:122;6930:6;6913:220;6947:6;6942:3;6939:15;6913:220;;;7022:3;7051:37;7084:3;7072:10;7051:37;:::i;:::-;7046:3;7039:50;7118:4;7113:3;7109:14;7102:21;;6989:144;6973:4;6968:3;6964:14;6957:21;;6913:220;;;6917:21;6531:608;;6429:710;;;;;:::o;7162:370::-;7233:5;7282:3;7275:4;7267:6;7263:17;7259:27;7249:122;;7290:79;;:::i;:::-;7249:122;7407:6;7394:20;7432:94;7522:3;7514:6;7507:4;7499:6;7495:17;7432:94;:::i;:::-;7423:103;;7239:293;7162:370;;;;:::o;7538:894::-;7656:6;7664;7713:2;7701:9;7692:7;7688:23;7684:32;7681:119;;;7719:79;;:::i;:::-;7681:119;7867:1;7856:9;7852:17;7839:31;7897:18;7889:6;7886:30;7883:117;;;7919:79;;:::i;:::-;7883:117;8024:78;8094:7;8085:6;8074:9;8070:22;8024:78;:::i;:::-;8014:88;;7810:302;8179:2;8168:9;8164:18;8151:32;8210:18;8202:6;8199:30;8196:117;;;8232:79;;:::i;:::-;8196:117;8337:78;8407:7;8398:6;8387:9;8383:22;8337:78;:::i;:::-;8327:88;;8122:303;7538:894;;;;;:::o;8438:619::-;8515:6;8523;8531;8580:2;8568:9;8559:7;8555:23;8551:32;8548:119;;;8586:79;;:::i;:::-;8548:119;8706:1;8731:53;8776:7;8767:6;8756:9;8752:22;8731:53;:::i;:::-;8721:63;;8677:117;8833:2;8859:53;8904:7;8895:6;8884:9;8880:22;8859:53;:::i;:::-;8849:63;;8804:118;8961:2;8987:53;9032:7;9023:6;9012:9;9008:22;8987:53;:::i;:::-;8977:63;;8932:118;8438:619;;;;;:::o;9063:86::-;9098:7;9138:4;9131:5;9127:16;9116:27;;9063:86;;;:::o;9155:112::-;9238:22;9254:5;9238:22;:::i;:::-;9233:3;9226:35;9155:112;;:::o;9273:214::-;9362:4;9400:2;9389:9;9385:18;9377:26;;9413:67;9477:1;9466:9;9462:17;9453:6;9413:67;:::i;:::-;9273:214;;;;:::o;9493:329::-;9552:6;9601:2;9589:9;9580:7;9576:23;9572:32;9569:119;;;9607:79;;:::i;:::-;9569:119;9727:1;9752:53;9797:7;9788:6;9777:9;9773:22;9752:53;:::i;:::-;9742:63;;9698:117;9493:329;;;;:::o;9828:::-;9887:6;9936:2;9924:9;9915:7;9911:23;9907:32;9904:119;;;9942:79;;:::i;:::-;9904:119;10062:1;10087:53;10132:7;10123:6;10112:9;10108:22;10087:53;:::i;:::-;10077:63;;10033:117;9828:329;;;;:::o;10163:118::-;10250:24;10268:5;10250:24;:::i;:::-;10245:3;10238:37;10163:118;;:::o;10287:222::-;10380:4;10418:2;10407:9;10403:18;10395:26;;10431:71;10499:1;10488:9;10484:17;10475:6;10431:71;:::i;:::-;10287:222;;;;:::o;10515:474::-;10583:6;10591;10640:2;10628:9;10619:7;10615:23;10611:32;10608:119;;;10646:79;;:::i;:::-;10608:119;10766:1;10791:53;10836:7;10827:6;10816:9;10812:22;10791:53;:::i;:::-;10781:63;;10737:117;10893:2;10919:53;10964:7;10955:6;10944:9;10940:22;10919:53;:::i;:::-;10909:63;;10864:118;10515:474;;;;;:::o;10995:180::-;11043:77;11040:1;11033:88;11140:4;11137:1;11130:15;11164:4;11161:1;11154:15;11181:320;11225:6;11262:1;11256:4;11252:12;11242:22;;11309:1;11303:4;11299:12;11330:18;11320:81;;11386:4;11378:6;11374:17;11364:27;;11320:81;11448:2;11440:6;11437:14;11417:18;11414:38;11411:84;;11467:18;;:::i;:::-;11411:84;11232:269;11181:320;;;:::o;11507:173::-;11647:25;11643:1;11635:6;11631:14;11624:49;11507:173;:::o;11686:366::-;11828:3;11849:67;11913:2;11908:3;11849:67;:::i;:::-;11842:74;;11925:93;12014:3;11925:93;:::i;:::-;12043:2;12038:3;12034:12;12027:19;;11686:366;;;:::o;12058:419::-;12224:4;12262:2;12251:9;12247:18;12239:26;;12311:9;12305:4;12301:20;12297:1;12286:9;12282:17;12275:47;12339:131;12465:4;12339:131;:::i;:::-;12331:139;;12058:419;;;:::o;12483:169::-;12623:21;12619:1;12611:6;12607:14;12600:45;12483:169;:::o;12658:366::-;12800:3;12821:67;12885:2;12880:3;12821:67;:::i;:::-;12814:74;;12897:93;12986:3;12897:93;:::i;:::-;13015:2;13010:3;13006:12;12999:19;;12658:366;;;:::o;13030:419::-;13196:4;13234:2;13223:9;13219:18;13211:26;;13283:9;13277:4;13273:20;13269:1;13258:9;13254:17;13247:47;13311:131;13437:4;13311:131;:::i;:::-;13303:139;;13030:419;;;:::o;13455:180::-;13503:77;13500:1;13493:88;13600:4;13597:1;13590:15;13624:4;13621:1;13614:15;13641:180;13689:77;13686:1;13679:88;13786:4;13783:1;13776:15;13810:4;13807:1;13800:15;13827:191;13867:3;13886:20;13904:1;13886:20;:::i;:::-;13881:25;;13920:20;13938:1;13920:20;:::i;:::-;13915:25;;13963:1;13960;13956:9;13949:16;;13984:3;13981:1;13978:10;13975:36;;;13991:18;;:::i;:::-;13975:36;13827:191;;;;:::o;14024:224::-;14164:34;14160:1;14152:6;14148:14;14141:58;14233:7;14228:2;14220:6;14216:15;14209:32;14024:224;:::o;14254:366::-;14396:3;14417:67;14481:2;14476:3;14417:67;:::i;:::-;14410:74;;14493:93;14582:3;14493:93;:::i;:::-;14611:2;14606:3;14602:12;14595:19;;14254:366;;;:::o;14626:419::-;14792:4;14830:2;14819:9;14815:18;14807:26;;14879:9;14873:4;14869:20;14865:1;14854:9;14850:17;14843:47;14907:131;15033:4;14907:131;:::i;:::-;14899:139;;14626:419;;;:::o;15051:225::-;15191:34;15187:1;15179:6;15175:14;15168:58;15260:8;15255:2;15247:6;15243:15;15236:33;15051:225;:::o;15282:366::-;15424:3;15445:67;15509:2;15504:3;15445:67;:::i;:::-;15438:74;;15521:93;15610:3;15521:93;:::i;:::-;15639:2;15634:3;15630:12;15623:19;;15282:366;;;:::o;15654:419::-;15820:4;15858:2;15847:9;15843:18;15835:26;;15907:9;15901:4;15897:20;15893:1;15882:9;15878:17;15871:47;15935:131;16061:4;15935:131;:::i;:::-;15927:139;;15654:419;;;:::o;16079:223::-;16219:34;16215:1;16207:6;16203:14;16196:58;16288:6;16283:2;16275:6;16271:15;16264:31;16079:223;:::o;16308:366::-;16450:3;16471:67;16535:2;16530:3;16471:67;:::i;:::-;16464:74;;16547:93;16636:3;16547:93;:::i;:::-;16665:2;16660:3;16656:12;16649:19;;16308:366;;;:::o;16680:419::-;16846:4;16884:2;16873:9;16869:18;16861:26;;16933:9;16927:4;16923:20;16919:1;16908:9;16904:17;16897:47;16961:131;17087:4;16961:131;:::i;:::-;16953:139;;16680:419;;;:::o;17105:221::-;17245:34;17241:1;17233:6;17229:14;17222:58;17314:4;17309:2;17301:6;17297:15;17290:29;17105:221;:::o;17332:366::-;17474:3;17495:67;17559:2;17554:3;17495:67;:::i;:::-;17488:74;;17571:93;17660:3;17571:93;:::i;:::-;17689:2;17684:3;17680:12;17673:19;;17332:366;;;:::o;17704:419::-;17870:4;17908:2;17897:9;17893:18;17885:26;;17957:9;17951:4;17947:20;17943:1;17932:9;17928:17;17921:47;17985:131;18111:4;17985:131;:::i;:::-;17977:139;;17704:419;;;:::o;18129:182::-;18269:34;18265:1;18257:6;18253:14;18246:58;18129:182;:::o;18317:366::-;18459:3;18480:67;18544:2;18539:3;18480:67;:::i;:::-;18473:74;;18556:93;18645:3;18556:93;:::i;:::-;18674:2;18669:3;18665:12;18658:19;;18317:366;;;:::o;18689:419::-;18855:4;18893:2;18882:9;18878:18;18870:26;;18942:9;18936:4;18932:20;18928:1;18917:9;18913:17;18906:47;18970:131;19096:4;18970:131;:::i;:::-;18962:139;;18689:419;;;:::o;19114:224::-;19254:34;19250:1;19242:6;19238:14;19231:58;19323:7;19318:2;19310:6;19306:15;19299:32;19114:224;:::o;19344:366::-;19486:3;19507:67;19571:2;19566:3;19507:67;:::i;:::-;19500:74;;19583:93;19672:3;19583:93;:::i;:::-;19701:2;19696:3;19692:12;19685:19;;19344:366;;;:::o;19716:419::-;19882:4;19920:2;19909:9;19905:18;19897:26;;19969:9;19963:4;19959:20;19955:1;19944:9;19940:17;19933:47;19997:131;20123:4;19997:131;:::i;:::-;19989:139;;19716:419;;;:::o;20141:222::-;20281:34;20277:1;20269:6;20265:14;20258:58;20350:5;20345:2;20337:6;20333:15;20326:30;20141:222;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:225::-;21306:34;21302:1;21294:6;21290:14;21283:58;21375:8;21370:2;21362:6;21358:15;21351:33;21166:225;:::o;21397:366::-;21539:3;21560:67;21624:2;21619:3;21560:67;:::i;:::-;21553:74;;21636:93;21725:3;21636:93;:::i;:::-;21754:2;21749:3;21745:12;21738:19;;21397:366;;;:::o;21769:419::-;21935:4;21973:2;21962:9;21958:18;21950:26;;22022:9;22016:4;22012:20;22008:1;21997:9;21993:17;21986:47;22050:131;22176:4;22050:131;:::i;:::-;22042:139;;21769:419;;;:::o;22194:179::-;22334:31;22330:1;22322:6;22318:14;22311:55;22194:179;:::o;22379:366::-;22521:3;22542:67;22606:2;22601:3;22542:67;:::i;:::-;22535:74;;22618:93;22707:3;22618:93;:::i;:::-;22736:2;22731:3;22727:12;22720:19;;22379:366;;;:::o;22751:419::-;22917:4;22955:2;22944:9;22940:18;22932:26;;23004:9;22998:4;22994:20;22990:1;22979:9;22975:17;22968:47;23032:131;23158:4;23032:131;:::i;:::-;23024:139;;22751:419;;;:::o;23176:220::-;23316:34;23312:1;23304:6;23300:14;23293:58;23385:3;23380:2;23372:6;23368:15;23361:28;23176:220;:::o;23402:366::-;23544:3;23565:67;23629:2;23624:3;23565:67;:::i;:::-;23558:74;;23641:93;23730:3;23641:93;:::i;:::-;23759:2;23754:3;23750:12;23743:19;;23402:366;;;:::o;23774:419::-;23940:4;23978:2;23967:9;23963:18;23955:26;;24027:9;24021:4;24017:20;24013:1;24002:9;23998:17;23991:47;24055:131;24181:4;24055:131;:::i;:::-;24047:139;;23774:419;;;:::o;24199:221::-;24339:34;24335:1;24327:6;24323:14;24316:58;24408:4;24403:2;24395:6;24391:15;24384:29;24199:221;:::o;24426:366::-;24568:3;24589:67;24653:2;24648:3;24589:67;:::i;:::-;24582:74;;24665:93;24754:3;24665:93;:::i;:::-;24783:2;24778:3;24774:12;24767:19;;24426:366;;;:::o;24798:419::-;24964:4;25002:2;24991:9;24987:18;24979:26;;25051:9;25045:4;25041:20;25037:1;25026:9;25022:17;25015:47;25079:131;25205:4;25079:131;:::i;:::-;25071:139;;24798:419;;;:::o;25223:170::-;25363:22;25359:1;25351:6;25347:14;25340:46;25223:170;:::o;25399:366::-;25541:3;25562:67;25626:2;25621:3;25562:67;:::i;:::-;25555:74;;25638:93;25727:3;25638:93;:::i;:::-;25756:2;25751:3;25747:12;25740:19;;25399:366;;;:::o;25771:419::-;25937:4;25975:2;25964:9;25960:18;25952:26;;26024:9;26018:4;26014:20;26010:1;25999:9;25995:17;25988:47;26052:131;26178:4;26052:131;:::i;:::-;26044:139;;25771:419;;;:::o;26196:166::-;26336:18;26332:1;26324:6;26320:14;26313:42;26196:166;:::o;26368:366::-;26510:3;26531:67;26595:2;26590:3;26531:67;:::i;:::-;26524:74;;26607:93;26696:3;26607:93;:::i;:::-;26725:2;26720:3;26716:12;26709:19;;26368:366;;;:::o;26740:419::-;26906:4;26944:2;26933:9;26929:18;26921:26;;26993:9;26987:4;26983:20;26979:1;26968:9;26964:17;26957:47;27021:131;27147:4;27021:131;:::i;:::-;27013:139;;26740:419;;;:::o

Swarm Source

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