ERC-721
Play-to-Earn
Overview
Max Total Supply
2,600 SOUL
Holders
762
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SOULLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SoulSplicers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-13 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/SoulSplicers.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.4; error ExceedingMaxMintAmountPerTx(); error ExceedingMaxSupply(); error ContractPaused(); error WhitelistMintNotActive(); error InsufficientFunds(); error ExceedingWhitelistMintAmount(); error InvalidMerkleProof(); error WithdrawalFailed(); error PublicMintNotActive(); contract SoulSplicers is ERC721A, Ownable { using Strings for uint256; bytes32 public merkleRootInternal = 0x95f3250742edff790f3d0aeb3930422b1b94cc92920540669f8fc76c2a3a95d8; bytes32 public merkleRootCommunity = 0x95f3250742edff790f3d0aeb3930422b1b94cc92920540669f8fc76c2a3a95d8; string public URI; uint256 public cost = 0.08 ether; uint256 public maxSupply = 9950; uint256 public maxMintAmountPerTx = 5; bool public whitelistMintingActive = false; bool public publicMintingActive = false; constructor() ERC721A("SoulSplicers", "SOUL") {} // internal function _baseURI() internal view virtual override returns (string memory) { return URI; } modifier mintRequirements(uint256 _mintAmount) { if (_mintAmount > maxMintAmountPerTx) revert ExceedingMaxMintAmountPerTx(); if (totalSupply() + _mintAmount > maxSupply) revert ExceedingMaxSupply(); if (msg.value < cost * _mintAmount) revert InsufficientFunds(); _; } // public function mint(uint256 _mintAmount) public payable mintRequirements(_mintAmount) { if (!publicMintingActive) revert PublicMintNotActive(); _safeMint(msg.sender, _mintAmount); } function whitelistMint(uint _mintAmount, bytes32[] calldata _merkleProof, bool _internal) public payable mintRequirements(_mintAmount) { if (!whitelistMintingActive) revert WhitelistMintNotActive(); uint256 remainingMints = getRemainingWhitelistMints(msg.sender, _merkleProof, _internal); if (_mintAmount > remainingMints) revert ExceedingWhitelistMintAmount(); _safeMint(msg.sender, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256 currentTokenId = 0; uint256 ownedTokenIndex = 0; uint256[] memory tokenIds = new uint256[](ownerTokenCount); while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { if (ownerOf(currentTokenId) == _owner) { tokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return tokenIds; } function getRemainingWhitelistMints(address _user, bytes32[] calldata _merkleProof, bool _internal) public view returns (uint256) { bytes32 leaf = keccak256(abi.encodePacked(_user)); uint256 maxWhitelistMints = 0; if (_internal) { if (MerkleProof.verify(_merkleProof, merkleRootInternal, leaf)){ maxWhitelistMints = 3; } } else { if (MerkleProof.verify(_merkleProof, merkleRootCommunity, leaf)) { maxWhitelistMints = 1; } } if (maxWhitelistMints == 0) revert InvalidMerkleProof(); return maxWhitelistMints - _numberMinted(_user); } //only owner function OwnerMint(uint256 _mintAmount) public onlyOwner { if (totalSupply() + _mintAmount > maxSupply) revert ExceedingMaxSupply(); _safeMint(msg.sender, _mintAmount); } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setNewSupply(uint256 _newSupply) public onlyOwner { maxSupply = _newSupply; } function setMerkleRootInternal(bytes32 _newRoot) public onlyOwner { merkleRootInternal = _newRoot; } function setMerkleRootCommunity(bytes32 _newRoot) public onlyOwner { merkleRootCommunity = _newRoot; } function setBaseURI(string memory _newBaseURI) public onlyOwner { URI = _newBaseURI; } function setPublicMinting(bool _state) public onlyOwner { publicMintingActive = _state; } function setWhitelistMintingState(bool _state) public onlyOwner { whitelistMintingActive = _state; } function withdraw() public payable onlyOwner { (bool withdrawComplete, ) = msg.sender.call{value: address(this).balance}(""); if (!withdrawComplete) revert WithdrawalFailed(); } }
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":"ExceedingMaxMintAmountPerTx","type":"error"},{"inputs":[],"name":"ExceedingMaxSupply","type":"error"},{"inputs":[],"name":"ExceedingWhitelistMintAmount","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"PublicMintNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WhitelistMintNotActive","type":"error"},{"inputs":[],"name":"WithdrawalFailed","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"URI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bool","name":"_internal","type":"bool"}],"name":"getRemainingWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootCommunity","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootInternal","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setMerkleRootCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setMerkleRootInternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setNewSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintingState","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bool","name":"_internal","type":"bool"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040527f95f3250742edff790f3d0aeb3930422b1b94cc92920540669f8fc76c2a3a95d86009819055600a5567011c37937e080000600c556126de600d556005600e55600f805461ffff191690553480156200005c57600080fd5b50604080518082018252600c81526b536f756c53706c696365727360a01b60208083019182528351808501909452600484526314d3d55360e21b908401528151919291620000ad916002916200012d565b508051620000c39060039060208401906200012d565b50506000805550620000d533620000db565b62000210565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013b90620001d3565b90600052602060002090601f0160209004810192826200015f5760008555620001aa565b82601f106200017a57805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001aa5782518255916020019190600101906200018d565b50620001b8929150620001bc565b5090565b5b80821115620001b85760008155600101620001bd565b600181811c90821680620001e857607f821691505b602082108114156200020a57634e487b7160e01b600052602260045260246000fd5b50919050565b61217380620002206000396000f3fe6080604052600436106102255760003560e01c806355f804b31161012357806394354fd0116100ab578063c87b56dd1161006f578063c87b56dd1461060b578063cf94048b1461062b578063d5abeb011461064b578063e985e9c514610661578063f2fde38b146106aa57600080fd5b806394354fd01461058d57806395d89b41146105a3578063a0712d68146105b8578063a22cb465146105cb578063b88d4fde146105eb57600080fd5b8063715018a6116100f2578063715018a614610505578063775915b71461051a5780638413cba01461053a5780638da5cb5b1461055957806391620c621461057757600080fd5b806355f804b31461049257806360e8c102146104b25780636352211e146104c557806370a08231146104e557600080fd5b806318160ddd116101b15780633ccfd60b116101755780633ccfd60b146103fd57806342842e0e14610405578063438b63001461042557806344a0d68a146104525780635504c62e1461047257600080fd5b806318160ddd1461037457806323b872dd1461038d578063254a4737146103ad5780632a140256146103cd57806335d49dc3146103e357600080fd5b8063095ea7b3116101f8578063095ea7b3146102db5780630ee278a3146102fb5780631141d7de1461031b57806313faede6146103305780631618c8df1461035457600080fd5b806301ffc9a71461022a578063027f979a1461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611dfe565b6106ca565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611de5565b61071c565b005b34801561028d57600080fd5b50610296610754565b6040516102569190611f8f565b3480156102af57600080fd5b506102c36102be366004611de5565b6107e6565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f6366004611da0565b61082a565b34801561030757600080fd5b5061027f610316366004611de5565b6108b8565b34801561032757600080fd5b506102966108e7565b34801561033c57600080fd5b50610346600c5481565b604051908152602001610256565b34801561036057600080fd5b5061027f61036f366004611de5565b610975565b34801561038057600080fd5b5060015460005403610346565b34801561039957600080fd5b5061027f6103a8366004611c5b565b6109e6565b3480156103b957600080fd5b5061027f6103c8366004611dca565b6109f1565b3480156103d957600080fd5b50610346600a5481565b3480156103ef57600080fd5b50600f5461024a9060ff1681565b61027f610a35565b34801561041157600080fd5b5061027f610420366004611c5b565b610ac8565b34801561043157600080fd5b50610445610440366004611c0d565b610ae3565b6040516102569190611f4b565b34801561045e57600080fd5b5061027f61046d366004611de5565b610bbb565b34801561047e57600080fd5b5061027f61048d366004611dca565b610bea565b34801561049e57600080fd5b5061027f6104ad366004611e38565b610c27565b61027f6104c0366004611e80565b610c68565b3480156104d157600080fd5b506102c36104e0366004611de5565b610d5a565b3480156104f157600080fd5b50610346610500366004611c0d565b610d6c565b34801561051157600080fd5b5061027f610dba565b34801561052657600080fd5b50610346610535366004611d12565b610df0565b34801561054657600080fd5b50600f5461024a90610100900460ff1681565b34801561056557600080fd5b506008546001600160a01b03166102c3565b34801561058357600080fd5b5061034660095481565b34801561059957600080fd5b50610346600e5481565b3480156105af57600080fd5b50610296610f2b565b61027f6105c6366004611de5565b610f3a565b3480156105d757600080fd5b5061027f6105e6366004611d76565b610ff8565b3480156105f757600080fd5b5061027f610606366004611c97565b61108e565b34801561061757600080fd5b50610296610626366004611de5565b6110df565b34801561063757600080fd5b5061027f610646366004611de5565b611164565b34801561065757600080fd5b50610346600d5481565b34801561066d57600080fd5b5061024a61067c366004611c28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b657600080fd5b5061027f6106c5366004611c0d565b611193565b60006001600160e01b031982166380ac58cd60e01b14806106fb57506001600160e01b03198216635b5e139f60e01b145b8061071657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461074f5760405162461bcd60e51b815260040161074690611fa2565b60405180910390fd5b600d55565b60606002805461076390612065565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90612065565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b60006107f18261122b565b61080e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083582610d5a565b9050806001600160a01b0316836001600160a01b0316141561086a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088a5750610888813361067c565b155b156108a8576040516367d9dca160e11b815260040160405180910390fd5b6108b3838383611256565b505050565b6008546001600160a01b031633146108e25760405162461bcd60e51b815260040161074690611fa2565b600955565b600b80546108f490612065565b80601f016020809104026020016040519081016040528092919081815260200182805461092090612065565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b505050505081565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260040161074690611fa2565b600d54816109b06001546000540390565b6109ba9190611fd7565b11156109d957604051634c0116c960e11b815260040160405180910390fd5b6109e333826112b2565b50565b6108b38383836112cc565b6008546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161074690611fa2565b600f80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610a5f5760405162461bcd60e51b815260040161074690611fa2565b604051600090339047908381818185875af1925050503d8060008114610aa1576040519150601f19603f3d011682016040523d82523d6000602084013e610aa6565b606091505b50509050806109e3576040516327fcd9d160e01b815260040160405180910390fd5b6108b38383836040518060200160405280600081525061108e565b60606000610af083610d6c565b90506000806000836001600160401b03811115610b0f57610b0f612111565b604051908082528060200260200182016040528015610b38578160200160208202803683370190505b5090505b8382108015610b4d5750600d548311155b15610bb257856001600160a01b0316610b6584610d5a565b6001600160a01b03161415610ba05782818381518110610b8757610b876120fb565b602090810291909101015281610b9c816120a0565b9250505b82610baa816120a0565b935050610b3c565b95945050505050565b6008546001600160a01b03163314610be55760405162461bcd60e51b815260040161074690611fa2565b600c55565b6008546001600160a01b03163314610c145760405162461bcd60e51b815260040161074690611fa2565b600f805460ff1916911515919091179055565b6008546001600160a01b03163314610c515760405162461bcd60e51b815260040161074690611fa2565b8051610c6490600b906020840190611a88565b5050565b83600e54811115610c8c5760405163f05d24df60e01b815260040160405180910390fd5b600d5481610c9d6001546000540390565b610ca79190611fd7565b1115610cc657604051634c0116c960e11b815260040160405180910390fd5b80600c54610cd49190612003565b341015610cf45760405163356680b760e01b815260040160405180910390fd5b600f5460ff16610d175760405163b980d98b60e01b815260040160405180910390fd5b6000610d2533868686610df0565b905080861115610d4857604051631807f8d960e11b815260040160405180910390fd5b610d5233876112b2565b505050505050565b6000610d65826114ba565b5192915050565b60006001600160a01b038216610d95576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610de45760405162461bcd60e51b815260040161074690611fa2565b610dee60006115d4565b565b6040516bffffffffffffffffffffffff19606086901b166020820152600090819060340160405160208183030381529060405280519060200120905060008315610e8357610e75868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150859050611626565b15610e7e575060035b610ecd565b610ec486868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150859050611626565b15610ecd575060015b80610eeb5760405163582f497d60e11b815260040160405180910390fd5b6001600160a01b038716600090815260056020526040902054600160401b90046001600160401b0316610f1e9082612022565b925050505b949350505050565b60606003805461076390612065565b80600e54811115610f5e5760405163f05d24df60e01b815260040160405180910390fd5b600d5481610f6f6001546000540390565b610f799190611fd7565b1115610f9857604051634c0116c960e11b815260040160405180910390fd5b80600c54610fa69190612003565b341015610fc65760405163356680b760e01b815260040160405180910390fd5b600f54610100900460ff16610fee5760405163cd967e3560e01b815260040160405180910390fd5b610c6433836112b2565b6001600160a01b0382163314156110225760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110998484846112cc565b6001600160a01b0383163b151580156110bb57506110b98484848461163c565b155b156110d9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110ea8261122b565b61110757604051630a14c4b560e41b815260040160405180910390fd5b6000611111611730565b9050805160001415611132576040518060200160405280600081525061115d565b8061113c8461173f565b60405160200161114d929190611edf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461118e5760405162461bcd60e51b815260040161074690611fa2565b600a55565b6008546001600160a01b031633146111bd5760405162461bcd60e51b815260040161074690611fa2565b6001600160a01b0381166112225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610746565b6109e3816115d4565b6000805482108015610716575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c6482826040518060200160405280600081525061183c565b60006112d7826114ba565b9050836001600160a01b031681600001516001600160a01b03161461130e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061132c575061132c853361067c565b8061134757503361133c846107e6565b6001600160a01b0316145b90508061136757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661138e57604051633a954ecd60e21b815260040160405180910390fd5b61139a60008487611256565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661146e57600054821461146e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115bb57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115b95780516001600160a01b031615611550579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156115b4579392505050565b611550565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826116338584611849565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611671903390899088908890600401611f0e565b602060405180830381600087803b15801561168b57600080fd5b505af19250505080156116bb575060408051601f3d908101601f191682019092526116b891810190611e1b565b60015b611716573d8080156116e9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ee565b606091505b50805161170e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f23565b6060600b805461076390612065565b6060816117635750506040805180820190915260018152600360fc1b602082015290565b8160005b811561178d5780611777816120a0565b91506117869050600a83611fef565b9150611767565b6000816001600160401b038111156117a7576117a7612111565b6040519080825280601f01601f1916602001820160405280156117d1576020820181803683370190505b5090505b8415610f23576117e6600183612022565b91506117f3600a866120bb565b6117fe906030611fd7565b60f81b818381518110611813576118136120fb565b60200101906001600160f81b031916908160001a905350611835600a86611fef565b94506117d5565b6108b383838360016118bd565b600081815b84518110156118b557600085828151811061186b5761186b6120fb565b6020026020010151905080831161189157600083815260208290526040902092506118a2565b600081815260208490526040902092505b50806118ad816120a0565b91505061184e565b509392505050565b6000546001600160a01b0385166118e657604051622e076360e81b815260040160405180910390fd5b836119045760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119b057506001600160a01b0387163b15155b15611a39575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a01600088848060010195508861163c565b611a1e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119b6578260005414611a3457600080fd5b611a7f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611a3a575b506000556114b3565b828054611a9490612065565b90600052602060002090601f016020900481019282611ab65760008555611afc565b82601f10611acf57805160ff1916838001178555611afc565b82800160010185558215611afc579182015b82811115611afc578251825591602001919060010190611ae1565b50611b08929150611b0c565b5090565b5b80821115611b085760008155600101611b0d565b60006001600160401b0380841115611b3b57611b3b612111565b604051601f8501601f19908116603f01168101908282118183101715611b6357611b63612111565b81604052809350858152868686011115611b7c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bad57600080fd5b919050565b60008083601f840112611bc457600080fd5b5081356001600160401b03811115611bdb57600080fd5b6020830191508360208260051b8501011115611bf657600080fd5b9250929050565b80358015158114611bad57600080fd5b600060208284031215611c1f57600080fd5b61115d82611b96565b60008060408385031215611c3b57600080fd5b611c4483611b96565b9150611c5260208401611b96565b90509250929050565b600080600060608486031215611c7057600080fd5b611c7984611b96565b9250611c8760208501611b96565b9150604084013590509250925092565b60008060008060808587031215611cad57600080fd5b611cb685611b96565b9350611cc460208601611b96565b92506040850135915060608501356001600160401b03811115611ce657600080fd5b8501601f81018713611cf757600080fd5b611d0687823560208401611b21565b91505092959194509250565b60008060008060608587031215611d2857600080fd5b611d3185611b96565b935060208501356001600160401b03811115611d4c57600080fd5b611d5887828801611bb2565b9094509250611d6b905060408601611bfd565b905092959194509250565b60008060408385031215611d8957600080fd5b611d9283611b96565b9150611c5260208401611bfd565b60008060408385031215611db357600080fd5b611dbc83611b96565b946020939093013593505050565b600060208284031215611ddc57600080fd5b61115d82611bfd565b600060208284031215611df757600080fd5b5035919050565b600060208284031215611e1057600080fd5b813561115d81612127565b600060208284031215611e2d57600080fd5b815161115d81612127565b600060208284031215611e4a57600080fd5b81356001600160401b03811115611e6057600080fd5b8201601f81018413611e7157600080fd5b610f2384823560208401611b21565b60008060008060608587031215611e9657600080fd5b8435935060208501356001600160401b03811115611d4c57600080fd5b60008151808452611ecb816020860160208601612039565b601f01601f19169290920160200192915050565b60008351611ef1818460208801612039565b835190830190611f05818360208801612039565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f4190830184611eb3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f8357835183529284019291840191600101611f67565b50909695505050505050565b60208152600061115d6020830184611eb3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fea57611fea6120cf565b500190565b600082611ffe57611ffe6120e5565b500490565b600081600019048311821515161561201d5761201d6120cf565b500290565b600082821015612034576120346120cf565b500390565b60005b8381101561205457818101518382015260200161203c565b838111156110d95750506000910152565b600181811c9082168061207957607f821691505b6020821081141561209a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120b4576120b46120cf565b5060010190565b6000826120ca576120ca6120e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e357600080fdfea264697066735822122033c8b1b1e0e7df06d5fe09eb5ab1c69c3c6e72d3c9c9f840d8a3a90b3f4c0d7564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102255760003560e01c806355f804b31161012357806394354fd0116100ab578063c87b56dd1161006f578063c87b56dd1461060b578063cf94048b1461062b578063d5abeb011461064b578063e985e9c514610661578063f2fde38b146106aa57600080fd5b806394354fd01461058d57806395d89b41146105a3578063a0712d68146105b8578063a22cb465146105cb578063b88d4fde146105eb57600080fd5b8063715018a6116100f2578063715018a614610505578063775915b71461051a5780638413cba01461053a5780638da5cb5b1461055957806391620c621461057757600080fd5b806355f804b31461049257806360e8c102146104b25780636352211e146104c557806370a08231146104e557600080fd5b806318160ddd116101b15780633ccfd60b116101755780633ccfd60b146103fd57806342842e0e14610405578063438b63001461042557806344a0d68a146104525780635504c62e1461047257600080fd5b806318160ddd1461037457806323b872dd1461038d578063254a4737146103ad5780632a140256146103cd57806335d49dc3146103e357600080fd5b8063095ea7b3116101f8578063095ea7b3146102db5780630ee278a3146102fb5780631141d7de1461031b57806313faede6146103305780631618c8df1461035457600080fd5b806301ffc9a71461022a578063027f979a1461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611dfe565b6106ca565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611de5565b61071c565b005b34801561028d57600080fd5b50610296610754565b6040516102569190611f8f565b3480156102af57600080fd5b506102c36102be366004611de5565b6107e6565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f6366004611da0565b61082a565b34801561030757600080fd5b5061027f610316366004611de5565b6108b8565b34801561032757600080fd5b506102966108e7565b34801561033c57600080fd5b50610346600c5481565b604051908152602001610256565b34801561036057600080fd5b5061027f61036f366004611de5565b610975565b34801561038057600080fd5b5060015460005403610346565b34801561039957600080fd5b5061027f6103a8366004611c5b565b6109e6565b3480156103b957600080fd5b5061027f6103c8366004611dca565b6109f1565b3480156103d957600080fd5b50610346600a5481565b3480156103ef57600080fd5b50600f5461024a9060ff1681565b61027f610a35565b34801561041157600080fd5b5061027f610420366004611c5b565b610ac8565b34801561043157600080fd5b50610445610440366004611c0d565b610ae3565b6040516102569190611f4b565b34801561045e57600080fd5b5061027f61046d366004611de5565b610bbb565b34801561047e57600080fd5b5061027f61048d366004611dca565b610bea565b34801561049e57600080fd5b5061027f6104ad366004611e38565b610c27565b61027f6104c0366004611e80565b610c68565b3480156104d157600080fd5b506102c36104e0366004611de5565b610d5a565b3480156104f157600080fd5b50610346610500366004611c0d565b610d6c565b34801561051157600080fd5b5061027f610dba565b34801561052657600080fd5b50610346610535366004611d12565b610df0565b34801561054657600080fd5b50600f5461024a90610100900460ff1681565b34801561056557600080fd5b506008546001600160a01b03166102c3565b34801561058357600080fd5b5061034660095481565b34801561059957600080fd5b50610346600e5481565b3480156105af57600080fd5b50610296610f2b565b61027f6105c6366004611de5565b610f3a565b3480156105d757600080fd5b5061027f6105e6366004611d76565b610ff8565b3480156105f757600080fd5b5061027f610606366004611c97565b61108e565b34801561061757600080fd5b50610296610626366004611de5565b6110df565b34801561063757600080fd5b5061027f610646366004611de5565b611164565b34801561065757600080fd5b50610346600d5481565b34801561066d57600080fd5b5061024a61067c366004611c28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b657600080fd5b5061027f6106c5366004611c0d565b611193565b60006001600160e01b031982166380ac58cd60e01b14806106fb57506001600160e01b03198216635b5e139f60e01b145b8061071657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461074f5760405162461bcd60e51b815260040161074690611fa2565b60405180910390fd5b600d55565b60606002805461076390612065565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90612065565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b60006107f18261122b565b61080e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083582610d5a565b9050806001600160a01b0316836001600160a01b0316141561086a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088a5750610888813361067c565b155b156108a8576040516367d9dca160e11b815260040160405180910390fd5b6108b3838383611256565b505050565b6008546001600160a01b031633146108e25760405162461bcd60e51b815260040161074690611fa2565b600955565b600b80546108f490612065565b80601f016020809104026020016040519081016040528092919081815260200182805461092090612065565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b505050505081565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260040161074690611fa2565b600d54816109b06001546000540390565b6109ba9190611fd7565b11156109d957604051634c0116c960e11b815260040160405180910390fd5b6109e333826112b2565b50565b6108b38383836112cc565b6008546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161074690611fa2565b600f80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610a5f5760405162461bcd60e51b815260040161074690611fa2565b604051600090339047908381818185875af1925050503d8060008114610aa1576040519150601f19603f3d011682016040523d82523d6000602084013e610aa6565b606091505b50509050806109e3576040516327fcd9d160e01b815260040160405180910390fd5b6108b38383836040518060200160405280600081525061108e565b60606000610af083610d6c565b90506000806000836001600160401b03811115610b0f57610b0f612111565b604051908082528060200260200182016040528015610b38578160200160208202803683370190505b5090505b8382108015610b4d5750600d548311155b15610bb257856001600160a01b0316610b6584610d5a565b6001600160a01b03161415610ba05782818381518110610b8757610b876120fb565b602090810291909101015281610b9c816120a0565b9250505b82610baa816120a0565b935050610b3c565b95945050505050565b6008546001600160a01b03163314610be55760405162461bcd60e51b815260040161074690611fa2565b600c55565b6008546001600160a01b03163314610c145760405162461bcd60e51b815260040161074690611fa2565b600f805460ff1916911515919091179055565b6008546001600160a01b03163314610c515760405162461bcd60e51b815260040161074690611fa2565b8051610c6490600b906020840190611a88565b5050565b83600e54811115610c8c5760405163f05d24df60e01b815260040160405180910390fd5b600d5481610c9d6001546000540390565b610ca79190611fd7565b1115610cc657604051634c0116c960e11b815260040160405180910390fd5b80600c54610cd49190612003565b341015610cf45760405163356680b760e01b815260040160405180910390fd5b600f5460ff16610d175760405163b980d98b60e01b815260040160405180910390fd5b6000610d2533868686610df0565b905080861115610d4857604051631807f8d960e11b815260040160405180910390fd5b610d5233876112b2565b505050505050565b6000610d65826114ba565b5192915050565b60006001600160a01b038216610d95576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610de45760405162461bcd60e51b815260040161074690611fa2565b610dee60006115d4565b565b6040516bffffffffffffffffffffffff19606086901b166020820152600090819060340160405160208183030381529060405280519060200120905060008315610e8357610e75868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150859050611626565b15610e7e575060035b610ecd565b610ec486868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150859050611626565b15610ecd575060015b80610eeb5760405163582f497d60e11b815260040160405180910390fd5b6001600160a01b038716600090815260056020526040902054600160401b90046001600160401b0316610f1e9082612022565b925050505b949350505050565b60606003805461076390612065565b80600e54811115610f5e5760405163f05d24df60e01b815260040160405180910390fd5b600d5481610f6f6001546000540390565b610f799190611fd7565b1115610f9857604051634c0116c960e11b815260040160405180910390fd5b80600c54610fa69190612003565b341015610fc65760405163356680b760e01b815260040160405180910390fd5b600f54610100900460ff16610fee5760405163cd967e3560e01b815260040160405180910390fd5b610c6433836112b2565b6001600160a01b0382163314156110225760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110998484846112cc565b6001600160a01b0383163b151580156110bb57506110b98484848461163c565b155b156110d9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110ea8261122b565b61110757604051630a14c4b560e41b815260040160405180910390fd5b6000611111611730565b9050805160001415611132576040518060200160405280600081525061115d565b8061113c8461173f565b60405160200161114d929190611edf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461118e5760405162461bcd60e51b815260040161074690611fa2565b600a55565b6008546001600160a01b031633146111bd5760405162461bcd60e51b815260040161074690611fa2565b6001600160a01b0381166112225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610746565b6109e3816115d4565b6000805482108015610716575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c6482826040518060200160405280600081525061183c565b60006112d7826114ba565b9050836001600160a01b031681600001516001600160a01b03161461130e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061132c575061132c853361067c565b8061134757503361133c846107e6565b6001600160a01b0316145b90508061136757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661138e57604051633a954ecd60e21b815260040160405180910390fd5b61139a60008487611256565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661146e57600054821461146e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115bb57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115b95780516001600160a01b031615611550579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156115b4579392505050565b611550565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826116338584611849565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611671903390899088908890600401611f0e565b602060405180830381600087803b15801561168b57600080fd5b505af19250505080156116bb575060408051601f3d908101601f191682019092526116b891810190611e1b565b60015b611716573d8080156116e9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ee565b606091505b50805161170e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f23565b6060600b805461076390612065565b6060816117635750506040805180820190915260018152600360fc1b602082015290565b8160005b811561178d5780611777816120a0565b91506117869050600a83611fef565b9150611767565b6000816001600160401b038111156117a7576117a7612111565b6040519080825280601f01601f1916602001820160405280156117d1576020820181803683370190505b5090505b8415610f23576117e6600183612022565b91506117f3600a866120bb565b6117fe906030611fd7565b60f81b818381518110611813576118136120fb565b60200101906001600160f81b031916908160001a905350611835600a86611fef565b94506117d5565b6108b383838360016118bd565b600081815b84518110156118b557600085828151811061186b5761186b6120fb565b6020026020010151905080831161189157600083815260208290526040902092506118a2565b600081815260208490526040902092505b50806118ad816120a0565b91505061184e565b509392505050565b6000546001600160a01b0385166118e657604051622e076360e81b815260040160405180910390fd5b836119045760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119b057506001600160a01b0387163b15155b15611a39575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a01600088848060010195508861163c565b611a1e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119b6578260005414611a3457600080fd5b611a7f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611a3a575b506000556114b3565b828054611a9490612065565b90600052602060002090601f016020900481019282611ab65760008555611afc565b82601f10611acf57805160ff1916838001178555611afc565b82800160010185558215611afc579182015b82811115611afc578251825591602001919060010190611ae1565b50611b08929150611b0c565b5090565b5b80821115611b085760008155600101611b0d565b60006001600160401b0380841115611b3b57611b3b612111565b604051601f8501601f19908116603f01168101908282118183101715611b6357611b63612111565b81604052809350858152868686011115611b7c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bad57600080fd5b919050565b60008083601f840112611bc457600080fd5b5081356001600160401b03811115611bdb57600080fd5b6020830191508360208260051b8501011115611bf657600080fd5b9250929050565b80358015158114611bad57600080fd5b600060208284031215611c1f57600080fd5b61115d82611b96565b60008060408385031215611c3b57600080fd5b611c4483611b96565b9150611c5260208401611b96565b90509250929050565b600080600060608486031215611c7057600080fd5b611c7984611b96565b9250611c8760208501611b96565b9150604084013590509250925092565b60008060008060808587031215611cad57600080fd5b611cb685611b96565b9350611cc460208601611b96565b92506040850135915060608501356001600160401b03811115611ce657600080fd5b8501601f81018713611cf757600080fd5b611d0687823560208401611b21565b91505092959194509250565b60008060008060608587031215611d2857600080fd5b611d3185611b96565b935060208501356001600160401b03811115611d4c57600080fd5b611d5887828801611bb2565b9094509250611d6b905060408601611bfd565b905092959194509250565b60008060408385031215611d8957600080fd5b611d9283611b96565b9150611c5260208401611bfd565b60008060408385031215611db357600080fd5b611dbc83611b96565b946020939093013593505050565b600060208284031215611ddc57600080fd5b61115d82611bfd565b600060208284031215611df757600080fd5b5035919050565b600060208284031215611e1057600080fd5b813561115d81612127565b600060208284031215611e2d57600080fd5b815161115d81612127565b600060208284031215611e4a57600080fd5b81356001600160401b03811115611e6057600080fd5b8201601f81018413611e7157600080fd5b610f2384823560208401611b21565b60008060008060608587031215611e9657600080fd5b8435935060208501356001600160401b03811115611d4c57600080fd5b60008151808452611ecb816020860160208601612039565b601f01601f19169290920160200192915050565b60008351611ef1818460208801612039565b835190830190611f05818360208801612039565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f4190830184611eb3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f8357835183529284019291840191600101611f67565b50909695505050505050565b60208152600061115d6020830184611eb3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fea57611fea6120cf565b500190565b600082611ffe57611ffe6120e5565b500490565b600081600019048311821515161561201d5761201d6120cf565b500290565b600082821015612034576120346120cf565b500390565b60005b8381101561205457818101518382015260200161203c565b838111156110d95750506000910152565b600181811c9082168061207957607f821691505b6020821081141561209a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120b4576120b46120cf565b5060010190565b6000826120ca576120ca6120e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e357600080fdfea264697066735822122033c8b1b1e0e7df06d5fe09eb5ab1c69c3c6e72d3c9c9f840d8a3a90b3f4c0d7564736f6c63430008070033
Deployed Bytecode Sourcemap
47460:4063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29395:305;;;;;;;;;;-1:-1:-1;29395:305:0;;;;;:::i;:::-;;:::i;:::-;;;8703:14:1;;8696:22;8678:41;;8666:2;8651:18;29395:305:0;;;;;;;;50680:94;;;;;;;;;;-1:-1:-1;50680:94:0;;;;;:::i;:::-;;:::i;:::-;;32508:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34011:204::-;;;;;;;;;;-1:-1:-1;34011:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7364:32:1;;;7346:51;;7334:2;7319:18;34011:204:0;7200:203:1;33574:371:0;;;;;;;;;;-1:-1:-1;33574:371:0;;;;;:::i;:::-;;:::i;50780:108::-;;;;;;;;;;-1:-1:-1;50780:108:0;;;;;:::i;:::-;;:::i;47754:17::-;;;;;;;;;;;;;:::i;47776:32::-;;;;;;;;;;;;;;;;;;;8876:25:1;;;8864:2;8849:18;47776:32:0;8730:177:1;50399:187:0;;;;;;;;;;-1:-1:-1;50399:187:0;;;;;:::i;:::-;;:::i;28644:303::-;;;;;;;;;;-1:-1:-1;28898:12:0;;28688:7;28882:13;:28;28644:303;;34876:170;;;;;;;;;;-1:-1:-1;34876:170:0;;;;;:::i;:::-;;:::i;51110:97::-;;;;;;;;;;-1:-1:-1;51110:97:0;;;;;:::i;:::-;;:::i;47646:103::-;;;;;;;;;;;;;;;;47891:42;;;;;;;;;;-1:-1:-1;47891:42:0;;;;;;;;51330:190;;;:::i;35117:185::-;;;;;;;;;;-1:-1:-1;35117:185:0;;;;;:::i;:::-;;:::i;49128:586::-;;;;;;;;;;-1:-1:-1;49128:586:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50594:80::-;;;;;;;;;;-1:-1:-1;50594:80:0;;;;;:::i;:::-;;:::i;51215:108::-;;;;;;;;;;-1:-1:-1;51215:108:0;;;;;:::i;:::-;;:::i;51010:94::-;;;;;;;;;;-1:-1:-1;51010:94:0;;;;;:::i;:::-;;:::i;48689:433::-;;;;;;:::i;:::-;;:::i;32316:125::-;;;;;;;;;;-1:-1:-1;32316:125:0;;;;;:::i;:::-;;:::i;29764:206::-;;;;;;;;;;-1:-1:-1;29764:206:0;;;;;:::i;:::-;;:::i;7152:103::-;;;;;;;;;;;;;:::i;49720:657::-;;;;;;;;;;-1:-1:-1;49720:657:0;;;;;:::i;:::-;;:::i;47938:39::-;;;;;;;;;;-1:-1:-1;47938:39:0;;;;;;;;;;;6501:87;;;;;;;;;;-1:-1:-1;6574:6:0;;-1:-1:-1;;;;;6574:6:0;6501:87;;47539:102;;;;;;;;;;;;;;;;47849:37;;;;;;;;;;;;;;;;32677:104;;;;;;;;;;;;;:::i;48483:200::-;;;;;;:::i;:::-;;:::i;34287:287::-;;;;;;;;;;-1:-1:-1;34287:287:0;;;;;:::i;:::-;;:::i;35373:369::-;;;;;;;;;;-1:-1:-1;35373:369:0;;;;;:::i;:::-;;:::i;32852:318::-;;;;;;;;;;-1:-1:-1;32852:318:0;;;;;:::i;:::-;;:::i;50894:110::-;;;;;;;;;;-1:-1:-1;50894:110:0;;;;;:::i;:::-;;:::i;47813:31::-;;;;;;;;;;;;;;;;34645:164;;;;;;;;;;-1:-1:-1;34645:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34766:25:0;;;34742:4;34766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34645:164;7410:201;;;;;;;;;;-1:-1:-1;7410:201:0;;;;;:::i;:::-;;:::i;29395:305::-;29497:4;-1:-1:-1;;;;;;29534:40:0;;-1:-1:-1;;;29534:40:0;;:105;;-1:-1:-1;;;;;;;29591:48:0;;-1:-1:-1;;;29591:48:0;29534:105;:158;;;-1:-1:-1;;;;;;;;;;19394:40:0;;;29656:36;29514:178;29395:305;-1:-1:-1;;29395:305:0:o;50680:94::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;;;;;;;;;50746:9:::1;:22:::0;50680:94::o;32508:100::-;32562:13;32595:5;32588:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32508:100;:::o;34011:204::-;34079:7;34104:16;34112:7;34104;:16::i;:::-;34099:64;;34129:34;;-1:-1:-1;;;34129:34:0;;;;;;;;;;;34099:64;-1:-1:-1;34183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34183:24:0;;34011:204::o;33574:371::-;33647:13;33663:24;33679:7;33663:15;:24::i;:::-;33647:40;;33708:5;-1:-1:-1;;;;;33702:11:0;:2;-1:-1:-1;;;;;33702:11:0;;33698:48;;;33722:24;;-1:-1:-1;;;33722:24:0;;;;;;;;;;;33698:48;5305:10;-1:-1:-1;;;;;33763:21:0;;;;;;:63;;-1:-1:-1;33789:37:0;33806:5;5305:10;34645:164;:::i;33789:37::-;33788:38;33763:63;33759:138;;;33850:35;;-1:-1:-1;;;33850:35:0;;;;;;;;;;;33759:138;33909:28;33918:2;33922:7;33931:5;33909:8;:28::i;:::-;33636:309;33574:371;;:::o;50780:108::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;50853:18:::1;:29:::0;50780:108::o;47754:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50399:187::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;50499:9:::1;;50485:11;50469:13;28898:12:::0;;28688:7;28882:13;:28;;28644:303;50469:13:::1;:27;;;;:::i;:::-;:39;50465:72;;;50517:20;;-1:-1:-1::0;;;50517:20:0::1;;;;;;;;;;;50465:72;50546:34;50556:10;50568:11;50546:9;:34::i;:::-;50399:187:::0;:::o;34876:170::-;35010:28;35020:4;35026:2;35030:7;35010:9;:28::i;51110:97::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;51173:19:::1;:28:::0;;;::::1;;;;-1:-1:-1::0;;51173:28:0;;::::1;::::0;;;::::1;::::0;;51110:97::o;51330:190::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;51410:49:::1;::::0;51383:21:::1;::::0;51410:10:::1;::::0;51433:21:::1;::::0;51383;51410:49;51383:21;51410:49;51433:21;51410:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51382:77;;;51471:16;51466:48;;51496:18;;-1:-1:-1::0;;;51496:18:0::1;;;;;;;;;;;35117:185:::0;35255:39;35272:4;35278:2;35282:7;35255:39;;;;;;;;;;;;:16;:39::i;49128:586::-;49203:16;49231:23;49257:17;49267:6;49257:9;:17::i;:::-;49231:43;;49281:22;49314:23;49348:25;49390:15;-1:-1:-1;;;;;49376:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49376:30:0;;49348:58;;49415:272;49440:15;49422;:33;:64;;;;;49477:9;;49459:14;:27;;49422:64;49415:272;;;49535:6;-1:-1:-1;;;;;49508:33:0;:23;49516:14;49508:7;:23::i;:::-;-1:-1:-1;;;;;49508:33:0;;49504:149;;;49595:14;49567:8;49576:15;49567:25;;;;;;;;:::i;:::-;;;;;;;;;;:42;49624:17;;;;:::i;:::-;;;;49504:149;49663:16;;;;:::i;:::-;;;;49415:272;;;49700:8;49128:586;-1:-1:-1;;;;;49128:586:0:o;50594:80::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;50653:4:::1;:15:::0;50594:80::o;51215:108::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;51286:22:::1;:31:::0;;-1:-1:-1;;51286:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51215:108::o;51010:94::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;51081:17;;::::1;::::0;:3:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51010:94:::0;:::o;48689:433::-;48811:11;48234:18;;48220:11;:32;48216:74;;;48261:29;;-1:-1:-1;;;48261:29:0;;;;;;;;;;;48216:74;48333:9;;48319:11;48303:13;28898:12;;28688:7;28882:13;:28;;28644:303;48303:13;:27;;;;:::i;:::-;:39;48299:72;;;48351:20;;-1:-1:-1;;;48351:20:0;;;;;;;;;;;48299:72;48403:11;48396:4;;:18;;;;:::i;:::-;48384:9;:30;48380:62;;;48423:19;;-1:-1:-1;;;48423:19:0;;;;;;;;;;;48380:62;48841:22:::1;::::0;::::1;;48836:60;;48872:24;;-1:-1:-1::0;;;48872:24:0::1;;;;;;;;;;;48836:60;48905:22;48930:63;48957:10;48969:12;;48983:9;48930:26;:63::i;:::-;48905:88;;49020:14;49006:11;:28;49002:71;;;49043:30;;-1:-1:-1::0;;;49043:30:0::1;;;;;;;;;;;49002:71;49082:34;49092:10;49104:11;49082:9;:34::i;:::-;48827:295;48689:433:::0;;;;;:::o;32316:125::-;32380:7;32407:21;32420:7;32407:12;:21::i;:::-;:26;;32316:125;-1:-1:-1;;32316:125:0:o;29764:206::-;29828:7;-1:-1:-1;;;;;29852:19:0;;29848:60;;29880:28;;-1:-1:-1;;;29880:28:0;;;;;;;;;;;29848:60;-1:-1:-1;;;;;;29934:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29934:27:0;;29764:206::o;7152:103::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;7217:30:::1;7244:1;7217:18;:30::i;:::-;7152:103::o:0;49720:657::-;49884:23;;-1:-1:-1;;6430:2:1;6426:15;;;6422:53;49884:23:0;;;6410:66:1;49841:7:0;;;;6492:12:1;;49884:23:0;;;;;;;;;;;;49874:34;;;;;;49859:49;;49917:25;49961:9;49957:285;;;49987:58;50006:12;;49987:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50020:18:0;;;-1:-1:-1;50040:4:0;;-1:-1:-1;49987:18:0;:58::i;:::-;49983:111;;;-1:-1:-1;50081:1:0;49983:111;49957:285;;;50124:59;50143:12;;50124:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50157:19:0;;;-1:-1:-1;50178:4:0;;-1:-1:-1;50124:18:0;:59::i;:::-;50120:113;;;-1:-1:-1;50220:1:0;50120:113;50262:22;50258:55;;50293:20;;-1:-1:-1;;;50293:20:0;;;;;;;;;;;50258:55;-1:-1:-1;;;;;30148:19:0;;30113:7;30148:19;;;:12;:19;;;;;:32;-1:-1:-1;;;30148:32:0;;-1:-1:-1;;;;;30148:32:0;50331:40;;:17;:40;:::i;:::-;50324:47;;;;49720:657;;;;;;;:::o;32677:104::-;32733:13;32766:7;32759:14;;;;;:::i;48483:200::-;48550:11;48234:18;;48220:11;:32;48216:74;;;48261:29;;-1:-1:-1;;;48261:29:0;;;;;;;;;;;48216:74;48333:9;;48319:11;48303:13;28898:12;;28688:7;28882:13;:28;;28644:303;48303:13;:27;;;;:::i;:::-;:39;48299:72;;;48351:20;;-1:-1:-1;;;48351:20:0;;;;;;;;;;;48299:72;48403:11;48396:4;;:18;;;;:::i;:::-;48384:9;:30;48380:62;;;48423:19;;-1:-1:-1;;;48423:19:0;;;;;;;;;;;48380:62;48577:19:::1;::::0;::::1;::::0;::::1;;;48572:54;;48605:21;;-1:-1:-1::0;;;48605:21:0::1;;;;;;;;;;;48572:54;48643:34;48653:10;48665:11;48643:9;:34::i;34287:287::-:0;-1:-1:-1;;;;;34386:24:0;;5305:10;34386:24;34382:54;;;34419:17;;-1:-1:-1;;;34419:17:0;;;;;;;;;;;34382:54;5305:10;34449:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34449:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34449:53:0;;;;;;;;;;34518:48;;8678:41:1;;;34449:42:0;;5305:10;34518:48;;8651:18:1;34518:48:0;;;;;;;34287:287;;:::o;35373:369::-;35540:28;35550:4;35556:2;35560:7;35540:9;:28::i;:::-;-1:-1:-1;;;;;35583:13:0;;9497:19;:23;;35583:76;;;;;35603:56;35634:4;35640:2;35644:7;35653:5;35603:30;:56::i;:::-;35602:57;35583:76;35579:156;;;35683:40;;-1:-1:-1;;;35683:40:0;;;;;;;;;;;35579:156;35373:369;;;;:::o;32852:318::-;32925:13;32956:16;32964:7;32956;:16::i;:::-;32951:59;;32981:29;;-1:-1:-1;;;32981:29:0;;;;;;;;;;;32951:59;33023:21;33047:10;:8;:10::i;:::-;33023:34;;33081:7;33075:21;33100:1;33075:26;;:87;;;;;;;;;;;;;;;;;33128:7;33137:18;:7;:16;:18::i;:::-;33111:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33075:87;33068:94;32852:318;-1:-1:-1;;;32852:318:0:o;50894:110::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;50968:19:::1;:30:::0;50894:110::o;7410:201::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7499:22:0;::::1;7491:73;;;::::0;-1:-1:-1;;;7491:73:0;;9338:2:1;7491:73:0::1;::::0;::::1;9320:21:1::0;9377:2;9357:18;;;9350:30;9416:34;9396:18;;;9389:62;-1:-1:-1;;;9467:18:1;;;9460:36;9513:19;;7491:73:0::1;9136:402:1::0;7491:73:0::1;7575:28;7594:8;7575:18;:28::i;35997:187::-:0;36054:4;36118:13;;36108:7;:23;36078:98;;;;-1:-1:-1;;36149:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36149:27:0;;;;36148:28;;35997:187::o;44167:196::-;44282:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44282:29:0;-1:-1:-1;;;;;44282:29:0;;;;;;;;;44327:28;;44282:24;;44327:28;;;;;;;44167:196;;;:::o;36192:104::-;36261:27;36271:2;36275:8;36261:27;;;;;;;;;;;;:9;:27::i;39110:2130::-;39225:35;39263:21;39276:7;39263:12;:21::i;:::-;39225:59;;39323:4;-1:-1:-1;;;;;39301:26:0;:13;:18;;;-1:-1:-1;;;;;39301:26:0;;39297:67;;39336:28;;-1:-1:-1;;;39336:28:0;;;;;;;;;;;39297:67;39377:22;5305:10;-1:-1:-1;;;;;39403:20:0;;;;:73;;-1:-1:-1;39440:36:0;39457:4;5305:10;34645:164;:::i;39440:36::-;39403:126;;;-1:-1:-1;5305:10:0;39493:20;39505:7;39493:11;:20::i;:::-;-1:-1:-1;;;;;39493:36:0;;39403:126;39377:153;;39548:17;39543:66;;39574:35;;-1:-1:-1;;;39574:35:0;;;;;;;;;;;39543:66;-1:-1:-1;;;;;39624:16:0;;39620:52;;39649:23;;-1:-1:-1;;;39649:23:0;;;;;;;;;;;39620:52;39793:35;39810:1;39814:7;39823:4;39793:8;:35::i;:::-;-1:-1:-1;;;;;40124:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40124:31:0;;;-1:-1:-1;;;;;40124:31:0;;;-1:-1:-1;;40124:31:0;;;;;;;40170:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40170:29:0;;;;;;;;;;;40250:20;;;:11;:20;;;;;;40285:18;;-1:-1:-1;;;;;;40318:49:0;;;;-1:-1:-1;;;40351:15:0;40318:49;;;;;;;;;;40641:11;;40701:24;;;;;40744:13;;40250:20;;40701:24;;40744:13;40740:384;;40954:13;;40939:11;:28;40935:174;;40992:20;;41061:28;;;;-1:-1:-1;;;;;41035:54:0;-1:-1:-1;;;41035:54:0;-1:-1:-1;;;;;;41035:54:0;;;-1:-1:-1;;;;;40992:20:0;;41035:54;;;;40935:174;40099:1036;;;41171:7;41167:2;-1:-1:-1;;;;;41152:27:0;41161:4;-1:-1:-1;;;;;41152:27:0;;;;;;;;;;;41190:42;39214:2026;;39110:2130;;;:::o;31145:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31256:7:0;31339:13;;31332:4;:20;31301:886;;;31373:31;31407:17;;;:11;:17;;;;;;;;;31373:51;;;;;;;;;-1:-1:-1;;;;;31373:51:0;;;;-1:-1:-1;;;31373:51:0;;-1:-1:-1;;;;;31373:51:0;;;;;;;;-1:-1:-1;;;31373:51:0;;;;;;;;;;;;;;31443:729;;31493:14;;-1:-1:-1;;;;;31493:28:0;;31489:101;;31557:9;31145:1109;-1:-1:-1;;;31145:1109:0:o;31489:101::-;-1:-1:-1;;;31932:6:0;31977:17;;;;:11;:17;;;;;;;;;31965:29;;;;;;;;;-1:-1:-1;;;;;31965:29:0;;;;;-1:-1:-1;;;31965:29:0;;-1:-1:-1;;;;;31965:29:0;;;;;;;;-1:-1:-1;;;31965:29:0;;;;;;;;;;;;;32025:28;32021:109;;32093:9;31145:1109;-1:-1:-1;;;31145:1109:0:o;32021:109::-;31892:261;;;31354:833;31301:886;32215:31;;-1:-1:-1;;;32215:31:0;;;;;;;;;;;7771:191;7864:6;;;-1:-1:-1;;;;;7881:17:0;;;-1:-1:-1;;;;;;7881:17:0;;;;;;;7914:40;;7864:6;;;7881:17;7864:6;;7914:40;;7845:16;;7914:40;7834:128;7771:191;:::o;956:190::-;1081:4;1134;1105:25;1118:5;1125:4;1105:12;:25::i;:::-;:33;;956:190;-1:-1:-1;;;;956:190:0:o;44855:667::-;45039:72;;-1:-1:-1;;;45039:72:0;;45018:4;;-1:-1:-1;;;;;45039:36:0;;;;;:72;;5305:10;;45090:4;;45096:7;;45105:5;;45039:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45039:72:0;;;;;;;;-1:-1:-1;;45039:72:0;;;;;;;;;;;;:::i;:::-;;;45035:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45273:13:0;;45269:235;;45319:40;;-1:-1:-1;;;45319:40:0;;;;;;;;;;;45269:235;45462:6;45456:13;45447:6;45443:2;45439:15;45432:38;45035:480;-1:-1:-1;;;;;;45158:55:0;-1:-1:-1;;;45158:55:0;;-1:-1:-1;45151:62:0;;48053:98;48113:13;48142:3;48135:10;;;;;:::i;2787:723::-;2843:13;3064:10;3060:53;;-1:-1:-1;;3091:10:0;;;;;;;;;;;;-1:-1:-1;;;3091:10:0;;;;;2787:723::o;3060:53::-;3138:5;3123:12;3179:78;3186:9;;3179:78;;3212:8;;;;:::i;:::-;;-1:-1:-1;3235:10:0;;-1:-1:-1;3243:2:0;3235:10;;:::i;:::-;;;3179:78;;;3267:19;3299:6;-1:-1:-1;;;;;3289:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3289:17:0;;3267:39;;3317:154;3324:10;;3317:154;;3351:11;3361:1;3351:11;;:::i;:::-;;-1:-1:-1;3420:10:0;3428:2;3420:5;:10;:::i;:::-;3407:24;;:2;:24;:::i;:::-;3394:39;;3377:6;3384;3377:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3377:56:0;;;;;;;;-1:-1:-1;3448:11:0;3457:2;3448:11;;:::i;:::-;;;3317:154;;36659:163;36782:32;36788:2;36792:8;36802:5;36809:4;36782:5;:32::i;1508:675::-;1591:7;1634:4;1591:7;1649:497;1673:5;:12;1669:1;:16;1649:497;;;1707:20;1730:5;1736:1;1730:8;;;;;;;;:::i;:::-;;;;;;;1707:31;;1773:12;1757;:28;1753:382;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;1885:57;;1753:382;;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;2062:57;;1753:382;-1:-1:-1;1687:3:0;;;;:::i;:::-;;;;1649:497;;;-1:-1:-1;2163:12:0;1508:675;-1:-1:-1;;;1508:675:0:o;37081:1775::-;37220:20;37243:13;-1:-1:-1;;;;;37271:16:0;;37267:48;;37296:19;;-1:-1:-1;;;37296:19:0;;;;;;;;;;;37267:48;37330:13;37326:44;;37352:18;;-1:-1:-1;;;37352:18:0;;;;;;;;;;;37326:44;-1:-1:-1;;;;;37721:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37780:49:0;;-1:-1:-1;;;;;37721:44:0;;;;;;;37780:49;;;-1:-1:-1;;;;;37721:44:0;;;;;;37780:49;;;;;;;;;;;;;;;;37846:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37896:66:0;;;;-1:-1:-1;;;37946:15:0;37896:66;;;;;;;;;;37846:25;38043:23;;;38087:4;:23;;;;-1:-1:-1;;;;;;38095:13:0;;9497:19;:23;;38095:15;38083:641;;;38131:314;38162:38;;38187:12;;-1:-1:-1;;;;;38162:38:0;;;38179:1;;38162:38;;38179:1;;38162:38;38228:69;38267:1;38271:2;38275:14;;;;;;38291:5;38228:30;:69::i;:::-;38223:174;;38333:40;;-1:-1:-1;;;38333:40:0;;;;;;;;;;;38223:174;38440:3;38424:12;:19;;38131:314;;38526:12;38509:13;;:29;38505:43;;38540:8;;;38505:43;38083:641;;;38589:120;38620:40;;38645:14;;;;;-1:-1:-1;;;;;38620:40:0;;;38637:1;;38620:40;;38637:1;;38620:40;38704:3;38688:12;:19;;38589:120;;38083:641;-1:-1:-1;38738:13:0;:28;38788:60;35373:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;-1:-1:-1;;;;;2573:6:1;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:579::-;2926:6;2934;2942;2950;3003:2;2991:9;2982:7;2978:23;2974:32;2971:52;;;3019:1;3016;3009:12;2971:52;3042:29;3061:9;3042:29;:::i;:::-;3032:39;;3122:2;3111:9;3107:18;3094:32;-1:-1:-1;;;;;3141:6:1;3138:30;3135:50;;;3181:1;3178;3171:12;3135:50;3220:70;3282:7;3273:6;3262:9;3258:22;3220:70;:::i;:::-;3309:8;;-1:-1:-1;3194:96:1;-1:-1:-1;3363:35:1;;-1:-1:-1;3394:2:1;3379:18;;3363:35;:::i;:::-;3353:45;;2825:579;;;;;;;:::o;3409:254::-;3474:6;3482;3535:2;3523:9;3514:7;3510:23;3506:32;3503:52;;;3551:1;3548;3541:12;3503:52;3574:29;3593:9;3574:29;:::i;:::-;3564:39;;3622:35;3653:2;3642:9;3638:18;3622:35;:::i;3668:254::-;3736:6;3744;3797:2;3785:9;3776:7;3772:23;3768:32;3765:52;;;3813:1;3810;3803:12;3765:52;3836:29;3855:9;3836:29;:::i;:::-;3826:39;3912:2;3897:18;;;;3884:32;;-1:-1:-1;;;3668:254:1:o;3927:180::-;3983:6;4036:2;4024:9;4015:7;4011:23;4007:32;4004:52;;;4052:1;4049;4042:12;4004:52;4075:26;4091:9;4075:26;:::i;4112:180::-;4171:6;4224:2;4212:9;4203:7;4199:23;4195:32;4192:52;;;4240:1;4237;4230:12;4192:52;-1:-1:-1;4263:23:1;;4112:180;-1:-1:-1;4112:180:1:o;4297:245::-;4355:6;4408:2;4396:9;4387:7;4383:23;4379:32;4376:52;;;4424:1;4421;4414:12;4376:52;4463:9;4450:23;4482:30;4506:5;4482:30;:::i;4547:249::-;4616:6;4669:2;4657:9;4648:7;4644:23;4640:32;4637:52;;;4685:1;4682;4675:12;4637:52;4717:9;4711:16;4736:30;4760:5;4736:30;:::i;4801:450::-;4870:6;4923:2;4911:9;4902:7;4898:23;4894:32;4891:52;;;4939:1;4936;4929:12;4891:52;4979:9;4966:23;-1:-1:-1;;;;;5004:6:1;5001:30;4998:50;;;5044:1;5041;5034:12;4998:50;5067:22;;5120:4;5112:13;;5108:27;-1:-1:-1;5098:55:1;;5149:1;5146;5139:12;5098:55;5172:73;5237:7;5232:2;5219:16;5214:2;5210;5206:11;5172:73;:::i;5441:573::-;5542:6;5550;5558;5566;5619:2;5607:9;5598:7;5594:23;5590:32;5587:52;;;5635:1;5632;5625:12;5587:52;5671:9;5658:23;5648:33;;5732:2;5721:9;5717:18;5704:32;-1:-1:-1;;;;;5751:6:1;5748:30;5745:50;;;5791:1;5788;5781:12;6019:257;6060:3;6098:5;6092:12;6125:6;6120:3;6113:19;6141:63;6197:6;6190:4;6185:3;6181:14;6174:4;6167:5;6163:16;6141:63;:::i;:::-;6258:2;6237:15;-1:-1:-1;;6233:29:1;6224:39;;;;6265:4;6220:50;;6019:257;-1:-1:-1;;6019:257:1:o;6515:470::-;6694:3;6732:6;6726:13;6748:53;6794:6;6789:3;6782:4;6774:6;6770:17;6748:53;:::i;:::-;6864:13;;6823:16;;;;6886:57;6864:13;6823:16;6920:4;6908:17;;6886:57;:::i;:::-;6959:20;;6515:470;-1:-1:-1;;;;6515:470:1:o;7408:488::-;-1:-1:-1;;;;;7677:15:1;;;7659:34;;7729:15;;7724:2;7709:18;;7702:43;7776:2;7761:18;;7754:34;;;7824:3;7819:2;7804:18;;7797:31;;;7602:4;;7845:45;;7870:19;;7862:6;7845:45;:::i;:::-;7837:53;7408:488;-1:-1:-1;;;;;;7408:488:1:o;7901:632::-;8072:2;8124:21;;;8194:13;;8097:18;;;8216:22;;;8043:4;;8072:2;8295:15;;;;8269:2;8254:18;;;8043:4;8338:169;8352:6;8349:1;8346:13;8338:169;;;8413:13;;8401:26;;8482:15;;;;8447:12;;;;8374:1;8367:9;8338:169;;;-1:-1:-1;8524:3:1;;7901:632;-1:-1:-1;;;;;;7901:632:1:o;8912:219::-;9061:2;9050:9;9043:21;9024:4;9081:44;9121:2;9110:9;9106:18;9098:6;9081:44;:::i;9543:356::-;9745:2;9727:21;;;9764:18;;;9757:30;9823:34;9818:2;9803:18;;9796:62;9890:2;9875:18;;9543:356::o;10086:128::-;10126:3;10157:1;10153:6;10150:1;10147:13;10144:39;;;10163:18;;:::i;:::-;-1:-1:-1;10199:9:1;;10086:128::o;10219:120::-;10259:1;10285;10275:35;;10290:18;;:::i;:::-;-1:-1:-1;10324:9:1;;10219:120::o;10344:168::-;10384:7;10450:1;10446;10442:6;10438:14;10435:1;10432:21;10427:1;10420:9;10413:17;10409:45;10406:71;;;10457:18;;:::i;:::-;-1:-1:-1;10497:9:1;;10344:168::o;10517:125::-;10557:4;10585:1;10582;10579:8;10576:34;;;10590:18;;:::i;:::-;-1:-1:-1;10627:9:1;;10517:125::o;10647:258::-;10719:1;10729:113;10743:6;10740:1;10737:13;10729:113;;;10819:11;;;10813:18;10800:11;;;10793:39;10765:2;10758:10;10729:113;;;10860:6;10857:1;10854:13;10851:48;;;-1:-1:-1;;10895:1:1;10877:16;;10870:27;10647:258::o;10910:380::-;10989:1;10985:12;;;;11032;;;11053:61;;11107:4;11099:6;11095:17;11085:27;;11053:61;11160:2;11152:6;11149:14;11129:18;11126:38;11123:161;;;11206:10;11201:3;11197:20;11194:1;11187:31;11241:4;11238:1;11231:15;11269:4;11266:1;11259:15;11123:161;;10910:380;;;:::o;11295:135::-;11334:3;-1:-1:-1;;11355:17:1;;11352:43;;;11375:18;;:::i;:::-;-1:-1:-1;11422:1:1;11411:13;;11295:135::o;11435:112::-;11467:1;11493;11483:35;;11498:18;;:::i;:::-;-1:-1:-1;11532:9:1;;11435:112::o;11552:127::-;11613:10;11608:3;11604:20;11601:1;11594:31;11644:4;11641:1;11634:15;11668:4;11665:1;11658:15;11684:127;11745:10;11740:3;11736:20;11733:1;11726:31;11776:4;11773:1;11766:15;11800:4;11797:1;11790:15;11816:127;11877:10;11872:3;11868:20;11865:1;11858:31;11908:4;11905:1;11898:15;11932:4;11929:1;11922:15;11948:127;12009:10;12004:3;12000:20;11997:1;11990:31;12040:4;12037:1;12030:15;12064:4;12061:1;12054:15;12080:131;-1:-1:-1;;;;;;12154:32:1;;12144:43;;12134:71;;12201:1;12198;12191:12
Swarm Source
ipfs://33c8b1b1e0e7df06d5fe09eb5ab1c69c3c6e72d3c9c9f840d8a3a90b3f4c0d75
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.