ERC-721
Overview
Max Total Supply
0 $ZDB
Holders
28
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 $ZDBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ZoldiacBeauties
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-23 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // 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: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/kha.sol //SPDX-License-Identifier: MIT pragma solidity 0.8.12; contract ZoldiacBeauties is ERC721, Ownable{ using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIds; string public baseUri; address public proxyRegistryAddress; uint256 public mintFee = 0.04 ether; uint256 public MAX_SUPPLY; uint256 public runningSupply; uint256 public freeSupply; bool public revealed = false; mapping(address => bool) public projectProxy; address private devWallet; constructor( string memory _baseUri, address _proxyRegistryAddress, uint256 _MAX_SUPPLY, uint256 _freeNumber, address _devWallet) ERC721("Zodiac Beauties", "$ZDB") { baseUri = _baseUri; proxyRegistryAddress = _proxyRegistryAddress; MAX_SUPPLY = _MAX_SUPPLY; freeSupply = _freeNumber; devWallet = _devWallet; } function mint(uint128 quantity) external payable { require(runningSupply + quantity < MAX_SUPPLY, "NFT: Cannot mint more!"); if (runningSupply + quantity > freeSupply) require(msg.value >= mintFee * quantity, "NFT: Not enough Minting Fee!"); runningSupply += quantity; for(uint128 i=0; i<quantity ; i++){ _tokenIds.increment(); uint256 newTokenId = _tokenIds.current(); _mint(msg.sender, newTokenId); } } function _baseURI() internal view virtual override returns (string memory) { return baseUri; } function setBaseURI(string memory _newBaseURI) external onlyOwner{ baseUri = _newBaseURI; revealed = true; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "NFT: URI query for nonexistent token"); if (revealed) return bytes(baseUri).length > 0 ? string(abi.encodePacked(baseUri, _tokenId.toString(), ".json")) : ""; else return baseUri; } function isApprovedForAll(address _owner, address operator) public view override returns (bool) { OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true; return super.isApprovedForAll(_owner, operator); } function updatesMintFee(uint256 updateFee) external onlyOwner { mintFee = updateFee; } function withdraw() external payable onlyOwner { uint256 totalBalance = address(this).balance; uint256 ownerCut = totalBalance*9/10; uint256 devCut = totalBalance/10; (bool os, ) = payable(owner()).call{value: ownerCut}(""); (bool os2, ) = payable(devWallet).call{value: devCut}(""); require(os); require(os2); } function flipProxyState(address proxyAddress) public onlyOwner { projectProxy[proxyAddress] = !projectProxy[proxyAddress]; } } contract OwnableDelegateProxy {} contract OpenSeaProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"},{"internalType":"uint256","name":"_freeNumber","type":"uint256"},{"internalType":"address","name":"_devWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","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":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"quantity","type":"uint128"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"runningSupply","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":"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":"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":[{"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":"uint256","name":"updateFee","type":"uint256"}],"name":"updatesMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052668e1bc9bf040000600a55600e805460ff191690553480156200002657600080fd5b506040516200231238038062002312833981016040819052620000499162000253565b604080518082018252600f81526e5a6f6469616320426561757469657360881b602080830191825283518085019094526004845263122d222160e11b9084015281519192916200009c916000916200017a565b508051620000b29060019060208401906200017a565b505050620000cf620000c96200012460201b60201c565b62000128565b8451620000e49060089060208801906200017a565b50600980546001600160a01b039586166001600160a01b031991821617909155600b93909355600d919091556010805491909316911617905550620003a7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000188906200036a565b90600052602060002090601f016020900481019282620001ac5760008555620001f7565b82601f10620001c757805160ff1916838001178555620001f7565b82800160010185558215620001f7579182015b82811115620001f7578251825591602001919060010190620001da565b506200020592915062000209565b5090565b5b808211156200020557600081556001016200020a565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200024e57600080fd5b919050565b600080600080600060a086880312156200026c57600080fd5b85516001600160401b03808211156200028457600080fd5b818801915088601f8301126200029957600080fd5b815181811115620002ae57620002ae62000220565b604051601f8201601f19908116603f01168101908382118183101715620002d957620002d962000220565b81604052828152602093508b84848701011115620002f657600080fd5b600091505b828210156200031a5784820184015181830185015290830190620002fb565b828211156200032c5760008484830101525b98506200033e91505088820162000236565b9550505060408601519250606086015191506200035e6080870162000236565b90509295509295909350565b600181811c908216806200037f57607f821691505b60208210811415620003a157634e487b7160e01b600052602260045260246000fd5b50919050565b611f5b80620003b76000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063da947a3711610064578063da947a37146104ca578063e985e9c5146104e0578063f2fde38b14610500578063f73c814b1461052057600080fd5b8063a22cb4651461044a578063b88d4fde1461046a578063c87b56dd1461048a578063cd7c0326146104aa57600080fd5b8063715018a6116100d1578063715018a6146103ed5780638da5cb5b1461040257806395d89b41146104205780639abc83201461043557600080fd5b80636352211e1461039a57806369d3e20e146103ba57806370a08231146103cd57600080fd5b806324a6ab0c1161016457806342842e0e1161013e57806342842e0e14610310578063518302271461033057806355f804b31461034a5780635bab26e21461036a57600080fd5b806324a6ab0c146102dc57806332cb6b0c146102f25780633ccfd60b1461030857600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806312bb0c6f1461027857806313966db51461029857806323b872dd146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611899565b610540565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610592565b6040516101f39190611915565b34801561022a57600080fd5b5061023e610239366004611928565b610624565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611956565b6106be565b005b34801561028457600080fd5b50610276610293366004611928565b6107d4565b3480156102a457600080fd5b506102ae600a5481565b6040519081526020016101f3565b3480156102c857600080fd5b506102766102d7366004611982565b610803565b3480156102e857600080fd5b506102ae600d5481565b3480156102fe57600080fd5b506102ae600b5481565b610276610834565b34801561031c57600080fd5b5061027661032b366004611982565b610964565b34801561033c57600080fd5b50600e546101e79060ff1681565b34801561035657600080fd5b50610276610365366004611a4f565b61097f565b34801561037657600080fd5b506101e7610385366004611a98565b600f6020526000908152604090205460ff1681565b3480156103a657600080fd5b5061023e6103b5366004611928565b6109cd565b6102766103c8366004611ab5565b610a44565b3480156103d957600080fd5b506102ae6103e8366004611a98565b610ba4565b3480156103f957600080fd5b50610276610c2b565b34801561040e57600080fd5b506006546001600160a01b031661023e565b34801561042c57600080fd5b50610211610c61565b34801561044157600080fd5b50610211610c70565b34801561045657600080fd5b50610276610465366004611ade565b610cfe565b34801561047657600080fd5b50610276610485366004611b1c565b610d09565b34801561049657600080fd5b506102116104a5366004611928565b610d41565b3480156104b657600080fd5b5060095461023e906001600160a01b031681565b3480156104d657600080fd5b506102ae600c5481565b3480156104ec57600080fd5b506101e76104fb366004611b9c565b610ead565b34801561050c57600080fd5b5061027661051b366004611a98565b610f91565b34801561052c57600080fd5b5061027661053b366004611a98565b61102c565b60006001600160e01b031982166380ac58cd60e01b148061057157506001600160e01b03198216635b5e139f60e01b145b8061058c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105a190611bca565b80601f01602080910402602001604051908101604052809291908181526020018280546105cd90611bca565b801561061a5780601f106105ef5761010080835404028352916020019161061a565b820191906000526020600020905b8154815290600101906020018083116105fd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c9826109cd565b9050806001600160a01b0316836001600160a01b031614156107375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610699565b336001600160a01b038216148061075357506107538133610ead565b6107c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610699565b6107cf838361107f565b505050565b6006546001600160a01b031633146107fe5760405162461bcd60e51b815260040161069990611c05565b600a55565b61080d33826110ed565b6108295760405162461bcd60e51b815260040161069990611c3a565b6107cf8383836111bc565b6006546001600160a01b0316331461085e5760405162461bcd60e51b815260040161069990611c05565b476000600a61086e836009611ca1565b6108789190611cd6565b90506000610887600a84611cd6565b9050600061089d6006546001600160a01b031690565b6001600160a01b03168360405160006040518083038185875af1925050503d80600081146108e7576040519150601f19603f3d011682016040523d82523d6000602084013e6108ec565b606091505b50506010546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610940576040519150601f19603f3d011682016040523d82523d6000602084013e610945565b606091505b505090508161095357600080fd5b8061095d57600080fd5b5050505050565b6107cf83838360405180602001604052806000815250610d09565b6006546001600160a01b031633146109a95760405162461bcd60e51b815260040161069990611c05565b80516109bc9060089060208401906117ea565b5050600e805460ff19166001179055565b6000818152600260205260408120546001600160a01b03168061058c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610699565b600b54816001600160801b0316600c54610a5e9190611cea565b10610aa45760405162461bcd60e51b81526020600482015260166024820152754e46543a2043616e6e6f74206d696e74206d6f72652160501b6044820152606401610699565b600d54816001600160801b0316600c54610abe9190611cea565b1115610b2a57806001600160801b0316600a54610adb9190611ca1565b341015610b2a5760405162461bcd60e51b815260206004820152601c60248201527f4e46543a204e6f7420656e6f756768204d696e74696e672046656521000000006044820152606401610699565b806001600160801b0316600c6000828254610b459190611cea565b90915550600090505b816001600160801b0316816001600160801b03161015610ba057610b76600780546001019055565b6000610b8160075490565b9050610b8d3382611358565b5080610b9881611d02565b915050610b4e565b5050565b60006001600160a01b038216610c0f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610699565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c555760405162461bcd60e51b815260040161069990611c05565b610c5f600061149a565b565b6060600180546105a190611bca565b60088054610c7d90611bca565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca990611bca565b8015610cf65780601f10610ccb57610100808354040283529160200191610cf6565b820191906000526020600020905b815481529060010190602001808311610cd957829003601f168201915b505050505081565b610ba03383836114ec565b610d1333836110ed565b610d2f5760405162461bcd60e51b815260040161069990611c3a565b610d3b848484846115bb565b50505050565b6000818152600260205260409020546060906001600160a01b0316610db45760405162461bcd60e51b8152602060048201526024808201527f4e46543a2055524920717565727920666f72206e6f6e6578697374656e74207460448201526337b5b2b760e11b6064820152608401610699565b600e5460ff1615610e1b57600060088054610dce90611bca565b905011610dea576040518060200160405280600081525061058c565b6008610df5836115ee565b604051602001610e06929190611d45565b60405160208183030381529060405292915050565b60088054610e2890611bca565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5490611bca565b8015610ea15780601f10610e7657610100808354040283529160200191610ea1565b820191906000526020600020905b815481529060010190602001808311610e8457829003601f168201915b50505050509050919050565b60095460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015610eff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f239190611e00565b6001600160a01b03161480610f5057506001600160a01b0383166000908152600f602052604090205460ff165b15610f5f57600191505061058c565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b03163314610fbb5760405162461bcd60e51b815260040161069990611c05565b6001600160a01b0381166110205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610699565b6110298161149a565b50565b6006546001600160a01b031633146110565760405162461bcd60e51b815260040161069990611c05565b6001600160a01b03166000908152600f60205260409020805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110b4826109cd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610699565b6000611171836109cd565b9050806001600160a01b0316846001600160a01b031614806111ac5750836001600160a01b03166111a184610624565b6001600160a01b0316145b80610f895750610f898185610ead565b826001600160a01b03166111cf826109cd565b6001600160a01b0316146112335760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610699565b6001600160a01b0382166112955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610699565b6112a060008261107f565b6001600160a01b03831660009081526003602052604081208054600192906112c9908490611e1d565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f7908490611cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166113ae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610699565b6000818152600260205260409020546001600160a01b0316156114135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610699565b6001600160a01b038216600090815260036020526040812080546001929061143c908490611cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561154e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610699565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115c68484846111bc565b6115d2848484846116ec565b610d3b5760405162461bcd60e51b815260040161069990611e34565b6060816116125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163c578061162681611e86565b91506116359050600a83611cd6565b9150611616565b60008167ffffffffffffffff811115611657576116576119c3565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b8415610f8957611696600183611e1d565b91506116a3600a86611ea1565b6116ae906030611cea565b60f81b8183815181106116c3576116c3611eb5565b60200101906001600160f81b031916908160001a9053506116e5600a86611cd6565b9450611685565b60006001600160a01b0384163b156117df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611730903390899088908890600401611ecb565b6020604051808303816000875af192505050801561176b575060408051601f3d908101601f1916820190925261176891810190611f08565b60015b6117c5573d808015611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b5080516117bd5760405162461bcd60e51b815260040161069990611e34565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f89565b506001949350505050565b8280546117f690611bca565b90600052602060002090601f016020900481019282611818576000855561185e565b82601f1061183157805160ff191683800117855561185e565b8280016001018555821561185e579182015b8281111561185e578251825591602001919060010190611843565b5061186a92915061186e565b5090565b5b8082111561186a576000815560010161186f565b6001600160e01b03198116811461102957600080fd5b6000602082840312156118ab57600080fd5b81356118b681611883565b9392505050565b60005b838110156118d85781810151838201526020016118c0565b83811115610d3b5750506000910152565b600081518084526119018160208601602086016118bd565b601f01601f19169290920160200192915050565b6020815260006118b660208301846118e9565b60006020828403121561193a57600080fd5b5035919050565b6001600160a01b038116811461102957600080fd5b6000806040838503121561196957600080fd5b823561197481611941565b946020939093013593505050565b60008060006060848603121561199757600080fd5b83356119a281611941565b925060208401356119b281611941565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119f4576119f46119c3565b604051601f8501601f19908116603f01168101908282118183101715611a1c57611a1c6119c3565b81604052809350858152868686011115611a3557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a6157600080fd5b813567ffffffffffffffff811115611a7857600080fd5b8201601f81018413611a8957600080fd5b610f89848235602084016119d9565b600060208284031215611aaa57600080fd5b81356118b681611941565b600060208284031215611ac757600080fd5b81356001600160801b03811681146118b657600080fd5b60008060408385031215611af157600080fd5b8235611afc81611941565b915060208301358015158114611b1157600080fd5b809150509250929050565b60008060008060808587031215611b3257600080fd5b8435611b3d81611941565b93506020850135611b4d81611941565b925060408501359150606085013567ffffffffffffffff811115611b7057600080fd5b8501601f81018713611b8157600080fd5b611b90878235602084016119d9565b91505092959194509250565b60008060408385031215611baf57600080fd5b8235611bba81611941565b91506020830135611b1181611941565b600181811c90821680611bde57607f821691505b60208210811415611bff57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611cbb57611cbb611c8b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611ce557611ce5611cc0565b500490565b60008219821115611cfd57611cfd611c8b565b500190565b60006001600160801b0380831681811415611d1f57611d1f611c8b565b6001019392505050565b60008151611d3b8185602086016118bd565b9290920192915050565b600080845481600182811c915080831680611d6157607f831692505b6020808410821415611d8157634e487b7160e01b86526022600452602486fd5b818015611d955760018114611da657611dd3565b60ff19861689528489019650611dd3565b60008b81526020902060005b86811015611dcb5781548b820152908501908301611db2565b505084890196505b505050505050611df7611de68286611d29565b64173539b7b760d91b815260050190565b95945050505050565b600060208284031215611e1257600080fd5b81516118b681611941565b600082821015611e2f57611e2f611c8b565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600019821415611e9a57611e9a611c8b565b5060010190565b600082611eb057611eb0611cc0565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efe908301846118e9565b9695505050505050565b600060208284031215611f1a57600080fd5b81516118b68161188356fea26469706673582212201dc2a6756f22cd66ea17757d5fa58579f74dd5db80d48d96a7447f47c26af4a964736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000115c00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000a69319fcbdf2e8dd7a768b9ce97db952cd92433d0000000000000000000000000000000000000000000000000000000000000037697066733a2f2f70516d515055726f485067645a7a58654a4859326b4d756872554d45474a4a61417a6b6552324a654e6f535a4b48742f000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063da947a3711610064578063da947a37146104ca578063e985e9c5146104e0578063f2fde38b14610500578063f73c814b1461052057600080fd5b8063a22cb4651461044a578063b88d4fde1461046a578063c87b56dd1461048a578063cd7c0326146104aa57600080fd5b8063715018a6116100d1578063715018a6146103ed5780638da5cb5b1461040257806395d89b41146104205780639abc83201461043557600080fd5b80636352211e1461039a57806369d3e20e146103ba57806370a08231146103cd57600080fd5b806324a6ab0c1161016457806342842e0e1161013e57806342842e0e14610310578063518302271461033057806355f804b31461034a5780635bab26e21461036a57600080fd5b806324a6ab0c146102dc57806332cb6b0c146102f25780633ccfd60b1461030857600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806312bb0c6f1461027857806313966db51461029857806323b872dd146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611899565b610540565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610592565b6040516101f39190611915565b34801561022a57600080fd5b5061023e610239366004611928565b610624565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611956565b6106be565b005b34801561028457600080fd5b50610276610293366004611928565b6107d4565b3480156102a457600080fd5b506102ae600a5481565b6040519081526020016101f3565b3480156102c857600080fd5b506102766102d7366004611982565b610803565b3480156102e857600080fd5b506102ae600d5481565b3480156102fe57600080fd5b506102ae600b5481565b610276610834565b34801561031c57600080fd5b5061027661032b366004611982565b610964565b34801561033c57600080fd5b50600e546101e79060ff1681565b34801561035657600080fd5b50610276610365366004611a4f565b61097f565b34801561037657600080fd5b506101e7610385366004611a98565b600f6020526000908152604090205460ff1681565b3480156103a657600080fd5b5061023e6103b5366004611928565b6109cd565b6102766103c8366004611ab5565b610a44565b3480156103d957600080fd5b506102ae6103e8366004611a98565b610ba4565b3480156103f957600080fd5b50610276610c2b565b34801561040e57600080fd5b506006546001600160a01b031661023e565b34801561042c57600080fd5b50610211610c61565b34801561044157600080fd5b50610211610c70565b34801561045657600080fd5b50610276610465366004611ade565b610cfe565b34801561047657600080fd5b50610276610485366004611b1c565b610d09565b34801561049657600080fd5b506102116104a5366004611928565b610d41565b3480156104b657600080fd5b5060095461023e906001600160a01b031681565b3480156104d657600080fd5b506102ae600c5481565b3480156104ec57600080fd5b506101e76104fb366004611b9c565b610ead565b34801561050c57600080fd5b5061027661051b366004611a98565b610f91565b34801561052c57600080fd5b5061027661053b366004611a98565b61102c565b60006001600160e01b031982166380ac58cd60e01b148061057157506001600160e01b03198216635b5e139f60e01b145b8061058c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105a190611bca565b80601f01602080910402602001604051908101604052809291908181526020018280546105cd90611bca565b801561061a5780601f106105ef5761010080835404028352916020019161061a565b820191906000526020600020905b8154815290600101906020018083116105fd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c9826109cd565b9050806001600160a01b0316836001600160a01b031614156107375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610699565b336001600160a01b038216148061075357506107538133610ead565b6107c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610699565b6107cf838361107f565b505050565b6006546001600160a01b031633146107fe5760405162461bcd60e51b815260040161069990611c05565b600a55565b61080d33826110ed565b6108295760405162461bcd60e51b815260040161069990611c3a565b6107cf8383836111bc565b6006546001600160a01b0316331461085e5760405162461bcd60e51b815260040161069990611c05565b476000600a61086e836009611ca1565b6108789190611cd6565b90506000610887600a84611cd6565b9050600061089d6006546001600160a01b031690565b6001600160a01b03168360405160006040518083038185875af1925050503d80600081146108e7576040519150601f19603f3d011682016040523d82523d6000602084013e6108ec565b606091505b50506010546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610940576040519150601f19603f3d011682016040523d82523d6000602084013e610945565b606091505b505090508161095357600080fd5b8061095d57600080fd5b5050505050565b6107cf83838360405180602001604052806000815250610d09565b6006546001600160a01b031633146109a95760405162461bcd60e51b815260040161069990611c05565b80516109bc9060089060208401906117ea565b5050600e805460ff19166001179055565b6000818152600260205260408120546001600160a01b03168061058c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610699565b600b54816001600160801b0316600c54610a5e9190611cea565b10610aa45760405162461bcd60e51b81526020600482015260166024820152754e46543a2043616e6e6f74206d696e74206d6f72652160501b6044820152606401610699565b600d54816001600160801b0316600c54610abe9190611cea565b1115610b2a57806001600160801b0316600a54610adb9190611ca1565b341015610b2a5760405162461bcd60e51b815260206004820152601c60248201527f4e46543a204e6f7420656e6f756768204d696e74696e672046656521000000006044820152606401610699565b806001600160801b0316600c6000828254610b459190611cea565b90915550600090505b816001600160801b0316816001600160801b03161015610ba057610b76600780546001019055565b6000610b8160075490565b9050610b8d3382611358565b5080610b9881611d02565b915050610b4e565b5050565b60006001600160a01b038216610c0f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610699565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c555760405162461bcd60e51b815260040161069990611c05565b610c5f600061149a565b565b6060600180546105a190611bca565b60088054610c7d90611bca565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca990611bca565b8015610cf65780601f10610ccb57610100808354040283529160200191610cf6565b820191906000526020600020905b815481529060010190602001808311610cd957829003601f168201915b505050505081565b610ba03383836114ec565b610d1333836110ed565b610d2f5760405162461bcd60e51b815260040161069990611c3a565b610d3b848484846115bb565b50505050565b6000818152600260205260409020546060906001600160a01b0316610db45760405162461bcd60e51b8152602060048201526024808201527f4e46543a2055524920717565727920666f72206e6f6e6578697374656e74207460448201526337b5b2b760e11b6064820152608401610699565b600e5460ff1615610e1b57600060088054610dce90611bca565b905011610dea576040518060200160405280600081525061058c565b6008610df5836115ee565b604051602001610e06929190611d45565b60405160208183030381529060405292915050565b60088054610e2890611bca565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5490611bca565b8015610ea15780601f10610e7657610100808354040283529160200191610ea1565b820191906000526020600020905b815481529060010190602001808311610e8457829003601f168201915b50505050509050919050565b60095460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015610eff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f239190611e00565b6001600160a01b03161480610f5057506001600160a01b0383166000908152600f602052604090205460ff165b15610f5f57600191505061058c565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b03163314610fbb5760405162461bcd60e51b815260040161069990611c05565b6001600160a01b0381166110205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610699565b6110298161149a565b50565b6006546001600160a01b031633146110565760405162461bcd60e51b815260040161069990611c05565b6001600160a01b03166000908152600f60205260409020805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110b4826109cd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610699565b6000611171836109cd565b9050806001600160a01b0316846001600160a01b031614806111ac5750836001600160a01b03166111a184610624565b6001600160a01b0316145b80610f895750610f898185610ead565b826001600160a01b03166111cf826109cd565b6001600160a01b0316146112335760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610699565b6001600160a01b0382166112955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610699565b6112a060008261107f565b6001600160a01b03831660009081526003602052604081208054600192906112c9908490611e1d565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f7908490611cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166113ae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610699565b6000818152600260205260409020546001600160a01b0316156114135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610699565b6001600160a01b038216600090815260036020526040812080546001929061143c908490611cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561154e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610699565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115c68484846111bc565b6115d2848484846116ec565b610d3b5760405162461bcd60e51b815260040161069990611e34565b6060816116125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163c578061162681611e86565b91506116359050600a83611cd6565b9150611616565b60008167ffffffffffffffff811115611657576116576119c3565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b8415610f8957611696600183611e1d565b91506116a3600a86611ea1565b6116ae906030611cea565b60f81b8183815181106116c3576116c3611eb5565b60200101906001600160f81b031916908160001a9053506116e5600a86611cd6565b9450611685565b60006001600160a01b0384163b156117df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611730903390899088908890600401611ecb565b6020604051808303816000875af192505050801561176b575060408051601f3d908101601f1916820190925261176891810190611f08565b60015b6117c5573d808015611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b5080516117bd5760405162461bcd60e51b815260040161069990611e34565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f89565b506001949350505050565b8280546117f690611bca565b90600052602060002090601f016020900481019282611818576000855561185e565b82601f1061183157805160ff191683800117855561185e565b8280016001018555821561185e579182015b8281111561185e578251825591602001919060010190611843565b5061186a92915061186e565b5090565b5b8082111561186a576000815560010161186f565b6001600160e01b03198116811461102957600080fd5b6000602082840312156118ab57600080fd5b81356118b681611883565b9392505050565b60005b838110156118d85781810151838201526020016118c0565b83811115610d3b5750506000910152565b600081518084526119018160208601602086016118bd565b601f01601f19169290920160200192915050565b6020815260006118b660208301846118e9565b60006020828403121561193a57600080fd5b5035919050565b6001600160a01b038116811461102957600080fd5b6000806040838503121561196957600080fd5b823561197481611941565b946020939093013593505050565b60008060006060848603121561199757600080fd5b83356119a281611941565b925060208401356119b281611941565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119f4576119f46119c3565b604051601f8501601f19908116603f01168101908282118183101715611a1c57611a1c6119c3565b81604052809350858152868686011115611a3557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a6157600080fd5b813567ffffffffffffffff811115611a7857600080fd5b8201601f81018413611a8957600080fd5b610f89848235602084016119d9565b600060208284031215611aaa57600080fd5b81356118b681611941565b600060208284031215611ac757600080fd5b81356001600160801b03811681146118b657600080fd5b60008060408385031215611af157600080fd5b8235611afc81611941565b915060208301358015158114611b1157600080fd5b809150509250929050565b60008060008060808587031215611b3257600080fd5b8435611b3d81611941565b93506020850135611b4d81611941565b925060408501359150606085013567ffffffffffffffff811115611b7057600080fd5b8501601f81018713611b8157600080fd5b611b90878235602084016119d9565b91505092959194509250565b60008060408385031215611baf57600080fd5b8235611bba81611941565b91506020830135611b1181611941565b600181811c90821680611bde57607f821691505b60208210811415611bff57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611cbb57611cbb611c8b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611ce557611ce5611cc0565b500490565b60008219821115611cfd57611cfd611c8b565b500190565b60006001600160801b0380831681811415611d1f57611d1f611c8b565b6001019392505050565b60008151611d3b8185602086016118bd565b9290920192915050565b600080845481600182811c915080831680611d6157607f831692505b6020808410821415611d8157634e487b7160e01b86526022600452602486fd5b818015611d955760018114611da657611dd3565b60ff19861689528489019650611dd3565b60008b81526020902060005b86811015611dcb5781548b820152908501908301611db2565b505084890196505b505050505050611df7611de68286611d29565b64173539b7b760d91b815260050190565b95945050505050565b600060208284031215611e1257600080fd5b81516118b681611941565b600082821015611e2f57611e2f611c8b565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600019821415611e9a57611e9a611c8b565b5060010190565b600082611eb057611eb0611cc0565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efe908301846118e9565b9695505050505050565b600060208284031215611f1a57600080fd5b81516118b68161188356fea26469706673582212201dc2a6756f22cd66ea17757d5fa58579f74dd5db80d48d96a7447f47c26af4a964736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000115c00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000a69319fcbdf2e8dd7a768b9ce97db952cd92433d0000000000000000000000000000000000000000000000000000000000000037697066733a2f2f70516d515055726f485067645a7a58654a4859326b4d756872554d45474a4a61417a6b6552324a654e6f535a4b48742f000000000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://pQmQPUroHPgdZzXeJHY2kMuhrUMEGJJaAzkeR2JeNoSZKHt/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [2] : _MAX_SUPPLY (uint256): 4444
Arg [3] : _freeNumber (uint256): 222
Arg [4] : _devWallet (address): 0xa69319fCBDF2E8DD7A768b9ce97db952cd92433d
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000de
Arg [4] : 000000000000000000000000a69319fcbdf2e8dd7a768b9ce97db952cd92433d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000037
Arg [6] : 697066733a2f2f70516d515055726f485067645a7a58654a4859326b4d756872
Arg [7] : 554d45474a4a61417a6b6552324a654e6f535a4b48742f000000000000000000
Deployed Bytecode Sourcemap
38785:2996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25574:305:0;;;;;;;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;28078:221:0;1550:203:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;41144:100;;;;;;;;;;-1:-1:-1;41144:100:0;;;;;:::i;:::-;;:::i;39030:35::-;;;;;;;;;;;;;;;;;;;2360:25:1;;;2348:2;2333:18;39030:35:0;2214:177:1;28828:339:0;;;;;;;;;;-1:-1:-1;28828:339:0;;;;;:::i;:::-;;:::i;39145:25::-;;;;;;;;;;;;;;;;39078;;;;;;;;;;;;;;;;41252:380;;;:::i;29238:185::-;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;39177:28::-;;;;;;;;;;-1:-1:-1;39177:28:0;;;;;;;;40278:131;;;;;;;;;;-1:-1:-1;40278:131:0;;;;;:::i;:::-;;:::i;39214:44::-;;;;;;;;;;-1:-1:-1;39214:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26213:239;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;39669:487::-;;;;;;:::i;:::-;;:::i;25943:208::-;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;26688:104;;;;;;;;;;;;;:::i;38954:21::-;;;;;;;;;;;;;:::i;28371:155::-;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;29494:328::-;;;;;;;;;;-1:-1:-1;29494:328:0;;;;;:::i;:::-;;:::i;40417:355::-;;;;;;;;;;-1:-1:-1;40417:355:0;;;;;:::i;:::-;;:::i;38982:35::-;;;;;;;;;;-1:-1:-1;38982:35:0;;;;-1:-1:-1;;;;;38982:35:0;;;39110:28;;;;;;;;;;;;;;;;40780:356;;;;;;;;;;-1:-1:-1;40780:356:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;41640:138::-;;;;;;;;;;-1:-1:-1;41640:138:0;;;;;:::i;:::-;;:::i;25574:305::-;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;25574:305;-1:-1:-1;;25574:305:0:o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;28174:73;;;;-1:-1:-1;;;28174:73:0;;6841:2:1;28174:73:0;;;6823:21:1;6880:2;6860:18;;;6853:30;6919:34;6899:18;;;6892:62;-1:-1:-1;;;6970:18:1;;;6963:42;7022:19;;28174:73:0;;;;;;;;;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;;27732:57;;;;-1:-1:-1;;;27732:57:0;;7254:2:1;27732:57:0;;;7236:21:1;7293:2;7273:18;;;7266:30;7332:34;7312:18;;;7305:62;-1:-1:-1;;;7383:18:1;;;7376:31;7424:19;;27732:57:0;7052:397:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;40780:356;:::i;27849:37::-;27802:168;;;;-1:-1:-1;;;27802:168:0;;7656:2:1;27802:168:0;;;7638:21:1;7695:2;7675:18;;;7668:30;7734:34;7714:18;;;7707:62;7805:26;7785:18;;;7778:54;7849:19;;27802:168:0;7454:420:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;41144:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41217:7:::1;:19:::0;41144:100::o;28828:339::-;29023:41;4348:10;29056:7;29023:18;:41::i;:::-;29015:103;;;;-1:-1:-1;;;29015:103:0;;;;;;;:::i;:::-;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;41252:380::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41333:21:::1;41310:20;41399:2;41384:14;41333:21:::0;41397:1:::1;41384:14;:::i;:::-;:17;;;;:::i;:::-;41365:36:::0;-1:-1:-1;41412:14:0::1;41429:15;41442:2;41429:12:::0;:15:::1;:::i;:::-;41412:32;;41456:7;41477;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;41477:7:::1;-1:-1:-1::0;;;;;41469:21:0::1;41498:8;41469:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;41545:9:0::1;::::0;41537:42:::1;::::0;41455:56;;-1:-1:-1;41523:8:0::1;::::0;-1:-1:-1;;;;;41545:9:0;;::::1;::::0;41568:6;;41523:8;41537:42;41523:8;41537:42;41568:6;41545:9;41537:42:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41522:57;;;41598:2;41590:11;;;::::0;::::1;;41620:3;41612:12;;;::::0;::::1;;41299:333;;;;;41252:380::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;40278:131::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40354:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;40386:8:0::1;:15:::0;;-1:-1:-1;;40386:15:0::1;40397:4;40386:15;::::0;;40278:131::o;26213:239::-;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;26356:19;26348:73;;;;-1:-1:-1;;;26348:73:0;;9632:2:1;26348:73:0;;;9614:21:1;9671:2;9651:18;;;9644:30;9710:34;9690:18;;;9683:62;-1:-1:-1;;;9761:18:1;;;9754:39;9810:19;;26348:73:0;9430:405:1;39669:487:0;39762:10;;39751:8;-1:-1:-1;;;;;39735:24:0;:13;;:24;;;;:::i;:::-;:37;39727:72;;;;-1:-1:-1;;;39727:72:0;;10175:2:1;39727:72:0;;;10157:21:1;10214:2;10194:18;;;10187:30;-1:-1:-1;;;10233:18:1;;;10226:52;10295:18;;39727:72:0;9973:346:1;39727:72:0;39839:10;;39828:8;-1:-1:-1;;;;;39812:24:0;:13;;:24;;;;:::i;:::-;:37;39808:124;;;39891:8;-1:-1:-1;;;;;39881:18:0;:7;;:18;;;;:::i;:::-;39868:9;:31;;39860:72;;;;-1:-1:-1;;;39860:72:0;;10526:2:1;39860:72:0;;;10508:21:1;10565:2;10545:18;;;10538:30;10604;10584:18;;;10577:58;10652:18;;39860:72:0;10324:352:1;39860:72:0;39958:8;-1:-1:-1;;;;;39941:25:0;:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;39979:9:0;;-1:-1:-1;39975:167:0;39994:8;-1:-1:-1;;;;;39992:10:0;:1;-1:-1:-1;;;;;39992:10:0;;39975:167;;;40020:21;:9;1083:19;;1101:1;1083:19;;;994:127;40020:21;40052:18;40073:19;:9;964:14;;872:114;40073:19;40052:40;;40103:29;40109:10;40121;40103:5;:29::i;:::-;-1:-1:-1;40005:3:0;;;;:::i;:::-;;;;39975:167;;;;39669:487;:::o;25943:208::-;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;11114:2:1;26035:74:0;;;11096:21:1;11153:2;11133:18;;;11126:30;11192:34;11172:18;;;11165:62;-1:-1:-1;;;11243:18:1;;;11236:40;11293:19;;26035:74:0;10912:406:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;38954:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28371:155::-;28466:52;4348:10;28499:8;28509;28466:18;:52::i;29494:328::-;29669:41;4348:10;29702:7;29669:18;:41::i;:::-;29661:103;;;;-1:-1:-1;;;29661:103:0;;;;;;;:::i;:::-;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;40417:355::-;31397:4;31421:16;;;:7;:16;;;;;;40491:13;;-1:-1:-1;;;;;31421:16:0;40517:66;;;;-1:-1:-1;;;40517:66:0;;11525:2:1;40517:66:0;;;11507:21:1;11564:2;11544:18;;;11537:30;11603:34;11583:18;;;11576:62;-1:-1:-1;;;11654:18:1;;;11647:34;11698:19;;40517:66:0;11323:400:1;40517:66:0;40598:8;;;;40594:170;;;40650:1;40632:7;40626:21;;;;;:::i;:::-;;;:25;:96;;;;;;;;;;;;;;;;;40678:7;40687:19;:8;:17;:19::i;:::-;40661:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40619:103;40417:355;-1:-1:-1;;40417:355:0:o;40594:170::-;40757:7;40750:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40417:355;;;:::o;40780:356::-;40945:20;;40989:29;;-1:-1:-1;;;40989:29:0;;-1:-1:-1;;;;;1714:32:1;;;40989:29:0;;;1696:51:1;40870:4:0;;40945:20;;;40981:50;;;;40945:20;;40989:21;;1669:18:1;;40989:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40981:50:0;;:76;;;-1:-1:-1;;;;;;41035:22:0;;;;;;:12;:22;;;;;;;;40981:76;40977:93;;;41066:4;41059:11;;;;;40977:93;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41088:40;41081:47;40780:356;-1:-1:-1;;;;40780:356:0:o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;13955:2:1;6534:73:0::1;::::0;::::1;13937:21:1::0;13994:2;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;-1:-1:-1;;;14084:18:1;;;14077:36;14130:19;;6534:73:0::1;13753:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;41640:138::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41744:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;41714:56:0;::::1;41744:26;::::0;;::::1;41743:27;41714:56;::::0;;41640:138::o;35478:174::-;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;31626:348::-;31719:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;31736:73;;;;-1:-1:-1;;;31736:73:0;;14362:2:1;31736:73:0;;;14344:21:1;14401:2;14381:18;;;14374:30;14440:34;14420:18;;;14413:62;-1:-1:-1;;;14491:18:1;;;14484:42;14543:19;;31736:73:0;14160:408:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;34735:625::-;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;14775:2:1;34859:81:0;;;14757:21:1;14814:2;14794:18;;;14787:30;14853:34;14833:18;;;14826:62;-1:-1:-1;;;14904:18:1;;;14897:35;14949:19;;34859:81:0;14573:401:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;15181:2:1;34951:65:0;;;15163:21:1;15220:2;15200:18;;;15193:30;15259:34;15239:18;;;15232:62;-1:-1:-1;;;15310:18:1;;;15303:34;15354:19;;34951:65:0;14979:400:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;27671:341;27601:411;;:::o;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;15716:2:1;33382:61:0;;;15698:21:1;;;15735:18;;;15728:30;15794:34;15774:18;;;15767:62;15846:18;;33382:61:0;15514:356:1;33382:61:0;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;33454:58;;;;-1:-1:-1;;;33454:58:0;;16077:2:1;33454:58:0;;;16059:21:1;16116:2;16096:18;;;16089:30;16155;16135:18;;;16128:58;16203:18;;33454:58:0;15875:352:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;39975:167;39669:487;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35794:315::-;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;;35932:55;;;;-1:-1:-1;;;35932:55:0;;16434:2:1;35932:55:0;;;16416:21:1;16473:2;16453:18;;;16446:30;16512:27;16492:18;;;16485:55;16557:18;;35932:55:0;16232:349:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;540::1;;;36060::0;;513:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;36674:799;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:13:0;;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:632;3054:5;3084:18;3125:2;3117:6;3114:14;3111:40;;;3131:18;;:::i;:::-;3206:2;3200:9;3174:2;3260:15;;-1:-1:-1;;3256:24:1;;;3282:2;3252:33;3248:42;3236:55;;;3306:18;;;3326:22;;;3303:46;3300:72;;;3352:18;;:::i;:::-;3392:10;3388:2;3381:22;3421:6;3412:15;;3451:6;3443;3436:22;3491:3;3482:6;3477:3;3473:16;3470:25;3467:45;;;3508:1;3505;3498:12;3467:45;3558:6;3553:3;3546:4;3538:6;3534:17;3521:44;3613:1;3606:4;3597:6;3589;3585:19;3581:30;3574:41;;;;2989:632;;;;;:::o;3626:451::-;3695:6;3748:2;3736:9;3727:7;3723:23;3719:32;3716:52;;;3764:1;3761;3754:12;3716:52;3804:9;3791:23;3837:18;3829:6;3826:30;3823:50;;;3869:1;3866;3859:12;3823:50;3892:22;;3945:4;3937:13;;3933:27;-1:-1:-1;3923:55:1;;3974:1;3971;3964:12;3923:55;3997:74;4063:7;4058:2;4045:16;4040:2;4036;4032:11;3997:74;:::i;4082:247::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4249:9;4236:23;4268:31;4293:5;4268:31;:::i;4334:301::-;4393:6;4446:2;4434:9;4425:7;4421:23;4417:32;4414:52;;;4462:1;4459;4452:12;4414:52;4501:9;4488:23;-1:-1:-1;;;;;4544:5:1;4540:46;4533:5;4530:57;4520:85;;4601:1;4598;4591:12;4640:416;4705:6;4713;4766:2;4754:9;4745:7;4741:23;4737:32;4734:52;;;4782:1;4779;4772:12;4734:52;4821:9;4808:23;4840:31;4865:5;4840:31;:::i;:::-;4890:5;-1:-1:-1;4947:2:1;4932:18;;4919:32;4989:15;;4982:23;4970:36;;4960:64;;5020:1;5017;5010:12;4960:64;5043:7;5033:17;;;4640:416;;;;;:::o;5061:795::-;5156:6;5164;5172;5180;5233:3;5221:9;5212:7;5208:23;5204:33;5201:53;;;5250:1;5247;5240:12;5201:53;5289:9;5276:23;5308:31;5333:5;5308:31;:::i;:::-;5358:5;-1:-1:-1;5415:2:1;5400:18;;5387:32;5428:33;5387:32;5428:33;:::i;:::-;5480:7;-1:-1:-1;5534:2:1;5519:18;;5506:32;;-1:-1:-1;5589:2:1;5574:18;;5561:32;5616:18;5605:30;;5602:50;;;5648:1;5645;5638:12;5602:50;5671:22;;5724:4;5716:13;;5712:27;-1:-1:-1;5702:55:1;;5753:1;5750;5743:12;5702:55;5776:74;5842:7;5837:2;5824:16;5819:2;5815;5811:11;5776:74;:::i;:::-;5766:84;;;5061:795;;;;;;;:::o;5861:388::-;5929:6;5937;5990:2;5978:9;5969:7;5965:23;5961:32;5958:52;;;6006:1;6003;5996:12;5958:52;6045:9;6032:23;6064:31;6089:5;6064:31;:::i;:::-;6114:5;-1:-1:-1;6171:2:1;6156:18;;6143:32;6184:33;6143:32;6184:33;:::i;6254:380::-;6333:1;6329:12;;;;6376;;;6397:61;;6451:4;6443:6;6439:17;6429:27;;6397:61;6504:2;6496:6;6493:14;6473:18;6470:38;6467:161;;;6550:10;6545:3;6541:20;6538:1;6531:31;6585:4;6582:1;6575:15;6613:4;6610:1;6603:15;6467:161;;6254:380;;;:::o;7879:356::-;8081:2;8063:21;;;8100:18;;;8093:30;8159:34;8154:2;8139:18;;8132:62;8226:2;8211:18;;7879:356::o;8240:413::-;8442:2;8424:21;;;8481:2;8461:18;;;8454:30;8520:34;8515:2;8500:18;;8493:62;-1:-1:-1;;;8586:2:1;8571:18;;8564:47;8643:3;8628:19;;8240:413::o;8658:127::-;8719:10;8714:3;8710:20;8707:1;8700:31;8750:4;8747:1;8740:15;8774:4;8771:1;8764:15;8790:168;8830:7;8896:1;8892;8888:6;8884:14;8881:1;8878:21;8873:1;8866:9;8859:17;8855:45;8852:71;;;8903:18;;:::i;:::-;-1:-1:-1;8943:9:1;;8790:168::o;8963:127::-;9024:10;9019:3;9015:20;9012:1;9005:31;9055:4;9052:1;9045:15;9079:4;9076:1;9069:15;9095:120;9135:1;9161;9151:35;;9166:18;;:::i;:::-;-1:-1:-1;9200:9:1;;9095:120::o;9840:128::-;9880:3;9911:1;9907:6;9904:1;9901:13;9898:39;;;9917:18;;:::i;:::-;-1:-1:-1;9953:9:1;;9840:128::o;10681:226::-;10720:3;-1:-1:-1;;;;;10817:2:1;10810:5;10806:14;10844:2;10835:7;10832:15;10829:41;;;10850:18;;:::i;:::-;10899:1;10886:15;;10681:226;-1:-1:-1;;;10681:226:1:o;11854:185::-;11896:3;11934:5;11928:12;11949:52;11994:6;11989:3;11982:4;11975:5;11971:16;11949:52;:::i;:::-;12017:16;;;;;11854:185;-1:-1:-1;;11854:185:1:o;12162:1301::-;12439:3;12468:1;12501:6;12495:13;12531:3;12553:1;12581:9;12577:2;12573:18;12563:28;;12641:2;12630:9;12626:18;12663;12653:61;;12707:4;12699:6;12695:17;12685:27;;12653:61;12733:2;12781;12773:6;12770:14;12750:18;12747:38;12744:165;;;-1:-1:-1;;;12808:33:1;;12864:4;12861:1;12854:15;12894:4;12815:3;12882:17;12744:165;12925:18;12952:104;;;;13070:1;13065:320;;;;12918:467;;12952:104;-1:-1:-1;;12985:24:1;;12973:37;;13030:16;;;;-1:-1:-1;12952:104:1;;13065:320;11801:1;11794:14;;;11838:4;11825:18;;13160:1;13174:165;13188:6;13185:1;13182:13;13174:165;;;13266:14;;13253:11;;;13246:35;13309:16;;;;13203:10;;13174:165;;;13178:3;;13368:6;13363:3;13359:16;13352:23;;12918:467;;;;;;;13401:56;13426:30;13452:3;13444:6;13426:30;:::i;:::-;-1:-1:-1;;;12104:20:1;;12149:1;12140:11;;12044:113;13401:56;13394:63;12162:1301;-1:-1:-1;;;;;12162:1301:1:o;13468:280::-;13567:6;13620:2;13608:9;13599:7;13595:23;13591:32;13588:52;;;13636:1;13633;13626:12;13588:52;13668:9;13662:16;13687:31;13712:5;13687:31;:::i;15384:125::-;15424:4;15452:1;15449;15446:8;15443:34;;;15457:18;;:::i;:::-;-1:-1:-1;15494:9:1;;15384:125::o;16586:414::-;16788:2;16770:21;;;16827:2;16807:18;;;16800:30;16866:34;16861:2;16846:18;;16839:62;-1:-1:-1;;;16932:2:1;16917:18;;16910:48;16990:3;16975:19;;16586:414::o;17005:135::-;17044:3;-1:-1:-1;;17065:17:1;;17062:43;;;17085:18;;:::i;:::-;-1:-1:-1;17132:1:1;17121:13;;17005:135::o;17145:112::-;17177:1;17203;17193:35;;17208:18;;:::i;:::-;-1:-1:-1;17242:9:1;;17145:112::o;17262:127::-;17323:10;17318:3;17314:20;17311:1;17304:31;17354:4;17351:1;17344:15;17378:4;17375:1;17368:15;17394:500;-1:-1:-1;;;;;17663:15:1;;;17645:34;;17715:15;;17710:2;17695:18;;17688:43;17762:2;17747:18;;17740:34;;;17810:3;17805:2;17790:18;;17783:31;;;17588:4;;17831:57;;17868:19;;17860:6;17831:57;:::i;:::-;17823:65;17394:500;-1:-1:-1;;;;;;17394:500:1:o;17899:249::-;17968:6;18021:2;18009:9;18000:7;17996:23;17992:32;17989:52;;;18037:1;18034;18027:12;17989:52;18069:9;18063:16;18088:30;18112:5;18088:30;:::i
Swarm Source
ipfs://1dc2a6756f22cd66ea17757d5fa58579f74dd5db80d48d96a7447f47c26af4a9
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.