CRO Price: $0.14 (-1.29%)

Token

xTONIC (xTONIC)

Overview

Max Total Supply

37,567,890,622,203.224398973071218131 xTONIC

Holders

22,168

Market

Price

$0.00 @ 0.000000 CRO

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
VVS Finance: Router
Balance
0.000005888752051211 xTONIC

Value
$0.00
0x145863eb42cf62847a6ca784e6416c1682b1b2ae
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
xTonic

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-04-01
*/

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

// File openzeppelin-solidity/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT

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

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

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

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

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

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


// File openzeppelin-solidity/contracts/token/ERC20/extensions/[email protected]



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-solidity/contracts/utils/[email protected]



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-solidity/contracts/token/ERC20/[email protected]



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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File openzeppelin-solidity/contracts/token/ERC20/extensions/[email protected]



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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


// File openzeppelin-solidity/contracts/security/[email protected]



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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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-solidity/contracts/token/ERC20/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}


// File openzeppelin-solidity/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


// File openzeppelin-solidity/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File openzeppelin-solidity/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File openzeppelin-solidity/contracts/access/[email protected]



pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File openzeppelin-solidity/contracts/utils/structs/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


// File openzeppelin-solidity/contracts/access/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}


// File openzeppelin-solidity/contracts/token/ERC20/presets/[email protected]



pragma solidity ^0.8.0;





/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

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


// File contracts/StakingPool/xTonic.sol

pragma solidity ^0.8.0;

contract xTonic is ERC20PresetMinterPauser {
  
  constructor () ERC20PresetMinterPauser("xTONIC", "xTONIC") {}

  function transferMinterRole(address _newMinter) public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "xTONIC: must have admin role to transfer");
    grantRole(MINTER_ROLE, _newMinter);
    if (hasRole(MINTER_ROLE, _msgSender())) {
      revokeRole(MINTER_ROLE, _msgSender());
    }
  }
  
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMinter","type":"address"}],"name":"transferMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f78544f4e494300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f78544f4e49430000000000000000000000000000000000000000000000000000815250818181600590805190602001906200009892919062000413565b508060069080519060200190620000b192919062000413565b5050506000600760006101000a81548160ff021916908315150217905550620000f36000801b620000e76200017d60201b60201c565b6200018560201b60201c565b620001347f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001286200017d60201b60201c565b6200018560201b60201c565b620001757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001696200017d60201b60201c565b6200018560201b60201c565b505062000528565b600033905090565b6200019c8282620001cd60201b62000fef1760201c565b620001c88160016000858152602001908152602001600020620001e360201b62000ffd1790919060201c565b505050565b620001df82826200021b60201b60201c565b5050565b600062000213836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200030c60201b60201c565b905092915050565b6200022d82826200038660201b60201c565b6200030857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002ad6200017d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620003208383620003f060201b60201c565b6200037b57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000380565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200042190620004c3565b90600052602060002090601f01602090048101928262000445576000855562000491565b82601f106200046057805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049057825182559160200191906001019062000473565b5b509050620004a09190620004a4565b5090565b5b80821115620004bf576000816000905550600101620004a5565b5090565b60006002820490506001821680620004dc57607f821691505b60208210811415620004f357620004f2620004f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6135bd80620005386000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a457c2d7116100a2578063d539139311610071578063d539139314610554578063d547741f14610572578063dd62ed3e1461058e578063e63ab1e9146105be576101cf565b8063a457c2d7146104a8578063a9059cbb146104d8578063b8bf60f914610508578063ca15c87314610524576101cf565b80639010d07c116100de5780639010d07c1461040c57806391d148541461043c57806395d89b411461046c578063a217fddf1461048a576101cf565b806370a08231146103b657806379cc6790146103e65780638456cb5914610402576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612545565b6105dc565b6040516101fb91906129a3565b60405180910390f35b61020c610656565b60405161021991906129d9565b60405180910390f35b61023c60048036038101906102379190612468565b6106e8565b60405161024991906129a3565b60405180910390f35b61025a610706565b6040516102679190612c7b565b60405180910390f35b61028a60048036038101906102859190612419565b610710565b60405161029791906129a3565b60405180910390f35b6102ba60048036038101906102b591906124a4565b610808565b6040516102c791906129be565b60405180910390f35b6102ea60048036038101906102e591906124cd565b610827565b005b6102f461085b565b6040516103019190612c96565b60405180910390f35b610324600480360381019061031f91906124cd565b610864565b005b610340600480360381019061033b9190612468565b610898565b60405161034d91906129a3565b60405180910390f35b61035e610944565b005b61037a60048036038101906103759190612468565b6109be565b005b6103966004803603810190610391919061256e565b610a3c565b005b6103a0610a50565b6040516103ad91906129a3565b60405180910390f35b6103d060048036038101906103cb91906123b4565b610a67565b6040516103dd9190612c7b565b60405180910390f35b61040060048036038101906103fb9190612468565b610ab0565b005b61040a610b2b565b005b61042660048036038101906104219190612509565b610ba5565b6040516104339190612988565b60405180910390f35b610456600480360381019061045191906124cd565b610bd4565b60405161046391906129a3565b60405180910390f35b610474610c3e565b60405161048191906129d9565b60405180910390f35b610492610cd0565b60405161049f91906129be565b60405180910390f35b6104c260048036038101906104bd9190612468565b610cd7565b6040516104cf91906129a3565b60405180910390f35b6104f260048036038101906104ed9190612468565b610dc2565b6040516104ff91906129a3565b60405180910390f35b610522600480360381019061051d91906123b4565b610de0565b005b61053e600480360381019061053991906124a4565b610ec8565b60405161054b9190612c7b565b60405180910390f35b61055c610eec565b60405161056991906129be565b60405180910390f35b61058c600480360381019061058791906124cd565b610f10565b005b6105a860048036038101906105a391906123dd565b610f44565b6040516105b59190612c7b565b60405180910390f35b6105c6610fcb565b6040516105d391906129be565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064f575061064e8261102d565b5b9050919050565b60606005805461066590612ea4565b80601f016020809104026020016040519081016040528092919081815260200182805461069190612ea4565b80156106de5780601f106106b3576101008083540402835291602001916106de565b820191906000526020600020905b8154815290600101906020018083116106c157829003601f168201915b5050505050905090565b60006106fc6106f56110a7565b84846110af565b6001905092915050565b6000600454905090565b600061071d84848461127a565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107686110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90612b1b565b60405180910390fd5b6107fc856107f46110a7565b8584036110af565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61083182826114fe565b6108568160016000858152602001908152602001600020610ffd90919063ffffffff16565b505050565b60006012905090565b61086e8282611527565b61089381600160008581526020019081526020016000206115aa90919063ffffffff16565b505050565b600061093a6108a56110a7565b8484600360006108b36110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109359190612cd8565b6110af565b6001905092915050565b6109757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109706110a7565b610bd4565b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90612a9b565b60405180910390fd5b6109bc6115da565b565b6109ef7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109ea6110a7565b610bd4565b610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590612b3b565b60405180910390fd5b610a38828261167c565b5050565b610a4d610a476110a7565b826117dd565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610ac383610abe6110a7565b610f44565b905081811015610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612b5b565b60405180910390fd5b610b1c83610b146110a7565b8484036110af565b610b2683836117dd565b505050565b610b5c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b576110a7565b610bd4565b610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290612bdb565b60405180910390fd5b610ba36119b6565b565b6000610bcc8260016000868152602001908152602001600020611a5990919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c4d90612ea4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7990612ea4565b8015610cc65780601f10610c9b57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610ca957829003601f168201915b5050505050905090565b6000801b81565b60008060036000610ce66110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90612bfb565b60405180910390fd5b610db7610dae6110a7565b858584036110af565b600191505092915050565b6000610dd6610dcf6110a7565b848461127a565b6001905092915050565b610df46000801b610def6110a7565b610bd4565b610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612a7b565b60405180910390fd5b610e5d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682610827565b610e8e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610e896110a7565b610bd4565b15610ec557610ec47f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ebf6110a7565b610f10565b5b50565b6000610ee560016000848152602001908152602001600020611a73565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f1a8282611a88565b610f3f81600160008581526020019081526020016000206115aa90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610ff98282611ab1565b5050565b6000611025836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611b91565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110a0575061109f82611c01565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690612bbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690612abb565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161126d9190612c7b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612b9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612a1b565b60405180910390fd5b611365838383611c6b565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e390612adb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114819190612cd8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114e59190612c7b565b60405180910390a36114f8848484611c7b565b50505050565b61150782610808565b611518816115136110a7565b611c80565b6115228383611ab1565b505050565b61152f6110a7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390612c1b565b60405180910390fd5b6115a68282611d1d565b5050565b60006115d2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611dfe565b905092915050565b6115e2610a50565b611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890612a3b565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116656110a7565b6040516116729190612988565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390612c3b565b60405180910390fd5b6116f860008383611c6b565b806004600082825461170a9190612cd8565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117609190612cd8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117c59190612c7b565b60405180910390a36117d960008383611c7b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490612b7b565b60405180910390fd5b61185982600083611c6b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790612a5b565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546119389190612d88565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161199d9190612c7b565b60405180910390a36119b183600084611c7b565b505050565b6119be610a50565b156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590612afb565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a426110a7565b604051611a4f9190612988565b60405180910390a1565b6000611a688360000183611f84565b60001c905092915050565b6000611a8182600001611fd5565b9050919050565b611a9182610808565b611aa281611a9d6110a7565b611c80565b611aac8383611d1d565b505050565b611abb8282610bd4565b611b8d57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b326110a7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611b9d8383611fe6565b611bf6578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611bfb565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c76838383612009565b505050565b505050565b611c8a8282610bd4565b611d1957611caf8173ffffffffffffffffffffffffffffffffffffffff166014612061565b611cbd8360001c6020612061565b604051602001611cce92919061294e565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1091906129d9565b60405180910390fd5b5050565b611d278282610bd4565b15611dfa57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d9f6110a7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611f78576000600182611e309190612d88565b9050600060018660000180549050611e489190612d88565b9050818114611f03576000866000018281548110611e8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611ed9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611f3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611f7e565b60009150505b92915050565b6000826000018281548110611fc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b61201483838361235b565b61201c610a50565b1561205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390612c5b565b60405180910390fd5b505050565b6060600060028360026120749190612d2e565b61207e9190612cd8565b67ffffffffffffffff8111156120bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120ef5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061214d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026122179190612d2e565b6122219190612cd8565b90505b600181111561230d577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612289577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061230690612e7a565b9050612224565b5060008414612351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612348906129fb565b60405180910390fd5b8091505092915050565b505050565b60008135905061236f8161352b565b92915050565b60008135905061238481613542565b92915050565b60008135905061239981613559565b92915050565b6000813590506123ae81613570565b92915050565b6000602082840312156123c657600080fd5b60006123d484828501612360565b91505092915050565b600080604083850312156123f057600080fd5b60006123fe85828601612360565b925050602061240f85828601612360565b9150509250929050565b60008060006060848603121561242e57600080fd5b600061243c86828701612360565b935050602061244d86828701612360565b925050604061245e8682870161239f565b9150509250925092565b6000806040838503121561247b57600080fd5b600061248985828601612360565b925050602061249a8582860161239f565b9150509250929050565b6000602082840312156124b657600080fd5b60006124c484828501612375565b91505092915050565b600080604083850312156124e057600080fd5b60006124ee85828601612375565b92505060206124ff85828601612360565b9150509250929050565b6000806040838503121561251c57600080fd5b600061252a85828601612375565b925050602061253b8582860161239f565b9150509250929050565b60006020828403121561255757600080fd5b60006125658482850161238a565b91505092915050565b60006020828403121561258057600080fd5b600061258e8482850161239f565b91505092915050565b6125a081612dbc565b82525050565b6125af81612dce565b82525050565b6125be81612dda565b82525050565b60006125cf82612cb1565b6125d98185612cbc565b93506125e9818560208601612e47565b6125f281612f34565b840191505092915050565b600061260882612cb1565b6126128185612ccd565b9350612622818560208601612e47565b80840191505092915050565b600061263b602083612cbc565b915061264682612f45565b602082019050919050565b600061265e602383612cbc565b915061266982612f6e565b604082019050919050565b6000612681601483612cbc565b915061268c82612fbd565b602082019050919050565b60006126a4602283612cbc565b91506126af82612fe6565b604082019050919050565b60006126c7602883612cbc565b91506126d282613035565b604082019050919050565b60006126ea603983612cbc565b91506126f582613084565b604082019050919050565b600061270d602283612cbc565b9150612718826130d3565b604082019050919050565b6000612730602683612cbc565b915061273b82613122565b604082019050919050565b6000612753601083612cbc565b915061275e82613171565b602082019050919050565b6000612776602883612cbc565b91506127818261319a565b604082019050919050565b6000612799603683612cbc565b91506127a4826131e9565b604082019050919050565b60006127bc602483612cbc565b91506127c782613238565b604082019050919050565b60006127df602183612cbc565b91506127ea82613287565b604082019050919050565b6000612802602583612cbc565b915061280d826132d6565b604082019050919050565b6000612825602483612cbc565b915061283082613325565b604082019050919050565b6000612848603783612cbc565b915061285382613374565b604082019050919050565b600061286b601783612ccd565b9150612876826133c3565b601782019050919050565b600061288e602583612cbc565b9150612899826133ec565b604082019050919050565b60006128b1601183612ccd565b91506128bc8261343b565b601182019050919050565b60006128d4602f83612cbc565b91506128df82613464565b604082019050919050565b60006128f7601f83612cbc565b9150612902826134b3565b602082019050919050565b600061291a602a83612cbc565b9150612925826134dc565b604082019050919050565b61293981612e30565b82525050565b61294881612e3a565b82525050565b60006129598261285e565b915061296582856125fd565b9150612970826128a4565b915061297c82846125fd565b91508190509392505050565b600060208201905061299d6000830184612597565b92915050565b60006020820190506129b860008301846125a6565b92915050565b60006020820190506129d360008301846125b5565b92915050565b600060208201905081810360008301526129f381846125c4565b905092915050565b60006020820190508181036000830152612a148161262e565b9050919050565b60006020820190508181036000830152612a3481612651565b9050919050565b60006020820190508181036000830152612a5481612674565b9050919050565b60006020820190508181036000830152612a7481612697565b9050919050565b60006020820190508181036000830152612a94816126ba565b9050919050565b60006020820190508181036000830152612ab4816126dd565b9050919050565b60006020820190508181036000830152612ad481612700565b9050919050565b60006020820190508181036000830152612af481612723565b9050919050565b60006020820190508181036000830152612b1481612746565b9050919050565b60006020820190508181036000830152612b3481612769565b9050919050565b60006020820190508181036000830152612b548161278c565b9050919050565b60006020820190508181036000830152612b74816127af565b9050919050565b60006020820190508181036000830152612b94816127d2565b9050919050565b60006020820190508181036000830152612bb4816127f5565b9050919050565b60006020820190508181036000830152612bd481612818565b9050919050565b60006020820190508181036000830152612bf48161283b565b9050919050565b60006020820190508181036000830152612c1481612881565b9050919050565b60006020820190508181036000830152612c34816128c7565b9050919050565b60006020820190508181036000830152612c54816128ea565b9050919050565b60006020820190508181036000830152612c748161290d565b9050919050565b6000602082019050612c906000830184612930565b92915050565b6000602082019050612cab600083018461293f565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612ce382612e30565b9150612cee83612e30565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d2357612d22612ed6565b5b828201905092915050565b6000612d3982612e30565b9150612d4483612e30565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7d57612d7c612ed6565b5b828202905092915050565b6000612d9382612e30565b9150612d9e83612e30565b925082821015612db157612db0612ed6565b5b828203905092915050565b6000612dc782612e10565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e65578082015181840152602081019050612e4a565b83811115612e74576000848401525b50505050565b6000612e8582612e30565b91506000821415612e9957612e98612ed6565b5b600182039050919050565b60006002820490506001821680612ebc57607f821691505b60208210811415612ed057612ecf612f05565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f78544f4e49433a206d75737420686176652061646d696e20726f6c6520746f2060008201527f7472616e73666572000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61353481612dbc565b811461353f57600080fd5b50565b61354b81612dda565b811461355657600080fd5b50565b61356281612de4565b811461356d57600080fd5b50565b61357981612e30565b811461358457600080fd5b5056fea26469706673582212209732294124a68efa7927945ce2cfaba53adbc00d500d87ae2c0f839b831985da64736f6c63430008030033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a457c2d7116100a2578063d539139311610071578063d539139314610554578063d547741f14610572578063dd62ed3e1461058e578063e63ab1e9146105be576101cf565b8063a457c2d7146104a8578063a9059cbb146104d8578063b8bf60f914610508578063ca15c87314610524576101cf565b80639010d07c116100de5780639010d07c1461040c57806391d148541461043c57806395d89b411461046c578063a217fddf1461048a576101cf565b806370a08231146103b657806379cc6790146103e65780638456cb5914610402576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612545565b6105dc565b6040516101fb91906129a3565b60405180910390f35b61020c610656565b60405161021991906129d9565b60405180910390f35b61023c60048036038101906102379190612468565b6106e8565b60405161024991906129a3565b60405180910390f35b61025a610706565b6040516102679190612c7b565b60405180910390f35b61028a60048036038101906102859190612419565b610710565b60405161029791906129a3565b60405180910390f35b6102ba60048036038101906102b591906124a4565b610808565b6040516102c791906129be565b60405180910390f35b6102ea60048036038101906102e591906124cd565b610827565b005b6102f461085b565b6040516103019190612c96565b60405180910390f35b610324600480360381019061031f91906124cd565b610864565b005b610340600480360381019061033b9190612468565b610898565b60405161034d91906129a3565b60405180910390f35b61035e610944565b005b61037a60048036038101906103759190612468565b6109be565b005b6103966004803603810190610391919061256e565b610a3c565b005b6103a0610a50565b6040516103ad91906129a3565b60405180910390f35b6103d060048036038101906103cb91906123b4565b610a67565b6040516103dd9190612c7b565b60405180910390f35b61040060048036038101906103fb9190612468565b610ab0565b005b61040a610b2b565b005b61042660048036038101906104219190612509565b610ba5565b6040516104339190612988565b60405180910390f35b610456600480360381019061045191906124cd565b610bd4565b60405161046391906129a3565b60405180910390f35b610474610c3e565b60405161048191906129d9565b60405180910390f35b610492610cd0565b60405161049f91906129be565b60405180910390f35b6104c260048036038101906104bd9190612468565b610cd7565b6040516104cf91906129a3565b60405180910390f35b6104f260048036038101906104ed9190612468565b610dc2565b6040516104ff91906129a3565b60405180910390f35b610522600480360381019061051d91906123b4565b610de0565b005b61053e600480360381019061053991906124a4565b610ec8565b60405161054b9190612c7b565b60405180910390f35b61055c610eec565b60405161056991906129be565b60405180910390f35b61058c600480360381019061058791906124cd565b610f10565b005b6105a860048036038101906105a391906123dd565b610f44565b6040516105b59190612c7b565b60405180910390f35b6105c6610fcb565b6040516105d391906129be565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064f575061064e8261102d565b5b9050919050565b60606005805461066590612ea4565b80601f016020809104026020016040519081016040528092919081815260200182805461069190612ea4565b80156106de5780601f106106b3576101008083540402835291602001916106de565b820191906000526020600020905b8154815290600101906020018083116106c157829003601f168201915b5050505050905090565b60006106fc6106f56110a7565b84846110af565b6001905092915050565b6000600454905090565b600061071d84848461127a565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107686110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90612b1b565b60405180910390fd5b6107fc856107f46110a7565b8584036110af565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61083182826114fe565b6108568160016000858152602001908152602001600020610ffd90919063ffffffff16565b505050565b60006012905090565b61086e8282611527565b61089381600160008581526020019081526020016000206115aa90919063ffffffff16565b505050565b600061093a6108a56110a7565b8484600360006108b36110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109359190612cd8565b6110af565b6001905092915050565b6109757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109706110a7565b610bd4565b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90612a9b565b60405180910390fd5b6109bc6115da565b565b6109ef7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109ea6110a7565b610bd4565b610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590612b3b565b60405180910390fd5b610a38828261167c565b5050565b610a4d610a476110a7565b826117dd565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610ac383610abe6110a7565b610f44565b905081811015610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612b5b565b60405180910390fd5b610b1c83610b146110a7565b8484036110af565b610b2683836117dd565b505050565b610b5c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b576110a7565b610bd4565b610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290612bdb565b60405180910390fd5b610ba36119b6565b565b6000610bcc8260016000868152602001908152602001600020611a5990919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c4d90612ea4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7990612ea4565b8015610cc65780601f10610c9b57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610ca957829003601f168201915b5050505050905090565b6000801b81565b60008060036000610ce66110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90612bfb565b60405180910390fd5b610db7610dae6110a7565b858584036110af565b600191505092915050565b6000610dd6610dcf6110a7565b848461127a565b6001905092915050565b610df46000801b610def6110a7565b610bd4565b610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612a7b565b60405180910390fd5b610e5d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682610827565b610e8e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610e896110a7565b610bd4565b15610ec557610ec47f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ebf6110a7565b610f10565b5b50565b6000610ee560016000848152602001908152602001600020611a73565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f1a8282611a88565b610f3f81600160008581526020019081526020016000206115aa90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610ff98282611ab1565b5050565b6000611025836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611b91565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110a0575061109f82611c01565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690612bbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690612abb565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161126d9190612c7b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612b9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612a1b565b60405180910390fd5b611365838383611c6b565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e390612adb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114819190612cd8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114e59190612c7b565b60405180910390a36114f8848484611c7b565b50505050565b61150782610808565b611518816115136110a7565b611c80565b6115228383611ab1565b505050565b61152f6110a7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390612c1b565b60405180910390fd5b6115a68282611d1d565b5050565b60006115d2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611dfe565b905092915050565b6115e2610a50565b611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890612a3b565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116656110a7565b6040516116729190612988565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390612c3b565b60405180910390fd5b6116f860008383611c6b565b806004600082825461170a9190612cd8565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117609190612cd8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117c59190612c7b565b60405180910390a36117d960008383611c7b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490612b7b565b60405180910390fd5b61185982600083611c6b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790612a5b565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546119389190612d88565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161199d9190612c7b565b60405180910390a36119b183600084611c7b565b505050565b6119be610a50565b156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590612afb565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a426110a7565b604051611a4f9190612988565b60405180910390a1565b6000611a688360000183611f84565b60001c905092915050565b6000611a8182600001611fd5565b9050919050565b611a9182610808565b611aa281611a9d6110a7565b611c80565b611aac8383611d1d565b505050565b611abb8282610bd4565b611b8d57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b326110a7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611b9d8383611fe6565b611bf6578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611bfb565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c76838383612009565b505050565b505050565b611c8a8282610bd4565b611d1957611caf8173ffffffffffffffffffffffffffffffffffffffff166014612061565b611cbd8360001c6020612061565b604051602001611cce92919061294e565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1091906129d9565b60405180910390fd5b5050565b611d278282610bd4565b15611dfa57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d9f6110a7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611f78576000600182611e309190612d88565b9050600060018660000180549050611e489190612d88565b9050818114611f03576000866000018281548110611e8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611ed9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611f3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611f7e565b60009150505b92915050565b6000826000018281548110611fc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b61201483838361235b565b61201c610a50565b1561205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390612c5b565b60405180910390fd5b505050565b6060600060028360026120749190612d2e565b61207e9190612cd8565b67ffffffffffffffff8111156120bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120ef5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061214d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026122179190612d2e565b6122219190612cd8565b90505b600181111561230d577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612289577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061230690612e7a565b9050612224565b5060008414612351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612348906129fb565b60405180910390fd5b8091505092915050565b505050565b60008135905061236f8161352b565b92915050565b60008135905061238481613542565b92915050565b60008135905061239981613559565b92915050565b6000813590506123ae81613570565b92915050565b6000602082840312156123c657600080fd5b60006123d484828501612360565b91505092915050565b600080604083850312156123f057600080fd5b60006123fe85828601612360565b925050602061240f85828601612360565b9150509250929050565b60008060006060848603121561242e57600080fd5b600061243c86828701612360565b935050602061244d86828701612360565b925050604061245e8682870161239f565b9150509250925092565b6000806040838503121561247b57600080fd5b600061248985828601612360565b925050602061249a8582860161239f565b9150509250929050565b6000602082840312156124b657600080fd5b60006124c484828501612375565b91505092915050565b600080604083850312156124e057600080fd5b60006124ee85828601612375565b92505060206124ff85828601612360565b9150509250929050565b6000806040838503121561251c57600080fd5b600061252a85828601612375565b925050602061253b8582860161239f565b9150509250929050565b60006020828403121561255757600080fd5b60006125658482850161238a565b91505092915050565b60006020828403121561258057600080fd5b600061258e8482850161239f565b91505092915050565b6125a081612dbc565b82525050565b6125af81612dce565b82525050565b6125be81612dda565b82525050565b60006125cf82612cb1565b6125d98185612cbc565b93506125e9818560208601612e47565b6125f281612f34565b840191505092915050565b600061260882612cb1565b6126128185612ccd565b9350612622818560208601612e47565b80840191505092915050565b600061263b602083612cbc565b915061264682612f45565b602082019050919050565b600061265e602383612cbc565b915061266982612f6e565b604082019050919050565b6000612681601483612cbc565b915061268c82612fbd565b602082019050919050565b60006126a4602283612cbc565b91506126af82612fe6565b604082019050919050565b60006126c7602883612cbc565b91506126d282613035565b604082019050919050565b60006126ea603983612cbc565b91506126f582613084565b604082019050919050565b600061270d602283612cbc565b9150612718826130d3565b604082019050919050565b6000612730602683612cbc565b915061273b82613122565b604082019050919050565b6000612753601083612cbc565b915061275e82613171565b602082019050919050565b6000612776602883612cbc565b91506127818261319a565b604082019050919050565b6000612799603683612cbc565b91506127a4826131e9565b604082019050919050565b60006127bc602483612cbc565b91506127c782613238565b604082019050919050565b60006127df602183612cbc565b91506127ea82613287565b604082019050919050565b6000612802602583612cbc565b915061280d826132d6565b604082019050919050565b6000612825602483612cbc565b915061283082613325565b604082019050919050565b6000612848603783612cbc565b915061285382613374565b604082019050919050565b600061286b601783612ccd565b9150612876826133c3565b601782019050919050565b600061288e602583612cbc565b9150612899826133ec565b604082019050919050565b60006128b1601183612ccd565b91506128bc8261343b565b601182019050919050565b60006128d4602f83612cbc565b91506128df82613464565b604082019050919050565b60006128f7601f83612cbc565b9150612902826134b3565b602082019050919050565b600061291a602a83612cbc565b9150612925826134dc565b604082019050919050565b61293981612e30565b82525050565b61294881612e3a565b82525050565b60006129598261285e565b915061296582856125fd565b9150612970826128a4565b915061297c82846125fd565b91508190509392505050565b600060208201905061299d6000830184612597565b92915050565b60006020820190506129b860008301846125a6565b92915050565b60006020820190506129d360008301846125b5565b92915050565b600060208201905081810360008301526129f381846125c4565b905092915050565b60006020820190508181036000830152612a148161262e565b9050919050565b60006020820190508181036000830152612a3481612651565b9050919050565b60006020820190508181036000830152612a5481612674565b9050919050565b60006020820190508181036000830152612a7481612697565b9050919050565b60006020820190508181036000830152612a94816126ba565b9050919050565b60006020820190508181036000830152612ab4816126dd565b9050919050565b60006020820190508181036000830152612ad481612700565b9050919050565b60006020820190508181036000830152612af481612723565b9050919050565b60006020820190508181036000830152612b1481612746565b9050919050565b60006020820190508181036000830152612b3481612769565b9050919050565b60006020820190508181036000830152612b548161278c565b9050919050565b60006020820190508181036000830152612b74816127af565b9050919050565b60006020820190508181036000830152612b94816127d2565b9050919050565b60006020820190508181036000830152612bb4816127f5565b9050919050565b60006020820190508181036000830152612bd481612818565b9050919050565b60006020820190508181036000830152612bf48161283b565b9050919050565b60006020820190508181036000830152612c1481612881565b9050919050565b60006020820190508181036000830152612c34816128c7565b9050919050565b60006020820190508181036000830152612c54816128ea565b9050919050565b60006020820190508181036000830152612c748161290d565b9050919050565b6000602082019050612c906000830184612930565b92915050565b6000602082019050612cab600083018461293f565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612ce382612e30565b9150612cee83612e30565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d2357612d22612ed6565b5b828201905092915050565b6000612d3982612e30565b9150612d4483612e30565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7d57612d7c612ed6565b5b828202905092915050565b6000612d9382612e30565b9150612d9e83612e30565b925082821015612db157612db0612ed6565b5b828203905092915050565b6000612dc782612e10565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e65578082015181840152602081019050612e4a565b83811115612e74576000848401525b50505050565b6000612e8582612e30565b91506000821415612e9957612e98612ed6565b5b600182039050919050565b60006002820490506001821680612ebc57607f821691505b60208210811415612ed057612ecf612f05565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f78544f4e49433a206d75737420686176652061646d696e20726f6c6520746f2060008201527f7472616e73666572000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61353481612dbc565b811461353f57600080fd5b50565b61354b81612dda565b811461355657600080fd5b50565b61356281612de4565b811461356d57600080fd5b50565b61357981612e30565b811461358457600080fd5b5056fea26469706673582212209732294124a68efa7927945ce2cfaba53adbc00d500d87ae2c0f839b831985da64736f6c63430008030033

Deployed Bytecode Sourcemap

49163:429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43963:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6547:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8714:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7667:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9365:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30426:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45321:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7509:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45844:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10266:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48680:178;;;:::i;:::-;;47871:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17013:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18886:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7838:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17423:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48290:172;;;:::i;:::-;;44776:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29311:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6766:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27289:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10984:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8178:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49282:303;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45095:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47113:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45579:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8416:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47182:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43963:214;44048:4;44087:42;44072:57;;;:11;:57;;;;:97;;;;44133:36;44157:11;44133:23;:36::i;:::-;44072:97;44065:104;;43963:214;;;:::o;6547:100::-;6601:13;6634:5;6627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6547:100;:::o;8714:169::-;8797:4;8814:39;8823:12;:10;:12::i;:::-;8837:7;8846:6;8814:8;:39::i;:::-;8871:4;8864:11;;8714:169;;;;:::o;7667:108::-;7728:7;7755:12;;7748:19;;7667:108;:::o;9365:492::-;9505:4;9522:36;9532:6;9540:9;9551:6;9522:9;:36::i;:::-;9571:24;9598:11;:19;9610:6;9598:19;;;;;;;;;;;;;;;:33;9618:12;:10;:12::i;:::-;9598:33;;;;;;;;;;;;;;;;9571:60;;9670:6;9650:16;:26;;9642:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9757:57;9766:6;9774:12;:10;:12::i;:::-;9807:6;9788:16;:25;9757:8;:57::i;:::-;9845:4;9838:11;;;9365:492;;;;;:::o;30426:123::-;30492:7;30519:6;:12;30526:4;30519:12;;;;;;;;;;;:22;;;30512:29;;30426:123;;;:::o;45321:165::-;45406:30;45422:4;45428:7;45406:15;:30::i;:::-;45447:31;45470:7;45447:12;:18;45460:4;45447:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;45321:165;;:::o;7509:93::-;7567:5;7592:2;7585:9;;7509:93;:::o;45844:174::-;45932:33;45951:4;45957:7;45932:18;:33::i;:::-;45976:34;46002:7;45976:12;:18;45989:4;45976:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;45844:174;;:::o;10266:215::-;10354:4;10371:80;10380:12;:10;:12::i;:::-;10394:7;10440:10;10403:11;:25;10415:12;:10;:12::i;:::-;10403:25;;;;;;;;;;;;;;;:34;10429:7;10403:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10371:8;:80::i;:::-;10469:4;10462:11;;10266:215;;;;:::o;48680:178::-;48733:34;47220:24;48754:12;:10;:12::i;:::-;48733:7;:34::i;:::-;48725:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;48840:10;:8;:10::i;:::-;48680:178::o;47871:205::-;47947:34;47151:24;47968:12;:10;:12::i;:::-;47947:7;:34::i;:::-;47939:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;48051:17;48057:2;48061:6;48051:5;:17::i;:::-;47871:205;;:::o;17013:91::-;17069:27;17075:12;:10;:12::i;:::-;17089:6;17069:5;:27::i;:::-;17013:91;:::o;18886:86::-;18933:4;18957:7;;;;;;;;;;;18950:14;;18886:86;:::o;7838:127::-;7912:7;7939:9;:18;7949:7;7939:18;;;;;;;;;;;;;;;;7932:25;;7838:127;;;:::o;17423:368::-;17500:24;17527:32;17537:7;17546:12;:10;:12::i;:::-;17527:9;:32::i;:::-;17500:59;;17598:6;17578:16;:26;;17570:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;17681:58;17690:7;17699:12;:10;:12::i;:::-;17732:6;17713:16;:25;17681:8;:58::i;:::-;17761:22;17767:7;17776:6;17761:5;:22::i;:::-;17423:368;;;:::o;48290:172::-;48341:34;47220:24;48362:12;:10;:12::i;:::-;48341:7;:34::i;:::-;48333:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;48446:8;:6;:8::i;:::-;48290:172::o;44776:145::-;44858:7;44885:28;44907:5;44885:12;:18;44898:4;44885:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;44878:35;;44776:145;;;;:::o;29311:139::-;29389:4;29413:6;:12;29420:4;29413:12;;;;;;;;;;;:20;;:29;29434:7;29413:29;;;;;;;;;;;;;;;;;;;;;;;;;29406:36;;29311:139;;;;:::o;6766:104::-;6822:13;6855:7;6848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6766:104;:::o;27289:49::-;27334:4;27289:49;;;:::o;10984:413::-;11077:4;11094:24;11121:11;:25;11133:12;:10;:12::i;:::-;11121:25;;;;;;;;;;;;;;;:34;11147:7;11121:34;;;;;;;;;;;;;;;;11094:61;;11194:15;11174:16;:35;;11166:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11287:67;11296:12;:10;:12::i;:::-;11310:7;11338:15;11319:16;:34;11287:8;:67::i;:::-;11385:4;11378:11;;;10984:413;;;;:::o;8178:175::-;8264:4;8281:42;8291:12;:10;:12::i;:::-;8305:9;8316:6;8281:9;:42::i;:::-;8341:4;8334:11;;8178:175;;;;:::o;49282:303::-;49352:41;27334:4;49360:18;;49380:12;:10;:12::i;:::-;49352:7;:41::i;:::-;49344:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49445:34;47151:24;49468:10;49445:9;:34::i;:::-;49490;47151:24;49511:12;:10;:12::i;:::-;49490:7;:34::i;:::-;49486:94;;;49535:37;47151:24;49559:12;:10;:12::i;:::-;49535:10;:37::i;:::-;49486:94;49282:303;:::o;45095:134::-;45167:7;45194:27;:12;:18;45207:4;45194:18;;;;;;;;;;;:25;:27::i;:::-;45187:34;;45095:134;;;:::o;47113:62::-;47151:24;47113:62;:::o;45579:170::-;45665:31;45682:4;45688:7;45665:16;:31::i;:::-;45707:34;45733:7;45707:12;:18;45720:4;45707:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;45579:170;;:::o;8416:151::-;8505:7;8532:11;:18;8544:5;8532:18;;;;;;;;;;;;;;;:27;8551:7;8532:27;;;;;;;;;;;;;;;;8525:34;;8416:151;;;;:::o;47182:62::-;47220:24;47182:62;:::o;32660:112::-;32739:25;32750:4;32756:7;32739:10;:25::i;:::-;32660:112;;:::o;40064:152::-;40134:4;40158:50;40163:3;:10;;40199:5;40183:23;;40175:32;;40158:4;:50::i;:::-;40151:57;;40064:152;;;;:::o;29015:204::-;29100:4;29139:32;29124:47;;;:11;:47;;;;:87;;;;29175:36;29199:11;29175:23;:36::i;:::-;29124:87;29117:94;;29015:204;;;:::o;4257:98::-;4310:7;4337:10;4330:17;;4257:98;:::o;14668:380::-;14821:1;14804:19;;:5;:19;;;;14796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14902:1;14883:21;;:7;:21;;;;14875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14986:6;14956:11;:18;14968:5;14956:18;;;;;;;;;;;;;;;:27;14975:7;14956:27;;;;;;;;;;;;;;;:36;;;;15024:7;15008:32;;15017:5;15008:32;;;15033:6;15008:32;;;;;;:::i;:::-;;;;;;;;14668:380;;;:::o;11887:733::-;12045:1;12027:20;;:6;:20;;;;12019:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12129:1;12108:23;;:9;:23;;;;12100:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12184:47;12205:6;12213:9;12224:6;12184:20;:47::i;:::-;12244:21;12268:9;:17;12278:6;12268:17;;;;;;;;;;;;;;;;12244:41;;12321:6;12304:13;:23;;12296:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:6;12426:13;:22;12406:9;:17;12416:6;12406:17;;;;;;;;;;;;;;;:42;;;;12494:6;12470:9;:20;12480:9;12470:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12535:9;12518:35;;12527:6;12518:35;;;12546:6;12518:35;;;;;;:::i;:::-;;;;;;;;12566:46;12586:6;12594:9;12605:6;12566:19;:46::i;:::-;11887:733;;;;:::o;30811:147::-;30894:18;30907:4;30894:12;:18::i;:::-;28893:30;28904:4;28910:12;:10;:12::i;:::-;28893:10;:30::i;:::-;30925:25:::1;30936:4;30942:7;30925:10;:25::i;:::-;30811:147:::0;;;:::o;31859:218::-;31966:12;:10;:12::i;:::-;31955:23;;:7;:23;;;31947:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;32043:26;32055:4;32061:7;32043:11;:26::i;:::-;31859:218;;:::o;40392:158::-;40465:4;40489:53;40497:3;:10;;40533:5;40517:23;;40509:32;;40489:7;:53::i;:::-;40482:60;;40392:158;;;;:::o;19945:120::-;19489:8;:6;:8::i;:::-;19481:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;20014:5:::1;20004:7;;:15;;;;;;;;;;;;;;;;;;20035:22;20044:12;:10;:12::i;:::-;20035:22;;;;;;:::i;:::-;;;;;;;;19945:120::o:0;12907:399::-;13010:1;12991:21;;:7;:21;;;;12983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13061:49;13090:1;13094:7;13103:6;13061:20;:49::i;:::-;13139:6;13123:12;;:22;;;;;;;:::i;:::-;;;;;;;;13178:6;13156:9;:18;13166:7;13156:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13221:7;13200:37;;13217:1;13200:37;;;13230:6;13200:37;;;;;;:::i;:::-;;;;;;;;13250:48;13278:1;13282:7;13291:6;13250:19;:48::i;:::-;12907:399;;:::o;13639:591::-;13742:1;13723:21;;:7;:21;;;;13715:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13795:49;13816:7;13833:1;13837:6;13795:20;:49::i;:::-;13857:22;13882:9;:18;13892:7;13882:18;;;;;;;;;;;;;;;;13857:43;;13937:6;13919:14;:24;;13911:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14056:6;14039:14;:23;14018:9;:18;14028:7;14018:18;;;;;;;;;;;;;;;:44;;;;14100:6;14084:12;;:22;;;;;;;:::i;:::-;;;;;;;;14150:1;14124:37;;14133:7;14124:37;;;14154:6;14124:37;;;;;;:::i;:::-;;;;;;;;14174:48;14194:7;14211:1;14215:6;14174:19;:48::i;:::-;13639:591;;;:::o;19686:118::-;19212:8;:6;:8::i;:::-;19211:9;19203:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19756:4:::1;19746:7;;:14;;;;;;;;;;;;;;;;;;19776:20;19783:12;:10;:12::i;:::-;19776:20;;;;;;:::i;:::-;;;;;;;;19686:118::o:0;41360:158::-;41434:7;41485:22;41489:3;:10;;41501:5;41485:3;:22::i;:::-;41477:31;;41454:56;;41360:158;;;;:::o;40889:117::-;40952:7;40979:19;40987:3;:10;;40979:7;:19::i;:::-;40972:26;;40889:117;;;:::o;31203:149::-;31287:18;31300:4;31287:12;:18::i;:::-;28893:30;28904:4;28910:12;:10;:12::i;:::-;28893:10;:30::i;:::-;31318:26:::1;31330:4;31336:7;31318:11;:26::i;:::-;31203:149:::0;;;:::o;33107:229::-;33182:22;33190:4;33196:7;33182;:22::i;:::-;33177:152;;33253:4;33221:6;:12;33228:4;33221:12;;;;;;;;;;;:20;;:29;33242:7;33221:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;33304:12;:10;:12::i;:::-;33277:40;;33295:7;33277:40;;33289:4;33277:40;;;;;;;;;;33177:152;33107:229;;:::o;35316:414::-;35379:4;35401:21;35411:3;35416:5;35401:9;:21::i;:::-;35396:327;;35439:3;:11;;35456:5;35439:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35622:3;:11;;:18;;;;35600:3;:12;;:19;35613:5;35600:19;;;;;;;;;;;:40;;;;35662:4;35655:11;;;;35396:327;35706:5;35699:12;;35316:414;;;;;:::o;24721:157::-;24806:4;24845:25;24830:40;;;:11;:40;;;;24823:47;;24721:157;;;:::o;48866:217::-;49031:44;49058:4;49064:2;49068:6;49031:26;:44::i;:::-;48866:217;;;:::o;16377:124::-;;;;:::o;29740:497::-;29821:22;29829:4;29835:7;29821;:22::i;:::-;29816:414;;30009:41;30037:7;30009:41;;30047:2;30009:19;:41::i;:::-;30123:38;30151:4;30143:13;;30158:2;30123:19;:38::i;:::-;29914:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29860:358;;;;;;;;;;;:::i;:::-;;;;;;;;29816:414;29740:497;;:::o;33344:230::-;33419:22;33427:4;33433:7;33419;:22::i;:::-;33415:152;;;33490:5;33458:6;:12;33465:4;33458:12;;;;;;;;;;;:20;;:29;33479:7;33458:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;33542:12;:10;:12::i;:::-;33515:40;;33533:7;33515:40;;33527:4;33515:40;;;;;;;;;;33415:152;33344:230;;:::o;35906:1420::-;35972:4;36090:18;36111:3;:12;;:19;36124:5;36111:19;;;;;;;;;;;;36090:40;;36161:1;36147:10;:15;36143:1176;;36522:21;36559:1;36546:10;:14;;;;:::i;:::-;36522:38;;36575:17;36616:1;36595:3;:11;;:18;;;;:22;;;;:::i;:::-;36575:42;;36651:13;36638:9;:26;36634:405;;36685:17;36705:3;:11;;36717:9;36705:22;;;;;;;;;;;;;;;;;;;;;;;;36685:42;;36859:9;36830:3;:11;;36842:13;36830:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;36970:10;36944:3;:12;;:23;36957:9;36944:23;;;;;;;;;;;:36;;;;36634:405;;37120:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37215:3;:12;;:19;37228:5;37215:19;;;;;;;;;;;37208:26;;;37258:4;37251:11;;;;;;;36143:1176;37302:5;37295:12;;;35906:1420;;;;;:::o;38090:120::-;38157:7;38184:3;:11;;38196:5;38184:18;;;;;;;;;;;;;;;;;;;;;;;;38177:25;;38090:120;;;;:::o;37627:109::-;37683:7;37710:3;:11;;:18;;;;37703:25;;37627:109;;;:::o;37412:129::-;37485:4;37532:1;37509:3;:12;;:19;37522:5;37509:19;;;;;;;;;;;;:24;;37502:31;;37412:129;;;;:::o;20679:272::-;20822:44;20849:4;20855:2;20859:6;20822:26;:44::i;:::-;20888:8;:6;:8::i;:::-;20887:9;20879:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20679:272;;;:::o;22586:451::-;22661:13;22687:19;22732:1;22723:6;22719:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;22709:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22687:47;;22745:15;:6;22752:1;22745:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;22771;:6;22778:1;22771:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;22802:9;22827:1;22818:6;22814:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;22802:26;;22797:135;22834:1;22830;:5;22797:135;;;22869:12;22890:3;22882:5;:11;22869:25;;;;;;;;;;;;;;;;;;22857:6;22864:1;22857:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;22919:1;22909:11;;;;;22837:3;;;;:::i;:::-;;;22797:135;;;;22959:1;22950:5;:10;22942:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23022:6;23008:21;;;22586:451;;;;:::o;15648:125::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;;;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:377::-;;4732:39;4765:5;4732:39;:::i;:::-;4787:89;4869:6;4864:3;4787:89;:::i;:::-;4780:96;;4885:52;4930:6;4925:3;4918:4;4911:5;4907:16;4885:52;:::i;:::-;4962:6;4957:3;4953:16;4946:23;;4708:267;;;;;:::o;4981:366::-;;5144:67;5208:2;5203:3;5144:67;:::i;:::-;5137:74;;5220:93;5309:3;5220:93;:::i;:::-;5338:2;5333:3;5329:12;5322:19;;5127:220;;;:::o;5353:366::-;;5516:67;5580:2;5575:3;5516:67;:::i;:::-;5509:74;;5592:93;5681:3;5592:93;:::i;:::-;5710:2;5705:3;5701:12;5694:19;;5499:220;;;:::o;5725:366::-;;5888:67;5952:2;5947:3;5888:67;:::i;:::-;5881:74;;5964:93;6053:3;5964:93;:::i;:::-;6082:2;6077:3;6073:12;6066:19;;5871:220;;;:::o;6097:366::-;;6260:67;6324:2;6319:3;6260:67;:::i;:::-;6253:74;;6336:93;6425:3;6336:93;:::i;:::-;6454:2;6449:3;6445:12;6438:19;;6243:220;;;:::o;6469:366::-;;6632:67;6696:2;6691:3;6632:67;:::i;:::-;6625:74;;6708:93;6797:3;6708:93;:::i;:::-;6826:2;6821:3;6817:12;6810:19;;6615:220;;;:::o;6841:366::-;;7004:67;7068:2;7063:3;7004:67;:::i;:::-;6997:74;;7080:93;7169:3;7080:93;:::i;:::-;7198:2;7193:3;7189:12;7182:19;;6987:220;;;:::o;7213:366::-;;7376:67;7440:2;7435:3;7376:67;:::i;:::-;7369:74;;7452:93;7541:3;7452:93;:::i;:::-;7570:2;7565:3;7561:12;7554:19;;7359:220;;;:::o;7585:366::-;;7748:67;7812:2;7807:3;7748:67;:::i;:::-;7741:74;;7824:93;7913:3;7824:93;:::i;:::-;7942:2;7937:3;7933:12;7926:19;;7731:220;;;:::o;7957:366::-;;8120:67;8184:2;8179:3;8120:67;:::i;:::-;8113:74;;8196:93;8285:3;8196:93;:::i;:::-;8314:2;8309:3;8305:12;8298:19;;8103:220;;;:::o;8329:366::-;;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8475:220;;;:::o;8701:366::-;;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8940:93;9029:3;8940:93;:::i;:::-;9058:2;9053:3;9049:12;9042:19;;8847:220;;;:::o;9073:366::-;;9236:67;9300:2;9295:3;9236:67;:::i;:::-;9229:74;;9312:93;9401:3;9312:93;:::i;:::-;9430:2;9425:3;9421:12;9414:19;;9219:220;;;:::o;9445:366::-;;9608:67;9672:2;9667:3;9608:67;:::i;:::-;9601:74;;9684:93;9773:3;9684:93;:::i;:::-;9802:2;9797:3;9793:12;9786:19;;9591:220;;;:::o;9817:366::-;;9980:67;10044:2;10039:3;9980:67;:::i;:::-;9973:74;;10056:93;10145:3;10056:93;:::i;:::-;10174:2;10169:3;10165:12;10158:19;;9963:220;;;:::o;10189:366::-;;10352:67;10416:2;10411:3;10352:67;:::i;:::-;10345:74;;10428:93;10517:3;10428:93;:::i;:::-;10546:2;10541:3;10537:12;10530:19;;10335:220;;;:::o;10561:366::-;;10724:67;10788:2;10783:3;10724:67;:::i;:::-;10717:74;;10800:93;10889:3;10800:93;:::i;:::-;10918:2;10913:3;10909:12;10902:19;;10707:220;;;:::o;10933:402::-;;11114:85;11196:2;11191:3;11114:85;:::i;:::-;11107:92;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;11097:238;;;:::o;11341:366::-;;11504:67;11568:2;11563:3;11504:67;:::i;:::-;11497:74;;11580:93;11669:3;11580:93;:::i;:::-;11698:2;11693:3;11689:12;11682:19;;11487:220;;;:::o;11713:402::-;;11894:85;11976:2;11971:3;11894:85;:::i;:::-;11887:92;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11877:238;;;:::o;12121:366::-;;12284:67;12348:2;12343:3;12284:67;:::i;:::-;12277:74;;12360:93;12449:3;12360:93;:::i;:::-;12478:2;12473:3;12469:12;12462:19;;12267:220;;;:::o;12493:366::-;;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12639:220;;;:::o;12865:366::-;;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;13011:220;;;:::o;13237:118::-;13324:24;13342:5;13324:24;:::i;:::-;13319:3;13312:37;13302:53;;:::o;13361:112::-;13444:22;13460:5;13444:22;:::i;:::-;13439:3;13432:35;13422:51;;:::o;13479:967::-;;13883:148;14027:3;13883:148;:::i;:::-;13876:155;;14048:95;14139:3;14130:6;14048:95;:::i;:::-;14041:102;;14160:148;14304:3;14160:148;:::i;:::-;14153:155;;14325:95;14416:3;14407:6;14325:95;:::i;:::-;14318:102;;14437:3;14430:10;;13865:581;;;;;:::o;14452:222::-;;14583:2;14572:9;14568:18;14560:26;;14596:71;14664:1;14653:9;14649:17;14640:6;14596:71;:::i;:::-;14550:124;;;;:::o;14680:210::-;;14805:2;14794:9;14790:18;14782:26;;14818:65;14880:1;14869:9;14865:17;14856:6;14818:65;:::i;:::-;14772:118;;;;:::o;14896:222::-;;15027:2;15016:9;15012:18;15004:26;;15040:71;15108:1;15097:9;15093:17;15084:6;15040:71;:::i;:::-;14994:124;;;;:::o;15124:313::-;;15275:2;15264:9;15260:18;15252:26;;15324:9;15318:4;15314:20;15310:1;15299:9;15295:17;15288:47;15352:78;15425:4;15416:6;15352:78;:::i;:::-;15344:86;;15242:195;;;;:::o;15443:419::-;;15647:2;15636:9;15632:18;15624:26;;15696:9;15690:4;15686:20;15682:1;15671:9;15667:17;15660:47;15724:131;15850:4;15724:131;:::i;:::-;15716:139;;15614:248;;;:::o;15868:419::-;;16072:2;16061:9;16057:18;16049:26;;16121:9;16115:4;16111:20;16107:1;16096:9;16092:17;16085:47;16149:131;16275:4;16149:131;:::i;:::-;16141:139;;16039:248;;;:::o;16293:419::-;;16497:2;16486:9;16482:18;16474:26;;16546:9;16540:4;16536:20;16532:1;16521:9;16517:17;16510:47;16574:131;16700:4;16574:131;:::i;:::-;16566:139;;16464:248;;;:::o;16718:419::-;;16922:2;16911:9;16907:18;16899:26;;16971:9;16965:4;16961:20;16957:1;16946:9;16942:17;16935:47;16999:131;17125:4;16999:131;:::i;:::-;16991:139;;16889:248;;;:::o;17143:419::-;;17347:2;17336:9;17332:18;17324:26;;17396:9;17390:4;17386:20;17382:1;17371:9;17367:17;17360:47;17424:131;17550:4;17424:131;:::i;:::-;17416:139;;17314:248;;;:::o;17568:419::-;;17772:2;17761:9;17757:18;17749:26;;17821:9;17815:4;17811:20;17807:1;17796:9;17792:17;17785:47;17849:131;17975:4;17849:131;:::i;:::-;17841:139;;17739:248;;;:::o;17993:419::-;;18197:2;18186:9;18182:18;18174:26;;18246:9;18240:4;18236:20;18232:1;18221:9;18217:17;18210:47;18274:131;18400:4;18274:131;:::i;:::-;18266:139;;18164:248;;;:::o;18418:419::-;;18622:2;18611:9;18607:18;18599:26;;18671:9;18665:4;18661:20;18657:1;18646:9;18642:17;18635:47;18699:131;18825:4;18699:131;:::i;:::-;18691:139;;18589:248;;;:::o;18843:419::-;;19047:2;19036:9;19032:18;19024:26;;19096:9;19090:4;19086:20;19082:1;19071:9;19067:17;19060:47;19124:131;19250:4;19124:131;:::i;:::-;19116:139;;19014:248;;;:::o;19268:419::-;;19472:2;19461:9;19457:18;19449:26;;19521:9;19515:4;19511:20;19507:1;19496:9;19492:17;19485:47;19549:131;19675:4;19549:131;:::i;:::-;19541:139;;19439:248;;;:::o;19693:419::-;;19897:2;19886:9;19882:18;19874:26;;19946:9;19940:4;19936:20;19932:1;19921:9;19917:17;19910:47;19974:131;20100:4;19974:131;:::i;:::-;19966:139;;19864:248;;;:::o;20118:419::-;;20322:2;20311:9;20307:18;20299:26;;20371:9;20365:4;20361:20;20357:1;20346:9;20342:17;20335:47;20399:131;20525:4;20399:131;:::i;:::-;20391:139;;20289:248;;;:::o;20543:419::-;;20747:2;20736:9;20732:18;20724:26;;20796:9;20790:4;20786:20;20782:1;20771:9;20767:17;20760:47;20824:131;20950:4;20824:131;:::i;:::-;20816:139;;20714:248;;;:::o;20968:419::-;;21172:2;21161:9;21157:18;21149:26;;21221:9;21215:4;21211:20;21207:1;21196:9;21192:17;21185:47;21249:131;21375:4;21249:131;:::i;:::-;21241:139;;21139:248;;;:::o;21393:419::-;;21597:2;21586:9;21582:18;21574:26;;21646:9;21640:4;21636:20;21632:1;21621:9;21617:17;21610:47;21674:131;21800:4;21674:131;:::i;:::-;21666:139;;21564:248;;;:::o;21818:419::-;;22022:2;22011:9;22007:18;21999:26;;22071:9;22065:4;22061:20;22057:1;22046:9;22042:17;22035:47;22099:131;22225:4;22099:131;:::i;:::-;22091:139;;21989:248;;;:::o;22243:419::-;;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22414:248;;;:::o;22668:419::-;;22872:2;22861:9;22857:18;22849:26;;22921:9;22915:4;22911:20;22907:1;22896:9;22892:17;22885:47;22949:131;23075:4;22949:131;:::i;:::-;22941:139;;22839:248;;;:::o;23093:419::-;;23297:2;23286:9;23282:18;23274:26;;23346:9;23340:4;23336:20;23332:1;23321:9;23317:17;23310:47;23374:131;23500:4;23374:131;:::i;:::-;23366:139;;23264:248;;;:::o;23518:419::-;;23722:2;23711:9;23707:18;23699:26;;23771:9;23765:4;23761:20;23757:1;23746:9;23742:17;23735:47;23799:131;23925:4;23799:131;:::i;:::-;23791:139;;23689:248;;;:::o;23943:222::-;;24074:2;24063:9;24059:18;24051:26;;24087:71;24155:1;24144:9;24140:17;24131:6;24087:71;:::i;:::-;24041:124;;;;:::o;24171:214::-;;24298:2;24287:9;24283:18;24275:26;;24311:67;24375:1;24364:9;24360:17;24351:6;24311:67;:::i;:::-;24265:120;;;;:::o;24391:99::-;;24477:5;24471:12;24461:22;;24450:40;;;:::o;24496:169::-;;24614:6;24609:3;24602:19;24654:4;24649:3;24645:14;24630:29;;24592:73;;;;:::o;24671:148::-;;24810:3;24795:18;;24785:34;;;;:::o;24825:305::-;;24884:20;24902:1;24884:20;:::i;:::-;24879:25;;24918:20;24936:1;24918:20;:::i;:::-;24913:25;;25072:1;25004:66;25000:74;24997:1;24994:81;24991:2;;;25078:18;;:::i;:::-;24991:2;25122:1;25119;25115:9;25108:16;;24869:261;;;;:::o;25136:348::-;;25199:20;25217:1;25199:20;:::i;:::-;25194:25;;25233:20;25251:1;25233:20;:::i;:::-;25228:25;;25421:1;25353:66;25349:74;25346:1;25343:81;25338:1;25331:9;25324:17;25320:105;25317:2;;;25428:18;;:::i;:::-;25317:2;25476:1;25473;25469:9;25458:20;;25184:300;;;;:::o;25490:191::-;;25550:20;25568:1;25550:20;:::i;:::-;25545:25;;25584:20;25602:1;25584:20;:::i;:::-;25579:25;;25623:1;25620;25617:8;25614:2;;;25628:18;;:::i;:::-;25614:2;25673:1;25670;25666:9;25658:17;;25535:146;;;;:::o;25687:96::-;;25753:24;25771:5;25753:24;:::i;:::-;25742:35;;25732:51;;;:::o;25789:90::-;;25866:5;25859:13;25852:21;25841:32;;25831:48;;;:::o;25885:77::-;;25951:5;25940:16;;25930:32;;;:::o;25968:149::-;;26044:66;26037:5;26033:78;26022:89;;26012:105;;;:::o;26123:126::-;;26200:42;26193:5;26189:54;26178:65;;26168:81;;;:::o;26255:77::-;;26321:5;26310:16;;26300:32;;;:::o;26338:86::-;;26413:4;26406:5;26402:16;26391:27;;26381:43;;;:::o;26430:307::-;26498:1;26508:113;26522:6;26519:1;26516:13;26508:113;;;26607:1;26602:3;26598:11;26592:18;26588:1;26583:3;26579:11;26572:39;26544:2;26541:1;26537:10;26532:15;;26508:113;;;26639:6;26636:1;26633:13;26630:2;;;26719:1;26710:6;26705:3;26701:16;26694:27;26630:2;26479:258;;;;:::o;26743:171::-;;26805:24;26823:5;26805:24;:::i;:::-;26796:33;;26851:4;26844:5;26841:15;26838:2;;;26859:18;;:::i;:::-;26838:2;26906:1;26899:5;26895:13;26888:20;;26786:128;;;:::o;26920:320::-;;27001:1;26995:4;26991:12;26981:22;;27048:1;27042:4;27038:12;27069:18;27059:2;;27125:4;27117:6;27113:17;27103:27;;27059:2;27187;27179:6;27176:14;27156:18;27153:38;27150:2;;;27206:18;;:::i;:::-;27150:2;26971:269;;;;:::o;27246:180::-;27294:77;27291:1;27284:88;27391:4;27388:1;27381:15;27415:4;27412:1;27405:15;27432:180;27480:77;27477:1;27470:88;27577:4;27574:1;27567:15;27601:4;27598:1;27591:15;27618:102;;27710:2;27706:7;27701:2;27694:5;27690:14;27686:28;27676:38;;27666:54;;;:::o;27726:182::-;27866:34;27862:1;27854:6;27850:14;27843:58;27832:76;:::o;27914:222::-;28054:34;28050:1;28042:6;28038:14;28031:58;28123:5;28118:2;28110:6;28106:15;28099:30;28020:116;:::o;28142:170::-;28282:22;28278:1;28270:6;28266:14;28259:46;28248:64;:::o;28318:221::-;28458:34;28454:1;28446:6;28442:14;28435:58;28527:4;28522:2;28514:6;28510:15;28503:29;28424:115;:::o;28545:227::-;28685:34;28681:1;28673:6;28669:14;28662:58;28754:10;28749:2;28741:6;28737:15;28730:35;28651:121;:::o;28778:244::-;28918:34;28914:1;28906:6;28902:14;28895:58;28987:27;28982:2;28974:6;28970:15;28963:52;28884:138;:::o;29028:221::-;29168:34;29164:1;29156:6;29152:14;29145:58;29237:4;29232:2;29224:6;29220:15;29213:29;29134:115;:::o;29255:225::-;29395:34;29391:1;29383:6;29379:14;29372:58;29464:8;29459:2;29451:6;29447:15;29440:33;29361:119;:::o;29486:166::-;29626:18;29622:1;29614:6;29610:14;29603:42;29592:60;:::o;29658:227::-;29798:34;29794:1;29786:6;29782:14;29775:58;29867:10;29862:2;29854:6;29850:15;29843:35;29764:121;:::o;29891:241::-;30031:34;30027:1;30019:6;30015:14;30008:58;30100:24;30095:2;30087:6;30083:15;30076:49;29997:135;:::o;30138:223::-;30278:34;30274:1;30266:6;30262:14;30255:58;30347:6;30342:2;30334:6;30330:15;30323:31;30244:117;:::o;30367:220::-;30507:34;30503:1;30495:6;30491:14;30484:58;30576:3;30571:2;30563:6;30559:15;30552:28;30473:114;:::o;30593:224::-;30733:34;30729:1;30721:6;30717:14;30710:58;30802:7;30797:2;30789:6;30785:15;30778:32;30699:118;:::o;30823:223::-;30963:34;30959:1;30951:6;30947:14;30940:58;31032:6;31027:2;31019:6;31015:15;31008:31;30929:117;:::o;31052:242::-;31192:34;31188:1;31180:6;31176:14;31169:58;31261:25;31256:2;31248:6;31244:15;31237:50;31158:136;:::o;31300:173::-;31440:25;31436:1;31428:6;31424:14;31417:49;31406:67;:::o;31479:224::-;31619:34;31615:1;31607:6;31603:14;31596:58;31688:7;31683:2;31675:6;31671:15;31664:32;31585:118;:::o;31709:167::-;31849:19;31845:1;31837:6;31833:14;31826:43;31815:61;:::o;31882:234::-;32022:34;32018:1;32010:6;32006:14;31999:58;32091:17;32086:2;32078:6;32074:15;32067:42;31988:128;:::o;32122:181::-;32262:33;32258:1;32250:6;32246:14;32239:57;32228:75;:::o;32309:229::-;32449:34;32445:1;32437:6;32433:14;32426:58;32518:12;32513:2;32505:6;32501:15;32494:37;32415:123;:::o;32544:122::-;32617:24;32635:5;32617:24;:::i;:::-;32610:5;32607:35;32597:2;;32656:1;32653;32646:12;32597:2;32587:79;:::o;32672:122::-;32745:24;32763:5;32745:24;:::i;:::-;32738:5;32735:35;32725:2;;32784:1;32781;32774:12;32725:2;32715:79;:::o;32800:120::-;32872:23;32889:5;32872:23;:::i;:::-;32865:5;32862:34;32852:2;;32910:1;32907;32900:12;32852:2;32842:78;:::o;32926:122::-;32999:24;33017:5;32999:24;:::i;:::-;32992:5;32989:35;32979:2;;33038:1;33035;33028:12;32979:2;32969:79;:::o

Swarm Source

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