ERC-721
Overview
Max Total Supply
10,000 AP
Holders
549
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 APLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AwesomePossums
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-03 */ /** *Submitted for verification at Etherscan.io on 2022-07-08 */ /** *Submitted for verification at Etherscan.io on 2022-06-21 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs 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 {} } pragma solidity ^0.8.15; contract AwesomePossums is ERC721A, Ownable { using Strings for uint256; uint256 public constant RESERVED_TOKENS = 2000; uint256 public constant FOR_SALE_TOKENS = 10000 - RESERVED_TOKENS; address public constant RESERVED_TOKENS_ADDRESS = 0xD1220e5E22bbE66721F9C9FC4dEc2F4eDF575115; uint256 public currentForSaleLimit = 10000 - RESERVED_TOKENS; uint256 public constant STAGE_STOPPED = 0; uint256 public constant STAGE_PRESALE = 1; uint256 public constant STAGE_PUBLIC = 2; uint256 public currentStage = STAGE_STOPPED; uint256 public tokenPricePresale = 0.07 ether; uint256 public tokenPricePublicSale = 0.08 ether; uint256 public maxTokensPerAddressPresale = 50; uint256 public maxTokensPerAddress = 100; uint256 public presaleTotalLimit = 1000; bytes32 public whitelistRoot = 0x5cbb7b059a18f24e66ab9e16fce1ba1f309953713cee37b7f29bcf278d658db6; string public tokenBaseURI = "ipfs://QmRTqL1McYAJRq4GhpKQhfoBS6cSqQS8YKYQxHoTPo2K5H/"; uint256 public soldAmount = 0; mapping(address => uint256) public purchased; constructor() ERC721A("Awesome Possums", "AP") { _safeMint(RESERVED_TOKENS_ADDRESS, RESERVED_TOKENS); } function _startTokenId() internal pure override(ERC721A) returns (uint256) { return 1; } function setCurrentForSaleLimit(uint256 _currentForSaleLimit) external onlyOwner { currentForSaleLimit = _currentForSaleLimit - RESERVED_TOKENS; } function stopSale() external onlyOwner { currentStage = STAGE_STOPPED; } function startPresale() external onlyOwner { currentStage = STAGE_PRESALE; } function startPublicSale() external onlyOwner { currentStage = STAGE_PUBLIC; } function setTokenPricePresale(uint256 val) external onlyOwner { tokenPricePresale = val; } function setTokenPricePublicSale(uint256 val) external onlyOwner { tokenPricePublicSale = val; } function setMaxTokensPerAddressPresale(uint256 val) external onlyOwner { maxTokensPerAddressPresale = val; } function setMaxTokensPerAddress(uint256 val) external onlyOwner { maxTokensPerAddress = val; } function setPresaleTotalLimit(uint256 val) external onlyOwner { presaleTotalLimit = val; } function setWhitelistRoot(bytes32 val) external onlyOwner { whitelistRoot = val; } function tokenPrice() public view returns (uint256) { if (currentStage == STAGE_PRESALE) { return tokenPricePresale; } return tokenPricePublicSale; } function getMaxTokensForPhase(address target, bytes32[] memory proof) public view returns (uint256) { bytes32 leaf = keccak256(abi.encodePacked(target)); if (currentStage == STAGE_PUBLIC) { return maxTokensPerAddress; } else if (currentStage == STAGE_PRESALE) { if (MerkleProof.verify(proof, whitelistRoot, leaf)) { return maxTokensPerAddressPresale; } else { return 0; } } else { return 0; } } function safeSub(uint256 a, uint256 b) internal pure returns (uint256) { if (a < b) { return 0; } return a - b; } function getMaxTokensAllowed(address target, bytes32[] memory proof) public view returns (uint256) { uint256 maxAllowedTokens = getMaxTokensForPhase(target, proof); uint256 tokensLeftForAddress = safeSub(maxAllowedTokens, purchased[target]); maxAllowedTokens = min(maxAllowedTokens, tokensLeftForAddress); if (currentStage == STAGE_PRESALE) { uint256 presaleTokensLeft = safeSub(presaleTotalLimit, soldAmount); maxAllowedTokens = min(maxAllowedTokens, presaleTokensLeft); } uint256 publicSaleTokensLeft = safeSub(FOR_SALE_TOKENS, soldAmount); maxAllowedTokens = min(maxAllowedTokens, publicSaleTokensLeft); uint256 currentForSaleRemaining = safeSub(currentForSaleLimit, soldAmount); maxAllowedTokens = min(maxAllowedTokens, currentForSaleRemaining); return maxAllowedTokens; } function getContractInfo(address target, bytes32[] memory proof) external view returns ( uint256 _currentStage, uint256 _maxTokensAllowed, uint256 _tokenPrice, uint256 _soldAmount, uint256 _purchasedAmount, uint256 _presaleTotalLimit, bytes32 _whitelistRoot, uint256 _totalForSale ) { _currentStage = currentStage; _maxTokensAllowed = getMaxTokensAllowed(target, proof); _tokenPrice = tokenPrice(); _soldAmount = soldAmount; _purchasedAmount = purchased[target]; _presaleTotalLimit = presaleTotalLimit; _whitelistRoot = whitelistRoot; _totalForSale = currentForSaleLimit; } function mint(uint256 amount, bytes32[] calldata proof) external payable { require(msg.value >= tokenPrice() * amount, "Incorrect ETH sent"); require(amount <= getMaxTokensAllowed(msg.sender, proof), "Cannot mint more than the max allowed tokens"); _safeMint(msg.sender, amount); purchased[msg.sender] += amount; soldAmount += amount; } function _baseURI() internal view override(ERC721A) returns (string memory) { return tokenBaseURI; } function setBaseURI(string calldata URI) external onlyOwner { tokenBaseURI = URI; } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } }
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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"FOR_SALE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_STOPPED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentForSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getContractInfo","outputs":[{"internalType":"uint256","name":"_currentStage","type":"uint256"},{"internalType":"uint256","name":"_maxTokensAllowed","type":"uint256"},{"internalType":"uint256","name":"_tokenPrice","type":"uint256"},{"internalType":"uint256","name":"_soldAmount","type":"uint256"},{"internalType":"uint256","name":"_purchasedAmount","type":"uint256"},{"internalType":"uint256","name":"_presaleTotalLimit","type":"uint256"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalForSale","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getMaxTokensAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getMaxTokensForPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerAddressPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTotalLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentForSaleLimit","type":"uint256"}],"name":"setCurrentForSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerAddressPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPresaleTotalLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"val","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620000146107d061271062000494565b6009556000600a5566f8b0a10e470000600b5567011c37937e080000600c556032600d556064600e556103e8600f557f5cbb7b059a18f24e66ab9e16fce1ba1f309953713cee37b7f29bcf278d658db66010556040805160608101909152603680825262002a9c60208301396011906200008f908262000560565b506000601255348015620000a257600080fd5b506040518060400160405280600f81526020016e417765736f6d6520506f7373756d7360881b81525060405180604001604052806002815260200161041560f41b8152508160029081620000f7919062000560565b50600362000106828262000560565b5050600160005550620001193362000141565b6200013b73d1220e5e22bbe66721f9c9fc4dec2f4edf5751156107d062000193565b620006d2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001b5828260405180602001604052806000815250620001b960201b60201c565b5050565b620001c88383836001620001cd565b505050565b6000546001600160a01b038516620001f757604051622e076360e81b815260040160405180910390fd5b83600003620002195760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620002d25750620002d2876001600160a01b03166200039160201b620013971760201c565b1562000351575b60405182906001600160a01b0389169060009060008051602062002ad2833981519152908290a460018201916200031690600090899088620003a0565b62000334576040516368d2bf6b60e11b815260040160405180910390fd5b808203620002d95782600054146200034b57600080fd5b62000386565b5b6040516001830192906001600160a01b0389169060009060008051602062002ad2833981519152908290a480820362000352575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003d79033908990889088906004016200062c565b6020604051808303816000875af192505050801562000415575060408051601f3d908101601f1916820190925262000412918101906200069f565b60015b62000477573d80801562000446576040519150601f19603f3d011682016040523d82523d6000602084013e6200044b565b606091505b5080516000036200046f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b81810381811115620004b657634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e757607f821691505b6020821081036200050857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c857600081815260208120601f850160051c81016020861015620005375750805b601f850160051c820191505b81811015620005585782815560010162000543565b505050505050565b81516001600160401b038111156200057c576200057c620004bc565b62000594816200058d8454620004d2565b846200050e565b602080601f831160018114620005cc5760008415620005b35750858301515b600019600386901b1c1916600185901b17855562000558565b600085815260208120601f198616915b82811015620005fd57888601518255948401946001909101908401620005dc565b50858210156200061c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200067b5785810182015185820160a0015281016200065d565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b600060208284031215620006b257600080fd5b81516001600160e01b031981168114620006cb57600080fd5b9392505050565b6123ba80620006e26000396000f3fe6080604052600436106102e45760003560e01c80635bf5d54c11610190578063b88d4fde116100dc578063e36b0b3711610095578063e985e9c51161006f578063e985e9c514610864578063f2fde38b146108ad578063f5aa406d146108cd578063fa1a5f59146108ed57600080fd5b8063e36b0b371461081a578063e6d440d41461082f578063e8812ae31461084f57600080fd5b8063b88d4fde14610769578063ba41b0c614610789578063c226cdc91461079c578063c87b56dd146107b2578063dbb84f11146107d2578063dc504f13146107f257600080fd5b806379666ccd116101495780638da5cb5b116101235780638da5cb5b1461070057806395d89b411461071e578063a22cb46514610733578063a4ac79151461075357600080fd5b806379666ccd146106b55780637e046f30146106d55780637ff9b596146106eb57600080fd5b80635bf5d54c1461061e5780636352211e1461063457806368fc68c71461065457806370a082311461066a578063715018a61461068a57806378c5fe371461069f57600080fd5b80632d84a94c1161024f57806346c4dc27116102085780634e99b800116101e25780634e99b800146105a7578063522fe98e146105bc57806355e6738d146105e957806355f804b3146105fe57600080fd5b806346c4dc271461055d57806348e342581461057d5780634d8fae951461059257600080fd5b80632d84a94c14610477578063311df29a146104d2578063386bfc98146104f25780633ccfd60b1461050857806342842e0e1461051d5780634324851a1461053d57600080fd5b806314ff2779116102a157806314ff2779146103c457806318160ddd146103e457806323a1baaa1461040b57806323b872dd14610421578063285de8ca146104415780632b0384111461046157600080fd5b806301ffc9a7146102e957806304c98b2b1461031e57806306fdde0314610335578063081812fc14610357578063095ea7b31461038f5780630c1c972a146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004611c66565b610903565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610955565b005b34801561034157600080fd5b5061034a61098f565b6040516103159190611cd3565b34801561036357600080fd5b50610377610372366004611ce6565b610a21565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103336103aa366004611d1b565b610a65565b3480156103bb57600080fd5b50610333610af2565b3480156103d057600080fd5b506103336103df366004611ce6565b610b23565b3480156103f057600080fd5b5060015460005403600019015b604051908152602001610315565b34801561041757600080fd5b506103fd600e5481565b34801561042d57600080fd5b5061033361043c366004611d45565b610b52565b34801561044d57600080fd5b506103fd61045c366004611dc7565b610b5d565b34801561046d57600080fd5b506103fd600b5481565b34801561048357600080fd5b50610497610492366004611dc7565b610bdd565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610315565b3480156104de57600080fd5b506103336104ed366004611ce6565b610c3b565b3480156104fe57600080fd5b506103fd60105481565b34801561051457600080fd5b50610333610c6a565b34801561052957600080fd5b50610333610538366004611d45565b610cba565b34801561054957600080fd5b506103fd610558366004611dc7565b610cd5565b34801561056957600080fd5b50610333610578366004611ce6565b610d92565b34801561058957600080fd5b506103fd600081565b34801561059e57600080fd5b506103fd610dc1565b3480156105b357600080fd5b5061034a610dd2565b3480156105c857600080fd5b506103fd6105d7366004611e7f565b60136020526000908152604090205481565b3480156105f557600080fd5b506103fd600281565b34801561060a57600080fd5b50610333610619366004611e9a565b610e60565b34801561062a57600080fd5b506103fd600a5481565b34801561064057600080fd5b5061037761064f366004611ce6565b610e97565b34801561066057600080fd5b506103fd6107d081565b34801561067657600080fd5b506103fd610685366004611e7f565b610ea9565b34801561069657600080fd5b50610333610ef7565b3480156106ab57600080fd5b506103fd600c5481565b3480156106c157600080fd5b506103336106d0366004611ce6565b610f2b565b3480156106e157600080fd5b506103fd600f5481565b3480156106f757600080fd5b506103fd610f67565b34801561070c57600080fd5b506008546001600160a01b0316610377565b34801561072a57600080fd5b5061034a610f81565b34801561073f57600080fd5b5061033361074e366004611f0b565b610f90565b34801561075f57600080fd5b506103fd600d5481565b34801561077557600080fd5b50610333610784366004611f47565b611025565b610333610797366004612006565b611076565b3480156107a857600080fd5b506103fd60095481565b3480156107be57600080fd5b5061034a6107cd366004611ce6565b6111ba565b3480156107de57600080fd5b506103336107ed366004611ce6565b61123e565b3480156107fe57600080fd5b5061037773d1220e5e22bbe66721f9c9fc4dec2f4edf57511581565b34801561082657600080fd5b5061033361126d565b34801561083b57600080fd5b5061033361084a366004611ce6565b61129e565b34801561085b57600080fd5b506103fd600181565b34801561087057600080fd5b5061030961087f366004612084565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108b957600080fd5b506103336108c8366004611e7f565b6112cd565b3480156108d957600080fd5b506103336108e8366004611ce6565b611368565b3480156108f957600080fd5b506103fd60125481565b60006001600160e01b031982166380ac58cd60e01b148061093457506001600160e01b03198216635b5e139f60e01b145b8061094f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109885760405162461bcd60e51b815260040161097f906120b7565b60405180910390fd5b6001600a55565b60606002805461099e906120ec565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca906120ec565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b5050505050905090565b6000610a2c826113a6565b610a49576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a7082610e97565b9050806001600160a01b0316836001600160a01b031603610aa45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ac45750610ac2813361087f565b155b15610ae2576040516367d9dca160e11b815260040160405180910390fd5b610aed8383836113df565b505050565b6008546001600160a01b03163314610b1c5760405162461bcd60e51b815260040161097f906120b7565b6002600a55565b6008546001600160a01b03163314610b4d5760405162461bcd60e51b815260040161097f906120b7565b600f55565b610aed83838361143b565b6040516bffffffffffffffffffffffff19606084901b16602082015260009081906034016040516020818303038152906040528051906020012090506002600a5403610bad575050600e5461094f565b6001600a5403610bd357610bc48360105483611629565b15610bd3575050600d5461094f565b5060009392505050565b600a546000808080808080610bf28a8a610cd5565b9650610bfc610f67565b6012546001600160a01b03909b16600090815260136020526040902054600f546010546009549b9e9a9d939c50929a9199909850919650945092505050565b6008546001600160a01b03163314610c655760405162461bcd60e51b815260040161097f906120b7565b600b55565b6008546001600160a01b03163314610c945760405162461bcd60e51b815260040161097f906120b7565b60405133904780156108fc02916000818181858888f19350505050610cb857600080fd5b565b610aed83838360405180602001604052806000815250611025565b600080610ce28484610b5d565b6001600160a01b03851660009081526013602052604081205491925090610d0a90839061163f565b9050610d16828261165b565b91506001600a5403610d42576000610d32600f5460125461163f565b9050610d3e838261165b565b9250505b6000610d5d610d556107d061271061213c565b60125461163f565b9050610d69838261165b565b92506000610d7b60095460125461163f565b9050610d87848261165b565b979650505050505050565b6008546001600160a01b03163314610dbc5760405162461bcd60e51b815260040161097f906120b7565b600c55565b610dcf6107d061271061213c565b81565b60118054610ddf906120ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b906120ec565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b505050505081565b6008546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161097f906120b7565b6011610aed82848361219d565b6000610ea282611671565b5192915050565b60006001600160a01b038216610ed2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f215760405162461bcd60e51b815260040161097f906120b7565b610cb86000611798565b6008546001600160a01b03163314610f555760405162461bcd60e51b815260040161097f906120b7565b610f616107d08261213c565b60095550565b60006001600a5403610f7a5750600b5490565b50600c5490565b60606003805461099e906120ec565b336001600160a01b03831603610fb95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61103084848461143b565b6001600160a01b0383163b151580156110525750611050848484846117ea565b155b15611070576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b8261107f610f67565b611089919061225c565b3410156110cd5760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c9958dd08115512081cd95b9d60721b604482015260640161097f565b61110a33838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610cd592505050565b83111561116e5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820616c60448201526b6c6f77656420746f6b656e7360a01b606482015260840161097f565b61117833846118d6565b336000908152601360205260408120805485929061119790849061227b565b9250508190555082601260008282546111b0919061227b565b9091555050505050565b60606111c5826113a6565b6111e257604051630a14c4b560e41b815260040160405180910390fd5b60006111ec6118f4565b9050805160000361120c5760405180602001604052806000815250611237565b8061121684611903565b60405160200161122792919061228e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112685760405162461bcd60e51b815260040161097f906120b7565b600e55565b6008546001600160a01b031633146112975760405162461bcd60e51b815260040161097f906120b7565b6000600a55565b6008546001600160a01b031633146112c85760405162461bcd60e51b815260040161097f906120b7565b600d55565b6008546001600160a01b031633146112f75760405162461bcd60e51b815260040161097f906120b7565b6001600160a01b03811661135c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b61136581611798565b50565b6008546001600160a01b031633146113925760405162461bcd60e51b815260040161097f906120b7565b601055565b6001600160a01b03163b151590565b6000816001111580156113ba575060005482105b801561094f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061144682611671565b9050836001600160a01b031681600001516001600160a01b03161461147d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061149b575061149b853361087f565b806114b65750336114ab84610a21565b6001600160a01b0316145b9050806114d657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114fd57604051633a954ecd60e21b815260040160405180910390fd5b611509600084876113df565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115dd5760005482146115dd57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826116368584611a03565b14949350505050565b6000818310156116515750600061094f565b611237828461213c565b600081831061166a5781611237565b5090919050565b604080516060810182526000808252602082018190529181019190915281806001111580156116a1575060005481105b1561177f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061177d5780516001600160a01b031615611714579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611778579392505050565b611714565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061181f9033908990889088906004016122bd565b6020604051808303816000875af192505050801561185a575060408051601f3d908101601f19168201909252611857918101906122fa565b60015b6118b8573d808015611888576040519150601f19603f3d011682016040523d82523d6000602084013e61188d565b606091505b5080516000036118b0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6118f0828260405180602001604052806000815250611a77565b5050565b60606011805461099e906120ec565b60608160000361192a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611954578061193e81612317565b915061194d9050600a83612346565b915061192e565b6000816001600160401b0381111561196e5761196e611d81565b6040519080825280601f01601f191660200182016040528015611998576020820181803683370190505b5090505b84156118ce576119ad60018361213c565b91506119ba600a8661235a565b6119c590603061227b565b60f81b8183815181106119da576119da61236e565b60200101906001600160f81b031916908160001a9053506119fc600a86612346565b945061199c565b600081815b8451811015611a6f576000858281518110611a2557611a2561236e565b60200260200101519050808311611a4b5760008381526020829052604090209250611a5c565b600081815260208490526040902092505b5080611a6781612317565b915050611a08565b509392505050565b610aed83838360016000546001600160a01b038516611aa857604051622e076360e81b815260040160405180910390fd5b83600003611ac95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b7a57506001600160a01b0387163b15155b15611c02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bcb60008884806001019550886117ea565b611be8576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b80578260005414611bfd57600080fd5b611c47565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611c03575b50600055611622565b6001600160e01b03198116811461136557600080fd5b600060208284031215611c7857600080fd5b813561123781611c50565b60005b83811015611c9e578181015183820152602001611c86565b50506000910152565b60008151808452611cbf816020860160208601611c83565b601f01601f19169290920160200192915050565b6020815260006112376020830184611ca7565b600060208284031215611cf857600080fd5b5035919050565b80356001600160a01b0381168114611d1657600080fd5b919050565b60008060408385031215611d2e57600080fd5b611d3783611cff565b946020939093013593505050565b600080600060608486031215611d5a57600080fd5b611d6384611cff565b9250611d7160208501611cff565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611dbf57611dbf611d81565b604052919050565b60008060408385031215611dda57600080fd5b611de383611cff565b91506020808401356001600160401b0380821115611e0057600080fd5b818601915086601f830112611e1457600080fd5b813581811115611e2657611e26611d81565b8060051b9150611e37848301611d97565b8181529183018401918481019089841115611e5157600080fd5b938501935b83851015611e6f57843582529385019390850190611e56565b8096505050505050509250929050565b600060208284031215611e9157600080fd5b61123782611cff565b60008060208385031215611ead57600080fd5b82356001600160401b0380821115611ec457600080fd5b818501915085601f830112611ed857600080fd5b813581811115611ee757600080fd5b866020828501011115611ef957600080fd5b60209290920196919550909350505050565b60008060408385031215611f1e57600080fd5b611f2783611cff565b915060208301358015158114611f3c57600080fd5b809150509250929050565b60008060008060808587031215611f5d57600080fd5b611f6685611cff565b93506020611f75818701611cff565b93506040860135925060608601356001600160401b0380821115611f9857600080fd5b818801915088601f830112611fac57600080fd5b813581811115611fbe57611fbe611d81565b611fd0601f8201601f19168501611d97565b91508082528984828501011115611fe657600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060006040848603121561201b57600080fd5b8335925060208401356001600160401b038082111561203957600080fd5b818601915086601f83011261204d57600080fd5b81358181111561205c57600080fd5b8760208260051b850101111561207157600080fd5b6020830194508093505050509250925092565b6000806040838503121561209757600080fd5b6120a083611cff565b91506120ae60208401611cff565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061210057607f821691505b60208210810361212057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561094f5761094f612126565b601f821115610aed57600081815260208120601f850160051c810160208610156121765750805b601f850160051c820191505b8181101561219557828155600101612182565b505050505050565b6001600160401b038311156121b4576121b4611d81565b6121c8836121c283546120ec565b8361214f565b6000601f8411600181146121fc57600085156121e45750838201355b600019600387901b1c1916600186901b178355611622565b600083815260209020601f19861690835b8281101561222d578685013582556020948501946001909201910161220d565b508682101561224a5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600081600019048311821515161561227657612276612126565b500290565b8082018082111561094f5761094f612126565b600083516122a0818460208801611c83565b8351908301906122b4818360208801611c83565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f090830184611ca7565b9695505050505050565b60006020828403121561230c57600080fd5b815161123781611c50565b60006001820161232957612329612126565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261235557612355612330565b500490565b60008261236957612369612330565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f86689f0f67f542fb45b123420bcfd8a53ad20b260d0cced4d8c15a1efb8d73b64736f6c63430008100033697066733a2f2f516d5254714c314d6359414a5271344768704b5168666f425336635371515338594b595178486f54506f324b35482fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80635bf5d54c11610190578063b88d4fde116100dc578063e36b0b3711610095578063e985e9c51161006f578063e985e9c514610864578063f2fde38b146108ad578063f5aa406d146108cd578063fa1a5f59146108ed57600080fd5b8063e36b0b371461081a578063e6d440d41461082f578063e8812ae31461084f57600080fd5b8063b88d4fde14610769578063ba41b0c614610789578063c226cdc91461079c578063c87b56dd146107b2578063dbb84f11146107d2578063dc504f13146107f257600080fd5b806379666ccd116101495780638da5cb5b116101235780638da5cb5b1461070057806395d89b411461071e578063a22cb46514610733578063a4ac79151461075357600080fd5b806379666ccd146106b55780637e046f30146106d55780637ff9b596146106eb57600080fd5b80635bf5d54c1461061e5780636352211e1461063457806368fc68c71461065457806370a082311461066a578063715018a61461068a57806378c5fe371461069f57600080fd5b80632d84a94c1161024f57806346c4dc27116102085780634e99b800116101e25780634e99b800146105a7578063522fe98e146105bc57806355e6738d146105e957806355f804b3146105fe57600080fd5b806346c4dc271461055d57806348e342581461057d5780634d8fae951461059257600080fd5b80632d84a94c14610477578063311df29a146104d2578063386bfc98146104f25780633ccfd60b1461050857806342842e0e1461051d5780634324851a1461053d57600080fd5b806314ff2779116102a157806314ff2779146103c457806318160ddd146103e457806323a1baaa1461040b57806323b872dd14610421578063285de8ca146104415780632b0384111461046157600080fd5b806301ffc9a7146102e957806304c98b2b1461031e57806306fdde0314610335578063081812fc14610357578063095ea7b31461038f5780630c1c972a146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004611c66565b610903565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610955565b005b34801561034157600080fd5b5061034a61098f565b6040516103159190611cd3565b34801561036357600080fd5b50610377610372366004611ce6565b610a21565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103336103aa366004611d1b565b610a65565b3480156103bb57600080fd5b50610333610af2565b3480156103d057600080fd5b506103336103df366004611ce6565b610b23565b3480156103f057600080fd5b5060015460005403600019015b604051908152602001610315565b34801561041757600080fd5b506103fd600e5481565b34801561042d57600080fd5b5061033361043c366004611d45565b610b52565b34801561044d57600080fd5b506103fd61045c366004611dc7565b610b5d565b34801561046d57600080fd5b506103fd600b5481565b34801561048357600080fd5b50610497610492366004611dc7565b610bdd565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610315565b3480156104de57600080fd5b506103336104ed366004611ce6565b610c3b565b3480156104fe57600080fd5b506103fd60105481565b34801561051457600080fd5b50610333610c6a565b34801561052957600080fd5b50610333610538366004611d45565b610cba565b34801561054957600080fd5b506103fd610558366004611dc7565b610cd5565b34801561056957600080fd5b50610333610578366004611ce6565b610d92565b34801561058957600080fd5b506103fd600081565b34801561059e57600080fd5b506103fd610dc1565b3480156105b357600080fd5b5061034a610dd2565b3480156105c857600080fd5b506103fd6105d7366004611e7f565b60136020526000908152604090205481565b3480156105f557600080fd5b506103fd600281565b34801561060a57600080fd5b50610333610619366004611e9a565b610e60565b34801561062a57600080fd5b506103fd600a5481565b34801561064057600080fd5b5061037761064f366004611ce6565b610e97565b34801561066057600080fd5b506103fd6107d081565b34801561067657600080fd5b506103fd610685366004611e7f565b610ea9565b34801561069657600080fd5b50610333610ef7565b3480156106ab57600080fd5b506103fd600c5481565b3480156106c157600080fd5b506103336106d0366004611ce6565b610f2b565b3480156106e157600080fd5b506103fd600f5481565b3480156106f757600080fd5b506103fd610f67565b34801561070c57600080fd5b506008546001600160a01b0316610377565b34801561072a57600080fd5b5061034a610f81565b34801561073f57600080fd5b5061033361074e366004611f0b565b610f90565b34801561075f57600080fd5b506103fd600d5481565b34801561077557600080fd5b50610333610784366004611f47565b611025565b610333610797366004612006565b611076565b3480156107a857600080fd5b506103fd60095481565b3480156107be57600080fd5b5061034a6107cd366004611ce6565b6111ba565b3480156107de57600080fd5b506103336107ed366004611ce6565b61123e565b3480156107fe57600080fd5b5061037773d1220e5e22bbe66721f9c9fc4dec2f4edf57511581565b34801561082657600080fd5b5061033361126d565b34801561083b57600080fd5b5061033361084a366004611ce6565b61129e565b34801561085b57600080fd5b506103fd600181565b34801561087057600080fd5b5061030961087f366004612084565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108b957600080fd5b506103336108c8366004611e7f565b6112cd565b3480156108d957600080fd5b506103336108e8366004611ce6565b611368565b3480156108f957600080fd5b506103fd60125481565b60006001600160e01b031982166380ac58cd60e01b148061093457506001600160e01b03198216635b5e139f60e01b145b8061094f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109885760405162461bcd60e51b815260040161097f906120b7565b60405180910390fd5b6001600a55565b60606002805461099e906120ec565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca906120ec565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b5050505050905090565b6000610a2c826113a6565b610a49576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a7082610e97565b9050806001600160a01b0316836001600160a01b031603610aa45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ac45750610ac2813361087f565b155b15610ae2576040516367d9dca160e11b815260040160405180910390fd5b610aed8383836113df565b505050565b6008546001600160a01b03163314610b1c5760405162461bcd60e51b815260040161097f906120b7565b6002600a55565b6008546001600160a01b03163314610b4d5760405162461bcd60e51b815260040161097f906120b7565b600f55565b610aed83838361143b565b6040516bffffffffffffffffffffffff19606084901b16602082015260009081906034016040516020818303038152906040528051906020012090506002600a5403610bad575050600e5461094f565b6001600a5403610bd357610bc48360105483611629565b15610bd3575050600d5461094f565b5060009392505050565b600a546000808080808080610bf28a8a610cd5565b9650610bfc610f67565b6012546001600160a01b03909b16600090815260136020526040902054600f546010546009549b9e9a9d939c50929a9199909850919650945092505050565b6008546001600160a01b03163314610c655760405162461bcd60e51b815260040161097f906120b7565b600b55565b6008546001600160a01b03163314610c945760405162461bcd60e51b815260040161097f906120b7565b60405133904780156108fc02916000818181858888f19350505050610cb857600080fd5b565b610aed83838360405180602001604052806000815250611025565b600080610ce28484610b5d565b6001600160a01b03851660009081526013602052604081205491925090610d0a90839061163f565b9050610d16828261165b565b91506001600a5403610d42576000610d32600f5460125461163f565b9050610d3e838261165b565b9250505b6000610d5d610d556107d061271061213c565b60125461163f565b9050610d69838261165b565b92506000610d7b60095460125461163f565b9050610d87848261165b565b979650505050505050565b6008546001600160a01b03163314610dbc5760405162461bcd60e51b815260040161097f906120b7565b600c55565b610dcf6107d061271061213c565b81565b60118054610ddf906120ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b906120ec565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b505050505081565b6008546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161097f906120b7565b6011610aed82848361219d565b6000610ea282611671565b5192915050565b60006001600160a01b038216610ed2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f215760405162461bcd60e51b815260040161097f906120b7565b610cb86000611798565b6008546001600160a01b03163314610f555760405162461bcd60e51b815260040161097f906120b7565b610f616107d08261213c565b60095550565b60006001600a5403610f7a5750600b5490565b50600c5490565b60606003805461099e906120ec565b336001600160a01b03831603610fb95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61103084848461143b565b6001600160a01b0383163b151580156110525750611050848484846117ea565b155b15611070576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b8261107f610f67565b611089919061225c565b3410156110cd5760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c9958dd08115512081cd95b9d60721b604482015260640161097f565b61110a33838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610cd592505050565b83111561116e5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820616c60448201526b6c6f77656420746f6b656e7360a01b606482015260840161097f565b61117833846118d6565b336000908152601360205260408120805485929061119790849061227b565b9250508190555082601260008282546111b0919061227b565b9091555050505050565b60606111c5826113a6565b6111e257604051630a14c4b560e41b815260040160405180910390fd5b60006111ec6118f4565b9050805160000361120c5760405180602001604052806000815250611237565b8061121684611903565b60405160200161122792919061228e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112685760405162461bcd60e51b815260040161097f906120b7565b600e55565b6008546001600160a01b031633146112975760405162461bcd60e51b815260040161097f906120b7565b6000600a55565b6008546001600160a01b031633146112c85760405162461bcd60e51b815260040161097f906120b7565b600d55565b6008546001600160a01b031633146112f75760405162461bcd60e51b815260040161097f906120b7565b6001600160a01b03811661135c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b61136581611798565b50565b6008546001600160a01b031633146113925760405162461bcd60e51b815260040161097f906120b7565b601055565b6001600160a01b03163b151590565b6000816001111580156113ba575060005482105b801561094f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061144682611671565b9050836001600160a01b031681600001516001600160a01b03161461147d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061149b575061149b853361087f565b806114b65750336114ab84610a21565b6001600160a01b0316145b9050806114d657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114fd57604051633a954ecd60e21b815260040160405180910390fd5b611509600084876113df565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115dd5760005482146115dd57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826116368584611a03565b14949350505050565b6000818310156116515750600061094f565b611237828461213c565b600081831061166a5781611237565b5090919050565b604080516060810182526000808252602082018190529181019190915281806001111580156116a1575060005481105b1561177f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061177d5780516001600160a01b031615611714579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611778579392505050565b611714565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061181f9033908990889088906004016122bd565b6020604051808303816000875af192505050801561185a575060408051601f3d908101601f19168201909252611857918101906122fa565b60015b6118b8573d808015611888576040519150601f19603f3d011682016040523d82523d6000602084013e61188d565b606091505b5080516000036118b0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6118f0828260405180602001604052806000815250611a77565b5050565b60606011805461099e906120ec565b60608160000361192a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611954578061193e81612317565b915061194d9050600a83612346565b915061192e565b6000816001600160401b0381111561196e5761196e611d81565b6040519080825280601f01601f191660200182016040528015611998576020820181803683370190505b5090505b84156118ce576119ad60018361213c565b91506119ba600a8661235a565b6119c590603061227b565b60f81b8183815181106119da576119da61236e565b60200101906001600160f81b031916908160001a9053506119fc600a86612346565b945061199c565b600081815b8451811015611a6f576000858281518110611a2557611a2561236e565b60200260200101519050808311611a4b5760008381526020829052604090209250611a5c565b600081815260208490526040902092505b5080611a6781612317565b915050611a08565b509392505050565b610aed83838360016000546001600160a01b038516611aa857604051622e076360e81b815260040160405180910390fd5b83600003611ac95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b7a57506001600160a01b0387163b15155b15611c02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bcb60008884806001019550886117ea565b611be8576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b80578260005414611bfd57600080fd5b611c47565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611c03575b50600055611622565b6001600160e01b03198116811461136557600080fd5b600060208284031215611c7857600080fd5b813561123781611c50565b60005b83811015611c9e578181015183820152602001611c86565b50506000910152565b60008151808452611cbf816020860160208601611c83565b601f01601f19169290920160200192915050565b6020815260006112376020830184611ca7565b600060208284031215611cf857600080fd5b5035919050565b80356001600160a01b0381168114611d1657600080fd5b919050565b60008060408385031215611d2e57600080fd5b611d3783611cff565b946020939093013593505050565b600080600060608486031215611d5a57600080fd5b611d6384611cff565b9250611d7160208501611cff565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611dbf57611dbf611d81565b604052919050565b60008060408385031215611dda57600080fd5b611de383611cff565b91506020808401356001600160401b0380821115611e0057600080fd5b818601915086601f830112611e1457600080fd5b813581811115611e2657611e26611d81565b8060051b9150611e37848301611d97565b8181529183018401918481019089841115611e5157600080fd5b938501935b83851015611e6f57843582529385019390850190611e56565b8096505050505050509250929050565b600060208284031215611e9157600080fd5b61123782611cff565b60008060208385031215611ead57600080fd5b82356001600160401b0380821115611ec457600080fd5b818501915085601f830112611ed857600080fd5b813581811115611ee757600080fd5b866020828501011115611ef957600080fd5b60209290920196919550909350505050565b60008060408385031215611f1e57600080fd5b611f2783611cff565b915060208301358015158114611f3c57600080fd5b809150509250929050565b60008060008060808587031215611f5d57600080fd5b611f6685611cff565b93506020611f75818701611cff565b93506040860135925060608601356001600160401b0380821115611f9857600080fd5b818801915088601f830112611fac57600080fd5b813581811115611fbe57611fbe611d81565b611fd0601f8201601f19168501611d97565b91508082528984828501011115611fe657600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060006040848603121561201b57600080fd5b8335925060208401356001600160401b038082111561203957600080fd5b818601915086601f83011261204d57600080fd5b81358181111561205c57600080fd5b8760208260051b850101111561207157600080fd5b6020830194508093505050509250925092565b6000806040838503121561209757600080fd5b6120a083611cff565b91506120ae60208401611cff565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061210057607f821691505b60208210810361212057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561094f5761094f612126565b601f821115610aed57600081815260208120601f850160051c810160208610156121765750805b601f850160051c820191505b8181101561219557828155600101612182565b505050505050565b6001600160401b038311156121b4576121b4611d81565b6121c8836121c283546120ec565b8361214f565b6000601f8411600181146121fc57600085156121e45750838201355b600019600387901b1c1916600186901b178355611622565b600083815260209020601f19861690835b8281101561222d578685013582556020948501946001909201910161220d565b508682101561224a5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600081600019048311821515161561227657612276612126565b500290565b8082018082111561094f5761094f612126565b600083516122a0818460208801611c83565b8351908301906122b4818360208801611c83565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f090830184611ca7565b9695505050505050565b60006020828403121561230c57600080fd5b815161123781611c50565b60006001820161232957612329612126565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261235557612355612330565b500490565b60008261236957612369612330565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f86689f0f67f542fb45b123420bcfd8a53ad20b260d0cced4d8c15a1efb8d73b64736f6c63430008100033
Deployed Bytecode Sourcemap
47322:5948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29536:305;;;;;;;;;;-1:-1:-1;29536:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29536:305:0;;;;;;;;48943:90;;;;;;;;;;;;;:::i;:::-;;32649:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34152:204::-;;;;;;;;;;-1:-1:-1;34152:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34152:204:0;1533:203:1;33715:371:0;;;;;;;;;;-1:-1:-1;33715:371:0;;;;;:::i;:::-;;:::i;49041:92::-;;;;;;;;;;;;;:::i;49621:104::-;;;;;;;;;;-1:-1:-1;49621:104:0;;;;;:::i;:::-;;:::i;28785:303::-;;;;;;;;;;-1:-1:-1;48664:1:0;29039:12;28829:7;29023:13;:28;-1:-1:-1;;29023:46:0;28785:303;;;2324:25:1;;;2312:2;2297:18;28785:303:0;2178:177:1;48060:40:0;;;;;;;;;;;;;;;;35017:170;;;;;;;;;;-1:-1:-1;35017:170:0;;;;;:::i;:::-;;:::i;50039:545::-;;;;;;;;;;-1:-1:-1;50039:545:0;;;;;:::i;:::-;;:::i;47898:45::-;;;;;;;;;;;;;;;;51673:728;;;;;;;;;;-1:-1:-1;51673:728:0;;;;;:::i;:::-;;:::i;:::-;;;;4473:25:1;;;4529:2;4514:18;;4507:34;;;;4557:18;;;4550:34;;;;4615:2;4600:18;;4593:34;;;;4658:3;4643:19;;4636:35;4702:3;4687:19;;4680:35;4746:3;4731:19;;4724:35;4790:3;4775:19;;4768:35;4460:3;4445:19;51673:728:0;4130:679:1;49141:104:0;;;;;;;;;;-1:-1:-1;49141:104:0;;;;;:::i;:::-;;:::i;48157:97::-;;;;;;;;;;;;;;;;53035:114;;;;;;;;;;;;;:::i;35258:185::-;;;;;;;;;;-1:-1:-1;35258:185:0;;;;;:::i;:::-;;:::i;50758:907::-;;;;;;;;;;-1:-1:-1;50758:907:0;;;;;:::i;:::-;;:::i;49257:110::-;;;;;;;;;;-1:-1:-1;49257:110:0;;;;;:::i;:::-;;:::i;47702:41::-;;;;;;;;;;;;47742:1;47702:41;;47460:65;;;;;;;;;;;;;:::i;48263:85::-;;;;;;;;;;;;;:::i;48393:44::-;;;;;;;;;;-1:-1:-1;48393:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;47798:41;;;;;;;;;;;;47838:1;47798:41;;52930:97;;;;;;;;;;-1:-1:-1;52930:97:0;;;;;:::i;:::-;;:::i;47846:43::-;;;;;;;;;;;;;;;;32457:125;;;;;;;;;;-1:-1:-1;32457:125:0;;;;;:::i;:::-;;:::i;47407:46::-;;;;;;;;;;;;47449:4;47407:46;;29905:206;;;;;;;;;;-1:-1:-1;29905:206:0;;;;;:::i;:::-;;:::i;7294:103::-;;;;;;;;;;;;;:::i;47950:48::-;;;;;;;;;;;;;;;;48681:160;;;;;;;;;;-1:-1:-1;48681:160:0;;;;;:::i;:::-;;:::i;48109:39::-;;;;;;;;;;;;;;;;49837:194;;;;;;;;;;;;;:::i;6643:87::-;;;;;;;;;;-1:-1:-1;6716:6:0;;-1:-1:-1;;;;;6716:6:0;6643:87;;32818:104;;;;;;;;;;;;;:::i;34428:287::-;;;;;;;;;;-1:-1:-1;34428:287:0;;;;;:::i;:::-;;:::i;48007:46::-;;;;;;;;;;;;;;;;35514:369;;;;;;;;;;-1:-1:-1;35514:369:0;;;;;:::i;:::-;;:::i;52409:388::-;;;;;;:::i;:::-;;:::i;47633:60::-;;;;;;;;;;;;;;;;32993:318;;;;;;;;;;-1:-1:-1;32993:318:0;;;;;:::i;:::-;;:::i;49505:108::-;;;;;;;;;;-1:-1:-1;49505:108:0;;;;;:::i;:::-;;:::i;47532:92::-;;;;;;;;;;;;47582:42;47532:92;;48849:86;;;;;;;;;;;;;:::i;49375:122::-;;;;;;;;;;-1:-1:-1;49375:122:0;;;;;:::i;:::-;;:::i;47750:41::-;;;;;;;;;;;;47790:1;47750:41;;34786:164;;;;;;;;;;-1:-1:-1;34786:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34907:25:0;;;34883:4;34907:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34786:164;7552:201;;;;;;;;;;-1:-1:-1;7552:201:0;;;;;:::i;:::-;;:::i;49733:96::-;;;;;;;;;;-1:-1:-1;49733:96:0;;;;;:::i;:::-;;:::i;48357:29::-;;;;;;;;;;;;;;;;29536:305;29638:4;-1:-1:-1;;;;;;29675:40:0;;-1:-1:-1;;;29675:40:0;;:105;;-1:-1:-1;;;;;;;29732:48:0;;-1:-1:-1;;;29732:48:0;29675:105;:158;;;-1:-1:-1;;;;;;;;;;19536:40:0;;;29797:36;29655:178;29536:305;-1:-1:-1;;29536:305:0:o;48943:90::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;;;;;;;;;47790:1:::1;48997:12;:28:::0;48943:90::o;32649:100::-;32703:13;32736:5;32729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32649:100;:::o;34152:204::-;34220:7;34245:16;34253:7;34245;:16::i;:::-;34240:64;;34270:34;;-1:-1:-1;;;34270:34:0;;;;;;;;;;;34240:64;-1:-1:-1;34324:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34324:24:0;;34152:204::o;33715:371::-;33788:13;33804:24;33820:7;33804:15;:24::i;:::-;33788:40;;33849:5;-1:-1:-1;;;;;33843:11:0;:2;-1:-1:-1;;;;;33843:11:0;;33839:48;;33863:24;;-1:-1:-1;;;33863:24:0;;;;;;;;;;;33839:48;5447:10;-1:-1:-1;;;;;33904:21:0;;;;;;:63;;-1:-1:-1;33930:37:0;33947:5;5447:10;34786:164;:::i;33930:37::-;33929:38;33904:63;33900:138;;;33991:35;;-1:-1:-1;;;33991:35:0;;;;;;;;;;;33900:138;34050:28;34059:2;34063:7;34072:5;34050:8;:28::i;:::-;33777:309;33715:371;;:::o;49041:92::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;47838:1:::1;49098:12;:27:::0;49041:92::o;49621:104::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;49694:17:::1;:23:::0;49621:104::o;35017:170::-;35151:28;35161:4;35167:2;35171:7;35151:9;:28::i;50039:545::-;50175:24;;-1:-1:-1;;9154:2:1;9150:15;;;9146:53;50175:24:0;;;9134:66:1;50130:7:0;;;;9216:12:1;;50175:24:0;;;;;;;;;;;;50165:35;;;;;;50150:50;;47838:1;50217:12;;:28;50213:364;;-1:-1:-1;;50269:19:0;;50262:26;;50213:364;47790:1;50310:12;;:29;50306:271;;50360:46;50379:5;50386:13;;50401:4;50360:18;:46::i;:::-;50356:169;;;-1:-1:-1;;50434:26:0;;50427:33;;50356:169;-1:-1:-1;50508:1:0;;50039:545;-1:-1:-1;;;50039:545:0:o;51673:728::-;52060:12;;51771:21;;;;;;;52103:34;52123:6;52131:5;52103:19;:34::i;:::-;52083:54;;52162:12;:10;:12::i;:::-;52200:10;;-1:-1:-1;;;;;52240:17:0;;;;;;;:9;:17;;;;;;52289;;52334:13;;52374:19;;51673:728;;;;52148:26;;-1:-1:-1;52200:10:0;;52240:17;;52289;;-1:-1:-1;52334:13:0;;-1:-1:-1;52374:19:0;-1:-1:-1;51673:728:0;-1:-1:-1;;;51673:728:0:o;49141:104::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;49214:17:::1;:23:::0;49141:104::o;53035:114::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;53093:47:::1;::::0;53101:10:::1;::::0;53118:21:::1;53093:47:::0;::::1;;;::::0;::::1;::::0;;;53118:21;53101:10;53093:47;::::1;;;;;;53085:56;;;::::0;::::1;;53035:114::o:0;35258:185::-;35396:39;35413:4;35419:2;35423:7;35396:39;;;;;;;;;;;;:16;:39::i;50758:907::-;50848:7;50868:24;50895:35;50916:6;50924:5;50895:20;:35::i;:::-;-1:-1:-1;;;;;51000:17:0;;50943:28;51000:17;;;:9;:17;;;;;;50868:62;;-1:-1:-1;50943:28:0;50974:44;;50868:62;;50974:7;:44::i;:::-;50943:75;;51048:43;51052:16;51070:20;51048:3;:43::i;:::-;51029:62;;47790:1;51108:12;;:29;51104:202;;51154:25;51182:38;51190:17;;51209:10;;51182:7;:38::i;:::-;51154:66;;51254:40;51258:16;51276:17;51254:3;:40::i;:::-;51235:59;;51139:167;51104:202;51318:28;51349:36;47502:23;47449:4;47502:5;:23;:::i;:::-;51374:10;;51349:7;:36::i;:::-;51318:67;;51415:43;51419:16;51437:20;51415:3;:43::i;:::-;51396:62;;51471:31;51505:40;51513:19;;51534:10;;51505:7;:40::i;:::-;51471:74;;51575:46;51579:16;51597:23;51575:3;:46::i;:::-;51556:65;50758:907;-1:-1:-1;;;;;;;50758:907:0:o;49257:110::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;49333:20:::1;:26:::0;49257:110::o;47460:65::-;47502:23;47449:4;47502:5;:23;:::i;:::-;47460:65;:::o;48263:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52930:97::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;53001:12:::1;:18;53016:3:::0;;53001:12;:18:::1;:::i;32457:125::-:0;32521:7;32548:21;32561:7;32548:12;:21::i;:::-;:26;;32457:125;-1:-1:-1;;32457:125:0:o;29905:206::-;29969:7;-1:-1:-1;;;;;29993:19:0;;29989:60;;30021:28;;-1:-1:-1;;;30021:28:0;;;;;;;;;;;29989:60;-1:-1:-1;;;;;;30075:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30075:27:0;;29905:206::o;7294:103::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;7359:30:::1;7386:1;7359:18;:30::i;48681:160::-:0;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;48795:38:::1;47449:4;48795:20:::0;:38:::1;:::i;:::-;48773:19;:60:::0;-1:-1:-1;48681:160:0:o;49837:194::-;49880:7;47790:1;49904:12;;:29;49900:86;;-1:-1:-1;49957:17:0;;;49837:194::o;49900:86::-;-1:-1:-1;50003:20:0;;;49837:194::o;32818:104::-;32874:13;32907:7;32900:14;;;;;:::i;34428:287::-;5447:10;-1:-1:-1;;;;;34527:24:0;;;34523:54;;34560:17;;-1:-1:-1;;;34560:17:0;;;;;;;;;;;34523:54;5447:10;34590:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34590:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34590:53:0;;;;;;;;;;34659:48;;540:41:1;;;34590:42:0;;5447:10;34659:48;;513:18:1;34659:48:0;;;;;;;34428:287;;:::o;35514:369::-;35681:28;35691:4;35697:2;35701:7;35681:9;:28::i;:::-;-1:-1:-1;;;;;35724:13:0;;9639:19;:23;;35724:76;;;;;35744:56;35775:4;35781:2;35785:7;35794:5;35744:30;:56::i;:::-;35743:57;35724:76;35720:156;;;35824:40;;-1:-1:-1;;;35824:40:0;;;;;;;;;;;35720:156;35514:369;;;;:::o;52409:388::-;52529:6;52514:12;:10;:12::i;:::-;:21;;;;:::i;:::-;52501:9;:34;;52493:65;;;;-1:-1:-1;;;52493:65:0;;11937:2:1;52493:65:0;;;11919:21:1;11976:2;11956:18;;;11949:30;-1:-1:-1;;;11995:18:1;;;11988:48;12053:18;;52493:65:0;11735:342:1;52493:65:0;52587:38;52607:10;52619:5;;52587:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52587:19:0;;-1:-1:-1;;;52587:38:0:i;:::-;52577:6;:48;;52569:105;;;;-1:-1:-1;;;52569:105:0;;12284:2:1;52569:105:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:42;12465:19;;52569:105:0;12082:408:1;52569:105:0;52687:29;52697:10;52709:6;52687:9;:29::i;:::-;52737:10;52727:21;;;;:9;:21;;;;;:31;;52752:6;;52727:21;:31;;52752:6;;52727:31;:::i;:::-;;;;;;;;52783:6;52769:10;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;52409:388:0:o;32993:318::-;33066:13;33097:16;33105:7;33097;:16::i;:::-;33092:59;;33122:29;;-1:-1:-1;;;33122:29:0;;;;;;;;;;;33092:59;33164:21;33188:10;:8;:10::i;:::-;33164:34;;33222:7;33216:21;33241:1;33216:26;:87;;;;;;;;;;;;;;;;;33269:7;33278:18;:7;:16;:18::i;:::-;33252:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33216:87;33209:94;32993:318;-1:-1:-1;;;32993:318:0:o;49505:108::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;49580:19:::1;:25:::0;49505:108::o;48849:86::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;47742:1:::1;48899:12;:28:::0;48849:86::o;49375:122::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;49457:26:::1;:32:::0;49375:122::o;7552:201::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7641:22:0;::::1;7633:73;;;::::0;-1:-1:-1;;;7633:73:0;;13328:2:1;7633:73:0::1;::::0;::::1;13310:21:1::0;13367:2;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;-1:-1:-1;;;13457:18:1;;;13450:36;13503:19;;7633:73:0::1;13126:402:1::0;7633:73:0::1;7717:28;7736:8;7717:18;:28::i;:::-;7552:201:::0;:::o;49733:96::-;6716:6;;-1:-1:-1;;;;;6716:6:0;5447:10;6863:23;6855:68;;;;-1:-1:-1;;;6855:68:0;;;;;;;:::i;:::-;49802:13:::1;:19:::0;49733:96::o;9344:326::-;-1:-1:-1;;;;;9639:19:0;;:23;;;9344:326::o;36138:187::-;36195:4;36238:7;48664:1;36219:26;;:53;;;;;36259:13;;36249:7;:23;36219:53;:98;;;;-1:-1:-1;;36290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36290:27:0;;;;36289:28;;36138:187::o;44308:196::-;44423:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44423:29:0;-1:-1:-1;;;;;44423:29:0;;;;;;;;;44468:28;;44423:24;;44468:28;;;;;;;44308:196;;;:::o;39251:2130::-;39366:35;39404:21;39417:7;39404:12;:21::i;:::-;39366:59;;39464:4;-1:-1:-1;;;;;39442:26:0;:13;:18;;;-1:-1:-1;;;;;39442:26:0;;39438:67;;39477:28;;-1:-1:-1;;;39477:28:0;;;;;;;;;;;39438:67;39518:22;5447:10;-1:-1:-1;;;;;39544:20:0;;;;:73;;-1:-1:-1;39581:36:0;39598:4;5447:10;34786:164;:::i;39581:36::-;39544:126;;;-1:-1:-1;5447:10:0;39634:20;39646:7;39634:11;:20::i;:::-;-1:-1:-1;;;;;39634:36:0;;39544:126;39518:153;;39689:17;39684:66;;39715:35;;-1:-1:-1;;;39715:35:0;;;;;;;;;;;39684:66;-1:-1:-1;;;;;39765:16:0;;39761:52;;39790:23;;-1:-1:-1;;;39790:23:0;;;;;;;;;;;39761:52;39934:35;39951:1;39955:7;39964:4;39934:8;:35::i;:::-;-1:-1:-1;;;;;40265:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40265:31:0;;;-1:-1:-1;;;;;40265:31:0;;;-1:-1:-1;;40265:31:0;;;;;;;40311:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40311:29:0;;;;;;;;;;;40391:20;;;:11;:20;;;;;;40426:18;;-1:-1:-1;;;;;;40459:49:0;;;;-1:-1:-1;;;40492:15:0;40459:49;;;;;;;;;;40782:11;;40842:24;;;;;40885:13;;40391:20;;40842:24;;40885:13;40881:384;;41095:13;;41080:11;:28;41076:174;;41133:20;;41202:28;;;;-1:-1:-1;;;;;41176:54:0;-1:-1:-1;;;41176:54:0;-1:-1:-1;;;;;;41176:54:0;;;-1:-1:-1;;;;;41133:20:0;;41176:54;;;;41076:174;40240:1036;;;41312:7;41308:2;-1:-1:-1;;;;;41293:27:0;41302:4;-1:-1:-1;;;;;41293:27:0;;;;;;;;;;;41331:42;39355:2026;;39251:2130;;;:::o;1098:190::-;1223:4;1276;1247:25;1260:5;1267:4;1247:12;:25::i;:::-;:33;;1098:190;-1:-1:-1;;;;1098:190:0:o;50592:158::-;50654:7;50682:1;50678;:5;50674:46;;;-1:-1:-1;50707:1:0;50700:8;;50674:46;50737:5;50741:1;50737;:5;:::i;53161:106::-;53219:7;53250:1;53246;:5;:13;;53258:1;53246:13;;;-1:-1:-1;53254:1:0;;53161:106;-1:-1:-1;53161:106:0:o;31286:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31397:7:0;;48664:1;31446:23;;:47;;;;;31480:13;;31473:4;:20;31446:47;31442:886;;;31514:31;31548:17;;;:11;:17;;;;;;;;;31514:51;;;;;;;;;-1:-1:-1;;;;;31514:51:0;;;;-1:-1:-1;;;31514:51:0;;-1:-1:-1;;;;;31514:51:0;;;;;;;;-1:-1:-1;;;31514:51:0;;;;;;;;;;;;;;31584:729;;31634:14;;-1:-1:-1;;;;;31634:28:0;;31630:101;;31698:9;31286:1109;-1:-1:-1;;;31286:1109:0:o;31630:101::-;-1:-1:-1;;;32073:6:0;32118:17;;;;:11;:17;;;;;;;;;32106:29;;;;;;;;;-1:-1:-1;;;;;32106:29:0;;;;;-1:-1:-1;;;32106:29:0;;-1:-1:-1;;;;;32106:29:0;;;;;;;;-1:-1:-1;;;32106:29:0;;;;;;;;;;;;;32166:28;32162:109;;32234:9;31286:1109;-1:-1:-1;;;31286:1109:0:o;32162:109::-;32033:261;;;31495:833;31442:886;32356:31;;-1:-1:-1;;;32356:31:0;;;;;;;;;;;7913:191;8006:6;;;-1:-1:-1;;;;;8023:17:0;;;-1:-1:-1;;;;;;8023:17:0;;;;;;;8056:40;;8006:6;;;8023:17;8006:6;;8056:40;;7987:16;;8056:40;7976:128;7913:191;:::o;44996:667::-;45180:72;;-1:-1:-1;;;45180:72:0;;45159:4;;-1:-1:-1;;;;;45180:36:0;;;;;:72;;5447:10;;45231:4;;45237:7;;45246:5;;45180:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45180:72:0;;;;;;;;-1:-1:-1;;45180:72:0;;;;;;;;;;;;:::i;:::-;;;45176:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45414:6;:13;45431:1;45414:18;45410:235;;45460:40;;-1:-1:-1;;;45460:40:0;;;;;;;;;;;45410:235;45603:6;45597:13;45588:6;45584:2;45580:15;45573:38;45176:480;-1:-1:-1;;;;;;45299:55:0;-1:-1:-1;;;45299:55:0;;-1:-1:-1;45176:480:0;44996:667;;;;;;:::o;36333:104::-;36402:27;36412:2;36416:8;36402:27;;;;;;;;;;;;:9;:27::i;:::-;36333:104;;:::o;52805:114::-;52866:13;52899:12;52892:19;;;;;:::i;2929:723::-;2985:13;3206:5;3215:1;3206:10;3202:53;;-1:-1:-1;;3233:10:0;;;;;;;;;;;;-1:-1:-1;;;3233:10:0;;;;;2929:723::o;3202:53::-;3280:5;3265:12;3321:78;3328:9;;3321:78;;3354:8;;;;:::i;:::-;;-1:-1:-1;3377:10:0;;-1:-1:-1;3385:2:0;3377:10;;:::i;:::-;;;3321:78;;;3409:19;3441:6;-1:-1:-1;;;;;3431:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3431:17:0;;3409:39;;3459:154;3466:10;;3459:154;;3493:11;3503:1;3493:11;;:::i;:::-;;-1:-1:-1;3562:10:0;3570:2;3562:5;:10;:::i;:::-;3549:24;;:2;:24;:::i;:::-;3536:39;;3519:6;3526;3519:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3519:56:0;;;;;;;;-1:-1:-1;3590:11:0;3599:2;3590:11;;:::i;:::-;;;3459:154;;1650:675;1733:7;1776:4;1733:7;1791:497;1815:5;:12;1811:1;:16;1791:497;;;1849:20;1872:5;1878:1;1872:8;;;;;;;;:::i;:::-;;;;;;;1849:31;;1915:12;1899;:28;1895:382;;2401:13;2451:15;;;2487:4;2480:15;;;2534:4;2518:21;;2027:57;;1895:382;;;2401:13;2451:15;;;2487:4;2480:15;;;2534:4;2518:21;;2204:57;;1895:382;-1:-1:-1;1829:3:0;;;;:::i;:::-;;;;1791:497;;;-1:-1:-1;2305:12:0;1650:675;-1:-1:-1;;;1650:675:0:o;36800:163::-;36923:32;36929:2;36933:8;36943:5;36950:4;37361:20;37384:13;-1:-1:-1;;;;;37412:16:0;;37408:48;;37437:19;;-1:-1:-1;;;37437:19:0;;;;;;;;;;;37408:48;37471:8;37483:1;37471:13;37467:44;;37493:18;;-1:-1:-1;;;37493:18:0;;;;;;;;;;;37467:44;-1:-1:-1;;;;;37862:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37921:49:0;;-1:-1:-1;;;;;37862:44:0;;;;;;;37921:49;;;;-1:-1:-1;;37862:44:0;;;;;;37921:49;;;;;;;;;;;;;;;;37987:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38037:66:0;;;;-1:-1:-1;;;38087:15:0;38037:66;;;;;;;;;;37987:25;38184:23;;;38228:4;:23;;;;-1:-1:-1;;;;;;38236:13:0;;9639:19;:23;;38236:15;38224:641;;;38272:314;38303:38;;38328:12;;-1:-1:-1;;;;;38303:38:0;;;38320:1;;38303:38;;38320:1;;38303:38;38369:69;38408:1;38412:2;38416:14;;;;;;38432:5;38369:30;:69::i;:::-;38364:174;;38474:40;;-1:-1:-1;;;38474:40:0;;;;;;;;;;;38364:174;38581:3;38565:12;:19;38272:314;;38667:12;38650:13;;:29;38646:43;;38681:8;;;38646:43;38224:641;;;38730:120;38761:40;;38786:14;;;;;-1:-1:-1;;;;;38761:40:0;;;38778:1;;38761:40;;38778:1;;38761:40;38845:3;38829:12;:19;38730:120;;38224:641;-1:-1:-1;38879:13:0;:28;38929:60;35514:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:275;2896:2;2890:9;2961:2;2942:13;;-1:-1:-1;;2938:27:1;2926:40;;-1:-1:-1;;;;;2981:34:1;;3017:22;;;2978:62;2975:88;;;3043:18;;:::i;:::-;3079:2;3072:22;2825:275;;-1:-1:-1;2825:275:1:o;3105:1020::-;3198:6;3206;3259:2;3247:9;3238:7;3234:23;3230:32;3227:52;;;3275:1;3272;3265:12;3227:52;3298:29;3317:9;3298:29;:::i;:::-;3288:39;;3346:2;3399;3388:9;3384:18;3371:32;-1:-1:-1;;;;;3463:2:1;3455:6;3452:14;3449:34;;;3479:1;3476;3469:12;3449:34;3517:6;3506:9;3502:22;3492:32;;3562:7;3555:4;3551:2;3547:13;3543:27;3533:55;;3584:1;3581;3574:12;3533:55;3620:2;3607:16;3642:2;3638;3635:10;3632:36;;;3648:18;;:::i;:::-;3694:2;3691:1;3687:10;3677:20;;3717:28;3741:2;3737;3733:11;3717:28;:::i;:::-;3779:15;;;3849:11;;;3845:20;;;3810:12;;;;3877:19;;;3874:39;;;3909:1;3906;3899:12;3874:39;3933:11;;;;3953:142;3969:6;3964:3;3961:15;3953:142;;;4035:17;;4023:30;;3986:12;;;;4073;;;;3953:142;;;4114:5;4104:15;;;;;;;;3105:1020;;;;;:::o;4996:186::-;5055:6;5108:2;5096:9;5087:7;5083:23;5079:32;5076:52;;;5124:1;5121;5114:12;5076:52;5147:29;5166:9;5147:29;:::i;5187:592::-;5258:6;5266;5319:2;5307:9;5298:7;5294:23;5290:32;5287:52;;;5335:1;5332;5325:12;5287:52;5375:9;5362:23;-1:-1:-1;;;;;5445:2:1;5437:6;5434:14;5431:34;;;5461:1;5458;5451:12;5431:34;5499:6;5488:9;5484:22;5474:32;;5544:7;5537:4;5533:2;5529:13;5525:27;5515:55;;5566:1;5563;5556:12;5515:55;5606:2;5593:16;5632:2;5624:6;5621:14;5618:34;;;5648:1;5645;5638:12;5618:34;5693:7;5688:2;5679:6;5675:2;5671:15;5667:24;5664:37;5661:57;;;5714:1;5711;5704:12;5661:57;5745:2;5737:11;;;;;5767:6;;-1:-1:-1;5187:592:1;;-1:-1:-1;;;;5187:592:1:o;5784:347::-;5849:6;5857;5910:2;5898:9;5889:7;5885:23;5881:32;5878:52;;;5926:1;5923;5916:12;5878:52;5949:29;5968:9;5949:29;:::i;:::-;5939:39;;6028:2;6017:9;6013:18;6000:32;6075:5;6068:13;6061:21;6054:5;6051:32;6041:60;;6097:1;6094;6087:12;6041:60;6120:5;6110:15;;;5784:347;;;;;:::o;6136:980::-;6231:6;6239;6247;6255;6308:3;6296:9;6287:7;6283:23;6279:33;6276:53;;;6325:1;6322;6315:12;6276:53;6348:29;6367:9;6348:29;:::i;:::-;6338:39;;6396:2;6417:38;6451:2;6440:9;6436:18;6417:38;:::i;:::-;6407:48;;6502:2;6491:9;6487:18;6474:32;6464:42;;6557:2;6546:9;6542:18;6529:32;-1:-1:-1;;;;;6621:2:1;6613:6;6610:14;6607:34;;;6637:1;6634;6627:12;6607:34;6675:6;6664:9;6660:22;6650:32;;6720:7;6713:4;6709:2;6705:13;6701:27;6691:55;;6742:1;6739;6732:12;6691:55;6778:2;6765:16;6800:2;6796;6793:10;6790:36;;;6806:18;;:::i;:::-;6848:53;6891:2;6872:13;;-1:-1:-1;;6868:27:1;6864:36;;6848:53;:::i;:::-;6835:66;;6924:2;6917:5;6910:17;6964:7;6959:2;6954;6950;6946:11;6942:20;6939:33;6936:53;;;6985:1;6982;6975:12;6936:53;7040:2;7035;7031;7027:11;7022:2;7015:5;7011:14;6998:45;7084:1;7079:2;7074;7067:5;7063:14;7059:23;7052:34;;7105:5;7095:15;;;;;6136:980;;;;;;;:::o;7121:683::-;7216:6;7224;7232;7285:2;7273:9;7264:7;7260:23;7256:32;7253:52;;;7301:1;7298;7291:12;7253:52;7337:9;7324:23;7314:33;;7398:2;7387:9;7383:18;7370:32;-1:-1:-1;;;;;7462:2:1;7454:6;7451:14;7448:34;;;7478:1;7475;7468:12;7448:34;7516:6;7505:9;7501:22;7491:32;;7561:7;7554:4;7550:2;7546:13;7542:27;7532:55;;7583:1;7580;7573:12;7532:55;7623:2;7610:16;7649:2;7641:6;7638:14;7635:34;;;7665:1;7662;7655:12;7635:34;7718:7;7713:2;7703:6;7700:1;7696:14;7692:2;7688:23;7684:32;7681:45;7678:65;;;7739:1;7736;7729:12;7678:65;7770:2;7766;7762:11;7752:21;;7792:6;7782:16;;;;;7121:683;;;;;:::o;7809:260::-;7877:6;7885;7938:2;7926:9;7917:7;7913:23;7909:32;7906:52;;;7954:1;7951;7944:12;7906:52;7977:29;7996:9;7977:29;:::i;:::-;7967:39;;8025:38;8059:2;8048:9;8044:18;8025:38;:::i;:::-;8015:48;;7809:260;;;;;:::o;8259:356::-;8461:2;8443:21;;;8480:18;;;8473:30;8539:34;8534:2;8519:18;;8512:62;8606:2;8591:18;;8259:356::o;8620:380::-;8699:1;8695:12;;;;8742;;;8763:61;;8817:4;8809:6;8805:17;8795:27;;8763:61;8870:2;8862:6;8859:14;8839:18;8836:38;8833:161;;8916:10;8911:3;8907:20;8904:1;8897:31;8951:4;8948:1;8941:15;8979:4;8976:1;8969:15;8833:161;;8620:380;;;:::o;9239:127::-;9300:10;9295:3;9291:20;9288:1;9281:31;9331:4;9328:1;9321:15;9355:4;9352:1;9345:15;9371:128;9438:9;;;9459:11;;;9456:37;;;9473:18;;:::i;9630:545::-;9732:2;9727:3;9724:11;9721:448;;;9768:1;9793:5;9789:2;9782:17;9838:4;9834:2;9824:19;9908:2;9896:10;9892:19;9889:1;9885:27;9879:4;9875:38;9944:4;9932:10;9929:20;9926:47;;;-1:-1:-1;9967:4:1;9926:47;10022:2;10017:3;10013:12;10010:1;10006:20;10000:4;9996:31;9986:41;;10077:82;10095:2;10088:5;10085:13;10077:82;;;10140:17;;;10121:1;10110:13;10077:82;;;10081:3;;;9630:545;;;:::o;10351:1206::-;-1:-1:-1;;;;;10470:3:1;10467:27;10464:53;;;10497:18;;:::i;:::-;10526:94;10616:3;10576:38;10608:4;10602:11;10576:38;:::i;:::-;10570:4;10526:94;:::i;:::-;10646:1;10671:2;10666:3;10663:11;10688:1;10683:616;;;;11343:1;11360:3;11357:93;;;-1:-1:-1;11416:19:1;;;11403:33;11357:93;-1:-1:-1;;10308:1:1;10304:11;;;10300:24;10296:29;10286:40;10332:1;10328:11;;;10283:57;11463:78;;10656:895;;10683:616;9577:1;9570:14;;;9614:4;9601:18;;-1:-1:-1;;10719:17:1;;;10820:9;10842:229;10856:7;10853:1;10850:14;10842:229;;;10945:19;;;10932:33;10917:49;;11052:4;11037:20;;;;11005:1;10993:14;;;;10872:12;10842:229;;;10846:3;11099;11090:7;11087:16;11084:159;;;11223:1;11219:6;11213:3;11207;11204:1;11200:11;11196:21;11192:34;11188:39;11175:9;11170:3;11166:19;11153:33;11149:79;11141:6;11134:95;11084:159;;;11286:1;11280:3;11277:1;11273:11;11269:19;11263:4;11256:33;10656:895;;10351:1206;;;:::o;11562:168::-;11602:7;11668:1;11664;11660:6;11656:14;11653:1;11650:21;11645:1;11638:9;11631:17;11627:45;11624:71;;;11675:18;;:::i;:::-;-1:-1:-1;11715:9:1;;11562:168::o;12495:125::-;12560:9;;;12581:10;;;12578:36;;;12594:18;;:::i;12625:496::-;12804:3;12842:6;12836:13;12858:66;12917:6;12912:3;12905:4;12897:6;12893:17;12858:66;:::i;:::-;12987:13;;12946:16;;;;13009:70;12987:13;12946:16;13056:4;13044:17;;13009:70;:::i;:::-;13095:20;;12625:496;-1:-1:-1;;;;12625:496:1:o;13533:489::-;-1:-1:-1;;;;;13802:15:1;;;13784:34;;13854:15;;13849:2;13834:18;;13827:43;13901:2;13886:18;;13879:34;;;13949:3;13944:2;13929:18;;13922:31;;;13727:4;;13970:46;;13996:19;;13988:6;13970:46;:::i;:::-;13962:54;13533:489;-1:-1:-1;;;;;;13533:489:1:o;14027:249::-;14096:6;14149:2;14137:9;14128:7;14124:23;14120:32;14117:52;;;14165:1;14162;14155:12;14117:52;14197:9;14191:16;14216:30;14240:5;14216:30;:::i;14281:135::-;14320:3;14341:17;;;14338:43;;14361:18;;:::i;:::-;-1:-1:-1;14408:1:1;14397:13;;14281:135::o;14421:127::-;14482:10;14477:3;14473:20;14470:1;14463:31;14513:4;14510:1;14503:15;14537:4;14534:1;14527:15;14553:120;14593:1;14619;14609:35;;14624:18;;:::i;:::-;-1:-1:-1;14658:9:1;;14553:120::o;14678:112::-;14710:1;14736;14726:35;;14741:18;;:::i;:::-;-1:-1:-1;14775:9:1;;14678:112::o;14795:127::-;14856:10;14851:3;14847:20;14844:1;14837:31;14887:4;14884:1;14877:15;14911:4;14908:1;14901:15
Swarm Source
ipfs://f86689f0f67f542fb45b123420bcfd8a53ad20b260d0cced4d8c15a1efb8d73b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.