ETH Price: $2,389.22 (-3.73%)

Token

Exponentials (EXP)
 

Overview

Max Total Supply

125 EXP

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
n8mensch.eth
Balance
1 EXP
0xcda8de8824a2e99ae8ce2095d43c8a405845ef71
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:
ExpNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-18
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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



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

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

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





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

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



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

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

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

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

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

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



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

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

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

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

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

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

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

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





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





// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/ERC721Enumerable.sol)




// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)





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



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


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





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


// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





/**
 * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Enumerable.sol)





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


// OpenZeppelin Contracts v4.3.2 (access/AccessControlEnumerable.sol)




// OpenZeppelin Contracts v4.3.2 (access/IAccessControlEnumerable.sol)





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

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


// OpenZeppelin Contracts v4.3.2 (access/AccessControl.sol)








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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        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 revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

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

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

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

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


// OpenZeppelin Contracts v4.3.2 (utils/structs/EnumerableSet.sol)



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

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}


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

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

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

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

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

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

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

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

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


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





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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.3.2 (utils/Counters.sol)



/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}



contract ExpNFT is Context, AccessControlEnumerable, ERC721, ERC721Enumerable, Ownable {
  using Counters for Counters.Counter;

  string base_uri_head = "https://exponentials.art/metadata/";
  string base_uri_tail = ".json";

  Counters.Counter private _tokenIdTracker;

  uint constant public pricePerNFT = 0.1 ether;

  uint constant public maxNFTPerCall = 20;

  uint public maxTotalSupply = 3333;
  uint constant public teamSupply = 50;

  bool saleStarted = false;

  bool public teamTokensMinted = false;
  bool public whiteListSaleActive = false;

  uint public tokensBurned = 0;

  mapping(address => bool) public whiteList;
  mapping(address => bool) public giveAwayWhiteList;

  constructor() ERC721("Exponentials", "EXP") {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
  }

  function addToGiveAwayWhiteList(address[] memory users) public {
    require(!whiteListSaleActive && !saleStarted, "Sale has already started");
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot alter whiteList");
    for(uint i=0; i<users.length; i++) {
      giveAwayWhiteList[users[i]] = true;
      whiteList[users[i]] = true;
    }
  }

  function removeFromGiveAwayWhiteList(address[] memory users) public {
    require(!whiteListSaleActive && !saleStarted, "Sale has already started");
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot alter whiteList");
    for(uint i=0; i<users.length; i++) {
      giveAwayWhiteList[users[i]] = false;
    }
  }

  function addToWhiteList(address[] memory users) public {
    require(!whiteListSaleActive && !saleStarted, "Sale has already started");
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot alter whiteList");
    for(uint i=0; i<users.length; i++) {
      whiteList[users[i]] = true;
    }
  }

  function removeFromWhiteList(address[] memory users) public {
    require(!whiteListSaleActive && !saleStarted, "Sale has already started");
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot alter whiteList");
    for(uint i=0; i<users.length; i++) {
      whiteList[users[i]] = false;
    }
  }

  function startWhiteListSale() public {
    require(!saleStarted && !whiteListSaleActive);
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot start");
    whiteListSaleActive = true;
  }

  function startSale() public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot start");
    saleStarted = true;
    whiteListSaleActive = false;
  }

  function withdraw() public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot withdraw");
    payable(owner()).call{value: address(this).balance}("");
  }

  function makeTeamMints(address[3] memory teamMembers) public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot mint team tokens");
    require(!teamTokensMinted, "Team tokens have already been minted");
    uint i = 0;
    for (i; i<teamSupply/3; i++) {
      _mint(teamMembers[0], _tokenIdTracker.current());
      _tokenIdTracker.increment();
    }
    for (i; i<2*teamSupply/3; i++) {
      _mint(teamMembers[1], _tokenIdTracker.current());
      _tokenIdTracker.increment();
    }
    for (i; i<teamSupply; i++) {
      _mint(teamMembers[2], _tokenIdTracker.current());
      _tokenIdTracker.increment();
    }
    teamTokensMinted = true;
  }

  function mint(uint _amount) public payable {
    require(_amount > 0, "Minting 0 tokens is quite useless");
    require(_amount <= maxNFTPerCall, "Amount is higher than maximum per call");
    require(eligibleToMint(_msgSender()));

    if (giveAwayWhiteList[_msgSender()]) {
      _amount--;
      giveAwayWhiteList[_msgSender()] = false;
      _mint(_msgSender(), _tokenIdTracker.current());
      _tokenIdTracker.increment();
    }

    if (_amount+_tokenIdTracker.current() > maxTotalSupply) {
      _amount = maxTotalSupply-_tokenIdTracker.current();
    }
    uint amountToPay = _amount*pricePerNFT;
    require(amountToPay <= msg.value, "Provided not enough Ether for purchase");
    for (uint i=0; i<_amount; i++) {
      _mint(_msgSender(), _tokenIdTracker.current());
      _tokenIdTracker.increment();
    }
    if (msg.value > amountToPay) {
      payable(_msgSender()).call{value: msg.value - amountToPay}("");
    }
  }

  function burnMany(uint256[] calldata tokenIds) public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller cannot alter state");
    for (uint i; i<tokenIds.length; i++) {
      _burn(tokenIds[i]);
    }
    tokensBurned += tokenIds.length;
  }

  function tokensMinted() public view returns(uint) {
    return _tokenIdTracker.current();
  }

  function eligibleToMint(address user) public view returns(bool){
    if (whiteListSaleActive) {
      return(whiteList[user] || giveAwayWhiteList[user]);
    }
    if (saleIsActive()) {
      return true;
    }
    return false;
  }

  function saleIsActive() public view returns(bool){
    return (saleStarted && _tokenIdTracker.current() < maxTotalSupply);
  }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    return string(abi.encodePacked(base_uri_head, Strings.toString(_tokenId), base_uri_tail));
  }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"addToGiveAwayWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","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":"tokenIds","type":"uint256[]"}],"name":"burnMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"eligibleToMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giveAwayWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[3]","name":"teamMembers","type":"address[3]"}],"name":"makeTeamMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxNFTPerCall","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeFromGiveAwayWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTokensMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokensBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526022608081815290620037b460a03980516200002991600d91602090910190620002ce565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600e91620002ce565b50610d056010556011805462ffffff1916905560006012553480156200007d57600080fd5b50604080518082018252600c81526b4578706f6e656e7469616c7360a01b60208083019182528351808501909452600384526204558560ec1b908401528151919291620000cd91600291620002ce565b508051620000e3906003906020840190620002ce565b50505062000100620000fa6200011360201b60201c565b62000117565b6200010d60003362000169565b620003b1565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001808282620001ac60201b62001a441760201c565b6000828152600160209081526040909120620001a791839062001a4e620001bc821b17901c565b505050565b620001b88282620001dc565b5050565b6000620001d3836001600160a01b0384166200027c565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001b8576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002383390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620002c557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001d6565b506000620001d6565b828054620002dc9062000374565b90600052602060002090601f0160209004810192826200030057600085556200034b565b82601f106200031b57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034b5782518255916020019190600101906200032e565b50620003599291506200035d565b5090565b5b808211156200035957600081556001016200035e565b600181811c908216806200038957607f821691505b60208210811415620003ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6133f380620003c16000396000f3fe6080604052600436106102ae5760003560e01c80638b5f9f6511610175578063b88d4fde116100dc578063e7873b5811610095578063f2fde38b1161006f578063f2fde38b14610855578063f4687c7814610875578063f54b70bf14610895578063f5df9908146108aa57600080fd5b8063e7873b58146107e1578063e985e9c5146107f7578063eb8d24441461084057600080fd5b8063b88d4fde14610721578063c87b56dd14610741578063ca15c87314610761578063cf32346014610781578063d0989390146107a1578063d547741f146107c157600080fd5b8063a217fddf1161012e578063a217fddf14610672578063a22cb46514610687578063a6bf1647146106a7578063a8edeeb6146106bc578063b11560c5146106ec578063b66a0e5d1461070c57600080fd5b80638b5f9f65146105cc5780638da5cb5b146105ec5780639010d07c1461060a57806391d148541461062a57806395d89b411461064a578063a0712d681461065f57600080fd5b80632f745c59116102195780636352211e116101d25780636352211e146105225780636b1de7b4146105425780636de9f32b1461056257806370a0823114610577578063715018a614610597578063740d73f3146105ac57600080fd5b80632f745c591461045d57806336568abe1461047d578063372c12b11461049d5780633ccfd60b146104cd57806342842e0e146104e25780634f6ccce71461050257600080fd5b806322cb1ec81161026b57806322cb1ec8146103a357806323b872dd146103c2578063248a9ca3146103e25780632ab4d052146104125780632cfac6ec146104285780632f2ff15d1461043d57600080fd5b806301ffc9a7146102b35780630628aa70146102e857806306fdde0314610312578063081812fc14610334578063095ea7b31461036c57806318160ddd1461038e575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b35565b6108ca565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b5061030467016345785d8a000081565b6040519081526020016102df565b34801561031e57600080fd5b506103276108db565b6040516102df9190612baa565b34801561034057600080fd5b5061035461034f366004612bbd565b61096d565b6040516001600160a01b0390911681526020016102df565b34801561037857600080fd5b5061038c610387366004612bf2565b610a07565b005b34801561039a57600080fd5b50600a54610304565b3480156103af57600080fd5b506011546102d390610100900460ff1681565b3480156103ce57600080fd5b5061038c6103dd366004612c1c565b610b1d565b3480156103ee57600080fd5b506103046103fd366004612bbd565b60009081526020819052604090206001015490565b34801561041e57600080fd5b5061030460105481565b34801561043457600080fd5b50610304603281565b34801561044957600080fd5b5061038c610458366004612c58565b610b4e565b34801561046957600080fd5b50610304610478366004612bf2565b610b70565b34801561048957600080fd5b5061038c610498366004612c58565b610c06565b3480156104a957600080fd5b506102d36104b8366004612c84565b60136020526000908152604090205460ff1681565b3480156104d957600080fd5b5061038c610c28565b3480156104ee57600080fd5b5061038c6104fd366004612c1c565b610cc5565b34801561050e57600080fd5b5061030461051d366004612bbd565b610ce0565b34801561052e57600080fd5b5061035461053d366004612bbd565b610d73565b34801561054e57600080fd5b506102d361055d366004612c84565b610dea565b34801561056e57600080fd5b50610304610e5c565b34801561058357600080fd5b50610304610592366004612c84565b610e6c565b3480156105a357600080fd5b5061038c610ef3565b3480156105b857600080fd5b5061038c6105c7366004612ce6565b610f59565b3480156105d857600080fd5b5061038c6105e7366004612ce6565b611024565b3480156105f857600080fd5b50600c546001600160a01b0316610354565b34801561061657600080fd5b50610354610625366004612d93565b6110eb565b34801561063657600080fd5b506102d3610645366004612c58565b61110a565b34801561065657600080fd5b50610327611133565b61038c61066d366004612bbd565b611142565b34801561067e57600080fd5b50610304600081565b34801561069357600080fd5b5061038c6106a2366004612db5565b6113b1565b3480156106b357600080fd5b50610304601481565b3480156106c857600080fd5b506102d36106d7366004612c84565b60146020526000908152604090205460ff1681565b3480156106f857600080fd5b5061038c610707366004612ce6565b6113bc565b34801561071857600080fd5b5061038c611483565b34801561072d57600080fd5b5061038c61073c366004612df1565b6114e1565b34801561074d57600080fd5b5061032761075c366004612bbd565b611519565b34801561076d57600080fd5b5061030461077c366004612bbd565b611550565b34801561078d57600080fd5b5061038c61079c366004612eb1565b611567565b3480156107ad57600080fd5b5061038c6107bc366004612ce6565b61161b565b3480156107cd57600080fd5b5061038c6107dc366004612c58565b611739565b3480156107ed57600080fd5b5061030460125481565b34801561080357600080fd5b506102d3610812366004612f26565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561084c57600080fd5b506102d3611743565b34801561086157600080fd5b5061038c610870366004612c84565b61175e565b34801561088157600080fd5b5061038c610890366004612f50565b611829565b3480156108a157600080fd5b5061038c6119bf565b3480156108b657600080fd5b506011546102d39062010000900460ff1681565b60006108d582611a63565b92915050565b6060600280546108ea90612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612fd5565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166109eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a1282610d73565b9050806001600160a01b0316836001600160a01b03161415610a805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109e2565b336001600160a01b0382161480610a9c5750610a9c8133610812565b610b0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109e2565b610b188383611a88565b505050565b610b273382611af6565b610b435760405162461bcd60e51b81526004016109e290613010565b610b18838383611bed565b610b588282611d98565b6000828152600160205260409020610b189082611a4e565b6000610b7b83610e6c565b8210610bdd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109e2565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b610c108282611dbe565b6000828152600160205260409020610b189082611e38565b610c3360003361110a565b610c785760405162461bcd60e51b815260206004820152601660248201527543616c6c65722063616e6e6f7420776974686472617760501b60448201526064016109e2565b600c546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610b18576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b610b18838383604051806020016040528060008152506114e1565b6000610ceb600a5490565b8210610d4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109e2565b600a8281548110610d6157610d61613061565b90600052602060002001549050919050565b6000818152600460205260408120546001600160a01b0316806108d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109e2565b60115460009062010000900460ff1615610e3f576001600160a01b03821660009081526013602052604090205460ff16806108d55750506001600160a01b031660009081526014602052604090205460ff1690565b610e47611743565b15610e5457506001919050565b506000919050565b6000610e67600f5490565b905090565b60006001600160a01b038216610ed75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109e2565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b03163314610f4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e2565b610f576000611e4d565b565b60115462010000900460ff16158015610f75575060115460ff16155b610f915760405162461bcd60e51b81526004016109e290613077565b610f9c60003361110a565b610fb85760405162461bcd60e51b81526004016109e2906130ae565b60005b815181101561102057600160136000848481518110610fdc57610fdc613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611018816130fb565b915050610fbb565b5050565b60115462010000900460ff16158015611040575060115460ff16155b61105c5760405162461bcd60e51b81526004016109e290613077565b61106760003361110a565b6110835760405162461bcd60e51b81526004016109e2906130ae565b60005b8151811015611020576000601460008484815181106110a7576110a7613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110e3816130fb565b915050611086565b60008281526001602052604081206111039083611e9f565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546108ea90612fd5565b6000811161119c5760405162461bcd60e51b815260206004820152602160248201527f4d696e74696e67203020746f6b656e73206973207175697465207573656c65736044820152607360f81b60648201526084016109e2565b60148111156111fc5760405162461bcd60e51b815260206004820152602660248201527f416d6f756e7420697320686967686572207468616e206d6178696d756d2070656044820152651c8818d85b1b60d21b60648201526084016109e2565b61120533610dea565b61120e57600080fd5b3360009081526014602052604090205460ff1615611283578061123081613116565b9150506000601460006112403390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611275335b600f54611eab565b611283600f80546001019055565b601054600f54611293908361312d565b11156112ac57600f546010546112a99190613145565b90505b60006112c067016345785d8a00008361315c565b9050348111156113215760405162461bcd60e51b815260206004820152602660248201527f50726f7669646564206e6f7420656e6f75676820457468657220666f7220707560448201526572636861736560d01b60648201526084016109e2565b60005b82811015611355576113353361126d565b611343600f80546001019055565b8061134d816130fb565b915050611324565b508034111561102057336113698234613145565b604051600081818185875af1925050503d80600081146113a5576040519150601f19603f3d011682016040523d82523d6000602084013e6113aa565b606091505b5050505050565b611020338383611ff9565b60115462010000900460ff161580156113d8575060115460ff16155b6113f45760405162461bcd60e51b81526004016109e290613077565b6113ff60003361110a565b61141b5760405162461bcd60e51b81526004016109e2906130ae565b60005b81518110156110205760006013600084848151811061143f5761143f613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061147b816130fb565b91505061141e565b61148e60003361110a565b6114d05760405162461bcd60e51b815260206004820152601360248201527210d85b1b195c8818d85b9b9bdd081cdd185c9d606a1b60448201526064016109e2565b6011805462ff00ff19166001179055565b6114eb3383611af6565b6115075760405162461bcd60e51b81526004016109e290613010565b611513848484846120c8565b50505050565b6060600d611526836120fb565b600e60405160200161153a93929190613215565b6040516020818303038152906040529050919050565b60008181526001602052604081206108d5906121f9565b61157260003361110a565b6115be5760405162461bcd60e51b815260206004820152601960248201527f43616c6c65722063616e6e6f7420616c7465722073746174650000000000000060448201526064016109e2565b60005b818110156115fc576115ea8383838181106115de576115de613061565b90506020020135612203565b806115f4816130fb565b9150506115c1565b508181905060126000828254611612919061312d565b90915550505050565b60115462010000900460ff16158015611637575060115460ff16155b6116535760405162461bcd60e51b81526004016109e290613077565b61165e60003361110a565b61167a5760405162461bcd60e51b81526004016109e2906130ae565b60005b81518110156110205760016014600084848151811061169e5761169e613061565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601360008484815181106116f5576116f5613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611731816130fb565b91505061167d565b610c1082826122aa565b60115460009060ff168015610e67575050601054600f541090565b600c546001600160a01b031633146117b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e2565b6001600160a01b03811661181d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61182681611e4d565b50565b61183460003361110a565b6118805760405162461bcd60e51b815260206004820152601e60248201527f43616c6c65722063616e6e6f74206d696e74207465616d20746f6b656e73000060448201526064016109e2565b601154610100900460ff16156118e45760405162461bcd60e51b8152602060048201526024808201527f5465616d20746f6b656e73206861766520616c7265616479206265656e206d696044820152631b9d195960e21b60648201526084016109e2565b60005b6118f36003603261325e565b81101561192e5761190e8260005b6020020151600f54611eab565b61191c600f80546001019055565b80611926816130fb565b9150506118e7565b600361193c6032600261315c565b611946919061325e565b81101561197857611958826001611901565b611966600f80546001019055565b80611970816130fb565b91505061192e565b60328110156119ac5761198c826002611901565b61199a600f80546001019055565b806119a4816130fb565b915050611978565b50506011805461ff001916610100179055565b60115460ff161580156119db575060115462010000900460ff16155b6119e457600080fd5b6119ef60003361110a565b611a315760405162461bcd60e51b815260206004820152601360248201527210d85b1b195c8818d85b9b9bdd081cdd185c9d606a1b60448201526064016109e2565b6011805462ff0000191662010000179055565b61102082826122d0565b6000611103836001600160a01b038416612354565b60006001600160e01b0319821663780e9d6360e01b14806108d557506108d5826123a3565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abd82610d73565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316611b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109e2565b6000611b7a83610d73565b9050806001600160a01b0316846001600160a01b03161480611bb55750836001600160a01b0316611baa8461096d565b6001600160a01b0316145b80611be557506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0082610d73565b6001600160a01b031614611c685760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109e2565b6001600160a01b038216611cca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b611cd58383836123e3565b611ce0600082611a88565b6001600160a01b0383166000908152600560205260408120805460019290611d09908490613145565b90915550506001600160a01b0382166000908152600560205260408120805460019290611d3790849061312d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082815260208190526040902060010154611db481336123ee565b610b1883836122d0565b6001600160a01b0381163314611e2e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016109e2565b6110208282612452565b6000611103836001600160a01b0384166124b7565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061110383836125aa565b6001600160a01b038216611f015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109e2565b6000818152600460205260409020546001600160a01b031615611f665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109e2565b611f72600083836123e3565b6001600160a01b0382166000908152600560205260408120805460019290611f9b90849061312d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561205b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109e2565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120d3848484611bed565b6120df848484846125d4565b6115135760405162461bcd60e51b81526004016109e290613272565b60608161211f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121495780612133816130fb565b91506121429050600a8361325e565b9150612123565b60008167ffffffffffffffff81111561216457612164612c9f565b6040519080825280601f01601f19166020018201604052801561218e576020820181803683370190505b5090505b8415611be5576121a3600183613145565b91506121b0600a866132c4565b6121bb90603061312d565b60f81b8183815181106121d0576121d0613061565b60200101906001600160f81b031916908160001a9053506121f2600a8661325e565b9450612192565b60006108d5825490565b600061220e82610d73565b905061221c816000846123e3565b612227600083611a88565b6001600160a01b0381166000908152600560205260408120805460019290612250908490613145565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000828152602081905260409020600101546122c681336123ee565b610b188383612452565b6122da828261110a565b611020576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556123103390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461239b575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108d5565b5060006108d5565b60006001600160e01b031982166380ac58cd60e01b14806123d457506001600160e01b03198216635b5e139f60e01b145b806108d557506108d5826126e1565b610b18838383612706565b6123f8828261110a565b61102057612410816001600160a01b031660146127be565b61241b8360206127be565b60405160200161242c9291906132d8565b60408051601f198184030181529082905262461bcd60e51b82526109e291600401612baa565b61245c828261110a565b15611020576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156125a05760006124db600183613145565b85549091506000906124ef90600190613145565b905081811461255457600086600001828154811061250f5761250f613061565b906000526020600020015490508087600001848154811061253257612532613061565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806125655761256561334d565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108d5565b60009150506108d5565b60008260000182815481106125c1576125c1613061565b9060005260206000200154905092915050565b60006001600160a01b0384163b156126d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612618903390899088908890600401613363565b602060405180830381600087803b15801561263257600080fd5b505af1925050508015612662575060408051601f3d908101601f1916820190925261265f918101906133a0565b60015b6126bc573d808015612690576040519150601f19603f3d011682016040523d82523d6000602084013e612695565b606091505b5080516126b45760405162461bcd60e51b81526004016109e290613272565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be5565b506001949350505050565b60006001600160e01b03198216635a05180f60e01b14806108d557506108d58261295a565b6001600160a01b0383166127615761275c81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612784565b816001600160a01b0316836001600160a01b03161461278457612784838261298f565b6001600160a01b03821661279b57610b1881612a2c565b826001600160a01b0316826001600160a01b031614610b1857610b188282612adb565b606060006127cd83600261315c565b6127d890600261312d565b67ffffffffffffffff8111156127f0576127f0612c9f565b6040519080825280601f01601f19166020018201604052801561281a576020820181803683370190505b509050600360fc1b8160008151811061283557612835613061565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061286457612864613061565b60200101906001600160f81b031916908160001a905350600061288884600261315c565b61289390600161312d565b90505b600181111561290b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106128c7576128c7613061565b1a60f81b8282815181106128dd576128dd613061565b60200101906001600160f81b031916908160001a90535060049490941c9361290481613116565b9050612896565b5083156111035760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109e2565b60006001600160e01b03198216637965db0b60e01b14806108d557506301ffc9a760e01b6001600160e01b03198316146108d5565b6000600161299c84610e6c565b6129a69190613145565b6000838152600960205260409020549091508082146129f9576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090612a3e90600190613145565b6000838152600b6020526040812054600a8054939450909284908110612a6657612a66613061565b9060005260206000200154905080600a8381548110612a8757612a87613061565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612abf57612abf61334d565b6001900381819060005260206000200160009055905550505050565b6000612ae683610e6c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b03198116811461182657600080fd5b600060208284031215612b4757600080fd5b813561110381612b1f565b60005b83811015612b6d578181015183820152602001612b55565b838111156115135750506000910152565b60008151808452612b96816020860160208601612b52565b601f01601f19169290920160200192915050565b6020815260006111036020830184612b7e565b600060208284031215612bcf57600080fd5b5035919050565b80356001600160a01b0381168114612bed57600080fd5b919050565b60008060408385031215612c0557600080fd5b612c0e83612bd6565b946020939093013593505050565b600080600060608486031215612c3157600080fd5b612c3a84612bd6565b9250612c4860208501612bd6565b9150604084013590509250925092565b60008060408385031215612c6b57600080fd5b82359150612c7b60208401612bd6565b90509250929050565b600060208284031215612c9657600080fd5b61110382612bd6565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612cde57612cde612c9f565b604052919050565b60006020808385031215612cf957600080fd5b823567ffffffffffffffff80821115612d1157600080fd5b818501915085601f830112612d2557600080fd5b813581811115612d3757612d37612c9f565b8060051b9150612d48848301612cb5565b8181529183018401918481019088841115612d6257600080fd5b938501935b83851015612d8757612d7885612bd6565b82529385019390850190612d67565b98975050505050505050565b60008060408385031215612da657600080fd5b50508035926020909101359150565b60008060408385031215612dc857600080fd5b612dd183612bd6565b915060208301358015158114612de657600080fd5b809150509250929050565b60008060008060808587031215612e0757600080fd5b612e1085612bd6565b93506020612e1f818701612bd6565b935060408601359250606086013567ffffffffffffffff80821115612e4357600080fd5b818801915088601f830112612e5757600080fd5b813581811115612e6957612e69612c9f565b612e7b601f8201601f19168501612cb5565b91508082528984828501011115612e9157600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060208385031215612ec457600080fd5b823567ffffffffffffffff80821115612edc57600080fd5b818501915085601f830112612ef057600080fd5b813581811115612eff57600080fd5b8660208260051b8501011115612f1457600080fd5b60209290920196919550909350505050565b60008060408385031215612f3957600080fd5b612f4283612bd6565b9150612c7b60208401612bd6565b600060608284031215612f6257600080fd5b82601f830112612f7157600080fd5b6040516060810181811067ffffffffffffffff82111715612f9457612f94612c9f565b604052806060840185811115612fa957600080fd5b845b81811015612fca57612fbc81612bd6565b835260209283019201612fab565b509195945050505050565b600181811c90821680612fe957607f821691505b6020821081141561300a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526018908201527f53616c652068617320616c726561647920737461727465640000000000000000604082015260600190565b6020808252601d908201527f43616c6c65722063616e6e6f7420616c7465722077686974654c697374000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561310f5761310f6130e5565b5060010190565b600081613125576131256130e5565b506000190190565b60008219821115613140576131406130e5565b500190565b600082821015613157576131576130e5565b500390565b6000816000190483118215151615613176576131766130e5565b500290565b8054600090600181811c908083168061319557607f831692505b60208084108214156131b757634e487b7160e01b600052602260045260246000fd5b8180156131cb57600181146131dc57613209565b60ff19861689528489019650613209565b60008881526020902060005b868110156132015781548b8201529085019083016131e8565b505084890196505b50505050505092915050565b6000613221828661317b565b8451613231818360208901612b52565b61323d8183018661317b565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261326d5761326d613248565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826132d3576132d3613248565b500690565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613310816017850160208801612b52565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613341816028840160208801612b52565b01602801949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339690830184612b7e565b9695505050505050565b6000602082840312156133b257600080fd5b815161110381612b1f56fea26469706673582212201db20d38f7541d4376798a104a3c4d9f7c29a643ef47bbcf44155bb2e2b8910364736f6c6343000809003368747470733a2f2f6578706f6e656e7469616c732e6172742f6d657461646174612f

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80638b5f9f6511610175578063b88d4fde116100dc578063e7873b5811610095578063f2fde38b1161006f578063f2fde38b14610855578063f4687c7814610875578063f54b70bf14610895578063f5df9908146108aa57600080fd5b8063e7873b58146107e1578063e985e9c5146107f7578063eb8d24441461084057600080fd5b8063b88d4fde14610721578063c87b56dd14610741578063ca15c87314610761578063cf32346014610781578063d0989390146107a1578063d547741f146107c157600080fd5b8063a217fddf1161012e578063a217fddf14610672578063a22cb46514610687578063a6bf1647146106a7578063a8edeeb6146106bc578063b11560c5146106ec578063b66a0e5d1461070c57600080fd5b80638b5f9f65146105cc5780638da5cb5b146105ec5780639010d07c1461060a57806391d148541461062a57806395d89b411461064a578063a0712d681461065f57600080fd5b80632f745c59116102195780636352211e116101d25780636352211e146105225780636b1de7b4146105425780636de9f32b1461056257806370a0823114610577578063715018a614610597578063740d73f3146105ac57600080fd5b80632f745c591461045d57806336568abe1461047d578063372c12b11461049d5780633ccfd60b146104cd57806342842e0e146104e25780634f6ccce71461050257600080fd5b806322cb1ec81161026b57806322cb1ec8146103a357806323b872dd146103c2578063248a9ca3146103e25780632ab4d052146104125780632cfac6ec146104285780632f2ff15d1461043d57600080fd5b806301ffc9a7146102b35780630628aa70146102e857806306fdde0314610312578063081812fc14610334578063095ea7b31461036c57806318160ddd1461038e575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b35565b6108ca565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b5061030467016345785d8a000081565b6040519081526020016102df565b34801561031e57600080fd5b506103276108db565b6040516102df9190612baa565b34801561034057600080fd5b5061035461034f366004612bbd565b61096d565b6040516001600160a01b0390911681526020016102df565b34801561037857600080fd5b5061038c610387366004612bf2565b610a07565b005b34801561039a57600080fd5b50600a54610304565b3480156103af57600080fd5b506011546102d390610100900460ff1681565b3480156103ce57600080fd5b5061038c6103dd366004612c1c565b610b1d565b3480156103ee57600080fd5b506103046103fd366004612bbd565b60009081526020819052604090206001015490565b34801561041e57600080fd5b5061030460105481565b34801561043457600080fd5b50610304603281565b34801561044957600080fd5b5061038c610458366004612c58565b610b4e565b34801561046957600080fd5b50610304610478366004612bf2565b610b70565b34801561048957600080fd5b5061038c610498366004612c58565b610c06565b3480156104a957600080fd5b506102d36104b8366004612c84565b60136020526000908152604090205460ff1681565b3480156104d957600080fd5b5061038c610c28565b3480156104ee57600080fd5b5061038c6104fd366004612c1c565b610cc5565b34801561050e57600080fd5b5061030461051d366004612bbd565b610ce0565b34801561052e57600080fd5b5061035461053d366004612bbd565b610d73565b34801561054e57600080fd5b506102d361055d366004612c84565b610dea565b34801561056e57600080fd5b50610304610e5c565b34801561058357600080fd5b50610304610592366004612c84565b610e6c565b3480156105a357600080fd5b5061038c610ef3565b3480156105b857600080fd5b5061038c6105c7366004612ce6565b610f59565b3480156105d857600080fd5b5061038c6105e7366004612ce6565b611024565b3480156105f857600080fd5b50600c546001600160a01b0316610354565b34801561061657600080fd5b50610354610625366004612d93565b6110eb565b34801561063657600080fd5b506102d3610645366004612c58565b61110a565b34801561065657600080fd5b50610327611133565b61038c61066d366004612bbd565b611142565b34801561067e57600080fd5b50610304600081565b34801561069357600080fd5b5061038c6106a2366004612db5565b6113b1565b3480156106b357600080fd5b50610304601481565b3480156106c857600080fd5b506102d36106d7366004612c84565b60146020526000908152604090205460ff1681565b3480156106f857600080fd5b5061038c610707366004612ce6565b6113bc565b34801561071857600080fd5b5061038c611483565b34801561072d57600080fd5b5061038c61073c366004612df1565b6114e1565b34801561074d57600080fd5b5061032761075c366004612bbd565b611519565b34801561076d57600080fd5b5061030461077c366004612bbd565b611550565b34801561078d57600080fd5b5061038c61079c366004612eb1565b611567565b3480156107ad57600080fd5b5061038c6107bc366004612ce6565b61161b565b3480156107cd57600080fd5b5061038c6107dc366004612c58565b611739565b3480156107ed57600080fd5b5061030460125481565b34801561080357600080fd5b506102d3610812366004612f26565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561084c57600080fd5b506102d3611743565b34801561086157600080fd5b5061038c610870366004612c84565b61175e565b34801561088157600080fd5b5061038c610890366004612f50565b611829565b3480156108a157600080fd5b5061038c6119bf565b3480156108b657600080fd5b506011546102d39062010000900460ff1681565b60006108d582611a63565b92915050565b6060600280546108ea90612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612fd5565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166109eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a1282610d73565b9050806001600160a01b0316836001600160a01b03161415610a805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109e2565b336001600160a01b0382161480610a9c5750610a9c8133610812565b610b0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109e2565b610b188383611a88565b505050565b610b273382611af6565b610b435760405162461bcd60e51b81526004016109e290613010565b610b18838383611bed565b610b588282611d98565b6000828152600160205260409020610b189082611a4e565b6000610b7b83610e6c565b8210610bdd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109e2565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b610c108282611dbe565b6000828152600160205260409020610b189082611e38565b610c3360003361110a565b610c785760405162461bcd60e51b815260206004820152601660248201527543616c6c65722063616e6e6f7420776974686472617760501b60448201526064016109e2565b600c546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610b18576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b610b18838383604051806020016040528060008152506114e1565b6000610ceb600a5490565b8210610d4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109e2565b600a8281548110610d6157610d61613061565b90600052602060002001549050919050565b6000818152600460205260408120546001600160a01b0316806108d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109e2565b60115460009062010000900460ff1615610e3f576001600160a01b03821660009081526013602052604090205460ff16806108d55750506001600160a01b031660009081526014602052604090205460ff1690565b610e47611743565b15610e5457506001919050565b506000919050565b6000610e67600f5490565b905090565b60006001600160a01b038216610ed75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109e2565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b03163314610f4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e2565b610f576000611e4d565b565b60115462010000900460ff16158015610f75575060115460ff16155b610f915760405162461bcd60e51b81526004016109e290613077565b610f9c60003361110a565b610fb85760405162461bcd60e51b81526004016109e2906130ae565b60005b815181101561102057600160136000848481518110610fdc57610fdc613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611018816130fb565b915050610fbb565b5050565b60115462010000900460ff16158015611040575060115460ff16155b61105c5760405162461bcd60e51b81526004016109e290613077565b61106760003361110a565b6110835760405162461bcd60e51b81526004016109e2906130ae565b60005b8151811015611020576000601460008484815181106110a7576110a7613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110e3816130fb565b915050611086565b60008281526001602052604081206111039083611e9f565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546108ea90612fd5565b6000811161119c5760405162461bcd60e51b815260206004820152602160248201527f4d696e74696e67203020746f6b656e73206973207175697465207573656c65736044820152607360f81b60648201526084016109e2565b60148111156111fc5760405162461bcd60e51b815260206004820152602660248201527f416d6f756e7420697320686967686572207468616e206d6178696d756d2070656044820152651c8818d85b1b60d21b60648201526084016109e2565b61120533610dea565b61120e57600080fd5b3360009081526014602052604090205460ff1615611283578061123081613116565b9150506000601460006112403390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611275335b600f54611eab565b611283600f80546001019055565b601054600f54611293908361312d565b11156112ac57600f546010546112a99190613145565b90505b60006112c067016345785d8a00008361315c565b9050348111156113215760405162461bcd60e51b815260206004820152602660248201527f50726f7669646564206e6f7420656e6f75676820457468657220666f7220707560448201526572636861736560d01b60648201526084016109e2565b60005b82811015611355576113353361126d565b611343600f80546001019055565b8061134d816130fb565b915050611324565b508034111561102057336113698234613145565b604051600081818185875af1925050503d80600081146113a5576040519150601f19603f3d011682016040523d82523d6000602084013e6113aa565b606091505b5050505050565b611020338383611ff9565b60115462010000900460ff161580156113d8575060115460ff16155b6113f45760405162461bcd60e51b81526004016109e290613077565b6113ff60003361110a565b61141b5760405162461bcd60e51b81526004016109e2906130ae565b60005b81518110156110205760006013600084848151811061143f5761143f613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061147b816130fb565b91505061141e565b61148e60003361110a565b6114d05760405162461bcd60e51b815260206004820152601360248201527210d85b1b195c8818d85b9b9bdd081cdd185c9d606a1b60448201526064016109e2565b6011805462ff00ff19166001179055565b6114eb3383611af6565b6115075760405162461bcd60e51b81526004016109e290613010565b611513848484846120c8565b50505050565b6060600d611526836120fb565b600e60405160200161153a93929190613215565b6040516020818303038152906040529050919050565b60008181526001602052604081206108d5906121f9565b61157260003361110a565b6115be5760405162461bcd60e51b815260206004820152601960248201527f43616c6c65722063616e6e6f7420616c7465722073746174650000000000000060448201526064016109e2565b60005b818110156115fc576115ea8383838181106115de576115de613061565b90506020020135612203565b806115f4816130fb565b9150506115c1565b508181905060126000828254611612919061312d565b90915550505050565b60115462010000900460ff16158015611637575060115460ff16155b6116535760405162461bcd60e51b81526004016109e290613077565b61165e60003361110a565b61167a5760405162461bcd60e51b81526004016109e2906130ae565b60005b81518110156110205760016014600084848151811061169e5761169e613061565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601360008484815181106116f5576116f5613061565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611731816130fb565b91505061167d565b610c1082826122aa565b60115460009060ff168015610e67575050601054600f541090565b600c546001600160a01b031633146117b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e2565b6001600160a01b03811661181d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61182681611e4d565b50565b61183460003361110a565b6118805760405162461bcd60e51b815260206004820152601e60248201527f43616c6c65722063616e6e6f74206d696e74207465616d20746f6b656e73000060448201526064016109e2565b601154610100900460ff16156118e45760405162461bcd60e51b8152602060048201526024808201527f5465616d20746f6b656e73206861766520616c7265616479206265656e206d696044820152631b9d195960e21b60648201526084016109e2565b60005b6118f36003603261325e565b81101561192e5761190e8260005b6020020151600f54611eab565b61191c600f80546001019055565b80611926816130fb565b9150506118e7565b600361193c6032600261315c565b611946919061325e565b81101561197857611958826001611901565b611966600f80546001019055565b80611970816130fb565b91505061192e565b60328110156119ac5761198c826002611901565b61199a600f80546001019055565b806119a4816130fb565b915050611978565b50506011805461ff001916610100179055565b60115460ff161580156119db575060115462010000900460ff16155b6119e457600080fd5b6119ef60003361110a565b611a315760405162461bcd60e51b815260206004820152601360248201527210d85b1b195c8818d85b9b9bdd081cdd185c9d606a1b60448201526064016109e2565b6011805462ff0000191662010000179055565b61102082826122d0565b6000611103836001600160a01b038416612354565b60006001600160e01b0319821663780e9d6360e01b14806108d557506108d5826123a3565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abd82610d73565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316611b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109e2565b6000611b7a83610d73565b9050806001600160a01b0316846001600160a01b03161480611bb55750836001600160a01b0316611baa8461096d565b6001600160a01b0316145b80611be557506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0082610d73565b6001600160a01b031614611c685760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109e2565b6001600160a01b038216611cca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b611cd58383836123e3565b611ce0600082611a88565b6001600160a01b0383166000908152600560205260408120805460019290611d09908490613145565b90915550506001600160a01b0382166000908152600560205260408120805460019290611d3790849061312d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082815260208190526040902060010154611db481336123ee565b610b1883836122d0565b6001600160a01b0381163314611e2e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016109e2565b6110208282612452565b6000611103836001600160a01b0384166124b7565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061110383836125aa565b6001600160a01b038216611f015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109e2565b6000818152600460205260409020546001600160a01b031615611f665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109e2565b611f72600083836123e3565b6001600160a01b0382166000908152600560205260408120805460019290611f9b90849061312d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561205b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109e2565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120d3848484611bed565b6120df848484846125d4565b6115135760405162461bcd60e51b81526004016109e290613272565b60608161211f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121495780612133816130fb565b91506121429050600a8361325e565b9150612123565b60008167ffffffffffffffff81111561216457612164612c9f565b6040519080825280601f01601f19166020018201604052801561218e576020820181803683370190505b5090505b8415611be5576121a3600183613145565b91506121b0600a866132c4565b6121bb90603061312d565b60f81b8183815181106121d0576121d0613061565b60200101906001600160f81b031916908160001a9053506121f2600a8661325e565b9450612192565b60006108d5825490565b600061220e82610d73565b905061221c816000846123e3565b612227600083611a88565b6001600160a01b0381166000908152600560205260408120805460019290612250908490613145565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000828152602081905260409020600101546122c681336123ee565b610b188383612452565b6122da828261110a565b611020576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556123103390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461239b575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108d5565b5060006108d5565b60006001600160e01b031982166380ac58cd60e01b14806123d457506001600160e01b03198216635b5e139f60e01b145b806108d557506108d5826126e1565b610b18838383612706565b6123f8828261110a565b61102057612410816001600160a01b031660146127be565b61241b8360206127be565b60405160200161242c9291906132d8565b60408051601f198184030181529082905262461bcd60e51b82526109e291600401612baa565b61245c828261110a565b15611020576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156125a05760006124db600183613145565b85549091506000906124ef90600190613145565b905081811461255457600086600001828154811061250f5761250f613061565b906000526020600020015490508087600001848154811061253257612532613061565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806125655761256561334d565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108d5565b60009150506108d5565b60008260000182815481106125c1576125c1613061565b9060005260206000200154905092915050565b60006001600160a01b0384163b156126d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612618903390899088908890600401613363565b602060405180830381600087803b15801561263257600080fd5b505af1925050508015612662575060408051601f3d908101601f1916820190925261265f918101906133a0565b60015b6126bc573d808015612690576040519150601f19603f3d011682016040523d82523d6000602084013e612695565b606091505b5080516126b45760405162461bcd60e51b81526004016109e290613272565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be5565b506001949350505050565b60006001600160e01b03198216635a05180f60e01b14806108d557506108d58261295a565b6001600160a01b0383166127615761275c81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612784565b816001600160a01b0316836001600160a01b03161461278457612784838261298f565b6001600160a01b03821661279b57610b1881612a2c565b826001600160a01b0316826001600160a01b031614610b1857610b188282612adb565b606060006127cd83600261315c565b6127d890600261312d565b67ffffffffffffffff8111156127f0576127f0612c9f565b6040519080825280601f01601f19166020018201604052801561281a576020820181803683370190505b509050600360fc1b8160008151811061283557612835613061565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061286457612864613061565b60200101906001600160f81b031916908160001a905350600061288884600261315c565b61289390600161312d565b90505b600181111561290b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106128c7576128c7613061565b1a60f81b8282815181106128dd576128dd613061565b60200101906001600160f81b031916908160001a90535060049490941c9361290481613116565b9050612896565b5083156111035760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109e2565b60006001600160e01b03198216637965db0b60e01b14806108d557506301ffc9a760e01b6001600160e01b03198316146108d5565b6000600161299c84610e6c565b6129a69190613145565b6000838152600960205260409020549091508082146129f9576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090612a3e90600190613145565b6000838152600b6020526040812054600a8054939450909284908110612a6657612a66613061565b9060005260206000200154905080600a8381548110612a8757612a87613061565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612abf57612abf61334d565b6001900381819060005260206000200160009055905550505050565b6000612ae683610e6c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b03198116811461182657600080fd5b600060208284031215612b4757600080fd5b813561110381612b1f565b60005b83811015612b6d578181015183820152602001612b55565b838111156115135750506000910152565b60008151808452612b96816020860160208601612b52565b601f01601f19169290920160200192915050565b6020815260006111036020830184612b7e565b600060208284031215612bcf57600080fd5b5035919050565b80356001600160a01b0381168114612bed57600080fd5b919050565b60008060408385031215612c0557600080fd5b612c0e83612bd6565b946020939093013593505050565b600080600060608486031215612c3157600080fd5b612c3a84612bd6565b9250612c4860208501612bd6565b9150604084013590509250925092565b60008060408385031215612c6b57600080fd5b82359150612c7b60208401612bd6565b90509250929050565b600060208284031215612c9657600080fd5b61110382612bd6565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612cde57612cde612c9f565b604052919050565b60006020808385031215612cf957600080fd5b823567ffffffffffffffff80821115612d1157600080fd5b818501915085601f830112612d2557600080fd5b813581811115612d3757612d37612c9f565b8060051b9150612d48848301612cb5565b8181529183018401918481019088841115612d6257600080fd5b938501935b83851015612d8757612d7885612bd6565b82529385019390850190612d67565b98975050505050505050565b60008060408385031215612da657600080fd5b50508035926020909101359150565b60008060408385031215612dc857600080fd5b612dd183612bd6565b915060208301358015158114612de657600080fd5b809150509250929050565b60008060008060808587031215612e0757600080fd5b612e1085612bd6565b93506020612e1f818701612bd6565b935060408601359250606086013567ffffffffffffffff80821115612e4357600080fd5b818801915088601f830112612e5757600080fd5b813581811115612e6957612e69612c9f565b612e7b601f8201601f19168501612cb5565b91508082528984828501011115612e9157600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060208385031215612ec457600080fd5b823567ffffffffffffffff80821115612edc57600080fd5b818501915085601f830112612ef057600080fd5b813581811115612eff57600080fd5b8660208260051b8501011115612f1457600080fd5b60209290920196919550909350505050565b60008060408385031215612f3957600080fd5b612f4283612bd6565b9150612c7b60208401612bd6565b600060608284031215612f6257600080fd5b82601f830112612f7157600080fd5b6040516060810181811067ffffffffffffffff82111715612f9457612f94612c9f565b604052806060840185811115612fa957600080fd5b845b81811015612fca57612fbc81612bd6565b835260209283019201612fab565b509195945050505050565b600181811c90821680612fe957607f821691505b6020821081141561300a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526018908201527f53616c652068617320616c726561647920737461727465640000000000000000604082015260600190565b6020808252601d908201527f43616c6c65722063616e6e6f7420616c7465722077686974654c697374000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561310f5761310f6130e5565b5060010190565b600081613125576131256130e5565b506000190190565b60008219821115613140576131406130e5565b500190565b600082821015613157576131576130e5565b500390565b6000816000190483118215151615613176576131766130e5565b500290565b8054600090600181811c908083168061319557607f831692505b60208084108214156131b757634e487b7160e01b600052602260045260246000fd5b8180156131cb57600181146131dc57613209565b60ff19861689528489019650613209565b60008881526020902060005b868110156132015781548b8201529085019083016131e8565b505084890196505b50505050505092915050565b6000613221828661317b565b8451613231818360208901612b52565b61323d8183018661317b565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261326d5761326d613248565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826132d3576132d3613248565b500690565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613310816017850160208801612b52565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613341816028840160208801612b52565b01602801949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339690830184612b7e565b9695505050505050565b6000602082840312156133b257600080fd5b815161110381612b1f56fea26469706673582212201db20d38f7541d4376798a104a3c4d9f7c29a643ef47bbcf44155bb2e2b8910364736f6c63430008090033

Deployed Bytecode Sourcemap

71755:5809:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77165:204;;;;;;;;;;-1:-1:-1;77165:204:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;77165:204:0;;;;;;;;72037:44;;;;;;;;;;;;72072:9;72037:44;;;;;738:25:1;;;726:2;711:18;72037:44:0;592:177:1;24480:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26039:221::-;;;;;;;;;;-1:-1:-1;26039:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;26039:221:0;1710:203:1;25562:411:0;;;;;;;;;;-1:-1:-1;25562:411:0;;;;;:::i;:::-;;:::i;:::-;;38401:113;;;;;;;;;;-1:-1:-1;38489:10:0;:17;38401:113;;72246:36;;;;;;;;;;-1:-1:-1;72246:36:0;;;;;;;;;;;26789:339;;;;;;;;;;-1:-1:-1;26789:339:0;;;;;:::i;:::-;;:::i;49070:123::-;;;;;;;;;;-1:-1:-1;49070:123:0;;;;;:::i;:::-;49136:7;49163:12;;;;;;;;;;:22;;;;49070:123;72134:33;;;;;;;;;;;;;;;;72172:36;;;;;;;;;;;;72206:2;72172:36;;66851:196;;;;;;;;;;-1:-1:-1;66851:196:0;;;;;:::i;:::-;;:::i;38069:256::-;;;;;;;;;;-1:-1:-1;38069:256:0;;;;;:::i;:::-;;:::i;67436:205::-;;;;;;;;;;-1:-1:-1;67436:205:0;;;;;:::i;:::-;;:::i;72368:41::-;;;;;;;;;;-1:-1:-1;72368:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;74337:178;;;;;;;;;;;;;:::i;27199:185::-;;;;;;;;;;-1:-1:-1;27199:185:0;;;;;:::i;:::-;;:::i;38591:233::-;;;;;;;;;;-1:-1:-1;38591:233:0;;;;;:::i;:::-;;:::i;24174:239::-;;;;;;;;;;-1:-1:-1;24174:239:0;;;;;:::i;:::-;;:::i;76545:240::-;;;;;;;;;;-1:-1:-1;76545:240:0;;;;;:::i;:::-;;:::i;76444:95::-;;;;;;;;;;;;;:::i;23904:208::-;;;;;;;;;;-1:-1:-1;23904:208:0;;;;;:::i;:::-;;:::i;69547:103::-;;;;;;;;;;;;;:::i;73296:315::-;;;;;;;;;;-1:-1:-1;73296:315:0;;;;;:::i;:::-;;:::i;72953:337::-;;;;;;;;;;-1:-1:-1;72953:337:0;;;;;:::i;:::-;;:::i;68896:87::-;;;;;;;;;;-1:-1:-1;68969:6:0;;-1:-1:-1;;;;;68969:6:0;68896:87;;66306:145;;;;;;;;;;-1:-1:-1;66306:145:0;;;;;:::i;:::-;;:::i;47955:139::-;;;;;;;;;;-1:-1:-1;47955:139:0;;;;;:::i;:::-;;:::i;24649:104::-;;;;;;;;;;;;;:::i;75213:957::-;;;;;;:::i;:::-;;:::i;47046:49::-;;;;;;;;;;-1:-1:-1;47046:49:0;47091:4;47046:49;;26332:155;;;;;;;;;;-1:-1:-1;26332:155:0;;;;;:::i;:::-;;:::i;72088:39::-;;;;;;;;;;;;72125:2;72088:39;;72414:49;;;;;;;;;;-1:-1:-1;72414:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;73617:321;;;;;;;;;;-1:-1:-1;73617:321:0;;;;;:::i;:::-;;:::i;74158:173::-;;;;;;;;;;;;;:::i;27455:328::-;;;;;;;;;;-1:-1:-1;27455:328:0;;;;;:::i;:::-;;:::i;76925:183::-;;;;;;;;;;-1:-1:-1;76925:183:0;;;;;:::i;:::-;;:::i;66625:134::-;;;;;;;;;;-1:-1:-1;66625:134:0;;;;;:::i;:::-;;:::i;76176:262::-;;;;;;;;;;-1:-1:-1;76176:262:0;;;;;:::i;:::-;;:::i;72581:366::-;;;;;;;;;;-1:-1:-1;72581:366:0;;;;;:::i;:::-;;:::i;67140:201::-;;;;;;;;;;-1:-1:-1;67140:201:0;;;;;:::i;:::-;;:::i;72333:28::-;;;;;;;;;;;;;;;;26558:164;;;;;;;;;;-1:-1:-1;26558:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26679:25:0;;;26655:4;26679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26558:164;76791:128;;;;;;;;;;;;;:::i;69805:201::-;;;;;;;;;;-1:-1:-1;69805:201:0;;;;;:::i;:::-;;:::i;74521:686::-;;;;;;;;;;-1:-1:-1;74521:686:0;;;;;:::i;:::-;;:::i;73944:208::-;;;;;;;;;;;;;:::i;72287:39::-;;;;;;;;;;-1:-1:-1;72287:39:0;;;;;;;;;;;77165:204;77304:4;77327:36;77351:11;77327:23;:36::i;:::-;77320:43;77165:204;-1:-1:-1;;77165:204:0:o;24480:100::-;24534:13;24567:5;24560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24480:100;:::o;26039:221::-;26115:7;29382:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29382:16:0;26135:73;;;;-1:-1:-1;;;26135:73:0;;8705:2:1;26135:73:0;;;8687:21:1;8744:2;8724:18;;;8717:30;8783:34;8763:18;;;8756:62;-1:-1:-1;;;8834:18:1;;;8827:42;8886:19;;26135:73:0;;;;;;;;;-1:-1:-1;26228:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26228:24:0;;26039:221::o;25562:411::-;25643:13;25659:23;25674:7;25659:14;:23::i;:::-;25643:39;;25707:5;-1:-1:-1;;;;;25701:11:0;:2;-1:-1:-1;;;;;25701:11:0;;;25693:57;;;;-1:-1:-1;;;25693:57:0;;9118:2:1;25693:57:0;;;9100:21:1;9157:2;9137:18;;;9130:30;9196:34;9176:18;;;9169:62;-1:-1:-1;;;9247:18:1;;;9240:31;9288:19;;25693:57:0;8916:397:1;25693:57:0;1560:10;-1:-1:-1;;;;;25785:21:0;;;;:62;;-1:-1:-1;25810:37:0;25827:5;1560:10;26558:164;:::i;25810:37::-;25763:168;;;;-1:-1:-1;;;25763:168:0;;9520:2:1;25763:168:0;;;9502:21:1;9559:2;9539:18;;;9532:30;9598:34;9578:18;;;9571:62;9669:26;9649:18;;;9642:54;9713:19;;25763:168:0;9318:420:1;25763:168:0;25944:21;25953:2;25957:7;25944:8;:21::i;:::-;25632:341;25562:411;;:::o;26789:339::-;26984:41;1560:10;27017:7;26984:18;:41::i;:::-;26976:103;;;;-1:-1:-1;;;26976:103:0;;;;;;;:::i;:::-;27092:28;27102:4;27108:2;27112:7;27092:9;:28::i;66851:196::-;66967:30;66983:4;66989:7;66967:15;:30::i;:::-;67008:18;;;;:12;:18;;;;;:31;;67031:7;67008:22;:31::i;38069:256::-;38166:7;38202:23;38219:5;38202:16;:23::i;:::-;38194:5;:31;38186:87;;;;-1:-1:-1;;;38186:87:0;;10363:2:1;38186:87:0;;;10345:21:1;10402:2;10382:18;;;10375:30;10441:34;10421:18;;;10414:62;-1:-1:-1;;;10492:18:1;;;10485:41;10543:19;;38186:87:0;10161:407:1;38186:87:0;-1:-1:-1;;;;;;38291:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38069:256::o;67436:205::-;67555:33;67574:4;67580:7;67555:18;:33::i;:::-;67599:18;;;;:12;:18;;;;;:34;;67625:7;67599:25;:34::i;74337:178::-;74379:41;47091:4;1560:10;47955:139;:::i;74379:41::-;74371:76;;;;-1:-1:-1;;;74371:76:0;;10775:2:1;74371:76:0;;;10757:21:1;10814:2;10794:18;;;10787:30;-1:-1:-1;;;10833:18:1;;;10826:52;10895:18;;74371:76:0;10573:346:1;74371:76:0;68969:6;;74454:55;;-1:-1:-1;;;;;68969:6:0;;;;74483:21;;74454:55;;;;74483:21;68969:6;74454:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25632:341;25562:411;;:::o;27199:185::-;27337:39;27354:4;27360:2;27364:7;27337:39;;;;;;;;;;;;:16;:39::i;38591:233::-;38666:7;38702:30;38489:10;:17;;38401:113;38702:30;38694:5;:38;38686:95;;;;-1:-1:-1;;;38686:95:0;;11336:2:1;38686:95:0;;;11318:21:1;11375:2;11355:18;;;11348:30;11414:34;11394:18;;;11387:62;-1:-1:-1;;;11465:18:1;;;11458:42;11517:19;;38686:95:0;11134:408:1;38686:95:0;38799:10;38810:5;38799:17;;;;;;;;:::i;:::-;;;;;;;;;38792:24;;38591:233;;;:::o;24174:239::-;24246:7;24282:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24282:16:0;24317:19;24309:73;;;;-1:-1:-1;;;24309:73:0;;11881:2:1;24309:73:0;;;11863:21:1;11920:2;11900:18;;;11893:30;11959:34;11939:18;;;11932:62;-1:-1:-1;;;12010:18:1;;;12003:39;12059:19;;24309:73:0;11679:405:1;76545:240:0;76619:19;;76603:4;;76619:19;;;;;76615:92;;;-1:-1:-1;;;;;76656:15:0;;;;;;:9;:15;;;;;;;;;:42;;-1:-1:-1;;;;;;;76675:23:0;;;;;:17;:23;;;;;;;;;76545:240::o;76615:92::-;76717:14;:12;:14::i;:::-;76713:48;;;-1:-1:-1;76749:4:0;;76545:240;-1:-1:-1;76545:240:0:o;76713:48::-;-1:-1:-1;76774:5:0;;76545:240;-1:-1:-1;76545:240:0:o;76444:95::-;76488:4;76508:25;:15;71250:14;;71158:114;76508:25;76501:32;;76444:95;:::o;23904:208::-;23976:7;-1:-1:-1;;;;;24004:19:0;;23996:74;;;;-1:-1:-1;;;23996:74:0;;12291:2:1;23996:74:0;;;12273:21:1;12330:2;12310:18;;;12303:30;12369:34;12349:18;;;12342:62;-1:-1:-1;;;12420:18:1;;;12413:40;12470:19;;23996:74:0;12089:406:1;23996:74:0;-1:-1:-1;;;;;;24088:16:0;;;;;:9;:16;;;;;;;23904:208::o;69547:103::-;68969:6;;-1:-1:-1;;;;;68969:6:0;1560:10;69116:23;69108:68;;;;-1:-1:-1;;;69108:68:0;;12702:2:1;69108:68:0;;;12684:21:1;;;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;12832:18;;69108:68:0;12500:356:1;69108:68:0;69612:30:::1;69639:1;69612:18;:30::i;:::-;69547:103::o:0;73296:315::-;73367:19;;;;;;;73366:20;:36;;;;-1:-1:-1;73391:11:0;;;;73390:12;73366:36;73358:73;;;;-1:-1:-1;;;73358:73:0;;;;;;;:::i;:::-;73446:41;47091:4;1560:10;47955:139;:::i;73446:41::-;73438:83;;;;-1:-1:-1;;;73438:83:0;;;;;;;:::i;:::-;73532:6;73528:78;73544:5;:12;73542:1;:14;73528:78;;;73594:4;73572:9;:19;73582:5;73588:1;73582:8;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;73572:19:0;;;;;;;;;;;-1:-1:-1;73572:19:0;:26;;-1:-1:-1;;73572:26:0;;;;;;;;;;73558:3;;;;:::i;:::-;;;;73528:78;;;;73296:315;:::o;72953:337::-;73037:19;;;;;;;73036:20;:36;;;;-1:-1:-1;73061:11:0;;;;73060:12;73036:36;73028:73;;;;-1:-1:-1;;;73028:73:0;;;;;;;:::i;:::-;73116:41;47091:4;1560:10;47955:139;:::i;73116:41::-;73108:83;;;;-1:-1:-1;;;73108:83:0;;;;;;;:::i;:::-;73202:6;73198:87;73214:5;:12;73212:1;:14;73198:87;;;73272:5;73242:17;:27;73260:5;73266:1;73260:8;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;73242:27:0;;;;;;;;;;;-1:-1:-1;73242:27:0;:35;;-1:-1:-1;;73242:35:0;;;;;;;;;;73228:3;;;;:::i;:::-;;;;73198:87;;66306:145;66388:7;66415:18;;;:12;:18;;;;;:28;;66437:5;66415:21;:28::i;:::-;66408:35;66306:145;-1:-1:-1;;;66306:145:0:o;47955:139::-;48033:4;48057:12;;;;;;;;;;;-1:-1:-1;;;;;48057:29:0;;;;;;;;;;;;;;;47955:139::o;24649:104::-;24705:13;24738:7;24731:14;;;;;:::i;75213:957::-;75281:1;75271:7;:11;75263:57;;;;-1:-1:-1;;;75263:57:0;;14046:2:1;75263:57:0;;;14028:21:1;14085:2;14065:18;;;14058:30;14124:34;14104:18;;;14097:62;-1:-1:-1;;;14175:18:1;;;14168:31;14216:19;;75263:57:0;13844:397:1;75263:57:0;72125:2;75335:7;:24;;75327:75;;;;-1:-1:-1;;;75327:75:0;;14448:2:1;75327:75:0;;;14430:21:1;14487:2;14467:18;;;14460:30;14526:34;14506:18;;;14499:62;-1:-1:-1;;;14577:18:1;;;14570:36;14623:19;;75327:75:0;14246:402:1;75327:75:0;75417:28;1560:10;76545:240;:::i;75417:28::-;75409:37;;;;;;1560:10;75459:31;;;;:17;:31;;;;;;;;75455:202;;;75501:9;;;;:::i;:::-;;;;75553:5;75519:17;:31;75537:12;1560:10;;1480:98;75537:12;-1:-1:-1;;;;;75519:31:0;;;;;;;;;;;;-1:-1:-1;75519:31:0;:39;;-1:-1:-1;;75519:39:0;;;;;;;;;;75567:46;1560:10;75573:12;75587:15;71250:14;75567:5;:46::i;:::-;75622:27;:15;71369:19;;71387:1;71369:19;;;71280:127;75622:27;75705:14;;75677:15;71250:14;75669:33;;:7;:33;:::i;:::-;:50;75665:123;;;75755:15;71250:14;75740;;:40;;;;:::i;:::-;75730:50;;75665:123;75794:16;75813:19;72072:9;75813:7;:19;:::i;:::-;75794:38;;75862:9;75847:11;:24;;75839:75;;;;-1:-1:-1;;;75839:75:0;;15432:2:1;75839:75:0;;;15414:21:1;15471:2;15451:18;;;15444:30;15510:34;15490:18;;;15483:62;-1:-1:-1;;;15561:18:1;;;15554:36;15607:19;;75839:75:0;15230:402:1;75839:75:0;75926:6;75921:130;75938:7;75936:1;:9;75921:130;;;75961:46;1560:10;75967:12;1480:98;75961:46;76016:27;:15;71369:19;;71387:1;71369:19;;;71280:127;76016:27;75947:3;;;;:::i;:::-;;;;75921:130;;;;76073:11;76061:9;:23;76057:108;;;1560:10;76129:23;76141:11;76129:9;:23;:::i;:::-;76095:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75256:914;75213:957;:::o;26332:155::-;26427:52;1560:10;26460:8;26470;26427:18;:52::i;73617:321::-;73693:19;;;;;;;73692:20;:36;;;;-1:-1:-1;73717:11:0;;;;73716:12;73692:36;73684:73;;;;-1:-1:-1;;;73684:73:0;;;;;;;:::i;:::-;73772:41;47091:4;1560:10;47955:139;:::i;73772:41::-;73764:83;;;;-1:-1:-1;;;73764:83:0;;;;;;;:::i;:::-;73858:6;73854:79;73870:5;:12;73868:1;:14;73854:79;;;73920:5;73898:9;:19;73908:5;73914:1;73908:8;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;73898:19:0;;;;;;;;;;;-1:-1:-1;73898:19:0;:27;;-1:-1:-1;;73898:27:0;;;;;;;;;;73884:3;;;;:::i;:::-;;;;73854:79;;74158:173;74201:41;47091:4;1560:10;47955:139;:::i;74201:41::-;74193:73;;;;-1:-1:-1;;;74193:73:0;;15839:2:1;74193:73:0;;;15821:21:1;15878:2;15858:18;;;15851:30;-1:-1:-1;;;15897:18:1;;;15890:49;15956:18;;74193:73:0;15637:343:1;74193:73:0;74273:11;:18;;-1:-1:-1;;74298:27:0;74287:4;74298:27;;;74158:173::o;27455:328::-;27630:41;1560:10;27663:7;27630:18;:41::i;:::-;27622:103;;;;-1:-1:-1;;;27622:103:0;;;;;;;:::i;:::-;27736:39;27750:4;27756:2;27760:7;27769:5;27736:13;:39::i;:::-;27455:328;;;;:::o;76925:183::-;76991:13;77044;77059:26;77076:8;77059:16;:26::i;:::-;77087:13;77027:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77013:89;;76925:183;;;:::o;66625:134::-;66697:7;66724:18;;;:12;:18;;;;;:27;;:25;:27::i;76176:262::-;76245:41;47091:4;1560:10;47955:139;:::i;76245:41::-;76237:79;;;;-1:-1:-1;;;76237:79:0;;17752:2:1;76237:79:0;;;17734:21:1;17791:2;17771:18;;;17764:30;17830:27;17810:18;;;17803:55;17875:18;;76237:79:0;17550:349:1;76237:79:0;76328:6;76323:72;76336:17;;;76323:72;;;76369:18;76375:8;;76384:1;76375:11;;;;;;;:::i;:::-;;;;;;;76369:5;:18::i;:::-;76355:3;;;;:::i;:::-;;;;76323:72;;;;76417:8;;:15;;76401:12;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;76176:262:0:o;72581:366::-;72660:19;;;;;;;72659:20;:36;;;;-1:-1:-1;72684:11:0;;;;72683:12;72659:36;72651:73;;;;-1:-1:-1;;;72651:73:0;;;;;;;:::i;:::-;72739:41;47091:4;1560:10;47955:139;:::i;72739:41::-;72731:83;;;;-1:-1:-1;;;72731:83:0;;;;;;;:::i;:::-;72825:6;72821:121;72837:5;:12;72835:1;:14;72821:121;;;72895:4;72865:17;:27;72883:5;72889:1;72883:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;72865:27:0;-1:-1:-1;;;;;72865:27:0;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;72930:4;72908:9;:19;72918:5;72924:1;72918:8;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;72908:19:0;;;;;;;;;;;-1:-1:-1;72908:19:0;:26;;-1:-1:-1;;72908:26:0;;;;;;;;;;72851:3;;;;:::i;:::-;;;;72821:121;;67140:201;67257:31;67274:4;67280:7;67257:16;:31::i;76791:128::-;76855:11;;76835:4;;76855:11;;:57;;;;-1:-1:-1;;76898:14:0;;76870:15;71250:14;76870:42;;76791:128::o;69805:201::-;68969:6;;-1:-1:-1;;;;;68969:6:0;1560:10;69116:23;69108:68;;;;-1:-1:-1;;;69108:68:0;;12702:2:1;69108:68:0;;;12684:21:1;;;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;12832:18;;69108:68:0;12500:356:1;69108:68:0;-1:-1:-1;;;;;69894:22:0;::::1;69886:73;;;::::0;-1:-1:-1;;;69886:73:0;;18106:2:1;69886:73:0::1;::::0;::::1;18088:21:1::0;18145:2;18125:18;;;18118:30;18184:34;18164:18;;;18157:62;-1:-1:-1;;;18235:18:1;;;18228:36;18281:19;;69886:73:0::1;17904:402:1::0;69886:73:0::1;69970:28;69989:8;69970:18;:28::i;:::-;69805:201:::0;:::o;74521:686::-;74597:41;47091:4;1560:10;47955:139;:::i;74597:41::-;74589:84;;;;-1:-1:-1;;;74589:84:0;;18513:2:1;74589:84:0;;;18495:21:1;18552:2;18532:18;;;18525:30;18591:32;18571:18;;;18564:60;18641:18;;74589:84:0;18311:354:1;74589:84:0;74689:16;;;;;;;74688:17;74680:66;;;;-1:-1:-1;;;74680:66:0;;18872:2:1;74680:66:0;;;18854:21:1;18911:2;18891:18;;;18884:30;18950:34;18930:18;;;18923:62;-1:-1:-1;;;19001:18:1;;;18994:34;19045:19;;74680:66:0;18670:400:1;74680:66:0;74753:6;74770:130;74780:12;74791:1;72206:2;74780:12;:::i;:::-;74778:1;:14;74770:130;;;74808:48;74814:11;74826:1;74814:14;;;;;74830:15;71250:14;75567:5;:46::i;74808:48::-;74865:27;:15;71369:19;;71387:1;71369:19;;;71280:127;74865:27;74794:3;;;;:::i;:::-;;;;74770:130;;;74929:1;74916:12;72206:2;74916:1;:12;:::i;:::-;:14;;;;:::i;:::-;74914:1;:16;74906:132;;;74946:48;74952:11;74964:1;74952:14;;74946:48;75003:27;:15;71369:19;;71387:1;71369:19;;;71280:127;75003:27;74932:3;;;;:::i;:::-;;;;74906:132;;;72206:2;75052:1;:12;75044:128;;;75080:48;75086:11;75098:1;75086:14;;75080:48;75137:27;:15;71369:19;;71387:1;71369:19;;;71280:127;75137:27;75066:3;;;;:::i;:::-;;;;75044:128;;;-1:-1:-1;;75178:16:0;:23;;-1:-1:-1;;75178:23:0;;;;;74521:686::o;73944:208::-;73997:11;;;;73996:12;:36;;;;-1:-1:-1;74013:19:0;;;;;;;74012:20;73996:36;73988:45;;;;;;74048:41;47091:4;1560:10;47955:139;:::i;74048:41::-;74040:73;;;;-1:-1:-1;;;74040:73:0;;15839:2:1;74040:73:0;;;15821:21:1;15878:2;15858:18;;;15851:30;-1:-1:-1;;;15897:18:1;;;15890:49;15956:18;;74040:73:0;15637:343:1;74040:73:0;74120:19;:26;;-1:-1:-1;;74120:26:0;;;;;73944:208::o;51380:112::-;51459:25;51470:4;51476:7;51459:10;:25::i;60401:152::-;60471:4;60495:50;60500:3;-1:-1:-1;;;;;60520:23:0;;60495:4;:50::i;37761:224::-;37863:4;-1:-1:-1;;;;;;37887:50:0;;-1:-1:-1;;;37887:50:0;;:90;;;37941:36;37965:11;37941:23;:36::i;33275:174::-;33350:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33350:29:0;-1:-1:-1;;;;;33350:29:0;;;;;;;;:24;;33404:23;33350:24;33404:14;:23::i;:::-;-1:-1:-1;;;;;33395:46:0;;;;;;;;;;;33275:174;;:::o;29587:348::-;29680:4;29382:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29382:16:0;29697:73;;;;-1:-1:-1;;;29697:73:0;;19534:2:1;29697:73:0;;;19516:21:1;19573:2;19553:18;;;19546:30;19612:34;19592:18;;;19585:62;-1:-1:-1;;;19663:18:1;;;19656:42;19715:19;;29697:73:0;19332:408:1;29697:73:0;29781:13;29797:23;29812:7;29797:14;:23::i;:::-;29781:39;;29850:5;-1:-1:-1;;;;;29839:16:0;:7;-1:-1:-1;;;;;29839:16:0;;:51;;;;29883:7;-1:-1:-1;;;;;29859:31:0;:20;29871:7;29859:11;:20::i;:::-;-1:-1:-1;;;;;29859:31:0;;29839:51;:87;;;-1:-1:-1;;;;;;26679:25:0;;;26655:4;26679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29894:32;29831:96;29587:348;-1:-1:-1;;;;29587:348:0:o;32579:578::-;32738:4;-1:-1:-1;;;;;32711:31:0;:23;32726:7;32711:14;:23::i;:::-;-1:-1:-1;;;;;32711:31:0;;32703:85;;;;-1:-1:-1;;;32703:85:0;;19947:2:1;32703:85:0;;;19929:21:1;19986:2;19966:18;;;19959:30;20025:34;20005:18;;;19998:62;-1:-1:-1;;;20076:18:1;;;20069:39;20125:19;;32703:85:0;19745:405:1;32703:85:0;-1:-1:-1;;;;;32807:16:0;;32799:65;;;;-1:-1:-1;;;32799:65:0;;20357:2:1;32799:65:0;;;20339:21:1;20396:2;20376:18;;;20369:30;20435:34;20415:18;;;20408:62;-1:-1:-1;;;20486:18:1;;;20479:34;20530:19;;32799:65:0;20155:400:1;32799:65:0;32877:39;32898:4;32904:2;32908:7;32877:20;:39::i;:::-;32981:29;32998:1;33002:7;32981:8;:29::i;:::-;-1:-1:-1;;;;;33023:15:0;;;;;;:9;:15;;;;;:20;;33042:1;;33023:15;:20;;33042:1;;33023:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33054:13:0;;;;;;:9;:13;;;;;:18;;33071:1;;33054:13;:18;;33071:1;;33054:18;:::i;:::-;;;;-1:-1:-1;;33083:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33083:21:0;-1:-1:-1;;;;;33083:21:0;;;;;;;;;33122:27;;33083:16;;33122:27;;;;;;;32579:578;;;:::o;49455:147::-;49136:7;49163:12;;;;;;;;;;:22;;;47537:30;47548:4;1560:10;47537;:30::i;:::-;49569:25:::1;49580:4;49586:7;49569:10;:25::i;50503:218::-:0;-1:-1:-1;;;;;50599:23:0;;1560:10;50599:23;50591:83;;;;-1:-1:-1;;;50591:83:0;;20762:2:1;50591:83:0;;;20744:21:1;20801:2;20781:18;;;20774:30;20840:34;20820:18;;;20813:62;-1:-1:-1;;;20891:18:1;;;20884:45;20946:19;;50591:83:0;20560:411:1;50591:83:0;50687:26;50699:4;50705:7;50687:11;:26::i;60729:158::-;60802:4;60826:53;60834:3;-1:-1:-1;;;;;60854:23:0;;60826:7;:53::i;70166:191::-;70259:6;;;-1:-1:-1;;;;;70276:17:0;;;-1:-1:-1;;;;;;70276:17:0;;;;;;;70309:40;;70259:6;;;70276:17;70259:6;;70309:40;;70240:16;;70309:40;70229:128;70166:191;:::o;61697:158::-;61771:7;61822:22;61826:3;61838:5;61822:3;:22::i;31271:382::-;-1:-1:-1;;;;;31351:16:0;;31343:61;;;;-1:-1:-1;;;31343:61:0;;21178:2:1;31343:61:0;;;21160:21:1;;;21197:18;;;21190:30;21256:34;21236:18;;;21229:62;21308:18;;31343:61:0;20976:356:1;31343:61:0;29358:4;29382:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29382:16:0;:30;31415:58;;;;-1:-1:-1;;;31415:58:0;;21539:2:1;31415:58:0;;;21521:21:1;21578:2;21558:18;;;21551:30;21617;21597:18;;;21590:58;21665:18;;31415:58:0;21337:352:1;31415:58:0;31486:45;31515:1;31519:2;31523:7;31486:20;:45::i;:::-;-1:-1:-1;;;;;31544:13:0;;;;;;:9;:13;;;;;:18;;31561:1;;31544:13;:18;;31561:1;;31544:18;:::i;:::-;;;;-1:-1:-1;;31573:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31573:21:0;-1:-1:-1;;;;;31573:21:0;;;;;;;;31612:33;;31573:16;;;31612:33;;31573:16;;31612:33;31271:382;;:::o;33591:315::-;33746:8;-1:-1:-1;;;;;33737:17:0;:5;-1:-1:-1;;;;;33737:17:0;;;33729:55;;;;-1:-1:-1;;;33729:55:0;;21896:2:1;33729:55:0;;;21878:21:1;21935:2;21915:18;;;21908:30;21974:27;21954:18;;;21947:55;22019:18;;33729:55:0;21694:349:1;33729:55:0;-1:-1:-1;;;;;33795:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33795:46:0;;;;;;;;;;33857:41;;540::1;;;33857::0;;513:18:1;33857:41:0;;;;;;;33591:315;;;:::o;28665:::-;28822:28;28832:4;28838:2;28842:7;28822:9;:28::i;:::-;28869:48;28892:4;28898:2;28902:7;28911:5;28869:22;:48::i;:::-;28861:111;;;;-1:-1:-1;;;28861:111:0;;;;;;;:::i;2919:723::-;2975:13;3196:10;3192:53;;-1:-1:-1;;3223:10:0;;;;;;;;;;;;-1:-1:-1;;;3223:10:0;;;;;2919:723::o;3192:53::-;3270:5;3255:12;3311:78;3318:9;;3311:78;;3344:8;;;;:::i;:::-;;-1:-1:-1;3367:10:0;;-1:-1:-1;3375:2:0;3367:10;;:::i;:::-;;;3311:78;;;3399:19;3431:6;3421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3421:17:0;;3399:39;;3449:154;3456:10;;3449:154;;3483:11;3493:1;3483:11;;:::i;:::-;;-1:-1:-1;3552:10:0;3560:2;3552:5;:10;:::i;:::-;3539:24;;:2;:24;:::i;:::-;3526:39;;3509:6;3516;3509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3509:56:0;;;;;;;;-1:-1:-1;3580:11:0;3589:2;3580:11;;:::i;:::-;;;3449:154;;61226:117;61289:7;61316:19;61324:3;56710:18;;56627:109;31882:360;31942:13;31958:23;31973:7;31958:14;:23::i;:::-;31942:39;;31994:48;32015:5;32030:1;32034:7;31994:20;:48::i;:::-;32083:29;32100:1;32104:7;32083:8;:29::i;:::-;-1:-1:-1;;;;;32125:16:0;;;;;;:9;:16;;;;;:21;;32145:1;;32125:16;:21;;32145:1;;32125:21;:::i;:::-;;;;-1:-1:-1;;32164:16:0;;;;:7;:16;;;;;;32157:23;;-1:-1:-1;;;;;;32157:23:0;;;32198:36;32172:7;;32164:16;-1:-1:-1;;;;;32198:36:0;;;;;32164:16;;32198:36;31931:311;31882:360;:::o;49847:149::-;49136:7;49163:12;;;;;;;;;;:22;;;47537:30;47548:4;1560:10;47537;:30::i;:::-;49962:26:::1;49974:4;49980:7;49962:11;:26::i;52004:238::-:0;52088:22;52096:4;52102:7;52088;:22::i;:::-;52083:152;;52127:6;:12;;;;;;;;;;;-1:-1:-1;;;;;52127:29:0;;;;;;;;;:36;;-1:-1:-1;;52127:36:0;52159:4;52127:36;;;52210:12;1560:10;;1480:98;52210:12;-1:-1:-1;;;;;52183:40:0;52201:7;-1:-1:-1;;;;;52183:40:0;52195:4;52183:40;;;;;;;;;;52004:238;;:::o;54316:414::-;54379:4;56509:19;;;:12;;;:19;;;;;;54396:327;;-1:-1:-1;54439:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;54622:18;;54600:19;;;:12;;;:19;;;;;;:40;;;;54655:11;;54396:327;-1:-1:-1;54706:5:0;54699:12;;23535:305;23637:4;-1:-1:-1;;;;;;23674:40:0;;-1:-1:-1;;;23674:40:0;;:105;;-1:-1:-1;;;;;;;23731:48:0;;-1:-1:-1;;;23731:48:0;23674:105;:158;;;;23796:36;23820:11;23796:23;:36::i;77375:184::-;77508:45;77535:4;77541:2;77545:7;77508:26;:45::i;48384:497::-;48465:22;48473:4;48479:7;48465;:22::i;:::-;48460:414;;48653:41;48681:7;-1:-1:-1;;;;;48653:41:0;48691:2;48653:19;:41::i;:::-;48767:38;48795:4;48802:2;48767:19;:38::i;:::-;48558:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48558:270:0;;;;;;;;;;-1:-1:-1;;;48504:358:0;;;;;;;:::i;52374:239::-;52458:22;52466:4;52472:7;52458;:22::i;:::-;52454:152;;;52529:5;52497:12;;;;;;;;;;;-1:-1:-1;;;;;52497:29:0;;;;;;;;;;:37;;-1:-1:-1;;52497:37:0;;;52554:40;1560:10;;52497:12;;52554:40;;52529:5;52554:40;52374:239;;:::o;54906:1420::-;54972:4;55111:19;;;:12;;;:19;;;;;;55147:15;;55143:1176;;55522:21;55546:14;55559:1;55546:10;:14;:::i;:::-;55595:18;;55522:38;;-1:-1:-1;55575:17:0;;55595:22;;55616:1;;55595:22;:::i;:::-;55575:42;;55651:13;55638:9;:26;55634:405;;55685:17;55705:3;:11;;55717:9;55705:22;;;;;;;;:::i;:::-;;;;;;;;;55685:42;;55859:9;55830:3;:11;;55842:13;55830:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;55944:23;;;:12;;;:23;;;;;:36;;;55634:405;56120:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56215:3;:12;;:19;56228:5;56215:19;;;;;;;;;;;56208:26;;;56258:4;56251:11;;;;;;;55143:1176;56302:5;56295:12;;;;;57090:120;57157:7;57184:3;:11;;57196:5;57184:18;;;;;;;;:::i;:::-;;;;;;;;;57177:25;;57090:120;;;;:::o;34471:799::-;34626:4;-1:-1:-1;;;;;34647:13:0;;15292:20;15340:8;34643:620;;34683:72;;-1:-1:-1;;;34683:72:0;;-1:-1:-1;;;;;34683:36:0;;;;;:72;;1560:10;;34734:4;;34740:7;;34749:5;;34683:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34683:72:0;;;;;;;;-1:-1:-1;;34683:72:0;;;;;;;;;;;;:::i;:::-;;;34679:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34925:13:0;;34921:272;;34968:60;;-1:-1:-1;;;34968:60:0;;;;;;;:::i;34921:272::-;35143:6;35137:13;35128:6;35124:2;35120:15;35113:38;34679:529;-1:-1:-1;;;;;;34806:51:0;-1:-1:-1;;;34806:51:0;;-1:-1:-1;34799:58:0;;34643:620;-1:-1:-1;35247:4:0;34471:799;;;;;;:::o;65493:214::-;65578:4;-1:-1:-1;;;;;;65602:57:0;;-1:-1:-1;;;65602:57:0;;:97;;;65663:36;65687:11;65663:23;:36::i;39437:589::-;-1:-1:-1;;;;;39643:18:0;;39639:187;;39678:40;39710:7;40853:10;:17;;40826:24;;;;:15;:24;;;;;:44;;;40881:24;;;;;;;;;;;;40749:164;39678:40;39639:187;;;39748:2;-1:-1:-1;;;;;39740:10:0;:4;-1:-1:-1;;;;;39740:10:0;;39736:90;;39767:47;39800:4;39806:7;39767:32;:47::i;:::-;-1:-1:-1;;;;;39840:16:0;;39836:183;;39873:45;39910:7;39873:36;:45::i;39836:183::-;39946:4;-1:-1:-1;;;;;39940:10:0;:2;-1:-1:-1;;;;;39940:10:0;;39936:83;;39967:40;39995:2;39999:7;39967:27;:40::i;4220:451::-;4295:13;4321:19;4353:10;4357:6;4353:1;:10;:::i;:::-;:14;;4366:1;4353:14;:::i;:::-;4343:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4343:25:0;;4321:47;;-1:-1:-1;;;4379:6:0;4386:1;4379:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4379:15:0;;;;;;;;;-1:-1:-1;;;4405:6:0;4412:1;4405:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4405:15:0;;;;;;;;-1:-1:-1;4436:9:0;4448:10;4452:6;4448:1;:10;:::i;:::-;:14;;4461:1;4448:14;:::i;:::-;4436:26;;4431:135;4468:1;4464;:5;4431:135;;;-1:-1:-1;;;4516:5:0;4524:3;4516:11;4503:25;;;;;;;:::i;:::-;;;;4491:6;4498:1;4491:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;4491:37:0;;;;;;;;-1:-1:-1;4553:1:0;4543:11;;;;;4471:3;;;:::i;:::-;;;4431:135;;;-1:-1:-1;4584:10:0;;4576:55;;;;-1:-1:-1;;;4576:55:0;;24457:2:1;4576:55:0;;;24439:21:1;;;24476:18;;;24469:30;24535:34;24515:18;;;24508:62;24587:18;;4576:55:0;24255:356:1;47659:204:0;47744:4;-1:-1:-1;;;;;;47768:47:0;;-1:-1:-1;;;47768:47:0;;:87;;-1:-1:-1;;;;;;;;;;2578:40:0;;;47819:36;2469:157;41540:988;41806:22;41856:1;41831:22;41848:4;41831:16;:22::i;:::-;:26;;;;:::i;:::-;41868:18;41889:26;;;:17;:26;;;;;;41806:51;;-1:-1:-1;42022:28:0;;;42018:328;;-1:-1:-1;;;;;42089:18:0;;42067:19;42089:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42140:30;;;;;;:44;;;42257:30;;:17;:30;;;;;:43;;;42018:328;-1:-1:-1;42442:26:0;;;;:17;:26;;;;;;;;42435:33;;;-1:-1:-1;;;;;42486:18:0;;;;;:12;:18;;;;;:34;;;;;;;42479:41;41540:988::o;42823:1079::-;43101:10;:17;43076:22;;43101:21;;43121:1;;43101:21;:::i;:::-;43133:18;43154:24;;;:15;:24;;;;;;43527:10;:26;;43076:46;;-1:-1:-1;43154:24:0;;43076:46;;43527:26;;;;;;:::i;:::-;;;;;;;;;43505:48;;43591:11;43566:10;43577;43566:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43671:28;;;:15;:28;;;;;;;:41;;;43843:24;;;;;43836:31;43878:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42894:1008;;;42823:1079;:::o;40327:221::-;40412:14;40429:20;40446:2;40429:16;:20::i;:::-;-1:-1:-1;;;;;40460:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40505:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40327:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;3055:254::-;3123:6;3131;3184:2;3172:9;3163:7;3159:23;3155:32;3152:52;;;3200:1;3197;3190:12;3152:52;3236:9;3223:23;3213:33;;3265:38;3299:2;3288:9;3284:18;3265:38;:::i;:::-;3255:48;;3055:254;;;;;:::o;3314:186::-;3373:6;3426:2;3414:9;3405:7;3401:23;3397:32;3394:52;;;3442:1;3439;3432:12;3394:52;3465:29;3484:9;3465:29;:::i;3505:127::-;3566:10;3561:3;3557:20;3554:1;3547:31;3597:4;3594:1;3587:15;3621:4;3618:1;3611:15;3637:275;3708:2;3702:9;3773:2;3754:13;;-1:-1:-1;;3750:27:1;3738:40;;3808:18;3793:34;;3829:22;;;3790:62;3787:88;;;3855:18;;:::i;:::-;3891:2;3884:22;3637:275;;-1:-1:-1;3637:275:1:o;3917:952::-;4001:6;4032:2;4075;4063:9;4054:7;4050:23;4046:32;4043:52;;;4091:1;4088;4081:12;4043:52;4131:9;4118:23;4160:18;4201:2;4193:6;4190:14;4187:34;;;4217:1;4214;4207:12;4187:34;4255:6;4244:9;4240:22;4230:32;;4300:7;4293:4;4289:2;4285:13;4281:27;4271:55;;4322:1;4319;4312:12;4271:55;4358:2;4345:16;4380:2;4376;4373:10;4370:36;;;4386:18;;:::i;:::-;4432:2;4429:1;4425:10;4415:20;;4455:28;4479:2;4475;4471:11;4455:28;:::i;:::-;4517:15;;;4587:11;;;4583:20;;;4548:12;;;;4615:19;;;4612:39;;;4647:1;4644;4637:12;4612:39;4671:11;;;;4691:148;4707:6;4702:3;4699:15;4691:148;;;4773:23;4792:3;4773:23;:::i;:::-;4761:36;;4724:12;;;;4817;;;;4691:148;;;4858:5;3917:952;-1:-1:-1;;;;;;;;3917:952:1:o;4874:248::-;4942:6;4950;5003:2;4991:9;4982:7;4978:23;4974:32;4971:52;;;5019:1;5016;5009:12;4971:52;-1:-1:-1;;5042:23:1;;;5112:2;5097:18;;;5084:32;;-1:-1:-1;4874:248:1:o;5127:347::-;5192:6;5200;5253:2;5241:9;5232:7;5228:23;5224:32;5221:52;;;5269:1;5266;5259:12;5221:52;5292:29;5311:9;5292:29;:::i;:::-;5282:39;;5371:2;5360:9;5356:18;5343:32;5418:5;5411:13;5404:21;5397:5;5394:32;5384:60;;5440:1;5437;5430:12;5384:60;5463:5;5453:15;;;5127:347;;;;;:::o;5479:980::-;5574:6;5582;5590;5598;5651:3;5639:9;5630:7;5626:23;5622:33;5619:53;;;5668:1;5665;5658:12;5619:53;5691:29;5710:9;5691:29;:::i;:::-;5681:39;;5739:2;5760:38;5794:2;5783:9;5779:18;5760:38;:::i;:::-;5750:48;;5845:2;5834:9;5830:18;5817:32;5807:42;;5900:2;5889:9;5885:18;5872:32;5923:18;5964:2;5956:6;5953:14;5950:34;;;5980:1;5977;5970:12;5950:34;6018:6;6007:9;6003:22;5993:32;;6063:7;6056:4;6052:2;6048:13;6044:27;6034:55;;6085:1;6082;6075:12;6034:55;6121:2;6108:16;6143:2;6139;6136:10;6133:36;;;6149:18;;:::i;:::-;6191:53;6234:2;6215:13;;-1:-1:-1;;6211:27:1;6207:36;;6191:53;:::i;:::-;6178:66;;6267:2;6260:5;6253:17;6307:7;6302:2;6297;6293;6289:11;6285:20;6282:33;6279:53;;;6328:1;6325;6318:12;6279:53;6383:2;6378;6374;6370:11;6365:2;6358:5;6354:14;6341:45;6427:1;6422:2;6417;6410:5;6406:14;6402:23;6395:34;;6448:5;6438:15;;;;;5479:980;;;;;;;:::o;6464:615::-;6550:6;6558;6611:2;6599:9;6590:7;6586:23;6582:32;6579:52;;;6627:1;6624;6617:12;6579:52;6667:9;6654:23;6696:18;6737:2;6729:6;6726:14;6723:34;;;6753:1;6750;6743:12;6723:34;6791:6;6780:9;6776:22;6766:32;;6836:7;6829:4;6825:2;6821:13;6817:27;6807:55;;6858:1;6855;6848:12;6807:55;6898:2;6885:16;6924:2;6916:6;6913:14;6910:34;;;6940:1;6937;6930:12;6910:34;6993:7;6988:2;6978:6;6975:1;6971:14;6967:2;6963:23;6959:32;6956:45;6953:65;;;7014:1;7011;7004:12;6953:65;7045:2;7037:11;;;;;7067:6;;-1:-1:-1;6464:615:1;;-1:-1:-1;;;;6464:615:1:o;7084:260::-;7152:6;7160;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7252:29;7271:9;7252:29;:::i;:::-;7242:39;;7300:38;7334:2;7323:9;7319:18;7300:38;:::i;7349:764::-;7431:6;7484:2;7472:9;7463:7;7459:23;7455:32;7452:52;;;7500:1;7497;7490:12;7452:52;7549:7;7542:4;7531:9;7527:20;7523:34;7513:62;;7571:1;7568;7561:12;7513:62;7604:2;7598:9;7646:2;7638:6;7634:15;7715:6;7703:10;7700:22;7679:18;7667:10;7664:34;7661:62;7658:88;;;7726:18;;:::i;:::-;7762:2;7755:22;7797:6;7841:2;7826:18;;7856:19;;;7853:39;;;7888:1;7885;7878:12;7853:39;7912:9;7930:152;7946:6;7941:3;7938:15;7930:152;;;8014:23;8033:3;8014:23;:::i;:::-;8002:36;;8067:4;8058:14;;;;7963;7930:152;;;-1:-1:-1;8101:6:1;;7349:764;-1:-1:-1;;;;;7349:764:1:o;8118:380::-;8197:1;8193:12;;;;8240;;;8261:61;;8315:4;8307:6;8303:17;8293:27;;8261:61;8368:2;8360:6;8357:14;8337:18;8334:38;8331:161;;;8414:10;8409:3;8405:20;8402:1;8395:31;8449:4;8446:1;8439:15;8477:4;8474:1;8467:15;8331:161;;8118:380;;;:::o;9743:413::-;9945:2;9927:21;;;9984:2;9964:18;;;9957:30;10023:34;10018:2;10003:18;;9996:62;-1:-1:-1;;;10089:2:1;10074:18;;10067:47;10146:3;10131:19;;9743:413::o;11547:127::-;11608:10;11603:3;11599:20;11596:1;11589:31;11639:4;11636:1;11629:15;11663:4;11660:1;11653:15;12861:348;13063:2;13045:21;;;13102:2;13082:18;;;13075:30;13141:26;13136:2;13121:18;;13114:54;13200:2;13185:18;;12861:348::o;13214:353::-;13416:2;13398:21;;;13455:2;13435:18;;;13428:30;13494:31;13489:2;13474:18;;13467:59;13558:2;13543:18;;13214:353::o;13572:127::-;13633:10;13628:3;13624:20;13621:1;13614:31;13664:4;13661:1;13654:15;13688:4;13685:1;13678:15;13704:135;13743:3;-1:-1:-1;;13764:17:1;;13761:43;;;13784:18;;:::i;:::-;-1:-1:-1;13831:1:1;13820:13;;13704:135::o;14653:136::-;14692:3;14720:5;14710:39;;14729:18;;:::i;:::-;-1:-1:-1;;;14765:18:1;;14653:136::o;14794:128::-;14834:3;14865:1;14861:6;14858:1;14855:13;14852:39;;;14871:18;;:::i;:::-;-1:-1:-1;14907:9:1;;14794:128::o;14927:125::-;14967:4;14995:1;14992;14989:8;14986:34;;;15000:18;;:::i;:::-;-1:-1:-1;15037:9:1;;14927:125::o;15057:168::-;15097:7;15163:1;15159;15155:6;15151:14;15148:1;15145:21;15140:1;15133:9;15126:17;15122:45;15119:71;;;15170:18;;:::i;:::-;-1:-1:-1;15210:9:1;;15057:168::o;16111:973::-;16196:12;;16161:3;;16251:1;16271:18;;;;16324;;;;16351:61;;16405:4;16397:6;16393:17;16383:27;;16351:61;16431:2;16479;16471:6;16468:14;16448:18;16445:38;16442:161;;;16525:10;16520:3;16516:20;16513:1;16506:31;16560:4;16557:1;16550:15;16588:4;16585:1;16578:15;16442:161;16619:18;16646:104;;;;16764:1;16759:319;;;;16612:466;;16646:104;-1:-1:-1;;16679:24:1;;16667:37;;16724:16;;;;-1:-1:-1;16646:104:1;;16759:319;16058:1;16051:14;;;16095:4;16082:18;;16853:1;16867:165;16881:6;16878:1;16875:13;16867:165;;;16959:14;;16946:11;;;16939:35;17002:16;;;;16896:10;;16867:165;;;16871:3;;17061:6;17056:3;17052:16;17045:23;;16612:466;;;;;;;16111:973;;;;:::o;17089:456::-;17310:3;17338:38;17372:3;17364:6;17338:38;:::i;:::-;17405:6;17399:13;17421:52;17466:6;17462:2;17455:4;17447:6;17443:17;17421:52;:::i;:::-;17489:50;17531:6;17527:2;17523:15;17515:6;17489:50;:::i;:::-;17482:57;17089:456;-1:-1:-1;;;;;;;17089:456:1:o;19075:127::-;19136:10;19131:3;19127:20;19124:1;19117:31;19167:4;19164:1;19157:15;19191:4;19188:1;19181:15;19207:120;19247:1;19273;19263:35;;19278:18;;:::i;:::-;-1:-1:-1;19312:9:1;;19207:120::o;22048:414::-;22250:2;22232:21;;;22289:2;22269:18;;;22262:30;22328:34;22323:2;22308:18;;22301:62;-1:-1:-1;;;22394:2:1;22379:18;;22372:48;22452:3;22437:19;;22048:414::o;22467:112::-;22499:1;22525;22515:35;;22530:18;;:::i;:::-;-1:-1:-1;22564:9:1;;22467:112::o;22584:786::-;22995:25;22990:3;22983:38;22965:3;23050:6;23044:13;23066:62;23121:6;23116:2;23111:3;23107:12;23100:4;23092:6;23088:17;23066:62;:::i;:::-;-1:-1:-1;;;23187:2:1;23147:16;;;23179:11;;;23172:40;23237:13;;23259:63;23237:13;23308:2;23300:11;;23293:4;23281:17;;23259:63;:::i;:::-;23342:17;23361:2;23338:26;;22584:786;-1:-1:-1;;;;22584:786:1:o;23375:127::-;23436:10;23431:3;23427:20;23424:1;23417:31;23467:4;23464:1;23457:15;23491:4;23488:1;23481:15;23507:489;-1:-1:-1;;;;;23776:15:1;;;23758:34;;23828:15;;23823:2;23808:18;;23801:43;23875:2;23860:18;;23853:34;;;23923:3;23918:2;23903:18;;23896:31;;;23701:4;;23944:46;;23970:19;;23962:6;23944:46;:::i;:::-;23936:54;23507:489;-1:-1:-1;;;;;;23507:489:1:o;24001:249::-;24070:6;24123:2;24111:9;24102:7;24098:23;24094:32;24091:52;;;24139:1;24136;24129:12;24091:52;24171:9;24165:16;24190:30;24214:5;24190:30;:::i

Swarm Source

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