ETH Price: $2,460.66 (+0.36%)

Token

Little Mutants (LMC)
 

Overview

Max Total Supply

500 LMC

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 LMC
0x2fa35d6CFd2ce5C981de449D292b1826c86E34eA
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:
LittleMutants

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 6000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-02
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-28
*/

// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}




/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}




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


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


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

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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


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


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





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


/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


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

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


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


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


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

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


// https://eips.ethereum.org/EIPS/eip-2981

/// @dev Interface for the NFT Royalty Standard
interface IERC2981 {
    /**
     * @notice Called with the sale price to determine how much royalty
     *         is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param value - the sale price of the NFT asset specified by _tokenId
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for _value sale price
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 value
    )
        external
        returns (
            address receiver,
            uint256 royaltyAmount
        );
}

abstract contract ERC2981 is ERC165, IERC2981 {
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _value
    )
        external
        virtual
        override
        returns (
            address _receiver,
            uint256 _royaltyAmount
        );

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }
}

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


// Little Mutants main contract
contract LittleMutants is AccessControl, ERC2981, ERC721Enumerable, ERC721Burnable, ERC721Pausable, ReentrancyGuard {
    event RoyaltyWalletChanged(address indexed previousWallet, address indexed newWallet);
    event RoyaltyFeeChanged(uint256 previousFee, uint256 newFee);
    event BaseURIChanged(string previousURI, string newURI);

    bytes32 public constant OWNER_ROLE = keccak256("OWNER_ROLE");

    uint256 public constant ROYALTY_FEE_DENOMINATOR = 100000;
    uint256 public royaltyFee;
    address public immutable royaltyWallet;
    address public immutable mintWallet;

    uint256 public MINT_PRICE = 0.05 ether;
    uint256 public COLLECTION_SIZE = 5000;
    uint256 public constant COLLECTION_SIZE_MAX = 5000;
    uint256 public RESERVED = 100;
    uint256 public MINT_WALLET_CAP = 10;
    uint256 public WL_WALLET_CAP = 5;

    mapping(address => uint256) public numMinted;

    bool public publicSaleIsActive;

    // Signer address
    address public signerAddress = address(0x79c95a5841637857787762cF1443095a64894315);

    string private _baseTokenURI;

    /**
     * @param _royaltyWallet Wallet where royalties should be sent
     * @param _royaltyFee Fee numerator to be used for fees
     */
    constructor(
        address _royaltyWallet,
        address _mintWallet,
        uint256 _royaltyFee
    ) ERC721("Little Mutants", "LMC") {
        royaltyWallet = _royaltyWallet;
        _setRoyaltyFee(_royaltyFee);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(OWNER_ROLE, msg.sender);

        mintWallet = _mintWallet;

        //mint token #0 to owner
        _mint(msg.sender, 0);

        //pause token transfers until owner enables WL sale, can never be paused again
        _pause();
    }

    /**
     * @dev Throws if called by any account other than owners. Implemented using the underlying AccessControl methods.
     */
    modifier onlyOwners() {
        require(hasRole(OWNER_ROLE, _msgSender()), "Caller does not have the OWNER_ROLE");
        _;
    }

    /**
     * @dev Public mint
     */
    function mint(uint256 amount) external payable nonReentrant {
        uint256 supply = totalSupply();
        require( publicSaleIsActive, "Public sale not active");
        require( numMinted[msg.sender] + amount <= MINT_WALLET_CAP, "Exceeds mint transaction limit");
        require( supply + amount <= COLLECTION_SIZE - RESERVED, "Exceeds maximum supply" );
        require( msg.value >= MINT_PRICE * amount, "Incorrect ether amount" );
        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, supply + i);
        }
        numMinted[msg.sender] += amount;
    }

    /**
     * @dev Whitelist mint
     */
    function mintWL(uint256 amount, bytes calldata signature) external payable nonReentrant {
        uint256 supply = totalSupply();
        require( numMinted[msg.sender] + amount <= WL_WALLET_CAP, "Exceeds per transaction limit" );
        require( msg.value >= MINT_PRICE * amount, "Incorrect ether amount" );
        require(_validateSignature(
          signature,
          msg.sender
        ), "Invalid data provided");
        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, supply + i);
        }
        numMinted[msg.sender] += amount;
    }

    function giveAway(address _to, uint256 amount) external onlyOwners {
        require( amount <= RESERVED, "Amount exceeds reserved amount for giveaways" );
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < amount; i++) {
            _mint(_to, supply + i);
        }
        RESERVED -= amount;
    }

    /**
     * @dev Unpauses token transfers, initiates WL sale. Token transfers can never be paused again.
     */
    function unpause() external onlyOwners {
        _unpause();
    }

    /**
     * @dev Sets the base token URI
     * @param uri Base token URI
     */
    function setBaseTokenURI(string calldata uri) external onlyOwners {
        _setBaseTokenURI(uri);
    }


    /**
     * @dev Sets the fee percentage for royalties
     * @param _royaltyFee Basis points to compute royalty percentage
     */
    function setRoyaltyFee(uint256 _royaltyFee) external onlyOwners {
        _setRoyaltyFee(_royaltyFee);
    }

    /**
     * @dev Sets the mint price
     */
    function setMintPrice(uint256 _mintPrice) external onlyOwners {
        MINT_PRICE = _mintPrice;
    }

    /**
     * @dev Gets the mint price
     */
    function getMintPrice() external view returns (uint256) {
        return MINT_PRICE;
    }

    /**
     * @dev Sets the mint wallet limit
     */
    function setMintWalletLimit(uint256 _mintWalletLimit) external onlyOwners {
        MINT_WALLET_CAP = _mintWalletLimit;
    }

    /**
     * @dev Get the mint wallet limit
     */
    function getMintWalletLimit() external view returns (uint256) {
        return MINT_WALLET_CAP;
    }

    /**
     * @dev Sets the wl mint wallet limit
     */
    function setWLMintWalletLimit(uint256 _wlMintWalletLimit) external onlyOwners {
        WL_WALLET_CAP = _wlMintWalletLimit;
    }

    /**
     * @dev Get the wl mint wallet limit
     */
    function getWLMintWalletLimit() external view returns (uint256) {
        return WL_WALLET_CAP;
    }

    /**
     * @dev Sets the signer address
     */
    function setSignerAddress(address _signerAddress) external onlyOwners {
        signerAddress = _signerAddress;
    }

    /**
     * @dev Set public sale active
     */
    function setPublicSaleActive(bool _publicSaleIsActive) external onlyOwners {
        publicSaleIsActive = _publicSaleIsActive;
    }

    /**
     * @dev Get public sale active
     */
    function getPublicSaleIsActive() external view returns (bool) {
        return publicSaleIsActive;
    }

    /**
     * @dev Sets the collection size
     */
    function setCollectionSize(uint256 _collectionSize) external onlyOwners {
        require(_collectionSize <= COLLECTION_SIZE_MAX);
        COLLECTION_SIZE = _collectionSize;
    }

    /**
     * @dev Function defined by ERC2981, which provides information about fees.
     * @param value Price being paid for the token (in base units)
     */
    function royaltyInfo(
        uint256, // tokenId is not used in this case as all tokens take the same fee
        uint256 value
    )
        external
        view
        override
        returns (
            address, // receiver
            uint256 // royaltyAmount
        )
    {
        return (royaltyWallet, (value * royaltyFee) / ROYALTY_FEE_DENOMINATOR);
    }

    /**
     * @dev For each existing tokenId, it returns the URI where metadata is stored
     * @param tokenId Token id
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        string memory uri = super.tokenURI(tokenId);
        return bytes(uri).length > 0 ? string(abi.encodePacked(uri, ".json")) : "";
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(AccessControl, ERC2981, ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _setBaseTokenURI(string memory newURI) internal {
        emit BaseURIChanged(_baseTokenURI, newURI);
        _baseTokenURI = newURI;
    }

    function _setRoyaltyFee(uint256 _royaltyFee) internal {
        require(_royaltyFee <= ROYALTY_FEE_DENOMINATOR, "INVALID_FEE");
        emit RoyaltyFeeChanged(royaltyFee, _royaltyFee);
        royaltyFee = _royaltyFee;
    }

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

    function _validateSignature(
        bytes calldata signature,
        address senderAddress
        ) internal view returns (bool) {
        bytes32 dataHash = keccak256(abi.encodePacked(senderAddress));
        bytes32 message = ECDSA.toEthSignedMessageHash(dataHash);

        address receivedAddress = ECDSA.recover(message, signature);
        return (receivedAddress != address(0) && receivedAddress == signerAddress);
    }

    function withdraw() external onlyOwners {
        uint256 balance = address(this).balance;
        payable(mintWallet).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyWallet","type":"address"},{"internalType":"address","name":"_mintWallet","type":"address"},{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"string","name":"previousURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"BaseURIChanged","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":false,"internalType":"uint256","name":"previousFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"RoyaltyFeeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"RoyaltyWalletChanged","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":"COLLECTION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION_SIZE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_WALLET_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_WALLET_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWLMintWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","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":[],"name":"royaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionSize","type":"uint256"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintWalletLimit","type":"uint256"}],"name":"setMintWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSaleIsActive","type":"bool"}],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"name":"setRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMintWalletLimit","type":"uint256"}],"name":"setWLMintWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405266b1a2bc2ec50000600e55611388600f556064601055600a601155600560125560148054610100600160a81b0319167479c95a5841637857787762cf1443095a64894315001790553480156200005957600080fd5b5060405162004a8f38038062004a8f8339810160408190526200007c916200091a565b604080518082018252600e81526d4c6974746c65204d7574616e747360901b6020808301918252835180850190945260038452624c4d4360e81b908401528151919291620000cd9160019162000857565b508051620000e390600290602084019062000857565b5050600b805460ff19169055506001600c556001600160a01b0383166080526200010d8162000173565b6200011a600033620001fb565b620001467fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33620001fb565b6001600160a01b03821660a052620001603360006200020b565b6200016a62000361565b50505062000a0f565b620186a0811115620001ba5760405162461bcd60e51b815260206004820152600b60248201526a494e56414c49445f46454560a81b60448201526064015b60405180910390fd5b600d5460408051918252602082018390527fc6e980a116c671cc344b1ed002b6f0c3454692ecb6cc881f3ce59366368cde4f910160405180910390a1600d55565b620002078282620003fc565b5050565b6001600160a01b038216620002635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001b1565b6000818152600360205260409020546001600160a01b031615620002ca5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001b1565b620002d8600083836200049c565b6001600160a01b03821660009081526004602052604081208054600192906200030390849062000971565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600b5460ff1615620003a95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001b1565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003df3390565b6040516001600160a01b03909116815260200160405180910390a1565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000207576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620004583390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620004b4838383620004b960201b62001f3f1760201c565b505050565b620004d18383836200053a60201b62001fc31760201c565b600b5460ff1615620004b45760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401620001b1565b62000552838383620004b460201b62000dda1760201c565b6001600160a01b038316620005b057620005aa81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b620005d6565b816001600160a01b0316836001600160a01b031614620005d657620005d6838262000616565b6001600160a01b038216620005f057620004b481620006c3565b826001600160a01b0316826001600160a01b031614620004b457620004b482826200077d565b600060016200063084620007ce60201b620016771760201c565b6200063c91906200098c565b60008381526008602052604090205490915080821462000690576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090620006d7906001906200098c565b6000838152600a602052604081205460098054939450909284908110620007025762000702620009a6565b906000526020600020015490508060098381548110620007265762000726620009a6565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480620007615762000761620009bc565b6001900381819060005260206000200160009055905550505050565b60006200079583620007ce60201b620016771760201c565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60006001600160a01b0382166200083b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001b1565b506001600160a01b031660009081526004602052604090205490565b8280546200086590620009d2565b90600052602060002090601f016020900481019282620008895760008555620008d4565b82601f10620008a457805160ff1916838001178555620008d4565b82800160010185558215620008d4579182015b82811115620008d4578251825591602001919060010190620008b7565b50620008e2929150620008e6565b5090565b5b80821115620008e25760008155600101620008e7565b80516001600160a01b03811681146200091557600080fd5b919050565b6000806000606084860312156200093057600080fd5b6200093b84620008fd565b92506200094b60208501620008fd565b9150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b600082198211156200098757620009876200095b565b500190565b600082821015620009a157620009a16200095b565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c90821680620009e757607f821691505b6020821081141562000a0957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161404c62000a43600039600081816109a8015261115f0152600081816106260152610e6c015261404c6000f3fe60806040526004361061036b5760003560e01c80636352211e116101c6578063c002d23d116100f7578063da6cdfbf11610095578063e2e06fa31161006f578063e2e06fa3146109e1578063e58378bb14610a01578063e985e9c514610a35578063f4a0a52814610a7e57600080fd5b8063da6cdfbf1461097e578063dff8f34014610996578063e1a8bf2c146109ca57600080fd5b8063cb93f59c116100d1578063cb93f59c14610912578063d22073d814610932578063d547741f14610948578063d8258d951461096857600080fd5b8063c002d23d146108bc578063c87b56dd146108d2578063ca800144146108f257600080fd5b8063a217fddf11610164578063aa592f251161013e578063aa592f2514610850578063aca8ffe714610866578063b88d4fde14610886578063b8997a97146108a657600080fd5b8063a217fddf14610806578063a22cb4651461081b578063a7f93ebd1461083b57600080fd5b806391d14854116101a057806391d148541461078557806393918454146107c957806395d89b41146107de578063a0712d68146107f357600080fd5b80636352211e1461072557806370a0823114610745578063732c9de41461076557600080fd5b806330176e13116102a057806342842e0e1161023e5780635994b6b8116102185780635994b6b8146106bd5780635b7633d0146106d35780635c975abb146106f85780635dd62d8c1461071057600080fd5b806342842e0e1461065d57806342966c681461067d5780634f6ccce71461069d57600080fd5b80633ceaba261161027a5780633ceaba26146105e15780633e4086e5146105f45780633f0d2ec1146106145780633f4ba83a1461064857600080fd5b806330176e131461058c57806336568abe146105ac5780633ccfd60b146105cc57600080fd5b806318581e061161030d578063248a9ca3116102e7578063248a9ca3146104dd5780632a55205a1461050d5780632f2ff15d1461054c5780632f745c591461056c57600080fd5b806318581e061461047a57806320fc7eb21461049057806323b872dd146104bd57600080fd5b8063081812fc11610349578063081812fc146103e9578063095ea7b3146104215780630fcf2e751461044157806318160ddd1461045b57600080fd5b806301ffc9a714610370578063046dc166146103a557806306fdde03146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004613898565b610a9e565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103c56103c03660046138d1565b610aaf565b005b3480156103d357600080fd5b506103dc610b75565b60405161039c9190613944565b3480156103f557600080fd5b50610409610404366004613957565b610c07565b6040516001600160a01b03909116815260200161039c565b34801561042d57600080fd5b506103c561043c366004613970565b610cad565b34801561044d57600080fd5b506014546103909060ff1681565b34801561046757600080fd5b506009545b60405190815260200161039c565b34801561048657600080fd5b5061046c61138881565b34801561049c57600080fd5b5061046c6104ab3660046138d1565b60136020526000908152604090205481565b3480156104c957600080fd5b506103c56104d836600461399a565b610ddf565b3480156104e957600080fd5b5061046c6104f8366004613957565b60009081526020819052604090206001015490565b34801561051957600080fd5b5061052d6105283660046139d6565b610e67565b604080516001600160a01b03909316835260208301919091520161039c565b34801561055857600080fd5b506103c56105673660046139f8565b610eb3565b34801561057857600080fd5b5061046c610587366004613970565b610ed9565b34801561059857600080fd5b506103c56105a7366004613a66565b610f81565b3480156105b857600080fd5b506103c56105c73660046139f8565b611046565b3480156105d857600080fd5b506103c56110ce565b6103c56105ef366004613aa8565b6111a8565b34801561060057600080fd5b506103c561060f366004613957565b61138f565b34801561062057600080fd5b506104097f000000000000000000000000000000000000000000000000000000000000000081565b34801561065457600080fd5b506103c561141d565b34801561066957600080fd5b506103c561067836600461399a565b6114a9565b34801561068957600080fd5b506103c5610698366004613957565b6114c4565b3480156106a957600080fd5b5061046c6106b8366004613957565b611548565b3480156106c957600080fd5b5061046c60125481565b3480156106df57600080fd5b506014546104099061010090046001600160a01b031681565b34801561070457600080fd5b50600b5460ff16610390565b34801561071c57600080fd5b5060115461046c565b34801561073157600080fd5b50610409610740366004613957565b6115ec565b34801561075157600080fd5b5061046c6107603660046138d1565b611677565b34801561077157600080fd5b506103c5610780366004613957565b611711565b34801561079157600080fd5b506103906107a03660046139f8565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b3480156107d557600080fd5b5060125461046c565b3480156107ea57600080fd5b506103dc611798565b6103c5610801366004613957565b6117a7565b34801561081257600080fd5b5061046c600081565b34801561082757600080fd5b506103c5610836366004613b04565b6119e9565b34801561084757600080fd5b50600e5461046c565b34801561085c57600080fd5b5061046c60105481565b34801561087257600080fd5b506103c5610881366004613957565b611aae565b34801561089257600080fd5b506103c56108a1366004613b44565b611b44565b3480156108b257600080fd5b5061046c600d5481565b3480156108c857600080fd5b5061046c600e5481565b3480156108de57600080fd5b506103dc6108ed366004613957565b611bd2565b3480156108fe57600080fd5b506103c561090d366004613970565b611c27565b34801561091e57600080fd5b506103c561092d366004613957565b611d76565b34801561093e57600080fd5b5061046c60115481565b34801561095457600080fd5b506103c56109633660046139f8565b611dfd565b34801561097457600080fd5b5061046c600f5481565b34801561098a57600080fd5b5060145460ff16610390565b3480156109a257600080fd5b506104097f000000000000000000000000000000000000000000000000000000000000000081565b3480156109d657600080fd5b5061046c620186a081565b3480156109ed57600080fd5b506103c56109fc366004613c20565b611e23565b348015610a0d57600080fd5b5061046c7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b348015610a4157600080fd5b50610390610a50366004613c3b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a8a57600080fd5b506103c5610a99366004613957565b611eb8565b6000610aa98261207b565b92915050565b610ad97fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b610b365760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b60648201526084015b60405180910390fd5b601480546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b606060018054610b8490613c65565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb090613c65565b8015610bfd5780601f10610bd257610100808354040283529160200191610bfd565b820191906000526020600020905b815481529060010190602001808311610be057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610c915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b2d565b506000908152600560205260409020546001600160a01b031690565b6000610cb8826115ec565b9050806001600160a01b0316836001600160a01b03161415610d425760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b336001600160a01b0382161480610d5e5750610d5e8133610a50565b610dd05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b2d565b610dda83836120d1565b505050565b610dea335b82612157565b610e5c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b2d565b610dda83838361225f565b6000807f0000000000000000000000000000000000000000000000000000000000000000620186a0600d5485610e9d9190613cb6565b610ea79190613d09565b915091505b9250929050565b600082815260208190526040902060010154610ecf813361244f565b610dda83836124cd565b6000610ee483611677565b8210610f585760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b2d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610fab7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6110035760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b61104282828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061256b92505050565b5050565b6001600160a01b03811633146110c45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610b2d565b61104282826125b8565b6110f87fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6111505760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b60405147906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169082156108fc029083906000818181858888f19350505050158015611042573d6000803e3d6000fd5b6002600c5414156111fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b2d565b6002600c55600061120b60095490565b601254336000908152601360205260409020549192509061122d908690613d1d565b111561127b5760405162461bcd60e51b815260206004820152601d60248201527f4578636565647320706572207472616e73616374696f6e206c696d69740000006044820152606401610b2d565b83600e546112899190613cb6565b3410156112d85760405162461bcd60e51b815260206004820152601660248201527f496e636f727265637420657468657220616d6f756e74000000000000000000006044820152606401610b2d565b6112e3838333612637565b61132f5760405162461bcd60e51b815260206004820152601560248201527f496e76616c696420646174612070726f766964656400000000000000000000006044820152606401610b2d565b60005b8481101561135f5761134d336113488385613d1d565b612743565b8061135781613d35565b915050611332565b50336000908152601360205260408120805486929061137f908490613d1d565b90915550506001600c5550505050565b6113b97fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6114115760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b61141a816128a9565b50565b6114477fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b61149f5760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b6114a761293d565b565b610dda83838360405180602001604052806000815250611b44565b6114cd33610de4565b61153f5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610b2d565b61141a816129ce565b600061155360095490565b82106115c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b2d565b600982815481106115da576115da613d6e565b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b031680610aa95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b2d565b60006001600160a01b0382166116f55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b2d565b506001600160a01b031660009081526004602052604090205490565b61173b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6117935760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b601155565b606060028054610b8490613c65565b6002600c5414156117fa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b2d565b6002600c55600061180a60095490565b60145490915060ff1661185f5760405162461bcd60e51b815260206004820152601660248201527f5075626c69632073616c65206e6f7420616374697665000000000000000000006044820152606401610b2d565b6011543360009081526013602052604090205461187d908490613d1d565b11156118cb5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d696e74207472616e73616374696f6e206c696d697400006044820152606401610b2d565b601054600f546118db9190613d84565b6118e58383613d1d565b11156119335760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178696d756d20737570706c79000000000000000000006044820152606401610b2d565b81600e546119419190613cb6565b3410156119905760405162461bcd60e51b815260206004820152601660248201527f496e636f727265637420657468657220616d6f756e74000000000000000000006044820152606401610b2d565b60005b828110156119bb576119a9336113488385613d1d565b806119b381613d35565b915050611993565b5033600090815260136020526040812080548492906119db908490613d1d565b90915550506001600c555050565b6001600160a01b038216331415611a425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b2d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ad87fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611b305760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b611388811115611b3f57600080fd5b600f55565b611b4e3383612157565b611bc05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b2d565b611bcc84848484612a8d565b50505050565b60606000611bdf83612b16565b90506000815111611bff5760405180602001604052806000815250611c20565b80604051602001611c109190613d9b565b6040516020818303038152906040525b9392505050565b611c517fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611ca95760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b601054811115611d215760405162461bcd60e51b815260206004820152602c60248201527f416d6f756e74206578636565647320726573657276656420616d6f756e74206660448201527f6f722067697665617761797300000000000000000000000000000000000000006064820152608401610b2d565b6000611d2c60095490565b905060005b82811015611d5957611d47846113488385613d1d565b80611d5181613d35565b915050611d31565b508160106000828254611d6c9190613d84565b9091555050505050565b611da07fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611df85760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b601255565b600082815260208190526040902060010154611e19813361244f565b610dda83836125b8565b611e4d7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611ea55760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b6014805460ff1916911515919091179055565b611ee27fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611f3a5760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b600e55565b611f4a838383611fc3565b600b5460ff1615610dda5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610b2d565b6001600160a01b03831661201e5761201981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612041565b816001600160a01b0316836001600160a01b031614612041576120418382612be8565b6001600160a01b03821661205857610dda81612c85565b826001600160a01b0316826001600160a01b031614610dda57610dda8282612d34565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610aa95750610aa982612d78565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061211e826115ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166121e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b2d565b60006121ec836115ec565b9050806001600160a01b0316846001600160a01b031614806122275750836001600160a01b031661221c84610c07565b6001600160a01b0316145b8061225757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612272826115ec565b6001600160a01b0316146122ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b2d565b6001600160a01b0382166123695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b612374838383612e1a565b61237f6000826120d1565b6001600160a01b03831660009081526004602052604081208054600192906123a8908490613d84565b90915550506001600160a01b03821660009081526004602052604081208054600192906123d6908490613d1d565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166110425761248b816001600160a01b03166014612e25565b612496836020612e25565b6040516020016124a7929190613ddc565b60408051601f198184030181529082905262461bcd60e51b8252610b2d91600401613944565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16611042576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556125273390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b9669960158260405161259d929190613e5d565b60405180910390a180516110429060159060208401906137d1565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615611042576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60408051606083901b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602080830191909152825160148184030181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060548401526070808401829052845180850390910181526090909301909352815191012060009190600061270c8288888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061304e92505050565b90506001600160a01b0381161580159061273857506014546001600160a01b0382811661010090920416145b979650505050505050565b6001600160a01b0382166127995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b2d565b6000818152600360205260409020546001600160a01b0316156127fe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b2d565b61280a60008383612e1a565b6001600160a01b0382166000908152600460205260408120805460019290612833908490613d1d565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b620186a08111156128fc5760405162461bcd60e51b815260206004820152600b60248201527f494e56414c49445f4645450000000000000000000000000000000000000000006044820152606401610b2d565b600d5460408051918252602082018390527fc6e980a116c671cc344b1ed002b6f0c3454692ecb6cc881f3ce59366368cde4f910160405180910390a1600d55565b600b5460ff1661298f5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610b2d565b600b805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006129d9826115ec565b90506129e781600084612e1a565b6129f26000836120d1565b6001600160a01b0381166000908152600460205260408120805460019290612a1b908490613d84565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612a9884848461225f565b612aa484848484613072565b611bcc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b2d565b6000818152600360205260409020546060906001600160a01b0316612ba35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b2d565b6000612bad613210565b90506000815111612bcd5760405180602001604052806000815250611c20565b80612bd78461321f565b604051602001611c10929190613f19565b60006001612bf584611677565b612bff9190613d84565b600083815260086020526040902054909150808214612c52576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612c9790600190613d84565b6000838152600a602052604081205460098054939450909284908110612cbf57612cbf613d6e565b906000526020600020015490508060098381548110612ce057612ce0613d6e565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612d1857612d18613f48565b6001900381819060005260206000200160009055905550505050565b6000612d3f83611677565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612e0b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610aa95750610aa982613351565b610dda838383611f3f565b60606000612e34836002613cb6565b612e3f906002613d1d565b67ffffffffffffffff811115612e5757612e57613b2e565b6040519080825280601f01601f191660200182016040528015612e81576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612eb857612eb8613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612f1b57612f1b613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612f57846002613cb6565b612f62906001613d1d565b90505b6001811115612fff577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612fa357612fa3613d6e565b1a60f81b828281518110612fb957612fb9613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612ff881613f5e565b9050612f65565b508315611c205760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610b2d565b600080600061305d85856133a7565b9150915061306a81613414565b509392505050565b60006001600160a01b0384163b15613205576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906130cf903390899088908890600401613f93565b6020604051808303816000875af192505050801561310a575060408051601f3d908101601f1916820190925261310791810190613fcf565b60015b6131ba573d808015613138576040519150601f19603f3d011682016040523d82523d6000602084013e61313d565b606091505b5080516131b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b2d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612257565b506001949350505050565b606060158054610b8490613c65565b60608161325f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613289578061327381613d35565b91506132829050600a83613d09565b9150613263565b60008167ffffffffffffffff8111156132a4576132a4613b2e565b6040519080825280601f01601f1916602001820160405280156132ce576020820181803683370190505b5090505b8415612257576132e3600183613d84565b91506132f0600a86613fec565b6132fb906030613d1d565b60f81b81838151811061331057613310613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061334a600a86613d09565b94506132d2565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610aa95750610aa982613605565b6000808251604114156133de5760208301516040840151606085015160001a6133d28782858561369c565b94509450505050610eac565b82516040141561340857602083015160408401516133fd868383613789565b935093505050610eac565b50600090506002610eac565b600081600481111561342857613428614000565b14156134315750565b600181600481111561344557613445614000565b14156134935760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b2d565b60028160048111156134a7576134a7614000565b14156134f55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b2d565b600381600481111561350957613509614000565b141561357d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b600481600481111561359157613591614000565b141561141a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610aa957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610aa9565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156136d35750600090506003613780565b8460ff16601b141580156136eb57508460ff16601c14155b156136fc5750600090506004613780565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613750573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661377957600060019250925050613780565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016137c38782888561369c565b935093505050935093915050565b8280546137dd90613c65565b90600052602060002090601f0160209004810192826137ff5760008555613845565b82601f1061381857805160ff1916838001178555613845565b82800160010185558215613845579182015b8281111561384557825182559160200191906001019061382a565b50613851929150613855565b5090565b5b808211156138515760008155600101613856565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461141a57600080fd5b6000602082840312156138aa57600080fd5b8135611c208161386a565b80356001600160a01b03811681146138cc57600080fd5b919050565b6000602082840312156138e357600080fd5b611c20826138b5565b60005b838110156139075781810151838201526020016138ef565b83811115611bcc5750506000910152565b600081518084526139308160208601602086016138ec565b601f01601f19169290920160200192915050565b602081526000611c206020830184613918565b60006020828403121561396957600080fd5b5035919050565b6000806040838503121561398357600080fd5b61398c836138b5565b946020939093013593505050565b6000806000606084860312156139af57600080fd5b6139b8846138b5565b92506139c6602085016138b5565b9150604084013590509250925092565b600080604083850312156139e957600080fd5b50508035926020909101359150565b60008060408385031215613a0b57600080fd5b82359150613a1b602084016138b5565b90509250929050565b60008083601f840112613a3657600080fd5b50813567ffffffffffffffff811115613a4e57600080fd5b602083019150836020828501011115610eac57600080fd5b60008060208385031215613a7957600080fd5b823567ffffffffffffffff811115613a9057600080fd5b613a9c85828601613a24565b90969095509350505050565b600080600060408486031215613abd57600080fd5b83359250602084013567ffffffffffffffff811115613adb57600080fd5b613ae786828701613a24565b9497909650939450505050565b803580151581146138cc57600080fd5b60008060408385031215613b1757600080fd5b613b20836138b5565b9150613a1b60208401613af4565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215613b5a57600080fd5b613b63856138b5565b9350613b71602086016138b5565b925060408501359150606085013567ffffffffffffffff80821115613b9557600080fd5b818701915087601f830112613ba957600080fd5b813581811115613bbb57613bbb613b2e565b604051601f8201601f19908116603f01168101908382118183101715613be357613be3613b2e565b816040528281528a6020848701011115613bfc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215613c3257600080fd5b611c2082613af4565b60008060408385031215613c4e57600080fd5b613c57836138b5565b9150613a1b602084016138b5565b600181811c90821680613c7957607f821691505b60208210811415613c9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cee57613cee613ca0565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613d1857613d18613cf3565b500490565b60008219821115613d3057613d30613ca0565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d6757613d67613ca0565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015613d9657613d96613ca0565b500390565b60008251613dad8184602087016138ec565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613e148160178501602088016138ec565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613e518160288401602088016138ec565b01602801949350505050565b60408152600080845481600182811c915080831680613e7d57607f831692505b6020808410821415613e9d57634e487b7160e01b86526022600452602486fd5b6040880184905260608801828015613ebc5760018114613ecd57613ef8565b60ff19871682528282019750613ef8565b60008c81526020902060005b87811015613ef257815484820152908601908401613ed9565b83019850505b5050878603818901525050505050613f108185613918565b95945050505050565b60008351613f2b8184602088016138ec565b835190830190613f3f8183602088016138ec565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b600081613f6d57613f6d613ca0565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613fc56080830184613918565b9695505050505050565b600060208284031215613fe157600080fd5b8151611c208161386a565b600082613ffb57613ffb613cf3565b500690565b634e487b7160e01b600052602160045260246000fdfea26469706673582212209b9e3e1e4b43c3881e50a5c746878a61566ea15152e0154eef5e9498ac16e25064736f6c634300080a00330000000000000000000000004334ef8678bc8a90da30eb545f1512185d26261a0000000000000000000000005566aec505bff6b91381141857444322d6f310ad0000000000000000000000000000000000000000000000000000000000001d4c

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80636352211e116101c6578063c002d23d116100f7578063da6cdfbf11610095578063e2e06fa31161006f578063e2e06fa3146109e1578063e58378bb14610a01578063e985e9c514610a35578063f4a0a52814610a7e57600080fd5b8063da6cdfbf1461097e578063dff8f34014610996578063e1a8bf2c146109ca57600080fd5b8063cb93f59c116100d1578063cb93f59c14610912578063d22073d814610932578063d547741f14610948578063d8258d951461096857600080fd5b8063c002d23d146108bc578063c87b56dd146108d2578063ca800144146108f257600080fd5b8063a217fddf11610164578063aa592f251161013e578063aa592f2514610850578063aca8ffe714610866578063b88d4fde14610886578063b8997a97146108a657600080fd5b8063a217fddf14610806578063a22cb4651461081b578063a7f93ebd1461083b57600080fd5b806391d14854116101a057806391d148541461078557806393918454146107c957806395d89b41146107de578063a0712d68146107f357600080fd5b80636352211e1461072557806370a0823114610745578063732c9de41461076557600080fd5b806330176e13116102a057806342842e0e1161023e5780635994b6b8116102185780635994b6b8146106bd5780635b7633d0146106d35780635c975abb146106f85780635dd62d8c1461071057600080fd5b806342842e0e1461065d57806342966c681461067d5780634f6ccce71461069d57600080fd5b80633ceaba261161027a5780633ceaba26146105e15780633e4086e5146105f45780633f0d2ec1146106145780633f4ba83a1461064857600080fd5b806330176e131461058c57806336568abe146105ac5780633ccfd60b146105cc57600080fd5b806318581e061161030d578063248a9ca3116102e7578063248a9ca3146104dd5780632a55205a1461050d5780632f2ff15d1461054c5780632f745c591461056c57600080fd5b806318581e061461047a57806320fc7eb21461049057806323b872dd146104bd57600080fd5b8063081812fc11610349578063081812fc146103e9578063095ea7b3146104215780630fcf2e751461044157806318160ddd1461045b57600080fd5b806301ffc9a714610370578063046dc166146103a557806306fdde03146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004613898565b610a9e565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103c56103c03660046138d1565b610aaf565b005b3480156103d357600080fd5b506103dc610b75565b60405161039c9190613944565b3480156103f557600080fd5b50610409610404366004613957565b610c07565b6040516001600160a01b03909116815260200161039c565b34801561042d57600080fd5b506103c561043c366004613970565b610cad565b34801561044d57600080fd5b506014546103909060ff1681565b34801561046757600080fd5b506009545b60405190815260200161039c565b34801561048657600080fd5b5061046c61138881565b34801561049c57600080fd5b5061046c6104ab3660046138d1565b60136020526000908152604090205481565b3480156104c957600080fd5b506103c56104d836600461399a565b610ddf565b3480156104e957600080fd5b5061046c6104f8366004613957565b60009081526020819052604090206001015490565b34801561051957600080fd5b5061052d6105283660046139d6565b610e67565b604080516001600160a01b03909316835260208301919091520161039c565b34801561055857600080fd5b506103c56105673660046139f8565b610eb3565b34801561057857600080fd5b5061046c610587366004613970565b610ed9565b34801561059857600080fd5b506103c56105a7366004613a66565b610f81565b3480156105b857600080fd5b506103c56105c73660046139f8565b611046565b3480156105d857600080fd5b506103c56110ce565b6103c56105ef366004613aa8565b6111a8565b34801561060057600080fd5b506103c561060f366004613957565b61138f565b34801561062057600080fd5b506104097f0000000000000000000000004334ef8678bc8a90da30eb545f1512185d26261a81565b34801561065457600080fd5b506103c561141d565b34801561066957600080fd5b506103c561067836600461399a565b6114a9565b34801561068957600080fd5b506103c5610698366004613957565b6114c4565b3480156106a957600080fd5b5061046c6106b8366004613957565b611548565b3480156106c957600080fd5b5061046c60125481565b3480156106df57600080fd5b506014546104099061010090046001600160a01b031681565b34801561070457600080fd5b50600b5460ff16610390565b34801561071c57600080fd5b5060115461046c565b34801561073157600080fd5b50610409610740366004613957565b6115ec565b34801561075157600080fd5b5061046c6107603660046138d1565b611677565b34801561077157600080fd5b506103c5610780366004613957565b611711565b34801561079157600080fd5b506103906107a03660046139f8565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b3480156107d557600080fd5b5060125461046c565b3480156107ea57600080fd5b506103dc611798565b6103c5610801366004613957565b6117a7565b34801561081257600080fd5b5061046c600081565b34801561082757600080fd5b506103c5610836366004613b04565b6119e9565b34801561084757600080fd5b50600e5461046c565b34801561085c57600080fd5b5061046c60105481565b34801561087257600080fd5b506103c5610881366004613957565b611aae565b34801561089257600080fd5b506103c56108a1366004613b44565b611b44565b3480156108b257600080fd5b5061046c600d5481565b3480156108c857600080fd5b5061046c600e5481565b3480156108de57600080fd5b506103dc6108ed366004613957565b611bd2565b3480156108fe57600080fd5b506103c561090d366004613970565b611c27565b34801561091e57600080fd5b506103c561092d366004613957565b611d76565b34801561093e57600080fd5b5061046c60115481565b34801561095457600080fd5b506103c56109633660046139f8565b611dfd565b34801561097457600080fd5b5061046c600f5481565b34801561098a57600080fd5b5060145460ff16610390565b3480156109a257600080fd5b506104097f0000000000000000000000005566aec505bff6b91381141857444322d6f310ad81565b3480156109d657600080fd5b5061046c620186a081565b3480156109ed57600080fd5b506103c56109fc366004613c20565b611e23565b348015610a0d57600080fd5b5061046c7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b348015610a4157600080fd5b50610390610a50366004613c3b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a8a57600080fd5b506103c5610a99366004613957565b611eb8565b6000610aa98261207b565b92915050565b610ad97fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b610b365760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b60648201526084015b60405180910390fd5b601480546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b606060018054610b8490613c65565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb090613c65565b8015610bfd5780601f10610bd257610100808354040283529160200191610bfd565b820191906000526020600020905b815481529060010190602001808311610be057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610c915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b2d565b506000908152600560205260409020546001600160a01b031690565b6000610cb8826115ec565b9050806001600160a01b0316836001600160a01b03161415610d425760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b336001600160a01b0382161480610d5e5750610d5e8133610a50565b610dd05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b2d565b610dda83836120d1565b505050565b610dea335b82612157565b610e5c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b2d565b610dda83838361225f565b6000807f0000000000000000000000004334ef8678bc8a90da30eb545f1512185d26261a620186a0600d5485610e9d9190613cb6565b610ea79190613d09565b915091505b9250929050565b600082815260208190526040902060010154610ecf813361244f565b610dda83836124cd565b6000610ee483611677565b8210610f585760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b2d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610fab7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6110035760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b61104282828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061256b92505050565b5050565b6001600160a01b03811633146110c45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610b2d565b61104282826125b8565b6110f87fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6111505760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b60405147906001600160a01b037f0000000000000000000000005566aec505bff6b91381141857444322d6f310ad169082156108fc029083906000818181858888f19350505050158015611042573d6000803e3d6000fd5b6002600c5414156111fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b2d565b6002600c55600061120b60095490565b601254336000908152601360205260409020549192509061122d908690613d1d565b111561127b5760405162461bcd60e51b815260206004820152601d60248201527f4578636565647320706572207472616e73616374696f6e206c696d69740000006044820152606401610b2d565b83600e546112899190613cb6565b3410156112d85760405162461bcd60e51b815260206004820152601660248201527f496e636f727265637420657468657220616d6f756e74000000000000000000006044820152606401610b2d565b6112e3838333612637565b61132f5760405162461bcd60e51b815260206004820152601560248201527f496e76616c696420646174612070726f766964656400000000000000000000006044820152606401610b2d565b60005b8481101561135f5761134d336113488385613d1d565b612743565b8061135781613d35565b915050611332565b50336000908152601360205260408120805486929061137f908490613d1d565b90915550506001600c5550505050565b6113b97fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6114115760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b61141a816128a9565b50565b6114477fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b61149f5760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b6114a761293d565b565b610dda83838360405180602001604052806000815250611b44565b6114cd33610de4565b61153f5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610b2d565b61141a816129ce565b600061155360095490565b82106115c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b2d565b600982815481106115da576115da613d6e565b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b031680610aa95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b2d565b60006001600160a01b0382166116f55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b2d565b506001600160a01b031660009081526004602052604090205490565b61173b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b6117935760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b601155565b606060028054610b8490613c65565b6002600c5414156117fa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b2d565b6002600c55600061180a60095490565b60145490915060ff1661185f5760405162461bcd60e51b815260206004820152601660248201527f5075626c69632073616c65206e6f7420616374697665000000000000000000006044820152606401610b2d565b6011543360009081526013602052604090205461187d908490613d1d565b11156118cb5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d696e74207472616e73616374696f6e206c696d697400006044820152606401610b2d565b601054600f546118db9190613d84565b6118e58383613d1d565b11156119335760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178696d756d20737570706c79000000000000000000006044820152606401610b2d565b81600e546119419190613cb6565b3410156119905760405162461bcd60e51b815260206004820152601660248201527f496e636f727265637420657468657220616d6f756e74000000000000000000006044820152606401610b2d565b60005b828110156119bb576119a9336113488385613d1d565b806119b381613d35565b915050611993565b5033600090815260136020526040812080548492906119db908490613d1d565b90915550506001600c555050565b6001600160a01b038216331415611a425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b2d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ad87fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611b305760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b611388811115611b3f57600080fd5b600f55565b611b4e3383612157565b611bc05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b2d565b611bcc84848484612a8d565b50505050565b60606000611bdf83612b16565b90506000815111611bff5760405180602001604052806000815250611c20565b80604051602001611c109190613d9b565b6040516020818303038152906040525b9392505050565b611c517fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611ca95760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b601054811115611d215760405162461bcd60e51b815260206004820152602c60248201527f416d6f756e74206578636565647320726573657276656420616d6f756e74206660448201527f6f722067697665617761797300000000000000000000000000000000000000006064820152608401610b2d565b6000611d2c60095490565b905060005b82811015611d5957611d47846113488385613d1d565b80611d5181613d35565b915050611d31565b508160106000828254611d6c9190613d84565b9091555050505050565b611da07fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611df85760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b601255565b600082815260208190526040902060010154611e19813361244f565b610dda83836125b8565b611e4d7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611ea55760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b6014805460ff1916911515919091179055565b611ee27fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e336107a0565b611f3a5760405162461bcd60e51b815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f526044820152624f4c4560e81b6064820152608401610b2d565b600e55565b611f4a838383611fc3565b600b5460ff1615610dda5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610b2d565b6001600160a01b03831661201e5761201981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612041565b816001600160a01b0316836001600160a01b031614612041576120418382612be8565b6001600160a01b03821661205857610dda81612c85565b826001600160a01b0316826001600160a01b031614610dda57610dda8282612d34565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610aa95750610aa982612d78565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061211e826115ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166121e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b2d565b60006121ec836115ec565b9050806001600160a01b0316846001600160a01b031614806122275750836001600160a01b031661221c84610c07565b6001600160a01b0316145b8061225757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612272826115ec565b6001600160a01b0316146122ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b2d565b6001600160a01b0382166123695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b612374838383612e1a565b61237f6000826120d1565b6001600160a01b03831660009081526004602052604081208054600192906123a8908490613d84565b90915550506001600160a01b03821660009081526004602052604081208054600192906123d6908490613d1d565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166110425761248b816001600160a01b03166014612e25565b612496836020612e25565b6040516020016124a7929190613ddc565b60408051601f198184030181529082905262461bcd60e51b8252610b2d91600401613944565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16611042576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556125273390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b9669960158260405161259d929190613e5d565b60405180910390a180516110429060159060208401906137d1565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615611042576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60408051606083901b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602080830191909152825160148184030181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060548401526070808401829052845180850390910181526090909301909352815191012060009190600061270c8288888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061304e92505050565b90506001600160a01b0381161580159061273857506014546001600160a01b0382811661010090920416145b979650505050505050565b6001600160a01b0382166127995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b2d565b6000818152600360205260409020546001600160a01b0316156127fe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b2d565b61280a60008383612e1a565b6001600160a01b0382166000908152600460205260408120805460019290612833908490613d1d565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b620186a08111156128fc5760405162461bcd60e51b815260206004820152600b60248201527f494e56414c49445f4645450000000000000000000000000000000000000000006044820152606401610b2d565b600d5460408051918252602082018390527fc6e980a116c671cc344b1ed002b6f0c3454692ecb6cc881f3ce59366368cde4f910160405180910390a1600d55565b600b5460ff1661298f5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610b2d565b600b805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006129d9826115ec565b90506129e781600084612e1a565b6129f26000836120d1565b6001600160a01b0381166000908152600460205260408120805460019290612a1b908490613d84565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612a9884848461225f565b612aa484848484613072565b611bcc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b2d565b6000818152600360205260409020546060906001600160a01b0316612ba35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b2d565b6000612bad613210565b90506000815111612bcd5760405180602001604052806000815250611c20565b80612bd78461321f565b604051602001611c10929190613f19565b60006001612bf584611677565b612bff9190613d84565b600083815260086020526040902054909150808214612c52576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612c9790600190613d84565b6000838152600a602052604081205460098054939450909284908110612cbf57612cbf613d6e565b906000526020600020015490508060098381548110612ce057612ce0613d6e565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612d1857612d18613f48565b6001900381819060005260206000200160009055905550505050565b6000612d3f83611677565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612e0b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610aa95750610aa982613351565b610dda838383611f3f565b60606000612e34836002613cb6565b612e3f906002613d1d565b67ffffffffffffffff811115612e5757612e57613b2e565b6040519080825280601f01601f191660200182016040528015612e81576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612eb857612eb8613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612f1b57612f1b613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612f57846002613cb6565b612f62906001613d1d565b90505b6001811115612fff577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612fa357612fa3613d6e565b1a60f81b828281518110612fb957612fb9613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612ff881613f5e565b9050612f65565b508315611c205760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610b2d565b600080600061305d85856133a7565b9150915061306a81613414565b509392505050565b60006001600160a01b0384163b15613205576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906130cf903390899088908890600401613f93565b6020604051808303816000875af192505050801561310a575060408051601f3d908101601f1916820190925261310791810190613fcf565b60015b6131ba573d808015613138576040519150601f19603f3d011682016040523d82523d6000602084013e61313d565b606091505b5080516131b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b2d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612257565b506001949350505050565b606060158054610b8490613c65565b60608161325f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613289578061327381613d35565b91506132829050600a83613d09565b9150613263565b60008167ffffffffffffffff8111156132a4576132a4613b2e565b6040519080825280601f01601f1916602001820160405280156132ce576020820181803683370190505b5090505b8415612257576132e3600183613d84565b91506132f0600a86613fec565b6132fb906030613d1d565b60f81b81838151811061331057613310613d6e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061334a600a86613d09565b94506132d2565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610aa95750610aa982613605565b6000808251604114156133de5760208301516040840151606085015160001a6133d28782858561369c565b94509450505050610eac565b82516040141561340857602083015160408401516133fd868383613789565b935093505050610eac565b50600090506002610eac565b600081600481111561342857613428614000565b14156134315750565b600181600481111561344557613445614000565b14156134935760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b2d565b60028160048111156134a7576134a7614000565b14156134f55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b2d565b600381600481111561350957613509614000565b141561357d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b600481600481111561359157613591614000565b141561141a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b2d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610aa957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610aa9565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156136d35750600090506003613780565b8460ff16601b141580156136eb57508460ff16601c14155b156136fc5750600090506004613780565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613750573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661377957600060019250925050613780565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016137c38782888561369c565b935093505050935093915050565b8280546137dd90613c65565b90600052602060002090601f0160209004810192826137ff5760008555613845565b82601f1061381857805160ff1916838001178555613845565b82800160010185558215613845579182015b8281111561384557825182559160200191906001019061382a565b50613851929150613855565b5090565b5b808211156138515760008155600101613856565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461141a57600080fd5b6000602082840312156138aa57600080fd5b8135611c208161386a565b80356001600160a01b03811681146138cc57600080fd5b919050565b6000602082840312156138e357600080fd5b611c20826138b5565b60005b838110156139075781810151838201526020016138ef565b83811115611bcc5750506000910152565b600081518084526139308160208601602086016138ec565b601f01601f19169290920160200192915050565b602081526000611c206020830184613918565b60006020828403121561396957600080fd5b5035919050565b6000806040838503121561398357600080fd5b61398c836138b5565b946020939093013593505050565b6000806000606084860312156139af57600080fd5b6139b8846138b5565b92506139c6602085016138b5565b9150604084013590509250925092565b600080604083850312156139e957600080fd5b50508035926020909101359150565b60008060408385031215613a0b57600080fd5b82359150613a1b602084016138b5565b90509250929050565b60008083601f840112613a3657600080fd5b50813567ffffffffffffffff811115613a4e57600080fd5b602083019150836020828501011115610eac57600080fd5b60008060208385031215613a7957600080fd5b823567ffffffffffffffff811115613a9057600080fd5b613a9c85828601613a24565b90969095509350505050565b600080600060408486031215613abd57600080fd5b83359250602084013567ffffffffffffffff811115613adb57600080fd5b613ae786828701613a24565b9497909650939450505050565b803580151581146138cc57600080fd5b60008060408385031215613b1757600080fd5b613b20836138b5565b9150613a1b60208401613af4565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215613b5a57600080fd5b613b63856138b5565b9350613b71602086016138b5565b925060408501359150606085013567ffffffffffffffff80821115613b9557600080fd5b818701915087601f830112613ba957600080fd5b813581811115613bbb57613bbb613b2e565b604051601f8201601f19908116603f01168101908382118183101715613be357613be3613b2e565b816040528281528a6020848701011115613bfc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215613c3257600080fd5b611c2082613af4565b60008060408385031215613c4e57600080fd5b613c57836138b5565b9150613a1b602084016138b5565b600181811c90821680613c7957607f821691505b60208210811415613c9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cee57613cee613ca0565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613d1857613d18613cf3565b500490565b60008219821115613d3057613d30613ca0565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d6757613d67613ca0565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015613d9657613d96613ca0565b500390565b60008251613dad8184602087016138ec565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613e148160178501602088016138ec565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613e518160288401602088016138ec565b01602801949350505050565b60408152600080845481600182811c915080831680613e7d57607f831692505b6020808410821415613e9d57634e487b7160e01b86526022600452602486fd5b6040880184905260608801828015613ebc5760018114613ecd57613ef8565b60ff19871682528282019750613ef8565b60008c81526020902060005b87811015613ef257815484820152908601908401613ed9565b83019850505b5050878603818901525050505050613f108185613918565b95945050505050565b60008351613f2b8184602088016138ec565b835190830190613f3f8183602088016138ec565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b600081613f6d57613f6d613ca0565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613fc56080830184613918565b9695505050505050565b600060208284031215613fe157600080fd5b8151611c208161386a565b600082613ffb57613ffb613cf3565b500690565b634e487b7160e01b600052602160045260246000fdfea26469706673582212209b9e3e1e4b43c3881e50a5c746878a61566ea15152e0154eef5e9498ac16e25064736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004334ef8678bc8a90da30eb545f1512185d26261a0000000000000000000000005566aec505bff6b91381141857444322d6f310ad0000000000000000000000000000000000000000000000000000000000001d4c

-----Decoded View---------------
Arg [0] : _royaltyWallet (address): 0x4334ef8678Bc8a90Da30eB545f1512185D26261a
Arg [1] : _mintWallet (address): 0x5566aec505BFF6b91381141857444322d6F310ad
Arg [2] : _royaltyFee (uint256): 7500

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000004334ef8678bc8a90da30eb545f1512185d26261a
Arg [1] : 0000000000000000000000005566aec505bff6b91381141857444322d6f310ad
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001d4c


Deployed Bytecode Sourcemap

64771:8716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71899:236;;;;;;;;;;-1:-1:-1;71899:236:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;71899:236:0;;;;;;;;70234:119;;;;;;;;;;-1:-1:-1;70234:119:0;;;;;:::i;:::-;;:::i;:::-;;29275:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30735:221::-;;;;;;;;;;-1:-1:-1;30735:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2344:55:1;;;2326:74;;2314:2;2299:18;30735:221:0;2180:226:1;30272:397:0;;;;;;;;;;-1:-1:-1;30272:397:0;;;;;:::i;:::-;;:::i;65688:30::-;;;;;;;;;;-1:-1:-1;65688:30:0;;;;;;;;42496:113;;;;;;;;;;-1:-1:-1;42584:10:0;:17;42496:113;;;2816:25:1;;;2804:2;2789:18;42496:113:0;2670:177:1;65459:50:0;;;;;;;;;;;;65505:4;65459:50;;65635:44;;;;;;;;;;-1:-1:-1;65635:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;31625:305;;;;;;;;;;-1:-1:-1;31625:305:0;;;;;:::i;:::-;;:::i;9950:123::-;;;;;;;;;;-1:-1:-1;9950:123:0;;;;;:::i;:::-;10016:7;10043:12;;;;;;;;;;:22;;;;9950:123;71138:384;;;;;;;;;;-1:-1:-1;71138:384:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3997:55:1;;;3979:74;;4084:2;4069:18;;4062:34;;;;3952:18;71138:384:0;3805:297:1;10335:147:0;;;;;;;;;;-1:-1:-1;10335:147:0;;;;;:::i;:::-;;:::i;42164:256::-;;;;;;;;;;-1:-1:-1;42164:256:0;;;;;:::i;:::-;;:::i;68760:106::-;;;;;;;;;;-1:-1:-1;68760:106:0;;;;;:::i;:::-;;:::i;11383:218::-;;;;;;;;;;-1:-1:-1;11383:218:0;;;;;:::i;:::-;;:::i;73338:146::-;;;;;;;;;;;;;:::i;67548:583::-;;;;;;:::i;:::-;;:::i;69015:110::-;;;;;;;;;;-1:-1:-1;69015:110:0;;;;;:::i;:::-;;:::i;65281:38::-;;;;;;;;;;;;;;;68595:68;;;;;;;;;;;;;:::i;32001:151::-;;;;;;;;;;-1:-1:-1;32001:151:0;;;;;:::i;:::-;;:::i;48315:245::-;;;;;;;;;;-1:-1:-1;48315:245:0;;;;;:::i;:::-;;:::i;42686:233::-;;;;;;;;;;-1:-1:-1;42686:233:0;;;;;:::i;:::-;;:::i;65594:32::-;;;;;;;;;;;;;;;;65750:82;;;;;;;;;;-1:-1:-1;65750:82:0;;;;;;;-1:-1:-1;;;;;65750:82:0;;;49553:86;;;;;;;;;;-1:-1:-1;49624:7:0;;;;49553:86;;69697:103;;;;;;;;;;-1:-1:-1;69777:15:0;;69697:103;;28969:239;;;;;;;;;;-1:-1:-1;28969:239:0;;;;;:::i;:::-;;:::i;28699:208::-;;;;;;;;;;-1:-1:-1;28699:208:0;;;;;:::i;:::-;;:::i;69505:127::-;;;;;;;;;;-1:-1:-1;69505:127:0;;;;;:::i;:::-;;:::i;8948:139::-;;;;;;;;;;-1:-1:-1;8948:139:0;;;;;:::i;:::-;9026:4;9050:12;;;;;;;;;;;-1:-1:-1;;;;;9050:29:0;;;;;;;;;;;;;;;8948:139;70068:103;;;;;;;;;;-1:-1:-1;70150:13:0;;70068:103;;29444:104;;;;;;;;;;;;;:::i;66898:596::-;;;;;;:::i;:::-;;:::i;6913:49::-;;;;;;;;;;-1:-1:-1;6913:49:0;6958:4;6913:49;;31028:295;;;;;;;;;;-1:-1:-1;31028:295:0;;;;;:::i;:::-;;:::i;69347:92::-;;;;;;;;;;-1:-1:-1;69421:10:0;;69347:92;;65516:29;;;;;;;;;;;;;;;;70781:182;;;;;;;;;;-1:-1:-1;70781:182:0;;;;;:::i;:::-;;:::i;32223:285::-;;;;;;;;;;-1:-1:-1;32223:285:0;;;;;:::i;:::-;;:::i;65249:25::-;;;;;;;;;;;;;;;;65370:38;;;;;;;;;;;;;;;;71664:227;;;;;;;;;;-1:-1:-1;71664:227:0;;;;;:::i;:::-;;:::i;68139:329::-;;;;;;;;;;-1:-1:-1;68139:329:0;;;;;:::i;:::-;;:::i;69869:131::-;;;;;;;;;;-1:-1:-1;69869:131:0;;;;;:::i;:::-;;:::i;65552:35::-;;;;;;;;;;;;;;;;10727:149;;;;;;;;;;-1:-1:-1;10727:149:0;;;;;:::i;:::-;;:::i;65415:37::-;;;;;;;;;;;;;;;;70611:106;;;;;;;;;;-1:-1:-1;70691:18:0;;;;70611:106;;65326:35;;;;;;;;;;;;;;;65186:56;;;;;;;;;;;;65236:6;65186:56;;70415:134;;;;;;;;;;-1:-1:-1;70415:134:0;;;;;:::i;:::-;;:::i;65117:60::-;;;;;;;;;;;;65154:23;65117:60;;31394:164;;;;;;;;;;-1:-1:-1;31394:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31515:25:0;;;31491:4;31515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31394:164;69184:104;;;;;;;;;;-1:-1:-1;69184:104:0;;;;;:::i;:::-;;:::i;71899:236::-;72062:4;72091:36;72115:11;72091:23;:36::i;:::-;72084:43;71899:236;-1:-1:-1;;71899:236:0:o;70234:119::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;;;;;;;;;70315:13:::1;:30:::0;;-1:-1:-1;;;;;70315:30:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;70234:119::o;29275:100::-;29329:13;29362:5;29355:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29275:100;:::o;30735:221::-;30811:7;34064:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34064:16:0;30831:73;;;;-1:-1:-1;;;30831:73:0;;8931:2:1;30831:73:0;;;8913:21:1;8970:2;8950:18;;;8943:30;9009:34;8989:18;;;8982:62;9080:14;9060:18;;;9053:42;9112:19;;30831:73:0;8729:408:1;30831:73:0;-1:-1:-1;30924:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30924:24:0;;30735:221::o;30272:397::-;30353:13;30369:23;30384:7;30369:14;:23::i;:::-;30353:39;;30417:5;-1:-1:-1;;;;;30411:11:0;:2;-1:-1:-1;;;;;30411:11:0;;;30403:57;;;;-1:-1:-1;;;30403:57:0;;9344:2:1;30403:57:0;;;9326:21:1;9383:2;9363:18;;;9356:30;9422:34;9402:18;;;9395:62;9493:3;9473:18;;;9466:31;9514:19;;30403:57:0;9142:397:1;30403:57:0;752:10;-1:-1:-1;;;;;30481:21:0;;;;:62;;-1:-1:-1;30506:37:0;30523:5;752:10;31394:164;:::i;30506:37::-;30473:154;;;;-1:-1:-1;;;30473:154:0;;9746:2:1;30473:154:0;;;9728:21:1;9785:2;9765:18;;;9758:30;9824:34;9804:18;;;9797:62;9895:26;9875:18;;;9868:54;9939:19;;30473:154:0;9544:420:1;30473:154:0;30640:21;30649:2;30653:7;30640:8;:21::i;:::-;30342:327;30272:397;;:::o;31625:305::-;31786:41;752:10;31805:12;31819:7;31786:18;:41::i;:::-;31778:103;;;;-1:-1:-1;;;31778:103:0;;10171:2:1;31778:103:0;;;10153:21:1;10210:2;10190:18;;;10183:30;10249:34;10229:18;;;10222:62;10320:19;10300:18;;;10293:47;10357:19;;31778:103:0;9969:413:1;31778:103:0;31894:28;31904:4;31910:2;31914:7;31894:9;:28::i;71138:384::-;71358:7;71392;71452:13;65236:6;71476:10;;71468:5;:18;;;;:::i;:::-;71467:46;;;;:::i;:::-;71444:70;;;;71138:384;;;;;;:::o;10335:147::-;10016:7;10043:12;;;;;;;;;;:22;;;8517:30;8528:4;752:10;8517;:30::i;:::-;10449:25:::1;10460:4;10466:7;10449:10;:25::i;42164:256::-:0;42261:7;42297:23;42314:5;42297:16;:23::i;:::-;42289:5;:31;42281:87;;;;-1:-1:-1;;;42281:87:0;;11325:2:1;42281:87:0;;;11307:21:1;11364:2;11344:18;;;11337:30;11403:34;11383:18;;;11376:62;11474:13;11454:18;;;11447:41;11505:19;;42281:87:0;11123:407:1;42281:87:0;-1:-1:-1;;;;;;42386:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42164:256::o;68760:106::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;68837:21:::1;68854:3;;68837:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;68837:16:0::1;::::0;-1:-1:-1;;;68837:21:0:i:1;:::-;68760:106:::0;;:::o;11383:218::-;-1:-1:-1;;;;;11479:23:0;;752:10;11479:23;11471:83;;;;-1:-1:-1;;;11471:83:0;;11737:2:1;11471:83:0;;;11719:21:1;11776:2;11756:18;;;11749:30;11815:34;11795:18;;;11788:62;11886:17;11866:18;;;11859:45;11921:19;;11471:83:0;11535:411:1;11471:83:0;11567:26;11579:4;11585:7;11567:11;:26::i;73338:146::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;73439:37:::1;::::0;73407:21:::1;::::0;-1:-1:-1;;;;;73447:10:0::1;73439:28;::::0;:37;::::1;;;::::0;73407:21;;73389:15:::1;73439:37:::0;73389:15;73439:37;73407:21;73439:28;:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;67548:583:::0;63789:1;64387:7;;:19;;64379:63;;;;-1:-1:-1;;;64379:63:0;;12153:2:1;64379:63:0;;;12135:21:1;12192:2;12172:18;;;12165:30;12231:33;12211:18;;;12204:61;12282:18;;64379:63:0;11951:355:1;64379:63:0;63789:1;64520:7;:18;67647:14:::1;67664:13;42584:10:::0;:17;;42496:113;67664:13:::1;67731;::::0;67707:10:::1;67697:21;::::0;;;:9:::1;:21;::::0;;;;;67647:30;;-1:-1:-1;67731:13:0;67697:30:::1;::::0;67721:6;;67697:30:::1;:::i;:::-;:47;;67688:91;;;::::0;-1:-1:-1;;;67688:91:0;;12646:2:1;67688:91:0::1;::::0;::::1;12628:21:1::0;12685:2;12665:18;;;12658:30;12724:31;12704:18;;;12697:59;12773:18;;67688:91:0::1;12444:353:1::0;67688:91:0::1;67825:6;67812:10;;:19;;;;:::i;:::-;67799:9;:32;;67790:69;;;::::0;-1:-1:-1;;;67790:69:0;;13004:2:1;67790:69:0::1;::::0;::::1;12986:21:1::0;13043:2;13023:18;;;13016:30;13082:24;13062:18;;;13055:52;13124:18;;67790:69:0::1;12802:346:1::0;67790:69:0::1;67878:74;67909:9;;67931:10;67878:18;:74::i;:::-;67870:108;;;::::0;-1:-1:-1;;;67870:108:0;;13355:2:1;67870:108:0::1;::::0;::::1;13337:21:1::0;13394:2;13374:18;;;13367:30;13433:23;13413:18;;;13406:51;13474:18;;67870:108:0::1;13153:345:1::0;67870:108:0::1;67994:9;67989:93;68013:6;68009:1;:10;67989:93;;;68041:29;68047:10;68059;68068:1:::0;68059:6;:10:::1;:::i;:::-;68041:5;:29::i;:::-;68021:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67989:93;;;-1:-1:-1::0;68102:10:0::1;68092:21;::::0;;;:9:::1;:21;::::0;;;;:31;;68117:6;;68092:21;:31:::1;::::0;68117:6;;68092:31:::1;:::i;:::-;::::0;;;-1:-1:-1;;63745:1:0;64699:7;:22;-1:-1:-1;;;;67548:583:0:o;69015:110::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;69090:27:::1;69105:11;69090:14;:27::i;:::-;69015:110:::0;:::o;68595:68::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;68645:10:::1;:8;:10::i;:::-;68595:68::o:0;32001:151::-;32105:39;32122:4;32128:2;32132:7;32105:39;;;;;;;;;;;;:16;:39::i;48315:245::-;48433:41;752:10;48452:12;672:98;48433:41;48425:102;;;;-1:-1:-1;;;48425:102:0;;13905:2:1;48425:102:0;;;13887:21:1;13944:2;13924:18;;;13917:30;13983:34;13963:18;;;13956:62;14054:18;14034;;;14027:46;14090:19;;48425:102:0;13703:412:1;48425:102:0;48538:14;48544:7;48538:5;:14::i;42686:233::-;42761:7;42797:30;42584:10;:17;;42496:113;42797:30;42789:5;:38;42781:95;;;;-1:-1:-1;;;42781:95:0;;14322:2:1;42781:95:0;;;14304:21:1;14361:2;14341:18;;;14334:30;14400:34;14380:18;;;14373:62;14471:14;14451:18;;;14444:42;14503:19;;42781:95:0;14120:408:1;42781:95:0;42894:10;42905:5;42894:17;;;;;;;;:::i;:::-;;;;;;;;;42887:24;;42686:233;;;:::o;28969:239::-;29041:7;29077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29077:16:0;29112:19;29104:73;;;;-1:-1:-1;;;29104:73:0;;14924:2:1;29104:73:0;;;14906:21:1;14963:2;14943:18;;;14936:30;15002:34;14982:18;;;14975:62;15073:11;15053:18;;;15046:39;15102:19;;29104:73:0;14722:405:1;28699:208:0;28771:7;-1:-1:-1;;;;;28799:19:0;;28791:74;;;;-1:-1:-1;;;28791:74:0;;15334:2:1;28791:74:0;;;15316:21:1;15373:2;15353:18;;;15346:30;15412:34;15392:18;;;15385:62;15483:12;15463:18;;;15456:40;15513:19;;28791:74:0;15132:406:1;28791:74:0;-1:-1:-1;;;;;;28883:16:0;;;;;:9;:16;;;;;;;28699:208::o;69505:127::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;69590:15:::1;:34:::0;69505:127::o;29444:104::-;29500:13;29533:7;29526:14;;;;;:::i;66898:596::-;63789:1;64387:7;;:19;;64379:63;;;;-1:-1:-1;;;64379:63:0;;12153:2:1;64379:63:0;;;12135:21:1;12192:2;12172:18;;;12165:30;12231:33;12211:18;;;12204:61;12282:18;;64379:63:0;11951:355:1;64379:63:0;63789:1;64520:7;:18;66969:14:::1;66986:13;42584:10:::0;:17;;42496:113;66986:13:::1;67019:18;::::0;66969:30;;-1:-1:-1;67019:18:0::1;;67010:54;;;::::0;-1:-1:-1;;;67010:54:0;;15745:2:1;67010:54:0::1;::::0;::::1;15727:21:1::0;15784:2;15764:18;;;15757:30;15823:24;15803:18;;;15796:52;15865:18;;67010:54:0::1;15543:346:1::0;67010:54:0::1;67118:15;::::0;67094:10:::1;67084:21;::::0;;;:9:::1;:21;::::0;;;;;:30:::1;::::0;67108:6;;67084:30:::1;:::i;:::-;:49;;67075:93;;;::::0;-1:-1:-1;;;67075:93:0;;16096:2:1;67075:93:0::1;::::0;::::1;16078:21:1::0;16135:2;16115:18;;;16108:30;16174:32;16154:18;;;16147:60;16224:18;;67075:93:0::1;15894:354:1::0;67075:93:0::1;67225:8;;67207:15;;:26;;;;:::i;:::-;67188:15;67197:6:::0;67188;:15:::1;:::i;:::-;:45;;67179:82;;;::::0;-1:-1:-1;;;67179:82:0;;16585:2:1;67179:82:0::1;::::0;::::1;16567:21:1::0;16624:2;16604:18;;;16597:30;16663:24;16643:18;;;16636:52;16705:18;;67179:82:0::1;16383:346:1::0;67179:82:0::1;67307:6;67294:10;;:19;;;;:::i;:::-;67281:9;:32;;67272:69;;;::::0;-1:-1:-1;;;67272:69:0;;13004:2:1;67272:69:0::1;::::0;::::1;12986:21:1::0;13043:2;13023:18;;;13016:30;13082:24;13062:18;;;13055:52;13124:18;;67272:69:0::1;12802:346:1::0;67272:69:0::1;67357:9;67352:93;67376:6;67372:1;:10;67352:93;;;67404:29;67410:10;67422;67431:1:::0;67422:6;:10:::1;:::i;67404:29::-;67384:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67352:93;;;-1:-1:-1::0;67465:10:0::1;67455:21;::::0;;;:9:::1;:21;::::0;;;;:31;;67480:6;;67455:21;:31:::1;::::0;67480:6;;67455:31:::1;:::i;:::-;::::0;;;-1:-1:-1;;63745:1:0;64699:7;:22;-1:-1:-1;;66898:596:0:o;31028:295::-;-1:-1:-1;;;;;31131:24:0;;752:10;31131:24;;31123:62;;;;-1:-1:-1;;;31123:62:0;;16936:2:1;31123:62:0;;;16918:21:1;16975:2;16955:18;;;16948:30;17014:27;16994:18;;;16987:55;17059:18;;31123:62:0;16734:349:1;31123:62:0;752:10;31198:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31198:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31198:53:0;;;;;;;;;;31267:48;;586:41:1;;;31198:42:0;;752:10;31267:48;;559:18:1;31267:48:0;;;;;;;31028:295;;:::o;70781:182::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;65505:4:::1;70872:15;:38;;70864:47;;;::::0;::::1;;70922:15;:33:::0;70781:182::o;32223:285::-;32355:41;752:10;32388:7;32355:18;:41::i;:::-;32347:103;;;;-1:-1:-1;;;32347:103:0;;10171:2:1;32347:103:0;;;10153:21:1;10210:2;10190:18;;;10183:30;10249:34;10229:18;;;10222:62;10320:19;10300:18;;;10293:47;10357:19;;32347:103:0;9969:413:1;32347:103:0;32461:39;32475:4;32481:2;32485:7;32494:5;32461:13;:39::i;:::-;32223:285;;;;:::o;71664:227::-;71729:13;71755:17;71775:23;71790:7;71775:14;:23::i;:::-;71755:43;;71836:1;71822:3;71816:17;:21;:67;;;;;;;;;;;;;;;;;71864:3;71847:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;71816:67;71809:74;71664:227;-1:-1:-1;;;71664:227:0:o;68139:329::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;68236:8:::1;;68226:6;:18;;68217:77;;;::::0;-1:-1:-1;;;68217:77:0;;17738:2:1;68217:77:0::1;::::0;::::1;17720:21:1::0;17777:2;17757:18;;;17750:30;17816:34;17796:18;;;17789:62;17887:14;17867:18;;;17860:42;17919:19;;68217:77:0::1;17536:408:1::0;68217:77:0::1;68305:14;68322:13;42584:10:::0;:17;;42496:113;68322:13:::1;68305:30;;68351:9;68346:86;68370:6;68366:1;:10;68346:86;;;68398:22;68404:3:::0;68409:10:::1;68418:1:::0;68409:6;:10:::1;:::i;68398:22::-;68378:3:::0;::::1;::::0;::::1;:::i;:::-;;;;68346:86;;;;68454:6;68442:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;68139:329:0:o;69869:131::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;69958:13:::1;:34:::0;69869:131::o;10727:149::-;10016:7;10043:12;;;;;;;;;;:22;;;8517:30;8528:4;752:10;8517;:30::i;:::-;10842:26:::1;10854:4;10860:7;10842:11;:26::i;70415:134::-:0;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;70501:18:::1;:40:::0;;-1:-1:-1;;70501:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70415:134::o;69184:104::-;66754:33;65154:23;752:10;8948:139;:::i;66754:33::-;66746:81;;;;-1:-1:-1;;;66746:81:0;;8085:2:1;66746:81:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:33;8257:19;;66746:81:0;7883:399:1;66746:81:0;69257:10:::1;:23:::0;69184:104::o;51226:241::-;51336:45;51363:4;51369:2;51373:7;51336:26;:45::i;:::-;49624:7;;;;51402:9;51394:65;;;;-1:-1:-1;;;51394:65:0;;18151:2:1;51394:65:0;;;18133:21:1;18190:2;18170:18;;;18163:30;18229:34;18209:18;;;18202:62;18300:13;18280:18;;;18273:41;18331:19;;51394:65:0;17949:407:1;43532:555:0;-1:-1:-1;;;;;43704:18:0;;43700:187;;43739:40;43771:7;44914:10;:17;;44887:24;;;;:15;:24;;;;;:44;;;44942:24;;;;;;;;;;;;44810:164;43739:40;43700:187;;;43809:2;-1:-1:-1;;;;;43801:10:0;:4;-1:-1:-1;;;;;43801:10:0;;43797:90;;43828:47;43861:4;43867:7;43828:32;:47::i;:::-;-1:-1:-1;;;;;43901:16:0;;43897:183;;43934:45;43971:7;43934:36;:45::i;43897:183::-;44007:4;-1:-1:-1;;;;;44001:10:0;:2;-1:-1:-1;;;;;44001:10:0;;43997:83;;44028:40;44056:2;44060:7;44028:27;:40::i;41843:237::-;41945:4;41969:50;;;41984:35;41969:50;;:103;;;42036:36;42060:11;42036:23;:36::i;37852:174::-;37927:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;37927:29:0;;;;;;;;:24;;37981:23;37927:24;37981:14;:23::i;:::-;-1:-1:-1;;;;;37972:46:0;;;;;;;;;;;37852:174;;:::o;34269:348::-;34362:4;34064:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34064:16:0;34379:73;;;;-1:-1:-1;;;34379:73:0;;18563:2:1;34379:73:0;;;18545:21:1;18602:2;18582:18;;;18575:30;18641:34;18621:18;;;18614:62;18712:14;18692:18;;;18685:42;18744:19;;34379:73:0;18361:408:1;34379:73:0;34463:13;34479:23;34494:7;34479:14;:23::i;:::-;34463:39;;34532:5;-1:-1:-1;;;;;34521:16:0;:7;-1:-1:-1;;;;;34521:16:0;;:51;;;;34565:7;-1:-1:-1;;;;;34541:31:0;:20;34553:7;34541:11;:20::i;:::-;-1:-1:-1;;;;;34541:31:0;;34521:51;:87;;;-1:-1:-1;;;;;;31515:25:0;;;31491:4;31515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34576:32;34513:96;34269:348;-1:-1:-1;;;;34269:348:0:o;37190:544::-;37315:4;-1:-1:-1;;;;;37288:31:0;:23;37303:7;37288:14;:23::i;:::-;-1:-1:-1;;;;;37288:31:0;;37280:85;;;;-1:-1:-1;;;37280:85:0;;18976:2:1;37280:85:0;;;18958:21:1;19015:2;18995:18;;;18988:30;19054:34;19034:18;;;19027:62;19125:11;19105:18;;;19098:39;19154:19;;37280:85:0;18774:405:1;37280:85:0;-1:-1:-1;;;;;37384:16:0;;37376:65;;;;-1:-1:-1;;;37376:65:0;;19386:2:1;37376:65:0;;;19368:21:1;19425:2;19405:18;;;19398:30;19464:34;19444:18;;;19437:62;19535:6;19515:18;;;19508:34;19559:19;;37376:65:0;19184:400:1;37376:65:0;37454:39;37475:4;37481:2;37485:7;37454:20;:39::i;:::-;37558:29;37575:1;37579:7;37558:8;:29::i;:::-;-1:-1:-1;;;;;37600:15:0;;;;;;:9;:15;;;;;:20;;37619:1;;37600:15;:20;;37619:1;;37600:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37631:13:0;;;;;;:9;:13;;;;;:18;;37648:1;;37631:13;:18;;37648:1;;37631:18;:::i;:::-;;;;-1:-1:-1;;37660:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;37660:21:0;;;;;;;;;37699:27;;37660:16;;37699:27;;;;;;;37190:544;;;:::o;9377:384::-;9026:4;9050:12;;;;;;;;;;;-1:-1:-1;;;;;9050:29:0;;;;;;;;;;;;9453:301;;9589:41;9617:7;-1:-1:-1;;;;;9589:41:0;9627:2;9589:19;:41::i;:::-;9687:38;9715:4;9722:2;9687:19;:38::i;:::-;9510:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;9510:230:0;;;;;;;;;;-1:-1:-1;;;9496:246:0;;;;;;;:::i;12631:229::-;9026:4;9050:12;;;;;;;;;;;-1:-1:-1;;;;;9050:29:0;;;;;;;;;;;;12701:152;;12745:6;:12;;;;;;;;;;;-1:-1:-1;;;;;12745:29:0;;;;;;;;;:36;;-1:-1:-1;;12745:36:0;12777:4;12745:36;;;12828:12;752:10;;672:98;12828:12;-1:-1:-1;;;;;12801:40:0;12819:7;-1:-1:-1;;;;;12801:40:0;12813:4;12801:40;;;;;;;;;;12631:229;;:::o;72382:151::-;72455:37;72470:13;72485:6;72455:37;;;;;;;:::i;:::-;;;;;;;;72503:22;;;;:13;;:22;;;;;:::i;12868:230::-;9026:4;9050:12;;;;;;;;;;;-1:-1:-1;;;;;9050:29:0;;;;;;;;;;;;12939:152;;;13014:5;12982:12;;;;;;;;;;;-1:-1:-1;;;;;12982:29:0;;;;;;;;;;:37;;-1:-1:-1;;12982:37:0;;;13039:40;752:10;;12982:12;;13039:40;;13014:5;13039:40;12868:230;;:::o;72891:439::-;73066:31;;;22092:2:1;22088:15;;;22105:66;22084:88;73066:31:0;;;;22072:101:1;;;;73066:31:0;;;;;;;;;22189:12:1;;;73066:31:0;;73056:42;;;;;;26175:66:1;61025:58:0;;;26163:79:1;26258:12;;;;26251:28;;;61025:58:0;;;;;;;;;;26295:12:1;;;;61025:58:0;;;61015:69;;;;;73020:4;;73056:42;73178:23;73204:33;73218:7;73227:9;;73204:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73204:13:0;;-1:-1:-1;;;73204:33:0:i;:::-;73178:59;-1:-1:-1;;;;;;73256:29:0;;;;;;:65;;-1:-1:-1;73308:13:0;;-1:-1:-1;;;;;73289:32:0;;;73308:13;;;;;73289:32;73256:65;73248:74;72891:439;-1:-1:-1;;;;;;;72891:439:0:o;35882:382::-;-1:-1:-1;;;;;35962:16:0;;35954:61;;;;-1:-1:-1;;;35954:61:0;;22414:2:1;35954:61:0;;;22396:21:1;;;22433:18;;;22426:30;22492:34;22472:18;;;22465:62;22544:18;;35954:61:0;22212:356:1;35954:61:0;34040:4;34064:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34064:16:0;:30;36026:58;;;;-1:-1:-1;;;36026:58:0;;22775:2:1;36026:58:0;;;22757:21:1;22814:2;22794:18;;;22787:30;22853;22833:18;;;22826:58;22901:18;;36026:58:0;22573:352:1;36026:58:0;36097:45;36126:1;36130:2;36134:7;36097:20;:45::i;:::-;-1:-1:-1;;;;;36155:13:0;;;;;;:9;:13;;;;;:18;;36172:1;;36155:13;:18;;36172:1;;36155:18;:::i;:::-;;;;-1:-1:-1;;36184:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;36184:21:0;;;;;;;;36223:33;;36184:16;;;36223:33;;36184:16;;36223:33;35882:382;;:::o;72541:228::-;65236:6;72614:11;:38;;72606:62;;;;-1:-1:-1;;;72606:62:0;;23132:2:1;72606:62:0;;;23114:21:1;23171:2;23151:18;;;23144:30;23210:13;23190:18;;;23183:41;23241:18;;72606:62:0;22930:335:1;72606:62:0;72702:10;;72684:42;;;23444:25:1;;;23500:2;23485:18;;23478:34;;;72684:42:0;;23417:18:1;72684:42:0;;;;;;;72737:10;:24;72541:228::o;50612:120::-;49624:7;;;;50148:41;;;;-1:-1:-1;;;50148:41:0;;23725:2:1;50148:41:0;;;23707:21:1;23764:2;23744:18;;;23737:30;23803:22;23783:18;;;23776:50;23843:18;;50148:41:0;23523:344:1;50148:41:0;50671:7:::1;:15:::0;;-1:-1:-1;;50671:15:0::1;::::0;;50702:22:::1;::::0;;752:10;2326:74:1;;50702:22:0;;::::1;::::0;;;;2314:2:1;50702:22:0;;::::1;50612:120::o:0;36493:360::-;36553:13;36569:23;36584:7;36569:14;:23::i;:::-;36553:39;;36605:48;36626:5;36641:1;36645:7;36605:20;:48::i;:::-;36694:29;36711:1;36715:7;36694:8;:29::i;:::-;-1:-1:-1;;;;;36736:16:0;;;;;;:9;:16;;;;;:21;;36756:1;;36736:16;:21;;36756:1;;36736:21;:::i;:::-;;;;-1:-1:-1;;36775:16:0;;;;:7;:16;;;;;;36768:23;;;;;;36809:36;36783:7;;36775:16;-1:-1:-1;;;;;36809:36:0;;;;;36775:16;;36809:36;36542:311;36493:360;:::o;33390:272::-;33504:28;33514:4;33520:2;33524:7;33504:9;:28::i;:::-;33551:48;33574:4;33580:2;33584:7;33593:5;33551:22;:48::i;:::-;33543:111;;;;-1:-1:-1;;;33543:111:0;;24074:2:1;33543:111:0;;;24056:21:1;24113:2;24093:18;;;24086:30;24152:34;24132:18;;;24125:62;24223:20;24203:18;;;24196:48;24261:19;;33543:111:0;23872:414:1;29619:360:0;34040:4;34064:16;;;:7;:16;;;;;;29692:13;;-1:-1:-1;;;;;34064:16:0;29718:76;;;;-1:-1:-1;;;29718:76:0;;24493:2:1;29718:76:0;;;24475:21:1;24532:2;24512:18;;;24505:30;24571:34;24551:18;;;24544:62;24642:17;24622:18;;;24615:45;24677:19;;29718:76:0;24291:411:1;29718:76:0;29807:21;29831:10;:8;:10::i;:::-;29807:34;;29883:1;29865:7;29859:21;:25;:112;;;;;;;;;;;;;;;;;29924:7;29933:18;:7;:16;:18::i;:::-;29907:45;;;;;;;;;:::i;45601:988::-;45867:22;45917:1;45892:22;45909:4;45892:16;:22::i;:::-;:26;;;;:::i;:::-;45929:18;45950:26;;;:17;:26;;;;;;45867:51;;-1:-1:-1;46083:28:0;;;46079:328;;-1:-1:-1;;;;;46150:18:0;;46128:19;46150:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46201:30;;;;;;:44;;;46318:30;;:17;:30;;;;;:43;;;46079:328;-1:-1:-1;46503:26:0;;;;:17;:26;;;;;;;;46496:33;;;-1:-1:-1;;;;;46547:18:0;;;;;:12;:18;;;;;:34;;;;;;;46540:41;45601:988::o;46884:1079::-;47162:10;:17;47137:22;;47162:21;;47182:1;;47162:21;:::i;:::-;47194:18;47215:24;;;:15;:24;;;;;;47588:10;:26;;47137:46;;-1:-1:-1;47215:24:0;;47137:46;;47588:26;;;;;;:::i;:::-;;;;;;;;;47566:48;;47652:11;47627:10;47638;47627:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47732:28;;;:15;:28;;;;;;;:41;;;47904:24;;;;;47897:31;47939:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46955:1008;;;46884:1079;:::o;44388:221::-;44473:14;44490:20;44507:2;44490:16;:20::i;:::-;-1:-1:-1;;;;;44521:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44566:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44388:221:0:o;28343:292::-;28445:4;28469:40;;;28484:25;28469:40;;:105;;-1:-1:-1;28526:48:0;;;28541:33;28526:48;28469:105;:158;;;;28591:36;28615:11;28591:23;:36::i;72143:231::-;72321:45;72348:4;72354:2;72358:7;72321:26;:45::i;2549:447::-;2624:13;2650:19;2682:10;2686:6;2682:1;:10;:::i;:::-;:14;;2695:1;2682:14;:::i;:::-;2672:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2672:25:0;;2650:47;;2708:15;:6;2715:1;2708:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;2734;:6;2741:1;2734:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;2765:9:0;2777:10;2781:6;2777:1;:10;:::i;:::-;:14;;2790:1;2777:14;:::i;:::-;2765:26;;2760:131;2797:1;2793;:5;2760:131;;;2832:8;2841:5;2849:3;2841:11;2832:21;;;;;;;:::i;:::-;;;;2820:6;2827:1;2820:9;;;;;;;;:::i;:::-;;;;:33;;;;;;;;;;-1:-1:-1;2878:1:0;2868:11;;;;;2800:3;;;:::i;:::-;;;2760:131;;;-1:-1:-1;2909:10:0;;2901:55;;;;-1:-1:-1;;;2901:55:0;;25774:2:1;2901:55:0;;;25756:21:1;;;25793:18;;;25786:30;25852:34;25832:18;;;25825:62;25904:18;;2901:55:0;25572:356:1;56974:231:0;57052:7;57073:17;57092:18;57114:27;57125:4;57131:9;57114:10;:27::i;:::-;57072:69;;;;57152:18;57164:5;57152:11;:18::i;:::-;-1:-1:-1;57188:9:0;56974:231;-1:-1:-1;;;56974:231:0:o;38591:843::-;38712:4;-1:-1:-1;;;;;38738:13:0;;20216:20;20255:8;38734:693;;38774:72;;;;;-1:-1:-1;;;;;38774:36:0;;;;;:72;;752:10;;38825:4;;38831:7;;38840:5;;38774:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38774:72:0;;;;;;;;-1:-1:-1;;38774:72:0;;;;;;;;;;;;:::i;:::-;;;38770:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39020:13:0;;39016:341;;39063:60;;-1:-1:-1;;;39063:60:0;;24074:2:1;39063:60:0;;;24056:21:1;24113:2;24093:18;;;24086:30;24152:34;24132:18;;;24125:62;24223:20;24203:18;;;24196:48;24261:19;;39063:60:0;23872:414:1;39016:341:0;39307:6;39301:13;39292:6;39288:2;39284:15;39277:38;38770:602;38897:55;;38907:45;38897:55;;-1:-1:-1;38890:62:0;;38734:693;-1:-1:-1;39411:4:0;38591:843;;;;;;:::o;72777:106::-;72829:13;72862;72855:20;;;;;:::i;1248:723::-;1304:13;1525:10;1521:53;;-1:-1:-1;;1552:10:0;;;;;;;;;;;;;;;;;;1248:723::o;1521:53::-;1599:5;1584:12;1640:78;1647:9;;1640:78;;1673:8;;;;:::i;:::-;;-1:-1:-1;1696:10:0;;-1:-1:-1;1704:2:0;1696:10;;:::i;:::-;;;1640:78;;;1728:19;1760:6;1750:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1750:17:0;;1728:39;;1778:154;1785:10;;1778:154;;1812:11;1822:1;1812:11;;:::i;:::-;;-1:-1:-1;1881:10:0;1889:2;1881:5;:10;:::i;:::-;1868:24;;:2;:24;:::i;:::-;1855:39;;1838:6;1845;1838:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1909:11:0;1918:2;1909:11;;:::i;:::-;;;1778:154;;52522:206;52615:4;52639:41;;;52654:26;52639:41;;:81;;;52684:36;52708:11;52684:23;:36::i;54864:1308::-;54945:7;54954:12;55179:9;:16;55199:2;55179:22;55175:990;;;55475:4;55460:20;;55454:27;55525:4;55510:20;;55504:27;55583:4;55568:20;;55562:27;55218:9;55554:36;55626:25;55637:4;55554:36;55454:27;55504;55626:10;:25::i;:::-;55619:32;;;;;;;;;55175:990;55673:9;:16;55693:2;55673:22;55669:496;;;55948:4;55933:20;;55927:27;55999:4;55984:20;;55978:27;56041:23;56052:4;55927:27;55978;56041:10;:23::i;:::-;56034:30;;;;;;;;55669:496;-1:-1:-1;56113:1:0;;-1:-1:-1;56117:35:0;56097:56;;53135:643;53213:20;53204:5;:29;;;;;;;;:::i;:::-;;53200:571;;;53135:643;:::o;53200:571::-;53311:29;53302:5;:38;;;;;;;;:::i;:::-;;53298:473;;;53357:34;;-1:-1:-1;;;53357:34:0;;27597:2:1;53357:34:0;;;27579:21:1;27636:2;27616:18;;;27609:30;27675:26;27655:18;;;27648:54;27719:18;;53357:34:0;27395:348:1;53298:473:0;53422:35;53413:5;:44;;;;;;;;:::i;:::-;;53409:362;;;53474:41;;-1:-1:-1;;;53474:41:0;;27950:2:1;53474:41:0;;;27932:21:1;27989:2;27969:18;;;27962:30;28028:33;28008:18;;;28001:61;28079:18;;53474:41:0;27748:355:1;53409:362:0;53546:30;53537:5;:39;;;;;;;;:::i;:::-;;53533:238;;;53593:44;;-1:-1:-1;;;53593:44:0;;28310:2:1;53593:44:0;;;28292:21:1;28349:2;28329:18;;;28322:30;28388:34;28368:18;;;28361:62;28459:4;28439:18;;;28432:32;28481:19;;53593:44:0;28108:398:1;53533:238:0;53668:30;53659:5;:39;;;;;;;;:::i;:::-;;53655:116;;;53715:44;;-1:-1:-1;;;53715:44:0;;28713:2:1;53715:44:0;;;28695:21:1;28752:2;28732:18;;;28725:30;28791:34;28771:18;;;28764:62;28862:4;28842:18;;;28835:32;28884:19;;53715:44:0;28511:398:1;8639:217:0;8724:4;8748:47;;;8763:32;8748:47;;:100;;-1:-1:-1;4585:25:0;4570:40;;;;8812:36;4461:157;58473:1632;58604:7;;59538:66;59525:79;;59521:163;;;-1:-1:-1;59637:1:0;;-1:-1:-1;59641:30:0;59621:51;;59521:163;59698:1;:7;;59703:2;59698:7;;:18;;;;;59709:1;:7;;59714:2;59709:7;;59698:18;59694:102;;;-1:-1:-1;59749:1:0;;-1:-1:-1;59753:30:0;59733:51;;59694:102;59910:24;;;59893:14;59910:24;;;;;;;;;29141:25:1;;;29214:4;29202:17;;29182:18;;;29175:45;;;;29236:18;;;29229:34;;;29279:18;;;29272:34;;;59910:24:0;;29113:19:1;;59910:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59910:24:0;;-1:-1:-1;;59910:24:0;;;-1:-1:-1;;;;;;;59949:20:0;;59945:103;;60002:1;60006:29;59986:50;;;;;;;59945:103;60068:6;-1:-1:-1;60076:20:0;;-1:-1:-1;58473:1632:0;;;;;;;;:::o;57468:391::-;57582:7;;57691:66;57683:75;;57785:3;57781:12;;;57795:2;57777:21;57826:25;57837:4;57777:21;57846:1;57683:75;57826:10;:25::i;:::-;57819:32;;;;;;57468:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:196::-;706:20;;-1:-1:-1;;;;;755:54:1;;745:65;;735:93;;824:1;821;814:12;735:93;638:196;;;:::o;839:186::-;898:6;951:2;939:9;930:7;926:23;922:32;919:52;;;967:1;964;957:12;919:52;990:29;1009:9;990:29;:::i;1185:258::-;1257:1;1267:113;1281:6;1278:1;1275:13;1267:113;;;1357:11;;;1351:18;1338:11;;;1331:39;1303:2;1296:10;1267:113;;;1398:6;1395:1;1392:13;1389:48;;;-1:-1:-1;;1433:1:1;1415:16;;1408:27;1185:258::o;1448:317::-;1490:3;1528:5;1522:12;1555:6;1550:3;1543:19;1571:63;1627:6;1620:4;1615:3;1611:14;1604:4;1597:5;1593:16;1571:63;:::i;:::-;1679:2;1667:15;-1:-1:-1;;1663:88:1;1654:98;;;;1754:4;1650:109;;1448:317;-1:-1:-1;;1448:317:1:o;1770:220::-;1919:2;1908:9;1901:21;1882:4;1939:45;1980:2;1969:9;1965:18;1957:6;1939:45;:::i;1995:180::-;2054:6;2107:2;2095:9;2086:7;2082:23;2078:32;2075:52;;;2123:1;2120;2113:12;2075:52;-1:-1:-1;2146:23:1;;1995:180;-1:-1:-1;1995:180:1:o;2411:254::-;2479:6;2487;2540:2;2528:9;2519:7;2515:23;2511:32;2508:52;;;2556:1;2553;2546:12;2508:52;2579:29;2598:9;2579:29;:::i;:::-;2569:39;2655:2;2640:18;;;;2627:32;;-1:-1:-1;;;2411:254:1:o;2852:328::-;2929:6;2937;2945;2998:2;2986:9;2977:7;2973:23;2969:32;2966:52;;;3014:1;3011;3004:12;2966:52;3037:29;3056:9;3037:29;:::i;:::-;3027:39;;3085:38;3119:2;3108:9;3104:18;3085:38;:::i;:::-;3075:48;;3170:2;3159:9;3155:18;3142:32;3132:42;;2852:328;;;;;:::o;3552:248::-;3620:6;3628;3681:2;3669:9;3660:7;3656:23;3652:32;3649:52;;;3697:1;3694;3687:12;3649:52;-1:-1:-1;;3720:23:1;;;3790:2;3775:18;;;3762:32;;-1:-1:-1;3552:248:1:o;4107:254::-;4175:6;4183;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4288:9;4275:23;4265:33;;4317:38;4351:2;4340:9;4336:18;4317:38;:::i;:::-;4307:48;;4107:254;;;;;:::o;4366:348::-;4418:8;4428:6;4482:3;4475:4;4467:6;4463:17;4459:27;4449:55;;4500:1;4497;4490:12;4449:55;-1:-1:-1;4523:20:1;;4566:18;4555:30;;4552:50;;;4598:1;4595;4588:12;4552:50;4635:4;4627:6;4623:17;4611:29;;4687:3;4680:4;4671:6;4663;4659:19;4655:30;4652:39;4649:59;;;4704:1;4701;4694:12;4719:411;4790:6;4798;4851:2;4839:9;4830:7;4826:23;4822:32;4819:52;;;4867:1;4864;4857:12;4819:52;4907:9;4894:23;4940:18;4932:6;4929:30;4926:50;;;4972:1;4969;4962:12;4926:50;5011:59;5062:7;5053:6;5042:9;5038:22;5011:59;:::i;:::-;5089:8;;4985:85;;-1:-1:-1;4719:411:1;-1:-1:-1;;;;4719:411:1:o;5135:478::-;5214:6;5222;5230;5283:2;5271:9;5262:7;5258:23;5254:32;5251:52;;;5299:1;5296;5289:12;5251:52;5335:9;5322:23;5312:33;;5396:2;5385:9;5381:18;5368:32;5423:18;5415:6;5412:30;5409:50;;;5455:1;5452;5445:12;5409:50;5494:59;5545:7;5536:6;5525:9;5521:22;5494:59;:::i;:::-;5135:478;;5572:8;;-1:-1:-1;5468:85:1;;-1:-1:-1;;;;5135:478:1:o;5618:160::-;5683:20;;5739:13;;5732:21;5722:32;;5712:60;;5768:1;5765;5758:12;5783:254;5848:6;5856;5909:2;5897:9;5888:7;5884:23;5880:32;5877:52;;;5925:1;5922;5915:12;5877:52;5948:29;5967:9;5948:29;:::i;:::-;5938:39;;5996:35;6027:2;6016:9;6012:18;5996:35;:::i;6042:184::-;-1:-1:-1;;;6091:1:1;6084:88;6191:4;6188:1;6181:15;6215:4;6212:1;6205:15;6231:1197;6326:6;6334;6342;6350;6403:3;6391:9;6382:7;6378:23;6374:33;6371:53;;;6420:1;6417;6410:12;6371:53;6443:29;6462:9;6443:29;:::i;:::-;6433:39;;6491:38;6525:2;6514:9;6510:18;6491:38;:::i;:::-;6481:48;;6576:2;6565:9;6561:18;6548:32;6538:42;;6631:2;6620:9;6616:18;6603:32;6654:18;6695:2;6687:6;6684:14;6681:34;;;6711:1;6708;6701:12;6681:34;6749:6;6738:9;6734:22;6724:32;;6794:7;6787:4;6783:2;6779:13;6775:27;6765:55;;6816:1;6813;6806:12;6765:55;6852:2;6839:16;6874:2;6870;6867:10;6864:36;;;6880:18;;:::i;:::-;7014:2;7008:9;7076:4;7068:13;;-1:-1:-1;;7064:22:1;;;7088:2;7060:31;7056:40;7044:53;;;7112:18;;;7132:22;;;7109:46;7106:72;;;7158:18;;:::i;:::-;7198:10;7194:2;7187:22;7233:2;7225:6;7218:18;7273:7;7268:2;7263;7259;7255:11;7251:20;7248:33;7245:53;;;7294:1;7291;7284:12;7245:53;7350:2;7345;7341;7337:11;7332:2;7324:6;7320:15;7307:46;7395:1;7390:2;7385;7377:6;7373:15;7369:24;7362:35;7416:6;7406:16;;;;;;;6231:1197;;;;;;;:::o;7433:180::-;7489:6;7542:2;7530:9;7521:7;7517:23;7513:32;7510:52;;;7558:1;7555;7548:12;7510:52;7581:26;7597:9;7581:26;:::i;7618:260::-;7686:6;7694;7747:2;7735:9;7726:7;7722:23;7718:32;7715:52;;;7763:1;7760;7753:12;7715:52;7786:29;7805:9;7786:29;:::i;:::-;7776:39;;7834:38;7868:2;7857:9;7853:18;7834:38;:::i;8287:437::-;8366:1;8362:12;;;;8409;;;8430:61;;8484:4;8476:6;8472:17;8462:27;;8430:61;8537:2;8529:6;8526:14;8506:18;8503:38;8500:218;;;-1:-1:-1;;;8571:1:1;8564:88;8675:4;8672:1;8665:15;8703:4;8700:1;8693:15;8500:218;;8287:437;;;:::o;10387:184::-;-1:-1:-1;;;10436:1:1;10429:88;10536:4;10533:1;10526:15;10560:4;10557:1;10550:15;10576:228;10616:7;10742:1;10674:66;10670:74;10667:1;10664:81;10659:1;10652:9;10645:17;10641:105;10638:131;;;10749:18;;:::i;:::-;-1:-1:-1;10789:9:1;;10576:228::o;10809:184::-;-1:-1:-1;;;10858:1:1;10851:88;10958:4;10955:1;10948:15;10982:4;10979:1;10972:15;10998:120;11038:1;11064;11054:35;;11069:18;;:::i;:::-;-1:-1:-1;11103:9:1;;10998:120::o;12311:128::-;12351:3;12382:1;12378:6;12375:1;12372:13;12369:39;;;12388:18;;:::i;:::-;-1:-1:-1;12424:9:1;;12311:128::o;13503:195::-;13542:3;13573:66;13566:5;13563:77;13560:103;;;13643:18;;:::i;:::-;-1:-1:-1;13690:1:1;13679:13;;13503:195::o;14533:184::-;-1:-1:-1;;;14582:1:1;14575:88;14682:4;14679:1;14672:15;14706:4;14703:1;14696:15;16253:125;16293:4;16321:1;16318;16315:8;16312:34;;;16326:18;;:::i;:::-;-1:-1:-1;16363:9:1;;16253:125::o;17088:443::-;17320:3;17358:6;17352:13;17374:53;17420:6;17415:3;17408:4;17400:6;17396:17;17374:53;:::i;:::-;17488:7;17449:16;;17474:22;;;-1:-1:-1;17523:1:1;17512:13;;17088:443;-1:-1:-1;17088:443:1:o;19589:786::-;20000:25;19995:3;19988:38;19970:3;20055:6;20049:13;20071:62;20126:6;20121:2;20116:3;20112:12;20105:4;20097:6;20093:17;20071:62;:::i;:::-;20197:19;20192:2;20152:16;;;20184:11;;;20177:40;20242:13;;20264:63;20242:13;20313:2;20305:11;;20298:4;20286:17;;20264:63;:::i;:::-;20347:17;20366:2;20343:26;;19589:786;-1:-1:-1;;;;19589:786:1:o;20506:1432::-;20700:2;20689:9;20682:21;20663:4;20723:1;20756:6;20750:13;20786:3;20808:1;20836:9;20832:2;20828:18;20818:28;;20896:2;20885:9;20881:18;20918;20908:61;;20962:4;20954:6;20950:17;20940:27;;20908:61;20988:2;21036;21028:6;21025:14;21005:18;21002:38;20999:222;;;-1:-1:-1;;;21070:3:1;21063:90;21176:4;21173:1;21166:15;21206:4;21201:3;21194:17;20999:222;21292:2;21277:18;;1117:19;;;1160:14;;;21320:18;21347:158;;;;21519:1;21514:315;;;;21313:516;;21347:158;-1:-1:-1;;21384:9:1;21380:82;21375:3;21368:95;21492:2;21487:3;21483:12;21476:19;;21347:158;;21514:315;20453:1;20446:14;;;20490:4;20477:18;;21609:1;21623:165;21637:6;21634:1;21631:13;21623:165;;;21715:14;;21702:11;;;21695:35;21758:16;;;;21652:10;;21623:165;;;21808:11;;;-1:-1:-1;;21313:516:1;;;21874:9;21869:3;21865:19;21860:2;21849:9;21845:18;21838:47;;;;;;21902:30;21928:3;21920:6;21902:30;:::i;:::-;21894:38;20506:1432;-1:-1:-1;;;;;20506:1432:1:o;24707:470::-;24886:3;24924:6;24918:13;24940:53;24986:6;24981:3;24974:4;24966:6;24962:17;24940:53;:::i;:::-;25056:13;;25015:16;;;;25078:57;25056:13;25015:16;25112:4;25100:17;;25078:57;:::i;:::-;25151:20;;24707:470;-1:-1:-1;;;;24707:470:1:o;25182:184::-;-1:-1:-1;;;25231:1:1;25224:88;25331:4;25328:1;25321:15;25355:4;25352:1;25345:15;25371:196;25410:3;25438:5;25428:39;;25447:18;;:::i;:::-;-1:-1:-1;25494:66:1;25483:78;;25371:196::o;26318:512::-;26512:4;-1:-1:-1;;;;;26622:2:1;26614:6;26610:15;26599:9;26592:34;26674:2;26666:6;26662:15;26657:2;26646:9;26642:18;26635:43;;26714:6;26709:2;26698:9;26694:18;26687:34;26757:3;26752:2;26741:9;26737:18;26730:31;26778:46;26819:3;26808:9;26804:19;26796:6;26778:46;:::i;:::-;26770:54;26318:512;-1:-1:-1;;;;;;26318:512:1:o;26835:249::-;26904:6;26957:2;26945:9;26936:7;26932:23;26928:32;26925:52;;;26973:1;26970;26963:12;26925:52;27005:9;26999:16;27024:30;27048:5;27024:30;:::i;27089:112::-;27121:1;27147;27137:35;;27152:18;;:::i;:::-;-1:-1:-1;27186:9:1;;27089:112::o;27206:184::-;-1:-1:-1;;;27255:1:1;27248:88;27355:4;27352:1;27345:15;27379:4;27376:1;27369:15

Swarm Source

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