ETH Price: $3,085.32 (-1.08%)
Gas: 2 Gwei

Token

SenpaiNFT (SPI)
 

Overview

Max Total Supply

255 SPI

Holders

138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
rbtree.eth
Balance
1 SPI
0xf851ce56caec96c0dff74173afc15966a0070b8c
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:
NFTContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-04-17
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

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

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


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

pragma solidity ^0.8.0;



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

// File: contracts/SenpaiNFT.sol

// SPDX-Licence-Identifier: MIT
pragma solidity ^0.8.4;


contract NFTContract is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix = "ipfs://QmNjUBTCWuXYJh1kJKL6YEwb2VDoTqNHxthyH8pF4sGCQn/";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public publicsaleCost = .012 ether;

    uint256 public MAX_FREE_MINT = 100;
    uint256 public MAX_PUBLIC_MINT = 900;
    uint256 public maxSupply = MAX_FREE_MINT + MAX_PUBLIC_MINT;
    uint256 public maxMintAmountPerTx = 20;
    uint256 public nftPerAddressLimit = 100;
    uint256 public maxFreeQtyPerWallet = 1;

    bool public revealed = true;
    bool public paused = true;

    mapping(address => uint256) public addressMintedBalance;
    mapping(address => uint256) public freeMintClaimed;
    
    constructor() ERC721("SenpaiNFT", "SPI") {
        setHiddenMetadataUri("");
    }

    // Mint Compliance
    modifier mintCompliance(uint256 _mintAmount) {
        if (msg.sender != owner()) {
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFT per address exceeded");
            require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
            require(supply.current() + _mintAmount < maxSupply, "Max supply exceeded");
        }
        _;
    }

    // Mint
    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused");
        
        if (msg.sender != owner()) {
            require(msg.value >= publicsaleCost * _mintAmount, "Insufficient funds!");
        }
        updatePublicMint(_mintAmount);
        _mintLoop(msg.sender, _mintAmount);

    }

    // Free Mint
    function freeMint(uint256 _mintAmount) external payable {
        require(!paused, "Sale is not active!");
        require(_mintAmount <= maxFreeQtyPerWallet, "Free mint limit exceeded!");
        require(freeMintClaimed[msg.sender] < maxFreeQtyPerWallet, "Already claimed free mint!");
        require(_mintAmount + addressMintedBalance[msg.sender] <= maxFreeQtyPerWallet, "Exceeded the limit");
        require(totalSupply() + _mintAmount <= maxSupply, "Not enough tokens left");
        freeMintClaimed[msg.sender] += _mintAmount;
        updateFreeMint(_mintAmount);
        _mintLoop(msg.sender, _mintAmount);
    }

    // Mint for Addresses
    function mintForAddress( uint256 _mintAmount, address _reciever) public mintCompliance(_mintAmount) onlyOwner {
        _mintLoop(_reciever, _mintAmount);
    }


    // Mint Loop
    function _mintLoop(address _reciever, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            addressMintedBalance[msg.sender]++;
            _safeMint(_reciever, supply.current());
        }
    }

    // Total Supply
    function totalSupply() public override view returns(uint256) {
        return supply.current();
    }

    function updateFreeMint(uint256 _quantity) internal {
        MAX_FREE_MINT -= _quantity;
    }

    function updatePublicMint(uint256 _quantity) internal {
        MAX_PUBLIC_MINT -= _quantity;
    }


    // Wallet of Owner
    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if(currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    // Token URI
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (revealed == false) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : "";
    }

    function claimedFreeMint() public view returns (bool) {
        return freeMintClaimed[msg.sender] == maxFreeQtyPerWallet;
    }

    // Set Max Mint Amount Per TX
    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)  public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    // Set Publicsale Cost
    function setPublicsaleCost(uint256 _cost) public onlyOwner {
        publicsaleCost = _cost;
    }


    // Set Hidden Metadata URI
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    // Set URI Prefix
    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    // Set URI Sufix
    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    // Set Paused 
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    // Get Cost
    function cost() public view returns(uint256) {
        return publicsaleCost;
    }

    // Set Revealed 
    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    // Base URI
    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

    // Withdraw
    function withDraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

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":"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":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxFreeQtyPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_reciever","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicsaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withDraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062002eee60a03980516200002991600c916020909101906200021b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600d916200021b565b50662aa1efb94e0000600f556064601081905561038460118190556200007e91620002c1565b601255601460138190556064905560016015556016805461ffff1916610101179055348015620000ad57600080fd5b50604080518082018252600981526814d95b9c185a53919560ba1b60208083019182528351808501909452600384526253504960e81b908401528151919291620000fa916000916200021b565b508051620001109060019060208401906200021b565b5050506200012d620001276200014d60201b60201c565b62000151565b6040805160208101909152600081526200014790620001a3565b62000325565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200021790600e9060208401906200021b565b5050565b8280546200022990620002e8565b90600052602060002090601f0160209004810192826200024d576000855562000298565b82601f106200026857805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002985782518255916020019190600101906200027b565b50620002a6929150620002aa565b5090565b5b80821115620002a65760008155600101620002ab565b60008219821115620002e357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002fd57607f821691505b602082108114156200031f57634e487b7160e01b600052602260045260246000fd5b50919050565b612bb980620003356000396000f3fe6080604052600436106102885760003560e01c806365f130971161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb0114610751578063e0a8085314610767578063e0ec7c3614610787578063e985e9c5146107b4578063efbd73f4146107fd578063f2fde38b1461081d57600080fd5b8063a22cb465146106a6578063a45ba8e7146106c6578063b071401b146106db578063b88d4fde146106fb578063ba7d2c761461071b578063c87b56dd1461073157600080fd5b80638da5cb5b116101135780638da5cb5b1461061e57806392829d741461063c57806394354fd01461065257806395d89b4114610668578063966784ec1461067d578063a0712d681461069357600080fd5b806365f13097146105805780636905b1841461059657806370a08231146105b6578063715018a6146105d65780637c928fe9146105eb5780637ec4a659146105fe57600080fd5b806323b872dd116101fe5780634fdd43cb116101b75780634fdd43cb146104dd57806351830227146104fd5780635503a0e8146105175780635c975abb1461052c57806362b99ad41461054b5780636352211e1461056057600080fd5b806323b872dd1461041a5780632f745c591461043a57806341cda2031461045a57806342842e0e14610470578063438b6300146104905780634f6ccce7146104bd57600080fd5b806313faede61161025057806313faede61461035357806316ba10e01461037257806316c38b3c1461039257806316d1f69d146103b257806318160ddd146103d857806318cae269146103ed57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630fdb1c101461033e575b600080fd5b34801561029957600080fd5b506102ad6102a83660046126ec565b61083d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610868565b6040516102b9919061291c565b3480156102f057600080fd5b506103046102ff36600461276f565b6108fa565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c6103373660046126a7565b610994565b005b34801561034a57600080fd5b5061033c610aaa565b34801561035f57600080fd5b50600f545b6040519081526020016102b9565b34801561037e57600080fd5b5061033c61038d366004612726565b610b48565b34801561039e57600080fd5b5061033c6103ad3660046126d1565b610b89565b3480156103be57600080fd5b5060155433600090815260186020526040902054146102ad565b3480156103e457600080fd5b50610364610bcd565b3480156103f957600080fd5b50610364610408366004612577565b60176020526000908152604090205481565b34801561042657600080fd5b5061033c6104353660046125c5565b610bdd565b34801561044657600080fd5b506103646104553660046126a7565b610c0e565b34801561046657600080fd5b5061036460105481565b34801561047c57600080fd5b5061033c61048b3660046125c5565b610ca4565b34801561049c57600080fd5b506104b06104ab366004612577565b610cbf565b6040516102b991906128d8565b3480156104c957600080fd5b506103646104d836600461276f565b610da0565b3480156104e957600080fd5b5061033c6104f8366004612726565b610e33565b34801561050957600080fd5b506016546102ad9060ff1681565b34801561052357600080fd5b506102d7610e70565b34801561053857600080fd5b506016546102ad90610100900460ff1681565b34801561055757600080fd5b506102d7610efe565b34801561056c57600080fd5b5061030461057b36600461276f565b610f0b565b34801561058c57600080fd5b5061036460115481565b3480156105a257600080fd5b5061033c6105b136600461276f565b610f82565b3480156105c257600080fd5b506103646105d1366004612577565b610fb1565b3480156105e257600080fd5b5061033c611038565b61033c6105f936600461276f565b61106e565b34801561060a57600080fd5b5061033c610619366004612726565b611263565b34801561062a57600080fd5b50600a546001600160a01b0316610304565b34801561064857600080fd5b50610364600f5481565b34801561065e57600080fd5b5061036460135481565b34801561067457600080fd5b506102d76112a0565b34801561068957600080fd5b5061036460155481565b61033c6106a136600461276f565b6112af565b3480156106b257600080fd5b5061033c6106c136600461267d565b6114be565b3480156106d257600080fd5b506102d76114c9565b3480156106e757600080fd5b5061033c6106f636600461276f565b6114d6565b34801561070757600080fd5b5061033c610716366004612601565b611505565b34801561072757600080fd5b5061036460145481565b34801561073d57600080fd5b506102d761074c36600461276f565b61153d565b34801561075d57600080fd5b5061036460125481565b34801561077357600080fd5b5061033c6107823660046126d1565b6116b7565b34801561079357600080fd5b506103646107a2366004612577565b60186020526000908152604090205481565b3480156107c057600080fd5b506102ad6107cf366004612592565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080957600080fd5b5061033c610818366004612788565b6116f4565b34801561082957600080fd5b5061033c610838366004612577565b61186e565b60006001600160e01b0319821663780e9d6360e01b1480610862575061086282611906565b92915050565b60606000805461087790612a95565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390612a95565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061099f82610f0b565b9050806001600160a01b0316836001600160a01b03161415610a0d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096f565b336001600160a01b0382161480610a295750610a2981336107cf565b610a9b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096f565b610aa58383611956565b505050565b600a546001600160a01b03163314610ad45760405162461bcd60e51b815260040161096f90612981565b6000610ae8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b32576040519150601f19603f3d011682016040523d82523d6000602084013e610b37565b606091505b5050905080610b4557600080fd5b50565b600a546001600160a01b03163314610b725760405162461bcd60e51b815260040161096f90612981565b8051610b8590600d90602084019061243c565b5050565b600a546001600160a01b03163314610bb35760405162461bcd60e51b815260040161096f90612981565b601680549115156101000261ff0019909216919091179055565b6000610bd8600b5490565b905090565b610be733826119c4565b610c035760405162461bcd60e51b815260040161096f906129b6565b610aa5838383611abb565b6000610c1983610fb1565b8210610c7b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161096f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa583838360405180602001604052806000815250611505565b60606000610ccc83610fb1565b905060008167ffffffffffffffff811115610ce957610ce9612b57565b604051908082528060200260200182016040528015610d12578160200160208202803683370190505b509050600160005b8381108015610d2b57506012548211155b15610d96576000610d3b83610f0b565b9050866001600160a01b0316816001600160a01b03161415610d835782848381518110610d6a57610d6a612b41565b602090810291909101015281610d7f81612ad0565b9250505b82610d8d81612ad0565b93505050610d1a565b5090949350505050565b6000610dab60085490565b8210610e0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161096f565b60088281548110610e2157610e21612b41565b90600052602060002001549050919050565b600a546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161096f90612981565b8051610b8590600e90602084019061243c565b600d8054610e7d90612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea990612a95565b8015610ef65780601f10610ecb57610100808354040283529160200191610ef6565b820191906000526020600020905b815481529060010190602001808311610ed957829003601f168201915b505050505081565b600c8054610e7d90612a95565b6000818152600260205260408120546001600160a01b0316806108625760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161096f565b600a546001600160a01b03163314610fac5760405162461bcd60e51b815260040161096f90612981565b600f55565b60006001600160a01b03821661101c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161096f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110625760405162461bcd60e51b815260040161096f90612981565b61106c6000611c62565b565b601654610100900460ff16156110bc5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161096f565b60155481111561110e5760405162461bcd60e51b815260206004820152601960248201527f46726565206d696e74206c696d69742065786365656465642100000000000000604482015260640161096f565b601554336000908152601860205260409020541061116e5760405162461bcd60e51b815260206004820152601a60248201527f416c726561647920636c61696d65642066726565206d696e7421000000000000604482015260640161096f565b6015543360009081526017602052604090205461118b9083612a07565b11156111ce5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161096f565b601254816111da610bcd565b6111e49190612a07565b111561122b5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161096f565b336000908152601860205260408120805483929061124a908490612a07565b90915550611259905081611cb4565b610b453382611cce565b600a546001600160a01b0316331461128d5760405162461bcd60e51b815260040161096f90612981565b8051610b8590600c90602084019061243c565b60606001805461087790612a95565b806112c2600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146113f557336000908152601760205260409020546014546112f78383612a07565b11156113455760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161096f565b60008211801561135757506013548211155b6113995760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161096f565b601254826113a6600b5490565b6113b09190612a07565b106113f35760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161096f565b505b601654610100900460ff16156114465760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161096f565b600a546001600160a01b031633146114ab5781600f546114669190612a33565b3410156114ab5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096f565b6114b482611d2b565b610b853383611cce565b610b85338383611d3d565b600e8054610e7d90612a95565b600a546001600160a01b031633146115005760405162461bcd60e51b815260040161096f90612981565b601355565b61150f33836119c4565b61152b5760405162461bcd60e51b815260040161096f906129b6565b61153784848484611e0c565b50505050565b6000818152600260205260409020546060906001600160a01b03166115bc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096f565b60165460ff1661165857600e80546115d390612a95565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff90612a95565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b50505050509050919050565b6000611662611e3f565b9050600081511161168257604051806020016040528060008152506116b0565b8061168c84611e4e565b600d6040516020016116a0939291906127d7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116e15760405162461bcd60e51b815260040161096f90612981565b6016805460ff1916911515919091179055565b81611707600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461183a573360009081526017602052604090205460145461173c8383612a07565b111561178a5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161096f565b60008211801561179c57506013548211155b6117de5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161096f565b601254826117eb600b5490565b6117f59190612a07565b106118385760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161096f565b505b600a546001600160a01b031633146118645760405162461bcd60e51b815260040161096f90612981565b610aa58284611cce565b600a546001600160a01b031633146118985760405162461bcd60e51b815260040161096f90612981565b6001600160a01b0381166118fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b610b4581611c62565b60006001600160e01b031982166380ac58cd60e01b148061193757506001600160e01b03198216635b5e139f60e01b145b8061086257506301ffc9a760e01b6001600160e01b0319831614610862565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198b82610f0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096f565b6000611a4883610f0b565b9050806001600160a01b0316846001600160a01b03161480611a835750836001600160a01b0316611a78846108fa565b6001600160a01b0316145b80611ab357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ace82610f0b565b6001600160a01b031614611b325760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161096f565b6001600160a01b038216611b945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096f565b611b9f838383611f4c565b611baa600082611956565b6001600160a01b0383166000908152600360205260408120805460019290611bd3908490612a52565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c01908490612a07565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8060106000828254611cc69190612a52565b909155505050565b60005b81811015610aa557611ce7600b80546001019055565b336000908152601760205260408120805491611d0283612ad0565b9190505550611d1983611d14600b5490565b612004565b80611d2381612ad0565b915050611cd1565b8060116000828254611cc69190612a52565b816001600160a01b0316836001600160a01b03161415611d9f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e17848484611abb565b611e238484848461201e565b6115375760405162461bcd60e51b815260040161096f9061292f565b6060600c805461087790612a95565b606081611e725750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e9c5780611e8681612ad0565b9150611e959050600a83612a1f565b9150611e76565b60008167ffffffffffffffff811115611eb757611eb7612b57565b6040519080825280601f01601f191660200182016040528015611ee1576020820181803683370190505b5090505b8415611ab357611ef6600183612a52565b9150611f03600a86612aeb565b611f0e906030612a07565b60f81b818381518110611f2357611f23612b41565b60200101906001600160f81b031916908160001a905350611f45600a86612a1f565b9450611ee5565b6001600160a01b038316611fa757611fa281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fca565b816001600160a01b0316836001600160a01b031614611fca57611fca838261212b565b6001600160a01b038216611fe157610aa5816121c8565b826001600160a01b0316826001600160a01b031614610aa557610aa58282612277565b610b858282604051806020016040528060008152506122bb565b60006001600160a01b0384163b1561212057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206290339089908890889060040161289b565b602060405180830381600087803b15801561207c57600080fd5b505af19250505080156120ac575060408051601f3d908101601f191682019092526120a991810190612709565b60015b612106573d8080156120da576040519150601f19603f3d011682016040523d82523d6000602084013e6120df565b606091505b5080516120fe5760405162461bcd60e51b815260040161096f9061292f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab3565b506001949350505050565b6000600161213884610fb1565b6121429190612a52565b600083815260076020526040902054909150808214612195576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121da90600190612a52565b6000838152600960205260408120546008805493945090928490811061220257612202612b41565b90600052602060002001549050806008838154811061222357612223612b41565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225b5761225b612b2b565b6001900381819060005260206000200160009055905550505050565b600061228283610fb1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6122c583836122ee565b6122d2600084848461201e565b610aa55760405162461bcd60e51b815260040161096f9061292f565b6001600160a01b0382166123445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161096f565b6000818152600260205260409020546001600160a01b0316156123a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161096f565b6123b560008383611f4c565b6001600160a01b03821660009081526003602052604081208054600192906123de908490612a07565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461244890612a95565b90600052602060002090601f01602090048101928261246a57600085556124b0565b82601f1061248357805160ff19168380011785556124b0565b828001600101855582156124b0579182015b828111156124b0578251825591602001919060010190612495565b506124bc9291506124c0565b5090565b5b808211156124bc57600081556001016124c1565b600067ffffffffffffffff808411156124f0576124f0612b57565b604051601f8501601f19908116603f0116810190828211818310171561251857612518612b57565b8160405280935085815286868601111561253157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461256257600080fd5b919050565b8035801515811461256257600080fd5b60006020828403121561258957600080fd5b6116b08261254b565b600080604083850312156125a557600080fd5b6125ae8361254b565b91506125bc6020840161254b565b90509250929050565b6000806000606084860312156125da57600080fd5b6125e38461254b565b92506125f16020850161254b565b9150604084013590509250925092565b6000806000806080858703121561261757600080fd5b6126208561254b565b935061262e6020860161254b565b925060408501359150606085013567ffffffffffffffff81111561265157600080fd5b8501601f8101871361266257600080fd5b612671878235602084016124d5565b91505092959194509250565b6000806040838503121561269057600080fd5b6126998361254b565b91506125bc60208401612567565b600080604083850312156126ba57600080fd5b6126c38361254b565b946020939093013593505050565b6000602082840312156126e357600080fd5b6116b082612567565b6000602082840312156126fe57600080fd5b81356116b081612b6d565b60006020828403121561271b57600080fd5b81516116b081612b6d565b60006020828403121561273857600080fd5b813567ffffffffffffffff81111561274f57600080fd5b8201601f8101841361276057600080fd5b611ab3848235602084016124d5565b60006020828403121561278157600080fd5b5035919050565b6000806040838503121561279b57600080fd5b823591506125bc6020840161254b565b600081518084526127c3816020860160208601612a69565b601f01601f19169290920160200192915050565b6000845160206127ea8285838a01612a69565b8551918401916127fd8184848a01612a69565b8554920191600090600181811c908083168061281a57607f831692505b85831081141561283857634e487b7160e01b85526022600452602485fd5b80801561284c576001811461285d5761288a565b60ff1985168852838801955061288a565b60008b81526020902060005b858110156128825781548a820152908401908801612869565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ce908301846127ab565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612910578351835292840192918401916001016128f4565b50909695505050505050565b6020815260006116b060208301846127ab565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a1a57612a1a612aff565b500190565b600082612a2e57612a2e612b15565b500490565b6000816000190483118215151615612a4d57612a4d612aff565b500290565b600082821015612a6457612a64612aff565b500390565b60005b83811015612a84578181015183820152602001612a6c565b838111156115375750506000910152565b600181811c90821680612aa957607f821691505b60208210811415612aca57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ae457612ae4612aff565b5060010190565b600082612afa57612afa612b15565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4557600080fdfea2646970667358221220129bc237e8baf345b7ccbf798a1a6e35c9eb832cb9fdba5cc74eb157db837dda64736f6c63430008070033697066733a2f2f516d4e6a55425443577558594a68316b4a4b4c36594577623256446f54714e48787468794838704634734743516e2f

Deployed Bytecode

0x6080604052600436106102885760003560e01c806365f130971161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb0114610751578063e0a8085314610767578063e0ec7c3614610787578063e985e9c5146107b4578063efbd73f4146107fd578063f2fde38b1461081d57600080fd5b8063a22cb465146106a6578063a45ba8e7146106c6578063b071401b146106db578063b88d4fde146106fb578063ba7d2c761461071b578063c87b56dd1461073157600080fd5b80638da5cb5b116101135780638da5cb5b1461061e57806392829d741461063c57806394354fd01461065257806395d89b4114610668578063966784ec1461067d578063a0712d681461069357600080fd5b806365f13097146105805780636905b1841461059657806370a08231146105b6578063715018a6146105d65780637c928fe9146105eb5780637ec4a659146105fe57600080fd5b806323b872dd116101fe5780634fdd43cb116101b75780634fdd43cb146104dd57806351830227146104fd5780635503a0e8146105175780635c975abb1461052c57806362b99ad41461054b5780636352211e1461056057600080fd5b806323b872dd1461041a5780632f745c591461043a57806341cda2031461045a57806342842e0e14610470578063438b6300146104905780634f6ccce7146104bd57600080fd5b806313faede61161025057806313faede61461035357806316ba10e01461037257806316c38b3c1461039257806316d1f69d146103b257806318160ddd146103d857806318cae269146103ed57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630fdb1c101461033e575b600080fd5b34801561029957600080fd5b506102ad6102a83660046126ec565b61083d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610868565b6040516102b9919061291c565b3480156102f057600080fd5b506103046102ff36600461276f565b6108fa565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c6103373660046126a7565b610994565b005b34801561034a57600080fd5b5061033c610aaa565b34801561035f57600080fd5b50600f545b6040519081526020016102b9565b34801561037e57600080fd5b5061033c61038d366004612726565b610b48565b34801561039e57600080fd5b5061033c6103ad3660046126d1565b610b89565b3480156103be57600080fd5b5060155433600090815260186020526040902054146102ad565b3480156103e457600080fd5b50610364610bcd565b3480156103f957600080fd5b50610364610408366004612577565b60176020526000908152604090205481565b34801561042657600080fd5b5061033c6104353660046125c5565b610bdd565b34801561044657600080fd5b506103646104553660046126a7565b610c0e565b34801561046657600080fd5b5061036460105481565b34801561047c57600080fd5b5061033c61048b3660046125c5565b610ca4565b34801561049c57600080fd5b506104b06104ab366004612577565b610cbf565b6040516102b991906128d8565b3480156104c957600080fd5b506103646104d836600461276f565b610da0565b3480156104e957600080fd5b5061033c6104f8366004612726565b610e33565b34801561050957600080fd5b506016546102ad9060ff1681565b34801561052357600080fd5b506102d7610e70565b34801561053857600080fd5b506016546102ad90610100900460ff1681565b34801561055757600080fd5b506102d7610efe565b34801561056c57600080fd5b5061030461057b36600461276f565b610f0b565b34801561058c57600080fd5b5061036460115481565b3480156105a257600080fd5b5061033c6105b136600461276f565b610f82565b3480156105c257600080fd5b506103646105d1366004612577565b610fb1565b3480156105e257600080fd5b5061033c611038565b61033c6105f936600461276f565b61106e565b34801561060a57600080fd5b5061033c610619366004612726565b611263565b34801561062a57600080fd5b50600a546001600160a01b0316610304565b34801561064857600080fd5b50610364600f5481565b34801561065e57600080fd5b5061036460135481565b34801561067457600080fd5b506102d76112a0565b34801561068957600080fd5b5061036460155481565b61033c6106a136600461276f565b6112af565b3480156106b257600080fd5b5061033c6106c136600461267d565b6114be565b3480156106d257600080fd5b506102d76114c9565b3480156106e757600080fd5b5061033c6106f636600461276f565b6114d6565b34801561070757600080fd5b5061033c610716366004612601565b611505565b34801561072757600080fd5b5061036460145481565b34801561073d57600080fd5b506102d761074c36600461276f565b61153d565b34801561075d57600080fd5b5061036460125481565b34801561077357600080fd5b5061033c6107823660046126d1565b6116b7565b34801561079357600080fd5b506103646107a2366004612577565b60186020526000908152604090205481565b3480156107c057600080fd5b506102ad6107cf366004612592565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080957600080fd5b5061033c610818366004612788565b6116f4565b34801561082957600080fd5b5061033c610838366004612577565b61186e565b60006001600160e01b0319821663780e9d6360e01b1480610862575061086282611906565b92915050565b60606000805461087790612a95565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390612a95565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061099f82610f0b565b9050806001600160a01b0316836001600160a01b03161415610a0d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096f565b336001600160a01b0382161480610a295750610a2981336107cf565b610a9b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096f565b610aa58383611956565b505050565b600a546001600160a01b03163314610ad45760405162461bcd60e51b815260040161096f90612981565b6000610ae8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b32576040519150601f19603f3d011682016040523d82523d6000602084013e610b37565b606091505b5050905080610b4557600080fd5b50565b600a546001600160a01b03163314610b725760405162461bcd60e51b815260040161096f90612981565b8051610b8590600d90602084019061243c565b5050565b600a546001600160a01b03163314610bb35760405162461bcd60e51b815260040161096f90612981565b601680549115156101000261ff0019909216919091179055565b6000610bd8600b5490565b905090565b610be733826119c4565b610c035760405162461bcd60e51b815260040161096f906129b6565b610aa5838383611abb565b6000610c1983610fb1565b8210610c7b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161096f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa583838360405180602001604052806000815250611505565b60606000610ccc83610fb1565b905060008167ffffffffffffffff811115610ce957610ce9612b57565b604051908082528060200260200182016040528015610d12578160200160208202803683370190505b509050600160005b8381108015610d2b57506012548211155b15610d96576000610d3b83610f0b565b9050866001600160a01b0316816001600160a01b03161415610d835782848381518110610d6a57610d6a612b41565b602090810291909101015281610d7f81612ad0565b9250505b82610d8d81612ad0565b93505050610d1a565b5090949350505050565b6000610dab60085490565b8210610e0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161096f565b60088281548110610e2157610e21612b41565b90600052602060002001549050919050565b600a546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161096f90612981565b8051610b8590600e90602084019061243c565b600d8054610e7d90612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea990612a95565b8015610ef65780601f10610ecb57610100808354040283529160200191610ef6565b820191906000526020600020905b815481529060010190602001808311610ed957829003601f168201915b505050505081565b600c8054610e7d90612a95565b6000818152600260205260408120546001600160a01b0316806108625760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161096f565b600a546001600160a01b03163314610fac5760405162461bcd60e51b815260040161096f90612981565b600f55565b60006001600160a01b03821661101c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161096f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110625760405162461bcd60e51b815260040161096f90612981565b61106c6000611c62565b565b601654610100900460ff16156110bc5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161096f565b60155481111561110e5760405162461bcd60e51b815260206004820152601960248201527f46726565206d696e74206c696d69742065786365656465642100000000000000604482015260640161096f565b601554336000908152601860205260409020541061116e5760405162461bcd60e51b815260206004820152601a60248201527f416c726561647920636c61696d65642066726565206d696e7421000000000000604482015260640161096f565b6015543360009081526017602052604090205461118b9083612a07565b11156111ce5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161096f565b601254816111da610bcd565b6111e49190612a07565b111561122b5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161096f565b336000908152601860205260408120805483929061124a908490612a07565b90915550611259905081611cb4565b610b453382611cce565b600a546001600160a01b0316331461128d5760405162461bcd60e51b815260040161096f90612981565b8051610b8590600c90602084019061243c565b60606001805461087790612a95565b806112c2600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146113f557336000908152601760205260409020546014546112f78383612a07565b11156113455760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161096f565b60008211801561135757506013548211155b6113995760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161096f565b601254826113a6600b5490565b6113b09190612a07565b106113f35760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161096f565b505b601654610100900460ff16156114465760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161096f565b600a546001600160a01b031633146114ab5781600f546114669190612a33565b3410156114ab5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096f565b6114b482611d2b565b610b853383611cce565b610b85338383611d3d565b600e8054610e7d90612a95565b600a546001600160a01b031633146115005760405162461bcd60e51b815260040161096f90612981565b601355565b61150f33836119c4565b61152b5760405162461bcd60e51b815260040161096f906129b6565b61153784848484611e0c565b50505050565b6000818152600260205260409020546060906001600160a01b03166115bc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096f565b60165460ff1661165857600e80546115d390612a95565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff90612a95565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b50505050509050919050565b6000611662611e3f565b9050600081511161168257604051806020016040528060008152506116b0565b8061168c84611e4e565b600d6040516020016116a0939291906127d7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116e15760405162461bcd60e51b815260040161096f90612981565b6016805460ff1916911515919091179055565b81611707600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461183a573360009081526017602052604090205460145461173c8383612a07565b111561178a5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161096f565b60008211801561179c57506013548211155b6117de5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161096f565b601254826117eb600b5490565b6117f59190612a07565b106118385760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161096f565b505b600a546001600160a01b031633146118645760405162461bcd60e51b815260040161096f90612981565b610aa58284611cce565b600a546001600160a01b031633146118985760405162461bcd60e51b815260040161096f90612981565b6001600160a01b0381166118fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b610b4581611c62565b60006001600160e01b031982166380ac58cd60e01b148061193757506001600160e01b03198216635b5e139f60e01b145b8061086257506301ffc9a760e01b6001600160e01b0319831614610862565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198b82610f0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096f565b6000611a4883610f0b565b9050806001600160a01b0316846001600160a01b03161480611a835750836001600160a01b0316611a78846108fa565b6001600160a01b0316145b80611ab357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ace82610f0b565b6001600160a01b031614611b325760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161096f565b6001600160a01b038216611b945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096f565b611b9f838383611f4c565b611baa600082611956565b6001600160a01b0383166000908152600360205260408120805460019290611bd3908490612a52565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c01908490612a07565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8060106000828254611cc69190612a52565b909155505050565b60005b81811015610aa557611ce7600b80546001019055565b336000908152601760205260408120805491611d0283612ad0565b9190505550611d1983611d14600b5490565b612004565b80611d2381612ad0565b915050611cd1565b8060116000828254611cc69190612a52565b816001600160a01b0316836001600160a01b03161415611d9f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e17848484611abb565b611e238484848461201e565b6115375760405162461bcd60e51b815260040161096f9061292f565b6060600c805461087790612a95565b606081611e725750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e9c5780611e8681612ad0565b9150611e959050600a83612a1f565b9150611e76565b60008167ffffffffffffffff811115611eb757611eb7612b57565b6040519080825280601f01601f191660200182016040528015611ee1576020820181803683370190505b5090505b8415611ab357611ef6600183612a52565b9150611f03600a86612aeb565b611f0e906030612a07565b60f81b818381518110611f2357611f23612b41565b60200101906001600160f81b031916908160001a905350611f45600a86612a1f565b9450611ee5565b6001600160a01b038316611fa757611fa281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fca565b816001600160a01b0316836001600160a01b031614611fca57611fca838261212b565b6001600160a01b038216611fe157610aa5816121c8565b826001600160a01b0316826001600160a01b031614610aa557610aa58282612277565b610b858282604051806020016040528060008152506122bb565b60006001600160a01b0384163b1561212057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206290339089908890889060040161289b565b602060405180830381600087803b15801561207c57600080fd5b505af19250505080156120ac575060408051601f3d908101601f191682019092526120a991810190612709565b60015b612106573d8080156120da576040519150601f19603f3d011682016040523d82523d6000602084013e6120df565b606091505b5080516120fe5760405162461bcd60e51b815260040161096f9061292f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab3565b506001949350505050565b6000600161213884610fb1565b6121429190612a52565b600083815260076020526040902054909150808214612195576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121da90600190612a52565b6000838152600960205260408120546008805493945090928490811061220257612202612b41565b90600052602060002001549050806008838154811061222357612223612b41565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225b5761225b612b2b565b6001900381819060005260206000200160009055905550505050565b600061228283610fb1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6122c583836122ee565b6122d2600084848461201e565b610aa55760405162461bcd60e51b815260040161096f9061292f565b6001600160a01b0382166123445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161096f565b6000818152600260205260409020546001600160a01b0316156123a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161096f565b6123b560008383611f4c565b6001600160a01b03821660009081526003602052604081208054600192906123de908490612a07565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461244890612a95565b90600052602060002090601f01602090048101928261246a57600085556124b0565b82601f1061248357805160ff19168380011785556124b0565b828001600101855582156124b0579182015b828111156124b0578251825591602001919060010190612495565b506124bc9291506124c0565b5090565b5b808211156124bc57600081556001016124c1565b600067ffffffffffffffff808411156124f0576124f0612b57565b604051601f8501601f19908116603f0116810190828211818310171561251857612518612b57565b8160405280935085815286868601111561253157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461256257600080fd5b919050565b8035801515811461256257600080fd5b60006020828403121561258957600080fd5b6116b08261254b565b600080604083850312156125a557600080fd5b6125ae8361254b565b91506125bc6020840161254b565b90509250929050565b6000806000606084860312156125da57600080fd5b6125e38461254b565b92506125f16020850161254b565b9150604084013590509250925092565b6000806000806080858703121561261757600080fd5b6126208561254b565b935061262e6020860161254b565b925060408501359150606085013567ffffffffffffffff81111561265157600080fd5b8501601f8101871361266257600080fd5b612671878235602084016124d5565b91505092959194509250565b6000806040838503121561269057600080fd5b6126998361254b565b91506125bc60208401612567565b600080604083850312156126ba57600080fd5b6126c38361254b565b946020939093013593505050565b6000602082840312156126e357600080fd5b6116b082612567565b6000602082840312156126fe57600080fd5b81356116b081612b6d565b60006020828403121561271b57600080fd5b81516116b081612b6d565b60006020828403121561273857600080fd5b813567ffffffffffffffff81111561274f57600080fd5b8201601f8101841361276057600080fd5b611ab3848235602084016124d5565b60006020828403121561278157600080fd5b5035919050565b6000806040838503121561279b57600080fd5b823591506125bc6020840161254b565b600081518084526127c3816020860160208601612a69565b601f01601f19169290920160200192915050565b6000845160206127ea8285838a01612a69565b8551918401916127fd8184848a01612a69565b8554920191600090600181811c908083168061281a57607f831692505b85831081141561283857634e487b7160e01b85526022600452602485fd5b80801561284c576001811461285d5761288a565b60ff1985168852838801955061288a565b60008b81526020902060005b858110156128825781548a820152908401908801612869565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ce908301846127ab565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612910578351835292840192918401916001016128f4565b50909695505050505050565b6020815260006116b060208301846127ab565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a1a57612a1a612aff565b500190565b600082612a2e57612a2e612b15565b500490565b6000816000190483118215151615612a4d57612a4d612aff565b500290565b600082821015612a6457612a64612aff565b500390565b60005b83811015612a84578181015183820152602001612a6c565b838111156115375750506000910152565b600181811c90821680612aa957607f821691505b60208210811415612aca57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ae457612ae4612aff565b5060010190565b600082612afa57612afa612b15565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4557600080fdfea2646970667358221220129bc237e8baf345b7ccbf798a1a6e35c9eb832cb9fdba5cc74eb157db837dda64736f6c63430008070033

Deployed Bytecode Sourcemap

47096:6134:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40850:224;;;;;;;;;;-1:-1:-1;40850:224:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;40850:224:0;;;;;;;;27670:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29229:221::-;;;;;;;;;;-1:-1:-1;29229:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;29229:221:0;6563:203:1;28752:411:0;;;;;;;;;;-1:-1:-1;28752:411:0;;;;;:::i;:::-;;:::i;:::-;;53080:147;;;;;;;;;;;;;:::i;52718:85::-;;;;;;;;;;-1:-1:-1;52781:14:0;;52718:85;;;19173:25:1;;;19161:2;19146:18;52718:85:0;19027:177:1;52476:106:0;;;;;;;;;;-1:-1:-1;52476:106:0;;;;;:::i;:::-;;:::i;52610:83::-;;;;;;;;;;-1:-1:-1;52610:83:0;;;;;:::i;:::-;;:::i;51683:130::-;;;;;;;;;;-1:-1:-1;51786:19:0;;51771:10;51731:4;51755:27;;;:15;:27;;;;;;:50;51683:130;;50147:103;;;;;;;;;;;;;:::i;47844:55::-;;;;;;;;;;-1:-1:-1;47844:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;29979:339;;;;;;;;;;-1:-1:-1;29979:339:0;;;;;:::i;:::-;;:::i;41158:256::-;;;;;;;;;;-1:-1:-1;41158:256:0;;;;;:::i;:::-;;:::i;47489:34::-;;;;;;;;;;;;;;;;30389:185;;;;;;;;;;-1:-1:-1;30389:185:0;;;;;:::i;:::-;;:::i;50498:696::-;;;;;;;;;;-1:-1:-1;50498:696:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41680:233::-;;;;;;;;;;-1:-1:-1;41680:233:0;;;;;:::i;:::-;;:::i;52171:138::-;;;;;;;;;;-1:-1:-1;52171:138:0;;;;;:::i;:::-;;:::i;47776:27::-;;;;;;;;;;-1:-1:-1;47776:27:0;;;;;;;;47358:33;;;;;;;;;;;;;:::i;47810:25::-;;;;;;;;;;-1:-1:-1;47810:25:0;;;;;;;;;;;47269:82;;;;;;;;;;;;;:::i;27364:239::-;;;;;;;;;;-1:-1:-1;27364:239:0;;;;;:::i;:::-;;:::i;47530:36::-;;;;;;;;;;;;;;;;52029:100;;;;;;;;;;-1:-1:-1;52029:100:0;;;;;:::i;:::-;;:::i;27094:208::-;;;;;;;;;;-1:-1:-1;27094:208:0;;;;;:::i;:::-;;:::i;6266:103::-;;;;;;;;;;;;;:::i;48989:629::-;;;;;;:::i;:::-;;:::i;52340:106::-;;;;;;;;;;-1:-1:-1;52340:106:0;;;;;:::i;:::-;;:::i;5615:87::-;;;;;;;;;;-1:-1:-1;5688:6:0;;-1:-1:-1;;;;;5688:6:0;5615:87;;47438:42;;;;;;;;;;;;;;;;47638:38;;;;;;;;;;;;;;;;27839:104;;;;;;;;;;;;;:::i;47729:38::-;;;;;;;;;;;;;;;;48590:373;;;;;;:::i;:::-;;:::i;29522:155::-;;;;;;;;;;-1:-1:-1;29522:155:0;;;;;:::i;:::-;;:::i;47398:31::-;;;;;;;;;;;;;:::i;51856:137::-;;;;;;;;;;-1:-1:-1;51856:137:0;;;;;:::i;:::-;;:::i;30645:328::-;;;;;;;;;;-1:-1:-1;30645:328:0;;;;;:::i;:::-;;:::i;47683:39::-;;;;;;;;;;;;;;;;51220:455;;;;;;;;;;-1:-1:-1;51220:455:0;;;;;:::i;:::-;;:::i;47573:58::-;;;;;;;;;;;;;;;;52833:87;;;;;;;;;;-1:-1:-1;52833:87:0;;;;;:::i;:::-;;:::i;47906:50::-;;;;;;;;;;-1:-1:-1;47906:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;29748:164;;;;;;;;;;-1:-1:-1;29748:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29869:25:0;;;29845:4;29869:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29748:164;49653:162;;;;;;;;;;-1:-1:-1;49653:162:0;;;;;:::i;:::-;;:::i;6524:201::-;;;;;;;;;;-1:-1:-1;6524:201:0;;;;;:::i;:::-;;:::i;40850:224::-;40952:4;-1:-1:-1;;;;;;40976:50:0;;-1:-1:-1;;;40976:50:0;;:90;;;41030:36;41054:11;41030:23;:36::i;:::-;40969:97;40850:224;-1:-1:-1;;40850:224:0:o;27670:100::-;27724:13;27757:5;27750:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27670:100;:::o;29229:221::-;29305:7;32572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32572:16:0;29325:73;;;;-1:-1:-1;;;29325:73:0;;15050:2:1;29325:73:0;;;15032:21:1;15089:2;15069:18;;;15062:30;15128:34;15108:18;;;15101:62;-1:-1:-1;;;15179:18:1;;;15172:42;15231:19;;29325:73:0;;;;;;;;;-1:-1:-1;29418:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29418:24:0;;29229:221::o;28752:411::-;28833:13;28849:23;28864:7;28849:14;:23::i;:::-;28833:39;;28897:5;-1:-1:-1;;;;;28891:11:0;:2;-1:-1:-1;;;;;28891:11:0;;;28883:57;;;;-1:-1:-1;;;28883:57:0;;16945:2:1;28883:57:0;;;16927:21:1;16984:2;16964:18;;;16957:30;17023:34;17003:18;;;16996:62;-1:-1:-1;;;17074:18:1;;;17067:31;17115:19;;28883:57:0;16743:397:1;28883:57:0;4419:10;-1:-1:-1;;;;;28975:21:0;;;;:62;;-1:-1:-1;29000:37:0;29017:5;4419:10;29748:164;:::i;29000:37::-;28953:168;;;;-1:-1:-1;;;28953:168:0;;12738:2:1;28953:168:0;;;12720:21:1;12777:2;12757:18;;;12750:30;12816:34;12796:18;;;12789:62;12887:26;12867:18;;;12860:54;12931:19;;28953:168:0;12536:420:1;28953:168:0;29134:21;29143:2;29147:7;29134:8;:21::i;:::-;28822:341;28752:411;;:::o;53080:147::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;53129:7:::1;53150;5688:6:::0;;-1:-1:-1;;;;;5688:6:0;;5615:87;53150:7:::1;-1:-1:-1::0;;;;;53142:21:0::1;53171;53142:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53128:69;;;53216:2;53208:11;;;::::0;::::1;;53117:110;53080:147::o:0;52476:106::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;52552:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52476:106:::0;:::o;52610:83::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;52670:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;52670:15:0;;::::1;::::0;;;::::1;::::0;;52610:83::o;50147:103::-;50199:7;50226:16;:6;1035:14;;943:114;50226:16;50219:23;;50147:103;:::o;29979:339::-;30174:41;4419:10;30207:7;30174:18;:41::i;:::-;30166:103;;;;-1:-1:-1;;;30166:103:0;;;;;;;:::i;:::-;30282:28;30292:4;30298:2;30302:7;30282:9;:28::i;41158:256::-;41255:7;41291:23;41308:5;41291:16;:23::i;:::-;41283:5;:31;41275:87;;;;-1:-1:-1;;;41275:87:0;;8867:2:1;41275:87:0;;;8849:21:1;8906:2;8886:18;;;8879:30;8945:34;8925:18;;;8918:62;-1:-1:-1;;;8996:18:1;;;8989:41;9047:19;;41275:87:0;8665:407:1;41275:87:0;-1:-1:-1;;;;;;41380:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41158:256::o;30389:185::-;30527:39;30544:4;30550:2;30554:7;30527:39;;;;;;;;;;;;:16;:39::i;50498:696::-;50558:16;50587:23;50613:17;50623:6;50613:9;:17::i;:::-;50587:43;;50641:30;50688:15;50674:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50674:30:0;-1:-1:-1;50641:63:0;-1:-1:-1;50740:1:0;50715:22;50792:362;50817:15;50799;:33;:64;;;;;50854:9;;50836:14;:27;;50799:64;50792:362;;;50880:25;50908:23;50916:14;50908:7;:23::i;:::-;50880:51;;50972:6;-1:-1:-1;;;;;50951:27:0;:17;-1:-1:-1;;;;;50951:27:0;;50948:150;;;51032:14;50999:13;51013:15;50999:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51065:17;;;;:::i;:::-;;;;50948:150;51126:16;;;;:::i;:::-;;;;50865:289;50792:362;;;-1:-1:-1;51173:13:0;;50498:696;-1:-1:-1;;;;50498:696:0:o;41680:233::-;41755:7;41791:30;41578:10;:17;;41490:113;41791:30;41783:5;:38;41775:95;;;;-1:-1:-1;;;41775:95:0;;18113:2:1;41775:95:0;;;18095:21:1;18152:2;18132:18;;;18125:30;18191:34;18171:18;;;18164:62;-1:-1:-1;;;18242:18:1;;;18235:42;18294:19;;41775:95:0;17911:408:1;41775:95:0;41888:10;41899:5;41888:17;;;;;;;;:::i;:::-;;;;;;;;;41881:24;;41680:233;;;:::o;52171:138::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;52263:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;47358:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47269:82::-;;;;;;;:::i;27364:239::-;27436:7;27472:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27472:16:0;27507:19;27499:73;;;;-1:-1:-1;;;27499:73:0;;13574:2:1;27499:73:0;;;13556:21:1;13613:2;13593:18;;;13586:30;13652:34;13632:18;;;13625:62;-1:-1:-1;;;13703:18:1;;;13696:39;13752:19;;27499:73:0;13372:405:1;52029:100:0;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;52099:14:::1;:22:::0;52029:100::o;27094:208::-;27166:7;-1:-1:-1;;;;;27194:19:0;;27186:74;;;;-1:-1:-1;;;27186:74:0;;13163:2:1;27186:74:0;;;13145:21:1;13202:2;13182:18;;;13175:30;13241:34;13221:18;;;13214:62;-1:-1:-1;;;13292:18:1;;;13285:40;13342:19;;27186:74:0;12961:406:1;27186:74:0;-1:-1:-1;;;;;;27278:16:0;;;;;:9;:16;;;;;;;27094:208::o;6266:103::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;6331:30:::1;6358:1;6331:18;:30::i;:::-;6266:103::o:0;48989:629::-;49065:6;;;;;;;49064:7;49056:39;;;;-1:-1:-1;;;49056:39:0;;16597:2:1;49056:39:0;;;16579:21:1;16636:2;16616:18;;;16609:30;-1:-1:-1;;;16655:18:1;;;16648:49;16714:18;;49056:39:0;16395:343:1;49056:39:0;49129:19;;49114:11;:34;;49106:72;;;;-1:-1:-1;;;49106:72:0;;14335:2:1;49106:72:0;;;14317:21:1;14374:2;14354:18;;;14347:30;14413:27;14393:18;;;14386:55;14458:18;;49106:72:0;14133:349:1;49106:72:0;49227:19;;49213:10;49197:27;;;;:15;:27;;;;;;:49;49189:88;;;;-1:-1:-1;;;49189:88:0;;18526:2:1;49189:88:0;;;18508:21:1;18565:2;18545:18;;;18538:30;18604:28;18584:18;;;18577:56;18650:18;;49189:88:0;18324:350:1;49189:88:0;49346:19;;49331:10;49310:32;;;;:20;:32;;;;;;49296:46;;:11;:46;:::i;:::-;:69;;49288:100;;;;-1:-1:-1;;;49288:100:0;;11978:2:1;49288:100:0;;;11960:21:1;12017:2;11997:18;;;11990:30;-1:-1:-1;;;12036:18:1;;;12029:48;12094:18;;49288:100:0;11776:342:1;49288:100:0;49438:9;;49423:11;49407:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49399:75;;;;-1:-1:-1;;;49399:75:0;;13984:2:1;49399:75:0;;;13966:21:1;14023:2;14003:18;;;13996:30;-1:-1:-1;;;14042:18:1;;;14035:52;14104:18;;49399:75:0;13782:346:1;49399:75:0;49501:10;49485:27;;;;:15;:27;;;;;:42;;49516:11;;49485:27;:42;;49516:11;;49485:42;:::i;:::-;;;;-1:-1:-1;49538:27:0;;-1:-1:-1;49553:11:0;49538:14;:27::i;:::-;49576:34;49586:10;49598:11;49576:9;:34::i;52340:106::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;52416:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27839:104::-:0;27895:13;27928:7;27921:14;;;;;:::i;48590:373::-;48655:11;48159:7;5688:6;;-1:-1:-1;;;;;5688:6:0;;5615:87;48159:7;-1:-1:-1;;;;;48145:21:0;:10;-1:-1:-1;;;;;48145:21:0;;48141:409;;48231:10;48183:24;48210:32;;;:20;:32;;;;;;48299:18;;48265:30;48284:11;48210:32;48265:30;:::i;:::-;:52;;48257:93;;;;-1:-1:-1;;;48257:93:0;;16240:2:1;48257:93:0;;;16222:21:1;16279:2;16259:18;;;16252:30;16318;16298:18;;;16291:58;16366:18;;48257:93:0;16038:352:1;48257:93:0;48387:1;48373:11;:15;:52;;;;;48407:18;;48392:11;:33;;48373:52;48365:84;;;;-1:-1:-1;;;48365:84:0;;17765:2:1;48365:84:0;;;17747:21:1;17804:2;17784:18;;;17777:30;-1:-1:-1;;;17823:18:1;;;17816:49;17882:18;;48365:84:0;17563:343:1;48365:84:0;48505:9;;48491:11;48472:16;:6;1035:14;;943:114;48472:16;:30;;;;:::i;:::-;:42;48464:74;;;;-1:-1:-1;;;48464:74:0;;8519:2:1;48464:74:0;;;8501:21:1;8558:2;8538:18;;;8531:30;-1:-1:-1;;;8577:18:1;;;8570:49;8636:18;;48464:74:0;8317:343:1;48464:74:0;48168:382;48141:409;48688:6:::1;::::0;::::1;::::0;::::1;;;48687:7;48679:42;;;::::0;-1:-1:-1;;;48679:42:0;;9698:2:1;48679:42:0::1;::::0;::::1;9680:21:1::0;9737:2;9717:18;;;9710:30;-1:-1:-1;;;9756:18:1;;;9749:52;9818:18;;48679:42:0::1;9496:346:1::0;48679:42:0::1;5688:6:::0;;-1:-1:-1;;;;;5688:6:0;48746:10:::1;:21;48742:127;;48822:11;48805:14;;:28;;;;:::i;:::-;48792:9;:41;;48784:73;;;::::0;-1:-1:-1;;;48784:73:0;;18881:2:1;48784:73:0::1;::::0;::::1;18863:21:1::0;18920:2;18900:18;;;18893:30;-1:-1:-1;;;18939:18:1;;;18932:49;18998:18;;48784:73:0::1;18679:343:1::0;48784:73:0::1;48879:29;48896:11;48879:16;:29::i;:::-;48919:34;48929:10;48941:11;48919:9;:34::i;29522:155::-:0;29617:52;4419:10;29650:8;29660;29617:18;:52::i;47398:31::-;;;;;;;:::i;51856:137::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;51945:18:::1;:40:::0;51856:137::o;30645:328::-;30820:41;4419:10;30853:7;30820:18;:41::i;:::-;30812:103;;;;-1:-1:-1;;;30812:103:0;;;;;;;:::i;:::-;30926:39;30940:4;30946:2;30950:7;30959:5;30926:13;:39::i;:::-;30645:328;;;;:::o;51220:455::-;32548:4;32572:16;;;:7;:16;;;;;;51294:13;;-1:-1:-1;;;;;32572:16:0;51320:77;;;;-1:-1:-1;;;51320:77:0;;15824:2:1;51320:77:0;;;15806:21:1;15863:2;15843:18;;;15836:30;15902:34;15882:18;;;15875:62;-1:-1:-1;;;15953:18:1;;;15946:45;16008:19;;51320:77:0;15622:411:1;51320:77:0;51414:8;;;;51410:74;;51455:17;51448:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51220:455;;;:::o;51410:74::-;51496:28;51527:10;:8;:10::i;:::-;51496:41;;51586:1;51561:14;51555:28;:32;:112;;;;;;;;;;;;;;;;;51614:14;51630:19;:8;:17;:19::i;:::-;51651:9;51597:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51555:112;51548:119;51220:455;-1:-1:-1;;;51220:455:0:o;52833:87::-;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;52895:8:::1;:17:::0;;-1:-1:-1;;52895:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52833:87::o;49653:162::-;49740:11;48159:7;5688:6;;-1:-1:-1;;;;;5688:6:0;;5615:87;48159:7;-1:-1:-1;;;;;48145:21:0;:10;-1:-1:-1;;;;;48145:21:0;;48141:409;;48231:10;48183:24;48210:32;;;:20;:32;;;;;;48299:18;;48265:30;48284:11;48210:32;48265:30;:::i;:::-;:52;;48257:93;;;;-1:-1:-1;;;48257:93:0;;16240:2:1;48257:93:0;;;16222:21:1;16279:2;16259:18;;;16252:30;16318;16298:18;;;16291:58;16366:18;;48257:93:0;16038:352:1;48257:93:0;48387:1;48373:11;:15;:52;;;;;48407:18;;48392:11;:33;;48373:52;48365:84;;;;-1:-1:-1;;;48365:84:0;;17765:2:1;48365:84:0;;;17747:21:1;17804:2;17784:18;;;17777:30;-1:-1:-1;;;17823:18:1;;;17816:49;17882:18;;48365:84:0;17563:343:1;48365:84:0;48505:9;;48491:11;48472:16;:6;1035:14;;943:114;48472:16;:30;;;;:::i;:::-;:42;48464:74;;;;-1:-1:-1;;;48464:74:0;;8519:2:1;48464:74:0;;;8501:21:1;8558:2;8538:18;;;8531:30;-1:-1:-1;;;8577:18:1;;;8570:49;8636:18;;48464:74:0;8317:343:1;48464:74:0;48168:382;48141:409;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23:::1;5827:68;;;;-1:-1:-1::0;;;5827:68:0::1;;;;;;;:::i;:::-;49774:33:::2;49784:9;49795:11;49774:9;:33::i;6524:201::-:0;5688:6;;-1:-1:-1;;;;;5688:6:0;4419:10;5835:23;5827:68;;;;-1:-1:-1;;;5827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6613:22:0;::::1;6605:73;;;::::0;-1:-1:-1;;;6605:73:0;;10049:2:1;6605:73:0::1;::::0;::::1;10031:21:1::0;10088:2;10068:18;;;10061:30;10127:34;10107:18;;;10100:62;-1:-1:-1;;;10178:18:1;;;10171:36;10224:19;;6605:73:0::1;9847:402:1::0;6605:73:0::1;6689:28;6708:8;6689:18;:28::i;26725:305::-:0;26827:4;-1:-1:-1;;;;;;26864:40:0;;-1:-1:-1;;;26864:40:0;;:105;;-1:-1:-1;;;;;;;26921:48:0;;-1:-1:-1;;;26921:48:0;26864:105;:158;;;-1:-1:-1;;;;;;;;;;18508:40:0;;;26986:36;18399:157;36629:174;36704:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36704:29:0;-1:-1:-1;;;;;36704:29:0;;;;;;;;:24;;36758:23;36704:24;36758:14;:23::i;:::-;-1:-1:-1;;;;;36749:46:0;;;;;;;;;;;36629:174;;:::o;32777:348::-;32870:4;32572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32572:16:0;32887:73;;;;-1:-1:-1;;;32887:73:0;;12325:2:1;32887:73:0;;;12307:21:1;12364:2;12344:18;;;12337:30;12403:34;12383:18;;;12376:62;-1:-1:-1;;;12454:18:1;;;12447:42;12506:19;;32887:73:0;12123:408:1;32887:73:0;32971:13;32987:23;33002:7;32987:14;:23::i;:::-;32971:39;;33040:5;-1:-1:-1;;;;;33029:16:0;:7;-1:-1:-1;;;;;33029:16:0;;:51;;;;33073:7;-1:-1:-1;;;;;33049:31:0;:20;33061:7;33049:11;:20::i;:::-;-1:-1:-1;;;;;33049:31:0;;33029:51;:87;;;-1:-1:-1;;;;;;29869:25:0;;;29845:4;29869:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33084:32;33021:96;32777:348;-1:-1:-1;;;;32777:348:0:o;35886:625::-;36045:4;-1:-1:-1;;;;;36018:31:0;:23;36033:7;36018:14;:23::i;:::-;-1:-1:-1;;;;;36018:31:0;;36010:81;;;;-1:-1:-1;;;36010:81:0;;10456:2:1;36010:81:0;;;10438:21:1;10495:2;10475:18;;;10468:30;10534:34;10514:18;;;10507:62;-1:-1:-1;;;10585:18:1;;;10578:35;10630:19;;36010:81:0;10254:401:1;36010:81:0;-1:-1:-1;;;;;36110:16:0;;36102:65;;;;-1:-1:-1;;;36102:65:0;;11219:2:1;36102:65:0;;;11201:21:1;11258:2;11238:18;;;11231:30;11297:34;11277:18;;;11270:62;-1:-1:-1;;;11348:18:1;;;11341:34;11392:19;;36102:65:0;11017:400:1;36102:65:0;36180:39;36201:4;36207:2;36211:7;36180:20;:39::i;:::-;36284:29;36301:1;36305:7;36284:8;:29::i;:::-;-1:-1:-1;;;;;36326:15:0;;;;;;:9;:15;;;;;:20;;36345:1;;36326:15;:20;;36345:1;;36326:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36357:13:0;;;;;;:9;:13;;;;;:18;;36374:1;;36357:13;:18;;36374:1;;36357:18;:::i;:::-;;;;-1:-1:-1;;36386:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36386:21:0;-1:-1:-1;;;;;36386:21:0;;;;;;;;;36425:27;;36386:16;;36425:27;;;;;;;28822:341;28752:411;;:::o;6885:191::-;6978:6;;;-1:-1:-1;;;;;6995:17:0;;;-1:-1:-1;;;;;;6995:17:0;;;;;;;7028:40;;6978:6;;;6995:17;6978:6;;7028:40;;6959:16;;7028:40;6948:128;6885:191;:::o;50258:97::-;50338:9;50321:13;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;50258:97:0:o;49843:275::-;49927:9;49922:189;49946:11;49942:1;:15;49922:189;;;49979:18;:6;1154:19;;1172:1;1154:19;;;1065:127;49979:18;50033:10;50012:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;50061:38;50071:9;50082:16;:6;1035:14;;943:114;50082:16;50061:9;:38::i;:::-;49959:3;;;;:::i;:::-;;;;49922:189;;50363:101;50447:9;50428:15;;:28;;;;;;;:::i;36945:315::-;37100:8;-1:-1:-1;;;;;37091:17:0;:5;-1:-1:-1;;;;;37091:17:0;;;37083:55;;;;-1:-1:-1;;;37083:55:0;;11624:2:1;37083:55:0;;;11606:21:1;11663:2;11643:18;;;11636:30;11702:27;11682:18;;;11675:55;11747:18;;37083:55:0;11422:349:1;37083:55:0;-1:-1:-1;;;;;37149:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37149:46:0;;;;;;;;;;37211:41;;8041::1;;;37211::0;;8014:18:1;37211:41:0;;;;;;;36945:315;;;:::o;31855:::-;32012:28;32022:4;32028:2;32032:7;32012:9;:28::i;:::-;32059:48;32082:4;32088:2;32092:7;32101:5;32059:22;:48::i;:::-;32051:111;;;;-1:-1:-1;;;32051:111:0;;;;;;;:::i;52945:110::-;53005:13;53038:9;53031:16;;;;;:::i;1901:723::-;1957:13;2178:10;2174:53;;-1:-1:-1;;2205:10:0;;;;;;;;;;;;-1:-1:-1;;;2205:10:0;;;;;1901:723::o;2174:53::-;2252:5;2237:12;2293:78;2300:9;;2293:78;;2326:8;;;;:::i;:::-;;-1:-1:-1;2349:10:0;;-1:-1:-1;2357:2:0;2349:10;;:::i;:::-;;;2293:78;;;2381:19;2413:6;2403:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2403:17:0;;2381:39;;2431:154;2438:10;;2431:154;;2465:11;2475:1;2465:11;;:::i;:::-;;-1:-1:-1;2534:10:0;2542:2;2534:5;:10;:::i;:::-;2521:24;;:2;:24;:::i;:::-;2508:39;;2491:6;2498;2491:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2491:56:0;;;;;;;;-1:-1:-1;2562:11:0;2571:2;2562:11;;:::i;:::-;;;2431:154;;42526:589;-1:-1:-1;;;;;42732:18:0;;42728:187;;42767:40;42799:7;43942:10;:17;;43915:24;;;;:15;:24;;;;;:44;;;43970:24;;;;;;;;;;;;43838:164;42767:40;42728:187;;;42837:2;-1:-1:-1;;;;;42829:10:0;:4;-1:-1:-1;;;;;42829:10:0;;42825:90;;42856:47;42889:4;42895:7;42856:32;:47::i;:::-;-1:-1:-1;;;;;42929:16:0;;42925:183;;42962:45;42999:7;42962:36;:45::i;42925:183::-;43035:4;-1:-1:-1;;;;;43029:10:0;:2;-1:-1:-1;;;;;43029:10:0;;43025:83;;43056:40;43084:2;43088:7;43056:27;:40::i;33467:110::-;33543:26;33553:2;33557:7;33543:26;;;;;;;;;;;;:9;:26::i;37825:799::-;37980:4;-1:-1:-1;;;;;38001:13:0;;8611:19;:23;37997:620;;38037:72;;-1:-1:-1;;;38037:72:0;;-1:-1:-1;;;;;38037:36:0;;;;;:72;;4419:10;;38088:4;;38094:7;;38103:5;;38037:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38037:72:0;;;;;;;;-1:-1:-1;;38037:72:0;;;;;;;;;;;;:::i;:::-;;;38033:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38279:13:0;;38275:272;;38322:60;;-1:-1:-1;;;38322:60:0;;;;;;;:::i;38275:272::-;38497:6;38491:13;38482:6;38478:2;38474:15;38467:38;38033:529;-1:-1:-1;;;;;;38160:51:0;-1:-1:-1;;;38160:51:0;;-1:-1:-1;38153:58:0;;37997:620;-1:-1:-1;38601:4:0;37825:799;;;;;;:::o;44629:988::-;44895:22;44945:1;44920:22;44937:4;44920:16;:22::i;:::-;:26;;;;:::i;:::-;44957:18;44978:26;;;:17;:26;;;;;;44895:51;;-1:-1:-1;45111:28:0;;;45107:328;;-1:-1:-1;;;;;45178:18:0;;45156:19;45178:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45229:30;;;;;;:44;;;45346:30;;:17;:30;;;;;:43;;;45107:328;-1:-1:-1;45531:26:0;;;;:17;:26;;;;;;;;45524:33;;;-1:-1:-1;;;;;45575:18:0;;;;;:12;:18;;;;;:34;;;;;;;45568:41;44629:988::o;45912:1079::-;46190:10;:17;46165:22;;46190:21;;46210:1;;46190:21;:::i;:::-;46222:18;46243:24;;;:15;:24;;;;;;46616:10;:26;;46165:46;;-1:-1:-1;46243:24:0;;46165:46;;46616:26;;;;;;:::i;:::-;;;;;;;;;46594:48;;46680:11;46655:10;46666;46655:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46760:28;;;:15;:28;;;;;;;:41;;;46932:24;;;;;46925:31;46967:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45983:1008;;;45912:1079;:::o;43416:221::-;43501:14;43518:20;43535:2;43518:16;:20::i;:::-;-1:-1:-1;;;;;43549:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43594:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43416:221:0:o;33804:321::-;33934:18;33940:2;33944:7;33934:5;:18::i;:::-;33985:54;34016:1;34020:2;34024:7;34033:5;33985:22;:54::i;:::-;33963:154;;;;-1:-1:-1;;;33963:154:0;;;;;;;:::i;34461:439::-;-1:-1:-1;;;;;34541:16:0;;34533:61;;;;-1:-1:-1;;;34533:61:0;;14689:2:1;34533:61:0;;;14671:21:1;;;14708:18;;;14701:30;14767:34;14747:18;;;14740:62;14819:18;;34533:61:0;14487:356:1;34533:61:0;32548:4;32572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32572:16:0;:30;34605:58;;;;-1:-1:-1;;;34605:58:0;;10862:2:1;34605:58:0;;;10844:21:1;10901:2;10881:18;;;10874:30;10940;10920:18;;;10913:58;10988:18;;34605:58:0;10660:352:1;34605:58:0;34676:45;34705:1;34709:2;34713:7;34676:20;:45::i;:::-;-1:-1:-1;;;;;34734:13:0;;;;;;:9;:13;;;;;:18;;34751:1;;34734:13;:18;;34751:1;;34734:18;:::i;:::-;;;;-1:-1:-1;;34763:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34763:21:0;-1:-1:-1;;;;;34763:21:0;;;;;;;;34802:33;;34763:16;;;34802:33;;34763:16;;34802:33;52552:22:::1;52476:106:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;19282:1;19275:14;;;19319:4;19306:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;9077:414::-;9279:2;9261:21;;;9318:2;9298:18;;;9291:30;9357:34;9352:2;9337:18;;9330:62;-1:-1:-1;;;9423:2:1;9408:18;;9401:48;9481:3;9466:19;;9077:414::o;15261:356::-;15463:2;15445:21;;;15482:18;;;15475:30;15541:34;15536:2;15521:18;;15514:62;15608:2;15593:18;;15261:356::o;17145:413::-;17347:2;17329:21;;;17386:2;17366:18;;;17359:30;17425:34;17420:2;17405:18;;17398:62;-1:-1:-1;;;17491:2:1;17476:18;;17469:47;17548:3;17533:19;;17145:413::o;19335:128::-;19375:3;19406:1;19402:6;19399:1;19396:13;19393:39;;;19412:18;;:::i;:::-;-1:-1:-1;19448:9:1;;19335:128::o;19468:120::-;19508:1;19534;19524:35;;19539:18;;:::i;:::-;-1:-1:-1;19573:9:1;;19468:120::o;19593:168::-;19633:7;19699:1;19695;19691:6;19687:14;19684:1;19681:21;19676:1;19669:9;19662:17;19658:45;19655:71;;;19706:18;;:::i;:::-;-1:-1:-1;19746:9:1;;19593:168::o;19766:125::-;19806:4;19834:1;19831;19828:8;19825:34;;;19839:18;;:::i;:::-;-1:-1:-1;19876:9:1;;19766:125::o;19896:258::-;19968:1;19978:113;19992:6;19989:1;19986:13;19978:113;;;20068:11;;;20062:18;20049:11;;;20042:39;20014:2;20007:10;19978:113;;;20109:6;20106:1;20103:13;20100:48;;;-1:-1:-1;;20144:1:1;20126:16;;20119:27;19896:258::o;20159:380::-;20238:1;20234:12;;;;20281;;;20302:61;;20356:4;20348:6;20344:17;20334:27;;20302:61;20409:2;20401:6;20398:14;20378:18;20375:38;20372:161;;;20455:10;20450:3;20446:20;20443:1;20436:31;20490:4;20487:1;20480:15;20518:4;20515:1;20508:15;20372:161;;20159:380;;;:::o;20544:135::-;20583:3;-1:-1:-1;;20604:17:1;;20601:43;;;20624:18;;:::i;:::-;-1:-1:-1;20671:1:1;20660:13;;20544:135::o;20684:112::-;20716:1;20742;20732:35;;20747:18;;:::i;:::-;-1:-1:-1;20781:9:1;;20684:112::o;20801:127::-;20862:10;20857:3;20853:20;20850:1;20843:31;20893:4;20890:1;20883:15;20917:4;20914:1;20907:15;20933:127;20994:10;20989:3;20985:20;20982:1;20975:31;21025:4;21022:1;21015:15;21049:4;21046:1;21039:15;21065:127;21126:10;21121:3;21117:20;21114:1;21107:31;21157:4;21154:1;21147:15;21181:4;21178:1;21171:15;21197:127;21258:10;21253:3;21249:20;21246:1;21239:31;21289:4;21286:1;21279:15;21313:4;21310:1;21303:15;21329:127;21390:10;21385:3;21381:20;21378:1;21371:31;21421:4;21418:1;21411:15;21445:4;21442:1;21435:15;21461:131;-1:-1:-1;;;;;;21535:32:1;;21525:43;;21515:71;;21582:1;21579;21572:12

Swarm Source

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