Overview
TokenID
2061
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RareApeYachtClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-05 */ // SPDX-License-Identifier: MIT /** ______ ___ __ __ _ _ _____ _ _ | ___ \ / _ \ \ \ / / | | | | / __ \ | | | | |_/ /__ _ _ __ ___ / /_\ \_ __ ___ \ V /__ _ ___| |__ | |_ | / \/ |_ _| |__ | // _` | '__/ _ \ | _ | '_ \ / _ \ \ // _` |/ __| '_ \| __| | | | | | | | '_ \ | |\ \ (_| | | | __/ | | | | |_) | __/ | | (_| | (__| | | | |_ | \__/\ | |_| | |_) | \_| \_\__,_|_| \___| \_| |_/ .__/ \___| \_/\__,_|\___|_| |_|\__| \____/_|\__,_|_.__/ | | |_| */ // 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; contract RareApeYachtClub 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 whiteListCost = 0 ; uint16 public maxSupply = 10000; uint8 public maxMintAmountPerTx = 2; uint8 public maxMintAmountPerWallet = 2; uint8 public maxFreeMintAmountPerWallet = 0; bool public WLpaused = true; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerWLAddress; mapping (address => uint8) public NFTPerPublicAddress; mapping (address => bool) public isWhitelisted; constructor() ERC721A("Rare Ape Yacht Club", "RARE") { } function Mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerWallet, "Exceeds max per Wallet."); require(_mintAmount <= maxMintAmountPerTx, "Exceeds max per Wallet."); require(!paused, "The contract is paused!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= cost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } 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 Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceees max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } 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 setWLPaused() external onlyOwner { WLpaused = !WLpaused; } function setWLCost(uint256 _cost) external onlyOwner { whiteListCost = _cost; delete _cost; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function addToPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = true; } } function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = false; } } function whitelistMint(uint8 _mintAmount) external payable { uint8 nft = NFTPerWLAddress[msg.sender]; uint16 totalSupply = uint16(totalSupply()); require(isWhitelisted[msg.sender], "You are not whitelisted"); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require (nft + _mintAmount <= maxMintAmountPerWallet, "Exceeds max limit per address"); require (_mintAmount <= maxMintAmountPerTx, "Exceeds max limit per tx"); require(!WLpaused, "Whitelist minting is over!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= whiteListCost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerWLAddress[msg.sender] =nft + _mintAmount; delete _mintAmount; delete nft; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; WLpaused = true; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{ maxMintAmountPerWallet = _maxtx; } 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":"uint8","name":"_mintAmount","type":"uint8"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"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":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","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":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000141565b506611c37937e08000600c556000600d55600e80546001600160401b03191666010100020227101790553480156200005f57600080fd5b50604080518082018252601381527f526172652041706520596163687420436c7562000000000000000000000000006020808301918252835180850190945260048452635241524560e01b908401528151919291620000c19160029162000141565b508051620000d790600390602084019062000141565b50506000805550620000e933620000ef565b62000224565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b602082108114156200021e57634e487b7160e01b600052602260045260246000fd5b50919050565b612a8180620002346000396000f3fe6080604052600436106102935760003560e01c8063715018a61161015a578063aa062290116100c1578063d5abeb011161007a578063d5abeb01146107d4578063e94053c714610802578063e985e9c514610832578063eef440af1461087b578063f2fde38b14610890578063f8bf5172146108b057600080fd5b8063aa06229014610713578063b88d4fde14610733578063bc951b9114610753578063c87b56dd14610774578063cffb6e2014610794578063d1d19213146107b457600080fd5b80639257e044116101135780639257e0441461067457806394354fd01461068a57806395d89b41146106aa578063a22cb465146106bf578063a2522d2d146106df578063a475b5dd146106f257600080fd5b8063715018a6146105c05780637ec4a659146105d55780637f6e9093146105f55780638da5cb5b146106165780638e07484c146106345780638f65fe0a1461065457600080fd5b806337a66d85116101fe5780634d9c1848116101b75780634d9c1848146104ea57806359bf5dbb1461050a5780635c975abb1461054c57806360e85cde1461056d5780636352211e1461058057806370a08231146105a057600080fd5b806337a66d851461043b5780633af32abf146104505780633bd64968146104805780633ccfd60b1461049557806342842e0e146104aa57806344a0d68a146104ca57600080fd5b80631067fcc7116102505780631067fcc71461037e57806313faede61461039e57806318160ddd146103c257806323b872dd146103db57806328b60d15146103fb5780632f6f98e11461041b57600080fd5b806301ffc9a71461029857806306421c2f146102cd57806306fdde03146102ef578063081812fc14610311578063093cfa6314610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612549565b6108d1565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e83660046125cb565b610923565b005b3480156102fb57600080fd5b5061030461096e565b6040516102c491906127b5565b34801561031d57600080fd5b5061033161032c366004612602565b610a00565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506102ed610a44565b34801561036a57600080fd5b506102ed6103793660046124de565b610a91565b34801561038a57600080fd5b506102ed610399366004612583565b610b1f565b3480156103aa57600080fd5b506103b4600c5481565b6040519081526020016102c4565b3480156103ce57600080fd5b50600154600054036103b4565b3480156103e757600080fd5b506102ed6103f63660046123eb565b610b60565b34801561040757600080fd5b506102ed61041636600461261b565b610b6b565b34801561042757600080fd5b506102ed6104363660046125e6565b610bb5565b34801561044757600080fd5b506102ed610c32565b34801561045c57600080fd5b506102b861046b36600461239d565b60116020526000908152604090205460ff1681565b34801561048c57600080fd5b506102ed610c90565b3480156104a157600080fd5b506102ed610cdf565b3480156104b657600080fd5b506102ed6104c53660046123eb565b610d38565b3480156104d657600080fd5b506102ed6104e5366004612602565b610d53565b3480156104f657600080fd5b506102ed61050536600461261b565b610d82565b34801561051657600080fd5b5061053a61052536600461239d565b600f6020526000908152604090205460ff1681565b60405160ff90911681526020016102c4565b34801561055857600080fd5b50600e546102b890600160301b900460ff1681565b6102ed61057b36600461261b565b610dcd565b34801561058c57600080fd5b5061033161059b366004612602565b6110a2565b3480156105ac57600080fd5b506103b46105bb36600461239d565b6110b4565b3480156105cc57600080fd5b506102ed611102565b3480156105e157600080fd5b506102ed6105f0366004612583565b611138565b34801561060157600080fd5b50600e546102b890600160281b900460ff1681565b34801561062257600080fd5b506008546001600160a01b0316610331565b34801561064057600080fd5b506102ed61064f366004612508565b611175565b34801561066057600080fd5b506102ed61066f366004612508565b611217565b34801561068057600080fd5b506103b4600d5481565b34801561069657600080fd5b50600e5461053a9062010000900460ff1681565b3480156106b657600080fd5b506103046112b9565b3480156106cb57600080fd5b506102ed6106da3660046124a2565b6112c8565b6102ed6106ed36600461261b565b61135e565b3480156106fe57600080fd5b50600e546102b890600160381b900460ff1681565b34801561071f57600080fd5b506102ed61072e36600461261b565b6115cc565b34801561073f57600080fd5b506102ed61074e366004612427565b611614565b34801561075f57600080fd5b50600e5461053a906301000000900460ff1681565b34801561078057600080fd5b5061030461078f366004612602565b611665565b3480156107a057600080fd5b506102ed6107af366004612636565b6117d6565b3480156107c057600080fd5b506102ed6107cf366004612602565b6118d6565b3480156107e057600080fd5b50600e546107ef9061ffff1681565b60405161ffff90911681526020016102c4565b34801561080e57600080fd5b5061053a61081d36600461239d565b60106020526000908152604090205460ff1681565b34801561083e57600080fd5b506102b861084d3660046123b8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50610304611905565b34801561089c57600080fd5b506102ed6108ab36600461239d565b611993565b3480156108bc57600080fd5b50600e5461053a90600160201b900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061090257506001600160e01b03198216635b5e139f60e01b145b8061091d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109565760405162461bcd60e51b815260040161094d906127c8565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b60606002805461097d90612953565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990612953565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611a2e565b610a28576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a6e5760405162461bcd60e51b815260040161094d906127c8565b600e805465ff0000000000198116600160281b9182900460ff1615909102179055565b6000610a9c826110a2565b9050806001600160a01b0316836001600160a01b03161415610ad15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610af15750610aef813361084d565b155b15610b0f576040516367d9dca160e11b815260040160405180910390fd5b610b1a838383611a59565b505050565b6008546001600160a01b03163314610b495760405162461bcd60e51b815260040161094d906127c8565b8051610b5c90600b906020840190612205565b5050565b610b1a838383611ab5565b6008546001600160a01b03163314610b955760405162461bcd60e51b815260040161094d906127c8565b600e805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610bdf5760405162461bcd60e51b815260040161094d906127c8565b6000610bee6001546000540390565b600e5490915061ffff16610c028483612857565b61ffff161115610c245760405162461bcd60e51b815260040161094d906127fd565b610b1a828461ffff16611ca3565b6008546001600160a01b03163314610c5c5760405162461bcd60e51b815260040161094d906127c8565b600e805465ff00000000001960ff600160301b8084049190911615021666ffff00000000001990911617600160281b179055565b6008546001600160a01b03163314610cba5760405162461bcd60e51b815260040161094d906127c8565b600e805467ff00000000000000198116600160381b9182900460ff1615909102179055565b6008546001600160a01b03163314610d095760405162461bcd60e51b815260040161094d906127c8565b6040514790339082156108fc029083906000818181858888f19350505050158015610b5c573d6000803e3d6000fd5b610b1a83838360405180602001604052806000815250611614565b6008546001600160a01b03163314610d7d5760405162461bcd60e51b815260040161094d906127c8565b600c55565b6008546001600160a01b03163314610dac5760405162461bcd60e51b815260040161094d906127c8565b600e805460ff909216600160201b0264ff0000000019909216919091179055565b336000908152600f602052604081205460ff1690610dee6001546000540390565b3360009081526011602052604090205490915060ff16610e505760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161094d565b600e5461ffff16610e6460ff851683612857565b61ffff161115610e865760405162461bcd60e51b815260040161094d906127fd565b600e546301000000900460ff16610e9d8484612895565b60ff161115610eee5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820206c696d69742020706572206164647265737300604482015260640161094d565b600e5460ff6201000090910481169084161115610f4d5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820206c696d69742020706572207478000000000000604482015260640161094d565b600e54600160281b900460ff1615610fa75760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f76657221000000000000604482015260640161094d565b600e5460ff600160201b909104811690831610610ff3578260ff16600d54610fcf91906128ce565b341015610fee5760405162461bcd60e51b815260040161094d9061282a565b611065565b6000610fff8385612895565b600e5490915060ff600160201b9091048116908216111561106357600e5461103190600160201b900460ff1682612904565b90508060ff16600d5461104491906128ce565b3410156110635760405162461bcd60e51b815260040161094d9061282a565b505b611072338460ff16611ca3565b61107c8383612895565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006110ad82611cbd565b5192915050565b60006001600160a01b0382166110dd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461112c5760405162461bcd60e51b815260040161094d906127c8565b6111366000611dd7565b565b6008546001600160a01b031633146111625760405162461bcd60e51b815260040161094d906127c8565b8051610b5c906009906020840190612205565b6008546001600160a01b0316331461119f5760405162461bcd60e51b815260040161094d906127c8565b60005b60ff8116821115610b1a5760016011600085858560ff168181106111c8576111c8612a09565b90506020020160208101906111dd919061239d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061120f816129a9565b9150506111a2565b6008546001600160a01b031633146112415760405162461bcd60e51b815260040161094d906127c8565b60005b60ff8116821115610b1a5760006011600085858560ff1681811061126a5761126a612a09565b905060200201602081019061127f919061239d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112b1816129a9565b915050611244565b60606003805461097d90612953565b6001600160a01b0382163314156112f25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061136d6001546000540390565b33600090815260106020526040902054600e5491925060ff9081169161ffff169061139a90851684612857565b61ffff1611156113bc5760405162461bcd60e51b815260040161094d906127fd565b600e546301000000900460ff166113d38285612895565b60ff16111561141e5760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b604482015260640161094d565b600e5460ff62010000909104811690841611156114775760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b604482015260640161094d565b600e54600160301b900460ff16156114d15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161094d565b600e5460ff600160201b90910481169082161061151d578260ff16600c546114f991906128ce565b3410156115185760405162461bcd60e51b815260040161094d9061282a565b61158f565b60006115298285612895565b600e5490915060ff600160201b9091048116908216111561158d57600e5461155b90600160201b900460ff1682612904565b90508060ff16600c5461156e91906128ce565b34101561158d5760405162461bcd60e51b815260040161094d9061282a565b505b61159c338460ff16611ca3565b6115a68184612895565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b6008546001600160a01b031633146115f65760405162461bcd60e51b815260040161094d906127c8565b600e805460ff909216620100000262ff000019909216919091179055565b61161f848484611ab5565b6001600160a01b0383163b15158015611641575061163f84848484611e29565b155b1561165f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061167082611a2e565b6116d45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094d565b600e54600160381b900460ff1661177757600b80546116f290612953565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90612953565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b50505050509050919050565b6000611781611f21565b905060008151116117a157604051806020016040528060008152506117cf565b806117ab84611f30565b600a6040516020016117bf939291906126b4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118005760405162461bcd60e51b815260040161094d906127c8565b600061180f6001546000540390565b905060006118208360ff87166128ce565b600e5490915061ffff9081169061183a908390851661287d565b111561187e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2b99036b0bc1039bab838363c9760691b604482015260640161094d565b60005b838110156118ce576118bc85858381811061189e5761189e612a09565b90506020020160208101906118b3919061239d565b8760ff16611ca3565b806118c68161298e565b915050611881565b505050505050565b6008546001600160a01b031633146119005760405162461bcd60e51b815260040161094d906127c8565b600d55565b600b805461191290612953565b80601f016020809104026020016040519081016040528092919081815260200182805461193e90612953565b801561198b5780601f106119605761010080835404028352916020019161198b565b820191906000526020600020905b81548152906001019060200180831161196e57829003601f168201915b505050505081565b6008546001600160a01b031633146119bd5760405162461bcd60e51b815260040161094d906127c8565b6001600160a01b038116611a225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094d565b611a2b81611dd7565b50565b600080548210801561091d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ac082611cbd565b9050836001600160a01b031681600001516001600160a01b031614611af75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b155750611b15853361084d565b80611b30575033611b2584610a00565b6001600160a01b0316145b905080611b5057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b7757604051633a954ecd60e21b815260040160405180910390fd5b611b8360008487611a59565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c57576000548214611c5757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b5c82826040518060200160405280600081525061202d565b604080516060810182526000808252602082018190529181019190915281600054811015611dbe57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611dbc5780516001600160a01b031615611d53579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611db7579392505050565b611d53565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e5e903390899088908890600401612778565b602060405180830381600087803b158015611e7857600080fd5b505af1925050508015611ea8575060408051601f3d908101601f19168201909252611ea591810190612566565b60015b611f03573d808015611ed6576040519150601f19603f3d011682016040523d82523d6000602084013e611edb565b606091505b508051611efb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461097d90612953565b606081611f545750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f7e5780611f688161298e565b9150611f779050600a836128ba565b9150611f58565b6000816001600160401b03811115611f9857611f98612a1f565b6040519080825280601f01601f191660200182016040528015611fc2576020820181803683370190505b5090505b8415611f1957611fd76001836128ed565b9150611fe4600a866129c9565b611fef90603061287d565b60f81b81838151811061200457612004612a09565b60200101906001600160f81b031916908160001a905350612026600a866128ba565b9450611fc6565b610b1a83838360016000546001600160a01b03851661205e57604051622e076360e81b815260040160405180910390fd5b8361207c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561212d57506001600160a01b0387163b15155b156121b6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461217e6000888480600101955088611e29565b61219b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156121335782600054146121b157600080fd5b6121fc565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156121b7575b50600055611c9c565b82805461221190612953565b90600052602060002090601f0160209004810192826122335760008555612279565b82601f1061224c57805160ff1916838001178555612279565b82800160010185558215612279579182015b8281111561227957825182559160200191906001019061225e565b50612285929150612289565b5090565b5b80821115612285576000815560010161228a565b60006001600160401b03808411156122b8576122b8612a1f565b604051601f8501601f19908116603f011681019082821181831017156122e0576122e0612a1f565b816040528093508581528686860111156122f957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461232a57600080fd5b919050565b60008083601f84011261234157600080fd5b5081356001600160401b0381111561235857600080fd5b6020830191508360208260051b850101111561237357600080fd5b9250929050565b803561ffff8116811461232a57600080fd5b803560ff8116811461232a57600080fd5b6000602082840312156123af57600080fd5b6117cf82612313565b600080604083850312156123cb57600080fd5b6123d483612313565b91506123e260208401612313565b90509250929050565b60008060006060848603121561240057600080fd5b61240984612313565b925061241760208501612313565b9150604084013590509250925092565b6000806000806080858703121561243d57600080fd5b61244685612313565b935061245460208601612313565b92506040850135915060608501356001600160401b0381111561247657600080fd5b8501601f8101871361248757600080fd5b6124968782356020840161229e565b91505092959194509250565b600080604083850312156124b557600080fd5b6124be83612313565b9150602083013580151581146124d357600080fd5b809150509250929050565b600080604083850312156124f157600080fd5b6124fa83612313565b946020939093013593505050565b6000806020838503121561251b57600080fd5b82356001600160401b0381111561253157600080fd5b61253d8582860161232f565b90969095509350505050565b60006020828403121561255b57600080fd5b81356117cf81612a35565b60006020828403121561257857600080fd5b81516117cf81612a35565b60006020828403121561259557600080fd5b81356001600160401b038111156125ab57600080fd5b8201601f810184136125bc57600080fd5b611f198482356020840161229e565b6000602082840312156125dd57600080fd5b6117cf8261237a565b600080604083850312156125f957600080fd5b6123d48361237a565b60006020828403121561261457600080fd5b5035919050565b60006020828403121561262d57600080fd5b6117cf8261238c565b60008060006040848603121561264b57600080fd5b6126548461238c565b925060208401356001600160401b0381111561266f57600080fd5b61267b8682870161232f565b9497909650939450505050565b600081518084526126a0816020860160208601612927565b601f01601f19169290920160200192915050565b6000845160206126c78285838a01612927565b8551918401916126da8184848a01612927565b8554920191600090600181811c90808316806126f757607f831692505b85831081141561271557634e487b7160e01b85526022600452602485fd5b808015612729576001811461273a57612767565b60ff19851688528388019550612767565b60008b81526020902060005b8581101561275f5781548a820152908401908801612746565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ab90830184612688565b9695505050505050565b6020815260006117cf6020830184612688565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff808316818516808303821115612874576128746129dd565b01949350505050565b60008219821115612890576128906129dd565b500190565b600060ff821660ff84168060ff038211156128b2576128b26129dd565b019392505050565b6000826128c9576128c96129f3565b500490565b60008160001904831182151516156128e8576128e86129dd565b500290565b6000828210156128ff576128ff6129dd565b500390565b600060ff821660ff84168082101561291e5761291e6129dd565b90039392505050565b60005b8381101561294257818101518382015260200161292a565b8381111561165f5750506000910152565b600181811c9082168061296757607f821691505b6020821081141561298857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129a2576129a26129dd565b5060010190565b600060ff821660ff8114156129c0576129c06129dd565b60010192915050565b6000826129d8576129d86129f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a2b57600080fdfea2646970667358221220b9910060a06fb35f94e4db7d367c0f74ec80799e15a5787ebabef40e42ed988f64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102935760003560e01c8063715018a61161015a578063aa062290116100c1578063d5abeb011161007a578063d5abeb01146107d4578063e94053c714610802578063e985e9c514610832578063eef440af1461087b578063f2fde38b14610890578063f8bf5172146108b057600080fd5b8063aa06229014610713578063b88d4fde14610733578063bc951b9114610753578063c87b56dd14610774578063cffb6e2014610794578063d1d19213146107b457600080fd5b80639257e044116101135780639257e0441461067457806394354fd01461068a57806395d89b41146106aa578063a22cb465146106bf578063a2522d2d146106df578063a475b5dd146106f257600080fd5b8063715018a6146105c05780637ec4a659146105d55780637f6e9093146105f55780638da5cb5b146106165780638e07484c146106345780638f65fe0a1461065457600080fd5b806337a66d85116101fe5780634d9c1848116101b75780634d9c1848146104ea57806359bf5dbb1461050a5780635c975abb1461054c57806360e85cde1461056d5780636352211e1461058057806370a08231146105a057600080fd5b806337a66d851461043b5780633af32abf146104505780633bd64968146104805780633ccfd60b1461049557806342842e0e146104aa57806344a0d68a146104ca57600080fd5b80631067fcc7116102505780631067fcc71461037e57806313faede61461039e57806318160ddd146103c257806323b872dd146103db57806328b60d15146103fb5780632f6f98e11461041b57600080fd5b806301ffc9a71461029857806306421c2f146102cd57806306fdde03146102ef578063081812fc14610311578063093cfa6314610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612549565b6108d1565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e83660046125cb565b610923565b005b3480156102fb57600080fd5b5061030461096e565b6040516102c491906127b5565b34801561031d57600080fd5b5061033161032c366004612602565b610a00565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506102ed610a44565b34801561036a57600080fd5b506102ed6103793660046124de565b610a91565b34801561038a57600080fd5b506102ed610399366004612583565b610b1f565b3480156103aa57600080fd5b506103b4600c5481565b6040519081526020016102c4565b3480156103ce57600080fd5b50600154600054036103b4565b3480156103e757600080fd5b506102ed6103f63660046123eb565b610b60565b34801561040757600080fd5b506102ed61041636600461261b565b610b6b565b34801561042757600080fd5b506102ed6104363660046125e6565b610bb5565b34801561044757600080fd5b506102ed610c32565b34801561045c57600080fd5b506102b861046b36600461239d565b60116020526000908152604090205460ff1681565b34801561048c57600080fd5b506102ed610c90565b3480156104a157600080fd5b506102ed610cdf565b3480156104b657600080fd5b506102ed6104c53660046123eb565b610d38565b3480156104d657600080fd5b506102ed6104e5366004612602565b610d53565b3480156104f657600080fd5b506102ed61050536600461261b565b610d82565b34801561051657600080fd5b5061053a61052536600461239d565b600f6020526000908152604090205460ff1681565b60405160ff90911681526020016102c4565b34801561055857600080fd5b50600e546102b890600160301b900460ff1681565b6102ed61057b36600461261b565b610dcd565b34801561058c57600080fd5b5061033161059b366004612602565b6110a2565b3480156105ac57600080fd5b506103b46105bb36600461239d565b6110b4565b3480156105cc57600080fd5b506102ed611102565b3480156105e157600080fd5b506102ed6105f0366004612583565b611138565b34801561060157600080fd5b50600e546102b890600160281b900460ff1681565b34801561062257600080fd5b506008546001600160a01b0316610331565b34801561064057600080fd5b506102ed61064f366004612508565b611175565b34801561066057600080fd5b506102ed61066f366004612508565b611217565b34801561068057600080fd5b506103b4600d5481565b34801561069657600080fd5b50600e5461053a9062010000900460ff1681565b3480156106b657600080fd5b506103046112b9565b3480156106cb57600080fd5b506102ed6106da3660046124a2565b6112c8565b6102ed6106ed36600461261b565b61135e565b3480156106fe57600080fd5b50600e546102b890600160381b900460ff1681565b34801561071f57600080fd5b506102ed61072e36600461261b565b6115cc565b34801561073f57600080fd5b506102ed61074e366004612427565b611614565b34801561075f57600080fd5b50600e5461053a906301000000900460ff1681565b34801561078057600080fd5b5061030461078f366004612602565b611665565b3480156107a057600080fd5b506102ed6107af366004612636565b6117d6565b3480156107c057600080fd5b506102ed6107cf366004612602565b6118d6565b3480156107e057600080fd5b50600e546107ef9061ffff1681565b60405161ffff90911681526020016102c4565b34801561080e57600080fd5b5061053a61081d36600461239d565b60106020526000908152604090205460ff1681565b34801561083e57600080fd5b506102b861084d3660046123b8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50610304611905565b34801561089c57600080fd5b506102ed6108ab36600461239d565b611993565b3480156108bc57600080fd5b50600e5461053a90600160201b900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061090257506001600160e01b03198216635b5e139f60e01b145b8061091d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109565760405162461bcd60e51b815260040161094d906127c8565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b60606002805461097d90612953565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990612953565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611a2e565b610a28576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a6e5760405162461bcd60e51b815260040161094d906127c8565b600e805465ff0000000000198116600160281b9182900460ff1615909102179055565b6000610a9c826110a2565b9050806001600160a01b0316836001600160a01b03161415610ad15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610af15750610aef813361084d565b155b15610b0f576040516367d9dca160e11b815260040160405180910390fd5b610b1a838383611a59565b505050565b6008546001600160a01b03163314610b495760405162461bcd60e51b815260040161094d906127c8565b8051610b5c90600b906020840190612205565b5050565b610b1a838383611ab5565b6008546001600160a01b03163314610b955760405162461bcd60e51b815260040161094d906127c8565b600e805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610bdf5760405162461bcd60e51b815260040161094d906127c8565b6000610bee6001546000540390565b600e5490915061ffff16610c028483612857565b61ffff161115610c245760405162461bcd60e51b815260040161094d906127fd565b610b1a828461ffff16611ca3565b6008546001600160a01b03163314610c5c5760405162461bcd60e51b815260040161094d906127c8565b600e805465ff00000000001960ff600160301b8084049190911615021666ffff00000000001990911617600160281b179055565b6008546001600160a01b03163314610cba5760405162461bcd60e51b815260040161094d906127c8565b600e805467ff00000000000000198116600160381b9182900460ff1615909102179055565b6008546001600160a01b03163314610d095760405162461bcd60e51b815260040161094d906127c8565b6040514790339082156108fc029083906000818181858888f19350505050158015610b5c573d6000803e3d6000fd5b610b1a83838360405180602001604052806000815250611614565b6008546001600160a01b03163314610d7d5760405162461bcd60e51b815260040161094d906127c8565b600c55565b6008546001600160a01b03163314610dac5760405162461bcd60e51b815260040161094d906127c8565b600e805460ff909216600160201b0264ff0000000019909216919091179055565b336000908152600f602052604081205460ff1690610dee6001546000540390565b3360009081526011602052604090205490915060ff16610e505760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161094d565b600e5461ffff16610e6460ff851683612857565b61ffff161115610e865760405162461bcd60e51b815260040161094d906127fd565b600e546301000000900460ff16610e9d8484612895565b60ff161115610eee5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820206c696d69742020706572206164647265737300604482015260640161094d565b600e5460ff6201000090910481169084161115610f4d5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820206c696d69742020706572207478000000000000604482015260640161094d565b600e54600160281b900460ff1615610fa75760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f76657221000000000000604482015260640161094d565b600e5460ff600160201b909104811690831610610ff3578260ff16600d54610fcf91906128ce565b341015610fee5760405162461bcd60e51b815260040161094d9061282a565b611065565b6000610fff8385612895565b600e5490915060ff600160201b9091048116908216111561106357600e5461103190600160201b900460ff1682612904565b90508060ff16600d5461104491906128ce565b3410156110635760405162461bcd60e51b815260040161094d9061282a565b505b611072338460ff16611ca3565b61107c8383612895565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006110ad82611cbd565b5192915050565b60006001600160a01b0382166110dd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461112c5760405162461bcd60e51b815260040161094d906127c8565b6111366000611dd7565b565b6008546001600160a01b031633146111625760405162461bcd60e51b815260040161094d906127c8565b8051610b5c906009906020840190612205565b6008546001600160a01b0316331461119f5760405162461bcd60e51b815260040161094d906127c8565b60005b60ff8116821115610b1a5760016011600085858560ff168181106111c8576111c8612a09565b90506020020160208101906111dd919061239d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061120f816129a9565b9150506111a2565b6008546001600160a01b031633146112415760405162461bcd60e51b815260040161094d906127c8565b60005b60ff8116821115610b1a5760006011600085858560ff1681811061126a5761126a612a09565b905060200201602081019061127f919061239d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112b1816129a9565b915050611244565b60606003805461097d90612953565b6001600160a01b0382163314156112f25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061136d6001546000540390565b33600090815260106020526040902054600e5491925060ff9081169161ffff169061139a90851684612857565b61ffff1611156113bc5760405162461bcd60e51b815260040161094d906127fd565b600e546301000000900460ff166113d38285612895565b60ff16111561141e5760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b604482015260640161094d565b600e5460ff62010000909104811690841611156114775760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b604482015260640161094d565b600e54600160301b900460ff16156114d15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161094d565b600e5460ff600160201b90910481169082161061151d578260ff16600c546114f991906128ce565b3410156115185760405162461bcd60e51b815260040161094d9061282a565b61158f565b60006115298285612895565b600e5490915060ff600160201b9091048116908216111561158d57600e5461155b90600160201b900460ff1682612904565b90508060ff16600c5461156e91906128ce565b34101561158d5760405162461bcd60e51b815260040161094d9061282a565b505b61159c338460ff16611ca3565b6115a68184612895565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b6008546001600160a01b031633146115f65760405162461bcd60e51b815260040161094d906127c8565b600e805460ff909216620100000262ff000019909216919091179055565b61161f848484611ab5565b6001600160a01b0383163b15158015611641575061163f84848484611e29565b155b1561165f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061167082611a2e565b6116d45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094d565b600e54600160381b900460ff1661177757600b80546116f290612953565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90612953565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b50505050509050919050565b6000611781611f21565b905060008151116117a157604051806020016040528060008152506117cf565b806117ab84611f30565b600a6040516020016117bf939291906126b4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118005760405162461bcd60e51b815260040161094d906127c8565b600061180f6001546000540390565b905060006118208360ff87166128ce565b600e5490915061ffff9081169061183a908390851661287d565b111561187e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2b99036b0bc1039bab838363c9760691b604482015260640161094d565b60005b838110156118ce576118bc85858381811061189e5761189e612a09565b90506020020160208101906118b3919061239d565b8760ff16611ca3565b806118c68161298e565b915050611881565b505050505050565b6008546001600160a01b031633146119005760405162461bcd60e51b815260040161094d906127c8565b600d55565b600b805461191290612953565b80601f016020809104026020016040519081016040528092919081815260200182805461193e90612953565b801561198b5780601f106119605761010080835404028352916020019161198b565b820191906000526020600020905b81548152906001019060200180831161196e57829003601f168201915b505050505081565b6008546001600160a01b031633146119bd5760405162461bcd60e51b815260040161094d906127c8565b6001600160a01b038116611a225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094d565b611a2b81611dd7565b50565b600080548210801561091d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ac082611cbd565b9050836001600160a01b031681600001516001600160a01b031614611af75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b155750611b15853361084d565b80611b30575033611b2584610a00565b6001600160a01b0316145b905080611b5057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b7757604051633a954ecd60e21b815260040160405180910390fd5b611b8360008487611a59565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c57576000548214611c5757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b5c82826040518060200160405280600081525061202d565b604080516060810182526000808252602082018190529181019190915281600054811015611dbe57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611dbc5780516001600160a01b031615611d53579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611db7579392505050565b611d53565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e5e903390899088908890600401612778565b602060405180830381600087803b158015611e7857600080fd5b505af1925050508015611ea8575060408051601f3d908101601f19168201909252611ea591810190612566565b60015b611f03573d808015611ed6576040519150601f19603f3d011682016040523d82523d6000602084013e611edb565b606091505b508051611efb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461097d90612953565b606081611f545750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f7e5780611f688161298e565b9150611f779050600a836128ba565b9150611f58565b6000816001600160401b03811115611f9857611f98612a1f565b6040519080825280601f01601f191660200182016040528015611fc2576020820181803683370190505b5090505b8415611f1957611fd76001836128ed565b9150611fe4600a866129c9565b611fef90603061287d565b60f81b81838151811061200457612004612a09565b60200101906001600160f81b031916908160001a905350612026600a866128ba565b9450611fc6565b610b1a83838360016000546001600160a01b03851661205e57604051622e076360e81b815260040160405180910390fd5b8361207c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561212d57506001600160a01b0387163b15155b156121b6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461217e6000888480600101955088611e29565b61219b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156121335782600054146121b157600080fd5b6121fc565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156121b7575b50600055611c9c565b82805461221190612953565b90600052602060002090601f0160209004810192826122335760008555612279565b82601f1061224c57805160ff1916838001178555612279565b82800160010185558215612279579182015b8281111561227957825182559160200191906001019061225e565b50612285929150612289565b5090565b5b80821115612285576000815560010161228a565b60006001600160401b03808411156122b8576122b8612a1f565b604051601f8501601f19908116603f011681019082821181831017156122e0576122e0612a1f565b816040528093508581528686860111156122f957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461232a57600080fd5b919050565b60008083601f84011261234157600080fd5b5081356001600160401b0381111561235857600080fd5b6020830191508360208260051b850101111561237357600080fd5b9250929050565b803561ffff8116811461232a57600080fd5b803560ff8116811461232a57600080fd5b6000602082840312156123af57600080fd5b6117cf82612313565b600080604083850312156123cb57600080fd5b6123d483612313565b91506123e260208401612313565b90509250929050565b60008060006060848603121561240057600080fd5b61240984612313565b925061241760208501612313565b9150604084013590509250925092565b6000806000806080858703121561243d57600080fd5b61244685612313565b935061245460208601612313565b92506040850135915060608501356001600160401b0381111561247657600080fd5b8501601f8101871361248757600080fd5b6124968782356020840161229e565b91505092959194509250565b600080604083850312156124b557600080fd5b6124be83612313565b9150602083013580151581146124d357600080fd5b809150509250929050565b600080604083850312156124f157600080fd5b6124fa83612313565b946020939093013593505050565b6000806020838503121561251b57600080fd5b82356001600160401b0381111561253157600080fd5b61253d8582860161232f565b90969095509350505050565b60006020828403121561255b57600080fd5b81356117cf81612a35565b60006020828403121561257857600080fd5b81516117cf81612a35565b60006020828403121561259557600080fd5b81356001600160401b038111156125ab57600080fd5b8201601f810184136125bc57600080fd5b611f198482356020840161229e565b6000602082840312156125dd57600080fd5b6117cf8261237a565b600080604083850312156125f957600080fd5b6123d48361237a565b60006020828403121561261457600080fd5b5035919050565b60006020828403121561262d57600080fd5b6117cf8261238c565b60008060006040848603121561264b57600080fd5b6126548461238c565b925060208401356001600160401b0381111561266f57600080fd5b61267b8682870161232f565b9497909650939450505050565b600081518084526126a0816020860160208601612927565b601f01601f19169290920160200192915050565b6000845160206126c78285838a01612927565b8551918401916126da8184848a01612927565b8554920191600090600181811c90808316806126f757607f831692505b85831081141561271557634e487b7160e01b85526022600452602485fd5b808015612729576001811461273a57612767565b60ff19851688528388019550612767565b60008b81526020902060005b8581101561275f5781548a820152908401908801612746565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ab90830184612688565b9695505050505050565b6020815260006117cf6020830184612688565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff808316818516808303821115612874576128746129dd565b01949350505050565b60008219821115612890576128906129dd565b500190565b600060ff821660ff84168060ff038211156128b2576128b26129dd565b019392505050565b6000826128c9576128c96129f3565b500490565b60008160001904831182151516156128e8576128e86129dd565b500290565b6000828210156128ff576128ff6129dd565b500390565b600060ff821660ff84168082101561291e5761291e6129dd565b90039392505050565b60005b8381101561294257818101518382015260200161292a565b8381111561165f5750506000910152565b600181811c9082168061296757607f821691505b6020821081141561298857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129a2576129a26129dd565b5060010190565b600060ff821660ff8114156129c0576129c06129dd565b60010192915050565b6000826129d8576129d86129f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a2b57600080fdfea2646970667358221220b9910060a06fb35f94e4db7d367c0f74ec80799e15a5787ebabef40e42ed988f64736f6c63430008070033
Deployed Bytecode Sourcemap
44852:6289:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25176:305;;;;;;;;;;-1:-1:-1;25176:305:0;;;;;:::i;:::-;;:::i;:::-;;;8993:14:1;;8986:22;8968:41;;8956:2;8941:18;25176:305:0;;;;;;;;47596:97;;;;;;;;;;-1:-1:-1;47596:97:0;;;;;:::i;:::-;;:::i;:::-;;28289:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29792:204::-;;;;;;;;;;-1:-1:-1;29792:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8291:32:1;;;8273:51;;8261:2;8246:18;29792:204:0;8127:203:1;48206:75:0;;;;;;;;;;;;;:::i;29355:371::-;;;;;;;;;;-1:-1:-1;29355:371:0;;;;;:::i;:::-;;:::i;50282:102::-;;;;;;;;;;-1:-1:-1;50282:102:0;;;;;:::i;:::-;;:::i;45048:33::-;;;;;;;;;;;;;;;;;;;13937:25:1;;;13925:2;13910:18;45048:33:0;13791:177:1;24425:303:0;;;;;;;;;;-1:-1:-1;24679:12:0;;24469:7;24663:13;:28;24425:303;;30657:170;;;;;;;;;;-1:-1:-1;30657:170:0;;;;;:::i;:::-;;:::i;50763:115::-;;;;;;;;;;-1:-1:-1;50763:115:0;;;;;:::i;:::-;;:::i;46780:326::-;;;;;;;;;;-1:-1:-1;46780:326:0;;;;;:::i;:::-;;:::i;50392:91::-;;;;;;;;;;;;;:::i;45568:46::-;;;;;;;;;;-1:-1:-1;45568:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50570:70;;;;;;;;;;;;;:::i;50889:144::-;;;;;;;;;;;;;:::i;30898:185::-;;;;;;;;;;-1:-1:-1;30898:185:0;;;;;:::i;:::-;;:::i;50489:76::-;;;;;;;;;;-1:-1:-1;50489:76:0;;;;;:::i;:::-;;:::i;48400:134::-;;;;;;;;;;-1:-1:-1;48400:134:0;;;;;:::i;:::-;;:::i;45455:49::-;;;;;;;;;;-1:-1:-1;45455:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14145:4:1;14133:17;;;14115:36;;14103:2;14088:18;45455:49:0;13973:184:1;45395:25:0;;;;;;;;;;-1:-1:-1;45395:25:0;;;;-1:-1:-1;;;45395:25:0;;;;;;48962:1207;;;;;;:::i;:::-;;:::i;28097:125::-;;;;;;;;;;-1:-1:-1;28097:125:0;;;;;:::i;:::-;;:::i;25545:206::-;;;;;;;;;;-1:-1:-1;25545:206:0;;;;;:::i;:::-;;:::i;43998:103::-;;;;;;;;;;;;;:::i;50175:102::-;;;;;;;;;;-1:-1:-1;50175:102:0;;;;;:::i;:::-;;:::i;45363:27::-;;;;;;;;;;-1:-1:-1;45363:27:0;;;;-1:-1:-1;;;45363:27:0;;;;;;43346:87;;;;;;;;;;-1:-1:-1;43419:6:0;;-1:-1:-1;;;;;43419:6:0;43346:87;;48546:200;;;;;;;;;;-1:-1:-1;48546:200:0;;;;;:::i;:::-;;:::i;48754:204::-;;;;;;;;;;-1:-1:-1;48754:204:0;;;;;:::i;:::-;;:::i;45086:32::-;;;;;;;;;;;;;;;;45166:35;;;;;;;;;;-1:-1:-1;45166:35:0;;;;;;;;;;;28458:104;;;;;;;;;;;;;:::i;30068:287::-;;;;;;;;;;-1:-1:-1;30068:287:0;;;;;:::i;:::-;;:::i;45720:1052::-;;;;;;:::i;:::-;;:::i;45425:25::-;;;;;;;;;;-1:-1:-1;45425:25:0;;;;-1:-1:-1;;;45425:25:0;;;;;;50646:107;;;;;;;;;;-1:-1:-1;50646:107:0;;;;;:::i;:::-;;:::i;31154:369::-;;;;;;;;;;-1:-1:-1;31154:369:0;;;;;:::i;:::-;;:::i;45206:39::-;;;;;;;;;;-1:-1:-1;45206:39:0;;;;;;;;;;;47708:490;;;;;;;;;;-1:-1:-1;47708:490:0;;;;;:::i;:::-;;:::i;47112:473::-;;;;;;;;;;-1:-1:-1;47112:473:0;;;;;:::i;:::-;;:::i;48285:106::-;;;;;;;;;;-1:-1:-1;48285:106:0;;;;;:::i;:::-;;:::i;45130:31::-;;;;;;;;;;-1:-1:-1;45130:31:0;;;;;;;;;;;13772:6:1;13760:19;;;13742:38;;13730:2;13715:18;45130:31:0;13598:188:1;45510:53:0;;;;;;;;;;-1:-1:-1;45510:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30426:164;;;;;;;;;;-1:-1:-1;30426:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30547:25:0;;;30523:4;30547:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30426:164;45008:23;;;;;;;;;;;;;:::i;44256:201::-;;;;;;;;;;-1:-1:-1;44256:201:0;;;;;:::i;:::-;;:::i;45252:43::-;;;;;;;;;;-1:-1:-1;45252:43:0;;;;-1:-1:-1;;;45252:43:0;;;;;;25176:305;25278:4;-1:-1:-1;;;;;;25315:40:0;;-1:-1:-1;;;25315:40:0;;:105;;-1:-1:-1;;;;;;;25372:48:0;;-1:-1:-1;;;25372:48:0;25315:105;:158;;;-1:-1:-1;;;;;;;;;;15210:40:0;;;25437:36;25295:178;25176:305;-1:-1:-1;;25176:305:0:o;47596:97::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;;;;;;;;;47665:9:::1;:22:::0;;-1:-1:-1;;47665:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47596:97::o;28289:100::-;28343:13;28376:5;28369:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28289:100;:::o;29792:204::-;29860:7;29885:16;29893:7;29885;:16::i;:::-;29880:64;;29910:34;;-1:-1:-1;;;29910:34:0;;;;;;;;;;;29880:64;-1:-1:-1;29964:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29964:24:0;;29792:204::o;48206:75::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;48267:8:::1;::::0;;-1:-1:-1;;48255:20:0;::::1;-1:-1:-1::0;;;48267:8:0;;;::::1;;;48266:9;48255:20:::0;;::::1;;::::0;;48206:75::o;29355:371::-;29428:13;29444:24;29460:7;29444:15;:24::i;:::-;29428:40;;29489:5;-1:-1:-1;;;;;29483:11:0;:2;-1:-1:-1;;;;;29483:11:0;;29479:48;;;29503:24;;-1:-1:-1;;;29503:24:0;;;;;;;;;;;29479:48;3651:10;-1:-1:-1;;;;;29544:21:0;;;;;;:63;;-1:-1:-1;29570:37:0;29587:5;3651:10;30426:164;:::i;29570:37::-;29569:38;29544:63;29540:138;;;29631:35;;-1:-1:-1;;;29631:35:0;;;;;;;;;;;29540:138;29690:28;29699:2;29703:7;29712:5;29690:8;:28::i;:::-;29417:309;29355:371;;:::o;50282:102::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50356:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50282:102:::0;:::o;30657:170::-;30791:28;30801:4;30807:2;30811:7;30791:9;:28::i;50763:115::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50839:22:::1;:31:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50839:31:0;;::::1;::::0;;;::::1;::::0;;50763:115::o;46780:326::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;46863:18:::1;46891:13;24679:12:::0;;24469:7;24663:13;:28;;24425:303;46891:13:::1;46949:9;::::0;46863:42;;-1:-1:-1;46949:9:0::1;;46920:25;46934:11:::0;46863:42;46920:25:::1;:::i;:::-;:38;;;;46912:70;;;;-1:-1:-1::0;;;46912:70:0::1;;;;;;;:::i;:::-;46990:34;47000:9;47012:11;46990:34;;:9;:34::i;50392:91::-:0;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50449:6:::1;::::0;;-1:-1:-1;;50449:6:0::1;-1:-1:-1::0;;;50449:6:0;;::::1;::::0;;;::::1;50448:7;50439:16;50462:15:::0;-1:-1:-1;;50462:15:0;;;;-1:-1:-1;;;50462:15:0::1;::::0;;50392:91::o;50570:70::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50629:6:::1;::::0;;-1:-1:-1;;50619:16:0;::::1;-1:-1:-1::0;;;50629:6:0;;;::::1;;;50628:7;50619:16:::0;;::::1;;::::0;;50570:70::o;50889:144::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50978:39:::1;::::0;50949:21:::1;::::0;50986:10:::1;::::0;50978:39;::::1;;;::::0;50949:21;;50933:13:::1;50978:39:::0;50933:13;50978:39;50949:21;50986:10;50978:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30898:185:::0;31036:39;31053:4;31059:2;31063:7;31036:39;;;;;;;;;;;;:16;:39::i;50489:76::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50545:4:::1;:12:::0;50489:76::o;48400:134::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;48474:26:::1;:35:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;48474:35:0::1;-1:-1:-1::0;;48474:35:0;;::::1;::::0;;;::::1;::::0;;48400:134::o;48962:1207::-;49076:10;49048:9;49060:27;;;:15;:27;;;;;;;;;49126:13;24679:12;;24469:7;24663:13;:28;;24425:303;49126:13;49172:10;49158:25;;;;:13;:25;;;;;;49098:42;;-1:-1:-1;49158:25:0;;49150:62;;;;-1:-1:-1;;;49150:62:0;;10208:2:1;49150:62:0;;;10190:21:1;10247:2;10227:18;;;10220:30;10286:25;10266:18;;;10259:53;10329:18;;49150:62:0;10006:347:1;49150:62:0;49259:9;;;;49230:25;;;;:11;:25;:::i;:::-;:38;;;;49222:70;;;;-1:-1:-1;;;49222:70:0;;;;;;;:::i;:::-;49334:22;;;;;;;49313:17;49319:11;49313:3;:17;:::i;:::-;:43;;;;49304:88;;;;-1:-1:-1;;;49304:88:0;;13092:2:1;49304:88:0;;;13074:21:1;13131:2;13111:18;;;13104:30;13170:33;13150:18;;;13143:61;13221:18;;49304:88:0;12890:355:1;49304:88:0;49427:18;;;;;;;;;49412:33;;;;;49403:73;;;;-1:-1:-1;;;49403:73:0;;12737:2:1;49403:73:0;;;12719:21:1;12776:2;12756:18;;;12749:30;12815:28;12795:18;;;12788:56;12861:18;;49403:73:0;12535:350:1;49403:73:0;49504:8;;-1:-1:-1;;;49504:8:0;;;;49503:9;49495:48;;;;-1:-1:-1;;;49495:48:0;;9853:2:1;49495:48:0;;;9835:21:1;9892:2;9872:18;;;9865:30;9931:28;9911:18;;;9904:56;9977:18;;49495:48:0;9651:350:1;49495:48:0;49565:26;;;-1:-1:-1;;;49565:26:0;;;;;49558:33;;;;49555:435;;49642:11;49626:27;;:13;;:27;;;;:::i;:::-;49613:9;:40;;49605:72;;;;-1:-1:-1;;;49605:72:0;;;;;;;:::i;:::-;49555:435;;;49708:16;49727:17;49741:3;49727:11;:17;:::i;:::-;49771:26;;49708:36;;-1:-1:-1;49771:26:0;-1:-1:-1;;;49771:26:0;;;;;49758:39;;;;49755:208;;;49844:26;;49831:39;;-1:-1:-1;;;49844:26:0;;;;49831:10;:39;:::i;:::-;49818:52;;49918:10;49902:26;;:13;;:26;;;;:::i;:::-;49889:9;:39;;49881:71;;;;-1:-1:-1;;;49881:71:0;;;;;;;:::i;:::-;49696:294;49555:435;50011:35;50021:10;50034:11;50011:35;;:9;:35::i;:::-;50084:17;50090:11;50084:3;:17;:::i;:::-;50071:10;50055:27;;;;:15;:27;;;;;:46;;-1:-1:-1;;50055:46:0;;;;;;;;;;;;-1:-1:-1;;;48962:1207:0:o;28097:125::-;28161:7;28188:21;28201:7;28188:12;:21::i;:::-;:26;;28097:125;-1:-1:-1;;28097:125:0:o;25545:206::-;25609:7;-1:-1:-1;;;;;25633:19:0;;25629:60;;25661:28;;-1:-1:-1;;;25661:28:0;;;;;;;;;;;25629:60;-1:-1:-1;;;;;;25715:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25715:27:0;;25545:206::o;43998:103::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;44063:30:::1;44090:1;44063:18;:30::i;:::-;43998:103::o:0;50175:102::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50249:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48546:200::-:0;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;48639:7:::1;48635:101;48652:18;::::0;::::1;::::0;-1:-1:-1;48635:101:0::1;;;48720:4;48692:13;:25;48706:7;;48714:1;48706:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48692:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48692:25:0;:32;;-1:-1:-1;;48692:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48672:3;::::1;::::0;::::1;:::i;:::-;;;;48635:101;;48754:204:::0;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;48852:7:::1;48848:103;48865:18;::::0;::::1;::::0;-1:-1:-1;48848:103:0::1;;;48934:5;48906:13;:25;48920:7;;48928:1;48920:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48906:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48906:25:0;:33;;-1:-1:-1;;48906:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48885:3;::::1;::::0;::::1;:::i;:::-;;;;48848:103;;28458:104:::0;28514:13;28547:7;28540:14;;;;;:::i;30068:287::-;-1:-1:-1;;;;;30167:24:0;;3651:10;30167:24;30163:54;;;30200:17;;-1:-1:-1;;;30200:17:0;;;;;;;;;;;30163:54;3651:10;30230:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30230:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30230:53:0;;;;;;;;;;30299:48;;8968:41:1;;;30230:42:0;;3651:10;30299:48;;8941:18:1;30299:48:0;;;;;;;30068:287;;:::o;45720:1052::-;45779:18;45807:13;24679:12;;24469:7;24663:13;:28;;24425:303;45807:13;45861:10;45829:9;45841:31;;;:19;:31;;;;;;45916:9;;45779:42;;-1:-1:-1;45841:31:0;;;;;45916:9;;;45887:25;;;;45779:42;45887:25;:::i;:::-;:38;;;;45879:70;;;;-1:-1:-1;;;45879:70:0;;;;;;;:::i;:::-;45985:22;;;;;;;45964:17;45978:3;45964:11;:17;:::i;:::-;:43;;;;45956:79;;;;-1:-1:-1;;;45956:79:0;;10908:2:1;45956:79:0;;;10890:21:1;10947:2;10927:18;;;10920:30;-1:-1:-1;;;10966:18:1;;;10959:53;11029:18;;45956:79:0;10706:347:1;45956:79:0;46066:18;;;;;;;;;46050:34;;;;;46042:70;;;;-1:-1:-1;;;46042:70:0;;10908:2:1;46042:70:0;;;10890:21:1;10947:2;10927:18;;;10920:30;-1:-1:-1;;;10966:18:1;;;10959:53;11029:18;;46042:70:0;10706:347:1;46042:70:0;46130:6;;-1:-1:-1;;;46130:6:0;;;;46129:7;46121:43;;;;-1:-1:-1;;;46121:43:0;;11621:2:1;46121:43:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:25;11679:18;;;11672:53;11742:18;;46121:43:0;11419:347:1;46121:43:0;46189:26;;;-1:-1:-1;;;46189:26:0;;;;;46182:33;;;;46179:417;;46257:11;46250:18;;:4;;:18;;;;:::i;:::-;46237:9;:31;;46229:63;;;;-1:-1:-1;;;46229:63:0;;;;;;;:::i;:::-;46179:417;;;46323:16;46342:17;46356:3;46342:11;:17;:::i;:::-;46386:26;;46323:36;;-1:-1:-1;46386:26:0;-1:-1:-1;;;46386:26:0;;;;;46373:39;;;;46370:199;;;46459:26;;46446:39;;-1:-1:-1;;;46459:26:0;;;;46446:10;:39;:::i;:::-;46433:52;;46524:10;46517:17;;:4;;:17;;;;:::i;:::-;46504:9;:30;;46496:62;;;;-1:-1:-1;;;46496:62:0;;;;;;;:::i;:::-;46311:285;46179:417;46612:35;46622:10;46635:11;46612:35;;:9;:35::i;:::-;46690:17;46704:3;46690:11;:17;:::i;:::-;46676:10;46656:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;46656:51:0;;;;;;;;;;;;-1:-1:-1;;;45720:1052:0:o;50646:107::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;50718:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50718:27:0;;::::1;::::0;;;::::1;::::0;;50646:107::o;31154:369::-;31321:28;31331:4;31337:2;31341:7;31321:9;:28::i;:::-;-1:-1:-1;;;;;31364:13:0;;5313:19;:23;;31364:76;;;;;31384:56;31415:4;31421:2;31425:7;31434:5;31384:30;:56::i;:::-;31383:57;31364:76;31360:156;;;31464:40;;-1:-1:-1;;;31464:40:0;;;;;;;;;;;31360:156;31154:369;;;;:::o;47708:490::-;47807:13;47848:17;47856:8;47848:7;:17::i;:::-;47832:98;;;;-1:-1:-1;;;47832:98:0;;11973:2:1;47832:98:0;;;11955:21:1;12012:2;11992:18;;;11985:30;12051:34;12031:18;;;12024:62;-1:-1:-1;;;12102:18:1;;;12095:45;12157:19;;47832:98:0;11771:411:1;47832:98:0;47948:6;;-1:-1:-1;;;47948:6:0;;;;47943:50;;47980:9;47973:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47708:490;;;:::o;47943:50::-;48007:28;48038:10;:8;:10::i;:::-;48007:41;;48093:1;48068:14;48062:28;:32;:130;;;;;;;;;;;;;;;;;48130:14;48146:19;:8;:17;:19::i;:::-;48167:9;48113:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48062:130;48055:137;47708:490;-1:-1:-1;;;47708:490:0:o;47112:473::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;47212:18:::1;47240:13;24679:12:::0;;24469:7;24663:13;:28;;24425:303;47240:13:::1;47212:42:::0;-1:-1:-1;47262:16:0::1;47283:36;47303:9:::0;47283:36:::1;::::0;::::1;;:::i;:::-;47363:9;::::0;47262:57;;-1:-1:-1;47363:9:0::1;::::0;;::::1;::::0;47334:25:::1;::::0;47262:57;;47334:25;::::1;;:::i;:::-;:38;;47326:70;;;::::0;-1:-1:-1;;;47326:70:0;;10560:2:1;47326:70:0::1;::::0;::::1;10542:21:1::0;10599:2;10579:18;;;10572:30;-1:-1:-1;;;10618:18:1;;;10611:49;10677:18;;47326:70:0::1;10358:343:1::0;47326:70:0::1;47409:9;47404:116;47424:20:::0;;::::1;47404:116;;;47466:42;47476:9;;47486:1;47476:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47490:17;47466:42;;:9;:42::i;:::-;47446:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47404:116;;;-1:-1:-1::0;;;;;;47112:473:0:o;48285:106::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;48345:13:::1;:21:::0;48285:106::o;45008:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44256:201::-;43419:6;;-1:-1:-1;;;;;43419:6:0;3651:10;43566:23;43558:69;;;;-1:-1:-1;;;43558:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44345:22:0;::::1;44337:73;;;::::0;-1:-1:-1;;;44337:73:0;;9446:2:1;44337:73:0::1;::::0;::::1;9428:21:1::0;9485:2;9465:18;;;9458:30;9524:34;9504:18;;;9497:62;-1:-1:-1;;;9575:18:1;;;9568:36;9621:19;;44337:73:0::1;9244:402:1::0;44337:73:0::1;44421:28;44440:8;44421:18;:28::i;:::-;44256:201:::0;:::o;31778:187::-;31835:4;31899:13;;31889:7;:23;31859:98;;;;-1:-1:-1;;31930:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31930:27:0;;;;31929:28;;31778:187::o;39948:196::-;40063:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40063:29:0;-1:-1:-1;;;;;40063:29:0;;;;;;;;;40108:28;;40063:24;;40108:28;;;;;;;39948:196;;;:::o;34891:2130::-;35006:35;35044:21;35057:7;35044:12;:21::i;:::-;35006:59;;35104:4;-1:-1:-1;;;;;35082:26:0;:13;:18;;;-1:-1:-1;;;;;35082:26:0;;35078:67;;35117:28;;-1:-1:-1;;;35117:28:0;;;;;;;;;;;35078:67;35158:22;3651:10;-1:-1:-1;;;;;35184:20:0;;;;:73;;-1:-1:-1;35221:36:0;35238:4;3651:10;30426:164;:::i;35221:36::-;35184:126;;;-1:-1:-1;3651:10:0;35274:20;35286:7;35274:11;:20::i;:::-;-1:-1:-1;;;;;35274:36:0;;35184:126;35158:153;;35329:17;35324:66;;35355:35;;-1:-1:-1;;;35355:35:0;;;;;;;;;;;35324:66;-1:-1:-1;;;;;35405:16:0;;35401:52;;35430:23;;-1:-1:-1;;;35430:23:0;;;;;;;;;;;35401:52;35574:35;35591:1;35595:7;35604:4;35574:8;:35::i;:::-;-1:-1:-1;;;;;35905:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35905:31:0;;;-1:-1:-1;;;;;35905:31:0;;;-1:-1:-1;;35905:31:0;;;;;;;35951:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35951:29:0;;;;;;;;;;;36031:20;;;:11;:20;;;;;;36066:18;;-1:-1:-1;;;;;;36099:49:0;;;;-1:-1:-1;;;36132:15:0;36099:49;;;;;;;;;;36422:11;;36482:24;;;;;36525:13;;36031:20;;36482:24;;36525:13;36521:384;;36735:13;;36720:11;:28;36716:174;;36773:20;;36842:28;;;;-1:-1:-1;;;;;36816:54:0;-1:-1:-1;;;36816:54:0;-1:-1:-1;;;;;;36816:54:0;;;-1:-1:-1;;;;;36773:20:0;;36816:54;;;;36716:174;35880:1036;;;36952:7;36948:2;-1:-1:-1;;;;;36933:27:0;36942:4;-1:-1:-1;;;;;36933:27:0;;;;;;;;;;;36971:42;34995:2026;;34891:2130;;;:::o;31973:104::-;32042:27;32052:2;32056:8;32042:27;;;;;;;;;;;;:9;:27::i;26926:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27037:7:0;27120:13;;27113:4;:20;27082:886;;;27154:31;27188:17;;;:11;:17;;;;;;;;;27154:51;;;;;;;;;-1:-1:-1;;;;;27154:51:0;;;;-1:-1:-1;;;27154:51:0;;-1:-1:-1;;;;;27154:51:0;;;;;;;;-1:-1:-1;;;27154:51:0;;;;;;;;;;;;;;27224:729;;27274:14;;-1:-1:-1;;;;;27274:28:0;;27270:101;;27338:9;26926:1109;-1:-1:-1;;;26926:1109:0:o;27270:101::-;-1:-1:-1;;;27713:6:0;27758:17;;;;:11;:17;;;;;;;;;27746:29;;;;;;;;;-1:-1:-1;;;;;27746:29:0;;;;;-1:-1:-1;;;27746:29:0;;-1:-1:-1;;;;;27746:29:0;;;;;;;;-1:-1:-1;;;27746:29:0;;;;;;;;;;;;;27806:28;27802:109;;27874:9;26926:1109;-1:-1:-1;;;26926:1109:0:o;27802:109::-;27673:261;;;27135:833;27082:886;27996:31;;-1:-1:-1;;;27996:31:0;;;;;;;;;;;44617:191;44710:6;;;-1:-1:-1;;;;;44727:17:0;;;-1:-1:-1;;;;;;44727:17:0;;;;;;;44760:40;;44710:6;;;44727:17;44710:6;;44760:40;;44691:16;;44760:40;44680:128;44617:191;:::o;40636:667::-;40820:72;;-1:-1:-1;;;40820:72:0;;40799:4;;-1:-1:-1;;;;;40820:36:0;;;;;:72;;3651:10;;40871:4;;40877:7;;40886:5;;40820:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40820:72:0;;;;;;;;-1:-1:-1;;40820:72:0;;;;;;;;;;;;:::i;:::-;;;40816:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41054:13:0;;41050:235;;41100:40;;-1:-1:-1;;;41100:40:0;;;;;;;;;;;41050:235;41243:6;41237:13;41228:6;41224:2;41220:15;41213:38;40816:480;-1:-1:-1;;;;;;40939:55:0;-1:-1:-1;;;40939:55:0;;-1:-1:-1;40816:480:0;40636:667;;;;;;:::o;51041:97::-;51094:13;51123:9;51116:16;;;;;:::i;1133:723::-;1189:13;1410:10;1406:53;;-1:-1:-1;;1437:10:0;;;;;;;;;;;;-1:-1:-1;;;1437:10:0;;;;;1133:723::o;1406:53::-;1484:5;1469:12;1525:78;1532:9;;1525:78;;1558:8;;;;:::i;:::-;;-1:-1:-1;1581:10:0;;-1:-1:-1;1589:2:0;1581:10;;:::i;:::-;;;1525:78;;;1613:19;1645:6;-1:-1:-1;;;;;1635:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1635:17:0;;1613:39;;1663:154;1670:10;;1663:154;;1697:11;1707:1;1697:11;;:::i;:::-;;-1:-1:-1;1766:10:0;1774:2;1766:5;:10;:::i;:::-;1753:24;;:2;:24;:::i;:::-;1740:39;;1723:6;1730;1723:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1723:56:0;;;;;;;;-1:-1:-1;1794:11:0;1803:2;1794:11;;:::i;:::-;;;1663:154;;32440:163;32563:32;32569:2;32573:8;32583:5;32590:4;33001:20;33024:13;-1:-1:-1;;;;;33052:16:0;;33048:48;;33077:19;;-1:-1:-1;;;33077:19:0;;;;;;;;;;;33048:48;33111:13;33107:44;;33133:18;;-1:-1:-1;;;33133:18:0;;;;;;;;;;;33107:44;-1:-1:-1;;;;;33502:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33561:49:0;;-1:-1:-1;;;;;33502:44:0;;;;;;;33561:49;;;;-1:-1:-1;;33502:44:0;;;;;;33561:49;;;;;;;;;;;;;;;;33627:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33677:66:0;;;;-1:-1:-1;;;33727:15:0;33677:66;;;;;;;;;;33627:25;33824:23;;;33868:4;:23;;;;-1:-1:-1;;;;;;33876:13:0;;5313:19;:23;;33876:15;33864:641;;;33912:314;33943:38;;33968:12;;-1:-1:-1;;;;;33943:38:0;;;33960:1;;33943:38;;33960:1;;33943:38;34009:69;34048:1;34052:2;34056:14;;;;;;34072:5;34009:30;:69::i;:::-;34004:174;;34114:40;;-1:-1:-1;;;34114:40:0;;;;;;;;;;;34004:174;34221:3;34205:12;:19;;33912:314;;34307:12;34290:13;;:29;34286:43;;34321:8;;;34286:43;33864:641;;;34370:120;34401:40;;34426:14;;;;;-1:-1:-1;;;;;34401:40:0;;;34418:1;;34401:40;;34418:1;;34401:40;34485:3;34469:12;:19;;34370:120;;33864:641;-1:-1:-1;34519:13:0;:28;34569:60;31154:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:159::-;1267:20;;1327:6;1316:18;;1306:29;;1296:57;;1349:1;1346;1339:12;1364:156;1430:20;;1490:4;1479:16;;1469:27;;1459:55;;1510:1;1507;1500:12;1525:186;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1676:29;1695:9;1676:29;:::i;1716:260::-;1784:6;1792;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1884:29;1903:9;1884:29;:::i;:::-;1874:39;;1932:38;1966:2;1955:9;1951:18;1932:38;:::i;:::-;1922:48;;1716:260;;;;;:::o;1981:328::-;2058:6;2066;2074;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;2166:29;2185:9;2166:29;:::i;:::-;2156:39;;2214:38;2248:2;2237:9;2233:18;2214:38;:::i;:::-;2204:48;;2299:2;2288:9;2284:18;2271:32;2261:42;;1981:328;;;;;:::o;2314:666::-;2409:6;2417;2425;2433;2486:3;2474:9;2465:7;2461:23;2457:33;2454:53;;;2503:1;2500;2493:12;2454:53;2526:29;2545:9;2526:29;:::i;:::-;2516:39;;2574:38;2608:2;2597:9;2593:18;2574:38;:::i;:::-;2564:48;;2659:2;2648:9;2644:18;2631:32;2621:42;;2714:2;2703:9;2699:18;2686:32;-1:-1:-1;;;;;2733:6:1;2730:30;2727:50;;;2773:1;2770;2763:12;2727:50;2796:22;;2849:4;2841:13;;2837:27;-1:-1:-1;2827:55:1;;2878:1;2875;2868:12;2827:55;2901:73;2966:7;2961:2;2948:16;2943:2;2939;2935:11;2901:73;:::i;:::-;2891:83;;;2314:666;;;;;;;:::o;2985:347::-;3050:6;3058;3111:2;3099:9;3090:7;3086:23;3082:32;3079:52;;;3127:1;3124;3117:12;3079:52;3150:29;3169:9;3150:29;:::i;:::-;3140:39;;3229:2;3218:9;3214:18;3201:32;3276:5;3269:13;3262:21;3255:5;3252:32;3242:60;;3298:1;3295;3288:12;3242:60;3321:5;3311:15;;;2985:347;;;;;:::o;3337:254::-;3405:6;3413;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3505:29;3524:9;3505:29;:::i;:::-;3495:39;3581:2;3566:18;;;;3553:32;;-1:-1:-1;;;3337:254:1:o;3596:437::-;3682:6;3690;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;-1:-1:-1;;;;;3824:6:1;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3903:70;3965:7;3956:6;3945:9;3941:22;3903:70;:::i;:::-;3992:8;;3877:96;;-1:-1:-1;3596:437:1;-1:-1:-1;;;;3596:437:1:o;4038:245::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4204:9;4191:23;4223:30;4247:5;4223:30;:::i;4288:249::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4458:9;4452:16;4477:30;4501:5;4477:30;:::i;4542:450::-;4611:6;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4720:9;4707:23;-1:-1:-1;;;;;4745:6:1;4742:30;4739:50;;;4785:1;4782;4775:12;4739:50;4808:22;;4861:4;4853:13;;4849:27;-1:-1:-1;4839:55:1;;4890:1;4887;4880:12;4839:55;4913:73;4978:7;4973:2;4960:16;4955:2;4951;4947:11;4913:73;:::i;4997:184::-;5055:6;5108:2;5096:9;5087:7;5083:23;5079:32;5076:52;;;5124:1;5121;5114:12;5076:52;5147:28;5165:9;5147:28;:::i;5186:258::-;5253:6;5261;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5353:28;5371:9;5353:28;:::i;5449:180::-;5508:6;5561:2;5549:9;5540:7;5536:23;5532:32;5529:52;;;5577:1;5574;5567:12;5529:52;-1:-1:-1;5600:23:1;;5449:180;-1:-1:-1;5449:180:1:o;5634:182::-;5691:6;5744:2;5732:9;5723:7;5719:23;5715:32;5712:52;;;5760:1;5757;5750:12;5712:52;5783:27;5800:9;5783:27;:::i;5821:507::-;5914:6;5922;5930;5983:2;5971:9;5962:7;5958:23;5954:32;5951:52;;;5999:1;5996;5989:12;5951:52;6022:27;6039:9;6022:27;:::i;:::-;6012:37;;6100:2;6089:9;6085:18;6072:32;-1:-1:-1;;;;;6119:6:1;6116:30;6113:50;;;6159:1;6156;6149:12;6113:50;6198:70;6260:7;6251:6;6240:9;6236:22;6198:70;:::i;:::-;5821:507;;6287:8;;-1:-1:-1;6172:96:1;;-1:-1:-1;;;;5821:507:1:o;6333:257::-;6374:3;6412:5;6406:12;6439:6;6434:3;6427:19;6455:63;6511:6;6504:4;6499:3;6495:14;6488:4;6481:5;6477:16;6455:63;:::i;:::-;6572:2;6551:15;-1:-1:-1;;6547:29:1;6538:39;;;;6579:4;6534:50;;6333:257;-1:-1:-1;;6333:257:1:o;6595:1527::-;6819:3;6857:6;6851:13;6883:4;6896:51;6940:6;6935:3;6930:2;6922:6;6918:15;6896:51;:::i;:::-;7010:13;;6969:16;;;;7032:55;7010:13;6969:16;7054:15;;;7032:55;:::i;:::-;7176:13;;7109:20;;;7149:1;;7236;7258:18;;;;7311;;;;7338:93;;7416:4;7406:8;7402:19;7390:31;;7338:93;7479:2;7469:8;7466:16;7446:18;7443:40;7440:167;;;-1:-1:-1;;;7506:33:1;;7562:4;7559:1;7552:15;7592:4;7513:3;7580:17;7440:167;7623:18;7650:110;;;;7774:1;7769:328;;;;7616:481;;7650:110;-1:-1:-1;;7685:24:1;;7671:39;;7730:20;;;;-1:-1:-1;7650:110:1;;7769:328;14235:1;14228:14;;;14272:4;14259:18;;7864:1;7878:169;7892:8;7889:1;7886:15;7878:169;;;7974:14;;7959:13;;;7952:37;8017:16;;;;7909:10;;7878:169;;;7882:3;;8078:8;8071:5;8067:20;8060:27;;7616:481;-1:-1:-1;8113:3:1;;6595:1527;-1:-1:-1;;;;;;;;;;;6595:1527:1:o;8335:488::-;-1:-1:-1;;;;;8604:15:1;;;8586:34;;8656:15;;8651:2;8636:18;;8629:43;8703:2;8688:18;;8681:34;;;8751:3;8746:2;8731:18;;8724:31;;;8529:4;;8772:45;;8797:19;;8789:6;8772:45;:::i;:::-;8764:53;8335:488;-1:-1:-1;;;;;;8335:488:1:o;9020:219::-;9169:2;9158:9;9151:21;9132:4;9189:44;9229:2;9218:9;9214:18;9206:6;9189:44;:::i;11058:356::-;11260:2;11242:21;;;11279:18;;;11272:30;11338:34;11333:2;11318:18;;11311:62;11405:2;11390:18;;11058:356::o;12187:343::-;12389:2;12371:21;;;12428:2;12408:18;;;12401:30;-1:-1:-1;;;12462:2:1;12447:18;;12440:49;12521:2;12506:18;;12187:343::o;13250:::-;13452:2;13434:21;;;13491:2;13471:18;;;13464:30;-1:-1:-1;;;13525:2:1;13510:18;;13503:49;13584:2;13569:18;;13250:343::o;14288:224::-;14327:3;14355:6;14388:2;14385:1;14381:10;14418:2;14415:1;14411:10;14449:3;14445:2;14441:12;14436:3;14433:21;14430:47;;;14457:18;;:::i;:::-;14493:13;;14288:224;-1:-1:-1;;;;14288:224:1:o;14517:128::-;14557:3;14588:1;14584:6;14581:1;14578:13;14575:39;;;14594:18;;:::i;:::-;-1:-1:-1;14630:9:1;;14517:128::o;14650:204::-;14688:3;14724:4;14721:1;14717:12;14756:4;14753:1;14749:12;14791:3;14785:4;14781:14;14776:3;14773:23;14770:49;;;14799:18;;:::i;:::-;14835:13;;14650:204;-1:-1:-1;;;14650:204:1:o;14859:120::-;14899:1;14925;14915:35;;14930:18;;:::i;:::-;-1:-1:-1;14964:9:1;;14859:120::o;14984:168::-;15024:7;15090:1;15086;15082:6;15078:14;15075:1;15072:21;15067:1;15060:9;15053:17;15049:45;15046:71;;;15097:18;;:::i;:::-;-1:-1:-1;15137:9:1;;14984:168::o;15157:125::-;15197:4;15225:1;15222;15219:8;15216:34;;;15230:18;;:::i;:::-;-1:-1:-1;15267:9:1;;15157:125::o;15287:195::-;15325:4;15362;15359:1;15355:12;15394:4;15391:1;15387:12;15419:3;15414;15411:12;15408:38;;;15426:18;;:::i;:::-;15463:13;;;15287:195;-1:-1:-1;;;15287:195:1:o;15487:258::-;15559:1;15569:113;15583:6;15580:1;15577:13;15569:113;;;15659:11;;;15653:18;15640:11;;;15633:39;15605:2;15598:10;15569:113;;;15700:6;15697:1;15694:13;15691:48;;;-1:-1:-1;;15735:1:1;15717:16;;15710:27;15487:258::o;15750:380::-;15829:1;15825:12;;;;15872;;;15893:61;;15947:4;15939:6;15935:17;15925:27;;15893:61;16000:2;15992:6;15989:14;15969:18;15966:38;15963:161;;;16046:10;16041:3;16037:20;16034:1;16027:31;16081:4;16078:1;16071:15;16109:4;16106:1;16099:15;15963:161;;15750:380;;;:::o;16135:135::-;16174:3;-1:-1:-1;;16195:17:1;;16192:43;;;16215:18;;:::i;:::-;-1:-1:-1;16262:1:1;16251:13;;16135:135::o;16275:175::-;16312:3;16356:4;16349:5;16345:16;16385:4;16376:7;16373:17;16370:43;;;16393:18;;:::i;:::-;16442:1;16429:15;;16275:175;-1:-1:-1;;16275:175:1:o;16455:112::-;16487:1;16513;16503:35;;16518:18;;:::i;:::-;-1:-1:-1;16552:9:1;;16455:112::o;16572:127::-;16633:10;16628:3;16624:20;16621:1;16614:31;16664:4;16661:1;16654:15;16688:4;16685:1;16678:15;16704:127;16765:10;16760:3;16756:20;16753:1;16746:31;16796:4;16793:1;16786:15;16820:4;16817:1;16810:15;16836:127;16897:10;16892:3;16888:20;16885:1;16878:31;16928:4;16925:1;16918:15;16952:4;16949:1;16942:15;16968:127;17029:10;17024:3;17020:20;17017:1;17010:31;17060:4;17057:1;17050:15;17084:4;17081:1;17074:15;17100:131;-1:-1:-1;;;;;;17174:32:1;;17164:43;;17154:71;;17221:1;17218;17211:12
Swarm Source
ipfs://b9910060a06fb35f94e4db7d367c0f74ec80799e15a5787ebabef40e42ed988f
Loading...
Loading
Loading...
Loading
[ 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.