Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,184 NSNUG
Holders
1,165
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NSNUGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NounSNUG
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-24 */ //SPDX-License-Identifier: UNLISENCED pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/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: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract MerkleProof { bytes32 internal _merkleRoot; function _setMerkleRoot(bytes32 merkleRoot_) internal virtual { _merkleRoot = merkleRoot_; } function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _merkleRoot; } } /********************************************************************************* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@░░░░░░@@@@@@@@@░░░░░░@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@* *@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@* *@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@* *@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@* *@@@@@@@@@@@@░░░░░░░░░░░░░░░░░███████████████░░███████████████░░░░░░@@@@@@@@@@@@@* *@@@@@@@@@@@@@░░░░░░░░░░░░░░░░██░░░░░████████░░███░░░░░███████░░░░░░░@@@@@@@@@@@@* *@@@@@@@@@@@@░░░░░░░░░██████████░░░░░█████████████░░░░░███████░░░░░░░░@@@@@@@@@@@* *@@@@@@@@@@@░░░░░░░░░░███░░░░░██░░░░░████████░░███░░░░░███████░░░░░░░░░@@@@@@@@@@* *@@@@@@@@@@@░░░░░░░░░░███░░░░░██░░░░░████████░░███░░░░░███████░░░░░░░░@@@@@@@@@@@* *@@@@@@@@@@@@░░░░░░░░░░░░░░░░░███████████████░░███████████████░░░░░░░░@@@@@@@@@@@* *@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@░░░░░░░░░░░░░░░░░@@@@@@░░░░░░░░░░░░░░@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* *********************************************************************** @0xSumo */ pragma solidity ^0.8.7; contract NounSNUG is ERC721A, Ownable, ReentrancyGuard, MerkleProof { uint256 public numberOfToken; uint256 public wlmintPrice = 0.01 ether; uint256 public mintPrice = 0.02 ether; uint256 private maxMintsPerWL = 7; uint256 private maxMints = 77; uint256 private maxMintsPerPS = 7; uint256 private _totalSupply = 7777; string private _baseTokenURI; string private revealUri; bool public whitelistSaleEnabled = false; bool public publicSaleEnabled = false; bool public revealed = false; mapping(address => uint256) public wlMinted; mapping(address => uint256) public psMinted; constructor () ERC721A ("NounSNUG","NSNUG", maxMints, _totalSupply) { numberOfToken = 0; sethiddenBaseURI("ipfs://QmfB3gEsGXjpNnyJ8g2RHguQLHmCYFbvC8c5g6Lt3rkMu7/nounsnug.json"); } function ownerMint(uint256 _amount, address _address) public onlyOwner { require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); _safeMint(_address, _amount); numberOfToken += _amount; } function whitelistMint(uint256 _amount, bytes32[] memory proof_) external payable nonReentrant onlySender { require(whitelistSaleEnabled, "whitelistMint: Paused"); require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!"); require(maxMintsPerWL >= _amount, "whitelistMint: 7 max per tx"); require(maxMintsPerWL >= wlMinted[msg.sender] + _amount, "You have no whitelistMint left"); require(msg.value == wlmintPrice * _amount, "Value sent is not correct"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); wlMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); numberOfToken += _amount; } function publicMint(uint256 _amount) public payable nonReentrant onlySender { require(publicSaleEnabled, "publicMint: Paused"); require(maxMintsPerPS >= _amount, "publicMint: 7 max per tx"); require(maxMintsPerPS >= psMinted[msg.sender] + _amount, "You have no publicMint left"); require(msg.value == mintPrice * _amount, "Value sent is not correct"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); numberOfToken += _amount; } function setwlPrice(uint256 newPrice) external onlyOwner { wlmintPrice = newPrice; } function setPrice(uint256 newPrice) external onlyOwner { mintPrice = newPrice; } function setreveal(bool bool_) external onlyOwner { revealed = bool_; } function setWhitelistSale(bool bool_) external onlyOwner { whitelistSaleEnabled = bool_; } function setPublicSale(bool bool_) external onlyOwner { publicSaleEnabled = bool_; } function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { _setMerkleRoot(merkleRoot_); } function sethiddenBaseURI(string memory uri_) public onlyOwner { revealUri = uri_; } function setBaseURI(string memory uri_) public onlyOwner { _baseTokenURI = uri_; } function currentBaseURI() private view returns (string memory){ return _baseTokenURI; } modifier onlySender { require(msg.sender == tx.origin, "No smart contract"); _; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return revealUri; } return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), ".json")); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address aa = payable(0x04D0d2eE99777F3F1aD29801435c820ACB5E8432); address bb = payable(0x182ff9Ab824f102D826813f9C4C569B4FAF3d019); bool success; (success, ) = aa.call{value: (sendAmount * 800/1000)}(""); require(success, "Failed to withdraw Ether"); (success, ) = bb.call{value: (sendAmount * 200/1000)}(""); require(success, "Failed to withdraw Ether"); } function walletOfOwner(address _address) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfToken","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":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"sethiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setwlPrice","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c0604052600160009081556007908155662386f26fc10000600c5566470de4df820000600d55600e819055604d600f55601055611e616011556014805462ffffff191690553480156200005257600080fd5b50604051806040016040528060088152602001674e6f756e534e554760c01b815250604051806040016040528060058152602001644e534e554760d81b815250600f5460115460008111620001055760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001675760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fc565b83516200017c906001906020870190620002a6565b50825162000192906002906020860190620002a6565b5060a09190915260805250620001aa905033620001df565b60016009556000600b5560408051608081019091526043808252620001d99190620031f8602083013962000231565b62000389565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200028d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620000fc565b8051620002a2906013906020840190620002a6565b5050565b828054620002b4906200034c565b90600052602060002090601f016020900481019282620002d8576000855562000323565b82601f10620002f357805160ff191683800117855562000323565b8280016001018555821562000323579182015b828111156200032357825182559160200191906001019062000306565b506200033192915062000335565b5090565b5b8082111562000331576000815560010162000336565b600181811c908216806200036157607f821691505b602082108114156200038357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612e3e620003ba60003960008181611fa001528181611fca01526123f0015260005050612e3e6000f3fe6080604052600436106102515760003560e01c80636817c76c11610139578063a22cb465116100b6578063d2cab0561161007a578063d2cab056146106e2578063d52c57e0146106f5578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a22cb4651461064c578063b88d4fde1461066c578063bf1f577b1461068c578063c87b56dd146106a2578063ca7ce3ec146106c257600080fd5b80638da5cb5b116100fd5780638da5cb5b146105ac57806391b7f5ed146105ca578063942958f4146105ea57806395d89b4114610617578063a08c008b1461062c57600080fd5b80636817c76c1461051457806370a082311461052a578063715018a61461054a57806378a923801461055f5780637cb647591461058c57600080fd5b80632f5d8cad116101d25780634f6ccce7116101965780634f6ccce714610454578063518302271461047457806355f804b3146104945780635a23dd99146104b45780635aca1bb6146104d45780636352211e146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612986565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506014546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612b47565b3480156102d357600080fd5b506102e76102e236600461296d565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a366004612928565b610939565b005b34801561032d57600080fd5b5061031f61033c36600461296d565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b3660046127fa565b610a80565b34801561038c57600080fd5b5060145461027690610100900460ff1681565b61031f6103ad36600461296d565b610a8b565b3480156103be57600080fd5b5061031f6103cd366004612952565b610d04565b3480156103de57600080fd5b506103526103ed366004612928565b610d4a565b3480156103fe57600080fd5b5061031f610eb7565b34801561041357600080fd5b5061031f6104223660046127fa565b61106e565b34801561043357600080fd5b506104476104423660046127a5565b611089565b6040516102829190612b03565b34801561046057600080fd5b5061035261046f36600461296d565b61112a565b34801561048057600080fd5b506014546102769062010000900460ff1681565b3480156104a057600080fd5b5061031f6104af3660046129c0565b61118c565b3480156104c057600080fd5b506102766104cf3660046128b1565b6111cd565b3480156104e057600080fd5b5061031f6104ef366004612952565b6112f1565b34801561050057600080fd5b506102e761050f36600461296d565b611335565b34801561052057600080fd5b50610352600d5481565b34801561053657600080fd5b506103526105453660046127a5565b611347565b34801561055657600080fd5b5061031f6113d8565b34801561056b57600080fd5b5061035261057a3660046127a5565b60156020526000908152604090205481565b34801561059857600080fd5b5061031f6105a736600461296d565b61140e565b3480156105b857600080fd5b506008546001600160a01b03166102e7565b3480156105d657600080fd5b5061031f6105e536600461296d565b611444565b3480156105f657600080fd5b506103526106053660046127a5565b60166020526000908152604090205481565b34801561062357600080fd5b506102ba611473565b34801561063857600080fd5b5061031f6106473660046129c0565b611482565b34801561065857600080fd5b5061031f6106673660046128fe565b6114bf565b34801561067857600080fd5b5061031f610687366004612836565b611584565b34801561069857600080fd5b50610352600b5481565b3480156106ae57600080fd5b506102ba6106bd36600461296d565b6115b7565b3480156106ce57600080fd5b5061031f6106dd366004612952565b611702565b61031f6106f0366004612a2b565b61173f565b34801561070157600080fd5b5061031f610710366004612a08565b611a0d565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b506102766107463660046127c7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f3660046127a5565b611a8a565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612d30565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612d30565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094482611335565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611b22565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612b5a565b600c55565b610a4c838383611b7e565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955333214610b265760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b6044820152606401610914565b601454610100900460ff16610b725760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b806010541015610bc45760405162461bcd60e51b815260206004820152601860248201527f7075626c69634d696e743a2037206d61782070657220747800000000000000006044820152606401610914565b33600090815260166020526040902054610bdf908290612c63565b6010541015610c305760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610c3e9190612c8f565b3414610c885760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601154600b54610c989083612c63565b1115610cb65760405162461bcd60e51b815260040161091490612b8f565b3360009081526016602052604081208054839290610cd5908490612c63565b90915550610ce590503382611f04565b80600b6000828254610cf79190612c63565b9091555050600160095550565b6008546001600160a01b03163314610d2e5760405162461bcd60e51b815260040161091490612b5a565b60148054911515620100000262ff000019909216919091179055565b6000610d5583611347565b8210610dae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e57576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610e0857805192505b876001600160a01b0316836001600160a01b03161415610e445786841415610e365750935061081192505050565b83610e4081612d6b565b9450505b5080610e4f81612d6b565b915050610db6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610ee15760405162461bcd60e51b815260040161091490612b5a565b477304d0d2ee99777f3f1ad29801435c820acb5e843273182ff9ab824f102d826813f9c4c569b4faf3d0196000826103e8610f1e86610320612c8f565b610f289190612c7b565b604051600081818185875af1925050503d8060008114610f64576040519150601f19603f3d011682016040523d82523d6000602084013e610f69565b606091505b50508091505080610fb75760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610fcf8660c8612c8f565b610fd99190612c7b565b604051600081818185875af1925050503d8060008114611015576040519150601f19603f3d011682016040523d82523d6000602084013e61101a565b606091505b505080915050806110685760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c83838360405180602001604052806000815250611584565b6060600061109683611347565b90506000816001600160401b038111156110b2576110b2612ddc565b6040519080825280602002602001820160405280156110db578160200160208202803683370190505b50905060005b82811015611122576110f38582610d4a565b82828151811061110557611105612dc6565b60209081029190910101528061111a81612d6b565b9150506110e1565b509392505050565b6000805482106111885760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111b65760405162461bcd60e51b815260040161091490612b5a565b80516111c990601290602084019061260d565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156112e55783818151811061122757611227612dc6565b602002602001015182106112855783818151811061124757611247612dc6565b60200260200101518260405160200161126a929190918252602082015260400190565b604051602081830303815290604052805190602001206112d1565b8184828151811061129857611298612dc6565b60200260200101516040516020016112ba929190918252602082015260400190565b604051602081830303815290604052805190602001205b9150806112dd81612d6b565b91505061120c565b50600a54149392505050565b6008546001600160a01b0316331461131b5760405162461bcd60e51b815260040161091490612b5a565b601480549115156101000261ff0019909216919091179055565b600061134082611f1e565b5192915050565b60006001600160a01b0382166113b35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146114025760405162461bcd60e51b815260040161091490612b5a565b61140c60006120c7565b565b6008546001600160a01b031633146114385760405162461bcd60e51b815260040161091490612b5a565b61144181600a55565b50565b6008546001600160a01b0316331461146e5760405162461bcd60e51b815260040161091490612b5a565b600d55565b60606002805461082690612d30565b6008546001600160a01b031633146114ac5760405162461bcd60e51b815260040161091490612b5a565b80516111c990601390602084019061260d565b6001600160a01b0382163314156115185760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61158f848484611b7e565b61159b84848484612119565b6110685760405162461bcd60e51b815260040161091490612bb5565b60606115c4826000541190565b6116285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60145462010000900460ff166116ca576013805461164590612d30565b80601f016020809104026020016040519081016040528092919081815260200182805461167190612d30565b80156116be5780601f10611693576101008083540402835291602001916116be565b820191906000526020600020905b8154815290600101906020018083116116a157829003601f168201915b50505050509050919050565b6116d2612227565b6116db83612236565b6040516020016116ec929190612a87565b6040516020818303038152906040529050919050565b6008546001600160a01b0316331461172c5760405162461bcd60e51b815260040161091490612b5a565b6014805460ff1916911515919091179055565b600260095414156117925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b60026009553332146117da5760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b6044820152606401610914565b60145460ff166118245760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b61182e33826111cd565b61187a5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118cc5760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2037206d61782070657220747800000000006044820152606401610914565b336000908152601560205260409020546118e7908390612c63565b600e5410156119385760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c546119469190612c8f565b34146119905760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601154600b546119a09084612c63565b11156119be5760405162461bcd60e51b815260040161091490612b8f565b33600090815260156020526040812080548492906119dd908490612c63565b909155506119ed90503383611f04565b81600b60008282546119ff9190612c63565b909155505060016009555050565b6008546001600160a01b03163314611a375760405162461bcd60e51b815260040161091490612b5a565b601154600b54611a479084612c63565b1115611a655760405162461bcd60e51b815260040161091490612b8f565b611a6f8183611f04565b81600b6000828254611a819190612c63565b90915550505050565b6008546001600160a01b03163314611ab45760405162461bcd60e51b815260040161091490612b5a565b6001600160a01b038116611b195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b611441816120c7565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b8982611f1e565b80519091506000906001600160a01b0316336001600160a01b03161480611bc0575033611bb5846108a9565b6001600160a01b0316145b80611bd257508151611bd29033610746565b905080611c3c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611cb05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611d145760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611d246000848460000151611b22565b6001600160a01b0385166000908152600460205260408120805460019290611d569084906001600160801b0316612cae565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611da291859116612c38565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611e29846001612c63565b6000818152600360205260409020549091506001600160a01b0316611eba57611e53816000541190565b15611eba5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111c9828260405180602001604052806000815250612333565b6040805180820190915260008082526020820152611f3d826000541190565b611f9c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ffd57611fef7f000000000000000000000000000000000000000000000000000000000000000084612cd6565b611ffa906001612c63565b90505b825b818110612066576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561205357949350505050565b508061205e81612d19565b915050611fff565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561221b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215d903390899088908890600401612ac6565b602060405180830381600087803b15801561217757600080fd5b505af19250505080156121a7575060408051601f3d908101601f191682019092526121a4918101906129a3565b60015b612201573d8080156121d5576040519150601f19603f3d011682016040523d82523d6000602084013e6121da565b606091505b5080516121f95760405162461bcd60e51b815260040161091490612bb5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221f565b5060015b949350505050565b60606012805461082690612d30565b60608161225a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612284578061226e81612d6b565b915061227d9050600a83612c7b565b915061225e565b6000816001600160401b0381111561229e5761229e612ddc565b6040519080825280601f01601f1916602001820160405280156122c8576020820181803683370190505b5090505b841561221f576122dd600183612cd6565b91506122ea600a86612d86565b6122f5906030612c63565b60f81b81838151811061230a5761230a612dc6565b60200101906001600160f81b031916908160001a90535061232c600a86612c7b565b94506122cc565b6000546001600160a01b0384166123965760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b6123a1816000541190565b156123ee5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f00000000000000000000000000000000000000000000000000000000000000008311156124695760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124c5908790612c38565b6001600160801b031681526020018583602001516124e39190612c38565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126025760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125c66000888488612119565b6125e25760405162461bcd60e51b815260040161091490612bb5565b816125ec81612d6b565b92505080806125fa90612d6b565b915050612579565b506000819055611efc565b82805461261990612d30565b90600052602060002090601f01602090048101928261263b5760008555612681565b82601f1061265457805160ff1916838001178555612681565b82800160010185558215612681579182015b82811115612681578251825591602001919060010190612666565b506111889291505b808211156111885760008155600101612689565b60006001600160401b038311156126b6576126b6612ddc565b6126c9601f8401601f1916602001612c08565b90508281528383830111156126dd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461270b57600080fd5b919050565b600082601f83011261272157600080fd5b813560206001600160401b0382111561273c5761273c612ddc565b8160051b61274b828201612c08565b83815282810190868401838801850189101561276657600080fd5b600093505b8584101561278957803583526001939093019291840191840161276b565b50979650505050505050565b8035801515811461270b57600080fd5b6000602082840312156127b757600080fd5b6127c0826126f4565b9392505050565b600080604083850312156127da57600080fd5b6127e3836126f4565b91506127f1602084016126f4565b90509250929050565b60008060006060848603121561280f57600080fd5b612818846126f4565b9250612826602085016126f4565b9150604084013590509250925092565b6000806000806080858703121561284c57600080fd5b612855856126f4565b9350612863602086016126f4565b92506040850135915060608501356001600160401b0381111561288557600080fd5b8501601f8101871361289657600080fd5b6128a58782356020840161269d565b91505092959194509250565b600080604083850312156128c457600080fd5b6128cd836126f4565b915060208301356001600160401b038111156128e857600080fd5b6128f485828601612710565b9150509250929050565b6000806040838503121561291157600080fd5b61291a836126f4565b91506127f160208401612795565b6000806040838503121561293b57600080fd5b612944836126f4565b946020939093013593505050565b60006020828403121561296457600080fd5b6127c082612795565b60006020828403121561297f57600080fd5b5035919050565b60006020828403121561299857600080fd5b81356127c081612df2565b6000602082840312156129b557600080fd5b81516127c081612df2565b6000602082840312156129d257600080fd5b81356001600160401b038111156129e857600080fd5b8201601f810184136129f957600080fd5b61221f8482356020840161269d565b60008060408385031215612a1b57600080fd5b823591506127f1602084016126f4565b60008060408385031215612a3e57600080fd5b8235915060208301356001600160401b038111156128e857600080fd5b60008151808452612a73816020860160208601612ced565b601f01601f19169290920160200192915050565b60008351612a99818460208801612ced565b835190830190612aad818360208801612ced565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af990830184612a5b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b3b57835183529284019291840191600101612b1f565b50909695505050505050565b6020815260006127c06020830184612a5b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612c3057612c30612ddc565b604052919050565b60006001600160801b03808316818516808303821115612c5a57612c5a612d9a565b01949350505050565b60008219821115612c7657612c76612d9a565b500190565b600082612c8a57612c8a612db0565b500490565b6000816000190483118215151615612ca957612ca9612d9a565b500290565b60006001600160801b0383811690831681811015612cce57612cce612d9a565b039392505050565b600082821015612ce857612ce8612d9a565b500390565b60005b83811015612d08578181015183820152602001612cf0565b838111156110685750506000910152565b600081612d2857612d28612d9a565b506000190190565b600181811c90821680612d4457607f821691505b60208210811415612d6557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d7f57612d7f612d9a565b5060010190565b600082612d9557612d95612db0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461144157600080fdfea26469706673582212200e2ba0452439939b86b49188c914ed212a787236f972e81cabdfe25c32d12a1764736f6c63430008070033697066733a2f2f516d66423367457347586a704e6e794a38673252486775514c486d43594662764338633567364c7433726b4d75372f6e6f756e736e75672e6a736f6e
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636817c76c11610139578063a22cb465116100b6578063d2cab0561161007a578063d2cab056146106e2578063d52c57e0146106f5578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a22cb4651461064c578063b88d4fde1461066c578063bf1f577b1461068c578063c87b56dd146106a2578063ca7ce3ec146106c257600080fd5b80638da5cb5b116100fd5780638da5cb5b146105ac57806391b7f5ed146105ca578063942958f4146105ea57806395d89b4114610617578063a08c008b1461062c57600080fd5b80636817c76c1461051457806370a082311461052a578063715018a61461054a57806378a923801461055f5780637cb647591461058c57600080fd5b80632f5d8cad116101d25780634f6ccce7116101965780634f6ccce714610454578063518302271461047457806355f804b3146104945780635a23dd99146104b45780635aca1bb6146104d45780636352211e146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612986565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506014546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612b47565b3480156102d357600080fd5b506102e76102e236600461296d565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a366004612928565b610939565b005b34801561032d57600080fd5b5061031f61033c36600461296d565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b3660046127fa565b610a80565b34801561038c57600080fd5b5060145461027690610100900460ff1681565b61031f6103ad36600461296d565b610a8b565b3480156103be57600080fd5b5061031f6103cd366004612952565b610d04565b3480156103de57600080fd5b506103526103ed366004612928565b610d4a565b3480156103fe57600080fd5b5061031f610eb7565b34801561041357600080fd5b5061031f6104223660046127fa565b61106e565b34801561043357600080fd5b506104476104423660046127a5565b611089565b6040516102829190612b03565b34801561046057600080fd5b5061035261046f36600461296d565b61112a565b34801561048057600080fd5b506014546102769062010000900460ff1681565b3480156104a057600080fd5b5061031f6104af3660046129c0565b61118c565b3480156104c057600080fd5b506102766104cf3660046128b1565b6111cd565b3480156104e057600080fd5b5061031f6104ef366004612952565b6112f1565b34801561050057600080fd5b506102e761050f36600461296d565b611335565b34801561052057600080fd5b50610352600d5481565b34801561053657600080fd5b506103526105453660046127a5565b611347565b34801561055657600080fd5b5061031f6113d8565b34801561056b57600080fd5b5061035261057a3660046127a5565b60156020526000908152604090205481565b34801561059857600080fd5b5061031f6105a736600461296d565b61140e565b3480156105b857600080fd5b506008546001600160a01b03166102e7565b3480156105d657600080fd5b5061031f6105e536600461296d565b611444565b3480156105f657600080fd5b506103526106053660046127a5565b60166020526000908152604090205481565b34801561062357600080fd5b506102ba611473565b34801561063857600080fd5b5061031f6106473660046129c0565b611482565b34801561065857600080fd5b5061031f6106673660046128fe565b6114bf565b34801561067857600080fd5b5061031f610687366004612836565b611584565b34801561069857600080fd5b50610352600b5481565b3480156106ae57600080fd5b506102ba6106bd36600461296d565b6115b7565b3480156106ce57600080fd5b5061031f6106dd366004612952565b611702565b61031f6106f0366004612a2b565b61173f565b34801561070157600080fd5b5061031f610710366004612a08565b611a0d565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b506102766107463660046127c7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f3660046127a5565b611a8a565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612d30565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612d30565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094482611335565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611b22565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612b5a565b600c55565b610a4c838383611b7e565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955333214610b265760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b6044820152606401610914565b601454610100900460ff16610b725760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b806010541015610bc45760405162461bcd60e51b815260206004820152601860248201527f7075626c69634d696e743a2037206d61782070657220747800000000000000006044820152606401610914565b33600090815260166020526040902054610bdf908290612c63565b6010541015610c305760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610c3e9190612c8f565b3414610c885760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601154600b54610c989083612c63565b1115610cb65760405162461bcd60e51b815260040161091490612b8f565b3360009081526016602052604081208054839290610cd5908490612c63565b90915550610ce590503382611f04565b80600b6000828254610cf79190612c63565b9091555050600160095550565b6008546001600160a01b03163314610d2e5760405162461bcd60e51b815260040161091490612b5a565b60148054911515620100000262ff000019909216919091179055565b6000610d5583611347565b8210610dae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e57576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610e0857805192505b876001600160a01b0316836001600160a01b03161415610e445786841415610e365750935061081192505050565b83610e4081612d6b565b9450505b5080610e4f81612d6b565b915050610db6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610ee15760405162461bcd60e51b815260040161091490612b5a565b477304d0d2ee99777f3f1ad29801435c820acb5e843273182ff9ab824f102d826813f9c4c569b4faf3d0196000826103e8610f1e86610320612c8f565b610f289190612c7b565b604051600081818185875af1925050503d8060008114610f64576040519150601f19603f3d011682016040523d82523d6000602084013e610f69565b606091505b50508091505080610fb75760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610fcf8660c8612c8f565b610fd99190612c7b565b604051600081818185875af1925050503d8060008114611015576040519150601f19603f3d011682016040523d82523d6000602084013e61101a565b606091505b505080915050806110685760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c83838360405180602001604052806000815250611584565b6060600061109683611347565b90506000816001600160401b038111156110b2576110b2612ddc565b6040519080825280602002602001820160405280156110db578160200160208202803683370190505b50905060005b82811015611122576110f38582610d4a565b82828151811061110557611105612dc6565b60209081029190910101528061111a81612d6b565b9150506110e1565b509392505050565b6000805482106111885760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111b65760405162461bcd60e51b815260040161091490612b5a565b80516111c990601290602084019061260d565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156112e55783818151811061122757611227612dc6565b602002602001015182106112855783818151811061124757611247612dc6565b60200260200101518260405160200161126a929190918252602082015260400190565b604051602081830303815290604052805190602001206112d1565b8184828151811061129857611298612dc6565b60200260200101516040516020016112ba929190918252602082015260400190565b604051602081830303815290604052805190602001205b9150806112dd81612d6b565b91505061120c565b50600a54149392505050565b6008546001600160a01b0316331461131b5760405162461bcd60e51b815260040161091490612b5a565b601480549115156101000261ff0019909216919091179055565b600061134082611f1e565b5192915050565b60006001600160a01b0382166113b35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146114025760405162461bcd60e51b815260040161091490612b5a565b61140c60006120c7565b565b6008546001600160a01b031633146114385760405162461bcd60e51b815260040161091490612b5a565b61144181600a55565b50565b6008546001600160a01b0316331461146e5760405162461bcd60e51b815260040161091490612b5a565b600d55565b60606002805461082690612d30565b6008546001600160a01b031633146114ac5760405162461bcd60e51b815260040161091490612b5a565b80516111c990601390602084019061260d565b6001600160a01b0382163314156115185760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61158f848484611b7e565b61159b84848484612119565b6110685760405162461bcd60e51b815260040161091490612bb5565b60606115c4826000541190565b6116285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60145462010000900460ff166116ca576013805461164590612d30565b80601f016020809104026020016040519081016040528092919081815260200182805461167190612d30565b80156116be5780601f10611693576101008083540402835291602001916116be565b820191906000526020600020905b8154815290600101906020018083116116a157829003601f168201915b50505050509050919050565b6116d2612227565b6116db83612236565b6040516020016116ec929190612a87565b6040516020818303038152906040529050919050565b6008546001600160a01b0316331461172c5760405162461bcd60e51b815260040161091490612b5a565b6014805460ff1916911515919091179055565b600260095414156117925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b60026009553332146117da5760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b6044820152606401610914565b60145460ff166118245760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b61182e33826111cd565b61187a5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118cc5760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2037206d61782070657220747800000000006044820152606401610914565b336000908152601560205260409020546118e7908390612c63565b600e5410156119385760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c546119469190612c8f565b34146119905760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601154600b546119a09084612c63565b11156119be5760405162461bcd60e51b815260040161091490612b8f565b33600090815260156020526040812080548492906119dd908490612c63565b909155506119ed90503383611f04565b81600b60008282546119ff9190612c63565b909155505060016009555050565b6008546001600160a01b03163314611a375760405162461bcd60e51b815260040161091490612b5a565b601154600b54611a479084612c63565b1115611a655760405162461bcd60e51b815260040161091490612b8f565b611a6f8183611f04565b81600b6000828254611a819190612c63565b90915550505050565b6008546001600160a01b03163314611ab45760405162461bcd60e51b815260040161091490612b5a565b6001600160a01b038116611b195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b611441816120c7565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b8982611f1e565b80519091506000906001600160a01b0316336001600160a01b03161480611bc0575033611bb5846108a9565b6001600160a01b0316145b80611bd257508151611bd29033610746565b905080611c3c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611cb05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611d145760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611d246000848460000151611b22565b6001600160a01b0385166000908152600460205260408120805460019290611d569084906001600160801b0316612cae565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611da291859116612c38565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611e29846001612c63565b6000818152600360205260409020549091506001600160a01b0316611eba57611e53816000541190565b15611eba5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111c9828260405180602001604052806000815250612333565b6040805180820190915260008082526020820152611f3d826000541190565b611f9c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f000000000000000000000000000000000000000000000000000000000000004d8310611ffd57611fef7f000000000000000000000000000000000000000000000000000000000000004d84612cd6565b611ffa906001612c63565b90505b825b818110612066576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561205357949350505050565b508061205e81612d19565b915050611fff565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561221b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215d903390899088908890600401612ac6565b602060405180830381600087803b15801561217757600080fd5b505af19250505080156121a7575060408051601f3d908101601f191682019092526121a4918101906129a3565b60015b612201573d8080156121d5576040519150601f19603f3d011682016040523d82523d6000602084013e6121da565b606091505b5080516121f95760405162461bcd60e51b815260040161091490612bb5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221f565b5060015b949350505050565b60606012805461082690612d30565b60608161225a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612284578061226e81612d6b565b915061227d9050600a83612c7b565b915061225e565b6000816001600160401b0381111561229e5761229e612ddc565b6040519080825280601f01601f1916602001820160405280156122c8576020820181803683370190505b5090505b841561221f576122dd600183612cd6565b91506122ea600a86612d86565b6122f5906030612c63565b60f81b81838151811061230a5761230a612dc6565b60200101906001600160f81b031916908160001a90535061232c600a86612c7b565b94506122cc565b6000546001600160a01b0384166123965760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b6123a1816000541190565b156123ee5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f000000000000000000000000000000000000000000000000000000000000004d8311156124695760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124c5908790612c38565b6001600160801b031681526020018583602001516124e39190612c38565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126025760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125c66000888488612119565b6125e25760405162461bcd60e51b815260040161091490612bb5565b816125ec81612d6b565b92505080806125fa90612d6b565b915050612579565b506000819055611efc565b82805461261990612d30565b90600052602060002090601f01602090048101928261263b5760008555612681565b82601f1061265457805160ff1916838001178555612681565b82800160010185558215612681579182015b82811115612681578251825591602001919060010190612666565b506111889291505b808211156111885760008155600101612689565b60006001600160401b038311156126b6576126b6612ddc565b6126c9601f8401601f1916602001612c08565b90508281528383830111156126dd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461270b57600080fd5b919050565b600082601f83011261272157600080fd5b813560206001600160401b0382111561273c5761273c612ddc565b8160051b61274b828201612c08565b83815282810190868401838801850189101561276657600080fd5b600093505b8584101561278957803583526001939093019291840191840161276b565b50979650505050505050565b8035801515811461270b57600080fd5b6000602082840312156127b757600080fd5b6127c0826126f4565b9392505050565b600080604083850312156127da57600080fd5b6127e3836126f4565b91506127f1602084016126f4565b90509250929050565b60008060006060848603121561280f57600080fd5b612818846126f4565b9250612826602085016126f4565b9150604084013590509250925092565b6000806000806080858703121561284c57600080fd5b612855856126f4565b9350612863602086016126f4565b92506040850135915060608501356001600160401b0381111561288557600080fd5b8501601f8101871361289657600080fd5b6128a58782356020840161269d565b91505092959194509250565b600080604083850312156128c457600080fd5b6128cd836126f4565b915060208301356001600160401b038111156128e857600080fd5b6128f485828601612710565b9150509250929050565b6000806040838503121561291157600080fd5b61291a836126f4565b91506127f160208401612795565b6000806040838503121561293b57600080fd5b612944836126f4565b946020939093013593505050565b60006020828403121561296457600080fd5b6127c082612795565b60006020828403121561297f57600080fd5b5035919050565b60006020828403121561299857600080fd5b81356127c081612df2565b6000602082840312156129b557600080fd5b81516127c081612df2565b6000602082840312156129d257600080fd5b81356001600160401b038111156129e857600080fd5b8201601f810184136129f957600080fd5b61221f8482356020840161269d565b60008060408385031215612a1b57600080fd5b823591506127f1602084016126f4565b60008060408385031215612a3e57600080fd5b8235915060208301356001600160401b038111156128e857600080fd5b60008151808452612a73816020860160208601612ced565b601f01601f19169290920160200192915050565b60008351612a99818460208801612ced565b835190830190612aad818360208801612ced565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af990830184612a5b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b3b57835183529284019291840191600101612b1f565b50909695505050505050565b6020815260006127c06020830184612a5b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612c3057612c30612ddc565b604052919050565b60006001600160801b03808316818516808303821115612c5a57612c5a612d9a565b01949350505050565b60008219821115612c7657612c76612d9a565b500190565b600082612c8a57612c8a612db0565b500490565b6000816000190483118215151615612ca957612ca9612d9a565b500290565b60006001600160801b0383811690831681811015612cce57612cce612d9a565b039392505050565b600082821015612ce857612ce8612d9a565b500390565b60005b83811015612d08578181015183820152602001612cf0565b838111156110685750506000910152565b600081612d2857612d28612d9a565b506000190190565b600181811c90821680612d4457607f821691505b60208210811415612d6557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d7f57612d7f612d9a565b5060010190565b600082612d9557612d95612db0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461144157600080fdfea26469706673582212200e2ba0452439939b86b49188c914ed212a787236f972e81cabdfe25c32d12a1764736f6c63430008070033
Deployed Bytecode Sourcemap
47956:4762:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30171:370;;;;;;;;;;-1:-1:-1;30171:370:0;;;;;:::i;:::-;;:::i;:::-;;;9198:14:1;;9191:22;9173:41;;9161:2;9146:18;30171:370:0;;;;;;;;48382:40;;;;;;;;;;-1:-1:-1;48382:40:0;;;;;;;;31897:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33422:204::-;;;;;;;;;;-1:-1:-1;33422:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7859:32:1;;;7841:51;;7829:2;7814:18;33422:204:0;7695:203:1;32985:379:0;;;;;;;;;;-1:-1:-1;32985:379:0;;;;;:::i;:::-;;:::i;:::-;;50399:98;;;;;;;;;;-1:-1:-1;50399:98:0;;;;;:::i;:::-;;:::i;28732:94::-;;;;;;;;;;-1:-1:-1;28785:7:0;28808:12;28732:94;;;21881:25:1;;;21869:2;21854:18;28732:94:0;21735:177:1;34272:142:0;;;;;;;;;;-1:-1:-1;34272:142:0;;;;;:::i;:::-;;:::i;48429:37::-;;;;;;;;;;-1:-1:-1;48429:37:0;;;;;;;;;;;49789:602;;;;;;:::i;:::-;;:::i;50607:85::-;;;;;;;;;;-1:-1:-1;50607:85:0;;;;;:::i;:::-;;:::i;29363:744::-;;;;;;;;;;-1:-1:-1;29363:744:0;;;;;:::i;:::-;;:::i;51820:525::-;;;;;;;;;;;;;:::i;34477:157::-;;;;;;;;;;-1:-1:-1;34477:157:0;;;;;:::i;:::-;;:::i;52353:362::-;;;;;;;;;;-1:-1:-1;52353:362:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28895:177::-;;;;;;;;;;-1:-1:-1;28895:177:0;;;;;:::i;:::-;;:::i;48473:28::-;;;;;;;;;;-1:-1:-1;48473:28:0;;;;;;;;;;;51145:96;;;;;;;;;;-1:-1:-1;51145:96:0;;;;;:::i;:::-;;:::i;42659:405::-;;;;;;;;;;-1:-1:-1;42659:405:0;;;;;:::i;:::-;;:::i;50816:98::-;;;;;;;;;;-1:-1:-1;50816:98:0;;;;;:::i;:::-;;:::i;31720:118::-;;;;;;;;;;-1:-1:-1;31720:118:0;;;;;:::i;:::-;;:::i;48114:37::-;;;;;;;;;;;;;;;;30597:211;;;;;;;;;;-1:-1:-1;30597:211:0;;;;;:::i;:::-;;:::i;7388:103::-;;;;;;;;;;;;;:::i;48508:43::-;;;;;;;;;;-1:-1:-1;48508:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;50922:109;;;;;;;;;;-1:-1:-1;50922:109:0;;;;;:::i;:::-;;:::i;6737:87::-;;;;;;;;;;-1:-1:-1;6810:6:0;;-1:-1:-1;;;;;6810:6:0;6737:87;;50505:94;;;;;;;;;;-1:-1:-1;50505:94:0;;;;;:::i;:::-;;:::i;48558:43::-;;;;;;;;;;-1:-1:-1;48558:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;32052:98;;;;;;;;;;;;;:::i;51039:::-;;;;;;;;;;-1:-1:-1;51039:98:0;;;;;:::i;:::-;;:::i;33690:274::-;;;;;;;;;;-1:-1:-1;33690:274:0;;;;;:::i;:::-;;:::i;34697:311::-;;;;;;;;;;-1:-1:-1;34697:311:0;;;;;:::i;:::-;;:::i;48033:28::-;;;;;;;;;;;;;;;;51462:350;;;;;;;;;;-1:-1:-1;51462:350:0;;;;;:::i;:::-;;:::i;50704:104::-;;;;;;;;;;-1:-1:-1;50704:104:0;;;;;:::i;:::-;;:::i;49063:718::-;;;;;;:::i;:::-;;:::i;48820:235::-;;;;;;;;;;-1:-1:-1;48820:235:0;;;;;:::i;:::-;;:::i;39112:43::-;;;;;;;;;;;;;;;;34027:186;;;;;;;;;;-1:-1:-1;34027:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34172:25:0;;;34149:4;34172:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34027:186;7646:201;;;;;;;;;;-1:-1:-1;7646:201:0;;;;;:::i;:::-;;:::i;48068:39::-;;;;;;;;;;;;;;;;30171:370;30298:4;-1:-1:-1;;;;;;30328:40:0;;-1:-1:-1;;;30328:40:0;;:99;;-1:-1:-1;;;;;;;30379:48:0;;-1:-1:-1;;;30379:48:0;30328:99;:160;;;-1:-1:-1;;;;;;;30438:50:0;;-1:-1:-1;;;30438:50:0;30328:160;:207;;;-1:-1:-1;;;;;;;;;;19626:40:0;;;30499:36;30314:221;30171:370;-1:-1:-1;;30171:370:0:o;31897:94::-;31951:13;31980:5;31973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31897:94;:::o;33422:204::-;33490:7;33514:16;33522:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;33514:16;33506:74;;;;-1:-1:-1;;;33506:74:0;;21120:2:1;33506:74:0;;;21102:21:1;21159:2;21139:18;;;21132:30;21198:34;21178:18;;;21171:62;-1:-1:-1;;;21249:18:1;;;21242:43;21302:19;;33506:74:0;;;;;;;;;-1:-1:-1;33596:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33596:24:0;;33422:204::o;32985:379::-;33054:13;33070:24;33086:7;33070:15;:24::i;:::-;33054:40;;33115:5;-1:-1:-1;;;;;33109:11:0;:2;-1:-1:-1;;;;;33109:11:0;;;33101:58;;;;-1:-1:-1;;;33101:58:0;;17990:2:1;33101:58:0;;;17972:21:1;18029:2;18009:18;;;18002:30;18068:34;18048:18;;;18041:62;-1:-1:-1;;;18119:18:1;;;18112:32;18161:19;;33101:58:0;17788:398:1;33101:58:0;5545:10;-1:-1:-1;;;;;33184:21:0;;;;:62;;-1:-1:-1;33209:37:0;33226:5;5545:10;34027:186;:::i;33209:37::-;33168:153;;;;-1:-1:-1;;;33168:153:0;;13793:2:1;33168:153:0;;;13775:21:1;13832:2;13812:18;;;13805:30;13871:34;13851:18;;;13844:62;13942:27;13922:18;;;13915:55;13987:19;;33168:153:0;13591:421:1;33168:153:0;33330:28;33339:2;33343:7;33352:5;33330:8;:28::i;:::-;33047:317;32985:379;;:::o;50399:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;50467:11:::1;:22:::0;50399:98::o;34272:142::-;34380:28;34390:4;34396:2;34400:7;34380:9;:28::i;49789:602::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;20344:2:1;2309:63:0;;;20326:21:1;20383:2;20363:18;;;20356:30;20422:33;20402:18;;;20395:61;20473:18;;2309:63:0;20142:355:1;2309:63:0;1719:1;2450:7;:18;51397:10:::1;51411:9;51397:23;51389:53;;;::::0;-1:-1:-1;;;51389:53:0;;11928:2:1;51389:53:0::1;::::0;::::1;11910:21:1::0;11967:2;11947:18;;;11940:30;-1:-1:-1;;;11986:18:1;;;11979:47;12043:18;;51389:53:0::1;11726:341:1::0;51389:53:0::1;49884:17:::2;::::0;::::2;::::0;::::2;;;49876:48;;;::::0;-1:-1:-1;;;49876:48:0;;10763:2:1;49876:48:0::2;::::0;::::2;10745:21:1::0;10802:2;10782:18;;;10775:30;-1:-1:-1;;;10821:18:1;;;10814:48;10879:18;;49876:48:0::2;10561:342:1::0;49876:48:0::2;49960:7;49943:13;;:24;;49935:61;;;::::0;-1:-1:-1;;;49935:61:0;;15753:2:1;49935:61:0::2;::::0;::::2;15735:21:1::0;15792:2;15772:18;;;15765:30;15831:26;15811:18;;;15804:54;15875:18;;49935:61:0::2;15551:348:1::0;49935:61:0::2;50041:10;50032:20;::::0;;;:8:::2;:20;::::0;;;;;:30:::2;::::0;50055:7;;50032:30:::2;:::i;:::-;50015:13;;:47;;50007:87;;;::::0;-1:-1:-1;;;50007:87:0;;18393:2:1;50007:87:0::2;::::0;::::2;18375:21:1::0;18432:2;18412:18;;;18405:30;18471:29;18451:18;;;18444:57;18518:18;;50007:87:0::2;18191:351:1::0;50007:87:0::2;50138:7;50126:9;;:19;;;;:::i;:::-;50113:9;:32;50105:70;;;::::0;-1:-1:-1;;;50105:70:0;;14219:2:1;50105:70:0::2;::::0;::::2;14201:21:1::0;14258:2;14238:18;;;14231:30;-1:-1:-1;;;14277:18:1;;;14270:55;14342:18;;50105:70:0::2;14017:349:1::0;50105:70:0::2;50224:12;::::0;50205:13:::2;::::0;50195:23:::2;::::0;:7;:23:::2;:::i;:::-;50194:43;;50186:68;;;;-1:-1:-1::0;;;50186:68:0::2;;;;;;;:::i;:::-;50285:10;50276:20;::::0;;;:8:::2;:20;::::0;;;;:31;;50300:7;;50276:20;:31:::2;::::0;50300:7;;50276:31:::2;:::i;:::-;::::0;;;-1:-1:-1;50318:30:0::2;::::0;-1:-1:-1;50328:10:0::2;50340:7:::0;50318:9:::2;:30::i;:::-;50376:7;50359:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;49789:602:0:o;50607:85::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;50668:8:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50668:16:0;;::::1;::::0;;;::::1;::::0;;50607:85::o;29363:744::-;29472:7;29507:16;29517:5;29507:9;:16::i;:::-;29499:5;:24;29491:71;;;;-1:-1:-1;;;29491:71:0;;9651:2:1;29491:71:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:18:1;;;9773:32;9822:19;;29491:71:0;9449:398:1;29491:71:0;29569:22;28808:12;;;29569:22;;29689:350;29713:14;29709:1;:18;29689:350;;;29743:31;29777:14;;;:11;:14;;;;;;;;;29743:48;;;;;;;;;-1:-1:-1;;;;;29743:48:0;;;;;-1:-1:-1;;;29743:48:0;;;-1:-1:-1;;;;;29743:48:0;;;;;;;;29804:28;29800:89;;29865:14;;;-1:-1:-1;29800:89:0;29922:5;-1:-1:-1;;;;;29901:26:0;:17;-1:-1:-1;;;;;29901:26:0;;29897:135;;;29959:5;29944:11;:20;29940:59;;;-1:-1:-1;29986:1:0;-1:-1:-1;29979:8:0;;-1:-1:-1;;;29979:8:0;29940:59;30009:13;;;;:::i;:::-;;;;29897:135;-1:-1:-1;29729:3:0;;;;:::i;:::-;;;;29689:350;;;-1:-1:-1;30045:56:0;;-1:-1:-1;;;30045:56:0;;19929:2:1;30045:56:0;;;19911:21:1;19968:2;19948:18;;;19941:30;20007:34;19987:18;;;19980:62;-1:-1:-1;;;20058:18:1;;;20051:44;20112:19;;30045:56:0;19727:410:1;51820:525:0;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;51889:21:::1;51944:42;52019;51868:18;51944:42:::0;52147:4:::1;52130:16;51889:21:::0;52143:3:::1;52130:16;:::i;:::-;:21;;;;:::i;:::-;52114:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52100:57;;;;;52176:7;52168:44;;;::::0;-1:-1:-1;;;52168:44:0;;17296:2:1;52168:44:0::1;::::0;::::1;17278:21:1::0;17335:2;17315:18;;;17308:30;-1:-1:-1;;;17354:18:1;;;17347:54;17418:18;;52168:44:0::1;17094:348:1::0;52168:44:0::1;-1:-1:-1::0;;;;;52239:7:0;::::1;52272:4;52255:16;:10:::0;52268:3:::1;52255:16;:::i;:::-;:21;;;;:::i;:::-;52239:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52225:57;;;;;52301:7;52293:44;;;::::0;-1:-1:-1;;;52293:44:0;;17296:2:1;52293:44:0::1;::::0;::::1;17278:21:1::0;17335:2;17315:18;;;17308:30;-1:-1:-1;;;17354:18:1;;;17347:54;17418:18;;52293:44:0::1;17094:348:1::0;52293:44:0::1;51857:488;;;;51820:525::o:0;34477:157::-;34589:39;34606:4;34612:2;34616:7;34589:39;;;;;;;;;;;;:16;:39::i;52353:362::-;52415:16;52444:23;52470:19;52480:8;52470:9;:19::i;:::-;52444:45;;52500:25;52542:15;-1:-1:-1;;;;;52528:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52528:30:0;;52500:58;;52574:9;52569:113;52589:15;52585:1;:19;52569:113;;;52638:32;52658:8;52668:1;52638:19;:32::i;:::-;52624:8;52633:1;52624:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;52606:3;;;;:::i;:::-;;;;52569:113;;;-1:-1:-1;52699:8:0;52353:362;-1:-1:-1;;;52353:362:0:o;28895:177::-;28962:7;28808:12;;28986:5;:21;28978:69;;;;-1:-1:-1;;;28978:69:0;;12274:2:1;28978:69:0;;;12256:21:1;12313:2;12293:18;;;12286:30;12352:34;12332:18;;;12325:62;-1:-1:-1;;;12403:18:1;;;12396:33;12446:19;;28978:69:0;12072:399:1;28978:69:0;-1:-1:-1;29061:5:0;28895:177::o;51145:96::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;51213:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51145:96:::0;:::o;42659:405::-;42789:26;;-1:-1:-1;;6506:2:1;6502:15;;;6498:53;42789:26:0;;;6486:66:1;42746:4:0;;;;6568:12:1;;42789:26:0;;;;;;;;;;;;42779:37;;;;;;42763:53;;42832:9;42827:192;42851:6;:13;42847:1;:17;42827:192;;;42902:6;42909:1;42902:9;;;;;;;;:::i;:::-;;;;;;;42894:5;:17;:113;;42989:6;42996:1;42989:9;;;;;;;;:::i;:::-;;;;;;;43000:5;42972:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42972:34:0;;;;;;;;;;;;;42962:45;;;;;;42894:113;;;42941:5;42948:6;42955:1;42948:9;;;;;;;;:::i;:::-;;;;;;;42924:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42924:34:0;;;;;;;;;;;;;42914:45;;;;;;42894:113;42886:121;-1:-1:-1;42866:3:0;;;;:::i;:::-;;;;42827:192;;;-1:-1:-1;43045:11:0;;43036:20;;42659:405;-1:-1:-1;;;42659:405:0:o;50816:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;50881:17:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;50881:25:0;;::::1;::::0;;;::::1;::::0;;50816:98::o;31720:118::-;31784:7;31807:20;31819:7;31807:11;:20::i;:::-;:25;;31720:118;-1:-1:-1;;31720:118:0:o;30597:211::-;30661:7;-1:-1:-1;;;;;30685:19:0;;30677:75;;;;-1:-1:-1;;;30677:75:0;;14573:2:1;30677:75:0;;;14555:21:1;14612:2;14592:18;;;14585:30;14651:34;14631:18;;;14624:62;-1:-1:-1;;;14702:18:1;;;14695:41;14753:19;;30677:75:0;14371:407:1;30677:75:0;-1:-1:-1;;;;;;30774:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30774:27:0;;30597:211::o;7388:103::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;7453:30:::1;7480:1;7453:18;:30::i;:::-;7388:103::o:0;50922:109::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;50996:27:::1;51011:11;42620::::0;:25;42547:106;50996:27:::1;50922:109:::0;:::o;50505:94::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;50571:9:::1;:20:::0;50505:94::o;32052:98::-;32108:13;32137:7;32130:14;;;;;:::i;51039:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;51113:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;33690:274::-:0;-1:-1:-1;;;;;33781:24:0;;5545:10;33781:24;;33773:63;;;;-1:-1:-1;;;33773:63:0;;16522:2:1;33773:63:0;;;16504:21:1;16561:2;16541:18;;;16534:30;16600:28;16580:18;;;16573:56;16646:18;;33773:63:0;16320:350:1;33773:63:0;5545:10;33845:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33845:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33845:53:0;;;;;;;;;;33910:48;;9173:41:1;;;33845:42:0;;5545:10;33910:48;;9146:18:1;33910:48:0;;;;;;;33690:274;;:::o;34697:311::-;34834:28;34844:4;34850:2;34854:7;34834:9;:28::i;:::-;34885:48;34908:4;34914:2;34918:7;34927:5;34885:22;:48::i;:::-;34869:133;;;;-1:-1:-1;;;34869:133:0;;;;;;;:::i;51462:350::-;51535:13;51569:16;51577:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;51569:16;51561:76;;;;-1:-1:-1;;;51561:76:0;;16106:2:1;51561:76:0;;;16088:21:1;16145:2;16125:18;;;16118:30;16184:34;16164:18;;;16157:62;-1:-1:-1;;;16235:18:1;;;16228:45;16290:19;;51561:76:0;15904:411:1;51561:76:0;51651:8;;;;;;;51648:61;;51688:9;51681:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51462:350;;;:::o;51648:61::-;51750:16;:14;:16::i;:::-;51768:25;51785:7;51768:16;:25::i;:::-;51733:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51719:85;;51462:350;;;:::o;50704:104::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;50772:20:::1;:28:::0;;-1:-1:-1;;50772:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50704:104::o;49063:718::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;20344:2:1;2309:63:0;;;20326:21:1;20383:2;20363:18;;;20356:30;20422:33;20402:18;;;20395:61;20473:18;;2309:63:0;20142:355:1;2309:63:0;1719:1;2450:7;:18;51397:10:::1;51411:9;51397:23;51389:53;;;::::0;-1:-1:-1;;;51389:53:0;;11928:2:1;51389:53:0::1;::::0;::::1;11910:21:1::0;11967:2;11947:18;;;11940:30;-1:-1:-1;;;11986:18:1;;;11979:47;12043:18;;51389:53:0::1;11726:341:1::0;51389:53:0::1;49188:20:::2;::::0;::::2;;49180:54;;;::::0;-1:-1:-1;;;49180:54:0;;10054:2:1;49180:54:0::2;::::0;::::2;10036:21:1::0;10093:2;10073:18;;;10066:30;-1:-1:-1;;;10112:18:1;;;10105:51;10173:18;;49180:54:0::2;9852:345:1::0;49180:54:0::2;49253:33;49267:10;49279:6;49253:13;:33::i;:::-;49245:70;;;::::0;-1:-1:-1;;;49245:70:0;;12678:2:1;49245:70:0::2;::::0;::::2;12660:21:1::0;12717:2;12697:18;;;12690:30;12756:26;12736:18;;;12729:54;12800:18;;49245:70:0::2;12476:348:1::0;49245:70:0::2;49351:7;49334:13;;:24;;49326:64;;;::::0;-1:-1:-1;;;49326:64:0;;13437:2:1;49326:64:0::2;::::0;::::2;13419:21:1::0;13476:2;13456:18;;;13449:30;13515:29;13495:18;;;13488:57;13562:18;;49326:64:0::2;13235:351:1::0;49326:64:0::2;49435:10;49426:20;::::0;;;:8:::2;:20;::::0;;;;;:30:::2;::::0;49449:7;;49426:30:::2;:::i;:::-;49409:13;;:47;;49401:90;;;::::0;-1:-1:-1;;;49401:90:0;;10404:2:1;49401:90:0::2;::::0;::::2;10386:21:1::0;10443:2;10423:18;;;10416:30;10482:32;10462:18;;;10455:60;10532:18;;49401:90:0::2;10202:354:1::0;49401:90:0::2;49537:7;49523:11;;:21;;;;:::i;:::-;49510:9;:34;49502:72;;;::::0;-1:-1:-1;;;49502:72:0;;14219:2:1;49502:72:0::2;::::0;::::2;14201:21:1::0;14258:2;14238:18;;;14231:30;-1:-1:-1;;;14277:18:1;;;14270:55;14342:18;;49502:72:0::2;14017:349:1::0;49502:72:0::2;49623:12;::::0;49604:13:::2;::::0;49594:23:::2;::::0;:7;:23:::2;:::i;:::-;49593:43;;49585:68;;;;-1:-1:-1::0;;;49585:68:0::2;;;;;;;:::i;:::-;49675:10;49666:20;::::0;;;:8:::2;:20;::::0;;;;:31;;49690:7;;49666:20;:31:::2;::::0;49690:7;;49666:31:::2;:::i;:::-;::::0;;;-1:-1:-1;49708:30:0::2;::::0;-1:-1:-1;49718:10:0::2;49730:7:::0;49708:9:::2;:30::i;:::-;49766:7;49749:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;;49063:718:0:o;48820:235::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48941:12:::1;::::0;48922:13:::1;::::0;48912:23:::1;::::0;:7;:23:::1;:::i;:::-;48911:43;;48903:68;;;;-1:-1:-1::0;;;48903:68:0::1;;;;;;;:::i;:::-;48984:28;48994:8;49004:7;48984:9;:28::i;:::-;49040:7;49023:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;48820:235:0:o;7646:201::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7735:22:0;::::1;7727:73;;;::::0;-1:-1:-1;;;7727:73:0;;11110:2:1;7727:73:0::1;::::0;::::1;11092:21:1::0;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;-1:-1:-1;;;11239:18:1;;;11232:36;11285:19;;7727:73:0::1;10908:402:1::0;7727:73:0::1;7811:28;7830:8;7811:18;:28::i;38934:172::-:0;39031:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39031:29:0;-1:-1:-1;;;;;39031:29:0;;;;;;;;;39072:28;;39031:24;;39072:28;;;;;;;38934:172;;;:::o;37299:1529::-;37396:35;37434:20;37446:7;37434:11;:20::i;:::-;37505:18;;37396:58;;-1:-1:-1;37463:22:0;;-1:-1:-1;;;;;37489:34:0;5545:10;-1:-1:-1;;;;;37489:34:0;;:81;;;-1:-1:-1;5545:10:0;37534:20;37546:7;37534:11;:20::i;:::-;-1:-1:-1;;;;;37534:36:0;;37489:81;:142;;;-1:-1:-1;37598:18:0;;37581:50;;5545:10;34027:186;:::i;37581:50::-;37463:169;;37657:17;37641:101;;;;-1:-1:-1;;;37641:101:0;;16877:2:1;37641:101:0;;;16859:21:1;16916:2;16896:18;;;16889:30;16955:34;16935:18;;;16928:62;-1:-1:-1;;;17006:18:1;;;16999:48;17064:19;;37641:101:0;16675:414:1;37641:101:0;37789:4;-1:-1:-1;;;;;37767:26:0;:13;:18;;;-1:-1:-1;;;;;37767:26:0;;37751:98;;;;-1:-1:-1;;;37751:98:0;;14985:2:1;37751:98:0;;;14967:21:1;15024:2;15004:18;;;14997:30;15063:34;15043:18;;;15036:62;-1:-1:-1;;;15114:18:1;;;15107:36;15160:19;;37751:98:0;14783:402:1;37751:98:0;-1:-1:-1;;;;;37864:16:0;;37856:66;;;;-1:-1:-1;;;37856:66:0;;13031:2:1;37856:66:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:34;13089:18;;;13082:62;-1:-1:-1;;;13160:18:1;;;13153:35;13205:19;;37856:66:0;12829:401:1;37856:66:0;38031:49;38048:1;38052:7;38061:13;:18;;;38031:8;:49::i;:::-;-1:-1:-1;;;;;38089:18:0;;;;;;:12;:18;;;;;:31;;38119:1;;38089:18;:31;;38119:1;;-1:-1:-1;;;;;38089:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38089:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38127:16:0;;-1:-1:-1;38127:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38127:16:0;;:29;;-1:-1:-1;;38127:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38127:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38186:43:0;;;;;;;;-1:-1:-1;;;;;38186:43:0;;;;;-1:-1:-1;;;;;38212:15:0;38186:43;;;;;;;;;-1:-1:-1;38163:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38163:66:0;-1:-1:-1;;;;;;38163:66:0;;;;;;;;;;;38479:11;38175:7;-1:-1:-1;38479:11:0;:::i;:::-;38542:1;38501:24;;;:11;:24;;;;;:29;38457:33;;-1:-1:-1;;;;;;38501:29:0;38497:236;;38559:20;38567:11;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;38559:20;38555:171;;;38619:97;;;;;;;;38646:18;;-1:-1:-1;;;;;38619:97:0;;;;;;38677:28;;;;-1:-1:-1;;;;;38619:97:0;;;;;;;;;-1:-1:-1;38592:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38592:124:0;-1:-1:-1;;;;;;38592:124:0;;;;;;;;;;;;38555:171;38765:7;38761:2;-1:-1:-1;;;;;38746:27:0;38755:4;-1:-1:-1;;;;;38746:27:0;;;;;;;;;;;38780:42;37389:1439;;;37299:1529;;;:::o;35358:98::-;35423:27;35433:2;35437:8;35423:27;;;;;;;;;;;;:9;:27::i;31060:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31177:16:0;31185:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;31177:16;31169:71;;;;-1:-1:-1;;;31169:71:0;;11517:2:1;31169:71:0;;;11499:21:1;11556:2;11536:18;;;11529:30;11595:34;11575:18;;;11568:62;-1:-1:-1;;;11646:18:1;;;11639:40;11696:19;;31169:71:0;11315:406:1;31169:71:0;31249:26;31297:12;31286:7;:23;31282:93;;31341:22;31351:12;31341:7;:22;:::i;:::-;:26;;31366:1;31341:26;:::i;:::-;31320:47;;31282:93;31403:7;31383:212;31420:18;31412:4;:26;31383:212;;31457:31;31491:17;;;:11;:17;;;;;;;;;31457:51;;;;;;;;;-1:-1:-1;;;;;31457:51:0;;;;;-1:-1:-1;;;31457:51:0;;;-1:-1:-1;;;;;31457:51:0;;;;;;;;31521:28;31517:71;;31569:9;31060:606;-1:-1:-1;;;;31060:606:0:o;31517:71::-;-1:-1:-1;31440:6:0;;;;:::i;:::-;;;;31383:212;;;-1:-1:-1;31603:57:0;;-1:-1:-1;;;31603:57:0;;20704:2:1;31603:57:0;;;20686:21:1;20743:2;20723:18;;;20716:30;20782:34;20762:18;;;20755:62;-1:-1:-1;;;20833:18:1;;;20826:45;20888:19;;31603:57:0;20502:411:1;8007:191:0;8100:6;;;-1:-1:-1;;;;;8117:17:0;;;-1:-1:-1;;;;;;8117:17:0;;;;;;;8150:40;;8100:6;;;8117:17;8100:6;;8150:40;;8081:16;;8150:40;8070:128;8007:191;:::o;40649:690::-;40786:4;-1:-1:-1;;;;;40803:13:0;;9731:19;:23;40799:535;;40842:72;;-1:-1:-1;;;40842:72:0;;-1:-1:-1;;;;;40842:36:0;;;;;:72;;5545:10;;40893:4;;40899:7;;40908:5;;40842:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40842:72:0;;;;;;;;-1:-1:-1;;40842:72:0;;;;;;;;;;;;:::i;:::-;;;40829:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41073:13:0;;41069:215;;41106:61;;-1:-1:-1;;;41106:61:0;;;;;;;:::i;41069:215::-;41252:6;41246:13;41237:6;41233:2;41229:15;41222:38;40829:464;-1:-1:-1;;;;;;40964:55:0;-1:-1:-1;;;40964:55:0;;-1:-1:-1;40957:62:0;;40799:535;-1:-1:-1;41322:4:0;40799:535;40649:690;;;;;;:::o;51249:101::-;51297:13;51329;51322:20;;;;;:::i;3029:723::-;3085:13;3306:10;3302:53;;-1:-1:-1;;3333:10:0;;;;;;;;;;;;-1:-1:-1;;;3333:10:0;;;;;3029:723::o;3302:53::-;3380:5;3365:12;3421:78;3428:9;;3421:78;;3454:8;;;;:::i;:::-;;-1:-1:-1;3477:10:0;;-1:-1:-1;3485:2:0;3477:10;;:::i;:::-;;;3421:78;;;3509:19;3541:6;-1:-1:-1;;;;;3531:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3531:17:0;;3509:39;;3559:154;3566:10;;3559:154;;3593:11;3603:1;3593:11;;:::i;:::-;;-1:-1:-1;3662:10:0;3670:2;3662:5;:10;:::i;:::-;3649:24;;:2;:24;:::i;:::-;3636:39;;3619:6;3626;3619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3619:56:0;;;;;;;;-1:-1:-1;3690:11:0;3699:2;3690:11;;:::i;:::-;;;3559:154;;35795:1272;35900:20;35923:12;-1:-1:-1;;;;;35950:16:0;;35942:62;;;;-1:-1:-1;;;35942:62:0;;19527:2:1;35942:62:0;;;19509:21:1;19566:2;19546:18;;;19539:30;19605:34;19585:18;;;19578:62;-1:-1:-1;;;19656:18:1;;;19649:31;19697:19;;35942:62:0;19325:397:1;35942:62:0;36141:21;36149:12;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;36141:21;36140:22;36132:64;;;;-1:-1:-1;;;36132:64:0;;19169:2:1;36132:64:0;;;19151:21:1;19208:2;19188:18;;;19181:30;19247:31;19227:18;;;19220:59;19296:18;;36132:64:0;18967:353:1;36132:64:0;36223:12;36211:8;:24;;36203:71;;;;-1:-1:-1;;;36203:71:0;;21534:2:1;36203:71:0;;;21516:21:1;21573:2;21553:18;;;21546:30;21612:34;21592:18;;;21585:62;-1:-1:-1;;;21663:18:1;;;21656:32;21705:19;;36203:71:0;21332:398:1;36203:71:0;-1:-1:-1;;;;;36386:16:0;;36353:30;36386:16;;;:12;:16;;;;;;;;;36353:49;;;;;;;;;-1:-1:-1;;;;;36353:49:0;;;;;-1:-1:-1;;;36353:49:0;;;;;;;;;;;36428:119;;;;;;;;36448:19;;36353:49;;36428:119;;;36448:39;;36478:8;;36448:39;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;36531:8;36496:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;;-1:-1:-1;;;;;36409:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36409:138:0;;;;;;;;;;;;36582:43;;;;;;;;;;-1:-1:-1;;;;;36608:15:0;36582:43;;;;;;;;36554:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36554:71:0;-1:-1:-1;;;;;;36554:71:0;;;;;;;;;;;;;;;;;;36566:12;;36678:281;36702:8;36698:1;:12;36678:281;;;36731:38;;36756:12;;-1:-1:-1;;;;;36731:38:0;;;36748:1;;36731:38;;36748:1;;36731:38;36796:59;36827:1;36831:2;36835:12;36849:5;36796:22;:59::i;:::-;36778:150;;;;-1:-1:-1;;;36778:150:0;;;;;;;:::i;:::-;36937:14;;;;:::i;:::-;;;;36712:3;;;;;:::i;:::-;;;;36678:281;;;-1:-1:-1;36967:12:0;:27;;;37001:60;51820:525;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;:::-;1637:39;1496:186;-1:-1:-1;;;1496:186:1:o;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:422::-;3049:6;3057;3110:2;3098:9;3089:7;3085:23;3081:32;3078:52;;;3126:1;3123;3116:12;3078:52;3149:29;3168:9;3149:29;:::i;:::-;3139:39;;3229:2;3218:9;3214:18;3201:32;-1:-1:-1;;;;;3248:6:1;3245:30;3242:50;;;3288:1;3285;3278:12;3242:50;3311:61;3364:7;3355:6;3344:9;3340:22;3311:61;:::i;:::-;3301:71;;;2956:422;;;;;:::o;3383:254::-;3448:6;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:35;3627:2;3616:9;3612:18;3596:35;:::i;3642:254::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;3886:2;3871:18;;;;3858:32;;-1:-1:-1;;;3642:254:1:o;3901:180::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4049:26;4065:9;4049:26;:::i;4086:180::-;4145:6;4198:2;4186:9;4177:7;4173:23;4169:32;4166:52;;;4214:1;4211;4204:12;4166:52;-1:-1:-1;4237:23:1;;4086:180;-1:-1:-1;4086:180:1:o;4271:245::-;4329:6;4382:2;4370:9;4361:7;4357:23;4353:32;4350:52;;;4398:1;4395;4388:12;4350:52;4437:9;4424:23;4456:30;4480:5;4456:30;:::i;4521:249::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4691:9;4685:16;4710:30;4734:5;4710:30;:::i;4775:450::-;4844:6;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4953:9;4940:23;-1:-1:-1;;;;;4978:6:1;4975:30;4972:50;;;5018:1;5015;5008:12;4972:50;5041:22;;5094:4;5086:13;;5082:27;-1:-1:-1;5072:55:1;;5123:1;5120;5113:12;5072:55;5146:73;5211:7;5206:2;5193:16;5188:2;5184;5180:11;5146:73;:::i;5415:254::-;5483:6;5491;5544:2;5532:9;5523:7;5519:23;5515:32;5512:52;;;5560:1;5557;5550:12;5512:52;5596:9;5583:23;5573:33;;5625:38;5659:2;5648:9;5644:18;5625:38;:::i;5674:416::-;5767:6;5775;5828:2;5816:9;5807:7;5803:23;5799:32;5796:52;;;5844:1;5841;5834:12;5796:52;5880:9;5867:23;5857:33;;5941:2;5930:9;5926:18;5913:32;-1:-1:-1;;;;;5960:6:1;5957:30;5954:50;;;6000:1;5997;5990:12;6095:257;6136:3;6174:5;6168:12;6201:6;6196:3;6189:19;6217:63;6273:6;6266:4;6261:3;6257:14;6250:4;6243:5;6239:16;6217:63;:::i;:::-;6334:2;6313:15;-1:-1:-1;;6309:29:1;6300:39;;;;6341:4;6296:50;;6095:257;-1:-1:-1;;6095:257:1:o;6843:637::-;7123:3;7161:6;7155:13;7177:53;7223:6;7218:3;7211:4;7203:6;7199:17;7177:53;:::i;:::-;7293:13;;7252:16;;;;7315:57;7293:13;7252:16;7349:4;7337:17;;7315:57;:::i;:::-;-1:-1:-1;;;7394:20:1;;7423:22;;;7472:1;7461:13;;6843:637;-1:-1:-1;;;;6843:637:1:o;7903:488::-;-1:-1:-1;;;;;8172:15:1;;;8154:34;;8224:15;;8219:2;8204:18;;8197:43;8271:2;8256:18;;8249:34;;;8319:3;8314:2;8299:18;;8292:31;;;8097:4;;8340:45;;8365:19;;8357:6;8340:45;:::i;:::-;8332:53;7903:488;-1:-1:-1;;;;;;7903:488:1:o;8396:632::-;8567:2;8619:21;;;8689:13;;8592:18;;;8711:22;;;8538:4;;8567:2;8790:15;;;;8764:2;8749:18;;;8538:4;8833:169;8847:6;8844:1;8841:13;8833:169;;;8908:13;;8896:26;;8977:15;;;;8942:12;;;;8869:1;8862:9;8833:169;;;-1:-1:-1;9019:3:1;;8396:632;-1:-1:-1;;;;;;8396:632:1:o;9225:219::-;9374:2;9363:9;9356:21;9337:4;9394:44;9434:2;9423:9;9419:18;9411:6;9394:44;:::i;15190:356::-;15392:2;15374:21;;;15411:18;;;15404:30;15470:34;15465:2;15450:18;;15443:62;15537:2;15522:18;;15190:356::o;17447:336::-;17649:2;17631:21;;;17688:2;17668:18;;;17661:30;-1:-1:-1;;;17722:2:1;17707:18;;17700:42;17774:2;17759:18;;17447:336::o;18547:415::-;18749:2;18731:21;;;18788:2;18768:18;;;18761:30;18827:34;18822:2;18807:18;;18800:62;-1:-1:-1;;;18893:2:1;18878:18;;18871:49;18952:3;18937:19;;18547:415::o;21917:275::-;21988:2;21982:9;22053:2;22034:13;;-1:-1:-1;;22030:27:1;22018:40;;-1:-1:-1;;;;;22073:34:1;;22109:22;;;22070:62;22067:88;;;22135:18;;:::i;:::-;22171:2;22164:22;21917:275;;-1:-1:-1;21917:275:1:o;22197:253::-;22237:3;-1:-1:-1;;;;;22326:2:1;22323:1;22319:10;22356:2;22353:1;22349:10;22387:3;22383:2;22379:12;22374:3;22371:21;22368:47;;;22395:18;;:::i;:::-;22431:13;;22197:253;-1:-1:-1;;;;22197:253:1:o;22455:128::-;22495:3;22526:1;22522:6;22519:1;22516:13;22513:39;;;22532:18;;:::i;:::-;-1:-1:-1;22568:9:1;;22455:128::o;22588:120::-;22628:1;22654;22644:35;;22659:18;;:::i;:::-;-1:-1:-1;22693:9:1;;22588:120::o;22713:168::-;22753:7;22819:1;22815;22811:6;22807:14;22804:1;22801:21;22796:1;22789:9;22782:17;22778:45;22775:71;;;22826:18;;:::i;:::-;-1:-1:-1;22866:9:1;;22713:168::o;22886:246::-;22926:4;-1:-1:-1;;;;;23039:10:1;;;;23009;;23061:12;;;23058:38;;;23076:18;;:::i;:::-;23113:13;;22886:246;-1:-1:-1;;;22886:246:1:o;23137:125::-;23177:4;23205:1;23202;23199:8;23196:34;;;23210:18;;:::i;:::-;-1:-1:-1;23247:9:1;;23137:125::o;23267:258::-;23339:1;23349:113;23363:6;23360:1;23357:13;23349:113;;;23439:11;;;23433:18;23420:11;;;23413:39;23385:2;23378:10;23349:113;;;23480:6;23477:1;23474:13;23471:48;;;-1:-1:-1;;23515:1:1;23497:16;;23490:27;23267:258::o;23530:136::-;23569:3;23597:5;23587:39;;23606:18;;:::i;:::-;-1:-1:-1;;;23642:18:1;;23530:136::o;23671:380::-;23750:1;23746:12;;;;23793;;;23814:61;;23868:4;23860:6;23856:17;23846:27;;23814:61;23921:2;23913:6;23910:14;23890:18;23887:38;23884:161;;;23967:10;23962:3;23958:20;23955:1;23948:31;24002:4;23999:1;23992:15;24030:4;24027:1;24020:15;23884:161;;23671:380;;;:::o;24056:135::-;24095:3;-1:-1:-1;;24116:17:1;;24113:43;;;24136:18;;:::i;:::-;-1:-1:-1;24183:1:1;24172:13;;24056:135::o;24196:112::-;24228:1;24254;24244:35;;24259:18;;:::i;:::-;-1:-1:-1;24293:9:1;;24196:112::o;24313:127::-;24374:10;24369:3;24365:20;24362:1;24355:31;24405:4;24402:1;24395:15;24429:4;24426:1;24419:15;24445:127;24506:10;24501:3;24497:20;24494:1;24487:31;24537:4;24534:1;24527:15;24561:4;24558:1;24551:15;24577:127;24638:10;24633:3;24629:20;24626:1;24619:31;24669:4;24666:1;24659:15;24693:4;24690:1;24683:15;24709:127;24770:10;24765:3;24761:20;24758:1;24751:31;24801:4;24798:1;24791:15;24825:4;24822:1;24815:15;24841:131;-1:-1:-1;;;;;;24915:32:1;;24905:43;;24895:71;;24962:1;24959;24952:12
Swarm Source
ipfs://0e2ba0452439939b86b49188c914ed212a787236f972e81cabdfe25c32d12a17
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.