ETH Price: $3,385.73 (-1.78%)
Gas: 1 Gwei

Token

MonoLocco (LOCCO)
 

Overview

Max Total Supply

1,571 LOCCO

Holders

944

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mergealpha.eth
Balance
1 LOCCO
0x43298a6c0f1ab6558cc30c4233499b27762b1a91
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MonoLocco

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-28
*/

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

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/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

    /**
     * @dev 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/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @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 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]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _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 virtual 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]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        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 virtual 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 revoked `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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    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 {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/Monolocco.sol

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.11;





contract MonoLocco is ERC721A, AccessControl, Pausable, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI_ = "https://meta.monolocco.xyz/";
    string public extensionURI_ = "";
    bytes32 public constant MINTER_ROLE = keccak256("LOCCOMINTER");
    uint256 public MAX_SUPPLY = 6666;
    constructor() ERC721A("MonoLocco", "LOCCO") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); 
    }

    function mint(address to, uint256 quantity) external onlyRole(MINTER_ROLE) nonReentrant {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Monolocco: Max supply exceded");
        _safeMint(to, quantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length != 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        tokenId.toString(),
                        _extensionURI()
                    )
                )
                : "";
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI_;
    }

    function _extensionURI() internal view virtual returns (string memory) {
        return extensionURI_;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    
    /**
    @dev Change Base URI can be used to reveal NFTs
    @param uri_ String of the new uri
     */
    function changeBaseURI(string memory uri_)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        baseURI_ = uri_;
    }

    function changeExtension(string memory extension_)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        extensionURI_ = extension_;
    }

    function pause() external onlyRole(DEFAULT_ADMIN_ROLE) {
        _pause();
    }

    function unPause() external onlyRole(DEFAULT_ADMIN_ROLE) {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"extension_","type":"string"}],"name":"changeExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extensionURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601b81526020017f68747470733a2f2f6d6574612e6d6f6e6f6c6f63636f2e78797a2f0000000000815250600b90805190602001906200005192919062000302565b5060405180602001604052806000815250600c90805190602001906200007992919062000302565b50611a0a600d553480156200008d57600080fd5b506040518060400160405280600981526020017f4d6f6e6f4c6f63636f00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4f43434f00000000000000000000000000000000000000000000000000000081525081600290805190602001906200011292919062000302565b5080600390805190602001906200012b92919062000302565b506200013c6200018260201b60201c565b60008190555050506000600960006101000a81548160ff0219169083151502179055506001600a819055506200017c6000801b336200018760201b60201c565b62000417565b600090565b6200019982826200019d60201b60201c565b5050565b620001af82826200028f60201b60201c565b6200028b5760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000230620002fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200031090620003e1565b90600052602060002090601f01602090048101928262000334576000855562000380565b82601f106200034f57805160ff191683800117855562000380565b8280016001018555821562000380579182015b828111156200037f57825182559160200191906001019062000362565b5b5090506200038f919062000393565b5090565b5b80821115620003ae57600081600090555060010162000394565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003fa57607f821691505b60208210811415620004115762000410620003b2565b5b50919050565b61396580620004276000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb11610104578063a22cb465116100a2578063d547741f11610071578063d547741f14610541578063e985e9c51461055d578063f259a29e1461058d578063f7b188a5146105ab576101da565b8063a22cb465146104bb578063b88d4fde146104d7578063c87b56dd146104f3578063d539139314610523576101da565b80638456cb59116100de5780638456cb591461044557806391d148541461044f57806395d89b411461047f578063a217fddf1461049d576101da565b80635c975abb146103c75780636352211e146103e557806370a0823114610415576101da565b806323e4ddaa1161017c57806336568abe1161014b57806336568abe1461035757806339a0c6f91461037357806340c10f191461038f57806342842e0e146103ab576101da565b806323e4ddaa146102cf578063248a9ca3146102ed5780632f2ff15d1461031d57806332cb6b0c14610339576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780631f7a97161461029757806323b872dd146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612aaa565b6105b5565b6040516102069190612af2565b60405180910390f35b6102176105c7565b6040516102249190612ba6565b60405180910390f35b61024760048036038101906102429190612bfe565b610659565b6040516102549190612c6c565b60405180910390f35b61027760048036038101906102729190612cb3565b6106d5565b005b6102816107e0565b60405161028e9190612d02565b60405180910390f35b6102b160048036038101906102ac9190612e52565b6107f7565b005b6102cd60048036038101906102c89190612e9b565b610827565b005b6102d7610837565b6040516102e49190612ba6565b60405180910390f35b61030760048036038101906103029190612f24565b6108c5565b6040516103149190612f60565b60405180910390f35b61033760048036038101906103329190612f7b565b6108e5565b005b61034161090e565b60405161034e9190612d02565b60405180910390f35b610371600480360381019061036c9190612f7b565b610914565b005b61038d60048036038101906103889190612e52565b610997565b005b6103a960048036038101906103a49190612cb3565b6109c7565b005b6103c560048036038101906103c09190612e9b565b610ab5565b005b6103cf610ad5565b6040516103dc9190612af2565b60405180910390f35b6103ff60048036038101906103fa9190612bfe565b610aec565b60405161040c9190612c6c565b60405180910390f35b61042f600480360381019061042a9190612fbb565b610b02565b60405161043c9190612d02565b60405180910390f35b61044d610bd2565b005b61046960048036038101906104649190612f7b565b610bf2565b6040516104769190612af2565b60405180910390f35b610487610c5d565b6040516104949190612ba6565b60405180910390f35b6104a5610cef565b6040516104b29190612f60565b60405180910390f35b6104d560048036038101906104d09190613014565b610cf6565b005b6104f160048036038101906104ec91906130f5565b610e6e565b005b61050d60048036038101906105089190612bfe565b610eea565b60405161051a9190612ba6565b60405180910390f35b61052b610f92565b6040516105389190612f60565b60405180910390f35b61055b60048036038101906105569190612f7b565b610fb6565b005b61057760048036038101906105729190613178565b610fdf565b6040516105849190612af2565b60405180910390f35b610595611073565b6040516105a29190612ba6565b60405180910390f35b6105b3611101565b005b60006105c082611121565b9050919050565b6060600280546105d6906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610602906131e7565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b60006106648261119b565b61069a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e082610aec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610748576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107676111e9565b73ffffffffffffffffffffffffffffffffffffffff16141580156107995750610797816107926111e9565b610fdf565b155b156107d0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107db8383836111f1565b505050565b60006107ea6112a3565b6001546000540303905090565b6000801b61080c816108076111e9565b6112a8565b81600c9080519060200190610822929190612958565b505050565b610832838383611345565b505050565b600c8054610844906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610870906131e7565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b505050505081565b600060086000838152602001908152602001600020600101549050919050565b6108ee826108c5565b6108ff816108fa6111e9565b6112a8565b6109098383611836565b505050565b600d5481565b61091c6111e9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109809061328b565b60405180910390fd5b6109938282611917565b5050565b6000801b6109ac816109a76111e9565b6112a8565b81600b90805190602001906109c2929190612958565b505050565b7fb9a0038b6199854a9823806ce30d9dc1c8a0e00843f738aab1733f6d001f3af06109f9816109f46111e9565b6112a8565b6002600a541415610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a36906132f7565b60405180910390fd5b6002600a81905550600d5482610a536107e0565b610a5d9190613346565b1115610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a95906133e8565b60405180910390fd5b610aa883836119f9565b6001600a81905550505050565b610ad083838360405180602001604052806000815250610e6e565b505050565b6000600960009054906101000a900460ff16905090565b6000610af782611a17565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000801b610be781610be26111e9565b6112a8565b610bef611ca6565b50565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610c6c906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c98906131e7565b8015610ce55780601f10610cba57610100808354040283529160200191610ce5565b820191906000526020600020905b815481529060010190602001808311610cc857829003601f168201915b5050505050905090565b6000801b81565b610cfe6111e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d63576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d706111e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e1d6111e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e629190612af2565b60405180910390a35050565b610e79848484611345565b610e988373ffffffffffffffffffffffffffffffffffffffff16611d49565b8015610ead5750610eab84848484611d6c565b155b15610ee4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610ef58261119b565b610f2b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f35611ebd565b9050600081511415610f565760405180602001604052806000815250610f8a565b80610f6084611f4f565b610f686120b0565b604051602001610f7a93929190613444565b6040516020818303038152906040525b915050919050565b7fb9a0038b6199854a9823806ce30d9dc1c8a0e00843f738aab1733f6d001f3af081565b610fbf826108c5565b610fd081610fcb6111e9565b6112a8565b610fda8383611917565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611080906131e7565b80601f01602080910402602001604051908101604052809291908181526020018280546110ac906131e7565b80156110f95780601f106110ce576101008083540402835291602001916110f9565b820191906000526020600020905b8154815290600101906020018083116110dc57829003601f168201915b505050505081565b6000801b611116816111116111e9565b6112a8565b61111e612142565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111945750611193826121e4565b5b9050919050565b6000816111a66112a3565b111580156111b5575060005482105b80156111e2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6112b28282610bf2565b611341576112d78173ffffffffffffffffffffffffffffffffffffffff1660146122c6565b6112e58360001c60206122c6565b6040516020016112f692919061350d565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113389190612ba6565b60405180910390fd5b5050565b600061135082611a17565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113776111e9565b73ffffffffffffffffffffffffffffffffffffffff1614806113aa57506113a982600001516113a46111e9565b610fdf565b5b806113ef57506113b86111e9565b73ffffffffffffffffffffffffffffffffffffffff166113d784610659565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611428576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611491576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115058585856001612502565b61151560008484600001516111f1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117c6576000548110156117c55782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182f8585856001612508565b5050505050565b6118408282610bf2565b6119135760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118b86111e9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119218282610bf2565b156119f55760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061199a6111e9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611a1382826040518060200160405280600081525061250e565b5050565b611a1f6129de565b600082905080611a2d6112a3565b11158015611a3c575060005481105b15611c6f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611c6d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b51578092505050611ca1565b5b600115611c6c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c67578092505050611ca1565b611b52565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611cae610ad5565b15611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590613593565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d326111e9565b604051611d3f9190612c6c565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d926111e9565b8786866040518563ffffffff1660e01b8152600401611db49493929190613608565b6020604051808303816000875af1925050508015611df057506040513d601f19601f82011682018060405250810190611ded9190613669565b60015b611e6a573d8060008114611e20576040519150601f19603f3d011682016040523d82523d6000602084013e611e25565b606091505b50600081511415611e62576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611ecc906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef8906131e7565b8015611f455780601f10611f1a57610100808354040283529160200191611f45565b820191906000526020600020905b815481529060010190602001808311611f2857829003601f168201915b5050505050905090565b60606000821415611f97576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120ab565b600082905060005b60008214611fc9578080611fb290613696565b915050600a82611fc2919061370e565b9150611f9f565b60008167ffffffffffffffff811115611fe557611fe4612d27565b5b6040519080825280601f01601f1916602001820160405280156120175781602001600182028036833780820191505090505b5090505b600085146120a457600182612030919061373f565b9150600a8561203f9190613773565b603061204b9190613346565b60f81b818381518110612061576120606137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561209d919061370e565b945061201b565b8093505050505b919050565b6060600c80546120bf906131e7565b80601f01602080910402602001604051908101604052809291908181526020018280546120eb906131e7565b80156121385780601f1061210d57610100808354040283529160200191612138565b820191906000526020600020905b81548152906001019060200180831161211b57829003601f168201915b5050505050905090565b61214a610ad5565b612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061381f565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121cd6111e9565b6040516121da9190612c6c565b60405180910390a1565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122af57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122bf57506122be82612520565b5b9050919050565b6060600060028360026122d9919061383f565b6122e39190613346565b67ffffffffffffffff8111156122fc576122fb612d27565b5b6040519080825280601f01601f19166020018201604052801561232e5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612366576123656137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106123ca576123c96137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261240a919061383f565b6124149190613346565b90505b60018111156124b4577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612456576124556137a4565b5b1a60f81b82828151811061246d5761246c6137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124ad90613899565b9050612417565b50600084146124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef9061390f565b60405180910390fd5b8091505092915050565b50505050565b50505050565b61251b838383600161258a565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156125f7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612632576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61263f6000868387612502565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561280957506128088773ffffffffffffffffffffffffffffffffffffffff16611d49565b5b156128cf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461287e6000888480600101955088611d6c565b6128b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561280f5782600054146128ca57600080fd5b61293b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128d0575b8160008190555050506129516000868387612508565b5050505050565b828054612964906131e7565b90600052602060002090601f01602090048101928261298657600085556129cd565b82601f1061299f57805160ff19168380011785556129cd565b828001600101855582156129cd579182015b828111156129cc5782518255916020019190600101906129b1565b5b5090506129da9190612a21565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a3a576000816000905550600101612a22565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8781612a52565b8114612a9257600080fd5b50565b600081359050612aa481612a7e565b92915050565b600060208284031215612ac057612abf612a48565b5b6000612ace84828501612a95565b91505092915050565b60008115159050919050565b612aec81612ad7565b82525050565b6000602082019050612b076000830184612ae3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b47578082015181840152602081019050612b2c565b83811115612b56576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b7882612b0d565b612b828185612b18565b9350612b92818560208601612b29565b612b9b81612b5c565b840191505092915050565b60006020820190508181036000830152612bc08184612b6d565b905092915050565b6000819050919050565b612bdb81612bc8565b8114612be657600080fd5b50565b600081359050612bf881612bd2565b92915050565b600060208284031215612c1457612c13612a48565b5b6000612c2284828501612be9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c5682612c2b565b9050919050565b612c6681612c4b565b82525050565b6000602082019050612c816000830184612c5d565b92915050565b612c9081612c4b565b8114612c9b57600080fd5b50565b600081359050612cad81612c87565b92915050565b60008060408385031215612cca57612cc9612a48565b5b6000612cd885828601612c9e565b9250506020612ce985828601612be9565b9150509250929050565b612cfc81612bc8565b82525050565b6000602082019050612d176000830184612cf3565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5f82612b5c565b810181811067ffffffffffffffff82111715612d7e57612d7d612d27565b5b80604052505050565b6000612d91612a3e565b9050612d9d8282612d56565b919050565b600067ffffffffffffffff821115612dbd57612dbc612d27565b5b612dc682612b5c565b9050602081019050919050565b82818337600083830152505050565b6000612df5612df084612da2565b612d87565b905082815260208101848484011115612e1157612e10612d22565b5b612e1c848285612dd3565b509392505050565b600082601f830112612e3957612e38612d1d565b5b8135612e49848260208601612de2565b91505092915050565b600060208284031215612e6857612e67612a48565b5b600082013567ffffffffffffffff811115612e8657612e85612a4d565b5b612e9284828501612e24565b91505092915050565b600080600060608486031215612eb457612eb3612a48565b5b6000612ec286828701612c9e565b9350506020612ed386828701612c9e565b9250506040612ee486828701612be9565b9150509250925092565b6000819050919050565b612f0181612eee565b8114612f0c57600080fd5b50565b600081359050612f1e81612ef8565b92915050565b600060208284031215612f3a57612f39612a48565b5b6000612f4884828501612f0f565b91505092915050565b612f5a81612eee565b82525050565b6000602082019050612f756000830184612f51565b92915050565b60008060408385031215612f9257612f91612a48565b5b6000612fa085828601612f0f565b9250506020612fb185828601612c9e565b9150509250929050565b600060208284031215612fd157612fd0612a48565b5b6000612fdf84828501612c9e565b91505092915050565b612ff181612ad7565b8114612ffc57600080fd5b50565b60008135905061300e81612fe8565b92915050565b6000806040838503121561302b5761302a612a48565b5b600061303985828601612c9e565b925050602061304a85828601612fff565b9150509250929050565b600067ffffffffffffffff82111561306f5761306e612d27565b5b61307882612b5c565b9050602081019050919050565b600061309861309384613054565b612d87565b9050828152602081018484840111156130b4576130b3612d22565b5b6130bf848285612dd3565b509392505050565b600082601f8301126130dc576130db612d1d565b5b81356130ec848260208601613085565b91505092915050565b6000806000806080858703121561310f5761310e612a48565b5b600061311d87828801612c9e565b945050602061312e87828801612c9e565b935050604061313f87828801612be9565b925050606085013567ffffffffffffffff8111156131605761315f612a4d565b5b61316c878288016130c7565b91505092959194509250565b6000806040838503121561318f5761318e612a48565b5b600061319d85828601612c9e565b92505060206131ae85828601612c9e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ff57607f821691505b60208210811415613213576132126131b8565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613275602f83612b18565b915061328082613219565b604082019050919050565b600060208201905081810360008301526132a481613268565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006132e1601f83612b18565b91506132ec826132ab565b602082019050919050565b60006020820190508181036000830152613310816132d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061335182612bc8565b915061335c83612bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339157613390613317565b5b828201905092915050565b7f4d6f6e6f6c6f63636f3a204d617820737570706c792065786365646564000000600082015250565b60006133d2601d83612b18565b91506133dd8261339c565b602082019050919050565b60006020820190508181036000830152613401816133c5565b9050919050565b600081905092915050565b600061341e82612b0d565b6134288185613408565b9350613438818560208601612b29565b80840191505092915050565b60006134508286613413565b915061345c8285613413565b91506134688284613413565b9150819050949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006134ab601783613408565b91506134b682613475565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006134f7601183613408565b9150613502826134c1565b601182019050919050565b60006135188261349e565b91506135248285613413565b915061352f826134ea565b915061353b8284613413565b91508190509392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061357d601083612b18565b915061358882613547565b602082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135da826135b3565b6135e481856135be565b93506135f4818560208601612b29565b6135fd81612b5c565b840191505092915050565b600060808201905061361d6000830187612c5d565b61362a6020830186612c5d565b6136376040830185612cf3565b818103606083015261364981846135cf565b905095945050505050565b60008151905061366381612a7e565b92915050565b60006020828403121561367f5761367e612a48565b5b600061368d84828501613654565b91505092915050565b60006136a182612bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136d4576136d3613317565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061371982612bc8565b915061372483612bc8565b925082613734576137336136df565b5b828204905092915050565b600061374a82612bc8565b915061375583612bc8565b92508282101561376857613767613317565b5b828203905092915050565b600061377e82612bc8565b915061378983612bc8565b925082613799576137986136df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613809601483612b18565b9150613814826137d3565b602082019050919050565b60006020820190508181036000830152613838816137fc565b9050919050565b600061384a82612bc8565b915061385583612bc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561388e5761388d613317565b5b828202905092915050565b60006138a482612bc8565b915060008214156138b8576138b7613317565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006138f9602083612b18565b9150613904826138c3565b602082019050919050565b60006020820190508181036000830152613928816138ec565b905091905056fea26469706673582212207462854afbd67ced76b32e54981ba76ee55f47a817cca87527b21ad079b96b7364736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb11610104578063a22cb465116100a2578063d547741f11610071578063d547741f14610541578063e985e9c51461055d578063f259a29e1461058d578063f7b188a5146105ab576101da565b8063a22cb465146104bb578063b88d4fde146104d7578063c87b56dd146104f3578063d539139314610523576101da565b80638456cb59116100de5780638456cb591461044557806391d148541461044f57806395d89b411461047f578063a217fddf1461049d576101da565b80635c975abb146103c75780636352211e146103e557806370a0823114610415576101da565b806323e4ddaa1161017c57806336568abe1161014b57806336568abe1461035757806339a0c6f91461037357806340c10f191461038f57806342842e0e146103ab576101da565b806323e4ddaa146102cf578063248a9ca3146102ed5780632f2ff15d1461031d57806332cb6b0c14610339576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780631f7a97161461029757806323b872dd146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612aaa565b6105b5565b6040516102069190612af2565b60405180910390f35b6102176105c7565b6040516102249190612ba6565b60405180910390f35b61024760048036038101906102429190612bfe565b610659565b6040516102549190612c6c565b60405180910390f35b61027760048036038101906102729190612cb3565b6106d5565b005b6102816107e0565b60405161028e9190612d02565b60405180910390f35b6102b160048036038101906102ac9190612e52565b6107f7565b005b6102cd60048036038101906102c89190612e9b565b610827565b005b6102d7610837565b6040516102e49190612ba6565b60405180910390f35b61030760048036038101906103029190612f24565b6108c5565b6040516103149190612f60565b60405180910390f35b61033760048036038101906103329190612f7b565b6108e5565b005b61034161090e565b60405161034e9190612d02565b60405180910390f35b610371600480360381019061036c9190612f7b565b610914565b005b61038d60048036038101906103889190612e52565b610997565b005b6103a960048036038101906103a49190612cb3565b6109c7565b005b6103c560048036038101906103c09190612e9b565b610ab5565b005b6103cf610ad5565b6040516103dc9190612af2565b60405180910390f35b6103ff60048036038101906103fa9190612bfe565b610aec565b60405161040c9190612c6c565b60405180910390f35b61042f600480360381019061042a9190612fbb565b610b02565b60405161043c9190612d02565b60405180910390f35b61044d610bd2565b005b61046960048036038101906104649190612f7b565b610bf2565b6040516104769190612af2565b60405180910390f35b610487610c5d565b6040516104949190612ba6565b60405180910390f35b6104a5610cef565b6040516104b29190612f60565b60405180910390f35b6104d560048036038101906104d09190613014565b610cf6565b005b6104f160048036038101906104ec91906130f5565b610e6e565b005b61050d60048036038101906105089190612bfe565b610eea565b60405161051a9190612ba6565b60405180910390f35b61052b610f92565b6040516105389190612f60565b60405180910390f35b61055b60048036038101906105569190612f7b565b610fb6565b005b61057760048036038101906105729190613178565b610fdf565b6040516105849190612af2565b60405180910390f35b610595611073565b6040516105a29190612ba6565b60405180910390f35b6105b3611101565b005b60006105c082611121565b9050919050565b6060600280546105d6906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610602906131e7565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b60006106648261119b565b61069a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e082610aec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610748576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107676111e9565b73ffffffffffffffffffffffffffffffffffffffff16141580156107995750610797816107926111e9565b610fdf565b155b156107d0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107db8383836111f1565b505050565b60006107ea6112a3565b6001546000540303905090565b6000801b61080c816108076111e9565b6112a8565b81600c9080519060200190610822929190612958565b505050565b610832838383611345565b505050565b600c8054610844906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610870906131e7565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b505050505081565b600060086000838152602001908152602001600020600101549050919050565b6108ee826108c5565b6108ff816108fa6111e9565b6112a8565b6109098383611836565b505050565b600d5481565b61091c6111e9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109809061328b565b60405180910390fd5b6109938282611917565b5050565b6000801b6109ac816109a76111e9565b6112a8565b81600b90805190602001906109c2929190612958565b505050565b7fb9a0038b6199854a9823806ce30d9dc1c8a0e00843f738aab1733f6d001f3af06109f9816109f46111e9565b6112a8565b6002600a541415610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a36906132f7565b60405180910390fd5b6002600a81905550600d5482610a536107e0565b610a5d9190613346565b1115610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a95906133e8565b60405180910390fd5b610aa883836119f9565b6001600a81905550505050565b610ad083838360405180602001604052806000815250610e6e565b505050565b6000600960009054906101000a900460ff16905090565b6000610af782611a17565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000801b610be781610be26111e9565b6112a8565b610bef611ca6565b50565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610c6c906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c98906131e7565b8015610ce55780601f10610cba57610100808354040283529160200191610ce5565b820191906000526020600020905b815481529060010190602001808311610cc857829003601f168201915b5050505050905090565b6000801b81565b610cfe6111e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d63576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d706111e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e1d6111e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e629190612af2565b60405180910390a35050565b610e79848484611345565b610e988373ffffffffffffffffffffffffffffffffffffffff16611d49565b8015610ead5750610eab84848484611d6c565b155b15610ee4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610ef58261119b565b610f2b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f35611ebd565b9050600081511415610f565760405180602001604052806000815250610f8a565b80610f6084611f4f565b610f686120b0565b604051602001610f7a93929190613444565b6040516020818303038152906040525b915050919050565b7fb9a0038b6199854a9823806ce30d9dc1c8a0e00843f738aab1733f6d001f3af081565b610fbf826108c5565b610fd081610fcb6111e9565b6112a8565b610fda8383611917565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611080906131e7565b80601f01602080910402602001604051908101604052809291908181526020018280546110ac906131e7565b80156110f95780601f106110ce576101008083540402835291602001916110f9565b820191906000526020600020905b8154815290600101906020018083116110dc57829003601f168201915b505050505081565b6000801b611116816111116111e9565b6112a8565b61111e612142565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111945750611193826121e4565b5b9050919050565b6000816111a66112a3565b111580156111b5575060005482105b80156111e2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6112b28282610bf2565b611341576112d78173ffffffffffffffffffffffffffffffffffffffff1660146122c6565b6112e58360001c60206122c6565b6040516020016112f692919061350d565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113389190612ba6565b60405180910390fd5b5050565b600061135082611a17565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113776111e9565b73ffffffffffffffffffffffffffffffffffffffff1614806113aa57506113a982600001516113a46111e9565b610fdf565b5b806113ef57506113b86111e9565b73ffffffffffffffffffffffffffffffffffffffff166113d784610659565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611428576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611491576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115058585856001612502565b61151560008484600001516111f1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117c6576000548110156117c55782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182f8585856001612508565b5050505050565b6118408282610bf2565b6119135760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118b86111e9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119218282610bf2565b156119f55760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061199a6111e9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611a1382826040518060200160405280600081525061250e565b5050565b611a1f6129de565b600082905080611a2d6112a3565b11158015611a3c575060005481105b15611c6f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611c6d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b51578092505050611ca1565b5b600115611c6c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c67578092505050611ca1565b611b52565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611cae610ad5565b15611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590613593565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d326111e9565b604051611d3f9190612c6c565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d926111e9565b8786866040518563ffffffff1660e01b8152600401611db49493929190613608565b6020604051808303816000875af1925050508015611df057506040513d601f19601f82011682018060405250810190611ded9190613669565b60015b611e6a573d8060008114611e20576040519150601f19603f3d011682016040523d82523d6000602084013e611e25565b606091505b50600081511415611e62576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611ecc906131e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef8906131e7565b8015611f455780601f10611f1a57610100808354040283529160200191611f45565b820191906000526020600020905b815481529060010190602001808311611f2857829003601f168201915b5050505050905090565b60606000821415611f97576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120ab565b600082905060005b60008214611fc9578080611fb290613696565b915050600a82611fc2919061370e565b9150611f9f565b60008167ffffffffffffffff811115611fe557611fe4612d27565b5b6040519080825280601f01601f1916602001820160405280156120175781602001600182028036833780820191505090505b5090505b600085146120a457600182612030919061373f565b9150600a8561203f9190613773565b603061204b9190613346565b60f81b818381518110612061576120606137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561209d919061370e565b945061201b565b8093505050505b919050565b6060600c80546120bf906131e7565b80601f01602080910402602001604051908101604052809291908181526020018280546120eb906131e7565b80156121385780601f1061210d57610100808354040283529160200191612138565b820191906000526020600020905b81548152906001019060200180831161211b57829003601f168201915b5050505050905090565b61214a610ad5565b612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061381f565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121cd6111e9565b6040516121da9190612c6c565b60405180910390a1565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122af57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122bf57506122be82612520565b5b9050919050565b6060600060028360026122d9919061383f565b6122e39190613346565b67ffffffffffffffff8111156122fc576122fb612d27565b5b6040519080825280601f01601f19166020018201604052801561232e5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612366576123656137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106123ca576123c96137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261240a919061383f565b6124149190613346565b90505b60018111156124b4577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612456576124556137a4565b5b1a60f81b82828151811061246d5761246c6137a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124ad90613899565b9050612417565b50600084146124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef9061390f565b60405180910390fd5b8091505092915050565b50505050565b50505050565b61251b838383600161258a565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156125f7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612632576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61263f6000868387612502565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561280957506128088773ffffffffffffffffffffffffffffffffffffffff16611d49565b5b156128cf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461287e6000888480600101955088611d6c565b6128b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561280f5782600054146128ca57600080fd5b61293b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128d0575b8160008190555050506129516000868387612508565b5050505050565b828054612964906131e7565b90600052602060002090601f01602090048101928261298657600085556129cd565b82601f1061299f57805160ff19168380011785556129cd565b828001600101855582156129cd579182015b828111156129cc5782518255916020019190600101906129b1565b5b5090506129da9190612a21565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a3a576000816000905550600101612a22565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8781612a52565b8114612a9257600080fd5b50565b600081359050612aa481612a7e565b92915050565b600060208284031215612ac057612abf612a48565b5b6000612ace84828501612a95565b91505092915050565b60008115159050919050565b612aec81612ad7565b82525050565b6000602082019050612b076000830184612ae3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b47578082015181840152602081019050612b2c565b83811115612b56576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b7882612b0d565b612b828185612b18565b9350612b92818560208601612b29565b612b9b81612b5c565b840191505092915050565b60006020820190508181036000830152612bc08184612b6d565b905092915050565b6000819050919050565b612bdb81612bc8565b8114612be657600080fd5b50565b600081359050612bf881612bd2565b92915050565b600060208284031215612c1457612c13612a48565b5b6000612c2284828501612be9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c5682612c2b565b9050919050565b612c6681612c4b565b82525050565b6000602082019050612c816000830184612c5d565b92915050565b612c9081612c4b565b8114612c9b57600080fd5b50565b600081359050612cad81612c87565b92915050565b60008060408385031215612cca57612cc9612a48565b5b6000612cd885828601612c9e565b9250506020612ce985828601612be9565b9150509250929050565b612cfc81612bc8565b82525050565b6000602082019050612d176000830184612cf3565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5f82612b5c565b810181811067ffffffffffffffff82111715612d7e57612d7d612d27565b5b80604052505050565b6000612d91612a3e565b9050612d9d8282612d56565b919050565b600067ffffffffffffffff821115612dbd57612dbc612d27565b5b612dc682612b5c565b9050602081019050919050565b82818337600083830152505050565b6000612df5612df084612da2565b612d87565b905082815260208101848484011115612e1157612e10612d22565b5b612e1c848285612dd3565b509392505050565b600082601f830112612e3957612e38612d1d565b5b8135612e49848260208601612de2565b91505092915050565b600060208284031215612e6857612e67612a48565b5b600082013567ffffffffffffffff811115612e8657612e85612a4d565b5b612e9284828501612e24565b91505092915050565b600080600060608486031215612eb457612eb3612a48565b5b6000612ec286828701612c9e565b9350506020612ed386828701612c9e565b9250506040612ee486828701612be9565b9150509250925092565b6000819050919050565b612f0181612eee565b8114612f0c57600080fd5b50565b600081359050612f1e81612ef8565b92915050565b600060208284031215612f3a57612f39612a48565b5b6000612f4884828501612f0f565b91505092915050565b612f5a81612eee565b82525050565b6000602082019050612f756000830184612f51565b92915050565b60008060408385031215612f9257612f91612a48565b5b6000612fa085828601612f0f565b9250506020612fb185828601612c9e565b9150509250929050565b600060208284031215612fd157612fd0612a48565b5b6000612fdf84828501612c9e565b91505092915050565b612ff181612ad7565b8114612ffc57600080fd5b50565b60008135905061300e81612fe8565b92915050565b6000806040838503121561302b5761302a612a48565b5b600061303985828601612c9e565b925050602061304a85828601612fff565b9150509250929050565b600067ffffffffffffffff82111561306f5761306e612d27565b5b61307882612b5c565b9050602081019050919050565b600061309861309384613054565b612d87565b9050828152602081018484840111156130b4576130b3612d22565b5b6130bf848285612dd3565b509392505050565b600082601f8301126130dc576130db612d1d565b5b81356130ec848260208601613085565b91505092915050565b6000806000806080858703121561310f5761310e612a48565b5b600061311d87828801612c9e565b945050602061312e87828801612c9e565b935050604061313f87828801612be9565b925050606085013567ffffffffffffffff8111156131605761315f612a4d565b5b61316c878288016130c7565b91505092959194509250565b6000806040838503121561318f5761318e612a48565b5b600061319d85828601612c9e565b92505060206131ae85828601612c9e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ff57607f821691505b60208210811415613213576132126131b8565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613275602f83612b18565b915061328082613219565b604082019050919050565b600060208201905081810360008301526132a481613268565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006132e1601f83612b18565b91506132ec826132ab565b602082019050919050565b60006020820190508181036000830152613310816132d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061335182612bc8565b915061335c83612bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339157613390613317565b5b828201905092915050565b7f4d6f6e6f6c6f63636f3a204d617820737570706c792065786365646564000000600082015250565b60006133d2601d83612b18565b91506133dd8261339c565b602082019050919050565b60006020820190508181036000830152613401816133c5565b9050919050565b600081905092915050565b600061341e82612b0d565b6134288185613408565b9350613438818560208601612b29565b80840191505092915050565b60006134508286613413565b915061345c8285613413565b91506134688284613413565b9150819050949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006134ab601783613408565b91506134b682613475565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006134f7601183613408565b9150613502826134c1565b601182019050919050565b60006135188261349e565b91506135248285613413565b915061352f826134ea565b915061353b8284613413565b91508190509392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061357d601083612b18565b915061358882613547565b602082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135da826135b3565b6135e481856135be565b93506135f4818560208601612b29565b6135fd81612b5c565b840191505092915050565b600060808201905061361d6000830187612c5d565b61362a6020830186612c5d565b6136376040830185612cf3565b818103606083015261364981846135cf565b905095945050505050565b60008151905061366381612a7e565b92915050565b60006020828403121561367f5761367e612a48565b5b600061368d84828501613654565b91505092915050565b60006136a182612bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136d4576136d3613317565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061371982612bc8565b915061372483612bc8565b925082613734576137336136df565b5b828204905092915050565b600061374a82612bc8565b915061375583612bc8565b92508282101561376857613767613317565b5b828203905092915050565b600061377e82612bc8565b915061378983612bc8565b925082613799576137986136df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613809601483612b18565b9150613814826137d3565b602082019050919050565b60006020820190508181036000830152613838816137fc565b9050919050565b600061384a82612bc8565b915061385583612bc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561388e5761388d613317565b5b828202905092915050565b60006138a482612bc8565b915060008214156138b8576138b7613317565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006138f9602083612b18565b9150613904826138c3565b602082019050919050565b60006020820190508181036000830152613928816138ec565b905091905056fea26469706673582212207462854afbd67ced76b32e54981ba76ee55f47a817cca87527b21ad079b96b7364736f6c634300080c0033

Deployed Bytecode Sourcemap

59010:2264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60485:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44821:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46324:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45887:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40685:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60930:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47181:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59184:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26633:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27026:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59292:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28074:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60784:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59445:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47422:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9949:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44630:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41805:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61095:82;;;:::i;:::-;;25502:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44990:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24593:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46600:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47678:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59674:568;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59223:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27418:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46950:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59123:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61185:86;;;:::i;:::-;;60485:177;60594:4;60618:36;60642:11;60618:23;:36::i;:::-;60611:43;;60485:177;;;:::o;44821:100::-;44875:13;44908:5;44901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44821:100;:::o;46324:204::-;46392:7;46417:16;46425:7;46417;:16::i;:::-;46412:64;;46442:34;;;;;;;;;;;;;;46412:64;46496:15;:24;46512:7;46496:24;;;;;;;;;;;;;;;;;;;;;46489:31;;46324:204;;;:::o;45887:371::-;45960:13;45976:24;45992:7;45976:15;:24::i;:::-;45960:40;;46021:5;46015:11;;:2;:11;;;46011:48;;;46035:24;;;;;;;;;;;;;;46011:48;46092:5;46076:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;46102:37;46119:5;46126:12;:10;:12::i;:::-;46102:16;:37::i;:::-;46101:38;46076:63;46072:138;;;46163:35;;;;;;;;;;;;;;46072:138;46222:28;46231:2;46235:7;46244:5;46222:8;:28::i;:::-;45949:309;45887:371;;:::o;40685:303::-;40729:7;40954:15;:13;:15::i;:::-;40939:12;;40923:13;;:28;:46;40916:53;;40685:303;:::o;60930:157::-;24638:4;61017:18;;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;61069:10:::1;61053:13;:26;;;;;;;;;;;;:::i;:::-;;60930:157:::0;;:::o;47181:170::-;47315:28;47325:4;47331:2;47335:7;47315:9;:28::i;:::-;47181:170;;;:::o;59184:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26633:131::-;26707:7;26734:6;:12;26741:4;26734:12;;;;;;;;;;;:22;;;26727:29;;26633:131;;;:::o;27026:147::-;27109:18;27122:4;27109:12;:18::i;:::-;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;27140:25:::1;27151:4;27157:7;27140:10;:25::i;:::-;27026:147:::0;;;:::o;59292:32::-;;;;:::o;28074:218::-;28181:12;:10;:12::i;:::-;28170:23;;:7;:23;;;28162:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;28258:26;28270:4;28276:7;28258:11;:26::i;:::-;28074:218;;:::o;60784:138::-;24638:4;60863:18;;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;60910:4:::1;60899:8;:15;;;;;;;;;;;;:::i;:::-;;60784:138:::0;;:::o;59445:221::-;59261:24;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;59580:10:::2;;59568:8;59552:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59544:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;59635:23;59645:2;59649:8;59635:9;:23::i;:::-;1768:1:::1;2722:7;:22;;;;59445:221:::0;;;:::o;47422:185::-;47560:39;47577:4;47583:2;47587:7;47560:39;;;;;;;;;;;;:16;:39::i;:::-;47422:185;;;:::o;9949:86::-;9996:4;10020:7;;;;;;;;;;;10013:14;;9949:86;:::o;44630:124::-;44694:7;44721:20;44733:7;44721:11;:20::i;:::-;:25;;;44714:32;;44630:124;;;:::o;41805:206::-;41869:7;41910:1;41893:19;;:5;:19;;;41889:60;;;41921:28;;;;;;;;;;;;;;41889:60;41975:12;:19;41988:5;41975:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;41967:36;;41960:43;;41805:206;;;:::o;61095:82::-;24638:4;61130:18;;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;61161:8:::1;:6;:8::i;:::-;61095:82:::0;:::o;25502:147::-;25588:4;25612:6;:12;25619:4;25612:12;;;;;;;;;;;:20;;:29;25633:7;25612:29;;;;;;;;;;;;;;;;;;;;;;;;;25605:36;;25502:147;;;;:::o;44990:104::-;45046:13;45079:7;45072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44990:104;:::o;24593:49::-;24638:4;24593:49;;;:::o;46600:279::-;46703:12;:10;:12::i;:::-;46691:24;;:8;:24;;;46687:54;;;46724:17;;;;;;;;;;;;;;46687:54;46799:8;46754:18;:32;46773:12;:10;:12::i;:::-;46754:32;;;;;;;;;;;;;;;:42;46787:8;46754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46852:8;46823:48;;46838:12;:10;:12::i;:::-;46823:48;;;46862:8;46823:48;;;;;;:::i;:::-;;;;;;;;46600:279;;:::o;47678:369::-;47845:28;47855:4;47861:2;47865:7;47845:9;:28::i;:::-;47888:15;:2;:13;;;:15::i;:::-;:76;;;;;47908:56;47939:4;47945:2;47949:7;47958:5;47908:30;:56::i;:::-;47907:57;47888:76;47884:156;;;47988:40;;;;;;;;;;;;;;47884:156;47678:369;;;;:::o;59674:568::-;59792:13;59828:16;59836:7;59828;:16::i;:::-;59823:59;;59853:29;;;;;;;;;;;;;;59823:59;59893:21;59917:10;:8;:10::i;:::-;59893:34;;59983:1;59964:7;59958:21;:26;;:276;;;;;;;;;;;;;;;;;60076:7;60110:18;:7;:16;:18::i;:::-;60155:15;:13;:15::i;:::-;60033:160;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59958:276;59938:296;;;59674:568;;;:::o;59223:62::-;59261:24;59223:62;:::o;27418:149::-;27502:18;27515:4;27502:12;:18::i;:::-;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;27533:26:::1;27545:4;27551:7;27533:11;:26::i;:::-;27418:149:::0;;;:::o;46950:164::-;47047:4;47071:18;:25;47090:5;47071:25;;;;;;;;;;;;;;;:35;47097:8;47071:35;;;;;;;;;;;;;;;;;;;;;;;;;47064:42;;46950:164;;;;:::o;59123:54::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61185:86::-;24638:4;61222:18;;25084:30;25095:4;25101:12;:10;:12::i;:::-;25084:10;:30::i;:::-;61253:10:::1;:8;:10::i;:::-;61185:86:::0;:::o;25206:204::-;25291:4;25330:32;25315:47;;;:11;:47;;;;:87;;;;25366:36;25390:11;25366:23;:36::i;:::-;25315:87;25308:94;;25206:204;;;:::o;48302:187::-;48359:4;48402:7;48383:15;:13;:15::i;:::-;:26;;:53;;;;;48423:13;;48413:7;:23;48383:53;:98;;;;;48454:11;:20;48466:7;48454:20;;;;;;;;;;;:27;;;;;;;;;;;;48453:28;48383:98;48376:105;;48302:187;;;:::o;8603:98::-;8656:7;8683:10;8676:17;;8603:98;:::o;55913:196::-;56055:2;56028:15;:24;56044:7;56028:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56093:7;56089:2;56073:28;;56082:5;56073:28;;;;;;;;;;;;55913:196;;;:::o;40409:92::-;40465:7;40409:92;:::o;25939:505::-;26028:22;26036:4;26042:7;26028;:22::i;:::-;26023:414;;26216:41;26244:7;26216:41;;26254:2;26216:19;:41::i;:::-;26330:38;26358:4;26350:13;;26365:2;26330:19;:38::i;:::-;26121:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26067:358;;;;;;;;;;;:::i;:::-;;;;;;;;26023:414;25939:505;;:::o;51415:2112::-;51530:35;51568:20;51580:7;51568:11;:20::i;:::-;51530:58;;51601:22;51643:13;:18;;;51627:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;51678:50;51695:13;:18;;;51715:12;:10;:12::i;:::-;51678:16;:50::i;:::-;51627:101;:154;;;;51769:12;:10;:12::i;:::-;51745:36;;:20;51757:7;51745:11;:20::i;:::-;:36;;;51627:154;51601:181;;51800:17;51795:66;;51826:35;;;;;;;;;;;;;;51795:66;51898:4;51876:26;;:13;:18;;;:26;;;51872:67;;51911:28;;;;;;;;;;;;;;51872:67;51968:1;51954:16;;:2;:16;;;51950:52;;;51979:23;;;;;;;;;;;;;;51950:52;52015:43;52037:4;52043:2;52047:7;52056:1;52015:21;:43::i;:::-;52123:49;52140:1;52144:7;52153:13;:18;;;52123:8;:49::i;:::-;52498:1;52468:12;:18;52481:4;52468:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52542:1;52514:12;:16;52527:2;52514:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52588:2;52560:11;:20;52572:7;52560:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;52650:15;52605:11;:20;52617:7;52605:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;52918:19;52950:1;52940:7;:11;52918:33;;53011:1;52970:43;;:11;:24;52982:11;52970:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;52966:445;;;53195:13;;53181:11;:27;53177:219;;;53265:13;:18;;;53233:11;:24;53245:11;53233:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;53348:13;:28;;;53306:11;:24;53318:11;53306:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;53177:219;52966:445;52443:979;53458:7;53454:2;53439:27;;53448:4;53439:27;;;;;;;;;;;;53477:42;53498:4;53504:2;53508:7;53517:1;53477:20;:42::i;:::-;51519:2008;;51415:2112;;;:::o;29575:238::-;29659:22;29667:4;29673:7;29659;:22::i;:::-;29654:152;;29730:4;29698:6;:12;29705:4;29698:12;;;;;;;;;;;:20;;:29;29719:7;29698:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;29781:12;:10;:12::i;:::-;29754:40;;29772:7;29754:40;;29766:4;29754:40;;;;;;;;;;29654:152;29575:238;;:::o;29945:239::-;30029:22;30037:4;30043:7;30029;:22::i;:::-;30025:152;;;30100:5;30068:6;:12;30075:4;30068:12;;;;;;;;;;;:20;;:29;30089:7;30068:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30152:12;:10;:12::i;:::-;30125:40;;30143:7;30125:40;;30137:4;30125:40;;;;;;;;;;30025:152;29945:239;;:::o;48497:104::-;48566:27;48576:2;48580:8;48566:27;;;;;;;;;;;;:9;:27::i;:::-;48497:104;;:::o;43460:1108::-;43521:21;;:::i;:::-;43555:12;43570:7;43555:22;;43638:4;43619:15;:13;:15::i;:::-;:23;;:47;;;;;43653:13;;43646:4;:20;43619:47;43615:886;;;43687:31;43721:11;:17;43733:4;43721:17;;;;;;;;;;;43687:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43762:9;:16;;;43757:729;;43833:1;43807:28;;:9;:14;;;:28;;;43803:101;;43871:9;43864:16;;;;;;43803:101;44206:261;44213:4;44206:261;;;44246:6;;;;;;;;44291:11;:17;44303:4;44291:17;;;;;;;;;;;44279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44365:1;44339:28;;:9;:14;;;:28;;;44335:109;;44407:9;44400:16;;;;;;44335:109;44206:261;;;43757:729;43668:833;43615:886;44529:31;;;;;;;;;;;;;;43460:1108;;;;:::o;10749:118::-;10275:8;:6;:8::i;:::-;10274:9;10266:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;10819:4:::1;10809:7;;:14;;;;;;;;;;;;;;;;;;10839:20;10846:12;:10;:12::i;:::-;10839:20;;;;;;:::i;:::-;;;;;;;;10749:118::o:0;12368:326::-;12428:4;12685:1;12663:7;:19;;;:23;12656:30;;12368:326;;;:::o;56601:667::-;56764:4;56801:2;56785:36;;;56822:12;:10;:12::i;:::-;56836:4;56842:7;56851:5;56785:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56781:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57036:1;57019:6;:13;:18;57015:235;;;57065:40;;;;;;;;;;;;;;57015:235;57208:6;57202:13;57193:6;57189:2;57185:15;57178:38;56781:480;56914:45;;;56904:55;;;:6;:55;;;;56897:62;;;56601:667;;;;;;:::o;60250:109::-;60310:13;60343:8;60336:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60250:109;:::o;6165:723::-;6221:13;6451:1;6442:5;:10;6438:53;;;6469:10;;;;;;;;;;;;;;;;;;;;;6438:53;6501:12;6516:5;6501:20;;6532:14;6557:78;6572:1;6564:4;:9;6557:78;;6590:8;;;;;:::i;:::-;;;;6621:2;6613:10;;;;;:::i;:::-;;;6557:78;;;6645:19;6677:6;6667:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6645:39;;6695:154;6711:1;6702:5;:10;6695:154;;6739:1;6729:11;;;;;:::i;:::-;;;6806:2;6798:5;:10;;;;:::i;:::-;6785:2;:24;;;;:::i;:::-;6772:39;;6755:6;6762;6755:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6835:2;6826:11;;;;;:::i;:::-;;;6695:154;;;6873:6;6859:21;;;;;6165:723;;;;:::o;60367:110::-;60423:13;60456;60449:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60367:110;:::o;11008:120::-;10552:8;:6;:8::i;:::-;10544:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;11077:5:::1;11067:7;;:15;;;;;;;;;;;;;;;;;;11098:22;11107:12;:10;:12::i;:::-;11098:22;;;;;;:::i;:::-;;;;;;;;11008:120::o:0;41436:305::-;41538:4;41590:25;41575:40;;;:11;:40;;;;:105;;;;41647:33;41632:48;;;:11;:48;;;;41575:105;:158;;;;41697:36;41721:11;41697:23;:36::i;:::-;41575:158;41555:178;;41436:305;;;:::o;7466:451::-;7541:13;7567:19;7612:1;7603:6;7599:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7589:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7567:47;;7625:15;:6;7632:1;7625:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;7651;:6;7658:1;7651:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;7682:9;7707:1;7698:6;7694:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7682:26;;7677:135;7714:1;7710;:5;7677:135;;;7749:12;7770:3;7762:5;:11;7749:25;;;;;;;:::i;:::-;;;;;7737:6;7744:1;7737:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;7799:1;7789:11;;;;;7717:3;;;;:::i;:::-;;;7677:135;;;;7839:1;7830:5;:10;7822:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;7902:6;7888:21;;;7466:451;;;;:::o;57916:159::-;;;;;:::o;58734:158::-;;;;;:::o;48964:163::-;49087:32;49093:2;49097:8;49107:5;49114:4;49087:5;:32::i;:::-;48964:163;;;:::o;22451:157::-;22536:4;22575:25;22560:40;;;:11;:40;;;;22553:47;;22451:157;;;:::o;49386:1775::-;49525:20;49548:13;;49525:36;;49590:1;49576:16;;:2;:16;;;49572:48;;;49601:19;;;;;;;;;;;;;;49572:48;49647:1;49635:8;:13;49631:44;;;49657:18;;;;;;;;;;;;;;49631:44;49688:61;49718:1;49722:2;49726:12;49740:8;49688:21;:61::i;:::-;50061:8;50026:12;:16;50039:2;50026:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50125:8;50085:12;:16;50098:2;50085:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50184:2;50151:11;:25;50163:12;50151:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50251:15;50201:11;:25;50213:12;50201:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50284:20;50307:12;50284:35;;50334:11;50363:8;50348:12;:23;50334:37;;50392:4;:23;;;;;50400:15;:2;:13;;;:15::i;:::-;50392:23;50388:641;;;50436:314;50492:12;50488:2;50467:38;;50484:1;50467:38;;;;;;;;;;;;50533:69;50572:1;50576:2;50580:14;;;;;;50596:5;50533:30;:69::i;:::-;50528:174;;50638:40;;;;;;;;;;;;;;50528:174;50745:3;50729:12;:19;;50436:314;;50831:12;50814:13;;:29;50810:43;;50845:8;;;50810:43;50388:641;;;50894:120;50950:14;;;;;;50946:2;50925:40;;50942:1;50925:40;;;;;;;;;;;;51009:3;50993:12;:19;;50894:120;;50388:641;51059:12;51043:13;:28;;;;50001:1082;;51093:60;51122:1;51126:2;51130:12;51144:8;51093:20;:60::i;:::-;49514:1647;49386:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:77::-;8573:7;8602:5;8591:16;;8536:77;;;:::o;8619:122::-;8692:24;8710:5;8692:24;:::i;:::-;8685:5;8682:35;8672:63;;8731:1;8728;8721:12;8672:63;8619:122;:::o;8747:139::-;8793:5;8831:6;8818:20;8809:29;;8847:33;8874:5;8847:33;:::i;:::-;8747:139;;;;:::o;8892:329::-;8951:6;9000:2;8988:9;8979:7;8975:23;8971:32;8968:119;;;9006:79;;:::i;:::-;8968:119;9126:1;9151:53;9196:7;9187:6;9176:9;9172:22;9151:53;:::i;:::-;9141:63;;9097:117;8892:329;;;;:::o;9227:118::-;9314:24;9332:5;9314:24;:::i;:::-;9309:3;9302:37;9227:118;;:::o;9351:222::-;9444:4;9482:2;9471:9;9467:18;9459:26;;9495:71;9563:1;9552:9;9548:17;9539:6;9495:71;:::i;:::-;9351:222;;;;:::o;9579:474::-;9647:6;9655;9704:2;9692:9;9683:7;9679:23;9675:32;9672:119;;;9710:79;;:::i;:::-;9672:119;9830:1;9855:53;9900:7;9891:6;9880:9;9876:22;9855:53;:::i;:::-;9845:63;;9801:117;9957:2;9983:53;10028:7;10019:6;10008:9;10004:22;9983:53;:::i;:::-;9973:63;;9928:118;9579:474;;;;;:::o;10059:329::-;10118:6;10167:2;10155:9;10146:7;10142:23;10138:32;10135:119;;;10173:79;;:::i;:::-;10135:119;10293:1;10318:53;10363:7;10354:6;10343:9;10339:22;10318:53;:::i;:::-;10308:63;;10264:117;10059:329;;;;:::o;10394:116::-;10464:21;10479:5;10464:21;:::i;:::-;10457:5;10454:32;10444:60;;10500:1;10497;10490:12;10444:60;10394:116;:::o;10516:133::-;10559:5;10597:6;10584:20;10575:29;;10613:30;10637:5;10613:30;:::i;:::-;10516:133;;;;:::o;10655:468::-;10720:6;10728;10777:2;10765:9;10756:7;10752:23;10748:32;10745:119;;;10783:79;;:::i;:::-;10745:119;10903:1;10928:53;10973:7;10964:6;10953:9;10949:22;10928:53;:::i;:::-;10918:63;;10874:117;11030:2;11056:50;11098:7;11089:6;11078:9;11074:22;11056:50;:::i;:::-;11046:60;;11001:115;10655:468;;;;;:::o;11129:307::-;11190:4;11280:18;11272:6;11269:30;11266:56;;;11302:18;;:::i;:::-;11266:56;11340:29;11362:6;11340:29;:::i;:::-;11332:37;;11424:4;11418;11414:15;11406:23;;11129:307;;;:::o;11442:410::-;11519:5;11544:65;11560:48;11601:6;11560:48;:::i;:::-;11544:65;:::i;:::-;11535:74;;11632:6;11625:5;11618:21;11670:4;11663:5;11659:16;11708:3;11699:6;11694:3;11690:16;11687:25;11684:112;;;11715:79;;:::i;:::-;11684:112;11805:41;11839:6;11834:3;11829;11805:41;:::i;:::-;11525:327;11442:410;;;;;:::o;11871:338::-;11926:5;11975:3;11968:4;11960:6;11956:17;11952:27;11942:122;;11983:79;;:::i;:::-;11942:122;12100:6;12087:20;12125:78;12199:3;12191:6;12184:4;12176:6;12172:17;12125:78;:::i;:::-;12116:87;;11932:277;11871:338;;;;:::o;12215:943::-;12310:6;12318;12326;12334;12383:3;12371:9;12362:7;12358:23;12354:33;12351:120;;;12390:79;;:::i;:::-;12351:120;12510:1;12535:53;12580:7;12571:6;12560:9;12556:22;12535:53;:::i;:::-;12525:63;;12481:117;12637:2;12663:53;12708:7;12699:6;12688:9;12684:22;12663:53;:::i;:::-;12653:63;;12608:118;12765:2;12791:53;12836:7;12827:6;12816:9;12812:22;12791:53;:::i;:::-;12781:63;;12736:118;12921:2;12910:9;12906:18;12893:32;12952:18;12944:6;12941:30;12938:117;;;12974:79;;:::i;:::-;12938:117;13079:62;13133:7;13124:6;13113:9;13109:22;13079:62;:::i;:::-;13069:72;;12864:287;12215:943;;;;;;;:::o;13164:474::-;13232:6;13240;13289:2;13277:9;13268:7;13264:23;13260:32;13257:119;;;13295:79;;:::i;:::-;13257:119;13415:1;13440:53;13485:7;13476:6;13465:9;13461:22;13440:53;:::i;:::-;13430:63;;13386:117;13542:2;13568:53;13613:7;13604:6;13593:9;13589:22;13568:53;:::i;:::-;13558:63;;13513:118;13164:474;;;;;:::o;13644:180::-;13692:77;13689:1;13682:88;13789:4;13786:1;13779:15;13813:4;13810:1;13803:15;13830:320;13874:6;13911:1;13905:4;13901:12;13891:22;;13958:1;13952:4;13948:12;13979:18;13969:81;;14035:4;14027:6;14023:17;14013:27;;13969:81;14097:2;14089:6;14086:14;14066:18;14063:38;14060:84;;;14116:18;;:::i;:::-;14060:84;13881:269;13830:320;;;:::o;14156:234::-;14296:34;14292:1;14284:6;14280:14;14273:58;14365:17;14360:2;14352:6;14348:15;14341:42;14156:234;:::o;14396:366::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:419::-;14934:4;14972:2;14961:9;14957:18;14949:26;;15021:9;15015:4;15011:20;15007:1;14996:9;14992:17;14985:47;15049:131;15175:4;15049:131;:::i;:::-;15041:139;;14768:419;;;:::o;15193:181::-;15333:33;15329:1;15321:6;15317:14;15310:57;15193:181;:::o;15380:366::-;15522:3;15543:67;15607:2;15602:3;15543:67;:::i;:::-;15536:74;;15619:93;15708:3;15619:93;:::i;:::-;15737:2;15732:3;15728:12;15721:19;;15380:366;;;:::o;15752:419::-;15918:4;15956:2;15945:9;15941:18;15933:26;;16005:9;15999:4;15995:20;15991:1;15980:9;15976:17;15969:47;16033:131;16159:4;16033:131;:::i;:::-;16025:139;;15752:419;;;:::o;16177:180::-;16225:77;16222:1;16215:88;16322:4;16319:1;16312:15;16346:4;16343:1;16336:15;16363:305;16403:3;16422:20;16440:1;16422:20;:::i;:::-;16417:25;;16456:20;16474:1;16456:20;:::i;:::-;16451:25;;16610:1;16542:66;16538:74;16535:1;16532:81;16529:107;;;16616:18;;:::i;:::-;16529:107;16660:1;16657;16653:9;16646:16;;16363:305;;;;:::o;16674:179::-;16814:31;16810:1;16802:6;16798:14;16791:55;16674:179;:::o;16859:366::-;17001:3;17022:67;17086:2;17081:3;17022:67;:::i;:::-;17015:74;;17098:93;17187:3;17098:93;:::i;:::-;17216:2;17211:3;17207:12;17200:19;;16859:366;;;:::o;17231:419::-;17397:4;17435:2;17424:9;17420:18;17412:26;;17484:9;17478:4;17474:20;17470:1;17459:9;17455:17;17448:47;17512:131;17638:4;17512:131;:::i;:::-;17504:139;;17231:419;;;:::o;17656:148::-;17758:11;17795:3;17780:18;;17656:148;;;;:::o;17810:377::-;17916:3;17944:39;17977:5;17944:39;:::i;:::-;17999:89;18081:6;18076:3;17999:89;:::i;:::-;17992:96;;18097:52;18142:6;18137:3;18130:4;18123:5;18119:16;18097:52;:::i;:::-;18174:6;18169:3;18165:16;18158:23;;17920:267;17810:377;;;;:::o;18193:595::-;18421:3;18443:95;18534:3;18525:6;18443:95;:::i;:::-;18436:102;;18555:95;18646:3;18637:6;18555:95;:::i;:::-;18548:102;;18667:95;18758:3;18749:6;18667:95;:::i;:::-;18660:102;;18779:3;18772:10;;18193:595;;;;;;:::o;18794:173::-;18934:25;18930:1;18922:6;18918:14;18911:49;18794:173;:::o;18973:402::-;19133:3;19154:85;19236:2;19231:3;19154:85;:::i;:::-;19147:92;;19248:93;19337:3;19248:93;:::i;:::-;19366:2;19361:3;19357:12;19350:19;;18973:402;;;:::o;19381:167::-;19521:19;19517:1;19509:6;19505:14;19498:43;19381:167;:::o;19554:402::-;19714:3;19735:85;19817:2;19812:3;19735:85;:::i;:::-;19728:92;;19829:93;19918:3;19829:93;:::i;:::-;19947:2;19942:3;19938:12;19931:19;;19554:402;;;:::o;19962:967::-;20344:3;20366:148;20510:3;20366:148;:::i;:::-;20359:155;;20531:95;20622:3;20613:6;20531:95;:::i;:::-;20524:102;;20643:148;20787:3;20643:148;:::i;:::-;20636:155;;20808:95;20899:3;20890:6;20808:95;:::i;:::-;20801:102;;20920:3;20913:10;;19962:967;;;;;:::o;20935:166::-;21075:18;21071:1;21063:6;21059:14;21052:42;20935:166;:::o;21107:366::-;21249:3;21270:67;21334:2;21329:3;21270:67;:::i;:::-;21263:74;;21346:93;21435:3;21346:93;:::i;:::-;21464:2;21459:3;21455:12;21448:19;;21107:366;;;:::o;21479:419::-;21645:4;21683:2;21672:9;21668:18;21660:26;;21732:9;21726:4;21722:20;21718:1;21707:9;21703:17;21696:47;21760:131;21886:4;21760:131;:::i;:::-;21752:139;;21479:419;;;:::o;21904:98::-;21955:6;21989:5;21983:12;21973:22;;21904:98;;;:::o;22008:168::-;22091:11;22125:6;22120:3;22113:19;22165:4;22160:3;22156:14;22141:29;;22008:168;;;;:::o;22182:360::-;22268:3;22296:38;22328:5;22296:38;:::i;:::-;22350:70;22413:6;22408:3;22350:70;:::i;:::-;22343:77;;22429:52;22474:6;22469:3;22462:4;22455:5;22451:16;22429:52;:::i;:::-;22506:29;22528:6;22506:29;:::i;:::-;22501:3;22497:39;22490:46;;22272:270;22182:360;;;;:::o;22548:640::-;22743:4;22781:3;22770:9;22766:19;22758:27;;22795:71;22863:1;22852:9;22848:17;22839:6;22795:71;:::i;:::-;22876:72;22944:2;22933:9;22929:18;22920:6;22876:72;:::i;:::-;22958;23026:2;23015:9;23011:18;23002:6;22958:72;:::i;:::-;23077:9;23071:4;23067:20;23062:2;23051:9;23047:18;23040:48;23105:76;23176:4;23167:6;23105:76;:::i;:::-;23097:84;;22548:640;;;;;;;:::o;23194:141::-;23250:5;23281:6;23275:13;23266:22;;23297:32;23323:5;23297:32;:::i;:::-;23194:141;;;;:::o;23341:349::-;23410:6;23459:2;23447:9;23438:7;23434:23;23430:32;23427:119;;;23465:79;;:::i;:::-;23427:119;23585:1;23610:63;23665:7;23656:6;23645:9;23641:22;23610:63;:::i;:::-;23600:73;;23556:127;23341:349;;;;:::o;23696:233::-;23735:3;23758:24;23776:5;23758:24;:::i;:::-;23749:33;;23804:66;23797:5;23794:77;23791:103;;;23874:18;;:::i;:::-;23791:103;23921:1;23914:5;23910:13;23903:20;;23696:233;;;:::o;23935:180::-;23983:77;23980:1;23973:88;24080:4;24077:1;24070:15;24104:4;24101:1;24094:15;24121:185;24161:1;24178:20;24196:1;24178:20;:::i;:::-;24173:25;;24212:20;24230:1;24212:20;:::i;:::-;24207:25;;24251:1;24241:35;;24256:18;;:::i;:::-;24241:35;24298:1;24295;24291:9;24286:14;;24121:185;;;;:::o;24312:191::-;24352:4;24372:20;24390:1;24372:20;:::i;:::-;24367:25;;24406:20;24424:1;24406:20;:::i;:::-;24401:25;;24445:1;24442;24439:8;24436:34;;;24450:18;;:::i;:::-;24436:34;24495:1;24492;24488:9;24480:17;;24312:191;;;;:::o;24509:176::-;24541:1;24558:20;24576:1;24558:20;:::i;:::-;24553:25;;24592:20;24610:1;24592:20;:::i;:::-;24587:25;;24631:1;24621:35;;24636:18;;:::i;:::-;24621:35;24677:1;24674;24670:9;24665:14;;24509:176;;;;:::o;24691:180::-;24739:77;24736:1;24729:88;24836:4;24833:1;24826:15;24860:4;24857:1;24850:15;24877:170;25017:22;25013:1;25005:6;25001:14;24994:46;24877:170;:::o;25053:366::-;25195:3;25216:67;25280:2;25275:3;25216:67;:::i;:::-;25209:74;;25292:93;25381:3;25292:93;:::i;:::-;25410:2;25405:3;25401:12;25394:19;;25053:366;;;:::o;25425:419::-;25591:4;25629:2;25618:9;25614:18;25606:26;;25678:9;25672:4;25668:20;25664:1;25653:9;25649:17;25642:47;25706:131;25832:4;25706:131;:::i;:::-;25698:139;;25425:419;;;:::o;25850:348::-;25890:7;25913:20;25931:1;25913:20;:::i;:::-;25908:25;;25947:20;25965:1;25947:20;:::i;:::-;25942:25;;26135:1;26067:66;26063:74;26060:1;26057:81;26052:1;26045:9;26038:17;26034:105;26031:131;;;26142:18;;:::i;:::-;26031:131;26190:1;26187;26183:9;26172:20;;25850:348;;;;:::o;26204:171::-;26243:3;26266:24;26284:5;26266:24;:::i;:::-;26257:33;;26312:4;26305:5;26302:15;26299:41;;;26320:18;;:::i;:::-;26299:41;26367:1;26360:5;26356:13;26349:20;;26204:171;;;:::o;26381:182::-;26521:34;26517:1;26509:6;26505:14;26498:58;26381:182;:::o;26569:366::-;26711:3;26732:67;26796:2;26791:3;26732:67;:::i;:::-;26725:74;;26808:93;26897:3;26808:93;:::i;:::-;26926:2;26921:3;26917:12;26910:19;;26569:366;;;:::o;26941:419::-;27107:4;27145:2;27134:9;27130:18;27122:26;;27194:9;27188:4;27184:20;27180:1;27169:9;27165:17;27158:47;27222:131;27348:4;27222:131;:::i;:::-;27214:139;;26941:419;;;:::o

Swarm Source

ipfs://7462854afbd67ced76b32e54981ba76ee55f47a817cca87527b21ad079b96b73
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.