ETH Price: $2,868.67 (-10.96%)
Gas: 23 Gwei

Token

JUNGLECOIN (JLC)
 

Overview

Max Total Supply

31,256,673.361666665662284751 JLC

Holders

682

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
381.253333333331823802 JLC

Value
$0.00
0x417a11Ec86968A93A9917f61302534f6372622cC
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:
JungleCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-24
*/

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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


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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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


/**
 * @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/token/ERC20/[email protected]

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




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `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;
        }
        _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;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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/[email protected]

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



/**
 * @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 @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


// File contracts/JungleCoin.sol



contract JungleCoin is ERC20Burnable, Ownable {

    uint public maxSupply;
    bool public maxSupplyLocked;

    mapping (address => bool) public isMinter;

    event SetMinter(address account, bool isMinter);
    event SetMaxSupply(uint amount);
    event MaxSupplyLocked();

    constructor() ERC20("JUNGLECOIN", "JLC") {}

    function setMaxSupply(uint _maxSupply) external onlyOwner {
        require(!maxSupplyLocked, "Already locked");
        require(totalSupply() <= _maxSupply, "Too small");
        maxSupply = _maxSupply;
        emit SetMaxSupply(_maxSupply);
    }

    function lockMaxSupply() external onlyOwner {
        require(!maxSupplyLocked, "Already locked");
        maxSupplyLocked = true;
        emit MaxSupplyLocked();
    }

    function setMinter(address _account) external onlyOwner {
        isMinter[_account] = true;
        emit SetMinter(_account, true);
    }

    function removeMinter(address _account) external onlyOwner {
        isMinter[_account] = false;
        emit SetMinter(_account, false);
    }

    function mint(address _account, uint _amount) external {
        require(isMinter[msg.sender], "NOT AUTHORIZED");
        require(totalSupply() + _amount <= maxSupply, "Max supply");
        _mint(_account, _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":[],"name":"MaxSupplyLocked","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":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isMinter","type":"bool"}],"name":"SetMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setMinter","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f4a554e474c45434f494e000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a4c430000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6125cb80620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063aa271e1a1161007c578063aa271e1a146103c7578063d5abeb01146103f7578063dd62ed3e14610415578063f2fde38b14610445578063fca3b5aa14610461578063fca76c261461047d57610158565b806379cc6790146102f15780638da5cb5b1461030d57806395d89b411461032b578063a457c2d714610349578063a8d0466c14610379578063a9059cbb1461039757610158565b80633950935111610115578063395093511461023357806340c10f191461026357806342966c681461027f5780636f8b44b01461029b57806370a08231146102b7578063715018a6146102e757610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c95780633092afd5146101f9578063313ce56714610215575b600080fd5b610165610487565b6040516101729190611d5a565b60405180910390f35b610195600480360381019061019091906119f1565b610519565b6040516101a29190611d3f565b60405180910390f35b6101b361053c565b6040516101c09190611f7c565b60405180910390f35b6101e360048036038101906101de91906119a2565b610546565b6040516101f09190611d3f565b60405180910390f35b610213600480360381019061020e919061193d565b610575565b005b61021d610686565b60405161022a9190611f97565b60405180910390f35b61024d600480360381019061024891906119f1565b61068f565b60405161025a9190611d3f565b60405180910390f35b61027d600480360381019061027891906119f1565b610739565b005b61029960048036038101906102949190611a2d565b61082a565b005b6102b560048036038101906102b09190611a2d565b61083e565b005b6102d160048036038101906102cc919061193d565b610995565b6040516102de9190611f7c565b60405180910390f35b6102ef6109dd565b005b61030b600480360381019061030691906119f1565b610a65565b005b610315610a85565b6040516103229190611cfb565b60405180910390f35b610333610aaf565b6040516103409190611d5a565b60405180910390f35b610363600480360381019061035e91906119f1565b610b41565b6040516103709190611d3f565b60405180910390f35b610381610c2b565b60405161038e9190611d3f565b60405180910390f35b6103b160048036038101906103ac91906119f1565b610c3e565b6040516103be9190611d3f565b60405180910390f35b6103e160048036038101906103dc919061193d565b610c61565b6040516103ee9190611d3f565b60405180910390f35b6103ff610c81565b60405161040c9190611f7c565b60405180910390f35b61042f600480360381019061042a9190611966565b610c87565b60405161043c9190611f7c565b60405180910390f35b61045f600480360381019061045a919061193d565b610d0e565b005b61047b6004803603810190610476919061193d565b610e06565b005b610485610f17565b005b606060038054610496906120e0565b80601f01602080910402602001604051908101604052809291908181526020018280546104c2906120e0565b801561050f5780601f106104e45761010080835404028352916020019161050f565b820191906000526020600020905b8154815290600101906020018083116104f257829003601f168201915b5050505050905090565b60008061052461102c565b9050610531818585611034565b600191505092915050565b6000600254905090565b60008061055161102c565b905061055e8582856111ff565b61056985858561128b565b60019150509392505050565b61057d61102c565b73ffffffffffffffffffffffffffffffffffffffff1661059b610a85565b73ffffffffffffffffffffffffffffffffffffffff16146105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e890611e9c565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd0081600060405161067b929190611d16565b60405180910390a150565b60006012905090565b60008061069a61102c565b905061072e818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107299190611fce565b611034565b600191505092915050565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90611efc565b60405180910390fd5b600654816107d161053c565b6107db9190611fce565b111561081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390611e5c565b60405180910390fd5b610826828261150c565b5050565b61083b61083561102c565b8261166c565b50565b61084661102c565b73ffffffffffffffffffffffffffffffffffffffff16610864610a85565b73ffffffffffffffffffffffffffffffffffffffff16146108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190611e9c565b60405180910390fd5b600760009054906101000a900460ff161561090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190611e7c565b60405180910390fd5b8061091361053c565b1115610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90611dbc565b60405180910390fd5b806006819055507f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d8160405161098a9190611f7c565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e561102c565b73ffffffffffffffffffffffffffffffffffffffff16610a03610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611e9c565b60405180910390fd5b610a636000611843565b565b610a7782610a7161102c565b836111ff565b610a81828261166c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610abe906120e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea906120e0565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b600080610b4c61102c565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990611f3c565b60405180910390fd5b610c1f8286868403611034565b60019250505092915050565b600760009054906101000a900460ff1681565b600080610c4961102c565b9050610c5681858561128b565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d1661102c565b73ffffffffffffffffffffffffffffffffffffffff16610d34610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190611e9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190611ddc565b60405180910390fd5b610e0381611843565b50565b610e0e61102c565b73ffffffffffffffffffffffffffffffffffffffff16610e2c610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990611e9c565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd00816001604051610f0c929190611d16565b60405180910390a150565b610f1f61102c565b73ffffffffffffffffffffffffffffffffffffffff16610f3d610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90611e9c565b60405180910390fd5b600760009054906101000a900460ff1615610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90611e7c565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507fde7c7383697b743598867d72e1955dabf62f0bfc4494a64b1096f6579e8604f160405160405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90611f1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90611dfc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111f29190611f7c565b60405180910390a3505050565b600061120b8484610c87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112855781811015611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90611e1c565b60405180910390fd5b6112848484848403611034565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290611edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290611d7c565b60405180910390fd5b611376838383611909565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611e3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148f9190611fce565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114f39190611f7c565b60405180910390a361150684848461190e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390611f5c565b60405180910390fd5b61158860008383611909565b806002600082825461159a9190611fce565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115ef9190611fce565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116549190611f7c565b60405180910390a36116686000838361190e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390611ebc565b60405180910390fd5b6116e882600083611909565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590611d9c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546117c59190612024565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161182a9190611f7c565b60405180910390a361183e8360008461190e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061192281612567565b92915050565b6000813590506119378161257e565b92915050565b60006020828403121561194f57600080fd5b600061195d84828501611913565b91505092915050565b6000806040838503121561197957600080fd5b600061198785828601611913565b925050602061199885828601611913565b9150509250929050565b6000806000606084860312156119b757600080fd5b60006119c586828701611913565b93505060206119d686828701611913565b92505060406119e786828701611928565b9150509250925092565b60008060408385031215611a0457600080fd5b6000611a1285828601611913565b9250506020611a2385828601611928565b9150509250929050565b600060208284031215611a3f57600080fd5b6000611a4d84828501611928565b91505092915050565b611a5f81612058565b82525050565b611a6e8161206a565b82525050565b6000611a7f82611fb2565b611a898185611fbd565b9350611a998185602086016120ad565b611aa281612170565b840191505092915050565b6000611aba602383611fbd565b9150611ac582612181565b604082019050919050565b6000611add602283611fbd565b9150611ae8826121d0565b604082019050919050565b6000611b00600983611fbd565b9150611b0b8261221f565b602082019050919050565b6000611b23602683611fbd565b9150611b2e82612248565b604082019050919050565b6000611b46602283611fbd565b9150611b5182612297565b604082019050919050565b6000611b69601d83611fbd565b9150611b74826122e6565b602082019050919050565b6000611b8c602683611fbd565b9150611b978261230f565b604082019050919050565b6000611baf600a83611fbd565b9150611bba8261235e565b602082019050919050565b6000611bd2600e83611fbd565b9150611bdd82612387565b602082019050919050565b6000611bf5602083611fbd565b9150611c00826123b0565b602082019050919050565b6000611c18602183611fbd565b9150611c23826123d9565b604082019050919050565b6000611c3b602583611fbd565b9150611c4682612428565b604082019050919050565b6000611c5e600e83611fbd565b9150611c6982612477565b602082019050919050565b6000611c81602483611fbd565b9150611c8c826124a0565b604082019050919050565b6000611ca4602583611fbd565b9150611caf826124ef565b604082019050919050565b6000611cc7601f83611fbd565b9150611cd28261253e565b602082019050919050565b611ce681612096565b82525050565b611cf5816120a0565b82525050565b6000602082019050611d106000830184611a56565b92915050565b6000604082019050611d2b6000830185611a56565b611d386020830184611a65565b9392505050565b6000602082019050611d546000830184611a65565b92915050565b60006020820190508181036000830152611d748184611a74565b905092915050565b60006020820190508181036000830152611d9581611aad565b9050919050565b60006020820190508181036000830152611db581611ad0565b9050919050565b60006020820190508181036000830152611dd581611af3565b9050919050565b60006020820190508181036000830152611df581611b16565b9050919050565b60006020820190508181036000830152611e1581611b39565b9050919050565b60006020820190508181036000830152611e3581611b5c565b9050919050565b60006020820190508181036000830152611e5581611b7f565b9050919050565b60006020820190508181036000830152611e7581611ba2565b9050919050565b60006020820190508181036000830152611e9581611bc5565b9050919050565b60006020820190508181036000830152611eb581611be8565b9050919050565b60006020820190508181036000830152611ed581611c0b565b9050919050565b60006020820190508181036000830152611ef581611c2e565b9050919050565b60006020820190508181036000830152611f1581611c51565b9050919050565b60006020820190508181036000830152611f3581611c74565b9050919050565b60006020820190508181036000830152611f5581611c97565b9050919050565b60006020820190508181036000830152611f7581611cba565b9050919050565b6000602082019050611f916000830184611cdd565b92915050565b6000602082019050611fac6000830184611cec565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611fd982612096565b9150611fe483612096565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561201957612018612112565b5b828201905092915050565b600061202f82612096565b915061203a83612096565b92508282101561204d5761204c612112565b5b828203905092915050565b600061206382612076565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156120cb5780820151818401526020810190506120b0565b838111156120da576000848401525b50505050565b600060028204905060018216806120f857607f821691505b6020821081141561210c5761210b612141565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f20736d616c6c0000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7900000000000000000000000000000000000000000000600082015250565b7f416c7265616479206c6f636b6564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f5420415554484f52495a4544000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61257081612058565b811461257b57600080fd5b50565b61258781612096565b811461259257600080fd5b5056fea2646970667358221220a215ceb8b80297ae12b0da76cf7ad0e530dae5d9054d4fea9ea4ce37bcdd0e0c64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063aa271e1a1161007c578063aa271e1a146103c7578063d5abeb01146103f7578063dd62ed3e14610415578063f2fde38b14610445578063fca3b5aa14610461578063fca76c261461047d57610158565b806379cc6790146102f15780638da5cb5b1461030d57806395d89b411461032b578063a457c2d714610349578063a8d0466c14610379578063a9059cbb1461039757610158565b80633950935111610115578063395093511461023357806340c10f191461026357806342966c681461027f5780636f8b44b01461029b57806370a08231146102b7578063715018a6146102e757610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c95780633092afd5146101f9578063313ce56714610215575b600080fd5b610165610487565b6040516101729190611d5a565b60405180910390f35b610195600480360381019061019091906119f1565b610519565b6040516101a29190611d3f565b60405180910390f35b6101b361053c565b6040516101c09190611f7c565b60405180910390f35b6101e360048036038101906101de91906119a2565b610546565b6040516101f09190611d3f565b60405180910390f35b610213600480360381019061020e919061193d565b610575565b005b61021d610686565b60405161022a9190611f97565b60405180910390f35b61024d600480360381019061024891906119f1565b61068f565b60405161025a9190611d3f565b60405180910390f35b61027d600480360381019061027891906119f1565b610739565b005b61029960048036038101906102949190611a2d565b61082a565b005b6102b560048036038101906102b09190611a2d565b61083e565b005b6102d160048036038101906102cc919061193d565b610995565b6040516102de9190611f7c565b60405180910390f35b6102ef6109dd565b005b61030b600480360381019061030691906119f1565b610a65565b005b610315610a85565b6040516103229190611cfb565b60405180910390f35b610333610aaf565b6040516103409190611d5a565b60405180910390f35b610363600480360381019061035e91906119f1565b610b41565b6040516103709190611d3f565b60405180910390f35b610381610c2b565b60405161038e9190611d3f565b60405180910390f35b6103b160048036038101906103ac91906119f1565b610c3e565b6040516103be9190611d3f565b60405180910390f35b6103e160048036038101906103dc919061193d565b610c61565b6040516103ee9190611d3f565b60405180910390f35b6103ff610c81565b60405161040c9190611f7c565b60405180910390f35b61042f600480360381019061042a9190611966565b610c87565b60405161043c9190611f7c565b60405180910390f35b61045f600480360381019061045a919061193d565b610d0e565b005b61047b6004803603810190610476919061193d565b610e06565b005b610485610f17565b005b606060038054610496906120e0565b80601f01602080910402602001604051908101604052809291908181526020018280546104c2906120e0565b801561050f5780601f106104e45761010080835404028352916020019161050f565b820191906000526020600020905b8154815290600101906020018083116104f257829003601f168201915b5050505050905090565b60008061052461102c565b9050610531818585611034565b600191505092915050565b6000600254905090565b60008061055161102c565b905061055e8582856111ff565b61056985858561128b565b60019150509392505050565b61057d61102c565b73ffffffffffffffffffffffffffffffffffffffff1661059b610a85565b73ffffffffffffffffffffffffffffffffffffffff16146105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e890611e9c565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd0081600060405161067b929190611d16565b60405180910390a150565b60006012905090565b60008061069a61102c565b905061072e818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107299190611fce565b611034565b600191505092915050565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90611efc565b60405180910390fd5b600654816107d161053c565b6107db9190611fce565b111561081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390611e5c565b60405180910390fd5b610826828261150c565b5050565b61083b61083561102c565b8261166c565b50565b61084661102c565b73ffffffffffffffffffffffffffffffffffffffff16610864610a85565b73ffffffffffffffffffffffffffffffffffffffff16146108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190611e9c565b60405180910390fd5b600760009054906101000a900460ff161561090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190611e7c565b60405180910390fd5b8061091361053c565b1115610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90611dbc565b60405180910390fd5b806006819055507f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d8160405161098a9190611f7c565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e561102c565b73ffffffffffffffffffffffffffffffffffffffff16610a03610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611e9c565b60405180910390fd5b610a636000611843565b565b610a7782610a7161102c565b836111ff565b610a81828261166c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610abe906120e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea906120e0565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b600080610b4c61102c565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990611f3c565b60405180910390fd5b610c1f8286868403611034565b60019250505092915050565b600760009054906101000a900460ff1681565b600080610c4961102c565b9050610c5681858561128b565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d1661102c565b73ffffffffffffffffffffffffffffffffffffffff16610d34610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190611e9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190611ddc565b60405180910390fd5b610e0381611843565b50565b610e0e61102c565b73ffffffffffffffffffffffffffffffffffffffff16610e2c610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990611e9c565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd00816001604051610f0c929190611d16565b60405180910390a150565b610f1f61102c565b73ffffffffffffffffffffffffffffffffffffffff16610f3d610a85565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90611e9c565b60405180910390fd5b600760009054906101000a900460ff1615610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90611e7c565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507fde7c7383697b743598867d72e1955dabf62f0bfc4494a64b1096f6579e8604f160405160405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90611f1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90611dfc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111f29190611f7c565b60405180910390a3505050565b600061120b8484610c87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112855781811015611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90611e1c565b60405180910390fd5b6112848484848403611034565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290611edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290611d7c565b60405180910390fd5b611376838383611909565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611e3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148f9190611fce565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114f39190611f7c565b60405180910390a361150684848461190e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390611f5c565b60405180910390fd5b61158860008383611909565b806002600082825461159a9190611fce565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115ef9190611fce565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116549190611f7c565b60405180910390a36116686000838361190e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390611ebc565b60405180910390fd5b6116e882600083611909565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590611d9c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546117c59190612024565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161182a9190611f7c565b60405180910390a361183e8360008461190e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061192281612567565b92915050565b6000813590506119378161257e565b92915050565b60006020828403121561194f57600080fd5b600061195d84828501611913565b91505092915050565b6000806040838503121561197957600080fd5b600061198785828601611913565b925050602061199885828601611913565b9150509250929050565b6000806000606084860312156119b757600080fd5b60006119c586828701611913565b93505060206119d686828701611913565b92505060406119e786828701611928565b9150509250925092565b60008060408385031215611a0457600080fd5b6000611a1285828601611913565b9250506020611a2385828601611928565b9150509250929050565b600060208284031215611a3f57600080fd5b6000611a4d84828501611928565b91505092915050565b611a5f81612058565b82525050565b611a6e8161206a565b82525050565b6000611a7f82611fb2565b611a898185611fbd565b9350611a998185602086016120ad565b611aa281612170565b840191505092915050565b6000611aba602383611fbd565b9150611ac582612181565b604082019050919050565b6000611add602283611fbd565b9150611ae8826121d0565b604082019050919050565b6000611b00600983611fbd565b9150611b0b8261221f565b602082019050919050565b6000611b23602683611fbd565b9150611b2e82612248565b604082019050919050565b6000611b46602283611fbd565b9150611b5182612297565b604082019050919050565b6000611b69601d83611fbd565b9150611b74826122e6565b602082019050919050565b6000611b8c602683611fbd565b9150611b978261230f565b604082019050919050565b6000611baf600a83611fbd565b9150611bba8261235e565b602082019050919050565b6000611bd2600e83611fbd565b9150611bdd82612387565b602082019050919050565b6000611bf5602083611fbd565b9150611c00826123b0565b602082019050919050565b6000611c18602183611fbd565b9150611c23826123d9565b604082019050919050565b6000611c3b602583611fbd565b9150611c4682612428565b604082019050919050565b6000611c5e600e83611fbd565b9150611c6982612477565b602082019050919050565b6000611c81602483611fbd565b9150611c8c826124a0565b604082019050919050565b6000611ca4602583611fbd565b9150611caf826124ef565b604082019050919050565b6000611cc7601f83611fbd565b9150611cd28261253e565b602082019050919050565b611ce681612096565b82525050565b611cf5816120a0565b82525050565b6000602082019050611d106000830184611a56565b92915050565b6000604082019050611d2b6000830185611a56565b611d386020830184611a65565b9392505050565b6000602082019050611d546000830184611a65565b92915050565b60006020820190508181036000830152611d748184611a74565b905092915050565b60006020820190508181036000830152611d9581611aad565b9050919050565b60006020820190508181036000830152611db581611ad0565b9050919050565b60006020820190508181036000830152611dd581611af3565b9050919050565b60006020820190508181036000830152611df581611b16565b9050919050565b60006020820190508181036000830152611e1581611b39565b9050919050565b60006020820190508181036000830152611e3581611b5c565b9050919050565b60006020820190508181036000830152611e5581611b7f565b9050919050565b60006020820190508181036000830152611e7581611ba2565b9050919050565b60006020820190508181036000830152611e9581611bc5565b9050919050565b60006020820190508181036000830152611eb581611be8565b9050919050565b60006020820190508181036000830152611ed581611c0b565b9050919050565b60006020820190508181036000830152611ef581611c2e565b9050919050565b60006020820190508181036000830152611f1581611c51565b9050919050565b60006020820190508181036000830152611f3581611c74565b9050919050565b60006020820190508181036000830152611f5581611c97565b9050919050565b60006020820190508181036000830152611f7581611cba565b9050919050565b6000602082019050611f916000830184611cdd565b92915050565b6000602082019050611fac6000830184611cec565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611fd982612096565b9150611fe483612096565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561201957612018612112565b5b828201905092915050565b600061202f82612096565b915061203a83612096565b92508282101561204d5761204c612112565b5b828203905092915050565b600061206382612076565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156120cb5780820151818401526020810190506120b0565b838111156120da576000848401525b50505050565b600060028204905060018216806120f857607f821691505b6020821081141561210c5761210b612141565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f20736d616c6c0000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7900000000000000000000000000000000000000000000600082015250565b7f416c7265616479206c6f636b6564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f5420415554484f52495a4544000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61257081612058565b811461257b57600080fd5b50565b61258781612096565b811461259257600080fd5b5056fea2646970667358221220a215ceb8b80297ae12b0da76cf7ad0e530dae5d9054d4fea9ea4ce37bcdd0e0c64736f6c63430008040033

Deployed Bytecode Sourcemap

21182:1319:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6693:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9044:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7813:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9825:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22116:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7655:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10529:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22270:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18050:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21526:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7984:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20323:103;;;:::i;:::-;;18460:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19672:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6912:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11272:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21265:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8317:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21301:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21237:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8573:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20581:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21967:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21787:172;;;:::i;:::-;;6693:100;6747:13;6780:5;6773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6693:100;:::o;9044:201::-;9127:4;9144:13;9160:12;:10;:12::i;:::-;9144:28;;9183:32;9192:5;9199:7;9208:6;9183:8;:32::i;:::-;9233:4;9226:11;;;9044:201;;;;:::o;7813:108::-;7874:7;7901:12;;7894:19;;7813:108;:::o;9825:295::-;9956:4;9973:15;9991:12;:10;:12::i;:::-;9973:30;;10014:38;10030:4;10036:7;10045:6;10014:15;:38::i;:::-;10063:27;10073:4;10079:2;10083:6;10063:9;:27::i;:::-;10108:4;10101:11;;;9825:295;;;;;:::o;22116:146::-;19903:12;:10;:12::i;:::-;19892:23;;:7;:5;:7::i;:::-;:23;;;19884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22207:5:::1;22186:8;:18;22195:8;22186:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;22228;22238:8;22248:5;22228:26;;;;;;;:::i;:::-;;;;;;;;22116:146:::0;:::o;7655:93::-;7713:5;7738:2;7731:9;;7655:93;:::o;10529:240::-;10617:4;10634:13;10650:12;:10;:12::i;:::-;10634:28;;10673:66;10682:5;10689:7;10728:10;10698:11;:18;10710:5;10698:18;;;;;;;;;;;;;;;:27;10717:7;10698:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10673:8;:66::i;:::-;10757:4;10750:11;;;10529:240;;;;:::o;22270:226::-;22344:8;:20;22353:10;22344:20;;;;;;;;;;;;;;;;;;;;;;;;;22336:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;22429:9;;22418:7;22402:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;22394:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;22464:24;22470:8;22480:7;22464:5;:24::i;:::-;22270:226;;:::o;18050:91::-;18106:27;18112:12;:10;:12::i;:::-;18126:6;18106:5;:27::i;:::-;18050:91;:::o;21526:253::-;19903:12;:10;:12::i;:::-;19892:23;;:7;:5;:7::i;:::-;:23;;;19884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21604:15:::1;;;;;;;;;;;21603:16;21595:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;21674:10;21657:13;:11;:13::i;:::-;:27;;21649:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;21721:10;21709:9;:22;;;;21747:24;21760:10;21747:24;;;;;;:::i;:::-;;;;;;;;21526:253:::0;:::o;7984:127::-;8058:7;8085:9;:18;8095:7;8085:18;;;;;;;;;;;;;;;;8078:25;;7984:127;;;:::o;20323:103::-;19903:12;:10;:12::i;:::-;19892:23;;:7;:5;:7::i;:::-;:23;;;19884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20388:30:::1;20415:1;20388:18;:30::i;:::-;20323:103::o:0;18460:164::-;18537:46;18553:7;18562:12;:10;:12::i;:::-;18576:6;18537:15;:46::i;:::-;18594:22;18600:7;18609:6;18594:5;:22::i;:::-;18460:164;;:::o;19672:87::-;19718:7;19745:6;;;;;;;;;;;19738:13;;19672:87;:::o;6912:104::-;6968:13;7001:7;6994:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6912:104;:::o;11272:438::-;11365:4;11382:13;11398:12;:10;:12::i;:::-;11382:28;;11421:24;11448:11;:18;11460:5;11448:18;;;;;;;;;;;;;;;:27;11467:7;11448:27;;;;;;;;;;;;;;;;11421:54;;11514:15;11494:16;:35;;11486:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11607:60;11616:5;11623:7;11651:15;11632:16;:34;11607:8;:60::i;:::-;11698:4;11691:11;;;;11272:438;;;;:::o;21265:27::-;;;;;;;;;;;;;:::o;8317:193::-;8396:4;8413:13;8429:12;:10;:12::i;:::-;8413:28;;8452;8462:5;8469:2;8473:6;8452:9;:28::i;:::-;8498:4;8491:11;;;8317:193;;;;:::o;21301:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;21237:21::-;;;;:::o;8573:151::-;8662:7;8689:11;:18;8701:5;8689:18;;;;;;;;;;;;;;;:27;8708:7;8689:27;;;;;;;;;;;;;;;;8682:34;;8573:151;;;;:::o;20581:201::-;19903:12;:10;:12::i;:::-;19892:23;;:7;:5;:7::i;:::-;:23;;;19884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20690:1:::1;20670:22;;:8;:22;;;;20662:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20746:28;20765:8;20746:18;:28::i;:::-;20581:201:::0;:::o;21967:141::-;19903:12;:10;:12::i;:::-;19892:23;;:7;:5;:7::i;:::-;:23;;;19884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22055:4:::1;22034:8;:18;22043:8;22034:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;22075;22085:8;22095:4;22075:25;;;;;;;:::i;:::-;;;;;;;;21967:141:::0;:::o;21787:172::-;19903:12;:10;:12::i;:::-;19892:23;;:7;:5;:7::i;:::-;:23;;;19884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21851:15:::1;;;;;;;;;;;21850:16;21842:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;21914:4;21896:15;;:22;;;;;;;;;;;;;;;;;;21934:17;;;;;;;;;;21787:172::o:0;4354:98::-;4407:7;4434:10;4427:17;;4354:98;:::o;14908:380::-;15061:1;15044:19;;:5;:19;;;;15036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15142:1;15123:21;;:7;:21;;;;15115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15226:6;15196:11;:18;15208:5;15196:18;;;;;;;;;;;;;;;:27;15215:7;15196:27;;;;;;;;;;;;;;;:36;;;;15264:7;15248:32;;15257:5;15248:32;;;15273:6;15248:32;;;;;;:::i;:::-;;;;;;;;14908:380;;;:::o;15575:453::-;15710:24;15737:25;15747:5;15754:7;15737:9;:25::i;:::-;15710:52;;15797:17;15777:16;:37;15773:248;;15859:6;15839:16;:26;;15831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15943:51;15952:5;15959:7;15987:6;15968:16;:25;15943:8;:51::i;:::-;15773:248;15575:453;;;;:::o;12189:671::-;12336:1;12320:18;;:4;:18;;;;12312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:1;12399:16;;:2;:16;;;;12391:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12468:38;12489:4;12495:2;12499:6;12468:20;:38::i;:::-;12519:19;12541:9;:15;12551:4;12541:15;;;;;;;;;;;;;;;;12519:37;;12590:6;12575:11;:21;;12567:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12707:6;12693:11;:20;12675:9;:15;12685:4;12675:15;;;;;;;;;;;;;;;:38;;;;12752:6;12735:9;:13;12745:2;12735:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12791:2;12776:26;;12785:4;12776:26;;;12795:6;12776:26;;;;;;:::i;:::-;;;;;;;;12815:37;12835:4;12841:2;12845:6;12815:19;:37::i;:::-;12189:671;;;;:::o;13147:399::-;13250:1;13231:21;;:7;:21;;;;13223:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13301:49;13330:1;13334:7;13343:6;13301:20;:49::i;:::-;13379:6;13363:12;;:22;;;;;;;:::i;:::-;;;;;;;;13418:6;13396:9;:18;13406:7;13396:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13461:7;13440:37;;13457:1;13440:37;;;13470:6;13440:37;;;;;;:::i;:::-;;;;;;;;13490:48;13518:1;13522:7;13531:6;13490:19;:48::i;:::-;13147:399;;:::o;13879:591::-;13982:1;13963:21;;:7;:21;;;;13955:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14035:49;14056:7;14073:1;14077:6;14035:20;:49::i;:::-;14097:22;14122:9;:18;14132:7;14122:18;;;;;;;;;;;;;;;;14097:43;;14177:6;14159:14;:24;;14151:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14296:6;14279:14;:23;14258:9;:18;14268:7;14258:18;;;;;;;;;;;;;;;:44;;;;14340:6;14324:12;;:22;;;;;;;:::i;:::-;;;;;;;;14390:1;14364:37;;14373:7;14364:37;;;14394:6;14364:37;;;;;;:::i;:::-;;;;;;;;14414:48;14434:7;14451:1;14455:6;14414:19;:48::i;:::-;13879:591;;;:::o;20942:191::-;21016:16;21035:6;;;;;;;;;;;21016:25;;21061:8;21052:6;;:17;;;;;;;;;;;;;;;;;;21116:8;21085:40;;21106:8;21085:40;;;;;;;;;;;;20942:191;;:::o;16628:125::-;;;;:::o;17357:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:365::-;3712:3;3733:66;3797:1;3792:3;3733:66;:::i;:::-;3726:73;;3808:93;3897:3;3808:93;:::i;:::-;3926:2;3921:3;3917:12;3910:19;;3716:219;;;:::o;3941:366::-;4083:3;4104:67;4168:2;4163:3;4104:67;:::i;:::-;4097:74;;4180:93;4269:3;4180:93;:::i;:::-;4298:2;4293:3;4289:12;4282:19;;4087:220;;;:::o;4313:366::-;4455:3;4476:67;4540:2;4535:3;4476:67;:::i;:::-;4469:74;;4552:93;4641:3;4552:93;:::i;:::-;4670:2;4665:3;4661:12;4654:19;;4459:220;;;:::o;4685:366::-;4827:3;4848:67;4912:2;4907:3;4848:67;:::i;:::-;4841:74;;4924:93;5013:3;4924:93;:::i;:::-;5042:2;5037:3;5033:12;5026:19;;4831:220;;;:::o;5057:366::-;5199:3;5220:67;5284:2;5279:3;5220:67;:::i;:::-;5213:74;;5296:93;5385:3;5296:93;:::i;:::-;5414:2;5409:3;5405:12;5398:19;;5203:220;;;:::o;5429:366::-;5571:3;5592:67;5656:2;5651:3;5592:67;:::i;:::-;5585:74;;5668:93;5757:3;5668:93;:::i;:::-;5786:2;5781:3;5777:12;5770:19;;5575:220;;;:::o;5801:366::-;5943:3;5964:67;6028:2;6023:3;5964:67;:::i;:::-;5957:74;;6040:93;6129:3;6040:93;:::i;:::-;6158:2;6153:3;6149:12;6142:19;;5947:220;;;:::o;6173:366::-;6315:3;6336:67;6400:2;6395:3;6336:67;:::i;:::-;6329:74;;6412:93;6501:3;6412:93;:::i;:::-;6530:2;6525:3;6521:12;6514:19;;6319:220;;;:::o;6545:366::-;6687:3;6708:67;6772:2;6767:3;6708:67;:::i;:::-;6701:74;;6784:93;6873:3;6784:93;:::i;:::-;6902:2;6897:3;6893:12;6886:19;;6691:220;;;:::o;6917:366::-;7059:3;7080:67;7144:2;7139:3;7080:67;:::i;:::-;7073:74;;7156:93;7245:3;7156:93;:::i;:::-;7274:2;7269:3;7265:12;7258:19;;7063:220;;;:::o;7289:366::-;7431:3;7452:67;7516:2;7511:3;7452:67;:::i;:::-;7445:74;;7528:93;7617:3;7528:93;:::i;:::-;7646:2;7641:3;7637:12;7630:19;;7435:220;;;:::o;7661:366::-;7803:3;7824:67;7888:2;7883:3;7824:67;:::i;:::-;7817:74;;7900:93;7989:3;7900:93;:::i;:::-;8018:2;8013:3;8009:12;8002:19;;7807:220;;;:::o;8033:366::-;8175:3;8196:67;8260:2;8255:3;8196:67;:::i;:::-;8189:74;;8272:93;8361:3;8272:93;:::i;:::-;8390:2;8385:3;8381:12;8374:19;;8179:220;;;:::o;8405:366::-;8547:3;8568:67;8632:2;8627:3;8568:67;:::i;:::-;8561:74;;8644:93;8733:3;8644:93;:::i;:::-;8762:2;8757:3;8753:12;8746:19;;8551:220;;;:::o;8777:118::-;8864:24;8882:5;8864:24;:::i;:::-;8859:3;8852:37;8842:53;;:::o;8901:112::-;8984:22;9000:5;8984:22;:::i;:::-;8979:3;8972:35;8962:51;;:::o;9019:222::-;9112:4;9150:2;9139:9;9135:18;9127:26;;9163:71;9231:1;9220:9;9216:17;9207:6;9163:71;:::i;:::-;9117:124;;;;:::o;9247:320::-;9362:4;9400:2;9389:9;9385:18;9377:26;;9413:71;9481:1;9470:9;9466:17;9457:6;9413:71;:::i;:::-;9494:66;9556:2;9545:9;9541:18;9532:6;9494:66;:::i;:::-;9367:200;;;;;:::o;9573:210::-;9660:4;9698:2;9687:9;9683:18;9675:26;;9711:65;9773:1;9762:9;9758:17;9749:6;9711:65;:::i;:::-;9665:118;;;;:::o;9789:313::-;9902:4;9940:2;9929:9;9925:18;9917:26;;9989:9;9983:4;9979:20;9975:1;9964:9;9960:17;9953:47;10017:78;10090:4;10081:6;10017:78;:::i;:::-;10009:86;;9907:195;;;;:::o;10108:419::-;10274:4;10312:2;10301:9;10297:18;10289:26;;10361:9;10355:4;10351:20;10347:1;10336:9;10332:17;10325:47;10389:131;10515:4;10389:131;:::i;:::-;10381:139;;10279:248;;;:::o;10533:419::-;10699:4;10737:2;10726:9;10722:18;10714:26;;10786:9;10780:4;10776:20;10772:1;10761:9;10757:17;10750:47;10814:131;10940:4;10814:131;:::i;:::-;10806:139;;10704:248;;;:::o;10958:419::-;11124:4;11162:2;11151:9;11147:18;11139:26;;11211:9;11205:4;11201:20;11197:1;11186:9;11182:17;11175:47;11239:131;11365:4;11239:131;:::i;:::-;11231:139;;11129:248;;;:::o;11383:419::-;11549:4;11587:2;11576:9;11572:18;11564:26;;11636:9;11630:4;11626:20;11622:1;11611:9;11607:17;11600:47;11664:131;11790:4;11664:131;:::i;:::-;11656:139;;11554:248;;;:::o;11808:419::-;11974:4;12012:2;12001:9;11997:18;11989:26;;12061:9;12055:4;12051:20;12047:1;12036:9;12032:17;12025:47;12089:131;12215:4;12089:131;:::i;:::-;12081:139;;11979:248;;;:::o;12233:419::-;12399:4;12437:2;12426:9;12422:18;12414:26;;12486:9;12480:4;12476:20;12472:1;12461:9;12457:17;12450:47;12514:131;12640:4;12514:131;:::i;:::-;12506:139;;12404:248;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12829:248;;;:::o;13083:419::-;13249:4;13287:2;13276:9;13272:18;13264:26;;13336:9;13330:4;13326:20;13322:1;13311:9;13307:17;13300:47;13364:131;13490:4;13364:131;:::i;:::-;13356:139;;13254:248;;;:::o;13508:419::-;13674:4;13712:2;13701:9;13697:18;13689:26;;13761:9;13755:4;13751:20;13747:1;13736:9;13732:17;13725:47;13789:131;13915:4;13789:131;:::i;:::-;13781:139;;13679:248;;;:::o;13933:419::-;14099:4;14137:2;14126:9;14122:18;14114:26;;14186:9;14180:4;14176:20;14172:1;14161:9;14157:17;14150:47;14214:131;14340:4;14214:131;:::i;:::-;14206:139;;14104:248;;;:::o;14358:419::-;14524:4;14562:2;14551:9;14547:18;14539:26;;14611:9;14605:4;14601:20;14597:1;14586:9;14582:17;14575:47;14639:131;14765:4;14639:131;:::i;:::-;14631:139;;14529:248;;;:::o;14783:419::-;14949:4;14987:2;14976:9;14972:18;14964:26;;15036:9;15030:4;15026:20;15022:1;15011:9;15007:17;15000:47;15064:131;15190:4;15064:131;:::i;:::-;15056:139;;14954:248;;;:::o;15208:419::-;15374:4;15412:2;15401:9;15397:18;15389:26;;15461:9;15455:4;15451:20;15447:1;15436:9;15432:17;15425:47;15489:131;15615:4;15489:131;:::i;:::-;15481:139;;15379:248;;;:::o;15633:419::-;15799:4;15837:2;15826:9;15822:18;15814:26;;15886:9;15880:4;15876:20;15872:1;15861:9;15857:17;15850:47;15914:131;16040:4;15914:131;:::i;:::-;15906:139;;15804:248;;;:::o;16058:419::-;16224:4;16262:2;16251:9;16247:18;16239:26;;16311:9;16305:4;16301:20;16297:1;16286:9;16282:17;16275:47;16339:131;16465:4;16339:131;:::i;:::-;16331:139;;16229:248;;;:::o;16483:419::-;16649:4;16687:2;16676:9;16672:18;16664:26;;16736:9;16730:4;16726:20;16722:1;16711:9;16707:17;16700:47;16764:131;16890:4;16764:131;:::i;:::-;16756:139;;16654:248;;;:::o;16908:222::-;17001:4;17039:2;17028:9;17024:18;17016:26;;17052:71;17120:1;17109:9;17105:17;17096:6;17052:71;:::i;:::-;17006:124;;;;:::o;17136:214::-;17225:4;17263:2;17252:9;17248:18;17240:26;;17276:67;17340:1;17329:9;17325:17;17316:6;17276:67;:::i;:::-;17230:120;;;;:::o;17356:99::-;17408:6;17442:5;17436:12;17426:22;;17415:40;;;:::o;17461:169::-;17545:11;17579:6;17574:3;17567:19;17619:4;17614:3;17610:14;17595:29;;17557:73;;;;:::o;17636:305::-;17676:3;17695:20;17713:1;17695:20;:::i;:::-;17690:25;;17729:20;17747:1;17729:20;:::i;:::-;17724:25;;17883:1;17815:66;17811:74;17808:1;17805:81;17802:2;;;17889:18;;:::i;:::-;17802:2;17933:1;17930;17926:9;17919:16;;17680:261;;;;:::o;17947:191::-;17987:4;18007:20;18025:1;18007:20;:::i;:::-;18002:25;;18041:20;18059:1;18041:20;:::i;:::-;18036:25;;18080:1;18077;18074:8;18071:2;;;18085:18;;:::i;:::-;18071:2;18130:1;18127;18123:9;18115:17;;17992:146;;;;:::o;18144:96::-;18181:7;18210:24;18228:5;18210:24;:::i;:::-;18199:35;;18189:51;;;:::o;18246:90::-;18280:7;18323:5;18316:13;18309:21;18298:32;;18288:48;;;:::o;18342:126::-;18379:7;18419:42;18412:5;18408:54;18397:65;;18387:81;;;:::o;18474:77::-;18511:7;18540:5;18529:16;;18519:32;;;:::o;18557:86::-;18592:7;18632:4;18625:5;18621:16;18610:27;;18600:43;;;:::o;18649:307::-;18717:1;18727:113;18741:6;18738:1;18735:13;18727:113;;;18826:1;18821:3;18817:11;18811:18;18807:1;18802:3;18798:11;18791:39;18763:2;18760:1;18756:10;18751:15;;18727:113;;;18858:6;18855:1;18852:13;18849:2;;;18938:1;18929:6;18924:3;18920:16;18913:27;18849:2;18698:258;;;;:::o;18962:320::-;19006:6;19043:1;19037:4;19033:12;19023:22;;19090:1;19084:4;19080:12;19111:18;19101:2;;19167:4;19159:6;19155:17;19145:27;;19101:2;19229;19221:6;19218:14;19198:18;19195:38;19192:2;;;19248:18;;:::i;:::-;19192:2;19013:269;;;;:::o;19288:180::-;19336:77;19333:1;19326:88;19433:4;19430:1;19423:15;19457:4;19454:1;19447:15;19474:180;19522:77;19519:1;19512:88;19619:4;19616:1;19609:15;19643:4;19640:1;19633:15;19660:102;19701:6;19752:2;19748:7;19743:2;19736:5;19732:14;19728:28;19718:38;;19708:54;;;:::o;19768:222::-;19908:34;19904:1;19896:6;19892:14;19885:58;19977:5;19972:2;19964:6;19960:15;19953:30;19874:116;:::o;19996:221::-;20136:34;20132:1;20124:6;20120:14;20113:58;20205:4;20200:2;20192:6;20188:15;20181:29;20102:115;:::o;20223:159::-;20363:11;20359:1;20351:6;20347:14;20340:35;20329:53;:::o;20388:225::-;20528:34;20524:1;20516:6;20512:14;20505:58;20597:8;20592:2;20584:6;20580:15;20573:33;20494:119;:::o;20619:221::-;20759:34;20755:1;20747:6;20743:14;20736:58;20828:4;20823:2;20815:6;20811:15;20804:29;20725:115;:::o;20846:179::-;20986:31;20982:1;20974:6;20970:14;20963:55;20952:73;:::o;21031:225::-;21171:34;21167:1;21159:6;21155:14;21148:58;21240:8;21235:2;21227:6;21223:15;21216:33;21137:119;:::o;21262:160::-;21402:12;21398:1;21390:6;21386:14;21379:36;21368:54;:::o;21428:164::-;21568:16;21564:1;21556:6;21552:14;21545:40;21534:58;:::o;21598:182::-;21738:34;21734:1;21726:6;21722:14;21715:58;21704:76;:::o;21786:220::-;21926:34;21922:1;21914:6;21910:14;21903:58;21995:3;21990:2;21982:6;21978:15;21971:28;21892:114;:::o;22012:224::-;22152:34;22148:1;22140:6;22136:14;22129:58;22221:7;22216:2;22208:6;22204:15;22197:32;22118:118;:::o;22242:164::-;22382:16;22378:1;22370:6;22366:14;22359:40;22348:58;:::o;22412:223::-;22552:34;22548:1;22540:6;22536:14;22529:58;22621:6;22616:2;22608:6;22604:15;22597:31;22518:117;:::o;22641:224::-;22781:34;22777:1;22769:6;22765:14;22758:58;22850:7;22845:2;22837:6;22833:15;22826:32;22747:118;:::o;22871:181::-;23011:33;23007:1;22999:6;22995:14;22988:57;22977:75;:::o;23058:122::-;23131:24;23149:5;23131:24;:::i;:::-;23124:5;23121:35;23111:2;;23170:1;23167;23160:12;23111:2;23101:79;:::o;23186:122::-;23259:24;23277:5;23259:24;:::i;:::-;23252:5;23249:35;23239:2;;23298:1;23295;23288:12;23239:2;23229:79;:::o

Swarm Source

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