ERC-721
Overview
Max Total Supply
6,142 RZYC
Holders
551
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RZYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RareZombieYachtClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-29 */ /** ██▀███ ▄▄▄ ██▀███ ▓█████ ▒███████▒ ▒█████ ███▄ ▄███▓ ▄▄▄▄ ██▓▓█████ ██████ ▓██ ▒ ██▒▒████▄ ▓██ ▒ ██▒▓█ ▀ ▒ ▒ ▒ ▄▀░▒██▒ ██▒▓██▒▀█▀ ██▒▓█████▄ ▓██▒▓█ ▀ ▒██ ▒ ▓██ ░▄█ ▒▒██ ▀█▄ ▓██ ░▄█ ▒▒███ ░ ▒ ▄▀▒░ ▒██░ ██▒▓██ ▓██░▒██▒ ▄██▒██▒▒███ ░ ▓██▄ ▒██▀▀█▄ ░██▄▄▄▄██ ▒██▀▀█▄ ▒▓█ ▄ ▄▀▒ ░▒██ ██░▒██ ▒██ ▒██░█▀ ░██░▒▓█ ▄ ▒ ██▒ ░██▓ ▒██▒ ▓█ ▓██▒░██▓ ▒██▒░▒████▒ ▒███████▒░ ████▓▒░▒██▒ ░██▒░▓█ ▀█▓░██░░▒████▒▒██████▒▒ ░ ▒▓ ░▒▓░ ▒▒ ▓▒█░░ ▒▓ ░▒▓░░░ ▒░ ░ ░▒▒ ▓░▒░▒░ ▒░▒░▒░ ░ ▒░ ░ ░░▒▓███▀▒░▓ ░░ ▒░ ░▒ ▒▓▒ ▒ ░ ░▒ ░ ▒░ ▒ ▒▒ ░ ░▒ ░ ▒░ ░ ░ ░ ░░▒ ▒ ░ ▒ ░ ▒ ▒░ ░ ░ ░▒░▒ ░ ▒ ░ ░ ░ ░░ ░▒ ░ ░ ░░ ░ ░ ▒ ░░ ░ ░ ░ ░ ░ ░ ░░ ░ ░ ▒ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ */ // SPDX-License-Identifier: MIT // 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/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/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/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } 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); } } pragma solidity ^0.8.7; interface IMain { function balanceOf( address _address) external view returns (uint); } contract RareZombieYachtClub is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.005 ether; uint256 public holderMintcost = 0.004 ether; uint16 public constant maxSupply = 10000; uint8 public maxMintAmountPerTx = 10; bool public holderMintpaused = true; bool public paused = true; bool public reveal =false; mapping (address => uint16) public NFTPerAddress; mapping (address => uint16) public NFTPerHolderAddress; uint8 public maxMintAmountPerWallet = 10; address public mainAddress = 0xBC429421EE207430D220a84f6014B705e3A480a8; IMain Main = IMain(mainAddress); function setMainAddress(address contractAddr) external onlyOwner { mainAddress = contractAddr; Main= IMain(mainAddress); } constructor() ERC721A("Rare Zombie Yacht Club", "RZYC") { } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function mint(uint8 _mintAmount) external payable { uint16 nft = NFTPerAddress[msg.sender]; uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount <= maxMintAmountPerTx, "Exceeds max nft per transaction."); require(!paused, "The contract is paused!"); require(nft + _mintAmount <= maxMintAmountPerWallet , "Exceeds max nft allowed per wallet"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = nft + _mintAmount; delete totalSupply; delete _mintAmount; } function holdermint(uint8 _mintAmount) external payable { uint16 holderBalance = uint16(Main.balanceOf(msg.sender)); uint16 nft = NFTPerHolderAddress[msg.sender]; uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount <= maxMintAmountPerTx, "Exceeds max nft per transaction."); require(!holderMintpaused, "The contract is paused!"); require(nft + _mintAmount <= maxMintAmountPerWallet , "Exceeds max nft allowed per wallet"); uint16 maxFreeMintAmountPerWallet = holderBalance / 3; if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= holderMintcost * _mintAmount, "Insufficient funds!"); } else { uint16 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= holderMintcost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerHolderAddress[msg.sender] = nft + _mintAmount; delete totalSupply; delete _mintAmount; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setMaxNftPerAddress(uint8 _limit) external onlyOwner{ maxMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setPublicMintPaused() external onlyOwner { paused = !paused; holderMintpaused = true; } function setHolderMintPaused() external onlyOwner { holderMintpaused = !holderMintpaused; } function setPublicMintCost(uint _cost) external onlyOwner{ cost = _cost; } function setHolderMintCost(uint _cost) external onlyOwner{ holderMintcost = _cost; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerHolderAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderMintcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderMintpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"holdermint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setHolderMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setHolderMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setMainAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNftPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200018e565b506611c37937e08000600c55660e35fa931a0000600d55600e805463ffffffff19166201010a1790556011805474bc429421ee207430d220a84f6014b705e3a480a80a6001600160a81b03199091161790819055601280546001600160a01b0319166101009092046001600160a01b0316919091179055348015620000ac57600080fd5b50604080518082018252601681527f52617265205a6f6d62696520596163687420436c756200000000000000000000602080830191825283518085019094526004845263525a594360e01b9084015281519192916200010e916002916200018e565b508051620001249060039060208401906200018e565b5050600080555062000136336200013c565b62000271565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019c9062000234565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b6126ce80620002816000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610721578063db9771f514610737578063dbd37cf414610757578063e985e9c514610788578063eef440af146107d1578063f2fde38b146107e657600080fd5b8063b88d4fde14610694578063bc951b91146106b4578063c1179f2b146106ce578063c87b56dd146106e1578063cffb6e201461070157600080fd5b806394354fd01161010857806394354fd0146105d357806395d89b41146105ff578063a22cb46514610614578063a475b5dd14610634578063aa06229014610655578063ad4d38c51461067557600080fd5b806370a0823114610540578063715018a6146105605780637ec4a6591461057557806380eae578146105955780638da5cb5b146105b557600080fd5b80632f6f98e1116101dd57806349e5fa7b116101a157806349e5fa7b1461047f57806349f9075e146104945780635c975abb146104d85780635cae248d146104f85780636352211e1461050d5780636ecd23061461052d57600080fd5b80632f6f98e1146103f55780633bd64968146104155780633ccfd60b1461042a57806342842e0e1461043f57806344c70e881461045f57600080fd5b80631067fcc71161022f5780631067fcc71461034257806310774cec1461036257806313faede61461038657806318160ddd1461039c57806318b341d6146103b557806323b872dd146103d557600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630cdd42341461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461213c565b610806565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610858565b60405161029891906123e4565b3480156102cf57600080fd5b506102e36102de3660046121e4565b6108ea565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612112565b61092e565b005b34801561032957600080fd5b506011546102e39061010090046001600160a01b031681565b34801561034e57600080fd5b5061031b61035d366004612176565b6109bc565b34801561036e57600080fd5b50610378600d5481565b604051908152602001610298565b34801561039257600080fd5b50610378600c5481565b3480156103a857600080fd5b5060015460005403610378565b3480156103c157600080fd5b5061031b6103d0366004612216565b610a06565b3480156103e157600080fd5b5061031b6103f036600461201e565b610a46565b34801561040157600080fd5b5061031b6104103660046121bf565b610a51565b34801561042157600080fd5b5061031b610ac9565b34801561043657600080fd5b5061031b610b14565b34801561044b57600080fd5b5061031b61045a36600461201e565b610b6d565b34801561046b57600080fd5b5061031b61047a3660046121e4565b610b88565b34801561048b57600080fd5b5061031b610bb7565b3480156104a057600080fd5b506104c56104af366004611fd0565b60106020526000908152604090205461ffff1681565b60405161ffff9091168152602001610298565b3480156104e457600080fd5b50600e5461028c9062010000900460ff1681565b34801561050457600080fd5b5061031b610c0a565b34801561051957600080fd5b506102e36105283660046121e4565b610c51565b61031b61053b366004612216565b610c63565b34801561054c57600080fd5b5061037861055b366004611fd0565b610e0e565b34801561056c57600080fd5b5061031b610e5d565b34801561058157600080fd5b5061031b610590366004612176565b610e93565b3480156105a157600080fd5b5061031b6105b03660046121e4565b610ed0565b3480156105c157600080fd5b506008546001600160a01b03166102e3565b3480156105df57600080fd5b50600e546105ed9060ff1681565b60405160ff9091168152602001610298565b34801561060b57600080fd5b506102b6610eff565b34801561062057600080fd5b5061031b61062f3660046120d6565b610f0e565b34801561064057600080fd5b50600e5461028c906301000000900460ff1681565b34801561066157600080fd5b5061031b610670366004612216565b610fa4565b34801561068157600080fd5b50600e5461028c90610100900460ff1681565b3480156106a057600080fd5b5061031b6106af36600461205a565b610fe4565b3480156106c057600080fd5b506011546105ed9060ff1681565b61031b6106dc366004612216565b611035565b3480156106ed57600080fd5b506102b66106fc3660046121e4565b6112da565b34801561070d57600080fd5b5061031b61071c366004612231565b61144b565b34801561072d57600080fd5b506104c561271081565b34801561074357600080fd5b5061031b610752366004611fd0565b61151e565b34801561076357600080fd5b506104c5610772366004611fd0565b600f6020526000908152604090205461ffff1681565b34801561079457600080fd5b5061028c6107a3366004611feb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107dd57600080fd5b506102b661158e565b3480156107f257600080fd5b5061031b610801366004611fd0565b61161c565b60006001600160e01b031982166380ac58cd60e01b148061083757506001600160e01b03198216635b5e139f60e01b145b8061085257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610867906125c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610893906125c0565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f5826116b7565b610912576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093982610c51565b9050806001600160a01b0316836001600160a01b0316141561096e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098e575061098c81336107a3565b155b156109ac576040516367d9dca160e11b815260040160405180910390fd5b6109b78383836116e2565b505050565b6008546001600160a01b031633146109ef5760405162461bcd60e51b81526004016109e690612439565b60405180910390fd5b8051610a0290600b906020840190611e94565b5050565b6008546001600160a01b03163314610a305760405162461bcd60e51b81526004016109e690612439565b6011805460ff191660ff92909216919091179055565b6109b783838361173e565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b81526004016109e690612439565b6000610a8a6001546000540390565b9050612710610a9984836124c8565b61ffff161115610abb5760405162461bcd60e51b81526004016109e69061246e565b6109b7828461ffff1661192e565b6008546001600160a01b03163314610af35760405162461bcd60e51b81526004016109e690612439565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610b3e5760405162461bcd60e51b81526004016109e690612439565b6040514790339082156108fc029083906000818181858888f19350505050158015610a02573d6000803e3d6000fd5b6109b783838360405180602001604052806000815250610fe4565b6008546001600160a01b03163314610bb25760405162461bcd60e51b81526004016109e690612439565b600d55565b6008546001600160a01b03163314610be15760405162461bcd60e51b81526004016109e690612439565b600e805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6008546001600160a01b03163314610c345760405162461bcd60e51b81526004016109e690612439565b600e805461ff001981166101009182900460ff1615909102179055565b6000610c5c82611948565b5192915050565b336000908152600f602052604081205461ffff1690610c856001546000540390565b9050612710610c9760ff8516836124c8565b61ffff161115610cb95760405162461bcd60e51b81526004016109e69061246e565b600e5460ff9081169084161115610d125760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206e667420706572207472616e73616374696f6e2e60448201526064016109e6565b600e5462010000900460ff1615610d655760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109e6565b60115460ff90811690610d7a908516846124c8565b61ffff161115610d9c5760405162461bcd60e51b81526004016109e6906123f7565b8260ff16600c54610dad919061253b565b341015610dcc5760405162461bcd60e51b81526004016109e69061249b565b610dd9338460ff1661192e565b610de660ff8416836124c8565b336000908152600f60205260409020805461ffff191661ffff92909216919091179055505050565b60006001600160a01b038216610e37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e875760405162461bcd60e51b81526004016109e690612439565b610e916000611a64565b565b6008546001600160a01b03163314610ebd5760405162461bcd60e51b81526004016109e690612439565b8051610a02906009906020840190611e94565b6008546001600160a01b03163314610efa5760405162461bcd60e51b81526004016109e690612439565b600c55565b606060038054610867906125c0565b6001600160a01b038216331415610f385760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610fce5760405162461bcd60e51b81526004016109e690612439565b600e805460ff191660ff92909216919091179055565b610fef84848461173e565b6001600160a01b0383163b15158015611011575061100f84848484611ab6565b155b1561102f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561107957600080fd5b505afa15801561108d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b191906121fd565b33600090815260106020526040812054600154915492935061ffff1691036127106110df60ff8616836124c8565b61ffff1611156111015760405162461bcd60e51b81526004016109e69061246e565b600e5460ff908116908516111561115a5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206e667420706572207472616e73616374696f6e2e60448201526064016109e6565b600e54610100900460ff16156111ac5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109e6565b60115460ff908116906111c1908616846124c8565b61ffff1611156111e35760405162461bcd60e51b81526004016109e6906123f7565b60006111f0600385612506565b90508061ffff168361ffff1610611236578460ff16600d54611212919061253b565b3410156112315760405162461bcd60e51b81526004016109e69061249b565b611296565b60006112458460ff88166124c8565b90508161ffff168161ffff16111561129457611261828261255a565b90508061ffff16600d54611275919061253b565b3410156112945760405162461bcd60e51b81526004016109e69061249b565b505b6112a3338660ff1661192e565b6112b060ff8616846124c8565b336000908152601060205260409020805461ffff191661ffff929092169190911790555050505050565b60606112e5826116b7565b6113495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e6565b600e546301000000900460ff166113ec57600b8054611367906125c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611393906125c0565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b50505050509050919050565b60006113f6611bae565b905060008151116114165760405180602001604052806000815250611444565b8061142084611bbd565b600a604051602001611434939291906122e3565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114755760405162461bcd60e51b81526004016109e690612439565b60006114846001546000540390565b905060006114958360ff871661253b565b90506127106114a88261ffff85166124ee565b11156114c65760405162461bcd60e51b81526004016109e69061246e565b60005b83811015611516576115048585838181106114e6576114e6612656565b90506020020160208101906114fb9190611fd0565b8760ff1661192e565b8061150e816125fb565b9150506114c9565b505050505050565b6008546001600160a01b031633146115485760405162461bcd60e51b81526004016109e690612439565b60118054610100600160a81b0319166101006001600160a01b039384168102919091179182905560128054919092049092166001600160a01b0319909216919091179055565b600b805461159b906125c0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c7906125c0565b80156116145780601f106115e957610100808354040283529160200191611614565b820191906000526020600020905b8154815290600101906020018083116115f757829003601f168201915b505050505081565b6008546001600160a01b031633146116465760405162461bcd60e51b81526004016109e690612439565b6001600160a01b0381166116ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e6565b6116b481611a64565b50565b6000805482108015610852575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061174982611948565b9050836001600160a01b031681600001516001600160a01b0316146117805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061179e575061179e85336107a3565b806117b95750336117ae846108ea565b6001600160a01b0316145b9050806117d957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661180057604051633a954ecd60e21b815260040160405180910390fd5b61180c600084876116e2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166118e25760005482146118e2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a02828260405180602001604052806000815250611cbb565b604080516060810182526000808252602082018190529181019190915281600054811015611a4b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a495780516001600160a01b0316156119df579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a44579392505050565b6119df565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aeb9033908990889088906004016123a7565b602060405180830381600087803b158015611b0557600080fd5b505af1925050508015611b35575060408051601f3d908101601f19168201909252611b3291810190612159565b60015b611b90573d808015611b63576040519150601f19603f3d011682016040523d82523d6000602084013e611b68565b606091505b508051611b88576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610867906125c0565b606081611be15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0b5780611bf5816125fb565b9150611c049050600a83612527565b9150611be5565b60008167ffffffffffffffff811115611c2657611c2661266c565b6040519080825280601f01601f191660200182016040528015611c50576020820181803683370190505b5090505b8415611ba657611c6560018361257d565b9150611c72600a86612616565b611c7d9060306124ee565b60f81b818381518110611c9257611c92612656565b60200101906001600160f81b031916908160001a905350611cb4600a86612527565b9450611c54565b6109b783838360016000546001600160a01b038516611cec57604051622e076360e81b815260040160405180910390fd5b83611d0a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611dbc57506001600160a01b0387163b15155b15611e45575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e0d6000888480600101955088611ab6565b611e2a576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dc2578260005414611e4057600080fd5b611e8b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e46575b50600055611927565b828054611ea0906125c0565b90600052602060002090601f016020900481019282611ec25760008555611f08565b82601f10611edb57805160ff1916838001178555611f08565b82800160010185558215611f08579182015b82811115611f08578251825591602001919060010190611eed565b50611f14929150611f18565b5090565b5b80821115611f145760008155600101611f19565b600067ffffffffffffffff80841115611f4857611f4861266c565b604051601f8501601f19908116603f01168101908282118183101715611f7057611f7061266c565b81604052809350858152868686011115611f8957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fba57600080fd5b919050565b803560ff81168114611fba57600080fd5b600060208284031215611fe257600080fd5b61144482611fa3565b60008060408385031215611ffe57600080fd5b61200783611fa3565b915061201560208401611fa3565b90509250929050565b60008060006060848603121561203357600080fd5b61203c84611fa3565b925061204a60208501611fa3565b9150604084013590509250925092565b6000806000806080858703121561207057600080fd5b61207985611fa3565b935061208760208601611fa3565b925060408501359150606085013567ffffffffffffffff8111156120aa57600080fd5b8501601f810187136120bb57600080fd5b6120ca87823560208401611f2d565b91505092959194509250565b600080604083850312156120e957600080fd5b6120f283611fa3565b91506020830135801515811461210757600080fd5b809150509250929050565b6000806040838503121561212557600080fd5b61212e83611fa3565b946020939093013593505050565b60006020828403121561214e57600080fd5b813561144481612682565b60006020828403121561216b57600080fd5b815161144481612682565b60006020828403121561218857600080fd5b813567ffffffffffffffff81111561219f57600080fd5b8201601f810184136121b057600080fd5b611ba684823560208401611f2d565b600080604083850312156121d257600080fd5b823561ffff8116811461200757600080fd5b6000602082840312156121f657600080fd5b5035919050565b60006020828403121561220f57600080fd5b5051919050565b60006020828403121561222857600080fd5b61144482611fbf565b60008060006040848603121561224657600080fd5b61224f84611fbf565b9250602084013567ffffffffffffffff8082111561226c57600080fd5b818601915086601f83011261228057600080fd5b81358181111561228f57600080fd5b8760208260051b85010111156122a457600080fd5b6020830194508093505050509250925092565b600081518084526122cf816020860160208601612594565b601f01601f19169290920160200192915050565b6000845160206122f68285838a01612594565b8551918401916123098184848a01612594565b8554920191600090600181811c908083168061232657607f831692505b85831081141561234457634e487b7160e01b85526022600452602485fd5b808015612358576001811461236957612396565b60ff19851688528388019550612396565b60008b81526020902060005b8581101561238e5781548a820152908401908801612375565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123da908301846122b7565b9695505050505050565b60208152600061144460208301846122b7565b60208082526022908201527f45786365656473206d6178206e667420616c6c6f776564207065722077616c6c604082015261195d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff8083168185168083038211156124e5576124e561262a565b01949350505050565b600082198211156125015761250161262a565b500190565b600061ffff8084168061251b5761251b612640565b92169190910492915050565b60008261253657612536612640565b500490565b60008160001904831182151516156125555761255561262a565b500290565b600061ffff838116908316818110156125755761257561262a565b039392505050565b60008282101561258f5761258f61262a565b500390565b60005b838110156125af578181015183820152602001612597565b8381111561102f5750506000910152565b600181811c908216806125d457607f821691505b602082108114156125f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260f5761260f61262a565b5060010190565b60008261262557612625612640565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116b457600080fdfea26469706673582212201d08234b3ee90a1cee5147051c161025a9cbfd112e85e56f0a4c13155f26f95564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610721578063db9771f514610737578063dbd37cf414610757578063e985e9c514610788578063eef440af146107d1578063f2fde38b146107e657600080fd5b8063b88d4fde14610694578063bc951b91146106b4578063c1179f2b146106ce578063c87b56dd146106e1578063cffb6e201461070157600080fd5b806394354fd01161010857806394354fd0146105d357806395d89b41146105ff578063a22cb46514610614578063a475b5dd14610634578063aa06229014610655578063ad4d38c51461067557600080fd5b806370a0823114610540578063715018a6146105605780637ec4a6591461057557806380eae578146105955780638da5cb5b146105b557600080fd5b80632f6f98e1116101dd57806349e5fa7b116101a157806349e5fa7b1461047f57806349f9075e146104945780635c975abb146104d85780635cae248d146104f85780636352211e1461050d5780636ecd23061461052d57600080fd5b80632f6f98e1146103f55780633bd64968146104155780633ccfd60b1461042a57806342842e0e1461043f57806344c70e881461045f57600080fd5b80631067fcc71161022f5780631067fcc71461034257806310774cec1461036257806313faede61461038657806318160ddd1461039c57806318b341d6146103b557806323b872dd146103d557600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630cdd42341461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461213c565b610806565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610858565b60405161029891906123e4565b3480156102cf57600080fd5b506102e36102de3660046121e4565b6108ea565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612112565b61092e565b005b34801561032957600080fd5b506011546102e39061010090046001600160a01b031681565b34801561034e57600080fd5b5061031b61035d366004612176565b6109bc565b34801561036e57600080fd5b50610378600d5481565b604051908152602001610298565b34801561039257600080fd5b50610378600c5481565b3480156103a857600080fd5b5060015460005403610378565b3480156103c157600080fd5b5061031b6103d0366004612216565b610a06565b3480156103e157600080fd5b5061031b6103f036600461201e565b610a46565b34801561040157600080fd5b5061031b6104103660046121bf565b610a51565b34801561042157600080fd5b5061031b610ac9565b34801561043657600080fd5b5061031b610b14565b34801561044b57600080fd5b5061031b61045a36600461201e565b610b6d565b34801561046b57600080fd5b5061031b61047a3660046121e4565b610b88565b34801561048b57600080fd5b5061031b610bb7565b3480156104a057600080fd5b506104c56104af366004611fd0565b60106020526000908152604090205461ffff1681565b60405161ffff9091168152602001610298565b3480156104e457600080fd5b50600e5461028c9062010000900460ff1681565b34801561050457600080fd5b5061031b610c0a565b34801561051957600080fd5b506102e36105283660046121e4565b610c51565b61031b61053b366004612216565b610c63565b34801561054c57600080fd5b5061037861055b366004611fd0565b610e0e565b34801561056c57600080fd5b5061031b610e5d565b34801561058157600080fd5b5061031b610590366004612176565b610e93565b3480156105a157600080fd5b5061031b6105b03660046121e4565b610ed0565b3480156105c157600080fd5b506008546001600160a01b03166102e3565b3480156105df57600080fd5b50600e546105ed9060ff1681565b60405160ff9091168152602001610298565b34801561060b57600080fd5b506102b6610eff565b34801561062057600080fd5b5061031b61062f3660046120d6565b610f0e565b34801561064057600080fd5b50600e5461028c906301000000900460ff1681565b34801561066157600080fd5b5061031b610670366004612216565b610fa4565b34801561068157600080fd5b50600e5461028c90610100900460ff1681565b3480156106a057600080fd5b5061031b6106af36600461205a565b610fe4565b3480156106c057600080fd5b506011546105ed9060ff1681565b61031b6106dc366004612216565b611035565b3480156106ed57600080fd5b506102b66106fc3660046121e4565b6112da565b34801561070d57600080fd5b5061031b61071c366004612231565b61144b565b34801561072d57600080fd5b506104c561271081565b34801561074357600080fd5b5061031b610752366004611fd0565b61151e565b34801561076357600080fd5b506104c5610772366004611fd0565b600f6020526000908152604090205461ffff1681565b34801561079457600080fd5b5061028c6107a3366004611feb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107dd57600080fd5b506102b661158e565b3480156107f257600080fd5b5061031b610801366004611fd0565b61161c565b60006001600160e01b031982166380ac58cd60e01b148061083757506001600160e01b03198216635b5e139f60e01b145b8061085257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610867906125c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610893906125c0565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f5826116b7565b610912576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093982610c51565b9050806001600160a01b0316836001600160a01b0316141561096e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098e575061098c81336107a3565b155b156109ac576040516367d9dca160e11b815260040160405180910390fd5b6109b78383836116e2565b505050565b6008546001600160a01b031633146109ef5760405162461bcd60e51b81526004016109e690612439565b60405180910390fd5b8051610a0290600b906020840190611e94565b5050565b6008546001600160a01b03163314610a305760405162461bcd60e51b81526004016109e690612439565b6011805460ff191660ff92909216919091179055565b6109b783838361173e565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b81526004016109e690612439565b6000610a8a6001546000540390565b9050612710610a9984836124c8565b61ffff161115610abb5760405162461bcd60e51b81526004016109e69061246e565b6109b7828461ffff1661192e565b6008546001600160a01b03163314610af35760405162461bcd60e51b81526004016109e690612439565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610b3e5760405162461bcd60e51b81526004016109e690612439565b6040514790339082156108fc029083906000818181858888f19350505050158015610a02573d6000803e3d6000fd5b6109b783838360405180602001604052806000815250610fe4565b6008546001600160a01b03163314610bb25760405162461bcd60e51b81526004016109e690612439565b600d55565b6008546001600160a01b03163314610be15760405162461bcd60e51b81526004016109e690612439565b600e805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6008546001600160a01b03163314610c345760405162461bcd60e51b81526004016109e690612439565b600e805461ff001981166101009182900460ff1615909102179055565b6000610c5c82611948565b5192915050565b336000908152600f602052604081205461ffff1690610c856001546000540390565b9050612710610c9760ff8516836124c8565b61ffff161115610cb95760405162461bcd60e51b81526004016109e69061246e565b600e5460ff9081169084161115610d125760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206e667420706572207472616e73616374696f6e2e60448201526064016109e6565b600e5462010000900460ff1615610d655760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109e6565b60115460ff90811690610d7a908516846124c8565b61ffff161115610d9c5760405162461bcd60e51b81526004016109e6906123f7565b8260ff16600c54610dad919061253b565b341015610dcc5760405162461bcd60e51b81526004016109e69061249b565b610dd9338460ff1661192e565b610de660ff8416836124c8565b336000908152600f60205260409020805461ffff191661ffff92909216919091179055505050565b60006001600160a01b038216610e37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e875760405162461bcd60e51b81526004016109e690612439565b610e916000611a64565b565b6008546001600160a01b03163314610ebd5760405162461bcd60e51b81526004016109e690612439565b8051610a02906009906020840190611e94565b6008546001600160a01b03163314610efa5760405162461bcd60e51b81526004016109e690612439565b600c55565b606060038054610867906125c0565b6001600160a01b038216331415610f385760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610fce5760405162461bcd60e51b81526004016109e690612439565b600e805460ff191660ff92909216919091179055565b610fef84848461173e565b6001600160a01b0383163b15158015611011575061100f84848484611ab6565b155b1561102f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561107957600080fd5b505afa15801561108d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b191906121fd565b33600090815260106020526040812054600154915492935061ffff1691036127106110df60ff8616836124c8565b61ffff1611156111015760405162461bcd60e51b81526004016109e69061246e565b600e5460ff908116908516111561115a5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206e667420706572207472616e73616374696f6e2e60448201526064016109e6565b600e54610100900460ff16156111ac5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109e6565b60115460ff908116906111c1908616846124c8565b61ffff1611156111e35760405162461bcd60e51b81526004016109e6906123f7565b60006111f0600385612506565b90508061ffff168361ffff1610611236578460ff16600d54611212919061253b565b3410156112315760405162461bcd60e51b81526004016109e69061249b565b611296565b60006112458460ff88166124c8565b90508161ffff168161ffff16111561129457611261828261255a565b90508061ffff16600d54611275919061253b565b3410156112945760405162461bcd60e51b81526004016109e69061249b565b505b6112a3338660ff1661192e565b6112b060ff8616846124c8565b336000908152601060205260409020805461ffff191661ffff929092169190911790555050505050565b60606112e5826116b7565b6113495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e6565b600e546301000000900460ff166113ec57600b8054611367906125c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611393906125c0565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b50505050509050919050565b60006113f6611bae565b905060008151116114165760405180602001604052806000815250611444565b8061142084611bbd565b600a604051602001611434939291906122e3565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114755760405162461bcd60e51b81526004016109e690612439565b60006114846001546000540390565b905060006114958360ff871661253b565b90506127106114a88261ffff85166124ee565b11156114c65760405162461bcd60e51b81526004016109e69061246e565b60005b83811015611516576115048585838181106114e6576114e6612656565b90506020020160208101906114fb9190611fd0565b8760ff1661192e565b8061150e816125fb565b9150506114c9565b505050505050565b6008546001600160a01b031633146115485760405162461bcd60e51b81526004016109e690612439565b60118054610100600160a81b0319166101006001600160a01b039384168102919091179182905560128054919092049092166001600160a01b0319909216919091179055565b600b805461159b906125c0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c7906125c0565b80156116145780601f106115e957610100808354040283529160200191611614565b820191906000526020600020905b8154815290600101906020018083116115f757829003601f168201915b505050505081565b6008546001600160a01b031633146116465760405162461bcd60e51b81526004016109e690612439565b6001600160a01b0381166116ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e6565b6116b481611a64565b50565b6000805482108015610852575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061174982611948565b9050836001600160a01b031681600001516001600160a01b0316146117805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061179e575061179e85336107a3565b806117b95750336117ae846108ea565b6001600160a01b0316145b9050806117d957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661180057604051633a954ecd60e21b815260040160405180910390fd5b61180c600084876116e2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166118e25760005482146118e2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a02828260405180602001604052806000815250611cbb565b604080516060810182526000808252602082018190529181019190915281600054811015611a4b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a495780516001600160a01b0316156119df579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a44579392505050565b6119df565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aeb9033908990889088906004016123a7565b602060405180830381600087803b158015611b0557600080fd5b505af1925050508015611b35575060408051601f3d908101601f19168201909252611b3291810190612159565b60015b611b90573d808015611b63576040519150601f19603f3d011682016040523d82523d6000602084013e611b68565b606091505b508051611b88576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610867906125c0565b606081611be15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0b5780611bf5816125fb565b9150611c049050600a83612527565b9150611be5565b60008167ffffffffffffffff811115611c2657611c2661266c565b6040519080825280601f01601f191660200182016040528015611c50576020820181803683370190505b5090505b8415611ba657611c6560018361257d565b9150611c72600a86612616565b611c7d9060306124ee565b60f81b818381518110611c9257611c92612656565b60200101906001600160f81b031916908160001a905350611cb4600a86612527565b9450611c54565b6109b783838360016000546001600160a01b038516611cec57604051622e076360e81b815260040160405180910390fd5b83611d0a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611dbc57506001600160a01b0387163b15155b15611e45575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e0d6000888480600101955088611ab6565b611e2a576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dc2578260005414611e4057600080fd5b611e8b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e46575b50600055611927565b828054611ea0906125c0565b90600052602060002090601f016020900481019282611ec25760008555611f08565b82601f10611edb57805160ff1916838001178555611f08565b82800160010185558215611f08579182015b82811115611f08578251825591602001919060010190611eed565b50611f14929150611f18565b5090565b5b80821115611f145760008155600101611f19565b600067ffffffffffffffff80841115611f4857611f4861266c565b604051601f8501601f19908116603f01168101908282118183101715611f7057611f7061266c565b81604052809350858152868686011115611f8957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fba57600080fd5b919050565b803560ff81168114611fba57600080fd5b600060208284031215611fe257600080fd5b61144482611fa3565b60008060408385031215611ffe57600080fd5b61200783611fa3565b915061201560208401611fa3565b90509250929050565b60008060006060848603121561203357600080fd5b61203c84611fa3565b925061204a60208501611fa3565b9150604084013590509250925092565b6000806000806080858703121561207057600080fd5b61207985611fa3565b935061208760208601611fa3565b925060408501359150606085013567ffffffffffffffff8111156120aa57600080fd5b8501601f810187136120bb57600080fd5b6120ca87823560208401611f2d565b91505092959194509250565b600080604083850312156120e957600080fd5b6120f283611fa3565b91506020830135801515811461210757600080fd5b809150509250929050565b6000806040838503121561212557600080fd5b61212e83611fa3565b946020939093013593505050565b60006020828403121561214e57600080fd5b813561144481612682565b60006020828403121561216b57600080fd5b815161144481612682565b60006020828403121561218857600080fd5b813567ffffffffffffffff81111561219f57600080fd5b8201601f810184136121b057600080fd5b611ba684823560208401611f2d565b600080604083850312156121d257600080fd5b823561ffff8116811461200757600080fd5b6000602082840312156121f657600080fd5b5035919050565b60006020828403121561220f57600080fd5b5051919050565b60006020828403121561222857600080fd5b61144482611fbf565b60008060006040848603121561224657600080fd5b61224f84611fbf565b9250602084013567ffffffffffffffff8082111561226c57600080fd5b818601915086601f83011261228057600080fd5b81358181111561228f57600080fd5b8760208260051b85010111156122a457600080fd5b6020830194508093505050509250925092565b600081518084526122cf816020860160208601612594565b601f01601f19169290920160200192915050565b6000845160206122f68285838a01612594565b8551918401916123098184848a01612594565b8554920191600090600181811c908083168061232657607f831692505b85831081141561234457634e487b7160e01b85526022600452602485fd5b808015612358576001811461236957612396565b60ff19851688528388019550612396565b60008b81526020902060005b8581101561238e5781548a820152908401908801612375565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123da908301846122b7565b9695505050505050565b60208152600061144460208301846122b7565b60208082526022908201527f45786365656473206d6178206e667420616c6c6f776564207065722077616c6c604082015261195d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff8083168185168083038211156124e5576124e561262a565b01949350505050565b600082198211156125015761250161262a565b500190565b600061ffff8084168061251b5761251b612640565b92169190910492915050565b60008261253657612536612640565b500490565b60008160001904831182151516156125555761255561262a565b500290565b600061ffff838116908316818110156125755761257561262a565b039392505050565b60008282101561258f5761258f61262a565b500390565b60005b838110156125af578181015183820152602001612597565b8381111561102f5750506000910152565b600181811c908216806125d457607f821691505b602082108114156125f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260f5761260f61262a565b5060010190565b60008261262557612625612640565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116b457600080fdfea26469706673582212201d08234b3ee90a1cee5147051c161025a9cbfd112e85e56f0a4c13155f26f95564736f6c63430008070033
Deployed Bytecode Sourcemap
46189:5576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26403:305;;;;;;;;;;-1:-1:-1;26403:305:0;;;;;:::i;:::-;;:::i;:::-;;;8281:14:1;;8274:22;8256:41;;8244:2;8229:18;26403:305:0;;;;;;;;29516:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31019:204::-;;;;;;;;;;-1:-1:-1;31019:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7579:32:1;;;7561:51;;7549:2;7534:18;31019:204:0;7415:203:1;30582:371:0;;;;;;;;;;-1:-1:-1;30582:371:0;;;;;:::i;:::-;;:::i;:::-;;46912:71;;;;;;;;;;-1:-1:-1;46912:71:0;;;;;;;-1:-1:-1;;;;;46912:71:0;;;51398:102;;;;;;;;;;-1:-1:-1;51398:102:0;;;;;:::i;:::-;;:::i;46436:43::-;;;;;;;;;;;;;;;;;;;11867:25:1;;;11855:2;11840:18;46436:43:0;11721:177:1;46398:33:0;;;;;;;;;;;;;;;;25652:303;;;;;;;;;;-1:-1:-1;25906:12:0;;25696:7;25890:13;:28;25652:303;;50537:125;;;;;;;;;;-1:-1:-1;50537:125:0;;;;;:::i;:::-;;:::i;31884:170::-;;;;;;;;;;-1:-1:-1;31884:170:0;;;;;:::i;:::-;;:::i;47728:326::-;;;;;;;;;;-1:-1:-1;47728:326:0;;;;;:::i;:::-;;:::i;51324:70::-;;;;;;;;;;;;;:::i;51513:144::-;;;;;;;;;;;;;:::i;32125:185::-;;;;;;;;;;-1:-1:-1;32125:185:0;;;;;:::i;:::-;;:::i;51105:96::-;;;;;;;;;;-1:-1:-1;51105:96:0;;;;;:::i;:::-;;:::i;50778:112::-;;;;;;;;;;;;;:::i;46790:54::-;;;;;;;;;;-1:-1:-1;46790:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11702:6:1;11690:19;;;11672:38;;11660:2;11645:18;46790:54:0;11528:188:1;46677:25:0;;;;;;;;;;-1:-1:-1;46677:25:0;;;;;;;;;;;50897:104;;;;;;;;;;;;;:::i;29324:125::-;;;;;;;;;;-1:-1:-1;29324:125:0;;;;;:::i;:::-;;:::i;48065:702::-;;;;;;:::i;:::-;;:::i;26772:206::-;;;;;;;;;;-1:-1:-1;26772:206:0;;;;;:::i;:::-;;:::i;45225:103::-;;;;;;;;;;;;;:::i;50668:102::-;;;;;;;;;;-1:-1:-1;50668:102:0;;;;;:::i;:::-;;:::i;51009:86::-;;;;;;;;;;-1:-1:-1;51009:86:0;;;;;:::i;:::-;;:::i;44573:87::-;;;;;;;;;;-1:-1:-1;44646:6:0;;-1:-1:-1;;;;;44646:6:0;44573:87;;46533:36;;;;;;;;;;-1:-1:-1;46533:36:0;;;;;;;;;;;12075:4:1;12063:17;;;12045:36;;12033:2;12018:18;46533:36:0;11903:184:1;29685:104:0;;;;;;;;;;;;;:::i;31295:287::-;;;;;;;;;;-1:-1:-1;31295:287:0;;;;;:::i;:::-;;:::i;46707:25::-;;;;;;;;;;-1:-1:-1;46707:25:0;;;;;;;;;;;51209:109;;;;;;;;;;-1:-1:-1;51209:109:0;;;;;:::i;:::-;;:::i;46637:35::-;;;;;;;;;;-1:-1:-1;46637:35:0;;;;;;;;;;;32381:369;;;;;;;;;;-1:-1:-1;32381:369:0;;;;;:::i;:::-;;:::i;46849:40::-;;;;;;;;;;-1:-1:-1;46849:40:0;;;;;;;;48771:1240;;;;;;:::i;:::-;;:::i;50027:500::-;;;;;;;;;;-1:-1:-1;50027:500:0;;;;;:::i;:::-;;:::i;47249:473::-;;;;;;;;;;-1:-1:-1;47249:473:0;;;;;:::i;:::-;;:::i;46488:40::-;;;;;;;;;;;;46523:5;46488:40;;47028:136;;;;;;;;;;-1:-1:-1;47028:136:0;;;;;:::i;:::-;;:::i;46737:48::-;;;;;;;;;;-1:-1:-1;46737:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31653:164;;;;;;;;;;-1:-1:-1;31653:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31774:25:0;;;31750:4;31774:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31653:164;46350:23;;;;;;;;;;;;;:::i;45483:201::-;;;;;;;;;;-1:-1:-1;45483:201:0;;;;;:::i;:::-;;:::i;26403:305::-;26505:4;-1:-1:-1;;;;;;26542:40:0;;-1:-1:-1;;;26542:40:0;;:105;;-1:-1:-1;;;;;;;26599:48:0;;-1:-1:-1;;;26599:48:0;26542:105;:158;;;-1:-1:-1;;;;;;;;;;16437:40:0;;;26664:36;26522:178;26403:305;-1:-1:-1;;26403:305:0:o;29516:100::-;29570:13;29603:5;29596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29516:100;:::o;31019:204::-;31087:7;31112:16;31120:7;31112;:16::i;:::-;31107:64;;31137:34;;-1:-1:-1;;;31137:34:0;;;;;;;;;;;31107:64;-1:-1:-1;31191:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31191:24:0;;31019:204::o;30582:371::-;30655:13;30671:24;30687:7;30671:15;:24::i;:::-;30655:40;;30716:5;-1:-1:-1;;;;;30710:11:0;:2;-1:-1:-1;;;;;30710:11:0;;30706:48;;;30730:24;;-1:-1:-1;;;30730:24:0;;;;;;;;;;;30706:48;4878:10;-1:-1:-1;;;;;30771:21:0;;;;;;:63;;-1:-1:-1;30797:37:0;30814:5;4878:10;31653:164;:::i;30797:37::-;30796:38;30771:63;30767:138;;;30858:35;;-1:-1:-1;;;30858:35:0;;;;;;;;;;;30767:138;30917:28;30926:2;30930:7;30939:5;30917:8;:28::i;:::-;30644:309;30582:371;;:::o;51398:102::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;;;;;;;;;51472:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51398:102:::0;:::o;50537:125::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;50605:22:::1;:31:::0;;-1:-1:-1;;50605:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50537:125::o;31884:170::-;32018:28;32028:4;32034:2;32038:7;32018:9;:28::i;47728:326::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;47811:18:::1;47839:13;25906:12:::0;;25696:7;25890:13;:28;;25652:303;47839:13:::1;47811:42:::0;-1:-1:-1;46523:5:0::1;47868:25;47882:11:::0;47811:42;47868:25:::1;:::i;:::-;:38;;;;47860:70;;;;-1:-1:-1::0;;;47860:70:0::1;;;;;;;:::i;:::-;47938:34;47948:9;47960:11;47938:34;;:9;:34::i;51324:70::-:0;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;51383:6:::1;::::0;;-1:-1:-1;;51373:16:0;::::1;51383:6:::0;;;;::::1;;;51382:7;51373:16:::0;;::::1;;::::0;;51324:70::o;51513:144::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;51602:39:::1;::::0;51573:21:::1;::::0;51610:10:::1;::::0;51602:39;::::1;;;::::0;51573:21;;51557:13:::1;51602:39:::0;51557:13;51602:39;51573:21;51610:10;51602:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;32125:185:::0;32263:39;32280:4;32286:2;32290:7;32263:39;;;;;;;;;;;;:16;:39::i;51105:96::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;51171:14:::1;:22:::0;51105:96::o;50778:112::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;50845:6:::1;::::0;;-1:-1:-1;;50845:6:0::1;::::0;;;::::1;::::0;;;::::1;50844:7;50835:16;50858:23:::0;-1:-1:-1;;50858:23:0;;;;50845:6:::1;50858:23;::::0;;50778:112::o;50897:104::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;50976:16:::1;::::0;;-1:-1:-1;;50956:36:0;::::1;50976:16;::::0;;;::::1;;;50975:17;50956:36:::0;;::::1;;::::0;;50897:104::o;29324:125::-;29388:7;29415:21;29428:7;29415:12;:21::i;:::-;:26;;29324:125;-1:-1:-1;;29324:125:0:o;48065:702::-;48157:10;48130;48143:25;;;:13;:25;;;;;;;;;48204:13;25906:12;;25696:7;25890:13;:28;;25652:303;48204:13;48176:42;-1:-1:-1;46523:5:0;48233:25;;;;48176:42;48233:25;:::i;:::-;:38;;;;48225:70;;;;-1:-1:-1;;;48225:70:0;;;;;;;:::i;:::-;48325:18;;;;;;48310:33;;;;;48302:78;;;;-1:-1:-1;;;48302:78:0;;11021:2:1;48302:78:0;;;11003:21:1;;;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;11151:18;;48302:78:0;10819:356:1;48302:78:0;48396:6;;;;;;;48395:7;48387:43;;;;-1:-1:-1;;;48387:43:0;;9905:2:1;48387:43:0;;;9887:21:1;9944:2;9924:18;;;9917:30;-1:-1:-1;;;9963:18:1;;;9956:53;10026:18;;48387:43:0;9703:347:1;48387:43:0;48466:22;;;;;;;48445:17;;;;:3;:17;:::i;:::-;:43;;;;48437:91;;;;-1:-1:-1;;;48437:91:0;;;;;;;:::i;:::-;48565:11;48558:18;;:4;;:18;;;;:::i;:::-;48545:9;:31;;48537:63;;;;-1:-1:-1;;;48537:63:0;;;;;;;:::i;:::-;48613:35;48623:10;48636:11;48613:35;;:9;:35::i;:::-;48685:17;;;;:3;:17;:::i;:::-;48671:10;48657:25;;;;:13;:25;;;;;:45;;-1:-1:-1;;48657:45:0;;;;;;;;;;;;-1:-1:-1;;;48065:702:0:o;26772:206::-;26836:7;-1:-1:-1;;;;;26860:19:0;;26856:60;;26888:28;;-1:-1:-1;;;26888:28:0;;;;;;;;;;;26856:60;-1:-1:-1;;;;;;26942:19:0;;;;;:12;:19;;;;;:27;;;;26772:206::o;45225:103::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;45290:30:::1;45317:1;45290:18;:30::i;:::-;45225:103::o:0;50668:102::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;50742:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51009:86::-:0;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;51075:4:::1;:12:::0;51009:86::o;29685:104::-;29741:13;29774:7;29767:14;;;;;:::i;31295:287::-;-1:-1:-1;;;;;31394:24:0;;4878:10;31394:24;31390:54;;;31427:17;;-1:-1:-1;;;31427:17:0;;;;;;;;;;;31390:54;4878:10;31457:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31457:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31457:53:0;;;;;;;;;;31526:48;;8256:41:1;;;31457:42:0;;4878:10;31526:48;;8229:18:1;31526:48:0;;;;;;;31295:287;;:::o;51209:109::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;51281:18:::1;:27:::0;;-1:-1:-1;;51281:27:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51209:109::o;32381:369::-;32548:28;32558:4;32564:2;32568:7;32548:9;:28::i;:::-;-1:-1:-1;;;;;32591:13:0;;6540:19;:23;;32591:76;;;;;32611:56;32642:4;32648:2;32652:7;32661:5;32611:30;:56::i;:::-;32610:57;32591:76;32587:156;;;32691:40;;-1:-1:-1;;;32691:40:0;;;;;;;;;;;32587:156;32381:369;;;;:::o;48771:1240::-;48865:4;;:26;;-1:-1:-1;;;48865:26:0;;48880:10;48865:26;;;7561:51:1;48835:20:0;;-1:-1:-1;;;;;48865:4:0;;:14;;7534:18:1;;48865:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48934:10;48901;48914:31;;;:19;:31;;;;;;25906:12;;25890:13;;48835:57;;-1:-1:-1;48914:31:0;;;25890:28;46523:5;49010:25;;;;25890:28;49010:25;:::i;:::-;:38;;;;49002:70;;;;-1:-1:-1;;;49002:70:0;;;;;;;:::i;:::-;49102:18;;;;;;49087:33;;;;;49079:78;;;;-1:-1:-1;;;49079:78:0;;11021:2:1;49079:78:0;;;11003:21:1;;;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;11151:18;;49079:78:0;10819:356:1;49079:78:0;49173:16;;;;;;;49172:17;49164:53;;;;-1:-1:-1;;;49164:53:0;;9905:2:1;49164:53:0;;;9887:21:1;9944:2;9924:18;;;9917:30;-1:-1:-1;;;9963:18:1;;;9956:53;10026:18;;49164:53:0;9703:347:1;49164:53:0;49253:22;;;;;;;49232:17;;;;:3;:17;:::i;:::-;:43;;;;49224:91;;;;-1:-1:-1;;;49224:91:0;;;;;;;:::i;:::-;49322:33;49359:17;49375:1;49359:13;:17;:::i;:::-;49322:54;;49407:26;49400:33;;:3;:33;;;49397:444;;49485:11;49468:28;;:14;;:28;;;;:::i;:::-;49455:9;:41;;49447:73;;;;-1:-1:-1;;;49447:73:0;;;;;;;:::i;:::-;49397:444;;;49559:17;49579;49593:3;49579:17;;;;:::i;:::-;49559:37;;49623:26;49610:39;;:10;:39;;;49607:218;;;49683:39;49696:26;49683:10;:39;:::i;:::-;49670:52;;49771:10;49754:27;;:14;;:27;;;;:::i;:::-;49741:9;:40;;49733:72;;;;-1:-1:-1;;;49733:72:0;;;;;;;:::i;:::-;49547:294;49397:444;49853:35;49863:10;49876:11;49853:35;;:9;:35::i;:::-;49929:17;;;;:3;:17;:::i;:::-;49915:10;49895:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;49895:51:0;;;;;;;;;;;;-1:-1:-1;;;;;48771:1240:0:o;50027:500::-;50126:13;50167:17;50175:8;50167:7;:17::i;:::-;50151:98;;;;-1:-1:-1;;;50151:98:0;;10257:2:1;50151:98:0;;;10239:21:1;10296:2;10276:18;;;10269:30;10335:34;10315:18;;;10308:62;-1:-1:-1;;;10386:18:1;;;10379:45;10441:19;;50151:98:0;10055:411:1;50151:98:0;50269:6;;;;;;;50264:50;;50301:9;50294:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50027:500;;;:::o;50264:50::-;50336:28;50367:10;:8;:10::i;:::-;50336:41;;50422:1;50397:14;50391:28;:32;:130;;;;;;;;;;;;;;;;;50459:14;50475:19;:8;:17;:19::i;:::-;50496:9;50442:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50391:130;50384:137;50027:500;-1:-1:-1;;;50027:500:0:o;47249:473::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;47349:18:::1;47377:13;25906:12:::0;;25696:7;25890:13;:28;;25652:303;47377:13:::1;47349:42:::0;-1:-1:-1;47399:16:0::1;47420:36;47440:9:::0;47420:36:::1;::::0;::::1;;:::i;:::-;47399:57:::0;-1:-1:-1;46523:5:0::1;47471:25;47399:57:::0;47471:38:::1;:25:::0;::::1;;:::i;:::-;:38;;47463:70;;;;-1:-1:-1::0;;;47463:70:0::1;;;;;;;:::i;:::-;47546:9;47541:116;47561:20:::0;;::::1;47541:116;;;47603:42;47613:9;;47623:1;47613:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47627:17;47603:42;;:9;:42::i;:::-;47583:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47541:116;;;-1:-1:-1::0;;;;;;47249:473:0:o;47028:136::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;47098:11:::1;:26:::0;;-1:-1:-1;;;;;;47098:26:0::1;;-1:-1:-1::0;;;;;47098:26:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;47135:4:::1;:24:::0;;47147:11;;;::::1;::::0;;::::1;-1:-1:-1::0;;;;;;47135:24:0;;::::1;::::0;;;::::1;::::0;;47028:136::o;46350:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45483:201::-;44646:6;;-1:-1:-1;;;;;44646:6:0;4878:10;44793:23;44785:69;;;;-1:-1:-1;;;44785:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45572:22:0;::::1;45564:73;;;::::0;-1:-1:-1;;;45564:73:0;;8734:2:1;45564:73:0::1;::::0;::::1;8716:21:1::0;8773:2;8753:18;;;8746:30;8812:34;8792:18;;;8785:62;-1:-1:-1;;;8863:18:1;;;8856:36;8909:19;;45564:73:0::1;8532:402:1::0;45564:73:0::1;45648:28;45667:8;45648:18;:28::i;:::-;45483:201:::0;:::o;33005:187::-;33062:4;33126:13;;33116:7;:23;33086:98;;;;-1:-1:-1;;33157:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33157:27:0;;;;33156:28;;33005:187::o;41175:196::-;41290:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41290:29:0;-1:-1:-1;;;;;41290:29:0;;;;;;;;;41335:28;;41290:24;;41335:28;;;;;;;41175:196;;;:::o;36118:2130::-;36233:35;36271:21;36284:7;36271:12;:21::i;:::-;36233:59;;36331:4;-1:-1:-1;;;;;36309:26:0;:13;:18;;;-1:-1:-1;;;;;36309:26:0;;36305:67;;36344:28;;-1:-1:-1;;;36344:28:0;;;;;;;;;;;36305:67;36385:22;4878:10;-1:-1:-1;;;;;36411:20:0;;;;:73;;-1:-1:-1;36448:36:0;36465:4;4878:10;31653:164;:::i;36448:36::-;36411:126;;;-1:-1:-1;4878:10:0;36501:20;36513:7;36501:11;:20::i;:::-;-1:-1:-1;;;;;36501:36:0;;36411:126;36385:153;;36556:17;36551:66;;36582:35;;-1:-1:-1;;;36582:35:0;;;;;;;;;;;36551:66;-1:-1:-1;;;;;36632:16:0;;36628:52;;36657:23;;-1:-1:-1;;;36657:23:0;;;;;;;;;;;36628:52;36801:35;36818:1;36822:7;36831:4;36801:8;:35::i;:::-;-1:-1:-1;;;;;37132:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37132:31:0;;;;;;;-1:-1:-1;;37132:31:0;;;;;;;37178:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37178:29:0;;;;;;;;;;;37258:20;;;:11;:20;;;;;;37293:18;;-1:-1:-1;;;;;;37326:49:0;;;;-1:-1:-1;;;37359:15:0;37326:49;;;;;;;;;;37649:11;;37709:24;;;;;37752:13;;37258:20;;37709:24;;37752:13;37748:384;;37962:13;;37947:11;:28;37943:174;;38000:20;;38069:28;;;;38043:54;;-1:-1:-1;;;38043:54:0;-1:-1:-1;;;;;;38043:54:0;;;-1:-1:-1;;;;;38000:20:0;;38043:54;;;;37943:174;37107:1036;;;38179:7;38175:2;-1:-1:-1;;;;;38160:27:0;38169:4;-1:-1:-1;;;;;38160:27:0;;;;;;;;;;;38198:42;36222:2026;;36118:2130;;;:::o;33200:104::-;33269:27;33279:2;33283:8;33269:27;;;;;;;;;;;;:9;:27::i;28153:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28264:7:0;28347:13;;28340:4;:20;28309:886;;;28381:31;28415:17;;;:11;:17;;;;;;;;;28381:51;;;;;;;;;-1:-1:-1;;;;;28381:51:0;;;;-1:-1:-1;;;28381:51:0;;;;;;;;;;;-1:-1:-1;;;28381:51:0;;;;;;;;;;;;;;28451:729;;28501:14;;-1:-1:-1;;;;;28501:28:0;;28497:101;;28565:9;28153:1109;-1:-1:-1;;;28153:1109:0:o;28497:101::-;-1:-1:-1;;;28940:6:0;28985:17;;;;:11;:17;;;;;;;;;28973:29;;;;;;;;;-1:-1:-1;;;;;28973:29:0;;;;;-1:-1:-1;;;28973:29:0;;;;;;;;;;;-1:-1:-1;;;28973:29:0;;;;;;;;;;;;;29033:28;29029:109;;29101:9;28153:1109;-1:-1:-1;;;28153:1109:0:o;29029:109::-;28900:261;;;28362:833;28309:886;29223:31;;-1:-1:-1;;;29223:31:0;;;;;;;;;;;45844:191;45937:6;;;-1:-1:-1;;;;;45954:17:0;;;-1:-1:-1;;;;;;45954:17:0;;;;;;;45987:40;;45937:6;;;45954:17;45937:6;;45987:40;;45918:16;;45987:40;45907:128;45844:191;:::o;41863:667::-;42047:72;;-1:-1:-1;;;42047:72:0;;42026:4;;-1:-1:-1;;;;;42047:36:0;;;;;:72;;4878:10;;42098:4;;42104:7;;42113:5;;42047:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42047:72:0;;;;;;;;-1:-1:-1;;42047:72:0;;;;;;;;;;;;:::i;:::-;;;42043:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42281:13:0;;42277:235;;42327:40;;-1:-1:-1;;;42327:40:0;;;;;;;;;;;42277:235;42470:6;42464:13;42455:6;42451:2;42447:15;42440:38;42043:480;-1:-1:-1;;;;;;42166:55:0;-1:-1:-1;;;42166:55:0;;-1:-1:-1;42043:480:0;41863:667;;;;;;:::o;51665:97::-;51718:13;51747:9;51740:16;;;;;:::i;2360:723::-;2416:13;2637:10;2633:53;;-1:-1:-1;;2664:10:0;;;;;;;;;;;;-1:-1:-1;;;2664:10:0;;;;;2360:723::o;2633:53::-;2711:5;2696:12;2752:78;2759:9;;2752:78;;2785:8;;;;:::i;:::-;;-1:-1:-1;2808:10:0;;-1:-1:-1;2816:2:0;2808:10;;:::i;:::-;;;2752:78;;;2840:19;2872:6;2862:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2862:17:0;;2840:39;;2890:154;2897:10;;2890:154;;2924:11;2934:1;2924:11;;:::i;:::-;;-1:-1:-1;2993:10:0;3001:2;2993:5;:10;:::i;:::-;2980:24;;:2;:24;:::i;:::-;2967:39;;2950:6;2957;2950:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2950:56:0;;;;;;;;-1:-1:-1;3021:11:0;3030:2;3021:11;;:::i;:::-;;;2890:154;;33667:163;33790:32;33796:2;33800:8;33810:5;33817:4;34228:20;34251:13;-1:-1:-1;;;;;34279:16:0;;34275:48;;34304:19;;-1:-1:-1;;;34304:19:0;;;;;;;;;;;34275:48;34338:13;34334:44;;34360:18;;-1:-1:-1;;;34360:18:0;;;;;;;;;;;34334:44;-1:-1:-1;;;;;34729:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34788:49:0;;34729:44;;;;;;;;34788:49;;;;-1:-1:-1;;34729:44:0;;;;;;34788:49;;;;;;;;;;;;;;;;34854:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34904:66:0;;;;-1:-1:-1;;;34954:15:0;34904:66;;;;;;;;;;34854:25;35051:23;;;35095:4;:23;;;;-1:-1:-1;;;;;;35103:13:0;;6540:19;:23;;35103:15;35091:641;;;35139:314;35170:38;;35195:12;;-1:-1:-1;;;;;35170:38:0;;;35187:1;;35170:38;;35187:1;;35170:38;35236:69;35275:1;35279:2;35283:14;;;;;;35299:5;35236:30;:69::i;:::-;35231:174;;35341:40;;-1:-1:-1;;;35341:40:0;;;;;;;;;;;35231:174;35448:3;35432:12;:19;;35139:314;;35534:12;35517:13;;:29;35513:43;;35548:8;;;35513:43;35091:641;;;35597:120;35628:40;;35653:14;;;;;-1:-1:-1;;;;;35628:40:0;;;35645:1;;35628:40;;35645:1;;35628:40;35712:3;35696:12;:19;;35597:120;;35091:641;-1:-1:-1;35746:13:0;:28;35796:60;32381:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:245::-;3118:6;3171:2;3159:9;3150:7;3146:23;3142:32;3139:52;;;3187:1;3184;3177:12;3139:52;3226:9;3213:23;3245:30;3269:5;3245:30;:::i;3310:249::-;3379:6;3432:2;3420:9;3411:7;3407:23;3403:32;3400:52;;;3448:1;3445;3438:12;3400:52;3480:9;3474:16;3499:30;3523:5;3499:30;:::i;3564:450::-;3633:6;3686:2;3674:9;3665:7;3661:23;3657:32;3654:52;;;3702:1;3699;3692:12;3654:52;3742:9;3729:23;3775:18;3767:6;3764:30;3761:50;;;3807:1;3804;3797:12;3761:50;3830:22;;3883:4;3875:13;;3871:27;-1:-1:-1;3861:55:1;;3912:1;3909;3902:12;3861:55;3935:73;4000:7;3995:2;3982:16;3977:2;3973;3969:11;3935:73;:::i;4019:346::-;4086:6;4094;4147:2;4135:9;4126:7;4122:23;4118:32;4115:52;;;4163:1;4160;4153:12;4115:52;4202:9;4189:23;4252:6;4245:5;4241:18;4234:5;4231:29;4221:57;;4274:1;4271;4264:12;4370:180;4429:6;4482:2;4470:9;4461:7;4457:23;4453:32;4450:52;;;4498:1;4495;4488:12;4450:52;-1:-1:-1;4521:23:1;;4370:180;-1:-1:-1;4370:180:1:o;4555:184::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;-1:-1:-1;4717:16:1;;4555:184;-1:-1:-1;4555:184:1:o;4744:182::-;4801:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:52;;;4870:1;4867;4860:12;4822:52;4893:27;4910:9;4893:27;:::i;4931:685::-;5024:6;5032;5040;5093:2;5081:9;5072:7;5068:23;5064:32;5061:52;;;5109:1;5106;5099:12;5061:52;5132:27;5149:9;5132:27;:::i;:::-;5122:37;;5210:2;5199:9;5195:18;5182:32;5233:18;5274:2;5266:6;5263:14;5260:34;;;5290:1;5287;5280:12;5260:34;5328:6;5317:9;5313:22;5303:32;;5373:7;5366:4;5362:2;5358:13;5354:27;5344:55;;5395:1;5392;5385:12;5344:55;5435:2;5422:16;5461:2;5453:6;5450:14;5447:34;;;5477:1;5474;5467:12;5447:34;5530:7;5525:2;5515:6;5512:1;5508:14;5504:2;5500:23;5496:32;5493:45;5490:65;;;5551:1;5548;5541:12;5490:65;5582:2;5578;5574:11;5564:21;;5604:6;5594:16;;;;;4931:685;;;;;:::o;5621:257::-;5662:3;5700:5;5694:12;5727:6;5722:3;5715:19;5743:63;5799:6;5792:4;5787:3;5783:14;5776:4;5769:5;5765:16;5743:63;:::i;:::-;5860:2;5839:15;-1:-1:-1;;5835:29:1;5826:39;;;;5867:4;5822:50;;5621:257;-1:-1:-1;;5621:257:1:o;5883:1527::-;6107:3;6145:6;6139:13;6171:4;6184:51;6228:6;6223:3;6218:2;6210:6;6206:15;6184:51;:::i;:::-;6298:13;;6257:16;;;;6320:55;6298:13;6257:16;6342:15;;;6320:55;:::i;:::-;6464:13;;6397:20;;;6437:1;;6524;6546:18;;;;6599;;;;6626:93;;6704:4;6694:8;6690:19;6678:31;;6626:93;6767:2;6757:8;6754:16;6734:18;6731:40;6728:167;;;-1:-1:-1;;;6794:33:1;;6850:4;6847:1;6840:15;6880:4;6801:3;6868:17;6728:167;6911:18;6938:110;;;;7062:1;7057:328;;;;6904:481;;6938:110;-1:-1:-1;;6973:24:1;;6959:39;;7018:20;;;;-1:-1:-1;6938:110:1;;7057:328;12165:1;12158:14;;;12202:4;12189:18;;7152:1;7166:169;7180:8;7177:1;7174:15;7166:169;;;7262:14;;7247:13;;;7240:37;7305:16;;;;7197:10;;7166:169;;;7170:3;;7366:8;7359:5;7355:20;7348:27;;6904:481;-1:-1:-1;7401:3:1;;5883:1527;-1:-1:-1;;;;;;;;;;;5883:1527:1:o;7623:488::-;-1:-1:-1;;;;;7892:15:1;;;7874:34;;7944:15;;7939:2;7924:18;;7917:43;7991:2;7976:18;;7969:34;;;8039:3;8034:2;8019:18;;8012:31;;;7817:4;;8060:45;;8085:19;;8077:6;8060:45;:::i;:::-;8052:53;7623:488;-1:-1:-1;;;;;;7623:488:1:o;8308:219::-;8457:2;8446:9;8439:21;8420:4;8477:44;8517:2;8506:9;8502:18;8494:6;8477:44;:::i;8939:398::-;9141:2;9123:21;;;9180:2;9160:18;;;9153:30;9219:34;9214:2;9199:18;;9192:62;-1:-1:-1;;;9285:2:1;9270:18;;9263:32;9327:3;9312:19;;8939:398::o;9342:356::-;9544:2;9526:21;;;9563:18;;;9556:30;9622:34;9617:2;9602:18;;9595:62;9689:2;9674:18;;9342:356::o;10471:343::-;10673:2;10655:21;;;10712:2;10692:18;;;10685:30;-1:-1:-1;;;10746:2:1;10731:18;;10724:49;10805:2;10790:18;;10471:343::o;11180:::-;11382:2;11364:21;;;11421:2;11401:18;;;11394:30;-1:-1:-1;;;11455:2:1;11440:18;;11433:49;11514:2;11499:18;;11180:343::o;12218:224::-;12257:3;12285:6;12318:2;12315:1;12311:10;12348:2;12345:1;12341:10;12379:3;12375:2;12371:12;12366:3;12363:21;12360:47;;;12387:18;;:::i;:::-;12423:13;;12218:224;-1:-1:-1;;;;12218:224:1:o;12447:128::-;12487:3;12518:1;12514:6;12511:1;12508:13;12505:39;;;12524:18;;:::i;:::-;-1:-1:-1;12560:9:1;;12447:128::o;12580:187::-;12619:1;12645:6;12678:2;12675:1;12671:10;12700:3;12690:37;;12707:18;;:::i;:::-;12745:10;;12741:20;;;;;12580:187;-1:-1:-1;;12580:187:1:o;12772:120::-;12812:1;12838;12828:35;;12843:18;;:::i;:::-;-1:-1:-1;12877:9:1;;12772:120::o;12897:168::-;12937:7;13003:1;12999;12995:6;12991:14;12988:1;12985:21;12980:1;12973:9;12966:17;12962:45;12959:71;;;13010:18;;:::i;:::-;-1:-1:-1;13050:9:1;;12897:168::o;13070:217::-;13109:4;13138:6;13194:10;;;;13164;;13216:12;;;13213:38;;;13231:18;;:::i;:::-;13268:13;;13070:217;-1:-1:-1;;;13070:217:1:o;13292:125::-;13332:4;13360:1;13357;13354:8;13351:34;;;13365:18;;:::i;:::-;-1:-1:-1;13402:9:1;;13292:125::o;13422:258::-;13494:1;13504:113;13518:6;13515:1;13512:13;13504:113;;;13594:11;;;13588:18;13575:11;;;13568:39;13540:2;13533:10;13504:113;;;13635:6;13632:1;13629:13;13626:48;;;-1:-1:-1;;13670:1:1;13652:16;;13645:27;13422:258::o;13685:380::-;13764:1;13760:12;;;;13807;;;13828:61;;13882:4;13874:6;13870:17;13860:27;;13828:61;13935:2;13927:6;13924:14;13904:18;13901:38;13898:161;;;13981:10;13976:3;13972:20;13969:1;13962:31;14016:4;14013:1;14006:15;14044:4;14041:1;14034:15;13898:161;;13685:380;;;:::o;14070:135::-;14109:3;-1:-1:-1;;14130:17:1;;14127:43;;;14150:18;;:::i;:::-;-1:-1:-1;14197:1:1;14186:13;;14070:135::o;14210:112::-;14242:1;14268;14258:35;;14273:18;;:::i;:::-;-1:-1:-1;14307:9:1;;14210:112::o;14327:127::-;14388:10;14383:3;14379:20;14376:1;14369:31;14419:4;14416:1;14409:15;14443:4;14440:1;14433:15;14459:127;14520:10;14515:3;14511:20;14508:1;14501:31;14551:4;14548:1;14541:15;14575:4;14572:1;14565:15;14591:127;14652:10;14647:3;14643:20;14640:1;14633:31;14683:4;14680:1;14673:15;14707:4;14704:1;14697:15;14723:127;14784:10;14779:3;14775:20;14772:1;14765:31;14815:4;14812:1;14805:15;14839:4;14836:1;14829:15;14855:131;-1:-1:-1;;;;;;14929:32:1;;14919:43;;14909:71;;14976:1;14973;14966:12
Swarm Source
ipfs://1d08234b3ee90a1cee5147051c161025a9cbfd112e85e56f0a4c13155f26f955
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.