Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
202 RW
Holders
172
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RealWizards
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Ownable} from "./Ownable.sol"; import {ERC721A} from "./ERC721A.sol"; contract RealWizards is ERC721A, Ownable { enum MintState { Closed, Open } MintState public mintState; uint256 public constant MAX_SUPPLY = 333; uint256 public constant PRICE = 0.0095 ether; uint256 public constant WALLET_LIMIT = 1; string public baseURI = "ipfs://bafybeiaaufyqbaue3p4sczzk4t463c2ybf7fxdvlcyumpeukaiz7oairuy/"; constructor( address recipient, uint256 allocation ) ERC721A("Real Wizards", "RW") { if (allocation < MAX_SUPPLY && allocation != 0) _mint(recipient, allocation); } // Modifiers modifier onlyExternallyOwnedAccount() { require(tx.origin == msg.sender, "Not externally owned account"); _; } // Mint functions function remainingForAddress(address who) public view returns (uint256) { if (mintState == MintState.Open) return WALLET_LIMIT + _getAux(who) - _numberMinted(who); else revert("Invalid sale state"); } function setMintState(uint256 newState) external onlyOwner { if (newState == 0) mintState = MintState.Closed; else if (newState == 1) mintState = MintState.Open; else revert("Invalid sale state"); } function batchMint( address[] calldata recipients, uint256[] calldata quantities ) external onlyOwner { require(recipients.length == quantities.length, "Arguments length mismatch"); uint256 supply = this.totalSupply(); for (uint256 i; i < recipients.length; i++) { supply += quantities[i]; require(supply <= MAX_SUPPLY, "Mint exceeds max supply"); _mint(recipients[i], quantities[i]); } } function mint(uint256 quantity) external payable onlyExternallyOwnedAccount { require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply"); require(mintState == MintState.Open, "Invalid sale state"); require(msg.value >= PRICE * quantity, "Insufficient value"); require(remainingForAddress(msg.sender) >= quantity, "Limit for user reached"); _mint(msg.sender, quantity); } // Token function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } // Withdraw function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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 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` 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. 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; } /** * 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 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), ".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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 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) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); 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; } /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","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"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum RealWizards.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"remainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052604360808181529062001f2360a03980516200002a9160099160209091019062000239565b503480156200003857600080fd5b5060405162001f6638038062001f668339810160408190526200005b91620002df565b6040518060400160405280600c81526020016b5265616c2057697a6172647360a01b81525060405180604001604052806002815260200161525760f01b8152508160029080519060200190620000b392919062000239565b508051620000c990600390602084019062000239565b50506000805550620000db3362000106565b61014d81108015620000ec57508015155b15620000fe57620000fe828262000158565b505062000358565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166200018257604051622e076360e81b815260040160405180910390fd5b81620001a15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001ec5750600055505050565b82805462000247906200031b565b90600052602060002090601f0160209004810192826200026b5760008555620002b6565b82601f106200028657805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b657825182559160200191906001019062000299565b50620002c4929150620002c8565b5090565b5b80821115620002c45760008155600101620002c9565b60008060408385031215620002f357600080fd5b82516001600160a01b03811681146200030b57600080fd5b6020939093015192949293505050565b600181811c908216806200033057607f821691505b602082108114156200035257634e487b7160e01b600052602260045260246000fd5b50919050565b611bbb80620003686000396000f3fe6080604052600436106101b75760003560e01c806368573107116100ec578063a0712d681161008a578063c051e38a11610064578063c051e38a1461049b578063c87b56dd146104c9578063e985e9c5146104e9578063f2fde38b1461053257600080fd5b8063a0712d6814610448578063a22cb4651461045b578063b88d4fde1461047b57600080fd5b8063715018a6116100c6578063715018a6146103e55780638d859f3e146103fa5780638da5cb5b1461041557806395d89b411461043357600080fd5b806368573107146103905780636c0360eb146103b057806370a08231146103c557600080fd5b806329471d7d116101595780633ccfd60b116101335780633ccfd60b1461031b57806342842e0e1461033057806355f804b3146103505780636352211e1461037057600080fd5b806329471d7d146102d057806332cb6b0c146102f0578063351ed9511461030657600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630bb862d11461026d57806318160ddd1461028d57806323b872dd146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461187a565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105a4565b6040516101e891906119ff565b34801561021f57600080fd5b5061023361022e3660046118fd565b610636565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046117e4565b61067a565b005b34801561027957600080fd5b5061026b6102883660046118fd565b61074d565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b3480156102bc57600080fd5b5061026b6102cb3660046116f0565b610806565b3480156102dc57600080fd5b506102a26102eb3660046116a2565b610816565b3480156102fc57600080fd5b506102a261014d81565b34801561031257600080fd5b506102a2600181565b34801561032757600080fd5b5061026b610885565b34801561033c57600080fd5b5061026b61034b3660046116f0565b610904565b34801561035c57600080fd5b5061026b61036b3660046118b4565b61091f565b34801561037c57600080fd5b5061023361038b3660046118fd565b610960565b34801561039c57600080fd5b5061026b6103ab36600461180e565b61096b565b3480156103bc57600080fd5b50610206610b38565b3480156103d157600080fd5b506102a26103e03660046116a2565b610bc6565b3480156103f157600080fd5b5061026b610c15565b34801561040657600080fd5b506102a26621c0331d5dc00081565b34801561042157600080fd5b506008546001600160a01b0316610233565b34801561043f57600080fd5b50610206610c4b565b61026b6104563660046118fd565b610c5a565b34801561046757600080fd5b5061026b6104763660046117a8565b610e82565b34801561048757600080fd5b5061026b61049636600461172c565b610f18565b3480156104a757600080fd5b506008546104bc90600160a01b900460ff1681565b6040516101e891906119d7565b3480156104d557600080fd5b506102066104e43660046118fd565b610f62565b3480156104f557600080fd5b506101dc6105043660046116bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053e57600080fd5b5061026b61054d3660046116a2565b610fe7565b60006301ffc9a760e01b6001600160e01b03198316148061058357506380ac58cd60e01b6001600160e01b03198316145b8061059e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105b390611ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546105df90611ac1565b801561062c5780601f106106015761010080835404028352916020019161062c565b820191906000526020600020905b81548152906001019060200180831161060f57829003601f168201915b5050505050905090565b60006106418261107f565b61065e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610685826110a6565b9050806001600160a01b0316836001600160a01b031614156106ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106f1576106d48133610504565b6106f1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790611a12565b60405180910390fd5b806107a357600880546000919060ff60a01b1916600160a01b835b021790555050565b80600114156107c657600880546001919060ff60a01b1916600160a01b8361079b565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610777565b50565b610811838383611107565b505050565b60006001600854600160a01b900460ff16600181111561083857610838611b2d565b14156107c6576001600160a01b03821660009081526005602052604090819020549081901c67ffffffffffffffff16906108769060c01c6001611a47565b61059e9190611a7e565b919050565b6008546001600160a01b031633146108af5760405162461bcd60e51b815260040161077790611a12565b604051600090339047908381818185875af1925050503d80600081146108f1576040519150601f19603f3d011682016040523d82523d6000602084013e6108f6565b606091505b505090508061080357600080fd5b61081183838360405180602001604052806000815250610f18565b6008546001600160a01b031633146109495760405162461bcd60e51b815260040161077790611a12565b805161095c906009906020840190611530565b5050565b600061059e826110a6565b6008546001600160a01b031633146109955760405162461bcd60e51b815260040161077790611a12565b8281146109e45760405162461bcd60e51b815260206004820152601960248201527f417267756d656e7473206c656e677468206d69736d61746368000000000000006044820152606401610777565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a1f57600080fd5b505afa158015610a33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a579190611916565b905060005b84811015610b3057838382818110610a7657610a76611b43565b9050602002013582610a889190611a47565b915061014d821115610ad65760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610777565b610b1e868683818110610aeb57610aeb611b43565b9050602002016020810190610b0091906116a2565b858584818110610b1257610b12611b43565b905060200201356112aa565b80610b2881611afc565b915050610a5c565b505050505050565b60098054610b4590611ac1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190611ac1565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b505050505081565b60006001600160a01b038216610bef576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b815260040161077790611a12565b610c496000611388565b565b6060600380546105b390611ac1565b323314610ca95760405162461bcd60e51b815260206004820152601c60248201527f4e6f742065787465726e616c6c79206f776e6564206163636f756e74000000006044820152606401610777565b61014d81306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce657600080fd5b505afa158015610cfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1e9190611916565b610d289190611a47565b1115610d705760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610777565b6001600854600160a01b900460ff166001811115610d9057610d90611b2d565b14610dd25760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610777565b610de3816621c0331d5dc000611a5f565b341015610e275760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b6044820152606401610777565b80610e3133610816565b1015610e785760405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d08199bdc881d5cd95c881c995858da195960521b6044820152606401610777565b61080333826112aa565b6001600160a01b038216331415610eac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f23848484611107565b6001600160a01b0383163b15610f5c57610f3f848484846113da565b610f5c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f6d8261107f565b610f8a57604051630a14c4b560e41b815260040160405180910390fd5b6000610f946114d2565b9050805160001415610fb55760405180602001604052806000815250610fe0565b80610fbf846114e1565b604051602001610fd092919061195b565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110115760405162461bcd60e51b815260040161077790611a12565b6001600160a01b0381166110765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61080381611388565b600080548210801561059e575050600090815260046020526040902054600160e01b161590565b6000816000548110156110ee57600081815260046020526040902054600160e01b81166110ec575b80610fe05750600019016000818152600460205260409020546110ce565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611112826110a6565b9050836001600160a01b0316816001600160a01b0316146111455760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061116357506111638533610504565b8061117e57503361117384610636565b6001600160a01b0316145b90508061119e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c557604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661126257600183016000818152600460205260409020546112605760005481146112605760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b0383166112d357604051622e076360e81b815260040160405180910390fd5b816112f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061133c5750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061140f90339089908890889060040161199a565b602060405180830381600087803b15801561142957600080fd5b505af1925050508015611459575060408051601f3d908101601f1916820190925261145691810190611897565b60015b6114b4573d808015611487576040519150601f19603f3d011682016040523d82523d6000602084013e61148c565b606091505b5080516114ac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105b390611ac1565b604080516080810191829052607f0190826030600a8206018353600a90045b801561151e57600183039250600a81066030018353600a9004611500565b50819003601f19909101908152919050565b82805461153c90611ac1565b90600052602060002090601f01602090048101928261155e57600085556115a4565b82601f1061157757805160ff19168380011785556115a4565b828001600101855582156115a4579182015b828111156115a4578251825591602001919060010190611589565b506115b09291506115b4565b5090565b5b808211156115b057600081556001016115b5565b600067ffffffffffffffff808411156115e4576115e4611b59565b604051601f8501601f19908116603f0116810190828211818310171561160c5761160c611b59565b8160405280935085815286868601111561162557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461088057600080fd5b60008083601f84011261166857600080fd5b50813567ffffffffffffffff81111561168057600080fd5b6020830191508360208260051b850101111561169b57600080fd5b9250929050565b6000602082840312156116b457600080fd5b610fe08261163f565b600080604083850312156116d057600080fd5b6116d98361163f565b91506116e76020840161163f565b90509250929050565b60008060006060848603121561170557600080fd5b61170e8461163f565b925061171c6020850161163f565b9150604084013590509250925092565b6000806000806080858703121561174257600080fd5b61174b8561163f565b93506117596020860161163f565b925060408501359150606085013567ffffffffffffffff81111561177c57600080fd5b8501601f8101871361178d57600080fd5b61179c878235602084016115c9565b91505092959194509250565b600080604083850312156117bb57600080fd5b6117c48361163f565b9150602083013580151581146117d957600080fd5b809150509250929050565b600080604083850312156117f757600080fd5b6118008361163f565b946020939093013593505050565b6000806000806040858703121561182457600080fd5b843567ffffffffffffffff8082111561183c57600080fd5b61184888838901611656565b9096509450602087013591508082111561186157600080fd5b5061186e87828801611656565b95989497509550505050565b60006020828403121561188c57600080fd5b8135610fe081611b6f565b6000602082840312156118a957600080fd5b8151610fe081611b6f565b6000602082840312156118c657600080fd5b813567ffffffffffffffff8111156118dd57600080fd5b8201601f810184136118ee57600080fd5b6114ca848235602084016115c9565b60006020828403121561190f57600080fd5b5035919050565b60006020828403121561192857600080fd5b5051919050565b60008151808452611947816020860160208601611a95565b601f01601f19169290920160200192915050565b6000835161196d818460208801611a95565b835190830190611981818360208801611a95565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119cd9083018461192f565b9695505050505050565b60208101600283106119f957634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000610fe0602083018461192f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a5a57611a5a611b17565b500190565b6000816000190483118215151615611a7957611a79611b17565b500290565b600082821015611a9057611a90611b17565b500390565b60005b83811015611ab0578181015183820152602001611a98565b83811115610f5c5750506000910152565b600181811c90821680611ad557607f821691505b60208210811415611af657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b1057611b10611b17565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080357600080fdfea2646970667358221220675b6817564248106bf441f01506e1c88c2a4d12645ddc693aca684b06c7665364736f6c63430008070033697066733a2f2f626166796265696161756679716261756533703473637a7a6b3474343633633279626637667864766c6379756d7065756b61697a376f61697275792f000000000000000000000000ebd859214923a3fbddba898e1a38b3230dd4b1560000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806368573107116100ec578063a0712d681161008a578063c051e38a11610064578063c051e38a1461049b578063c87b56dd146104c9578063e985e9c5146104e9578063f2fde38b1461053257600080fd5b8063a0712d6814610448578063a22cb4651461045b578063b88d4fde1461047b57600080fd5b8063715018a6116100c6578063715018a6146103e55780638d859f3e146103fa5780638da5cb5b1461041557806395d89b411461043357600080fd5b806368573107146103905780636c0360eb146103b057806370a08231146103c557600080fd5b806329471d7d116101595780633ccfd60b116101335780633ccfd60b1461031b57806342842e0e1461033057806355f804b3146103505780636352211e1461037057600080fd5b806329471d7d146102d057806332cb6b0c146102f0578063351ed9511461030657600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630bb862d11461026d57806318160ddd1461028d57806323b872dd146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461187a565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105a4565b6040516101e891906119ff565b34801561021f57600080fd5b5061023361022e3660046118fd565b610636565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046117e4565b61067a565b005b34801561027957600080fd5b5061026b6102883660046118fd565b61074d565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b3480156102bc57600080fd5b5061026b6102cb3660046116f0565b610806565b3480156102dc57600080fd5b506102a26102eb3660046116a2565b610816565b3480156102fc57600080fd5b506102a261014d81565b34801561031257600080fd5b506102a2600181565b34801561032757600080fd5b5061026b610885565b34801561033c57600080fd5b5061026b61034b3660046116f0565b610904565b34801561035c57600080fd5b5061026b61036b3660046118b4565b61091f565b34801561037c57600080fd5b5061023361038b3660046118fd565b610960565b34801561039c57600080fd5b5061026b6103ab36600461180e565b61096b565b3480156103bc57600080fd5b50610206610b38565b3480156103d157600080fd5b506102a26103e03660046116a2565b610bc6565b3480156103f157600080fd5b5061026b610c15565b34801561040657600080fd5b506102a26621c0331d5dc00081565b34801561042157600080fd5b506008546001600160a01b0316610233565b34801561043f57600080fd5b50610206610c4b565b61026b6104563660046118fd565b610c5a565b34801561046757600080fd5b5061026b6104763660046117a8565b610e82565b34801561048757600080fd5b5061026b61049636600461172c565b610f18565b3480156104a757600080fd5b506008546104bc90600160a01b900460ff1681565b6040516101e891906119d7565b3480156104d557600080fd5b506102066104e43660046118fd565b610f62565b3480156104f557600080fd5b506101dc6105043660046116bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053e57600080fd5b5061026b61054d3660046116a2565b610fe7565b60006301ffc9a760e01b6001600160e01b03198316148061058357506380ac58cd60e01b6001600160e01b03198316145b8061059e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105b390611ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546105df90611ac1565b801561062c5780601f106106015761010080835404028352916020019161062c565b820191906000526020600020905b81548152906001019060200180831161060f57829003601f168201915b5050505050905090565b60006106418261107f565b61065e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610685826110a6565b9050806001600160a01b0316836001600160a01b031614156106ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106f1576106d48133610504565b6106f1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790611a12565b60405180910390fd5b806107a357600880546000919060ff60a01b1916600160a01b835b021790555050565b80600114156107c657600880546001919060ff60a01b1916600160a01b8361079b565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610777565b50565b610811838383611107565b505050565b60006001600854600160a01b900460ff16600181111561083857610838611b2d565b14156107c6576001600160a01b03821660009081526005602052604090819020549081901c67ffffffffffffffff16906108769060c01c6001611a47565b61059e9190611a7e565b919050565b6008546001600160a01b031633146108af5760405162461bcd60e51b815260040161077790611a12565b604051600090339047908381818185875af1925050503d80600081146108f1576040519150601f19603f3d011682016040523d82523d6000602084013e6108f6565b606091505b505090508061080357600080fd5b61081183838360405180602001604052806000815250610f18565b6008546001600160a01b031633146109495760405162461bcd60e51b815260040161077790611a12565b805161095c906009906020840190611530565b5050565b600061059e826110a6565b6008546001600160a01b031633146109955760405162461bcd60e51b815260040161077790611a12565b8281146109e45760405162461bcd60e51b815260206004820152601960248201527f417267756d656e7473206c656e677468206d69736d61746368000000000000006044820152606401610777565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a1f57600080fd5b505afa158015610a33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a579190611916565b905060005b84811015610b3057838382818110610a7657610a76611b43565b9050602002013582610a889190611a47565b915061014d821115610ad65760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610777565b610b1e868683818110610aeb57610aeb611b43565b9050602002016020810190610b0091906116a2565b858584818110610b1257610b12611b43565b905060200201356112aa565b80610b2881611afc565b915050610a5c565b505050505050565b60098054610b4590611ac1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190611ac1565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b505050505081565b60006001600160a01b038216610bef576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b815260040161077790611a12565b610c496000611388565b565b6060600380546105b390611ac1565b323314610ca95760405162461bcd60e51b815260206004820152601c60248201527f4e6f742065787465726e616c6c79206f776e6564206163636f756e74000000006044820152606401610777565b61014d81306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce657600080fd5b505afa158015610cfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1e9190611916565b610d289190611a47565b1115610d705760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610777565b6001600854600160a01b900460ff166001811115610d9057610d90611b2d565b14610dd25760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610777565b610de3816621c0331d5dc000611a5f565b341015610e275760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b6044820152606401610777565b80610e3133610816565b1015610e785760405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d08199bdc881d5cd95c881c995858da195960521b6044820152606401610777565b61080333826112aa565b6001600160a01b038216331415610eac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f23848484611107565b6001600160a01b0383163b15610f5c57610f3f848484846113da565b610f5c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f6d8261107f565b610f8a57604051630a14c4b560e41b815260040160405180910390fd5b6000610f946114d2565b9050805160001415610fb55760405180602001604052806000815250610fe0565b80610fbf846114e1565b604051602001610fd092919061195b565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110115760405162461bcd60e51b815260040161077790611a12565b6001600160a01b0381166110765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61080381611388565b600080548210801561059e575050600090815260046020526040902054600160e01b161590565b6000816000548110156110ee57600081815260046020526040902054600160e01b81166110ec575b80610fe05750600019016000818152600460205260409020546110ce565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611112826110a6565b9050836001600160a01b0316816001600160a01b0316146111455760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061116357506111638533610504565b8061117e57503361117384610636565b6001600160a01b0316145b90508061119e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c557604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661126257600183016000818152600460205260409020546112605760005481146112605760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b0383166112d357604051622e076360e81b815260040160405180910390fd5b816112f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061133c5750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061140f90339089908890889060040161199a565b602060405180830381600087803b15801561142957600080fd5b505af1925050508015611459575060408051601f3d908101601f1916820190925261145691810190611897565b60015b6114b4573d808015611487576040519150601f19603f3d011682016040523d82523d6000602084013e61148c565b606091505b5080516114ac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105b390611ac1565b604080516080810191829052607f0190826030600a8206018353600a90045b801561151e57600183039250600a81066030018353600a9004611500565b50819003601f19909101908152919050565b82805461153c90611ac1565b90600052602060002090601f01602090048101928261155e57600085556115a4565b82601f1061157757805160ff19168380011785556115a4565b828001600101855582156115a4579182015b828111156115a4578251825591602001919060010190611589565b506115b09291506115b4565b5090565b5b808211156115b057600081556001016115b5565b600067ffffffffffffffff808411156115e4576115e4611b59565b604051601f8501601f19908116603f0116810190828211818310171561160c5761160c611b59565b8160405280935085815286868601111561162557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461088057600080fd5b60008083601f84011261166857600080fd5b50813567ffffffffffffffff81111561168057600080fd5b6020830191508360208260051b850101111561169b57600080fd5b9250929050565b6000602082840312156116b457600080fd5b610fe08261163f565b600080604083850312156116d057600080fd5b6116d98361163f565b91506116e76020840161163f565b90509250929050565b60008060006060848603121561170557600080fd5b61170e8461163f565b925061171c6020850161163f565b9150604084013590509250925092565b6000806000806080858703121561174257600080fd5b61174b8561163f565b93506117596020860161163f565b925060408501359150606085013567ffffffffffffffff81111561177c57600080fd5b8501601f8101871361178d57600080fd5b61179c878235602084016115c9565b91505092959194509250565b600080604083850312156117bb57600080fd5b6117c48361163f565b9150602083013580151581146117d957600080fd5b809150509250929050565b600080604083850312156117f757600080fd5b6118008361163f565b946020939093013593505050565b6000806000806040858703121561182457600080fd5b843567ffffffffffffffff8082111561183c57600080fd5b61184888838901611656565b9096509450602087013591508082111561186157600080fd5b5061186e87828801611656565b95989497509550505050565b60006020828403121561188c57600080fd5b8135610fe081611b6f565b6000602082840312156118a957600080fd5b8151610fe081611b6f565b6000602082840312156118c657600080fd5b813567ffffffffffffffff8111156118dd57600080fd5b8201601f810184136118ee57600080fd5b6114ca848235602084016115c9565b60006020828403121561190f57600080fd5b5035919050565b60006020828403121561192857600080fd5b5051919050565b60008151808452611947816020860160208601611a95565b601f01601f19169290920160200192915050565b6000835161196d818460208801611a95565b835190830190611981818360208801611a95565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119cd9083018461192f565b9695505050505050565b60208101600283106119f957634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000610fe0602083018461192f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a5a57611a5a611b17565b500190565b6000816000190483118215151615611a7957611a79611b17565b500290565b600082821015611a9057611a90611b17565b500390565b60005b83811015611ab0578181015183820152602001611a98565b83811115610f5c5750506000910152565b600181811c90821680611ad557607f821691505b60208210811415611af657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b1057611b10611b17565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080357600080fdfea2646970667358221220675b6817564248106bf441f01506e1c88c2a4d12645ddc693aca684b06c7665364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ebd859214923a3fbddba898e1a38b3230dd4b1560000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : recipient (address): 0xeBD859214923a3fbddBA898E1a38b3230dd4B156
Arg [1] : allocation (uint256): 0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ebd859214923a3fbddba898e1a38b3230dd4b156
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
136:2569:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:1;;;;;;;;;;-1:-1:-1;4880:607:1;;;;;:::i;:::-;;:::i;:::-;;;7362:14:5;;7355:22;7337:41;;7325:2;7310:18;4880:607:1;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11778:200::-;;;;;;;;;;-1:-1:-1;11778:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6660:32:5;;;6642:51;;6630:2;6615:18;11778:200:1;6496:203:5;11254:463:1;;;;;;;;;;-1:-1:-1;11254:463:1;;;;;:::i;:::-;;:::i;:::-;;1146:226:4;;;;;;;;;;-1:-1:-1;1146:226:4;;;;;:::i;:::-;;:::i;3963:309:1:-;;;;;;;;;;-1:-1:-1;4225:12:1;;4016:7;4209:13;:28;3963:309;;;10982:25:5;;;10970:2;10955:18;3963:309:1;10836:177:5;12638:164:1;;;;;;;;;;-1:-1:-1;12638:164:1;;;;;:::i;:::-;;:::i;908:232:4:-;;;;;;;;;;-1:-1:-1;908:232:4;;;;;:::i;:::-;;:::i;274:40::-;;;;;;;;;;;;311:3;274:40;;370;;;;;;;;;;;;409:1;370:40;;2544:159;;;;;;;;;;;;;:::i;12868:179:1:-;;;;;;;;;;-1:-1:-1;12868:179:1;;;;;:::i;:::-;;:::i;2433:88:4:-;;;;;;;;;;-1:-1:-1;2433:88:4;;;;;:::i;:::-;;:::i;9564:142:1:-;;;;;;;;;;-1:-1:-1;9564:142:1;;;;;:::i;:::-;;:::i;1378:481:4:-;;;;;;;;;;-1:-1:-1;1378:481:4;;;;;:::i;:::-;;:::i;417:93::-;;;;;;;;;;;;;:::i;5546:221:1:-;;;;;;;;;;-1:-1:-1;5546:221:1;;;;;:::i;:::-;;:::i;1661:101:3:-;;;;;;;;;;;;;:::i;320:44:4:-;;;;;;;;;;;;352:12;320:44;;1029:85:3;;;;;;;;;;-1:-1:-1;1101:6:3;;-1:-1:-1;;;;;1101:6:3;1029:85;;9930:102:1;;;;;;;;;;;;;:::i;1865:436:4:-;;;;;;:::i;:::-;;:::i;12045:303:1:-;;;;;;;;;;-1:-1:-1;12045:303:1;;;;;:::i;:::-;;:::i;13113:385::-;;;;;;;;;;-1:-1:-1;13113:385:1;;;;;:::i;:::-;;:::i;241:26:4:-;;;;;;;;;;-1:-1:-1;241:26:4;;;;-1:-1:-1;;;241:26:4;;;;;;;;;;;;;:::i;10098:322:1:-;;;;;;;;;;-1:-1:-1;10098:322:1;;;;;:::i;:::-;;:::i;12414:162::-;;;;;;;;;;-1:-1:-1;12414:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;12534:25:1;;;12511:4;12534:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12414:162;1911:198:3;;;;;;;;;;-1:-1:-1;1911:198:3;;;;;:::i;:::-;;:::i;4880:607:1:-;4965:4;-1:-1:-1;;;;;;;;;5260:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:1;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:1;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:1:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11778:200::-;11846:7;11870:16;11878:7;11870;:16::i;:::-;11865:64;;11895:34;;-1:-1:-1;;;11895:34:1;;;;;;;;;;;11865:64;-1:-1:-1;11947:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;11947:24:1;;11778:200::o;11254:463::-;11326:13;11358:27;11377:7;11358:18;:27::i;:::-;11326:61;;11407:5;-1:-1:-1;;;;;11401:11:1;:2;-1:-1:-1;;;;;11401:11:1;;11397:48;;;11421:24;;-1:-1:-1;;;11421:24:1;;;;;;;;;;;11397:48;27455:10;-1:-1:-1;;;;;11460:28:1;;;11456:172;;11507:44;11524:5;27455:10;12414:162;:::i;11507:44::-;11502:126;;11578:35;;-1:-1:-1;;;11578:35:1;;;;;;;;;;;11502:126;11638:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11638:29:1;-1:-1:-1;;;;;11638:29:1;;;;;;;;;11682:28;;11638:24;;11682:28;;;;;;;11316:401;11254:463;;:::o;1146:226:4:-;1101:6:3;;-1:-1:-1;;;;;1101:6:3;27455:10:1;1241:23:3;1233:68;;;;-1:-1:-1;;;1233:68:3;;;;;;;:::i;:::-;;;;;;;;;1219:13:4;1215:150:::1;;1234:9;:28:::0;;1246:16:::1;::::0;1234:9;-1:-1:-1;;;;1234:28:4::1;-1:-1:-1::0;;;1246:16:4;1234:28:::1;;;;;;1146:226:::0;:::o;1215:150::-:1;1281:8;1293:1;1281:13;1277:88;;;1296:9;:26:::0;;1308:14:::1;::::0;1296:9;-1:-1:-1;;;;1296:26:4::1;-1:-1:-1::0;;;1308:14:4;1296:26:::1;::::0;1277:88:::1;1337:28;::::0;-1:-1:-1;;;1337:28:4;;9629:2:5;1337:28:4::1;::::0;::::1;9611:21:5::0;9668:2;9648:18;;;9641:30;-1:-1:-1;;;9687:18:5;;;9680:48;9745:18;;1337:28:4::1;9427:342:5::0;1277:88:4::1;1146:226:::0;:::o;12638:164:1:-;12767:28;12777:4;12783:2;12787:7;12767:9;:28::i;:::-;12638:164;;;:::o;908:232:4:-;971:7;1007:14;994:9;;-1:-1:-1;;;994:9:4;;;;:27;;;;;;;;:::i;:::-;;990:143;;;-1:-1:-1;;;;;5932:25:1;;5905:7;5932:25;;;:18;:25;;1151:2;5932:25;;;;;:49;;;;1017:13;5931:80;;1042:27:4;;1379:3:1;6485:39;409:1:4;1042:27;:::i;:::-;:48;;;;:::i;990:143::-;908:232;;;:::o;2544:159::-;1101:6:3;;-1:-1:-1;;;;;1101:6:3;27455:10:1;1241:23:3;1233:68;;;;-1:-1:-1;;;1233:68:3;;;;;;;:::i;:::-;2612:58:4::1;::::0;2594:12:::1;::::0;2620:10:::1;::::0;2644:21:::1;::::0;2594:12;2612:58;2594:12;2612:58;2644:21;2620:10;2612:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2593:77;;;2688:7;2680:16;;;::::0;::::1;12868:179:1::0;13001:39;13018:4;13024:2;13028:7;13001:39;;;;;;;;;;;;:16;:39::i;2433:88:4:-;1101:6:3;;-1:-1:-1;;;;;1101:6:3;27455:10:1;1241:23:3;1233:68;;;;-1:-1:-1;;;1233:68:3;;;;;;;:::i;:::-;2501:13:4;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2433:88:::0;:::o;9564:142:1:-;9628:7;9670:27;9689:7;9670:18;:27::i;1378:481:4:-;1101:6:3;;-1:-1:-1;;;;;1101:6:3;27455:10:1;1241:23:3;1233:68;;;;-1:-1:-1;;;1233:68:3;;;;;;;:::i;:::-;1518:38:4;;::::1;1510:76;;;::::0;-1:-1:-1;;;1510:76:4;;10684:2:5;1510:76:4::1;::::0;::::1;10666:21:5::0;10723:2;10703:18;;;10696:30;10762:27;10742:18;;;10735:55;10807:18;;1510:76:4::1;10482:349:5::0;1510:76:4::1;1597:14;1614:4;-1:-1:-1::0;;;;;1614:16:4::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1597:35;;1647:9;1642:211;1658:21:::0;;::::1;1642:211;;;1710:10;;1721:1;1710:13;;;;;;;:::i;:::-;;;;;;;1700:23;;;;;:::i;:::-;;;311:3;1745:6;:20;;1737:56;;;::::0;-1:-1:-1;;;1737:56:4;;8162:2:5;1737:56:4::1;::::0;::::1;8144:21:5::0;8201:2;8181:18;;;8174:30;-1:-1:-1;;;8220:18:5;;;8213:53;8283:18;;1737:56:4::1;7960:347:5::0;1737:56:4::1;1807:35;1813:10;;1824:1;1813:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1828:10;;1839:1;1828:13;;;;;;;:::i;:::-;;;;;;;1807:5;:35::i;:::-;1681:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1642:211;;;;1500:359;1378:481:::0;;;;:::o;417:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5546:221:1:-;5610:7;-1:-1:-1;;;;;5633:19:1;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:1;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:1;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1661:101:3:-;1101:6;;-1:-1:-1;;;;;1101:6:3;27455:10:1;1241:23:3;1233:68;;;;-1:-1:-1;;;1233:68:3;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;9930:102:1:-;9986:13;10018:7;10011:14;;;;;:::i;1865:436:4:-;805:9;818:10;805:23;797:64;;;;-1:-1:-1;;;797:64:4;;8921:2:5;797:64:4;;;8903:21:5;8960:2;8940:18;;;8933:30;8999;8979:18;;;8972:58;9047:18;;797:64:4;8719:352:5;797:64:4;311:3:::1;1980:8;1959:4;-1:-1:-1::0;;;;;1959:16:4::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;1951:79;;;::::0;-1:-1:-1;;;1951:79:4;;8162:2:5;1951:79:4::1;::::0;::::1;8144:21:5::0;8201:2;8181:18;;;8174:30;-1:-1:-1;;;8220:18:5;;;8213:53;8283:18;;1951:79:4::1;7960:347:5::0;1951:79:4::1;2061:14;2048:9;::::0;-1:-1:-1;;;2048:9:4;::::1;;;:27;::::0;::::1;;;;;;:::i;:::-;;2040:58;;;::::0;-1:-1:-1;;;2040:58:4;;9629:2:5;2040:58:4::1;::::0;::::1;9611:21:5::0;9668:2;9648:18;;;9641:30;-1:-1:-1;;;9687:18:5;;;9680:48;9745:18;;2040:58:4::1;9427:342:5::0;2040:58:4::1;2129:16;2137:8:::0;352:12:::1;2129:16;:::i;:::-;2116:9;:29;;2108:60;;;::::0;-1:-1:-1;;;2108:60:4;;10337:2:5;2108:60:4::1;::::0;::::1;10319:21:5::0;10376:2;10356:18;;;10349:30;-1:-1:-1;;;10395:18:5;;;10388:48;10453:18;;2108:60:4::1;10135:342:5::0;2108:60:4::1;2221:8;2186:31;2206:10;2186:19;:31::i;:::-;:43;;2178:78;;;::::0;-1:-1:-1;;;2178:78:4;;9278:2:5;2178:78:4::1;::::0;::::1;9260:21:5::0;9317:2;9297:18;;;9290:30;-1:-1:-1;;;9336:18:5;;;9329:52;9398:18;;2178:78:4::1;9076:346:5::0;2178:78:4::1;2267:27;2273:10;2285:8;2267:5;:27::i;12045:303:1:-:0;-1:-1:-1;;;;;12143:31:1;;27455:10;12143:31;12139:61;;;12183:17;;-1:-1:-1;;;12183:17:1;;;;;;;;;;;12139:61;27455:10;12211:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12211:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;12211:60:1;;;;;;;;;;12286:55;;7337:41:5;;;12211:49:1;;27455:10;12286:55;;7310:18:5;12286:55:1;;;;;;;12045:303;;:::o;13113:385::-;13274:28;13284:4;13290:2;13294:7;13274:9;:28::i;:::-;-1:-1:-1;;;;;13316:14:1;;;:19;13312:180;;13354:56;13385:4;13391:2;13395:7;13404:5;13354:30;:56::i;:::-;13349:143;;13437:40;;-1:-1:-1;;;13437:40:1;;;;;;;;;;;13349:143;13113:385;;;;:::o;10098:322::-;10171:13;10201:16;10209:7;10201;:16::i;:::-;10196:59;;10226:29;;-1:-1:-1;;;10226:29:1;;;;;;;;;;;10196:59;10266:21;10290:10;:8;:10::i;:::-;10266:34;;10323:7;10317:21;10342:1;10317:26;;:96;;;;;;;;;;;;;;;;;10370:7;10379:18;10389:7;10379:9;:18::i;:::-;10353:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10317:96;10310:103;10098:322;-1:-1:-1;;;10098:322:1:o;1911:198:3:-;1101:6;;-1:-1:-1;;;;;1101:6:3;27455:10:1;1241:23:3;1233:68;;;;-1:-1:-1;;;1233:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:3;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:3;;8514:2:5;1991:73:3::1;::::0;::::1;8496:21:5::0;8553:2;8533:18;;;8526:30;8592:34;8572:18;;;8565:62;-1:-1:-1;;;8643:18:5;;;8636:36;8689:19;;1991:73:3::1;8312:402:5::0;1991:73:3::1;2074:28;2093:8;2074:18;:28::i;13744:268:1:-:0;13801:4;13888:13;;13878:7;:23;13836:150;;;;-1:-1:-1;;13938:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;13938:43:1;:48;;13744:268::o;7141:1105::-;7208:7;7242;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;-1:-1:-1;;;7481:23:1;;7477:687;;7992:111;7999:11;7992:111;;-1:-1:-1;;;8069:6:1;8051:25;;;;:17;:25;;;;;;7992:111;;7477:687;7355:827;7329:853;8208:31;;-1:-1:-1;;;8208:31:1;;;;;;;;;;;18844:2460;18954:27;18984;19003:7;18984:18;:27::i;:::-;18954:57;;19067:4;-1:-1:-1;;;;;19026:45:1;19042:19;-1:-1:-1;;;;;19026:45:1;;19022:86;;19080:28;;-1:-1:-1;;;19080:28:1;;;;;;;;;;;19022:86;19119:22;27455:10;-1:-1:-1;;;;;19145:27:1;;;;:86;;-1:-1:-1;19188:43:1;19205:4;27455:10;12414:162;:::i;19188:43::-;19145:145;;;-1:-1:-1;27455:10:1;19247:20;19259:7;19247:11;:20::i;:::-;-1:-1:-1;;;;;19247:43:1;;19145:145;19119:172;;19307:17;19302:66;;19333:35;;-1:-1:-1;;;19333:35:1;;;;;;;;;;;19302:66;-1:-1:-1;;;;;19382:16:1;;19378:52;;19407:23;;-1:-1:-1;;;19407:23:1;;;;;;;;;;;19378:52;19554:24;;;;:15;:24;;;;;;;;19547:31;;-1:-1:-1;;;;;;19547:31:1;;;-1:-1:-1;;;;;19939:24:1;;;;;:18;:24;;;;;19937:26;;-1:-1:-1;;19937:26:1;;;20007:22;;;;;;;20005:24;;-1:-1:-1;20005:24:1;;;20293:26;;;:17;:26;;;;;-1:-1:-1;;;20379:15:1;1656:3;20379:41;20338:83;;:126;;20293:171;;;20581:46;;20577:616;;20684:1;20674:11;;20652:19;20805:30;;;:17;:30;;;;;;20801:378;;20941:13;;20926:11;:28;20922:239;;21086:30;;;;:17;:30;;;;;:52;;;20922:239;20634:559;20577:616;21237:7;21233:2;-1:-1:-1;;;;;21218:27:1;21227:4;-1:-1:-1;;;;;21218:27:1;;;;;;;;;;;18944:2360;;18844:2460;;;:::o;16984:1618::-;17048:20;17071:13;-1:-1:-1;;;;;17098:16:1;;17094:48;;17123:19;;-1:-1:-1;;;17123:19:1;;;;;;;;;;;17094:48;17156:13;17152:44;;17178:18;;-1:-1:-1;;;17178:18:1;;;;;;;;;;;17152:44;-1:-1:-1;;;;;17732:22:1;;;;;;:18;:22;;;;1151:2;17732:22;;;:70;;17770:31;17758:44;;17732:70;;;18038:31;;;:17;:31;;;;;18129:15;1656:3;18129:41;18088:83;;-1:-1:-1;18206:13:1;;1913:3;18191:56;18088:160;18038:210;;:31;18326:23;;;18364:109;18390:40;;18415:14;;;;;-1:-1:-1;;;;;18390:40:1;;;18407:1;;18390:40;;18407:1;;18390:40;18468:3;18453:12;:18;18364:109;;-1:-1:-1;18487:13:1;:28;12638:164;;;:::o;2263:187:3:-;2355:6;;;-1:-1:-1;;;;;2371:17:3;;;-1:-1:-1;;;;;;2371:17:3;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;24909:697:1:-;25087:88;;-1:-1:-1;;;25087:88:1;;25067:4;;-1:-1:-1;;;;;25087:45:1;;;;;:88;;27455:10;;25154:4;;25160:7;;25169:5;;25087:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25087:88:1;;;;;;;;-1:-1:-1;;25087:88:1;;;;;;;;;;;;:::i;:::-;;;25083:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25365:13:1;;25361:229;;25410:40;;-1:-1:-1;;;25410:40:1;;;;;;;;;;;25361:229;25550:6;25544:13;25535:6;25531:2;25527:15;25520:38;25083:517;-1:-1:-1;;;;;;25243:64:1;-1:-1:-1;;;25243:64:1;;-1:-1:-1;25083:517:1;24909:697;;;;;;:::o;2321:106:4:-;2381:13;2413:7;2406:14;;;;;:::i;27573:1920:1:-;28038:4;28032:11;;28045:3;28028:21;;28121:17;;;;28805:11;;;28686:5;28935:2;28949;28939:13;;28931:22;28805:11;28918:36;28989:2;28979:13;;28579:668;29007:4;28579:668;;;29178:1;29173:3;29169:11;29162:18;;29228:2;29222:4;29218:13;29214:2;29210:22;29205:3;29197:36;29101:2;29091:13;;28579:668;;;-1:-1:-1;29287:13:1;;;-1:-1:-1;;29400:12:1;;;29458:19;;;29400:12;27573:1920;-1:-1:-1;27573:1920:1:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:5;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:5;;;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:5;;757:42;;747:70;;813:1;810;803:12;828:367;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:5;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:5;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:5:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:5;-1:-1:-1;3828:2:5;3813:18;;3800:32;;-1:-1:-1;3844:16:5;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:5;-1:-1:-1;;;;3271:773:5:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:5;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:5;;5008:180;-1:-1:-1;5008:180:5:o;5193:184::-;5263:6;5316:2;5304:9;5295:7;5291:23;5287:32;5284:52;;;5332:1;5329;5322:12;5284:52;-1:-1:-1;5355:16:5;;5193:184;-1:-1:-1;5193:184:5:o;5382:257::-;5423:3;5461:5;5455:12;5488:6;5483:3;5476:19;5504:63;5560:6;5553:4;5548:3;5544:14;5537:4;5530:5;5526:16;5504:63;:::i;:::-;5621:2;5600:15;-1:-1:-1;;5596:29:5;5587:39;;;;5628:4;5583:50;;5382:257;-1:-1:-1;;5382:257:5:o;5644:637::-;5924:3;5962:6;5956:13;5978:53;6024:6;6019:3;6012:4;6004:6;6000:17;5978:53;:::i;:::-;6094:13;;6053:16;;;;6116:57;6094:13;6053:16;6150:4;6138:17;;6116:57;:::i;:::-;-1:-1:-1;;;6195:20:5;;6224:22;;;6273:1;6262:13;;5644:637;-1:-1:-1;;;;5644:637:5:o;6704:488::-;-1:-1:-1;;;;;6973:15:5;;;6955:34;;7025:15;;7020:2;7005:18;;6998:43;7072:2;7057:18;;7050:34;;;7120:3;7115:2;7100:18;;7093:31;;;6898:4;;7141:45;;7166:19;;7158:6;7141:45;:::i;:::-;7133:53;6704:488;-1:-1:-1;;;;;;6704:488:5:o;7389:342::-;7535:2;7520:18;;7568:1;7557:13;;7547:144;;7613:10;7608:3;7604:20;7601:1;7594:31;7648:4;7645:1;7638:15;7676:4;7673:1;7666:15;7547:144;7700:25;;;7389:342;:::o;7736:219::-;7885:2;7874:9;7867:21;7848:4;7905:44;7945:2;7934:9;7930:18;7922:6;7905:44;:::i;9774:356::-;9976:2;9958:21;;;9995:18;;;9988:30;10054:34;10049:2;10034:18;;10027:62;10121:2;10106:18;;9774:356::o;11018:128::-;11058:3;11089:1;11085:6;11082:1;11079:13;11076:39;;;11095:18;;:::i;:::-;-1:-1:-1;11131:9:5;;11018:128::o;11151:168::-;11191:7;11257:1;11253;11249:6;11245:14;11242:1;11239:21;11234:1;11227:9;11220:17;11216:45;11213:71;;;11264:18;;:::i;:::-;-1:-1:-1;11304:9:5;;11151:168::o;11324:125::-;11364:4;11392:1;11389;11386:8;11383:34;;;11397:18;;:::i;:::-;-1:-1:-1;11434:9:5;;11324:125::o;11454:258::-;11526:1;11536:113;11550:6;11547:1;11544:13;11536:113;;;11626:11;;;11620:18;11607:11;;;11600:39;11572:2;11565:10;11536:113;;;11667:6;11664:1;11661:13;11658:48;;;-1:-1:-1;;11702:1:5;11684:16;;11677:27;11454:258::o;11717:380::-;11796:1;11792:12;;;;11839;;;11860:61;;11914:4;11906:6;11902:17;11892:27;;11860:61;11967:2;11959:6;11956:14;11936:18;11933:38;11930:161;;;12013:10;12008:3;12004:20;12001:1;11994:31;12048:4;12045:1;12038:15;12076:4;12073:1;12066:15;11930:161;;11717:380;;;:::o;12102:135::-;12141:3;-1:-1:-1;;12162:17:5;;12159:43;;;12182:18;;:::i;:::-;-1:-1:-1;12229:1:5;12218:13;;12102:135::o;12242:127::-;12303:10;12298:3;12294:20;12291:1;12284:31;12334:4;12331:1;12324:15;12358:4;12355:1;12348:15;12374:127;12435:10;12430:3;12426:20;12423:1;12416:31;12466:4;12463:1;12456:15;12490:4;12487:1;12480:15;12506:127;12567:10;12562:3;12558:20;12555:1;12548:31;12598:4;12595:1;12588:15;12622:4;12619:1;12612:15;12638:127;12699:10;12694:3;12690:20;12687:1;12680:31;12730:4;12727:1;12720:15;12754:4;12751:1;12744:15;12770:131;-1:-1:-1;;;;;;12844:32:5;;12834:43;;12824:71;;12891:1;12888;12881:12
Swarm Source
ipfs://675b6817564248106bf441f01506e1c88c2a4d12645ddc693aca684b06c76653
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.