ERC-721
Overview
Max Total Supply
239 EPB
Holders
116
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EPBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EmotionalPolarBears
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-30 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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.7.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 /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: utils/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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 See {IERC721Enumerable-totalSupply}. * @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) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _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 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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 {} } // File: EmotionalPolarBears.sol pragma solidity 0.8.7; contract EmotionalPolarBears is ERC721A, Ownable { using Strings for uint256; // Supply uint256 public maxSupply = 3333; uint256 public freeSaleSupply = 1000; // URI string public baseURI = "https://emotionalpolarbears.com/collection/jsons/"; string public hiddenURI = "https://emotionalpolarbears.com/collection/placeholder.json"; // Costs uint256 public ogSaleCost = 0.02 ether; uint256 public whitelistSaleCost = 0.02 ether; uint256 public publicSaleCost = 0.03 ether; // Per Address Limits uint256 public nftFreeSalePerAddressLimit = 1; uint256 public nftOGSalePerAddressLimit = 5; uint256 public nftWhitelistSalePerAddressLimit = 5; uint256 public nftPublicSalePerAddressLimit = 5; // States bool public paused = false; bool public freeSale = true; bool public ogSale = false; bool public whitelistSale = false; bool public revealed = false; // Merkle Tree Roots bytes32 public ogSaleMerkleTreeRoot; bytes32 public whitelistSaleMerkleTreeRoot; // Balances mapping(address => uint256) public addressFreeSaleMintedBalance; mapping(address => uint256) public addressOGSaleMintedBalance; mapping(address => uint256) public addressWhitelistSaleMintedBalance; mapping(address => uint256) public addressPublicSaleMintedBalance; // Constructor constructor() ERC721A("Emotional Polar Bears", "EPB") {} // Free Sale Mint - Functions function freeSaleMint(uint256 _mintAmount) public payable freeSaleMintCompliance(_mintAmount) { require(!paused, "MSG: The contract is paused"); require(freeSale == true && totalSupply() < freeSaleSupply, "MSG: Free sale is not live yet"); _safeMint(msg.sender, _mintAmount); for (uint256 i = 0; i < _mintAmount; i++) { addressFreeSaleMintedBalance[msg.sender]++; } } modifier freeSaleMintCompliance(uint256 _mintAmount) { uint256 ownerMintedCount = addressFreeSaleMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftFreeSalePerAddressLimit, "MSG: Max NFT per address exceeded for free sale"); require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded"); _; } // OG Sale Mint - Functions function ogSaleMint(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) public payable ogSaleMintCompliance(_mintAmount, _merkleTreeProof) { require(!paused, "MSG: The contract is paused"); require(ogSale == true, "MSG: OG sale is not live yet"); require(msg.value >= ogSaleCost * _mintAmount, "MSG: Insufficient funds"); _safeMint(msg.sender, _mintAmount * 2); for (uint256 i = 0; i < _mintAmount; i++) { addressOGSaleMintedBalance[msg.sender]++; } } modifier ogSaleMintCompliance(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) { uint256 ownerMintedCount = addressOGSaleMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftOGSalePerAddressLimit, "MSG: Max NFT per address exceeded for og sale"); require(isValidOGSaleMerkleTreeProof(_merkleTreeProof, keccak256(abi.encodePacked(msg.sender))), "MSG: User is not whitelisted"); require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded"); _; } function isValidOGSaleMerkleTreeProof(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, ogSaleMerkleTreeRoot, leaf); } // Whitelist Sale Mint - Functions function whitelistSaleMint(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) public payable whitelistSaleMintCompliance(_mintAmount, _merkleTreeProof) { require(!paused, "MSG: The contract is paused"); require(whitelistSale == true, "MSG: Whitelist sale is not live yet"); require(msg.value >= whitelistSaleCost * _mintAmount, "MSG: Insufficient funds"); _safeMint(msg.sender, _mintAmount); for (uint256 i = 0; i < _mintAmount; i++) { addressWhitelistSaleMintedBalance[msg.sender]++; } } modifier whitelistSaleMintCompliance(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) { uint256 ownerMintedCount = addressWhitelistSaleMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftWhitelistSalePerAddressLimit, "MSG: Max NFT per address exceeded for whitelist sale"); require(isValidWhitelistSaleMerkleTreeProof(_merkleTreeProof, keccak256(abi.encodePacked(msg.sender))), "MSG: User is not whitelisted"); require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded"); _; } function isValidWhitelistSaleMerkleTreeProof(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, whitelistSaleMerkleTreeRoot, leaf); } // Public Sale Mint - Functions function publicSaleMint(uint256 _mintAmount) public payable { require(!paused, "MSG: The contract is paused"); require(freeSale == false && ogSale == false && whitelistSale == false, "MSG: Public sale is not live yet"); require(msg.value >= publicSaleCost * _mintAmount, "MSG: Insufficient funds"); _safeMint(msg.sender, _mintAmount); for (uint256 i = 0; i < _mintAmount; i++) { addressPublicSaleMintedBalance[msg.sender]++; } } modifier publicSaleMintCompliance(uint256 _mintAmount) { uint256 ownerMintedCount = addressPublicSaleMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPublicSalePerAddressLimit, "MSG: Max NFT per address exceeded for public sale"); require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded"); _; } // Owner Mint - Functions function ownerMint(uint256 _mintAmount) public onlyOwner { require(!paused, "MSG: The contract is paused"); _safeMint(msg.sender, _mintAmount); } function ownerMintForOthers(address _receiver, uint256 _mintAmount) public onlyOwner { require(!paused, "MSG: The contract is paused"); _safeMint(_receiver, _mintAmount); } // Supply - Functions function setMaxSupply(uint256 _supply) public onlyOwner { maxSupply = _supply; } function setFreeSaleSupply(uint256 _supply) public onlyOwner { freeSaleSupply = _supply; } // URI - Functions function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory _uri) public onlyOwner { baseURI = _uri; } function setHiddenURI(string memory _uri) public onlyOwner { hiddenURI = _uri; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "PoundTownWTF: URI query for nonexistent token."); if (revealed == false) { return hiddenURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } // Cost - Functions function setOGSaleCost(uint256 _cost) public onlyOwner { ogSaleCost = _cost; } function setWhitelistSaleCost(uint256 _cost) public onlyOwner { whitelistSaleCost = _cost; } function setPublicSaleCost(uint256 _cost) public onlyOwner { publicSaleCost = _cost; } // Per Address Limit - Functions function setNFTFreeSalePerAddressLimit(uint256 _limit) public onlyOwner { nftFreeSalePerAddressLimit = _limit; } function setNFTOGSalePerAddressLimit(uint256 _limit) public onlyOwner { nftOGSalePerAddressLimit = _limit; } function setNFTWhitelistSalePerAddressLimit(uint256 _limit) public onlyOwner { nftWhitelistSalePerAddressLimit = _limit; } function setNFTPublicSalePerAddressLimit(uint256 _limit) public onlyOwner { nftPublicSalePerAddressLimit = _limit; } // State - Functions function setPaused(bool _state) public onlyOwner { paused = _state; } function setFreeSale(bool _state) public onlyOwner { freeSale = _state; } function setOGSale(bool _state) public onlyOwner { ogSale = _state; } function setWhitelistSale(bool _state) public onlyOwner { whitelistSale = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } // Merkle Tree Root - Functions function setOGSaleMerkleTreeRoot(bytes32 _root) public onlyOwner { ogSaleMerkleTreeRoot = _root; } function setWhitelistSaleMerkleRoot(bytes32 _root) public onlyOwner { whitelistSaleMerkleTreeRoot = _root; } // Withdraw - Function function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeSaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressOGSaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicSaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWhitelistSaleMintedBalance","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidOGSaleMerkleTreeProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidWhitelistSaleMerkleTreeProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftFreeSalePerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftOGSalePerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPublicSalePerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftWhitelistSalePerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleMerkleTreeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleTreeProof","type":"bytes32[]"}],"name":"ogSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMintForOthers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setFreeSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNFTFreeSalePerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNFTOGSalePerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNFTPublicSalePerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNFTWhitelistSalePerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOGSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setOGSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setOGSaleMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleMerkleTreeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleTreeProof","type":"bytes32[]"}],"name":"whitelistSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
610d056009556103e8600a5560e0604052603160808181529062002e0a60a03980516200003591600b9160209091019062000196565b506040518060600160405280603b815260200162002e3b603b913980516200006691600c9160209091019062000196565b5066470de4df820000600d819055600e55666a94d74f430000600f5560016010556005601181905560128190556013556014805464ffffffffff1916610100179055348015620000b557600080fd5b50604080518082018252601581527f456d6f74696f6e616c20506f6c6172204265617273000000000000000000000060208083019182528351808501909452600384526222a82160e91b908401528151919291620001169160029162000196565b5080516200012c90600390602084019062000196565b505060008055506200013e3362000144565b62000279565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a4906200023c565b90600052602060002090601f016020900481019282620001c8576000855562000213565b82601f10620001e357805160ff191683800117855562000213565b8280016001018555821562000213579182015b8281111562000213578251825591602001919060010190620001f6565b506200022192915062000225565b5090565b5b8082111562000221576000815560010162000226565b600181811c908216806200025157607f821691505b602082108114156200027357634e487b7160e01b600052602260045260246000fd5b50919050565b612b8180620002896000396000f3fe6080604052600436106103d85760003560e01c80636e00f84b116101fd578063b3aacb3311610118578063ca7ce3ec116100ab578063e985e9c51161007a578063e985e9c514610b0d578063f03f1f0a14610b56578063f19e75d414610b6c578063f24b006414610b8c578063f2fde38b14610ba257600080fd5b8063ca7ce3ec14610aa1578063d5abeb0114610ac1578063de633acc14610ad7578063e0a8085314610aed57600080fd5b8063bbaac02f116100e7578063bbaac02f14610a2b578063bd3a17f514610a4b578063c288245b14610a6b578063c87b56dd14610a8157600080fd5b8063b3aacb33146109c2578063b3ab66b0146109d8578063b7069835146109eb578063b88d4fde14610a0b57600080fd5b80638cc54e7f1161019057806395d89b411161015f57806395d89b411461094e5780639c6fe19014610963578063a22cb46514610983578063a4b41a15146109a357600080fd5b80638cc54e7f146108db5780638da5cb5b146108f05780638dbb7c061461090e57806392c50b761461092e57600080fd5b806373efad77116101cc57806373efad771461086557806375f74fca1461087b578063843d86a41461089b57806388b71fc0146108bb57600080fd5b80636e00f84b146107f05780636f8b44b01461081057806370a0823114610830578063715018a61461085057600080fd5b80633a2e68e7116102f857806355f804b31161028b5780636192e7f51161025a5780636192e7f5146107655780636352211e1461077b5780636b39936a1461079b5780636b67ce35146107bb5780636c0360eb146107db57600080fd5b806355f804b3146106f55780635797db75146107155780635bd83ab8146107355780635c975abb1461074b57600080fd5b806342842e0e116102c757806342842e0e14610670578063453afb0f1461069057806350b1aa64146106a657806351830227146106d357600080fd5b80633a2e68e7146105fb5780633ac4e0301461061b5780633b5ffa6d1461063b5780633ccfd60b1461066857600080fd5b806318160ddd11610370578063257ea0691161033f578063257ea0691461059157806331ffd6f1146105a457806337481dfd146105c55780633837080c146105e557600080fd5b806318160ddd146104f45780631e7b4a59146105175780632035cda41461054457806323b872dd1461057157600080fd5b8063095ea7b3116103ac578063095ea7b31461048e5780630a887cda146104ae5780631212ec7d146104c157806316c38b3c146104d457600080fd5b806246ba81146103dd57806301ffc9a7146103ff57806306fdde0314610434578063081812fc14610456575b600080fd5b3480156103e957600080fd5b506103fd6103f8366004612774565b610bc2565b005b34801561040b57600080fd5b5061041f61041a36600461278d565b610bcf565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610c21565b60405161042b91906128fd565b34801561046257600080fd5b50610476610471366004612774565b610cb3565b6040516001600160a01b03909116815260200161042b565b34801561049a57600080fd5b506103fd6104a93660046126eb565b610cf7565b6103fd6104bc36600461280f565b610d85565b6103fd6104cf36600461280f565b610fe4565b3480156104e057600080fd5b506103fd6104ef366004612759565b61122c565b34801561050057600080fd5b50600154600054035b60405190815260200161042b565b34801561052357600080fd5b506105096105323660046125bc565b60186020526000908152604090205481565b34801561055057600080fd5b5061050961055f3660046125bc565b60176020526000908152604090205481565b34801561057d57600080fd5b506103fd61058c36600461260a565b611247565b6103fd61059f366004612774565b611252565b3480156105b057600080fd5b5060145461041f906301000000900460ff1681565b3480156105d157600080fd5b506103fd6105e0366004612774565b6113f2565b3480156105f157600080fd5b5061050960135481565b34801561060757600080fd5b5061041f610616366004612715565b6113ff565b34801561062757600080fd5b506103fd610636366004612774565b611415565b34801561064757600080fd5b506105096106563660046125bc565b601a6020526000908152604090205481565b6103fd611422565b34801561067c57600080fd5b506103fd61068b36600461260a565b611466565b34801561069c57600080fd5b50610509600f5481565b3480156106b257600080fd5b506105096106c13660046125bc565b60196020526000908152604090205481565b3480156106df57600080fd5b5060145461041f90640100000000900460ff1681565b34801561070157600080fd5b506103fd6107103660046127c7565b611481565b34801561072157600080fd5b506103fd610730366004612774565b6114a0565b34801561074157600080fd5b50610509600d5481565b34801561075757600080fd5b5060145461041f9060ff1681565b34801561077157600080fd5b5061050960115481565b34801561078757600080fd5b50610476610796366004612774565b6114ad565b3480156107a757600080fd5b506103fd6107b6366004612774565b6114bf565b3480156107c757600080fd5b506103fd6107d6366004612759565b6114cc565b3480156107e757600080fd5b506104496114f0565b3480156107fc57600080fd5b506103fd61080b366004612774565b61157e565b34801561081c57600080fd5b506103fd61082b366004612774565b61158b565b34801561083c57600080fd5b5061050961084b3660046125bc565b611598565b34801561085c57600080fd5b506103fd6115e6565b34801561087157600080fd5b50610509600a5481565b34801561088757600080fd5b506103fd610896366004612759565b6115fa565b3480156108a757600080fd5b506103fd6108b6366004612774565b61161c565b3480156108c757600080fd5b5060145461041f9062010000900460ff1681565b3480156108e757600080fd5b50610449611629565b3480156108fc57600080fd5b506008546001600160a01b0316610476565b34801561091a57600080fd5b506103fd610929366004612774565b611636565b34801561093a57600080fd5b506103fd610949366004612774565b611643565b34801561095a57600080fd5b50610449611650565b34801561096f57600080fd5b506103fd61097e366004612774565b61165f565b34801561098f57600080fd5b506103fd61099e3660046126c1565b61166c565b3480156109af57600080fd5b5060145461041f90610100900460ff1681565b3480156109ce57600080fd5b5061050960155481565b6103fd6109e6366004612774565b611702565b3480156109f757600080fd5b5061041f610a06366004612715565b61181d565b348015610a1757600080fd5b506103fd610a26366004612646565b61182c565b348015610a3757600080fd5b506103fd610a463660046127c7565b611877565b348015610a5757600080fd5b506103fd610a663660046126eb565b611892565b348015610a7757600080fd5b50610509600e5481565b348015610a8d57600080fd5b50610449610a9c366004612774565b6118c7565b348015610aad57600080fd5b506103fd610abc366004612759565b611a34565b348015610acd57600080fd5b5061050960095481565b348015610ae357600080fd5b5061050960165481565b348015610af957600080fd5b506103fd610b08366004612759565b611a5a565b348015610b1957600080fd5b5061041f610b283660046125d7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b6257600080fd5b5061050960125481565b348015610b7857600080fd5b506103fd610b87366004612774565b611a82565b348015610b9857600080fd5b5061050960105481565b348015610bae57600080fd5b506103fd610bbd3660046125bc565b611ab7565b610bca611b2d565b600a55565b60006001600160e01b031982166380ac58cd60e01b1480610c0057506001600160e01b03198216635b5e139f60e01b145b80610c1b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610c3090612a73565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5c90612a73565b8015610ca95780601f10610c7e57610100808354040283529160200191610ca9565b820191906000526020600020905b815481529060010190602001808311610c8c57829003601f168201915b5050505050905090565b6000610cbe82611b87565b610cdb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d02826114ad565b9050806001600160a01b0316836001600160a01b03161415610d375760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610d575750610d558133610b28565b155b15610d75576040516367d9dca160e11b815260040160405180910390fd5b610d80838383611bb2565b505050565b3360009081526019602052604090205460125483918391610da684836129e5565b1115610e165760405162461bcd60e51b815260206004820152603460248201527f4d53473a204d6178204e465420706572206164647265737320657863656564656044820152736420666f722077686974656c6973742073616c6560601b60648201526084015b60405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152610e55908390603401604051602081830303815290604052805190602001206113ff565b610ea15760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c6973746564000000006044820152606401610e0d565b60095483610eb26001546000540390565b610ebc91906129e5565b1115610eda5760405162461bcd60e51b8152600401610e0d9061297e565b60145460ff1615610efd5760405162461bcd60e51b8152600401610e0d90612910565b6014546301000000900460ff161515600114610f675760405162461bcd60e51b815260206004820152602360248201527f4d53473a2057686974656c6973742073616c65206973206e6f74206c697665206044820152621e595d60ea1b6064820152608401610e0d565b84600e54610f759190612a11565b341015610f945760405162461bcd60e51b8152600401610e0d90612947565b610f9e3386611c0e565b60005b85811015610fdc57336000908152601960205260408120805491610fc483612aae565b91905055508080610fd490612aae565b915050610fa1565b505050505050565b336000908152601860205260409020546011548391839161100584836129e5565b11156110695760405162461bcd60e51b815260206004820152602d60248201527f4d53473a204d6178204e4654207065722061646472657373206578636565646560448201526c6420666f72206f672073616c6560981b6064820152608401610e0d565b6040516bffffffffffffffffffffffff193360601b1660208201526110a89083906034016040516020818303038152906040528051906020012061181d565b6110f45760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c6973746564000000006044820152606401610e0d565b600954836111056001546000540390565b61110f91906129e5565b111561112d5760405162461bcd60e51b8152600401610e0d9061297e565b60145460ff16156111505760405162461bcd60e51b8152600401610e0d90612910565b60145462010000900460ff1615156001146111ad5760405162461bcd60e51b815260206004820152601c60248201527f4d53473a204f472073616c65206973206e6f74206c69766520796574000000006044820152606401610e0d565b84600d546111bb9190612a11565b3410156111da5760405162461bcd60e51b8152600401610e0d90612947565b6111ee336111e9876002612a11565b611c0e565b60005b85811015610fdc5733600090815260186020526040812080549161121483612aae565b9190505550808061122490612aae565b9150506111f1565b611234611b2d565b6014805460ff1916911515919091179055565b610d80838383611c28565b3360009081526017602052604090205460105482919061127283836129e5565b11156112d85760405162461bcd60e51b815260206004820152602f60248201527f4d53473a204d6178204e4654207065722061646472657373206578636565646560448201526e6420666f7220667265652073616c6560881b6064820152608401610e0d565b600954826112e96001546000540390565b6112f391906129e5565b11156113115760405162461bcd60e51b8152600401610e0d9061297e565b60145460ff16156113345760405162461bcd60e51b8152600401610e0d90612910565b60145460ff61010090910416151560011480156113585750600a5460015460005403105b6113a45760405162461bcd60e51b815260206004820152601e60248201527f4d53473a20467265652073616c65206973206e6f74206c6976652079657400006044820152606401610e0d565b6113ae3384611c0e565b60005b838110156113ec573360009081526017602052604081208054916113d483612aae565b919050555080806113e490612aae565b9150506113b1565b50505050565b6113fa611b2d565b600d55565b600061140e8360165484611e3c565b9392505050565b61141d611b2d565b601355565b61142a611b2d565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611463573d6000803e3d6000fd5b50565b610d808383836040518060200160405280600081525061182c565b611489611b2d565b805161149c90600b90602084019061241b565b5050565b6114a8611b2d565b601655565b60006114b882611e52565b5192915050565b6114c7611b2d565b601055565b6114d4611b2d565b60148054911515620100000262ff000019909216919091179055565b600b80546114fd90612a73565b80601f016020809104026020016040519081016040528092919081815260200182805461152990612a73565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b505050505081565b611586611b2d565b601555565b611593611b2d565b600955565b60006001600160a01b0382166115c1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6115ee611b2d565b6115f86000611f6c565b565b611602611b2d565b601480549115156101000261ff0019909216919091179055565b611624611b2d565b600e55565b600c80546114fd90612a73565b61163e611b2d565b600f55565b61164b611b2d565b601155565b606060038054610c3090612a73565b611667611b2d565b601255565b6001600160a01b0382163314156116965760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60145460ff16156117255760405162461bcd60e51b8152600401610e0d90612910565b601454610100900460ff16158015611746575060145462010000900460ff16155b801561175c57506014546301000000900460ff16155b6117a85760405162461bcd60e51b815260206004820181905260248201527f4d53473a205075626c69632073616c65206973206e6f74206c697665207965746044820152606401610e0d565b80600f546117b69190612a11565b3410156117d55760405162461bcd60e51b8152600401610e0d90612947565b6117df3382611c0e565b60005b8181101561149c57336000908152601a6020526040812080549161180583612aae565b9190505550808061181590612aae565b9150506117e2565b600061140e8360155484611e3c565b611837848484611c28565b6001600160a01b0383163b15158015611859575061185784848484611fbe565b155b156113ec576040516368d2bf6b60e11b815260040160405180910390fd5b61187f611b2d565b805161149c90600c90602084019061241b565b61189a611b2d565b60145460ff16156118bd5760405162461bcd60e51b8152600401610e0d90612910565b61149c8282611c0e565b60606118d282611b87565b6119355760405162461bcd60e51b815260206004820152602e60248201527f506f756e64546f776e5754463a2055524920717565727920666f72206e6f6e6560448201526d3c34b9ba32b73a103a37b5b2b71760911b6064820152608401610e0d565b601454640100000000900460ff166119d957600c805461195490612a73565b80601f016020809104026020016040519081016040528092919081815260200182805461198090612a73565b80156119cd5780601f106119a2576101008083540402835291602001916119cd565b820191906000526020600020905b8154815290600101906020018083116119b057829003601f168201915b50505050509050919050565b60006119e36120b6565b90506000815111611a03576040518060200160405280600081525061140e565b80611a0d846120c5565b604051602001611a1e929190612881565b6040516020818303038152906040529392505050565b611a3c611b2d565b6014805491151563010000000263ff00000019909216919091179055565b611a62611b2d565b601480549115156401000000000264ff0000000019909216919091179055565b611a8a611b2d565b60145460ff1615611aad5760405162461bcd60e51b8152600401610e0d90612910565b6114633382611c0e565b611abf611b2d565b6001600160a01b038116611b245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e0d565b61146381611f6c565b6008546001600160a01b031633146115f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6000805482108015610c1b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61149c8282604051806020016040528060008152506121c2565b6000611c3382611e52565b80519091506000906001600160a01b0316336001600160a01b03161480611c6157508151611c619033610b28565b80611c7c575033611c7184610cb3565b6001600160a01b0316145b905080611c9c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611cd15760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611cf857604051633a954ecd60e21b815260040160405180910390fd5b611d086000848460000151611bb2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611df257600054811015611df257825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600082611e4985846121cf565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015611f5357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f515780516001600160a01b031615611ee8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f4c579392505050565b611ee8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ff39033908990889088906004016128c0565b602060405180830381600087803b15801561200d57600080fd5b505af192505050801561203d575060408051601f3d908101601f1916820190925261203a918101906127aa565b60015b612098573d80801561206b576040519150601f19603f3d011682016040523d82523d6000602084013e612070565b606091505b508051612090576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610c3090612a73565b6060816120e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561211357806120fd81612aae565b915061210c9050600a836129fd565b91506120ed565b6000816001600160401b0381111561212d5761212d612b1f565b6040519080825280601f01601f191660200182016040528015612157576020820181803683370190505b5090505b84156120ae5761216c600183612a30565b9150612179600a86612ac9565b6121849060306129e5565b60f81b81838151811061219957612199612b09565b60200101906001600160f81b031916908160001a9053506121bb600a866129fd565b945061215b565b610d80838383600161221c565b600081815b845181101561221457612200828683815181106121f3576121f3612b09565b60200260200101516123ec565b91508061220c81612aae565b9150506121d4565b509392505050565b6000546001600160a01b03851661224557604051622e076360e81b815260040160405180910390fd5b836122635760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561231457506001600160a01b0387163b15155b1561239d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123656000888480600101955088611fbe565b612382576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561231a57826000541461239857600080fd5b6123e3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561239e575b50600055611e35565b600081831061240857600082815260208490526040902061140e565b600083815260208390526040902061140e565b82805461242790612a73565b90600052602060002090601f016020900481019282612449576000855561248f565b82601f1061246257805160ff191683800117855561248f565b8280016001018555821561248f579182015b8281111561248f578251825591602001919060010190612474565b5061249b92915061249f565b5090565b5b8082111561249b57600081556001016124a0565b60006001600160401b038311156124cd576124cd612b1f565b6124e0601f8401601f19166020016129b5565b90508281528383830111156124f457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461252257600080fd5b919050565b600082601f83011261253857600080fd5b813560206001600160401b0382111561255357612553612b1f565b8160051b6125628282016129b5565b83815282810190868401838801850189101561257d57600080fd5b600093505b858410156125a0578035835260019390930192918401918401612582565b50979650505050505050565b8035801515811461252257600080fd5b6000602082840312156125ce57600080fd5b61140e8261250b565b600080604083850312156125ea57600080fd5b6125f38361250b565b91506126016020840161250b565b90509250929050565b60008060006060848603121561261f57600080fd5b6126288461250b565b92506126366020850161250b565b9150604084013590509250925092565b6000806000806080858703121561265c57600080fd5b6126658561250b565b93506126736020860161250b565b92506040850135915060608501356001600160401b0381111561269557600080fd5b8501601f810187136126a657600080fd5b6126b5878235602084016124b4565b91505092959194509250565b600080604083850312156126d457600080fd5b6126dd8361250b565b9150612601602084016125ac565b600080604083850312156126fe57600080fd5b6127078361250b565b946020939093013593505050565b6000806040838503121561272857600080fd5b82356001600160401b0381111561273e57600080fd5b61274a85828601612527565b95602094909401359450505050565b60006020828403121561276b57600080fd5b61140e826125ac565b60006020828403121561278657600080fd5b5035919050565b60006020828403121561279f57600080fd5b813561140e81612b35565b6000602082840312156127bc57600080fd5b815161140e81612b35565b6000602082840312156127d957600080fd5b81356001600160401b038111156127ef57600080fd5b8201601f8101841361280057600080fd5b6120ae848235602084016124b4565b6000806040838503121561282257600080fd5b8235915060208301356001600160401b0381111561283f57600080fd5b61284b85828601612527565b9150509250929050565b6000815180845261286d816020860160208601612a47565b601f01601f19169290920160200192915050565b60008351612893818460208801612a47565b8351908301906128a7818360208801612a47565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f390830184612855565b9695505050505050565b60208152600061140e6020830184612855565b6020808252601b908201527f4d53473a2054686520636f6e7472616374206973207061757365640000000000604082015260600190565b60208082526017908201527f4d53473a20496e73756666696369656e742066756e6473000000000000000000604082015260600190565b60208082526018908201527f4d53473a204d617820737570706c792065786365656465640000000000000000604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156129dd576129dd612b1f565b604052919050565b600082198211156129f8576129f8612add565b500190565b600082612a0c57612a0c612af3565b500490565b6000816000190483118215151615612a2b57612a2b612add565b500290565b600082821015612a4257612a42612add565b500390565b60005b83811015612a62578181015183820152602001612a4a565b838111156113ec5750506000910152565b600181811c90821680612a8757607f821691505b60208210811415612aa857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac257612ac2612add565b5060010190565b600082612ad857612ad8612af3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461146357600080fdfea2646970667358221220320130c5d1abd0c49c3adfcd9119c122d3fdf4b82c1342a0c7417830c402424164736f6c6343000807003368747470733a2f2f656d6f74696f6e616c706f6c617262656172732e636f6d2f636f6c6c656374696f6e2f6a736f6e732f68747470733a2f2f656d6f74696f6e616c706f6c617262656172732e636f6d2f636f6c6c656374696f6e2f706c616365686f6c6465722e6a736f6e
Deployed Bytecode
0x6080604052600436106103d85760003560e01c80636e00f84b116101fd578063b3aacb3311610118578063ca7ce3ec116100ab578063e985e9c51161007a578063e985e9c514610b0d578063f03f1f0a14610b56578063f19e75d414610b6c578063f24b006414610b8c578063f2fde38b14610ba257600080fd5b8063ca7ce3ec14610aa1578063d5abeb0114610ac1578063de633acc14610ad7578063e0a8085314610aed57600080fd5b8063bbaac02f116100e7578063bbaac02f14610a2b578063bd3a17f514610a4b578063c288245b14610a6b578063c87b56dd14610a8157600080fd5b8063b3aacb33146109c2578063b3ab66b0146109d8578063b7069835146109eb578063b88d4fde14610a0b57600080fd5b80638cc54e7f1161019057806395d89b411161015f57806395d89b411461094e5780639c6fe19014610963578063a22cb46514610983578063a4b41a15146109a357600080fd5b80638cc54e7f146108db5780638da5cb5b146108f05780638dbb7c061461090e57806392c50b761461092e57600080fd5b806373efad77116101cc57806373efad771461086557806375f74fca1461087b578063843d86a41461089b57806388b71fc0146108bb57600080fd5b80636e00f84b146107f05780636f8b44b01461081057806370a0823114610830578063715018a61461085057600080fd5b80633a2e68e7116102f857806355f804b31161028b5780636192e7f51161025a5780636192e7f5146107655780636352211e1461077b5780636b39936a1461079b5780636b67ce35146107bb5780636c0360eb146107db57600080fd5b806355f804b3146106f55780635797db75146107155780635bd83ab8146107355780635c975abb1461074b57600080fd5b806342842e0e116102c757806342842e0e14610670578063453afb0f1461069057806350b1aa64146106a657806351830227146106d357600080fd5b80633a2e68e7146105fb5780633ac4e0301461061b5780633b5ffa6d1461063b5780633ccfd60b1461066857600080fd5b806318160ddd11610370578063257ea0691161033f578063257ea0691461059157806331ffd6f1146105a457806337481dfd146105c55780633837080c146105e557600080fd5b806318160ddd146104f45780631e7b4a59146105175780632035cda41461054457806323b872dd1461057157600080fd5b8063095ea7b3116103ac578063095ea7b31461048e5780630a887cda146104ae5780631212ec7d146104c157806316c38b3c146104d457600080fd5b806246ba81146103dd57806301ffc9a7146103ff57806306fdde0314610434578063081812fc14610456575b600080fd5b3480156103e957600080fd5b506103fd6103f8366004612774565b610bc2565b005b34801561040b57600080fd5b5061041f61041a36600461278d565b610bcf565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610c21565b60405161042b91906128fd565b34801561046257600080fd5b50610476610471366004612774565b610cb3565b6040516001600160a01b03909116815260200161042b565b34801561049a57600080fd5b506103fd6104a93660046126eb565b610cf7565b6103fd6104bc36600461280f565b610d85565b6103fd6104cf36600461280f565b610fe4565b3480156104e057600080fd5b506103fd6104ef366004612759565b61122c565b34801561050057600080fd5b50600154600054035b60405190815260200161042b565b34801561052357600080fd5b506105096105323660046125bc565b60186020526000908152604090205481565b34801561055057600080fd5b5061050961055f3660046125bc565b60176020526000908152604090205481565b34801561057d57600080fd5b506103fd61058c36600461260a565b611247565b6103fd61059f366004612774565b611252565b3480156105b057600080fd5b5060145461041f906301000000900460ff1681565b3480156105d157600080fd5b506103fd6105e0366004612774565b6113f2565b3480156105f157600080fd5b5061050960135481565b34801561060757600080fd5b5061041f610616366004612715565b6113ff565b34801561062757600080fd5b506103fd610636366004612774565b611415565b34801561064757600080fd5b506105096106563660046125bc565b601a6020526000908152604090205481565b6103fd611422565b34801561067c57600080fd5b506103fd61068b36600461260a565b611466565b34801561069c57600080fd5b50610509600f5481565b3480156106b257600080fd5b506105096106c13660046125bc565b60196020526000908152604090205481565b3480156106df57600080fd5b5060145461041f90640100000000900460ff1681565b34801561070157600080fd5b506103fd6107103660046127c7565b611481565b34801561072157600080fd5b506103fd610730366004612774565b6114a0565b34801561074157600080fd5b50610509600d5481565b34801561075757600080fd5b5060145461041f9060ff1681565b34801561077157600080fd5b5061050960115481565b34801561078757600080fd5b50610476610796366004612774565b6114ad565b3480156107a757600080fd5b506103fd6107b6366004612774565b6114bf565b3480156107c757600080fd5b506103fd6107d6366004612759565b6114cc565b3480156107e757600080fd5b506104496114f0565b3480156107fc57600080fd5b506103fd61080b366004612774565b61157e565b34801561081c57600080fd5b506103fd61082b366004612774565b61158b565b34801561083c57600080fd5b5061050961084b3660046125bc565b611598565b34801561085c57600080fd5b506103fd6115e6565b34801561087157600080fd5b50610509600a5481565b34801561088757600080fd5b506103fd610896366004612759565b6115fa565b3480156108a757600080fd5b506103fd6108b6366004612774565b61161c565b3480156108c757600080fd5b5060145461041f9062010000900460ff1681565b3480156108e757600080fd5b50610449611629565b3480156108fc57600080fd5b506008546001600160a01b0316610476565b34801561091a57600080fd5b506103fd610929366004612774565b611636565b34801561093a57600080fd5b506103fd610949366004612774565b611643565b34801561095a57600080fd5b50610449611650565b34801561096f57600080fd5b506103fd61097e366004612774565b61165f565b34801561098f57600080fd5b506103fd61099e3660046126c1565b61166c565b3480156109af57600080fd5b5060145461041f90610100900460ff1681565b3480156109ce57600080fd5b5061050960155481565b6103fd6109e6366004612774565b611702565b3480156109f757600080fd5b5061041f610a06366004612715565b61181d565b348015610a1757600080fd5b506103fd610a26366004612646565b61182c565b348015610a3757600080fd5b506103fd610a463660046127c7565b611877565b348015610a5757600080fd5b506103fd610a663660046126eb565b611892565b348015610a7757600080fd5b50610509600e5481565b348015610a8d57600080fd5b50610449610a9c366004612774565b6118c7565b348015610aad57600080fd5b506103fd610abc366004612759565b611a34565b348015610acd57600080fd5b5061050960095481565b348015610ae357600080fd5b5061050960165481565b348015610af957600080fd5b506103fd610b08366004612759565b611a5a565b348015610b1957600080fd5b5061041f610b283660046125d7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b6257600080fd5b5061050960125481565b348015610b7857600080fd5b506103fd610b87366004612774565b611a82565b348015610b9857600080fd5b5061050960105481565b348015610bae57600080fd5b506103fd610bbd3660046125bc565b611ab7565b610bca611b2d565b600a55565b60006001600160e01b031982166380ac58cd60e01b1480610c0057506001600160e01b03198216635b5e139f60e01b145b80610c1b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610c3090612a73565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5c90612a73565b8015610ca95780601f10610c7e57610100808354040283529160200191610ca9565b820191906000526020600020905b815481529060010190602001808311610c8c57829003601f168201915b5050505050905090565b6000610cbe82611b87565b610cdb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d02826114ad565b9050806001600160a01b0316836001600160a01b03161415610d375760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610d575750610d558133610b28565b155b15610d75576040516367d9dca160e11b815260040160405180910390fd5b610d80838383611bb2565b505050565b3360009081526019602052604090205460125483918391610da684836129e5565b1115610e165760405162461bcd60e51b815260206004820152603460248201527f4d53473a204d6178204e465420706572206164647265737320657863656564656044820152736420666f722077686974656c6973742073616c6560601b60648201526084015b60405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152610e55908390603401604051602081830303815290604052805190602001206113ff565b610ea15760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c6973746564000000006044820152606401610e0d565b60095483610eb26001546000540390565b610ebc91906129e5565b1115610eda5760405162461bcd60e51b8152600401610e0d9061297e565b60145460ff1615610efd5760405162461bcd60e51b8152600401610e0d90612910565b6014546301000000900460ff161515600114610f675760405162461bcd60e51b815260206004820152602360248201527f4d53473a2057686974656c6973742073616c65206973206e6f74206c697665206044820152621e595d60ea1b6064820152608401610e0d565b84600e54610f759190612a11565b341015610f945760405162461bcd60e51b8152600401610e0d90612947565b610f9e3386611c0e565b60005b85811015610fdc57336000908152601960205260408120805491610fc483612aae565b91905055508080610fd490612aae565b915050610fa1565b505050505050565b336000908152601860205260409020546011548391839161100584836129e5565b11156110695760405162461bcd60e51b815260206004820152602d60248201527f4d53473a204d6178204e4654207065722061646472657373206578636565646560448201526c6420666f72206f672073616c6560981b6064820152608401610e0d565b6040516bffffffffffffffffffffffff193360601b1660208201526110a89083906034016040516020818303038152906040528051906020012061181d565b6110f45760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c6973746564000000006044820152606401610e0d565b600954836111056001546000540390565b61110f91906129e5565b111561112d5760405162461bcd60e51b8152600401610e0d9061297e565b60145460ff16156111505760405162461bcd60e51b8152600401610e0d90612910565b60145462010000900460ff1615156001146111ad5760405162461bcd60e51b815260206004820152601c60248201527f4d53473a204f472073616c65206973206e6f74206c69766520796574000000006044820152606401610e0d565b84600d546111bb9190612a11565b3410156111da5760405162461bcd60e51b8152600401610e0d90612947565b6111ee336111e9876002612a11565b611c0e565b60005b85811015610fdc5733600090815260186020526040812080549161121483612aae565b9190505550808061122490612aae565b9150506111f1565b611234611b2d565b6014805460ff1916911515919091179055565b610d80838383611c28565b3360009081526017602052604090205460105482919061127283836129e5565b11156112d85760405162461bcd60e51b815260206004820152602f60248201527f4d53473a204d6178204e4654207065722061646472657373206578636565646560448201526e6420666f7220667265652073616c6560881b6064820152608401610e0d565b600954826112e96001546000540390565b6112f391906129e5565b11156113115760405162461bcd60e51b8152600401610e0d9061297e565b60145460ff16156113345760405162461bcd60e51b8152600401610e0d90612910565b60145460ff61010090910416151560011480156113585750600a5460015460005403105b6113a45760405162461bcd60e51b815260206004820152601e60248201527f4d53473a20467265652073616c65206973206e6f74206c6976652079657400006044820152606401610e0d565b6113ae3384611c0e565b60005b838110156113ec573360009081526017602052604081208054916113d483612aae565b919050555080806113e490612aae565b9150506113b1565b50505050565b6113fa611b2d565b600d55565b600061140e8360165484611e3c565b9392505050565b61141d611b2d565b601355565b61142a611b2d565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611463573d6000803e3d6000fd5b50565b610d808383836040518060200160405280600081525061182c565b611489611b2d565b805161149c90600b90602084019061241b565b5050565b6114a8611b2d565b601655565b60006114b882611e52565b5192915050565b6114c7611b2d565b601055565b6114d4611b2d565b60148054911515620100000262ff000019909216919091179055565b600b80546114fd90612a73565b80601f016020809104026020016040519081016040528092919081815260200182805461152990612a73565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b505050505081565b611586611b2d565b601555565b611593611b2d565b600955565b60006001600160a01b0382166115c1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6115ee611b2d565b6115f86000611f6c565b565b611602611b2d565b601480549115156101000261ff0019909216919091179055565b611624611b2d565b600e55565b600c80546114fd90612a73565b61163e611b2d565b600f55565b61164b611b2d565b601155565b606060038054610c3090612a73565b611667611b2d565b601255565b6001600160a01b0382163314156116965760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60145460ff16156117255760405162461bcd60e51b8152600401610e0d90612910565b601454610100900460ff16158015611746575060145462010000900460ff16155b801561175c57506014546301000000900460ff16155b6117a85760405162461bcd60e51b815260206004820181905260248201527f4d53473a205075626c69632073616c65206973206e6f74206c697665207965746044820152606401610e0d565b80600f546117b69190612a11565b3410156117d55760405162461bcd60e51b8152600401610e0d90612947565b6117df3382611c0e565b60005b8181101561149c57336000908152601a6020526040812080549161180583612aae565b9190505550808061181590612aae565b9150506117e2565b600061140e8360155484611e3c565b611837848484611c28565b6001600160a01b0383163b15158015611859575061185784848484611fbe565b155b156113ec576040516368d2bf6b60e11b815260040160405180910390fd5b61187f611b2d565b805161149c90600c90602084019061241b565b61189a611b2d565b60145460ff16156118bd5760405162461bcd60e51b8152600401610e0d90612910565b61149c8282611c0e565b60606118d282611b87565b6119355760405162461bcd60e51b815260206004820152602e60248201527f506f756e64546f776e5754463a2055524920717565727920666f72206e6f6e6560448201526d3c34b9ba32b73a103a37b5b2b71760911b6064820152608401610e0d565b601454640100000000900460ff166119d957600c805461195490612a73565b80601f016020809104026020016040519081016040528092919081815260200182805461198090612a73565b80156119cd5780601f106119a2576101008083540402835291602001916119cd565b820191906000526020600020905b8154815290600101906020018083116119b057829003601f168201915b50505050509050919050565b60006119e36120b6565b90506000815111611a03576040518060200160405280600081525061140e565b80611a0d846120c5565b604051602001611a1e929190612881565b6040516020818303038152906040529392505050565b611a3c611b2d565b6014805491151563010000000263ff00000019909216919091179055565b611a62611b2d565b601480549115156401000000000264ff0000000019909216919091179055565b611a8a611b2d565b60145460ff1615611aad5760405162461bcd60e51b8152600401610e0d90612910565b6114633382611c0e565b611abf611b2d565b6001600160a01b038116611b245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e0d565b61146381611f6c565b6008546001600160a01b031633146115f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6000805482108015610c1b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61149c8282604051806020016040528060008152506121c2565b6000611c3382611e52565b80519091506000906001600160a01b0316336001600160a01b03161480611c6157508151611c619033610b28565b80611c7c575033611c7184610cb3565b6001600160a01b0316145b905080611c9c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611cd15760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611cf857604051633a954ecd60e21b815260040160405180910390fd5b611d086000848460000151611bb2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611df257600054811015611df257825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600082611e4985846121cf565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015611f5357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f515780516001600160a01b031615611ee8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f4c579392505050565b611ee8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ff39033908990889088906004016128c0565b602060405180830381600087803b15801561200d57600080fd5b505af192505050801561203d575060408051601f3d908101601f1916820190925261203a918101906127aa565b60015b612098573d80801561206b576040519150601f19603f3d011682016040523d82523d6000602084013e612070565b606091505b508051612090576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610c3090612a73565b6060816120e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561211357806120fd81612aae565b915061210c9050600a836129fd565b91506120ed565b6000816001600160401b0381111561212d5761212d612b1f565b6040519080825280601f01601f191660200182016040528015612157576020820181803683370190505b5090505b84156120ae5761216c600183612a30565b9150612179600a86612ac9565b6121849060306129e5565b60f81b81838151811061219957612199612b09565b60200101906001600160f81b031916908160001a9053506121bb600a866129fd565b945061215b565b610d80838383600161221c565b600081815b845181101561221457612200828683815181106121f3576121f3612b09565b60200260200101516123ec565b91508061220c81612aae565b9150506121d4565b509392505050565b6000546001600160a01b03851661224557604051622e076360e81b815260040160405180910390fd5b836122635760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561231457506001600160a01b0387163b15155b1561239d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123656000888480600101955088611fbe565b612382576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561231a57826000541461239857600080fd5b6123e3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561239e575b50600055611e35565b600081831061240857600082815260208490526040902061140e565b600083815260208390526040902061140e565b82805461242790612a73565b90600052602060002090601f016020900481019282612449576000855561248f565b82601f1061246257805160ff191683800117855561248f565b8280016001018555821561248f579182015b8281111561248f578251825591602001919060010190612474565b5061249b92915061249f565b5090565b5b8082111561249b57600081556001016124a0565b60006001600160401b038311156124cd576124cd612b1f565b6124e0601f8401601f19166020016129b5565b90508281528383830111156124f457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461252257600080fd5b919050565b600082601f83011261253857600080fd5b813560206001600160401b0382111561255357612553612b1f565b8160051b6125628282016129b5565b83815282810190868401838801850189101561257d57600080fd5b600093505b858410156125a0578035835260019390930192918401918401612582565b50979650505050505050565b8035801515811461252257600080fd5b6000602082840312156125ce57600080fd5b61140e8261250b565b600080604083850312156125ea57600080fd5b6125f38361250b565b91506126016020840161250b565b90509250929050565b60008060006060848603121561261f57600080fd5b6126288461250b565b92506126366020850161250b565b9150604084013590509250925092565b6000806000806080858703121561265c57600080fd5b6126658561250b565b93506126736020860161250b565b92506040850135915060608501356001600160401b0381111561269557600080fd5b8501601f810187136126a657600080fd5b6126b5878235602084016124b4565b91505092959194509250565b600080604083850312156126d457600080fd5b6126dd8361250b565b9150612601602084016125ac565b600080604083850312156126fe57600080fd5b6127078361250b565b946020939093013593505050565b6000806040838503121561272857600080fd5b82356001600160401b0381111561273e57600080fd5b61274a85828601612527565b95602094909401359450505050565b60006020828403121561276b57600080fd5b61140e826125ac565b60006020828403121561278657600080fd5b5035919050565b60006020828403121561279f57600080fd5b813561140e81612b35565b6000602082840312156127bc57600080fd5b815161140e81612b35565b6000602082840312156127d957600080fd5b81356001600160401b038111156127ef57600080fd5b8201601f8101841361280057600080fd5b6120ae848235602084016124b4565b6000806040838503121561282257600080fd5b8235915060208301356001600160401b0381111561283f57600080fd5b61284b85828601612527565b9150509250929050565b6000815180845261286d816020860160208601612a47565b601f01601f19169290920160200192915050565b60008351612893818460208801612a47565b8351908301906128a7818360208801612a47565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f390830184612855565b9695505050505050565b60208152600061140e6020830184612855565b6020808252601b908201527f4d53473a2054686520636f6e7472616374206973207061757365640000000000604082015260600190565b60208082526017908201527f4d53473a20496e73756666696369656e742066756e6473000000000000000000604082015260600190565b60208082526018908201527f4d53473a204d617820737570706c792065786365656465640000000000000000604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156129dd576129dd612b1f565b604052919050565b600082198211156129f8576129f8612add565b500190565b600082612a0c57612a0c612af3565b500490565b6000816000190483118215151615612a2b57612a2b612add565b500290565b600082821015612a4257612a42612add565b500390565b60005b83811015612a62578181015183820152602001612a4a565b838111156113ec5750506000910152565b600181811c90821680612a8757607f821691505b60208210811415612aa857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac257612ac2612add565b5060010190565b600082612ad857612ad8612af3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461146357600080fdfea2646970667358221220320130c5d1abd0c49c3adfcd9119c122d3fdf4b82c1342a0c7417830c402424164736f6c63430008070033
Deployed Bytecode Sourcemap
55144:9336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61718:104;;;;;;;;;;-1:-1:-1;61718:104:0;;;;;:::i;:::-;;:::i;:::-;;37613:305;;;;;;;;;;-1:-1:-1;37613:305:0;;;;;:::i;:::-;;:::i;:::-;;;7834:14:1;;7827:22;7809:41;;7797:2;7782:18;37613:305:0;;;;;;;;40998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42501:204::-;;;;;;;;;;-1:-1:-1;42501:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7132:32:1;;;7114:51;;7102:2;7087:18;42501:204:0;6968:203:1;42064:371:0;;;;;;;;;;-1:-1:-1;42064:371:0;;;;;:::i;:::-;;:::i;58854:579::-;;;;;;:::i;:::-;;:::i;57527:541::-;;;;;;:::i;:::-;;:::i;63571:83::-;;;;;;;;;;-1:-1:-1;63571:83:0;;;;;:::i;:::-;;:::i;36862:303::-;;;;;;;;;;-1:-1:-1;37116:12:0;;36906:7;37100:13;:28;36862:303;;;8007:25:1;;;7995:2;7980:18;36862:303:0;7861:177:1;56328:61:0;;;;;;;;;;-1:-1:-1;56328:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;56258:63;;;;;;;;;;-1:-1:-1;56258:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;43358:170;;;;;;;;;;-1:-1:-1;43358:170:0;;;;;:::i;:::-;;:::i;56664:442::-;;;;;;:::i;:::-;;:::i;56043:33::-;;;;;;;;;;-1:-1:-1;56043:33:0;;;;;;;;;;;62639:92;;;;;;;;;;-1:-1:-1;62639:92:0;;;;;:::i;:::-;;:::i;55870:47::-;;;;;;;;;;;;;;;;60024:196;;;;;;;;;;-1:-1:-1;60024:196:0;;;;;:::i;:::-;;:::i;63407:130::-;;;;;;;;;;-1:-1:-1;63407:130:0;;;;;:::i;:::-;;:::i;56471:65::-;;;;;;;;;;-1:-1:-1;56471:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;64363:114;;;:::i;43599:185::-;;;;;;;;;;-1:-1:-1;43599:185:0;;;;;:::i;:::-;;:::i;55633:42::-;;;;;;;;;;;;;;;;56396:68;;;;;;;;;;-1:-1:-1;56396:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;56085:28;;;;;;;;;;-1:-1:-1;56085:28:0;;;;;;;;;;;61962:90;;;;;;;;;;-1:-1:-1;61962:90:0;;;;;:::i;:::-;;:::i;64205:122::-;;;;;;;;;;-1:-1:-1;64205:122:0;;;;;:::i;:::-;;:::i;55536:38::-;;;;;;;;;;;;;;;;55941:26;;;;;;;;;;-1:-1:-1;55941:26:0;;;;;;;;55763:43;;;;;;;;;;;;;;;;40807:124;;;;;;;;;;-1:-1:-1;40807:124:0;;;;;:::i;:::-;;:::i;62999:126::-;;;;;;;;;;-1:-1:-1;62999:126:0;;;;;:::i;:::-;;:::i;63757:83::-;;;;;;;;;;-1:-1:-1;63757:83:0;;;;;:::i;:::-;;:::i;55344:75::-;;;;;;;;;;;;;:::i;64085:112::-;;;;;;;;;;-1:-1:-1;64085:112:0;;;;;:::i;:::-;;:::i;61616:94::-;;;;;;;;;;-1:-1:-1;61616:94:0;;;;;:::i;:::-;;:::i;37982:206::-;;;;;;;;;;-1:-1:-1;37982:206:0;;;;;:::i;:::-;;:::i;13998:103::-;;;;;;;;;;;;;:::i;55287:36::-;;;;;;;;;;;;;;;;63662:87;;;;;;;;;;-1:-1:-1;63662:87:0;;;;;:::i;:::-;;:::i;62739:106::-;;;;;;;;;;-1:-1:-1;62739:106:0;;;;;:::i;:::-;;:::i;56010:26::-;;;;;;;;;;-1:-1:-1;56010:26:0;;;;;;;;;;;55426:87;;;;;;;;;;;;;:::i;13350:::-;;;;;;;;;;-1:-1:-1;13423:6:0;;-1:-1:-1;;;;;13423:6:0;13350:87;;62853:100;;;;;;;;;;-1:-1:-1;62853:100:0;;;;;:::i;:::-;;:::i;63133:122::-;;;;;;;;;;-1:-1:-1;63133:122:0;;;;;:::i;:::-;;:::i;41167:104::-;;;;;;;;;;;;;:::i;63263:136::-;;;;;;;;;;-1:-1:-1;63263:136:0;;;;;:::i;:::-;;:::i;42777:279::-;;;;;;;;;;-1:-1:-1;42777:279:0;;;;;:::i;:::-;;:::i;55976:27::-;;;;;;;;;;-1:-1:-1;55976:27:0;;;;;;;;;;;56148:35;;;;;;;;;;;;;;;;60265:514;;;;;;:::i;:::-;;:::i;58624:182::-;;;;;;;;;;-1:-1:-1;58624:182:0;;;;;:::i;:::-;;:::i;43855:369::-;;;;;;;;;;-1:-1:-1;43855:369:0;;;;;:::i;:::-;;:::i;62060:94::-;;;;;;;;;;-1:-1:-1;62060:94:0;;;;;:::i;:::-;;:::i;61384:197::-;;;;;;;;;;-1:-1:-1;61384:197:0;;;;;:::i;:::-;;:::i;55581:45::-;;;;;;;;;;;;;;;;62162:444;;;;;;;;;;-1:-1:-1;62162:444:0;;;;;:::i;:::-;;:::i;63848:97::-;;;;;;;;;;-1:-1:-1;63848:97:0;;;;;:::i;:::-;;:::i;55249:31::-;;;;;;;;;;;;;;;;56190:42;;;;;;;;;;;;;;;;63953:87;;;;;;;;;;-1:-1:-1;63953:87:0;;;;;:::i;:::-;;:::i;43127:164::-;;;;;;;;;;-1:-1:-1;43127:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43248:25:0;;;43224:4;43248:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43127:164;55813:50;;;;;;;;;;;;;;;;61206:170;;;;;;;;;;-1:-1:-1;61206:170:0;;;;;:::i;:::-;;:::i;55711:45::-;;;;;;;;;;;;;;;;14256:201;;;;;;;;;;-1:-1:-1;14256:201:0;;;;;:::i;:::-;;:::i;61718:104::-;13236:13;:11;:13::i;:::-;61790:14:::1;:24:::0;61718:104::o;37613:305::-;37715:4;-1:-1:-1;;;;;;37752:40:0;;-1:-1:-1;;;37752:40:0;;:105;;-1:-1:-1;;;;;;;37809:48:0;;-1:-1:-1;;;37809:48:0;37752:105;:158;;;-1:-1:-1;;;;;;;;;;26313:40:0;;;37874:36;37732:178;37613:305;-1:-1:-1;;37613:305:0:o;40998:100::-;41052:13;41085:5;41078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40998:100;:::o;42501:204::-;42569:7;42594:16;42602:7;42594;:16::i;:::-;42589:64;;42619:34;;-1:-1:-1;;;42619:34:0;;;;;;;;;;;42589:64;-1:-1:-1;42673:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42673:24:0;;42501:204::o;42064:371::-;42137:13;42153:24;42169:7;42153:15;:24::i;:::-;42137:40;;42198:5;-1:-1:-1;;;;;42192:11:0;:2;-1:-1:-1;;;;;42192:11:0;;42188:48;;;42212:24;;-1:-1:-1;;;42212:24:0;;;;;;;;;;;42188:48;11981:10;-1:-1:-1;;;;;42253:21:0;;;;;;:63;;-1:-1:-1;42279:37:0;42296:5;11981:10;43127:164;:::i;42279:37::-;42278:38;42253:63;42249:138;;;42340:35;;-1:-1:-1;;;42340:35:0;;;;;;;;;;;42249:138;42399:28;42408:2;42412:7;42421:5;42399:8;:28::i;:::-;42126:309;42064:371;;:::o;58854:579::-;59606:10;59545:24;59572:45;;;:33;:45;;;;;;59670:31;;58980:11;;58993:16;;59636:30;58980:11;59572:45;59636:30;:::i;:::-;:65;;59628:130;;;;-1:-1:-1;;;59628:130:0;;10724:2:1;59628:130:0;;;10706:21:1;10763:2;10743:18;;;10736:30;10802:34;10782:18;;;10775:62;-1:-1:-1;;;10853:18:1;;;10846:50;10913:19;;59628:130:0;;;;;;;;;59843:28;;-1:-1:-1;;59860:10:0;6241:2:1;6237:15;6233:53;59843:28:0;;;6221:66:1;59779:94:0;;59815:16;;6303:12:1;;59843:28:0;;;;;;;;;;;;59833:39;;;;;;59779:35;:94::i;:::-;59771:135;;;;-1:-1:-1;;;59771:135:0;;8884:2:1;59771:135:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962;8942:18;;;8935:58;9010:18;;59771:135:0;8682:352:1;59771:135:0;59958:9;;59943:11;59927:13;37116:12;;36906:7;37100:13;:28;;36862:303;59927:13;:27;;;;:::i;:::-;:40;;59919:77;;;;-1:-1:-1;;;59919:77:0;;;;;;;:::i;:::-;59031:6:::1;::::0;::::1;;59030:7;59022:47;;;;-1:-1:-1::0;;;59022:47:0::1;;;;;;;:::i;:::-;59088:13;::::0;;;::::1;;;:21;;59105:4;59088:21;59080:69;;;::::0;-1:-1:-1;;;59080:69:0;;12631:2:1;59080:69:0::1;::::0;::::1;12613:21:1::0;12670:2;12650:18;;;12643:30;12709:34;12689:18;;;12682:62;-1:-1:-1;;;12760:18:1;;;12753:33;12803:19;;59080:69:0::1;12429:399:1::0;59080:69:0::1;59203:11;59183:17;;:31;;;;:::i;:::-;59170:9;:44;;59162:80;;;;-1:-1:-1::0;;;59162:80:0::1;;;;;;;:::i;:::-;59263:34;59273:10;59285:11;59263:9;:34::i;:::-;59315:9;59310:116;59334:11;59330:1;:15;59310:116;;;59401:10;59367:45;::::0;;;:33:::1;:45;::::0;;;;:47;;;::::1;::::0;::::1;:::i;:::-;;;;;;59347:3;;;;;:::i;:::-;;;;59310:116;;;;59534:482:::0;58854:579;;;;:::o;57527:541::-;58227:10;58173:24;58200:38;;;:26;:38;;;;;;58291:24;;57639:11;;57652:16;;58257:30;57639:11;58200:38;58257:30;:::i;:::-;:58;;58249:116;;;;-1:-1:-1;;;58249:116:0;;13035:2:1;58249:116:0;;;13017:21:1;13074:2;13054:18;;;13047:30;13113:34;13093:18;;;13086:62;-1:-1:-1;;;13164:18:1;;;13157:43;13217:19;;58249:116:0;12833:409:1;58249:116:0;58443:28;;-1:-1:-1;;58460:10:0;6241:2:1;6237:15;6233:53;58443:28:0;;;6221:66:1;58386:87:0;;58415:16;;6303:12:1;;58443:28:0;;;;;;;;;;;;58433:39;;;;;;58386:28;:87::i;:::-;58378:128;;;;-1:-1:-1;;;58378:128:0;;8884:2:1;58378:128:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962;8942:18;;;8935:58;9010:18;;58378:128:0;8682:352:1;58378:128:0;58558:9;;58543:11;58527:13;37116:12;;36906:7;37100:13;:28;;36862:303;58527:13;:27;;;;:::i;:::-;:40;;58519:77;;;;-1:-1:-1;;;58519:77:0;;;;;;;:::i;:::-;57690:6:::1;::::0;::::1;;57689:7;57681:47;;;;-1:-1:-1::0;;;57681:47:0::1;;;;;;;:::i;:::-;57747:6;::::0;;;::::1;;;:14;;57757:4;57747:14;57739:55;;;::::0;-1:-1:-1;;;57739:55:0;;12274:2:1;57739:55:0::1;::::0;::::1;12256:21:1::0;12313:2;12293:18;;;12286:30;12352;12332:18;;;12325:58;12400:18;;57739:55:0::1;12072:352:1::0;57739:55:0::1;57841:11;57828:10;;:24;;;;:::i;:::-;57815:9;:37;;57807:73;;;;-1:-1:-1::0;;;57807:73:0::1;;;;;;;:::i;:::-;57901:38;57911:10;57923:15;:11:::0;57937:1:::1;57923:15;:::i;:::-;57901:9;:38::i;:::-;57957:9;57952:109;57976:11;57972:1;:15;57952:109;;;58036:10;58009:38;::::0;;;:26:::1;:38;::::0;;;;:40;;;::::1;::::0;::::1;:::i;:::-;;;;;;57989:3;;;;;:::i;:::-;;;;57952:109;;63571:83:::0;13236:13;:11;:13::i;:::-;63631:6:::1;:15:::0;;-1:-1:-1;;63631:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63571:83::o;43358:170::-;43492:28;43502:4;43508:2;43512:7;43492:9;:28::i;56664:442::-;57234:10;57178:24;57205:40;;;:28;:40;;;;;;57298:26;;56745:11;;57205:40;57264:30;56745:11;57205:40;57264:30;:::i;:::-;:60;;57256:120;;;;-1:-1:-1;;;57256:120:0;;11145:2:1;57256:120:0;;;11127:21:1;11184:2;11164:18;;;11157:30;11223:34;11203:18;;;11196:62;-1:-1:-1;;;11274:18:1;;;11267:45;11329:19;;57256:120:0;10943:411:1;57256:120:0;57428:9;;57413:11;57397:13;37116:12;;36906:7;37100:13;:28;;36862:303;57397:13;:27;;;;:::i;:::-;:40;;57389:77;;;;-1:-1:-1;;;57389:77:0;;;;;;;:::i;:::-;56778:6:::1;::::0;::::1;;56777:7;56769:47;;;;-1:-1:-1::0;;;56769:47:0::1;;;;;;;:::i;:::-;56835:8;::::0;::::1;;::::0;;::::1;;:16;;:8;:16;:50:::0;::::1;;;-1:-1:-1::0;56871:14:0::1;::::0;37116:12;;36906:7;37100:13;:28;56855:30:::1;56835:50;56827:93;;;::::0;-1:-1:-1;;;56827:93:0;;10365:2:1;56827:93:0::1;::::0;::::1;10347:21:1::0;10404:2;10384:18;;;10377:30;10443:32;10423:18;;;10416:60;10493:18;;56827:93:0::1;10163:354:1::0;56827:93:0::1;56941:34;56951:10;56963:11;56941:9;:34::i;:::-;56993:9;56988:111;57012:11;57008:1;:15;56988:111;;;57074:10;57045:40;::::0;;;:28:::1;:40;::::0;;;;:42;;;::::1;::::0;::::1;:::i;:::-;;;;;;57025:3;;;;;:::i;:::-;;;;56988:111;;;;57167:319:::0;56664:442;;:::o;62639:92::-;13236:13;:11;:13::i;:::-;62705:10:::1;:18:::0;62639:92::o;60024:196::-;60128:4;60152:60;60171:5;60178:27;;60207:4;60152:18;:60::i;:::-;60145:67;60024:196;-1:-1:-1;;;60024:196:0:o;63407:130::-;13236:13;:11;:13::i;:::-;63492:28:::1;:37:::0;63407:130::o;64363:114::-;13236:13;:11;:13::i;:::-;13423:6;;64421:48:::1;::::0;-1:-1:-1;;;;;13423:6:0;;;;64447:21:::1;64421:48:::0;::::1;;;::::0;::::1;::::0;;;64447:21;13423:6;64421:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64363:114::o:0;43599:185::-;43737:39;43754:4;43760:2;43764:7;43737:39;;;;;;;;;;;;:16;:39::i;61962:90::-;13236:13;:11;:13::i;:::-;62030:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;61962:90:::0;:::o;64205:122::-;13236:13;:11;:13::i;:::-;64284:27:::1;:35:::0;64205:122::o;40807:124::-;40871:7;40898:20;40910:7;40898:11;:20::i;:::-;:25;;40807:124;-1:-1:-1;;40807:124:0:o;62999:126::-;13236:13;:11;:13::i;:::-;63082:26:::1;:35:::0;62999:126::o;63757:83::-;13236:13;:11;:13::i;:::-;63817:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;63817:15:0;;::::1;::::0;;;::::1;::::0;;63757:83::o;55344:75::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64085:112::-;13236:13;:11;:13::i;:::-;64161:20:::1;:28:::0;64085:112::o;61616:94::-;13236:13;:11;:13::i;:::-;61683:9:::1;:19:::0;61616:94::o;37982:206::-;38046:7;-1:-1:-1;;;;;38070:19:0;;38066:60;;38098:28;;-1:-1:-1;;;38098:28:0;;;;;;;;;;;38066:60;-1:-1:-1;;;;;;38152:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38152:27:0;;37982:206::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;63662:87::-;13236:13;:11;:13::i;:::-;63724:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;63724:17:0;;::::1;::::0;;;::::1;::::0;;63662:87::o;62739:106::-;13236:13;:11;:13::i;:::-;62812:17:::1;:25:::0;62739:106::o;55426:87::-;;;;;;;:::i;62853:100::-;13236:13;:11;:13::i;:::-;62923:14:::1;:22:::0;62853:100::o;63133:122::-;13236:13;:11;:13::i;:::-;63214:24:::1;:33:::0;63133:122::o;41167:104::-;41223:13;41256:7;41249:14;;;;;:::i;63263:136::-;13236:13;:11;:13::i;:::-;63351:31:::1;:40:::0;63263:136::o;42777:279::-;-1:-1:-1;;;;;42868:24:0;;11981:10;42868:24;42864:54;;;42901:17;;-1:-1:-1;;;42901:17:0;;;;;;;;;;;42864:54;11981:10;42931:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42931:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42931:53:0;;;;;;;;;;43000:48;;7809:41:1;;;42931:42:0;;11981:10;43000:48;;7782:18:1;43000:48:0;;;;;;;42777:279;;:::o;60265:514::-;60345:6;;;;60344:7;60336:47;;;;-1:-1:-1;;;60336:47:0;;;;;;;:::i;:::-;60402:8;;;;;;;:17;;;:36;;-1:-1:-1;60423:6:0;;;;;;;:15;60402:36;:62;;;;-1:-1:-1;60442:13:0;;;;;;;:22;60402:62;60394:107;;;;-1:-1:-1;;;60394:107:0;;9241:2:1;60394:107:0;;;9223:21:1;;;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;9371:18;;60394:107:0;9039:356:1;60394:107:0;60552:11;60535:14;;:28;;;;:::i;:::-;60522:9;:41;;60514:77;;;;-1:-1:-1;;;60514:77:0;;;;;;;:::i;:::-;60612:34;60622:10;60634:11;60612:9;:34::i;:::-;60664:9;60659:113;60683:11;60679:1;:15;60659:113;;;60747:10;60716:42;;;;:30;:42;;;;;:44;;;;;;:::i;:::-;;;;;;60696:3;;;;;:::i;:::-;;;;60659:113;;58624:182;58721:4;58745:53;58764:5;58771:20;;58793:4;58745:18;:53::i;43855:369::-;44022:28;44032:4;44038:2;44042:7;44022:9;:28::i;:::-;-1:-1:-1;;;;;44065:13:0;;16343:19;:23;;44065:76;;;;;44085:56;44116:4;44122:2;44126:7;44135:5;44085:30;:56::i;:::-;44084:57;44065:76;44061:156;;;44165:40;;-1:-1:-1;;;44165:40:0;;;;;;;;;;;62060:94;13236:13;:11;:13::i;:::-;62130:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;61384:197::-:0;13236:13;:11;:13::i;:::-;61489:6:::1;::::0;::::1;;61488:7;61480:47;;;;-1:-1:-1::0;;;61480:47:0::1;;;;;;;:::i;:::-;61540:33;61550:9;61561:11;61540:9;:33::i;62162:444::-:0;62236:13;62270:17;62278:8;62270:7;:17::i;:::-;62262:76;;;;-1:-1:-1;;;62262:76:0;;8469:2:1;62262:76:0;;;8451:21:1;8508:2;8488:18;;;8481:30;8547:34;8527:18;;;8520:62;-1:-1:-1;;;8598:18:1;;;8591:44;8652:19;;62262:76:0;8267:410:1;62262:76:0;62355:8;;;;;;;62351:66;;62396:9;62389:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62162:444;;;:::o;62351:66::-;62429:28;62460:10;:8;:10::i;:::-;62429:41;;62519:1;62494:14;62488:28;:32;:110;;;;;;;;;;;;;;;;;62547:14;62563:19;:8;:17;:19::i;:::-;62530:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62481:117;62162:444;-1:-1:-1;;;62162:444:0:o;63848:97::-;13236:13;:11;:13::i;:::-;63915::::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;63915:22:0;;::::1;::::0;;;::::1;::::0;;63848:97::o;63953:87::-;13236:13;:11;:13::i;:::-;64015:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;64015:17:0;;::::1;::::0;;;::::1;::::0;;63953:87::o;61206:170::-;13236:13;:11;:13::i;:::-;61283:6:::1;::::0;::::1;;61282:7;61274:47;;;;-1:-1:-1::0;;;61274:47:0::1;;;;;;;:::i;:::-;61334:34;61344:10;61356:11;61334:9;:34::i;14256:201::-:0;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;14345:22:0;::::1;14337:73;;;::::0;-1:-1:-1;;;14337:73:0;;9602:2:1;14337:73:0::1;::::0;::::1;9584:21:1::0;9641:2;9621:18;;;9614:30;9680:34;9660:18;;;9653:62;-1:-1:-1;;;9731:18:1;;;9724:36;9777:19;;14337:73:0::1;9400:402:1::0;14337:73:0::1;14421:28;14440:8;14421:18;:28::i;13515:132::-:0;13423:6;;-1:-1:-1;;;;;13423:6:0;11981:10;13579:23;13571:68;;;;-1:-1:-1;;;13571:68:0;;11913:2:1;13571:68:0;;;11895:21:1;;;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;12043:18;;13571:68:0;11711:356:1;44479:187:0;44536:4;44600:13;;44590:7;:23;44560:98;;;;-1:-1:-1;;44631:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44631:27:0;;;;44630:28;;44479:187::o;52090:196::-;52205:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52205:29:0;-1:-1:-1;;;;;52205:29:0;;;;;;;;;52250:28;;52205:24;;52250:28;;;;;;;52090:196;;;:::o;44674:104::-;44743:27;44753:2;44757:8;44743:27;;;;;;;;;;;;:9;:27::i;47592:2112::-;47707:35;47745:20;47757:7;47745:11;:20::i;:::-;47820:18;;47707:58;;-1:-1:-1;47778:22:0;;-1:-1:-1;;;;;47804:34:0;11981:10;-1:-1:-1;;;;;47804:34:0;;:101;;;-1:-1:-1;47872:18:0;;47855:50;;11981:10;43127:164;:::i;47855:50::-;47804:154;;;-1:-1:-1;11981:10:0;47922:20;47934:7;47922:11;:20::i;:::-;-1:-1:-1;;;;;47922:36:0;;47804:154;47778:181;;47977:17;47972:66;;48003:35;;-1:-1:-1;;;48003:35:0;;;;;;;;;;;47972:66;48075:4;-1:-1:-1;;;;;48053:26:0;:13;:18;;;-1:-1:-1;;;;;48053:26:0;;48049:67;;48088:28;;-1:-1:-1;;;48088:28:0;;;;;;;;;;;48049:67;-1:-1:-1;;;;;48131:16:0;;48127:52;;48156:23;;-1:-1:-1;;;48156:23:0;;;;;;;;;;;48127:52;48300:49;48317:1;48321:7;48330:13;:18;;;48300:8;:49::i;:::-;-1:-1:-1;;;;;48645:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48645:31:0;;;-1:-1:-1;;;;;48645:31:0;;;-1:-1:-1;;48645:31:0;;;;;;;48691:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48691:29:0;;;;;;;;;;;48737:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;48782:61:0;;;;-1:-1:-1;;;48827:15:0;48782:61;;;;;;;;;;;49117:11;;;49147:24;;;;;:29;49117:11;;49147:29;49143:445;;49372:13;;49358:11;:27;49354:219;;;49442:18;;;49410:24;;;:11;:24;;;;;;;;:50;;49525:28;;;;-1:-1:-1;;;;;49483:70:0;-1:-1:-1;;;49483:70:0;-1:-1:-1;;;;;;49483:70:0;;;-1:-1:-1;;;;;49410:50:0;;;49483:70;;;;;;;49354:219;48620:979;49635:7;49631:2;-1:-1:-1;;;;;49616:27:0;49625:4;-1:-1:-1;;;;;49616:27:0;;;;;;;;;;;49654:42;47696:2008;;47592:2112;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;39637:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39747:7:0;39830:13;;39823:4;:20;39792:886;;;39864:31;39898:17;;;:11;:17;;;;;;;;;39864:51;;;;;;;;;-1:-1:-1;;;;;39864:51:0;;;;-1:-1:-1;;;39864:51:0;;-1:-1:-1;;;;;39864:51:0;;;;;;;;-1:-1:-1;;;39864:51:0;;;;;;;;;;;;;;39934:729;;39984:14;;-1:-1:-1;;;;;39984:28:0;;39980:101;;40048:9;39637:1108;-1:-1:-1;;;39637:1108:0:o;39980:101::-;-1:-1:-1;;;40423:6:0;40468:17;;;;:11;:17;;;;;;;;;40456:29;;;;;;;;;-1:-1:-1;;;;;40456:29:0;;;;;-1:-1:-1;;;40456:29:0;;-1:-1:-1;;;;;40456:29:0;;;;;;;;-1:-1:-1;;;40456:29:0;;;;;;;;;;;;;40516:28;40512:109;;40584:9;39637:1108;-1:-1:-1;;;39637:1108:0:o;40512:109::-;40383:261;;;39845:833;39792:886;40706:31;;-1:-1:-1;;;40706:31:0;;;;;;;;;;;14617:191;14710:6;;;-1:-1:-1;;;;;14727:17:0;;;-1:-1:-1;;;;;;14727:17:0;;;;;;;14760:40;;14710:6;;;14727:17;14710:6;;14760:40;;14691:16;;14760:40;14680:128;14617:191;:::o;52778:667::-;52962:72;;-1:-1:-1;;;52962:72:0;;52941:4;;-1:-1:-1;;;;;52962:36:0;;;;;:72;;11981:10;;53013:4;;53019:7;;53028:5;;52962:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52962:72:0;;;;;;;;-1:-1:-1;;52962:72:0;;;;;;;;;;;;:::i;:::-;;;52958:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53196:13:0;;53192:235;;53242:40;;-1:-1:-1;;;53242:40:0;;;;;;;;;;;53192:235;53385:6;53379:13;53370:6;53366:2;53362:15;53355:38;52958:480;-1:-1:-1;;;;;;53081:55:0;-1:-1:-1;;;53081:55:0;;-1:-1:-1;52958:480:0;52778:667;;;;;;:::o;61854:100::-;61906:13;61939:7;61932:14;;;;;:::i;9155:723::-;9211:13;9432:10;9428:53;;-1:-1:-1;;9459:10:0;;;;;;;;;;;;-1:-1:-1;;;9459:10:0;;;;;9155:723::o;9428:53::-;9506:5;9491:12;9547:78;9554:9;;9547:78;;9580:8;;;;:::i;:::-;;-1:-1:-1;9603:10:0;;-1:-1:-1;9611:2:0;9603:10;;:::i;:::-;;;9547:78;;;9635:19;9667:6;-1:-1:-1;;;;;9657:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9657:17:0;;9635:39;;9685:154;9692:10;;9685:154;;9719:11;9729:1;9719:11;;:::i;:::-;;-1:-1:-1;9788:10:0;9796:2;9788:5;:10;:::i;:::-;9775:24;;:2;:24;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9745:56:0;;;;;;;;-1:-1:-1;9816:11:0;9825:2;9816:11;;:::i;:::-;;;9685:154;;45141:163;45264:32;45270:2;45274:8;45284:5;45291:4;45264:5;:32::i;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;45563:1775::-;45702:20;45725:13;-1:-1:-1;;;;;45753:16:0;;45749:48;;45778:19;;-1:-1:-1;;;45778:19:0;;;;;;;;;;;45749:48;45812:13;45808:44;;45834:18;;-1:-1:-1;;;45834:18:0;;;;;;;;;;;45808:44;-1:-1:-1;;;;;46203:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;46262:49:0;;-1:-1:-1;;;;;46203:44:0;;;;;;;46262:49;;;;-1:-1:-1;;46203:44:0;;;;;;46262:49;;;;;;;;;;;;;;;;46328:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46378:66:0;;;;-1:-1:-1;;;46428:15:0;46378:66;;;;;;;;;;46328:25;46525:23;;;46569:4;:23;;;;-1:-1:-1;;;;;;46577:13:0;;16343:19;:23;;46577:15;46565:641;;;46613:314;46644:38;;46669:12;;-1:-1:-1;;;;;46644:38:0;;;46661:1;;46644:38;;46661:1;;46644:38;46710:69;46749:1;46753:2;46757:14;;;;;;46773:5;46710:30;:69::i;:::-;46705:174;;46815:40;;-1:-1:-1;;;46815:40:0;;;;;;;;;;;46705:174;46922:3;46906:12;:19;;46613:314;;47008:12;46991:13;;:29;46987:43;;47022:8;;;46987:43;46565:641;;;47071:120;47102:40;;47127:14;;;;;-1:-1:-1;;;;;47102:40:0;;;47119:1;;47102:40;;47119:1;;47102:40;47186:3;47170:12;:19;;47071:120;;46565:641;-1:-1:-1;47220:13:0;:28;47270:60;56664:442;8293:149;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8391:20;8450:268;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:416::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;-1:-1:-1;;;;;3709:6:1;3706:30;3703:50;;;3749:1;3746;3739:12;3703:50;3772:61;3825:7;3816:6;3805:9;3801:22;3772:61;:::i;:::-;3762:71;3880:2;3865:18;;;;3852:32;;-1:-1:-1;;;;3474:416:1:o;3895:180::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:52;;;4020:1;4017;4010:12;3972:52;4043:26;4059:9;4043:26;:::i;4080:180::-;4139:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:52;;;4208:1;4205;4198:12;4160:52;-1:-1:-1;4231:23:1;;4080:180;-1:-1:-1;4080:180:1:o;4265:245::-;4323:6;4376:2;4364:9;4355:7;4351:23;4347:32;4344:52;;;4392:1;4389;4382:12;4344:52;4431:9;4418:23;4450:30;4474:5;4450:30;:::i;4515:249::-;4584:6;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4685:9;4679:16;4704:30;4728:5;4704:30;:::i;4769:450::-;4838:6;4891:2;4879:9;4870:7;4866:23;4862:32;4859:52;;;4907:1;4904;4897:12;4859:52;4947:9;4934:23;-1:-1:-1;;;;;4972:6:1;4969:30;4966:50;;;5012:1;5009;5002:12;4966:50;5035:22;;5088:4;5080:13;;5076:27;-1:-1:-1;5066:55:1;;5117:1;5114;5107:12;5066:55;5140:73;5205:7;5200:2;5187:16;5182:2;5178;5174:11;5140:73;:::i;5409:416::-;5502:6;5510;5563:2;5551:9;5542:7;5538:23;5534:32;5531:52;;;5579:1;5576;5569:12;5531:52;5615:9;5602:23;5592:33;;5676:2;5665:9;5661:18;5648:32;-1:-1:-1;;;;;5695:6:1;5692:30;5689:50;;;5735:1;5732;5725:12;5689:50;5758:61;5811:7;5802:6;5791:9;5787:22;5758:61;:::i;:::-;5748:71;;;5409:416;;;;;:::o;5830:257::-;5871:3;5909:5;5903:12;5936:6;5931:3;5924:19;5952:63;6008:6;6001:4;5996:3;5992:14;5985:4;5978:5;5974:16;5952:63;:::i;:::-;6069:2;6048:15;-1:-1:-1;;6044:29:1;6035:39;;;;6076:4;6031:50;;5830:257;-1:-1:-1;;5830:257:1:o;6326:637::-;6606:3;6644:6;6638:13;6660:53;6706:6;6701:3;6694:4;6686:6;6682:17;6660:53;:::i;:::-;6776:13;;6735:16;;;;6798:57;6776:13;6735:16;6832:4;6820:17;;6798:57;:::i;:::-;-1:-1:-1;;;6877:20:1;;6906:22;;;6955:1;6944:13;;6326:637;-1:-1:-1;;;;6326:637:1:o;7176:488::-;-1:-1:-1;;;;;7445:15:1;;;7427:34;;7497:15;;7492:2;7477:18;;7470:43;7544:2;7529:18;;7522:34;;;7592:3;7587:2;7572:18;;7565:31;;;7370:4;;7613:45;;7638:19;;7630:6;7613:45;:::i;:::-;7605:53;7176:488;-1:-1:-1;;;;;;7176:488:1:o;8043:219::-;8192:2;8181:9;8174:21;8155:4;8212:44;8252:2;8241:9;8237:18;8229:6;8212:44;:::i;9807:351::-;10009:2;9991:21;;;10048:2;10028:18;;;10021:30;10087:29;10082:2;10067:18;;10060:57;10149:2;10134:18;;9807:351::o;11359:347::-;11561:2;11543:21;;;11600:2;11580:18;;;11573:30;11639:25;11634:2;11619:18;;11612:53;11697:2;11682:18;;11359:347::o;13247:348::-;13449:2;13431:21;;;13488:2;13468:18;;;13461:30;13527:26;13522:2;13507:18;;13500:54;13586:2;13571:18;;13247:348::o;13782:275::-;13853:2;13847:9;13918:2;13899:13;;-1:-1:-1;;13895:27:1;13883:40;;-1:-1:-1;;;;;13938:34:1;;13974:22;;;13935:62;13932:88;;;14000:18;;:::i;:::-;14036:2;14029:22;13782:275;;-1:-1:-1;13782:275:1:o;14062:128::-;14102:3;14133:1;14129:6;14126:1;14123:13;14120:39;;;14139:18;;:::i;:::-;-1:-1:-1;14175:9:1;;14062:128::o;14195:120::-;14235:1;14261;14251:35;;14266:18;;:::i;:::-;-1:-1:-1;14300:9:1;;14195:120::o;14320:168::-;14360:7;14426:1;14422;14418:6;14414:14;14411:1;14408:21;14403:1;14396:9;14389:17;14385:45;14382:71;;;14433:18;;:::i;:::-;-1:-1:-1;14473:9:1;;14320:168::o;14493:125::-;14533:4;14561:1;14558;14555:8;14552:34;;;14566:18;;:::i;:::-;-1:-1:-1;14603:9:1;;14493:125::o;14623:258::-;14695:1;14705:113;14719:6;14716:1;14713:13;14705:113;;;14795:11;;;14789:18;14776:11;;;14769:39;14741:2;14734:10;14705:113;;;14836:6;14833:1;14830:13;14827:48;;;-1:-1:-1;;14871:1:1;14853:16;;14846:27;14623:258::o;14886:380::-;14965:1;14961:12;;;;15008;;;15029:61;;15083:4;15075:6;15071:17;15061:27;;15029:61;15136:2;15128:6;15125:14;15105:18;15102:38;15099:161;;;15182:10;15177:3;15173:20;15170:1;15163:31;15217:4;15214:1;15207:15;15245:4;15242:1;15235:15;15099:161;;14886:380;;;:::o;15271:135::-;15310:3;-1:-1:-1;;15331:17:1;;15328:43;;;15351:18;;:::i;:::-;-1:-1:-1;15398:1:1;15387:13;;15271:135::o;15411:112::-;15443:1;15469;15459:35;;15474:18;;:::i;:::-;-1:-1:-1;15508:9:1;;15411:112::o;15528:127::-;15589:10;15584:3;15580:20;15577:1;15570:31;15620:4;15617:1;15610:15;15644:4;15641:1;15634:15;15660:127;15721:10;15716:3;15712:20;15709:1;15702:31;15752:4;15749:1;15742:15;15776:4;15773:1;15766:15;15792:127;15853:10;15848:3;15844:20;15841:1;15834:31;15884:4;15881:1;15874:15;15908:4;15905:1;15898:15;15924:127;15985:10;15980:3;15976:20;15973:1;15966:31;16016:4;16013:1;16006:15;16040:4;16037:1;16030:15;16056:131;-1:-1:-1;;;;;;16130:32:1;;16120:43;;16110:71;;16177:1;16174;16167:12
Swarm Source
ipfs://320130c5d1abd0c49c3adfcd9119c122d3fdf4b82c1342a0c7417830c4024241
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.