ERC-721
Overview
Max Total Supply
148 CWU
Holders
129
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CWULoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Come_with_us
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-27 */ // // ▄▀▄▄▄▄ ▄▀▀▀▀▄ ▄▀▀▄ ▄▀▄ ▄▀▀█▄▄▄▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▀▄ ▄▀▀▀█▀▀▄ ▄▀▀▄ ▄▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀▀▀▄ // █ █ ▌ █ █ █ █ ▀ █ ▐ ▄▀ ▐ █ █ ▐ █ █ █ █ █ █ ▐ █ █ ▄▀ █ █ █ █ █ ▐ // ▐ █ █ █ ▐ █ █ █▄▄▄▄▄ ▐ █ █ ▐ █ ▐ ▐ █ ▐ █▄▄▄█ ▐ █ █ ▀▄ // █ ▀▄ ▄▀ █ █ █ ▌ █ ▄ █ █ █ █ █ █ █ ▀▄ █ // ▄▀▄▄▄▄▀ ▀▀▀▀ ▄▀ ▄▀ ▄▀▄▄▄▄ ▀▄▀ ▀▄ ▄▀ ▄▀▀▀▀▀▄ ▄▀ ▄▀ ▄▀ ▀▄▄▄▄▀ █▀▀▀ // █ ▐ █ █ █ ▐ ▀ █ █ █ █ █ ▐ // ▐ ▐ ▐ ▐ ▐ ▐ ▐ ▐ ▐ // // // // // // // // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/comewithus.sol // ▄▀▄▄▄▄ ▄▀▀▀▀▄ ▄▀▀▄ ▄▀▄ ▄▀▀█▄▄▄▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▀▄ ▄▀▀▀█▀▀▄ ▄▀▀▄ ▄▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀▀▀▄ // █ █ ▌ █ █ █ █ ▀ █ ▐ ▄▀ ▐ █ █ ▐ █ █ █ █ █ █ ▐ █ █ ▄▀ █ █ █ █ █ ▐ // ▐ █ █ █ ▐ █ █ █▄▄▄▄▄ ▐ █ █ ▐ █ ▐ ▐ █ ▐ █▄▄▄█ ▐ █ █ ▀▄ // █ ▀▄ ▄▀ █ █ █ ▌ █ ▄ █ █ █ █ █ █ █ ▀▄ █ // ▄▀▄▄▄▄▀ ▀▀▀▀ ▄▀ ▄▀ ▄▀▄▄▄▄ ▀▄▀ ▀▄ ▄▀ ▄▀▀▀▀▀▄ ▄▀ ▄▀ ▄▀ ▀▄▄▄▄▀ █▀▀▀ // █ ▐ █ █ █ ▐ ▀ █ █ █ █ █ ▐ // ▐ ▐ ▐ ▐ ▐ ▐ ▐ ▐ ▐ // // // // // // // // //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract Come_with_us is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 666; uint256 public publicPrice = 0.004 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 1; uint256 constant public PUBLIC_MINT_LIMIT = 2; string private revealedURI = "ipfs://QmR1QdeK1KPNtVty5XGJXru9iwH52N5PFbhUkdHCTxpLQw/"; string private CONTRACT_URI = "ipfs://2WZHKC8YYNBRKTWPNMKGMV16GW9BEUQ4C3"; bool public paused = false; bool public revealed = true; bool public freeSale = false; bool public publicSale = false; address constant internal DEV_ADDRESS = 0xe576dB72615a6A3c4805f774F3461227D9e5654D; mapping(address => bool) public userMintedFree; mapping(address => uint256) public numUserMints; constructor(string memory _name, string memory _symbol, string memory _baseUri) ERC721A("Come with us", "CWU") { } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "failed try"); } else if (msg.value < price) { revert("not enough bro"); } } function Free_Demons(uint256 quantity) external payable mintCompliance(quantity) { require(freeSale, "not free fool"); require(msg.value == 0, "this is free now"); require(quantity == 1, "only #1 bro"); uint256 newSupply = totalSupply() + quantity; require(newSupply <= 100, "you missed it"); require(!userMintedFree[msg.sender], "you cant mint more free"); userMintedFree[msg.sender] = true; if(newSupply == 100) { freeSale = false; publicSale = true; } _safeMint(msg.sender, quantity); } function Buy_Demon(uint256 quantity) external payable mintCompliance(quantity) { require(publicSale, "Public sale inactive"); require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high"); uint256 price = publicPrice; uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); refundOverpay(price * quantity); numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); } function thedevilhimeself(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed) { return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json")); } else { return revealedURI; } } function contractURI() public view returns (string memory) { return CONTRACT_URI; } function cost(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function Images(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } function Contract(string memory _contractURI) private onlyOwner { CONTRACT_URI = _contractURI; } function PAUSED(bool _state) public onlyOwner { paused = _state; } function REVEAL(bool _state) public onlyOwner { revealed = _state; } function PUBLIC(bool _state) public onlyOwner { publicSale = _state; freeSale = !_state; } function FREE(bool _state) public onlyOwner { freeSale = _state; publicSale = !_state; } function OWNER() external payable onlyOwner { uint256 currBalance = address(this).balance; (bool succ, ) = payable(DEV_ADDRESS).call{ value: (currBalance * 10000) / 10000 }("0xe576dB72615a6A3c4805f774F3461227D9e5654D"); require(succ, "Dev transfer failed"); } function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Buy_Demon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Free_Demons","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"Images","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"PAUSED","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"PUBLIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"REVEAL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"cost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"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":"address","name":"_owner","type":"address"}],"name":"thedevilhimeself","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
660e35fa931a000060095560e06040526036608081815290620026d260a03980516200003491600a9160209091019062000192565b50604051806060016040528060298152602001620026a96029913980516200006591600b9160209091019062000192565b50600c805463ffffffff19166101001790553480156200008457600080fd5b506040516200270838038062002708833981016040819052620000a791620002ef565b6040518060400160405280600c81526020016b436f6d65207769746820757360a01b8152506040518060400160405280600381526020016243575560e81b81525062000102620000fc6200013e60201b60201c565b62000142565b81516200011790600390602085019062000192565b5080516200012d90600490602084019062000192565b506001805550620003d39350505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001a09062000380565b90600052602060002090601f016020900481019282620001c457600085556200020f565b82601f10620001df57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020f578251825591602001919060010190620001f2565b506200021d92915062000221565b5090565b5b808211156200021d576000815560010162000222565b600082601f8301126200024a57600080fd5b81516001600160401b0380821115620002675762000267620003bd565b604051601f8301601f19908116603f01168101908282118183101715620002925762000292620003bd565b81604052838152602092508683858801011115620002af57600080fd5b600091505b83821015620002d35785820183015181830184015290820190620002b4565b83821115620002e55760008385830101525b9695505050505050565b6000806000606084860312156200030557600080fd5b83516001600160401b03808211156200031d57600080fd5b6200032b8783880162000238565b945060208601519150808211156200034257600080fd5b620003508783880162000238565b935060408601519150808211156200036757600080fd5b50620003768682870162000238565b9150509250925092565b600181811c908216806200039557607f821691505b60208210811415620003b757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6122c680620003e36000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063a945bf80116100ab578063c87b56dd1161006f578063c87b56dd14610659578063e8a3d48514610679578063e985e9c51461068e578063f2fde38b146106d7578063ff524785146106f757600080fd5b8063a945bf80146105c1578063ac1566e0146105d7578063b6561090146105f7578063b88d4fde14610624578063bceae77b1461064457600080fd5b80639097548d116100f25780639097548d1461052c57806395d89b411461054c5780639ab8756c14610561578063a22cb46514610581578063a4b41a15146105a157600080fd5b8063715018a6146104995780637aeb7242146104ae5780637b47e84e146104db5780638da5cb5b146104ee5780639007bd721461050c57600080fd5b80632fecf20b116101bc57806357f311bd1161018057806357f311bd146103ef5780635c975abb1461040f5780636352211e1461042957806364f640761461044957806370a082311461047957600080fd5b80632fecf20b1461036457806332cb6b0c1461037957806333bc1c5c1461038f57806342842e0e146103b057806351830227146103d057600080fd5b8063095ea7b311610203578063095ea7b3146102d9578063117803e3146102f957806312832a4e1461030157806318160ddd1461032157806323b872dd1461034457600080fd5b806301ffc9a71461023557806306fdde031461026a578063080345f11461028c578063081812fc146102a1575b600080fd5b34801561024157600080fd5b50610255610250366004611e17565b610717565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610769565b604051610261919061205a565b61029f61029a366004611e9a565b6107fb565b005b3480156102ad57600080fd5b506102c16102bc366004611e9a565b610a41565b6040516001600160a01b039091168152602001610261565b3480156102e557600080fd5b5061029f6102f4366004611dd2565b610a85565b61029f610b25565b34801561030d57600080fd5b5061029f61031c366004611dfc565b610c47565b34801561032d57600080fd5b50610336610c84565b604051908152602001610261565b34801561035057600080fd5b5061029f61035f366004611cf0565b610c92565b34801561037057600080fd5b50610336600181565b34801561038557600080fd5b5061033661029a81565b34801561039b57600080fd5b50600c54610255906301000000900460ff1681565b3480156103bc57600080fd5b5061029f6103cb366004611cf0565b610e23565b3480156103dc57600080fd5b50600c5461025590610100900460ff1681565b3480156103fb57600080fd5b5061029f61040a366004611dfc565b610e3e565b34801561041b57600080fd5b50600c546102559060ff1681565b34801561043557600080fd5b506102c1610444366004611e9a565b610e98565b34801561045557600080fd5b50610255610464366004611ca2565b600d6020526000908152604090205460ff1681565b34801561048557600080fd5b50610336610494366004611ca2565b610ea3565b3480156104a557600080fd5b5061029f610ef2565b3480156104ba57600080fd5b506103366104c9366004611ca2565b600e6020526000908152604090205481565b61029f6104e9366004611e9a565b610f28565b3480156104fa57600080fd5b506000546001600160a01b03166102c1565b34801561051857600080fd5b5061029f610527366004611eb3565b6110d7565b34801561053857600080fd5b5061029f610547366004611e9a565b611183565b34801561055857600080fd5b5061027f6111b2565b34801561056d57600080fd5b5061029f61057c366004611e51565b6111c1565b34801561058d57600080fd5b5061029f61059c366004611da8565b6111fe565b3480156105ad57600080fd5b50600c546102559062010000900460ff1681565b3480156105cd57600080fd5b5061033660095481565b3480156105e357600080fd5b5061029f6105f2366004611dfc565b611294565b34801561060357600080fd5b50610617610612366004611ca2565b6112ed565b6040516102619190612016565b34801561063057600080fd5b5061029f61063f366004611d2c565b6113ce565b34801561065057600080fd5b50610336600281565b34801561066557600080fd5b5061027f610674366004611e9a565b611412565b34801561068557600080fd5b5061027f61155a565b34801561069a57600080fd5b506102556106a9366004611cbd565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106e357600080fd5b5061029f6106f2366004611ca2565b611569565b34801561070357600080fd5b5061029f610712366004611dfc565b611604565b60006301ffc9a760e01b6001600160e01b03198316148061074857506380ac58cd60e01b6001600160e01b03198316145b806107635750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610778906121b8565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906121b8565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b600c54819060ff16156108295760405162461bcd60e51b8152600401610820906120cf565b60405180910390fd5b61029a81610835610c84565b61083f919061212a565b111561085d5760405162461bcd60e51b8152600401610820906120fb565b32331461087c5760405162461bcd60e51b81526004016108209061206d565b600c5462010000900460ff166108c45760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd08199c995948199bdbdb609a1b6044820152606401610820565b34156109055760405162461bcd60e51b815260206004820152601060248201526f746869732069732066726565206e6f7760801b6044820152606401610820565b816001146109435760405162461bcd60e51b815260206004820152600b60248201526a6f6e6c792023312062726f60a81b6044820152606401610820565b60008261094e610c84565b610958919061212a565b9050606481111561099b5760405162461bcd60e51b815260206004820152600d60248201526c1e5bdd481b5a5cdcd959081a5d609a1b6044820152606401610820565b336000908152600d602052604090205460ff16156109fb5760405162461bcd60e51b815260206004820152601760248201527f796f752063616e74206d696e74206d6f726520667265650000000000000000006044820152606401610820565b336000908152600d60205260409020805460ff191660011790556064811415610a3257600c805463ffff0000191663010000001790555b610a3c3384611648565b505050565b6000610a4c82611662565b610a69576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a9082610e98565b9050336001600160a01b03821614610ac957610aac81336106a9565b610ac9576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b4f5760405162461bcd60e51b81526004016108209061209a565b47600073e576db72615a6a3c4805f774f3461227d9e5654d612710610b748482612156565b610b7e9190612142565b6040517f30786535373664423732363135613641336334383035663737344633343631328152690c8dd10e594d4d8d4d1160b21b6020820152602a0160006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c435760405162461bcd60e51b815260206004820152601360248201527211195d881d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610820565b5050565b6000546001600160a01b03163314610c715760405162461bcd60e51b81526004016108209061209a565b600c805460ff1916911515919091179055565b600254600154036000190190565b6000610c9d82611697565b9050836001600160a01b0316816001600160a01b031614610cd05760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610d1d57610d0086336106a9565b610d1d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d4457604051633a954ecd60e21b815260040160405180910390fd5b8015610d4f57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610dda5760018401600081815260056020526040902054610dd8576001548114610dd85760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a3c838383604051806020016040528060008152506113ce565b6000546001600160a01b03163314610e685760405162461bcd60e51b81526004016108209061209a565b600c805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600061076382611697565b60006001600160a01b038216610ecc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016108209061209a565b610f266000611707565b565b600c54819060ff1615610f4d5760405162461bcd60e51b8152600401610820906120cf565b61029a81610f59610c84565b610f63919061212a565b1115610f815760405162461bcd60e51b8152600401610820906120fb565b323314610fa05760405162461bcd60e51b81526004016108209061206d565b600c546301000000900460ff16610ff05760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610820565b60018211156110355760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610820565b600954336000908152600e60205260409020546002611054858361212a565b11156110985760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610820565b6110aa6110a58584612156565b611757565b6110b4848261212a565b336000818152600e60205260409020919091556110d19085611648565b50505050565b6000546001600160a01b031633146111015760405162461bcd60e51b81526004016108209061209a565b600c54829060ff16156111265760405162461bcd60e51b8152600401610820906120cf565b61029a81611132610c84565b61113c919061212a565b111561115a5760405162461bcd60e51b8152600401610820906120fb565b3233146111795760405162461bcd60e51b81526004016108209061206d565b610a3c8284611648565b6000546001600160a01b031633146111ad5760405162461bcd60e51b81526004016108209061209a565b600955565b606060048054610778906121b8565b6000546001600160a01b031633146111eb5760405162461bcd60e51b81526004016108209061209a565b8051610c4390600a906020840190611b6c565b6001600160a01b0382163314156112285760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112be5760405162461bcd60e51b81526004016108209061209a565b600c805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b606060006112fa83610ea3565b905060008167ffffffffffffffff81111561131757611317612264565b604051908082528060200260200182016040528015611340578160200160208202803683370190505b509050600160005b8381108015611359575061029a8211155b156113c457600061136983610e98565b9050866001600160a01b0316816001600160a01b031614156113b157828483815181106113985761139861224e565b6020908102919091010152816113ad816121f3565b9250505b826113bb816121f3565b93505050611348565b5090949350505050565b6113d9848484610c92565b6001600160a01b0383163b156110d1576113f58484848461182c565b6110d1576040516368d2bf6b60e11b815260040160405180910390fd5b606061141d82611662565b6114815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610820565b600c54610100900460ff16156114c357600a61149c83611924565b6040516020016114ad929190611f1e565b6040516020818303038152906040529050919050565b600a80546114d0906121b8565b80601f01602080910402602001604051908101604052809291908181526020018280546114fc906121b8565b80156115495780601f1061151e57610100808354040283529160200191611549565b820191906000526020600020905b81548152906001019060200180831161152c57829003601f168201915b50505050509050919050565b919050565b6060600b8054610778906121b8565b6000546001600160a01b031633146115935760405162461bcd60e51b81526004016108209061209a565b6001600160a01b0381166115f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61160181611707565b50565b6000546001600160a01b0316331461162e5760405162461bcd60e51b81526004016108209061209a565b600c80549115156101000261ff0019909216919091179055565b610c43828260405180602001604052806000815250611a22565b600081600111158015611676575060015482105b8015610763575050600090815260056020526040902054600160e01b161590565b600081806001116116ee576001548110156116ee57600081815260056020526040902054600160e01b81166116ec575b806116e55750600019016000818152600560205260409020546116c7565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803411156117eb5760003361176c8334612175565b604051600081818185875af1925050503d80600081146117a8576040519150601f19603f3d011682016040523d82523d6000602084013e6117ad565b606091505b5050905080610c435760405162461bcd60e51b815260206004820152600a6024820152696661696c65642074727960b01b6044820152606401610820565b803410156116015760405162461bcd60e51b815260206004820152600e60248201526d6e6f7420656e6f7567682062726f60901b6044820152606401610820565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611861903390899088908890600401611fd9565b602060405180830381600087803b15801561187b57600080fd5b505af19250505080156118ab575060408051601f3d908101601f191682019092526118a891810190611e34565b60015b611906573d8080156118d9576040519150601f19603f3d011682016040523d82523d6000602084013e6118de565b606091505b5080516118fe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611972578061195c816121f3565b915061196b9050600a83612142565b915061194c565b60008167ffffffffffffffff81111561198d5761198d612264565b6040519080825280601f01601f1916602001820160405280156119b7576020820181803683370190505b5090505b841561191c576119cc600183612175565b91506119d9600a8661220e565b6119e490603061212a565b60f81b8183815181106119f9576119f961224e565b60200101906001600160f81b031916908160001a905350611a1b600a86612142565b94506119bb565b611a2c8383611a8f565b6001600160a01b0383163b15610a3c576001548281035b611a56600086838060010194508661182c565b611a73576040516368d2bf6b60e11b815260040160405180910390fd5b818110611a43578160015414611a8857600080fd5b5050505050565b6001546001600160a01b038316611ab857604051622e076360e81b815260040160405180910390fd5b81611ad65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b205760015550505050565b828054611b78906121b8565b90600052602060002090601f016020900481019282611b9a5760008555611be0565b82601f10611bb357805160ff1916838001178555611be0565b82800160010185558215611be0579182015b82811115611be0578251825591602001919060010190611bc5565b50611bec929150611bf0565b5090565b5b80821115611bec5760008155600101611bf1565b600067ffffffffffffffff80841115611c2057611c20612264565b604051601f8501601f19908116603f01168101908282118183101715611c4857611c48612264565b81604052809350858152868686011115611c6157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461155557600080fd5b8035801515811461155557600080fd5b600060208284031215611cb457600080fd5b6116e582611c7b565b60008060408385031215611cd057600080fd5b611cd983611c7b565b9150611ce760208401611c7b565b90509250929050565b600080600060608486031215611d0557600080fd5b611d0e84611c7b565b9250611d1c60208501611c7b565b9150604084013590509250925092565b60008060008060808587031215611d4257600080fd5b611d4b85611c7b565b9350611d5960208601611c7b565b925060408501359150606085013567ffffffffffffffff811115611d7c57600080fd5b8501601f81018713611d8d57600080fd5b611d9c87823560208401611c05565b91505092959194509250565b60008060408385031215611dbb57600080fd5b611dc483611c7b565b9150611ce760208401611c92565b60008060408385031215611de557600080fd5b611dee83611c7b565b946020939093013593505050565b600060208284031215611e0e57600080fd5b6116e582611c92565b600060208284031215611e2957600080fd5b81356116e58161227a565b600060208284031215611e4657600080fd5b81516116e58161227a565b600060208284031215611e6357600080fd5b813567ffffffffffffffff811115611e7a57600080fd5b8201601f81018413611e8b57600080fd5b61191c84823560208401611c05565b600060208284031215611eac57600080fd5b5035919050565b60008060408385031215611ec657600080fd5b82359150611ce760208401611c7b565b60008151808452611eee81602086016020860161218c565b601f01601f19169290920160200192915050565b60008151611f1481856020860161218c565b9290920192915050565b600080845481600182811c915080831680611f3a57607f831692505b6020808410821415611f5a57634e487b7160e01b86526022600452602486fd5b818015611f6e5760018114611f7f57611fac565b60ff19861689528489019650611fac565b60008b81526020902060005b86811015611fa45781548b820152908501908301611f8b565b505084890196505b505050505050611fd0611fbf8286611f02565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200c90830184611ed6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561204e57835183529284019291840191600101612032565b50909695505050505050565b6020815260006116e56020830184611ed6565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561213d5761213d612222565b500190565b60008261215157612151612238565b500490565b600081600019048311821515161561217057612170612222565b500290565b60008282101561218757612187612222565b500390565b60005b838110156121a757818101518382015260200161218f565b838111156110d15750506000910152565b600181811c908216806121cc57607f821691505b602082108114156121ed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561220757612207612222565b5060010190565b60008261221d5761221d612238565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461160157600080fdfea2646970667358221220c548a626835951b64ac47216fcc24d1f437f9a1c5c075ac468f3bfbcc917ca4f64736f6c63430008070033697066733a2f2f32575a484b433859594e42524b5457504e4d4b474d56313647573942455551344333697066733a2f2f516d52315164654b314b504e745674793558474a5872753969774835324e3550466268556b6448435478704c51772f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436f6d6520776974682075730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343575500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52315164654b314b504e745674793558474a5872753969774835324e3550466268556b6448435478704c51772f00000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c8063715018a61161012e578063a945bf80116100ab578063c87b56dd1161006f578063c87b56dd14610659578063e8a3d48514610679578063e985e9c51461068e578063f2fde38b146106d7578063ff524785146106f757600080fd5b8063a945bf80146105c1578063ac1566e0146105d7578063b6561090146105f7578063b88d4fde14610624578063bceae77b1461064457600080fd5b80639097548d116100f25780639097548d1461052c57806395d89b411461054c5780639ab8756c14610561578063a22cb46514610581578063a4b41a15146105a157600080fd5b8063715018a6146104995780637aeb7242146104ae5780637b47e84e146104db5780638da5cb5b146104ee5780639007bd721461050c57600080fd5b80632fecf20b116101bc57806357f311bd1161018057806357f311bd146103ef5780635c975abb1461040f5780636352211e1461042957806364f640761461044957806370a082311461047957600080fd5b80632fecf20b1461036457806332cb6b0c1461037957806333bc1c5c1461038f57806342842e0e146103b057806351830227146103d057600080fd5b8063095ea7b311610203578063095ea7b3146102d9578063117803e3146102f957806312832a4e1461030157806318160ddd1461032157806323b872dd1461034457600080fd5b806301ffc9a71461023557806306fdde031461026a578063080345f11461028c578063081812fc146102a1575b600080fd5b34801561024157600080fd5b50610255610250366004611e17565b610717565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610769565b604051610261919061205a565b61029f61029a366004611e9a565b6107fb565b005b3480156102ad57600080fd5b506102c16102bc366004611e9a565b610a41565b6040516001600160a01b039091168152602001610261565b3480156102e557600080fd5b5061029f6102f4366004611dd2565b610a85565b61029f610b25565b34801561030d57600080fd5b5061029f61031c366004611dfc565b610c47565b34801561032d57600080fd5b50610336610c84565b604051908152602001610261565b34801561035057600080fd5b5061029f61035f366004611cf0565b610c92565b34801561037057600080fd5b50610336600181565b34801561038557600080fd5b5061033661029a81565b34801561039b57600080fd5b50600c54610255906301000000900460ff1681565b3480156103bc57600080fd5b5061029f6103cb366004611cf0565b610e23565b3480156103dc57600080fd5b50600c5461025590610100900460ff1681565b3480156103fb57600080fd5b5061029f61040a366004611dfc565b610e3e565b34801561041b57600080fd5b50600c546102559060ff1681565b34801561043557600080fd5b506102c1610444366004611e9a565b610e98565b34801561045557600080fd5b50610255610464366004611ca2565b600d6020526000908152604090205460ff1681565b34801561048557600080fd5b50610336610494366004611ca2565b610ea3565b3480156104a557600080fd5b5061029f610ef2565b3480156104ba57600080fd5b506103366104c9366004611ca2565b600e6020526000908152604090205481565b61029f6104e9366004611e9a565b610f28565b3480156104fa57600080fd5b506000546001600160a01b03166102c1565b34801561051857600080fd5b5061029f610527366004611eb3565b6110d7565b34801561053857600080fd5b5061029f610547366004611e9a565b611183565b34801561055857600080fd5b5061027f6111b2565b34801561056d57600080fd5b5061029f61057c366004611e51565b6111c1565b34801561058d57600080fd5b5061029f61059c366004611da8565b6111fe565b3480156105ad57600080fd5b50600c546102559062010000900460ff1681565b3480156105cd57600080fd5b5061033660095481565b3480156105e357600080fd5b5061029f6105f2366004611dfc565b611294565b34801561060357600080fd5b50610617610612366004611ca2565b6112ed565b6040516102619190612016565b34801561063057600080fd5b5061029f61063f366004611d2c565b6113ce565b34801561065057600080fd5b50610336600281565b34801561066557600080fd5b5061027f610674366004611e9a565b611412565b34801561068557600080fd5b5061027f61155a565b34801561069a57600080fd5b506102556106a9366004611cbd565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106e357600080fd5b5061029f6106f2366004611ca2565b611569565b34801561070357600080fd5b5061029f610712366004611dfc565b611604565b60006301ffc9a760e01b6001600160e01b03198316148061074857506380ac58cd60e01b6001600160e01b03198316145b806107635750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610778906121b8565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906121b8565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b600c54819060ff16156108295760405162461bcd60e51b8152600401610820906120cf565b60405180910390fd5b61029a81610835610c84565b61083f919061212a565b111561085d5760405162461bcd60e51b8152600401610820906120fb565b32331461087c5760405162461bcd60e51b81526004016108209061206d565b600c5462010000900460ff166108c45760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd08199c995948199bdbdb609a1b6044820152606401610820565b34156109055760405162461bcd60e51b815260206004820152601060248201526f746869732069732066726565206e6f7760801b6044820152606401610820565b816001146109435760405162461bcd60e51b815260206004820152600b60248201526a6f6e6c792023312062726f60a81b6044820152606401610820565b60008261094e610c84565b610958919061212a565b9050606481111561099b5760405162461bcd60e51b815260206004820152600d60248201526c1e5bdd481b5a5cdcd959081a5d609a1b6044820152606401610820565b336000908152600d602052604090205460ff16156109fb5760405162461bcd60e51b815260206004820152601760248201527f796f752063616e74206d696e74206d6f726520667265650000000000000000006044820152606401610820565b336000908152600d60205260409020805460ff191660011790556064811415610a3257600c805463ffff0000191663010000001790555b610a3c3384611648565b505050565b6000610a4c82611662565b610a69576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a9082610e98565b9050336001600160a01b03821614610ac957610aac81336106a9565b610ac9576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b4f5760405162461bcd60e51b81526004016108209061209a565b47600073e576db72615a6a3c4805f774f3461227d9e5654d612710610b748482612156565b610b7e9190612142565b6040517f30786535373664423732363135613641336334383035663737344633343631328152690c8dd10e594d4d8d4d1160b21b6020820152602a0160006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c435760405162461bcd60e51b815260206004820152601360248201527211195d881d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610820565b5050565b6000546001600160a01b03163314610c715760405162461bcd60e51b81526004016108209061209a565b600c805460ff1916911515919091179055565b600254600154036000190190565b6000610c9d82611697565b9050836001600160a01b0316816001600160a01b031614610cd05760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610d1d57610d0086336106a9565b610d1d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d4457604051633a954ecd60e21b815260040160405180910390fd5b8015610d4f57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610dda5760018401600081815260056020526040902054610dd8576001548114610dd85760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a3c838383604051806020016040528060008152506113ce565b6000546001600160a01b03163314610e685760405162461bcd60e51b81526004016108209061209a565b600c805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600061076382611697565b60006001600160a01b038216610ecc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016108209061209a565b610f266000611707565b565b600c54819060ff1615610f4d5760405162461bcd60e51b8152600401610820906120cf565b61029a81610f59610c84565b610f63919061212a565b1115610f815760405162461bcd60e51b8152600401610820906120fb565b323314610fa05760405162461bcd60e51b81526004016108209061206d565b600c546301000000900460ff16610ff05760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610820565b60018211156110355760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610820565b600954336000908152600e60205260409020546002611054858361212a565b11156110985760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610820565b6110aa6110a58584612156565b611757565b6110b4848261212a565b336000818152600e60205260409020919091556110d19085611648565b50505050565b6000546001600160a01b031633146111015760405162461bcd60e51b81526004016108209061209a565b600c54829060ff16156111265760405162461bcd60e51b8152600401610820906120cf565b61029a81611132610c84565b61113c919061212a565b111561115a5760405162461bcd60e51b8152600401610820906120fb565b3233146111795760405162461bcd60e51b81526004016108209061206d565b610a3c8284611648565b6000546001600160a01b031633146111ad5760405162461bcd60e51b81526004016108209061209a565b600955565b606060048054610778906121b8565b6000546001600160a01b031633146111eb5760405162461bcd60e51b81526004016108209061209a565b8051610c4390600a906020840190611b6c565b6001600160a01b0382163314156112285760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112be5760405162461bcd60e51b81526004016108209061209a565b600c805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b606060006112fa83610ea3565b905060008167ffffffffffffffff81111561131757611317612264565b604051908082528060200260200182016040528015611340578160200160208202803683370190505b509050600160005b8381108015611359575061029a8211155b156113c457600061136983610e98565b9050866001600160a01b0316816001600160a01b031614156113b157828483815181106113985761139861224e565b6020908102919091010152816113ad816121f3565b9250505b826113bb816121f3565b93505050611348565b5090949350505050565b6113d9848484610c92565b6001600160a01b0383163b156110d1576113f58484848461182c565b6110d1576040516368d2bf6b60e11b815260040160405180910390fd5b606061141d82611662565b6114815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610820565b600c54610100900460ff16156114c357600a61149c83611924565b6040516020016114ad929190611f1e565b6040516020818303038152906040529050919050565b600a80546114d0906121b8565b80601f01602080910402602001604051908101604052809291908181526020018280546114fc906121b8565b80156115495780601f1061151e57610100808354040283529160200191611549565b820191906000526020600020905b81548152906001019060200180831161152c57829003601f168201915b50505050509050919050565b919050565b6060600b8054610778906121b8565b6000546001600160a01b031633146115935760405162461bcd60e51b81526004016108209061209a565b6001600160a01b0381166115f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61160181611707565b50565b6000546001600160a01b0316331461162e5760405162461bcd60e51b81526004016108209061209a565b600c80549115156101000261ff0019909216919091179055565b610c43828260405180602001604052806000815250611a22565b600081600111158015611676575060015482105b8015610763575050600090815260056020526040902054600160e01b161590565b600081806001116116ee576001548110156116ee57600081815260056020526040902054600160e01b81166116ec575b806116e55750600019016000818152600560205260409020546116c7565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803411156117eb5760003361176c8334612175565b604051600081818185875af1925050503d80600081146117a8576040519150601f19603f3d011682016040523d82523d6000602084013e6117ad565b606091505b5050905080610c435760405162461bcd60e51b815260206004820152600a6024820152696661696c65642074727960b01b6044820152606401610820565b803410156116015760405162461bcd60e51b815260206004820152600e60248201526d6e6f7420656e6f7567682062726f60901b6044820152606401610820565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611861903390899088908890600401611fd9565b602060405180830381600087803b15801561187b57600080fd5b505af19250505080156118ab575060408051601f3d908101601f191682019092526118a891810190611e34565b60015b611906573d8080156118d9576040519150601f19603f3d011682016040523d82523d6000602084013e6118de565b606091505b5080516118fe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611972578061195c816121f3565b915061196b9050600a83612142565b915061194c565b60008167ffffffffffffffff81111561198d5761198d612264565b6040519080825280601f01601f1916602001820160405280156119b7576020820181803683370190505b5090505b841561191c576119cc600183612175565b91506119d9600a8661220e565b6119e490603061212a565b60f81b8183815181106119f9576119f961224e565b60200101906001600160f81b031916908160001a905350611a1b600a86612142565b94506119bb565b611a2c8383611a8f565b6001600160a01b0383163b15610a3c576001548281035b611a56600086838060010194508661182c565b611a73576040516368d2bf6b60e11b815260040160405180910390fd5b818110611a43578160015414611a8857600080fd5b5050505050565b6001546001600160a01b038316611ab857604051622e076360e81b815260040160405180910390fd5b81611ad65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b205760015550505050565b828054611b78906121b8565b90600052602060002090601f016020900481019282611b9a5760008555611be0565b82601f10611bb357805160ff1916838001178555611be0565b82800160010185558215611be0579182015b82811115611be0578251825591602001919060010190611bc5565b50611bec929150611bf0565b5090565b5b80821115611bec5760008155600101611bf1565b600067ffffffffffffffff80841115611c2057611c20612264565b604051601f8501601f19908116603f01168101908282118183101715611c4857611c48612264565b81604052809350858152868686011115611c6157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461155557600080fd5b8035801515811461155557600080fd5b600060208284031215611cb457600080fd5b6116e582611c7b565b60008060408385031215611cd057600080fd5b611cd983611c7b565b9150611ce760208401611c7b565b90509250929050565b600080600060608486031215611d0557600080fd5b611d0e84611c7b565b9250611d1c60208501611c7b565b9150604084013590509250925092565b60008060008060808587031215611d4257600080fd5b611d4b85611c7b565b9350611d5960208601611c7b565b925060408501359150606085013567ffffffffffffffff811115611d7c57600080fd5b8501601f81018713611d8d57600080fd5b611d9c87823560208401611c05565b91505092959194509250565b60008060408385031215611dbb57600080fd5b611dc483611c7b565b9150611ce760208401611c92565b60008060408385031215611de557600080fd5b611dee83611c7b565b946020939093013593505050565b600060208284031215611e0e57600080fd5b6116e582611c92565b600060208284031215611e2957600080fd5b81356116e58161227a565b600060208284031215611e4657600080fd5b81516116e58161227a565b600060208284031215611e6357600080fd5b813567ffffffffffffffff811115611e7a57600080fd5b8201601f81018413611e8b57600080fd5b61191c84823560208401611c05565b600060208284031215611eac57600080fd5b5035919050565b60008060408385031215611ec657600080fd5b82359150611ce760208401611c7b565b60008151808452611eee81602086016020860161218c565b601f01601f19169290920160200192915050565b60008151611f1481856020860161218c565b9290920192915050565b600080845481600182811c915080831680611f3a57607f831692505b6020808410821415611f5a57634e487b7160e01b86526022600452602486fd5b818015611f6e5760018114611f7f57611fac565b60ff19861689528489019650611fac565b60008b81526020902060005b86811015611fa45781548b820152908501908301611f8b565b505084890196505b505050505050611fd0611fbf8286611f02565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200c90830184611ed6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561204e57835183529284019291840191600101612032565b50909695505050505050565b6020815260006116e56020830184611ed6565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561213d5761213d612222565b500190565b60008261215157612151612238565b500490565b600081600019048311821515161561217057612170612222565b500290565b60008282101561218757612187612222565b500390565b60005b838110156121a757818101518382015260200161218f565b838111156110d15750506000910152565b600181811c908216806121cc57607f821691505b602082108114156121ed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561220757612207612222565b5060010190565b60008261221d5761221d612238565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461160157600080fdfea2646970667358221220c548a626835951b64ac47216fcc24d1f437f9a1c5c075ac468f3bfbcc917ca4f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436f6d6520776974682075730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343575500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52315164654b314b504e745674793558474a5872753969774835324e3550466268556b6448435478704c51772f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Come with us
Arg [1] : _symbol (string): CWU
Arg [2] : _baseUri (string): ipfs://QmR1QdeK1KPNtVty5XGJXru9iwH52N5PFbhUkdHCTxpLQw/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 436f6d6520776974682075730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4357550000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d52315164654b314b504e745674793558474a5872753969
Arg [9] : 774835324e3550466268556b6448435478704c51772f00000000000000000000
Deployed Bytecode Sourcemap
54631:5369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22211:615;;;;;;;;;;-1:-1:-1;22211:615:0;;;;;:::i;:::-;;:::i;:::-;;;8478:14:1;;8471:22;8453:41;;8441:2;8426:18;22211:615:0;;;;;;;;27858:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56043:638::-;;;;;;:::i;:::-;;:::i;:::-;;29804:204;;;;;;;;;;-1:-1:-1;29804:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7139:32:1;;;7121:51;;7109:2;7094:18;29804:204:0;6975:203:1;29352:386:0;;;;;;;;;;-1:-1:-1;29352:386:0;;;;;:::i;:::-;;:::i;59245:317::-;;;:::i;58827:80::-;;;;;;;;;;-1:-1:-1;58827:80:0;;;;;:::i;:::-;;:::i;21265:315::-;;;;;;;;;;;;;:::i;:::-;;;14898:25:1;;;14886:2;14871:18;21265:315:0;14752:177:1;39069:2800:0;;;;;;;;;;-1:-1:-1;39069:2800:0;;;;;:::i;:::-;;:::i;54784:49::-;;;;;;;;;;;;54832:1;54784:49;;54680:40;;;;;;;;;;;;54717:3;54680:40;;55180:30;;;;;;;;;;-1:-1:-1;55180:30:0;;;;;;;;;;;30694:185;;;;;;;;;;-1:-1:-1;30694:185:0;;;;;:::i;:::-;;:::i;55109:27::-;;;;;;;;;;-1:-1:-1;55109:27:0;;;;;;;;;;;59124:111;;;;;;;;;;-1:-1:-1;59124:111:0;;;;;:::i;:::-;;:::i;55076:26::-;;;;;;;;;;-1:-1:-1;55076:26:0;;;;;;;;27647:144;;;;;;;;;;-1:-1:-1;27647:144:0;;;;;:::i;:::-;;:::i;55328:46::-;;;;;;;;;;-1:-1:-1;55328:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22890:224;;;;;;;;;;-1:-1:-1;22890:224:0;;;;;:::i;:::-;;:::i;6802:103::-;;;;;;;;;;;;;:::i;55381:47::-;;;;;;;;;;-1:-1:-1;55381:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;56689:570;;;;;;:::i;:::-;;:::i;6151:87::-;;;;;;;;;;-1:-1:-1;6197:7:0;6224:6;-1:-1:-1;;;;;6224:6:0;6151:87;;59576:146;;;;;;;;;;-1:-1:-1;59576:146:0;;;;;:::i;:::-;;:::i;58488:98::-;;;;;;;;;;-1:-1:-1;58488:98:0;;;;;:::i;:::-;;:::i;28027:104::-;;;;;;;;;;;;;:::i;58594:98::-;;;;;;;;;;-1:-1:-1;58594:98:0;;;;;:::i;:::-;;:::i;30080:308::-;;;;;;;;;;-1:-1:-1;30080:308:0;;;;;:::i;:::-;;:::i;55145:28::-;;;;;;;;;;-1:-1:-1;55145:28:0;;;;;;;;;;;54735:40;;;;;;;;;;;;;;;;59005:113;;;;;;;;;;-1:-1:-1;59005:113:0;;;;;:::i;:::-;;:::i;57272:692::-;;;;;;;;;;-1:-1:-1;57272:692:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30950:399::-;;;;;;;;;;-1:-1:-1;30950:399:0;;;;;:::i;:::-;;:::i;54840:45::-;;;;;;;;;;;;54884:1;54840:45;;57980:389;;;;;;;;;;-1:-1:-1;57980:389:0;;;;;:::i;:::-;;:::i;58383:97::-;;;;;;;;;;;;;:::i;30459:164::-;;;;;;;;;;-1:-1:-1;30459:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30580:25:0;;;30556:4;30580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30459:164;7060:201;;;;;;;;;;-1:-1:-1;7060:201:0;;;;;:::i;:::-;;:::i;58915:82::-;;;;;;;;;;-1:-1:-1;58915:82:0;;;;;:::i;:::-;;:::i;22211:615::-;22296:4;-1:-1:-1;;;;;;;;;22596:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22673:25:0;;;22596:102;:179;;;-1:-1:-1;;;;;;;;;;22750:25:0;;;22596:179;22576:199;22211:615;-1:-1:-1;;22211:615:0:o;27858:100::-;27912:13;27945:5;27938:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27858:100;:::o;56043:638::-;59799:6;;56114:8;;59799:6;;59798:7;59790:38;;;;-1:-1:-1;;;59790:38:0;;;;;;;:::i;:::-;;;;;;;;;54717:3;59863:8;59847:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59839:72;;;;-1:-1:-1;;;59839:72:0;;;;;;;:::i;:::-;59930:9;59943:10;59930:23;59922:55;;;;-1:-1:-1;;;59922:55:0;;;;;;;:::i;:::-;56143:8:::1;::::0;;;::::1;;;56135:34;;;::::0;-1:-1:-1;;;56135:34:0;;12880:2:1;56135:34:0::1;::::0;::::1;12862:21:1::0;12919:2;12899:18;;;12892:30;-1:-1:-1;;;12938:18:1;;;12931:43;12991:18;;56135:34:0::1;12678:337:1::0;56135:34:0::1;56188:9;:14:::0;56180:43:::1;;;::::0;-1:-1:-1;;;56180:43:0;;14609:2:1;56180:43:0::1;::::0;::::1;14591:21:1::0;14648:2;14628:18;;;14621:30;-1:-1:-1;;;14667:18:1;;;14660:46;14723:18;;56180:43:0::1;14407:340:1::0;56180:43:0::1;56242:8;56254:1;56242:13;56234:37;;;::::0;-1:-1:-1;;;56234:37:0;;11845:2:1;56234:37:0::1;::::0;::::1;11827:21:1::0;11884:2;11864:18;;;11857:30;-1:-1:-1;;;11903:18:1;;;11896:41;11954:18;;56234:37:0::1;11643:335:1::0;56234:37:0::1;56284:17;56320:8;56304:13;:11;:13::i;:::-;:24;;;;:::i;:::-;56284:44;;56370:3;56357:9;:16;;56349:42;;;::::0;-1:-1:-1;;;56349:42:0;;13570:2:1;56349:42:0::1;::::0;::::1;13552:21:1::0;13609:2;13589:18;;;13582:30;-1:-1:-1;;;13628:18:1;;;13621:43;13681:18;;56349:42:0::1;13368:337:1::0;56349:42:0::1;56428:10;56413:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;56412:27;56404:63;;;::::0;-1:-1:-1;;;56404:63:0;;10020:2:1;56404:63:0::1;::::0;::::1;10002:21:1::0;10059:2;10039:18;;;10032:30;10098:25;10078:18;;;10071:53;10141:18;;56404:63:0::1;9818:347:1::0;56404:63:0::1;56503:10;56488:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;56488:33:0::1;56517:4;56488:33;::::0;;56550:3:::1;56537:16:::0;::::1;56534:96;;;56570:8;:16:::0;;-1:-1:-1;;56601:17:0;;::::1;::::0;;56534:96:::1;56642:31;56652:10;56664:8;56642:9;:31::i;:::-;56124:557;56043:638:::0;;:::o;29804:204::-;29872:7;29897:16;29905:7;29897;:16::i;:::-;29892:64;;29922:34;;-1:-1:-1;;;29922:34:0;;;;;;;;;;;29892:64;-1:-1:-1;29976:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29976:24:0;;29804:204::o;29352:386::-;29425:13;29441:16;29449:7;29441;:16::i;:::-;29425:32;-1:-1:-1;50252:10:0;-1:-1:-1;;;;;29474:28:0;;;29470:175;;29522:44;29539:5;50252:10;30459:164;:::i;29522:44::-;29517:128;;29594:35;;-1:-1:-1;;;29594:35:0;;;;;;;;;;;29517:128;29657:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;29657:29:0;-1:-1:-1;;;;;29657:29:0;;;;;;;;;29702:28;;29657:24;;29702:28;;;;;;;29414:324;29352:386;;:::o;59245:317::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;59322:21:::1;59300:19;55265:42;59443:5;59420:19;59322:21:::0;59443:5;59420:19:::1;:::i;:::-;59419:29;;;;:::i;:::-;59372:133;::::0;6648:34:1;6636:47;;-1:-1:-1;;;6708:2:1;6699:12;;6692:34;6751:2;6742:12;59372:133:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59356:149;;;59524:4;59516:36;;;::::0;-1:-1:-1;;;59516:36:0;;13222:2:1;59516:36:0::1;::::0;::::1;13204:21:1::0;13261:2;13241:18;;;13234:30;-1:-1:-1;;;13280:18:1;;;13273:49;13339:18;;59516:36:0::1;13020:343:1::0;59516:36:0::1;59289:273;;59245:317::o:0;58827:80::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;58884:6:::1;:15:::0;;-1:-1:-1;;58884:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58827:80::o;21265:315::-;21531:12;;55657:1;21515:13;:28;-1:-1:-1;;21515:46:0;;21265:315::o;39069:2800::-;39203:27;39233;39252:7;39233:18;:27::i;:::-;39203:57;;39318:4;-1:-1:-1;;;;;39277:45:0;39293:19;-1:-1:-1;;;;;39277:45:0;;39273:86;;39331:28;;-1:-1:-1;;;39331:28:0;;;;;;;;;;;39273:86;39373:27;37799:21;;;37626:15;37841:4;37834:36;37923:4;37907:21;;38013:26;;50252:10;38766:30;;;-1:-1:-1;;;;;38464:26:0;;38745:19;;;38742:55;39552:174;;39639:43;39656:4;50252:10;30459:164;:::i;39639:43::-;39634:92;;39691:35;;-1:-1:-1;;;39691:35:0;;;;;;;;;;;39634:92;-1:-1:-1;;;;;39743:16:0;;39739:52;;39768:23;;-1:-1:-1;;;39768:23:0;;;;;;;;;;;39739:52;39940:15;39937:160;;;40080:1;40059:19;40052:30;39937:160;-1:-1:-1;;;;;40475:24:0;;;;;;;:18;:24;;;;;;40473:26;;-1:-1:-1;;40473:26:0;;;40544:22;;;;;;;;;40542:24;;-1:-1:-1;40542:24:0;;;27546:11;27522:22;27518:40;27505:62;-1:-1:-1;;;27505:62:0;40837:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;41131:46:0;;41127:626;;41235:1;41225:11;;41203:19;41358:30;;;:17;:30;;;;;;41354:384;;41496:13;;41481:11;:28;41477:242;;41643:30;;;;:17;:30;;;;;:52;;;41477:242;41184:569;41127:626;41800:7;41796:2;-1:-1:-1;;;;;41781:27:0;41790:4;-1:-1:-1;;;;;41781:27:0;;;;;;;;;;;39192:2677;;;39069:2800;;;:::o;30694:185::-;30832:39;30849:4;30855:2;30859:7;30832:39;;;;;;;;;;;;:16;:39::i;59124:111::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;59179:8:::1;:17:::0;;-1:-1:-1;;59207:20:0;59179:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;59207:20:0;;;;;;::::1;::::0;;;::::1;::::0;;59124:111::o;27647:144::-;27711:7;27754:27;27773:7;27754:18;:27::i;22890:224::-;22954:7;-1:-1:-1;;;;;22978:19:0;;22974:60;;23006:28;;-1:-1:-1;;;23006:28:0;;;;;;;;;;;22974:60;-1:-1:-1;;;;;;23052:25:0;;;;;:18;:25;;;;;;17445:13;23052:54;;22890:224::o;6802:103::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;6867:30:::1;6894:1;6867:18;:30::i;:::-;6802:103::o:0;56689:570::-;59799:6;;56758:8;;59799:6;;59798:7;59790:38;;;;-1:-1:-1;;;59790:38:0;;;;;;;:::i;:::-;54717:3;59863:8;59847:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59839:72;;;;-1:-1:-1;;;59839:72:0;;;;;;;:::i;:::-;59930:9;59943:10;59930:23;59922:55;;;;-1:-1:-1;;;59922:55:0;;;;;;;:::i;:::-;56787:10:::1;::::0;;;::::1;;;56779:43;;;::::0;-1:-1:-1;;;56779:43:0;;12185:2:1;56779:43:0::1;::::0;::::1;12167:21:1::0;12224:2;12204:18;;;12197:30;-1:-1:-1;;;12243:18:1;;;12236:50;12303:18;;56779:43:0::1;11983:344:1::0;56779:43:0::1;54832:1;56841:8;:33;;56833:63;;;::::0;-1:-1:-1;;;56833:63:0;;12534:2:1;56833:63:0::1;::::0;::::1;12516:21:1::0;12573:2;12553:18;;;12546:30;-1:-1:-1;;;12592:18:1;;;12585:47;12649:18;;56833:63:0::1;12332:341:1::0;56833:63:0::1;56925:11;::::0;56980:10:::1;56909:13;56967:24:::0;;;:12:::1;:24;::::0;;;;;54884:1:::1;57028:20;57040:8:::0;56967:24;57028:20:::1;:::i;:::-;:41;;57020:73;;;::::0;-1:-1:-1;;;57020:73:0;;10720:2:1;57020:73:0::1;::::0;::::1;10702:21:1::0;10759:2;10739:18;;;10732:30;-1:-1:-1;;;10778:18:1;;;10771:49;10837:18;;57020:73:0::1;10518:343:1::0;57020:73:0::1;57114:31;57128:16;57136:8:::0;57128:5;:16:::1;:::i;:::-;57114:13;:31::i;:::-;57186:20;57198:8:::0;57186:9;:20:::1;:::i;:::-;57171:10;57158:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;57220:31:::1;::::0;57242:8;57220:9:::1;:31::i;:::-;56768:491;;56689:570:::0;;:::o;59576:146::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;59799:6:::1;::::0;59664:8;;59799:6:::1;;59798:7;59790:38;;;;-1:-1:-1::0;;;59790:38:0::1;;;;;;;:::i;:::-;54717:3;59863:8;59847:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59839:72;;;;-1:-1:-1::0;;;59839:72:0::1;;;;;;;:::i;:::-;59930:9;59943:10;59930:23;59922:55;;;;-1:-1:-1::0;;;59922:55:0::1;;;;;;;:::i;:::-;59685:29:::2;59695:8;59705;59685:9;:29::i;58488:98::-:0;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;58552:11:::1;:26:::0;58488:98::o;28027:104::-;28083:13;28116:7;28109:14;;;;;:::i;58594:98::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;58662:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30080:308::-:0;-1:-1:-1;;;;;30179:31:0;;50252:10;30179:31;30175:61;;;30219:17;;-1:-1:-1;;;30219:17:0;;;;;;;;;;;30175:61;50252:10;30249:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30249:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30249:60:0;;;;;;;;;;30325:55;;8453:41:1;;;30249:49:0;;50252:10;30325:55;;8426:18:1;30325:55:0;;;;;;;30080:308;;:::o;59005:113::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;59062:10:::1;:19:::0;;-1:-1:-1;;59092:18:0;59062:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;59092:18:0;;;;;;::::1;::::0;;;::::1;::::0;;59005:113::o;57272:692::-;57335:16;57369:23;57395:17;57405:6;57395:9;:17::i;:::-;57369:43;;57423:30;57470:15;57456:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57456:30:0;-1:-1:-1;57423:63:0;-1:-1:-1;57522:1:0;57497:22;57574:350;57599:15;57581;:33;:65;;;;;54717:3;57618:14;:28;;57581:65;57574:350;;;57663:25;57691:23;57699:14;57691:7;:23::i;:::-;57663:51;;57756:6;-1:-1:-1;;;;;57735:27:0;:17;-1:-1:-1;;;;;57735:27:0;;57731:153;;;57816:14;57783:13;57797:15;57783:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;57851:17;;;;:::i;:::-;;;;57731:153;57896:16;;;;:::i;:::-;;;;57648:276;57574:350;;;-1:-1:-1;57943:13:0;;57272:692;-1:-1:-1;;;;57272:692:0:o;30950:399::-;31117:31;31130:4;31136:2;31140:7;31117:12;:31::i;:::-;-1:-1:-1;;;;;31163:14:0;;;:19;31159:183;;31202:56;31233:4;31239:2;31243:7;31252:5;31202:30;:56::i;:::-;31197:145;;31286:40;;-1:-1:-1;;;31286:40:0;;;;;;;;;;;57980:389;58046:13;58090:17;58098:8;58090:7;:17::i;:::-;58082:77;;;;-1:-1:-1;;;58082:77:0;;11429:2:1;58082:77:0;;;11411:21:1;11468:2;11448:18;;;11441:30;11507:34;11487:18;;;11480:62;-1:-1:-1;;;11558:18:1;;;11551:45;11613:19;;58082:77:0;11227:411:1;58082:77:0;58184:8;;;;;;;58180:182;;;58240:11;58253:26;58270:8;58253:16;:26::i;:::-;58223:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58209:81;;57980:389;;;:::o;58180:182::-;58339:11;58332:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57980:389;;;:::o;58180:182::-;57980:389;;;:::o;58383:97::-;58427:13;58460:12;58453:19;;;;;:::i;7060:201::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7149:22:0;::::1;7141:73;;;::::0;-1:-1:-1;;;7141:73:0;;9613:2:1;7141:73:0::1;::::0;::::1;9595:21:1::0;9652:2;9632:18;;;9625:30;9691:34;9671:18;;;9664:62;-1:-1:-1;;;9742:18:1;;;9735:36;9788:19;;7141:73:0::1;9411:402:1::0;7141:73:0::1;7225:28;7244:8;7225:18;:28::i;:::-;7060:201:::0;:::o;58915:82::-;6197:7;6224:6;-1:-1:-1;;;;;6224:6:0;50252:10;6371:23;6363:68;;;;-1:-1:-1;;;6363:68:0;;;;;;;:::i;:::-;58972:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;58972:17:0;;::::1;::::0;;;::::1;::::0;;58915:82::o;31961:104::-;32030:27;32040:2;32044:8;32030:27;;;;;;;;;;;;:9;:27::i;31604:273::-;31661:4;31717:7;55657:1;31698:26;;:66;;;;;31751:13;;31741:7;:23;31698:66;:152;;;;-1:-1:-1;;31802:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31802:43:0;:48;;31604:273::o;24564:1129::-;24631:7;24666;;55657:1;24715:23;24711:915;;24768:13;;24761:4;:20;24757:869;;;24806:14;24823:23;;;:17;:23;;;;;;-1:-1:-1;;;24912:23:0;;24908:699;;25431:113;25438:11;25431:113;;-1:-1:-1;;;25509:6:0;25491:25;;;;:17;:25;;;;;;25431:113;;;25577:6;24564:1129;-1:-1:-1;;;24564:1129:0:o;24908:699::-;24783:843;24757:869;25654:31;;-1:-1:-1;;;25654:31:0;;;;;;;;;;;7421:191;7495:16;7514:6;;-1:-1:-1;;;;;7531:17:0;;;-1:-1:-1;;;;;;7531:17:0;;;;;;7564:40;;7514:6;;;;;;;7564:40;;7495:16;7564:40;7484:128;7421:191;:::o;55674:349::-;55747:5;55735:9;:17;55731:285;;;55770:9;55793:10;55836:17;55848:5;55836:9;:17;:::i;:::-;55785:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55769:104;;;55896:4;55888:27;;;;-1:-1:-1;;;55888:27:0;;9274:2:1;55888:27:0;;;9256:21:1;9313:2;9293:18;;;9286:30;-1:-1:-1;;;9332:18:1;;;9325:40;9382:18;;55888:27:0;9072:334:1;55731:285:0;55958:5;55946:9;:17;55942:74;;;55980:24;;-1:-1:-1;;;55980:24:0;;8931:2:1;55980:24:0;;;8913:21:1;8970:2;8950:18;;;8943:30;-1:-1:-1;;;8989:18:1;;;8982:44;9043:18;;55980:24:0;8729:338:1;45820:716:0;46004:88;;-1:-1:-1;;;46004:88:0;;45983:4;;-1:-1:-1;;;;;46004:45:0;;;;;:88;;50252:10;;46071:4;;46077:7;;46086:5;;46004:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46004:88:0;;;;;;;;-1:-1:-1;;46004:88:0;;;;;;;;;;;;:::i;:::-;;;46000:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46287:13:0;;46283:235;;46333:40;;-1:-1:-1;;;46333:40:0;;;;;;;;;;;46283:235;46476:6;46470:13;46461:6;46457:2;46453:15;46446:38;46000:529;-1:-1:-1;;;;;;46163:64:0;-1:-1:-1;;;46163:64:0;;-1:-1:-1;46000:529:0;45820:716;;;;;;:::o;2437:723::-;2493:13;2714:10;2710:53;;-1:-1:-1;;2741:10:0;;;;;;;;;;;;-1:-1:-1;;;2741:10:0;;;;;2437:723::o;2710:53::-;2788:5;2773:12;2829:78;2836:9;;2829:78;;2862:8;;;;:::i;:::-;;-1:-1:-1;2885:10:0;;-1:-1:-1;2893:2:0;2885:10;;:::i;:::-;;;2829:78;;;2917:19;2949:6;2939:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2939:17:0;;2917:39;;2967:154;2974:10;;2967:154;;3001:11;3011:1;3001:11;;:::i;:::-;;-1:-1:-1;3070:10:0;3078:2;3070:5;:10;:::i;:::-;3057:24;;:2;:24;:::i;:::-;3044:39;;3027:6;3034;3027:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3027:56:0;;;;;;;;-1:-1:-1;3098:11:0;3107:2;3098:11;;:::i;:::-;;;2967:154;;32481:681;32604:19;32610:2;32614:8;32604:5;:19::i;:::-;-1:-1:-1;;;;;32665:14:0;;;:19;32661:483;;32719:13;;32767:14;;;32800:233;32831:62;32870:1;32874:2;32878:7;;;;;;32887:5;32831:30;:62::i;:::-;32826:167;;32929:40;;-1:-1:-1;;;32929:40:0;;;;;;;;;;;32826:167;33028:3;33020:5;:11;32800:233;;33115:3;33098:13;;:20;33094:34;;33120:8;;;33094:34;32686:458;;32481:681;;;:::o;33435:1529::-;33523:13;;-1:-1:-1;;;;;33551:16:0;;33547:48;;33576:19;;-1:-1:-1;;;33576:19:0;;;;;;;;;;;33547:48;33610:13;33606:44;;33632:18;;-1:-1:-1;;;33632:18:0;;;;;;;;;;;33606:44;-1:-1:-1;;;;;34138:22:0;;;;;;:18;:22;;17582:2;34138:22;;:70;;34176:31;34164:44;;34138:70;;;27546:11;27522:22;27518:40;-1:-1:-1;29256:15:0;;29231:23;29227:45;27515:51;27505:62;34451:31;;;;:17;:31;;;;;:173;34469:12;34700:23;;;34738:101;34765:35;;34790:9;;;;;-1:-1:-1;;;;;34765:35:0;;;34782:1;;34765:35;;34782:1;;34765:35;34834:3;34824:7;:13;34738:101;;34855:13;:19;-1:-1:-1;56124:557:0::1;56043:638:::0;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:185::-;4863:3;4901:5;4895:12;4916:52;4961:6;4956:3;4949:4;4942:5;4938:16;4916:52;:::i;:::-;4984:16;;;;;4821:185;-1:-1:-1;;4821:185:1:o;5129:1301::-;5406:3;5435:1;5468:6;5462:13;5498:3;5520:1;5548:9;5544:2;5540:18;5530:28;;5608:2;5597:9;5593:18;5630;5620:61;;5674:4;5666:6;5662:17;5652:27;;5620:61;5700:2;5748;5740:6;5737:14;5717:18;5714:38;5711:165;;;-1:-1:-1;;;5775:33:1;;5831:4;5828:1;5821:15;5861:4;5782:3;5849:17;5711:165;5892:18;5919:104;;;;6037:1;6032:320;;;;5885:467;;5919:104;-1:-1:-1;;5952:24:1;;5940:37;;5997:16;;;;-1:-1:-1;5919:104:1;;6032:320;15007:1;15000:14;;;15044:4;15031:18;;6127:1;6141:165;6155:6;6152:1;6149:13;6141:165;;;6233:14;;6220:11;;;6213:35;6276:16;;;;6170:10;;6141:165;;;6145:3;;6335:6;6330:3;6326:16;6319:23;;5885:467;;;;;;;6368:56;6393:30;6419:3;6411:6;6393:30;:::i;:::-;-1:-1:-1;;;5071:20:1;;5116:1;5107:11;;5011:113;6368:56;6361:63;5129:1301;-1:-1:-1;;;;;5129:1301:1:o;7183:488::-;-1:-1:-1;;;;;7452:15:1;;;7434:34;;7504:15;;7499:2;7484:18;;7477:43;7551:2;7536:18;;7529:34;;;7599:3;7594:2;7579:18;;7572:31;;;7377:4;;7620:45;;7645:19;;7637:6;7620:45;:::i;:::-;7612:53;7183:488;-1:-1:-1;;;;;;7183:488:1:o;7676:632::-;7847:2;7899:21;;;7969:13;;7872:18;;;7991:22;;;7818:4;;7847:2;8070:15;;;;8044:2;8029:18;;;7818:4;8113:169;8127:6;8124:1;8121:13;8113:169;;;8188:13;;8176:26;;8257:15;;;;8222:12;;;;8149:1;8142:9;8113:169;;;-1:-1:-1;8299:3:1;;7676:632;-1:-1:-1;;;;;;7676:632:1:o;8505:219::-;8654:2;8643:9;8636:21;8617:4;8674:44;8714:2;8703:9;8699:18;8691:6;8674:44;:::i;10170:343::-;10372:2;10354:21;;;10411:2;10391:18;;;10384:30;-1:-1:-1;;;10445:2:1;10430:18;;10423:49;10504:2;10489:18;;10170:343::o;10866:356::-;11068:2;11050:21;;;11087:18;;;11080:30;11146:34;11141:2;11126:18;;11119:62;11213:2;11198:18;;10866:356::o;13710:342::-;13912:2;13894:21;;;13951:2;13931:18;;;13924:30;-1:-1:-1;;;13985:2:1;13970:18;;13963:48;14043:2;14028:18;;13710:342::o;14057:345::-;14259:2;14241:21;;;14298:2;14278:18;;;14271:30;-1:-1:-1;;;14332:2:1;14317:18;;14310:51;14393:2;14378:18;;14057:345::o;15060:128::-;15100:3;15131:1;15127:6;15124:1;15121:13;15118:39;;;15137:18;;:::i;:::-;-1:-1:-1;15173:9:1;;15060:128::o;15193:120::-;15233:1;15259;15249:35;;15264:18;;:::i;:::-;-1:-1:-1;15298:9:1;;15193:120::o;15318:168::-;15358:7;15424:1;15420;15416:6;15412:14;15409:1;15406:21;15401:1;15394:9;15387:17;15383:45;15380:71;;;15431:18;;:::i;:::-;-1:-1:-1;15471:9:1;;15318:168::o;15491:125::-;15531:4;15559:1;15556;15553:8;15550:34;;;15564:18;;:::i;:::-;-1:-1:-1;15601:9:1;;15491:125::o;15621:258::-;15693:1;15703:113;15717:6;15714:1;15711:13;15703:113;;;15793:11;;;15787:18;15774:11;;;15767:39;15739:2;15732:10;15703:113;;;15834:6;15831:1;15828:13;15825:48;;;-1:-1:-1;;15869:1:1;15851:16;;15844:27;15621:258::o;15884:380::-;15963:1;15959:12;;;;16006;;;16027:61;;16081:4;16073:6;16069:17;16059:27;;16027:61;16134:2;16126:6;16123:14;16103:18;16100:38;16097:161;;;16180:10;16175:3;16171:20;16168:1;16161:31;16215:4;16212:1;16205:15;16243:4;16240:1;16233:15;16097:161;;15884:380;;;:::o;16269:135::-;16308:3;-1:-1:-1;;16329:17:1;;16326:43;;;16349:18;;:::i;:::-;-1:-1:-1;16396:1:1;16385:13;;16269:135::o;16409:112::-;16441:1;16467;16457:35;;16472:18;;:::i;:::-;-1:-1:-1;16506:9:1;;16409:112::o;16526:127::-;16587:10;16582:3;16578:20;16575:1;16568:31;16618:4;16615:1;16608:15;16642:4;16639:1;16632:15;16658:127;16719:10;16714:3;16710:20;16707:1;16700:31;16750:4;16747:1;16740:15;16774:4;16771:1;16764:15;16790:127;16851:10;16846:3;16842:20;16839:1;16832:31;16882:4;16879:1;16872:15;16906:4;16903:1;16896:15;16922:127;16983:10;16978:3;16974:20;16971:1;16964:31;17014:4;17011:1;17004:15;17038:4;17035:1;17028:15;17054:131;-1:-1:-1;;;;;;17128:32:1;;17118:43;;17108:71;;17175:1;17172;17165:12
Swarm Source
ipfs://c548a626835951b64ac47216fcc24d1f437f9a1c5c075ac468f3bfbcc917ca4f
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.