ERC-721
NFT
Overview
Max Total Supply
2,732 NYOKI
Holders
1,331
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NYOKILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NyokiClub
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.8; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721A.sol"; contract NyokiClub is Ownable, ERC721A, ReentrancyGuard { uint256 public maxSupply; uint256 public presaleSupply; bytes32 private wlMerkleRoot; bytes32 private ogMerkleRoot; mapping(address => uint256) public presaleMinted; mapping(address => uint256) public publicMinted; uint8 public presaleMaxWL = 1; uint8 public presaleMaxOG = 2; uint8 public publicSaleMax = 3; struct SaleConfig { uint256 presalePrice; uint256 presaleStartTime; uint256 presaleEndTime; uint256 publicSalePrice; uint256 publicSaleStartTime; } SaleConfig public saleConfig; constructor(uint256 maxSupply_, uint256 presaleSupply_, uint256 amountForDevs_) ERC721A("NyokiClub", "NYOKI") { maxSupply = maxSupply_; presaleSupply = presaleSupply_; _safeMint(msg.sender, amountForDevs_); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function presaleWLMint(uint256 quantity, bytes32[] calldata proof) external payable callerIsUser { uint256 _salePrice = saleConfig.presalePrice; uint256 _totalCost = _salePrice * quantity; bytes32 senderKeccak = keccak256(abi.encodePacked(msg.sender)); require(isPrivateSaleOn(), "Presale is not active"); require(MerkleProof.verify(proof, wlMerkleRoot, senderKeccak), "Not eligible for presale"); require(msg.value == _totalCost, "Value cannot be lower than total cost"); require(totalSupply() < presaleSupply, "Presale supply reached, wait for public sale"); require(totalSupply() + quantity <= presaleSupply, "Cannot mint this many"); require(presaleMinted[msg.sender] + quantity <= presaleMaxWL, "Reached maximum mint amount"); presaleMinted[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function presaleOGMint(uint256 quantity, bytes32[] calldata proof) external payable callerIsUser { uint256 _salePrice = saleConfig.presalePrice; uint256 _totalCost = _salePrice * quantity; bytes32 senderKeccak = keccak256(abi.encodePacked(msg.sender)); require(isPrivateSaleOn(), "Presale is not active"); require(MerkleProof.verify(proof, ogMerkleRoot, senderKeccak), "Not eligible for presale"); require(msg.value == _totalCost, "Value cannot be lower than total cost"); require(totalSupply() < presaleSupply, "Presale supply reached, wait for public sale"); require(totalSupply() + quantity <= presaleSupply, "Cannot mint this many"); require(presaleMinted[msg.sender] + quantity <= presaleMaxOG, "Reached maximum mint amount"); presaleMinted[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable callerIsUser { uint256 _salePrice = saleConfig.publicSalePrice; uint256 _totalCost = _salePrice * quantity; require(isPublicSaleOn(), "Public sale is not active"); require(msg.value == _totalCost, "Value cannot be lower than total cost"); require(totalSupply() < maxSupply, "Max supply reached, collection sold out"); require(totalSupply() + quantity <= maxSupply, "Cannot mint this many"); require(publicMinted[msg.sender] + quantity <= publicSaleMax, "Reached maximum mint amount"); publicMinted[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function setupPresaleInfo(uint256 presalePrice, uint256 presaleStartTime, uint256 presaleEndTime) external onlyOwner { saleConfig = SaleConfig(presalePrice, presaleStartTime, presaleEndTime, 0, 0); } function setupPublicSaleInfo(uint256 publicSalePrice, uint256 publicSaleStartTime) external onlyOwner { saleConfig = SaleConfig(0, 0, 0, publicSalePrice, publicSaleStartTime); } function isPrivateSaleOn() public view returns (bool) { uint256 _salePrice = saleConfig.presalePrice; uint256 _saleStartTime = saleConfig.presaleStartTime; uint256 _saleEndTime = saleConfig.presaleEndTime; return _salePrice != 0 && _saleStartTime != 0 && _saleEndTime != 0 && block.timestamp >= _saleStartTime && block.timestamp <= _saleEndTime; } function isPublicSaleOn() public view returns (bool) { uint256 _salePrice = saleConfig.publicSalePrice; uint256 _saleStartTime = saleConfig.publicSaleStartTime; return _salePrice != 0 && _saleStartTime != 0 && block.timestamp >= _saleStartTime; } function setMaxSupply(uint256 _newSupply) external onlyOwner { require(totalSupply() <= _newSupply, "Cannot set maxSupply less than totalSupply"); maxSupply = _newSupply; } function setMerkleRoot(bytes32 wlMerkleRoot_, bytes32 ogMerkleRoot_) external onlyOwner { wlMerkleRoot = wlMerkleRoot_; ogMerkleRoot = ogMerkleRoot_; } function setPresaleMax(uint8 presaleMaxWL_, uint8 presaleMaxOG_) external onlyOwner { presaleMaxWL = presaleMaxWL_; presaleMaxOG = presaleMaxOG_; } function setPublicSaleMax(uint8 publicSaleMax_) external onlyOwner { publicSaleMax = publicSaleMax_; } function isCollectionSoldOut() public view returns (bool) { if(totalSupply() == maxSupply) return true; return false; } function endPublicSale() external onlyOwner { require(isPublicSaleOn(), "Public sale is not active"); saleConfig = SaleConfig(0, 0, 0, 0, 0); maxSupply = totalSupply(); } string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function withdrawFunds() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Failed to withdraw payment"); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return _ownershipOf(tokenId); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// 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 // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"presaleSupply_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","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":[{"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":"endPublicSale","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCollectionSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPrivateSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxOG","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxWL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleOGMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleWLMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"saleConfig","outputs":[{"internalType":"uint256","name":"presalePrice","type":"uint256"},{"internalType":"uint256","name":"presaleStartTime","type":"uint256"},{"internalType":"uint256","name":"presaleEndTime","type":"uint256"},{"internalType":"uint256","name":"publicSalePrice","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"wlMerkleRoot_","type":"bytes32"},{"internalType":"bytes32","name":"ogMerkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"presaleMaxWL_","type":"uint8"},{"internalType":"uint8","name":"presaleMaxOG_","type":"uint8"}],"name":"setPresaleMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"publicSaleMax_","type":"uint8"}],"name":"setPublicSaleMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presalePrice","type":"uint256"},{"internalType":"uint256","name":"presaleStartTime","type":"uint256"},{"internalType":"uint256","name":"presaleEndTime","type":"uint256"}],"name":"setupPresaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicSalePrice","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"setupPublicSaleInfo","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":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526010805462ffffff1916620302011790553480156200002257600080fd5b5060405162002ea938038062002ea98339810160408190526200004591620004fb565b60405180604001604052806009815260200168273cb7b5b4a1b63ab160b91b815250604051806040016040528060058152602001644e594f4b4960d81b8152506200009f62000099620000f460201b60201c565b620000f8565b8151620000b490600390602085019062000455565b508051620000ca90600490602084019062000455565b5060018081556009555050600a839055600b829055620000eb338262000148565b50505062000615565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200016a8282604051806020016040528060008152506200016e60201b60201c565b5050565b6200017d838383600162000182565b505050565b6001546001600160a01b038516620001ac57604051622e076360e81b815260040160405180910390fd5b83620001cb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801562000284575062000284876001600160a01b03166200034560201b620017f51760201c565b1562000304575b60405182906001600160a01b0389169060009060008051602062002e89833981519152908290a46001820191620002c89060009089908862000354565b620002e6576040516368d2bf6b60e11b815260040160405180910390fd5b808214156200028b578260015414620002fe57600080fd5b6200033a565b5b6040516001830192906001600160a01b0389169060009060008051602062002e89833981519152908290a48082141562000305575b506001555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200038b9033908990889088906004016200052a565b602060405180830381600087803b158015620003a657600080fd5b505af1925050508015620003d9575060408051601f3d908101601f19168201909252620003d691810190620005a5565b60015b62000438573d8080156200040a576040519150601f19603f3d011682016040523d82523d6000602084013e6200040f565b606091505b50805162000430576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200046390620005d8565b90600052602060002090601f016020900481019282620004875760008555620004d2565b82601f10620004a257805160ff1916838001178555620004d2565b82800160010185558215620004d2579182015b82811115620004d2578251825591602001919060010190620004b5565b50620004e0929150620004e4565b5090565b5b80821115620004e05760008155600101620004e5565b6000806000606084860312156200051157600080fd5b8351925060208401519150604084015190509250925092565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005795785810182015185820160a0015281016200055b565b828111156200058c57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620005b857600080fd5b81516001600160e01b031981168114620005d157600080fd5b9392505050565b600181811c90821680620005ed57607f821691505b602082108114156200060f57634e487b7160e01b600052602260045260246000fd5b50919050565b61286480620006256000396000f3fe6080604052600436106102515760003560e01c80637a74095b11610139578063c7d17fd1116100b6578063dc33e6811161007a578063dc33e6811461070b578063e8d7f0a71461072b578063e95877c71461074b578063e985e9c51461076b578063ec9bb5d1146107b4578063f2fde38b146107d457600080fd5b8063c7d17fd11461069a578063c87b56dd146106af578063cc0ca30b146106cf578063cc640be0146106e2578063d5abeb01146106f557600080fd5b80639eff517a116100fd5780639eff517a146105f8578063a22cb46514610617578063b3a196e914610637578063b88d4fde1461064d578063bc660cac1461066d57600080fd5b80637a74095b146104ff5780638da5cb5b1461051f57806390aa0b0f1461053d5780639231ab2a1461058c57806395d89b41146105e357600080fd5b80633d55c1ff116101d257806355f804b31161019657806355f804b31461044a5780636352211e1461046a5780636f8b44b01461048a57806370a08231146104aa578063715018a6146104ca57806375edcbe0146104df57600080fd5b80633d55c1ff146103cb5780633f5e4741146103e0578063414c1343146103f557806342842e0e146104155780634780cf521461043557600080fd5b806318160ddd1161021957806318160ddd1461034257806323b872dd1461035757806324600fc31461037757806326e337121461038c5780632db11544146103b857600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780631015805b14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612137565b6107f4565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610846565b60405161028291906121ac565b3480156102b957600080fd5b506102cd6102c83660046121bf565b6108d8565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046121f4565b61091c565b005b34801561031357600080fd5b5061033461032236600461221e565b600f6020526000908152604090205481565b604051908152602001610282565b34801561034e57600080fd5b506103346109aa565b34801561036357600080fd5b50610305610372366004612239565b6109b8565b34801561038357600080fd5b506103056109c3565b34801561039857600080fd5b506010546103a69060ff1681565b60405160ff9091168152602001610282565b6103056103c63660046121bf565b610aee565b3480156103d757600080fd5b50610276610ccf565b3480156103ec57600080fd5b50610276610d16565b34801561040157600080fd5b506010546103a69062010000900460ff1681565b34801561042157600080fd5b50610305610430366004612239565b610d41565b34801561044157600080fd5b50610276610d5c565b34801561045657600080fd5b50610305610465366004612275565b610d7b565b34801561047657600080fd5b506102cd6104853660046121bf565b610db1565b34801561049657600080fd5b506103056104a53660046121bf565b610dc3565b3480156104b657600080fd5b506103346104c536600461221e565b610e5c565b3480156104d657600080fd5b50610305610eab565b3480156104eb57600080fd5b506103056104fa3660046122e7565b610ee1565b34801561050b57600080fd5b5061030561051a36600461231a565b610f16565b34801561052b57600080fd5b506000546001600160a01b03166102cd565b34801561054957600080fd5b50601154601254601354601454601554610564949392919085565b604080519586526020860194909452928401919091526060830152608082015260a001610282565b34801561059857600080fd5b506105ac6105a73660046121bf565b610f64565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff169082015291810151151590820152606001610282565b3480156105ef57600080fd5b506102a0610f8a565b34801561060457600080fd5b506010546103a690610100900460ff1681565b34801561062357600080fd5b5061030561063236600461234d565b610f99565b34801561064357600080fd5b50610334600b5481565b34801561065957600080fd5b5061030561066836600461239f565b61102f565b34801561067957600080fd5b5061033461068836600461221e565b600e6020526000908152604090205481565b3480156106a657600080fd5b50610305611080565b3480156106bb57600080fd5b506102a06106ca3660046121bf565b611142565b6103056106dd36600461247b565b6111c7565b6103056106f036600461247b565b611429565b34801561070157600080fd5b50610334600a5481565b34801561071757600080fd5b5061033461072636600461221e565b61160a565b34801561073757600080fd5b506103056107463660046124fa565b611639565b34801561075757600080fd5b506103056107663660046122e7565b6116a7565b34801561077757600080fd5b50610276610786366004612526565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506103056107cf366004612550565b611712565b3480156107e057600080fd5b506103056107ef36600461221e565b61175a565b60006001600160e01b031982166380ac58cd60e01b148061082557506001600160e01b03198216635b5e139f60e01b145b8061084057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546108559061256b565b80601f01602080910402602001604051908101604052809291908181526020018280546108819061256b565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e382611804565b610900576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061092782610db1565b9050806001600160a01b0316836001600160a01b0316141561095c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061097c575061097a8133610786565b155b1561099a576040516367d9dca160e11b815260040160405180910390fd5b6109a583838361183d565b505050565b600254600154036000190190565b6109a5838383611899565b6000546001600160a01b031633146109f65760405162461bcd60e51b81526004016109ed906125a6565b60405180910390fd5b60026009541415610a495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ed565b6002600955604051600090339047908381818185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610ae65760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207769746864726177207061796d656e7400000000000060448201526064016109ed565b506001600955565b323314610b0d5760405162461bcd60e51b81526004016109ed906125db565b6014546000610b1c8383612628565b9050610b26610d16565b610b6e5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016109ed565b803414610b8d5760405162461bcd60e51b81526004016109ed90612647565b600a54610b986109aa565b10610bf55760405162461bcd60e51b815260206004820152602760248201527f4d617820737570706c7920726561636865642c20636f6c6c656374696f6e20736044820152661bdb19081bdd5d60ca1b60648201526084016109ed565b600a5483610c016109aa565b610c0b919061268c565b1115610c295760405162461bcd60e51b81526004016109ed906126a4565b601054336000908152600f60205260409020546201000090910460ff1690610c5290859061268c565b1115610ca05760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206d6178696d756d206d696e7420616d6f756e74000000000060448201526064016109ed565b336000908152600f602052604081208054859290610cbf90849061268c565b909155506109a590503384611a89565b60115460125460135460009291908215801590610ceb57508115155b8015610cf657508015155b8015610d025750814210155b8015610d0e5750804211155b935050505090565b601454601554600091908115801590610d2e57508015155b8015610d3a5750804210155b9250505090565b6109a58383836040518060200160405280600081525061102f565b6000600a54610d696109aa565b1415610d755750600190565b50600090565b6000546001600160a01b03163314610da55760405162461bcd60e51b81526004016109ed906125a6565b6109a560168383612088565b6000610dbc82611aa7565b5192915050565b6000546001600160a01b03163314610ded5760405162461bcd60e51b81526004016109ed906125a6565b80610df66109aa565b1115610e575760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178537570706c79206c657373207468616e20746044820152696f74616c537570706c7960b01b60648201526084016109ed565b600a55565b60006001600160a01b038216610e85576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ed55760405162461bcd60e51b81526004016109ed906125a6565b610edf6000611bd0565b565b6000546001600160a01b03163314610f0b5760405162461bcd60e51b81526004016109ed906125a6565b600c91909155600d55565b6000546001600160a01b03163314610f405760405162461bcd60e51b81526004016109ed906125a6565b6010805460ff9283166101000261ffff199091169290931691909117919091179055565b604080516060810182526000808252602082018190529181019190915261084082611aa7565b6060600480546108559061256b565b6001600160a01b038216331415610fc35760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61103a848484611899565b6001600160a01b0383163b1515801561105c575061105a84848484611c20565b155b1561107a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110aa5760405162461bcd60e51b81526004016109ed906125a6565b6110b2610d16565b6110fa5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016109ed565b6040805160a081018252600080825260208201819052918101829052606081018290526080018190526011819055601281905560138190556014819055601555610e576109aa565b606061114d82611804565b61116a57604051630a14c4b560e41b815260040160405180910390fd5b6000611174611d18565b905080516000141561119557604051806020016040528060008152506111c0565b8061119f84611d27565b6040516020016111b09291906126d3565b6040516020818303038152906040525b9392505050565b3233146111e65760405162461bcd60e51b81526004016109ed906125db565b60115460006111f58583612628565b6040516bffffffffffffffffffffffff193360601b166020820152909150600090603401604051602081830303815290604052805190602001209050611239610ccf565b61127d5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016109ed565b6112be85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e25565b6113055760405162461bcd60e51b81526020600482015260186024820152774e6f7420656c696769626c6520666f722070726573616c6560401b60448201526064016109ed565b8134146113245760405162461bcd60e51b81526004016109ed90612647565b600b5461132f6109aa565b1061134c5760405162461bcd60e51b81526004016109ed90612702565b600b54866113586109aa565b611362919061268c565b11156113805760405162461bcd60e51b81526004016109ed906126a4565b601054336000908152600e602052604090205460ff909116906113a490889061268c565b11156113f25760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206d6178696d756d206d696e7420616d6f756e74000000000060448201526064016109ed565b336000908152600e60205260408120805488929061141190849061268c565b9091555061142190503387611a89565b505050505050565b3233146114485760405162461bcd60e51b81526004016109ed906125db565b60115460006114578583612628565b6040516bffffffffffffffffffffffff193360601b16602082015290915060009060340160405160208183030381529060405280519060200120905061149b610ccf565b6114df5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016109ed565b61152085858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611e25565b6115675760405162461bcd60e51b81526020600482015260186024820152774e6f7420656c696769626c6520666f722070726573616c6560401b60448201526064016109ed565b8134146115865760405162461bcd60e51b81526004016109ed90612647565b600b546115916109aa565b106115ae5760405162461bcd60e51b81526004016109ed90612702565b600b54866115ba6109aa565b6115c4919061268c565b11156115e25760405162461bcd60e51b81526004016109ed906126a4565b601054336000908152600e602052604090205461010090910460ff16906113a490889061268c565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610840565b6000546001600160a01b031633146116635760405162461bcd60e51b81526004016109ed906125a6565b6040805160a0810182528481526020810184905290810182905260006060820181905260809091018190526011939093556012919091556013556014819055601555565b6000546001600160a01b031633146116d15760405162461bcd60e51b81526004016109ed906125a6565b6040805160a0810182526000808252602082018190529181018290526060810184905260800182905260118190556012819055601355601491909155601555565b6000546001600160a01b0316331461173c5760405162461bcd60e51b81526004016109ed906125a6565b6010805460ff909216620100000262ff000019909216919091179055565b6000546001600160a01b031633146117845760405162461bcd60e51b81526004016109ed906125a6565b6001600160a01b0381166117e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ed565b6117f281611bd0565b50565b6001600160a01b03163b151590565b600081600111158015611818575060015482105b8015610840575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118a482611aa7565b9050836001600160a01b031681600001516001600160a01b0316146118db5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118f957506118f98533610786565b80611914575033611909846108d8565b6001600160a01b0316145b90508061193457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661195b57604051633a954ecd60e21b815260040160405180910390fd5b6119676000848761183d565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a3d576001548214611a3d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611aa3828260405180602001604052806000815250611e3b565b5050565b60408051606081018252600080825260208201819052918101919091528180600111158015611ad7575060015481105b15611bb757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611bb55780516001600160a01b031615611b4b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611bb0579392505050565b611b4b565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c5590339089908890889060040161274e565b602060405180830381600087803b158015611c6f57600080fd5b505af1925050508015611c9f575060408051601f3d908101601f19168201909252611c9c9181019061278b565b60015b611cfa573d808015611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b508051611cf2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601680546108559061256b565b606081611d4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d755780611d5f816127a8565b9150611d6e9050600a836127d9565b9150611d4f565b60008167ffffffffffffffff811115611d9057611d90612389565b6040519080825280601f01601f191660200182016040528015611dba576020820181803683370190505b5090505b8415611d1057611dcf6001836127ed565b9150611ddc600a86612804565b611de790603061268c565b60f81b818381518110611dfc57611dfc612818565b60200101906001600160f81b031916908160001a905350611e1e600a866127d9565b9450611dbe565b600082611e328584611e48565b14949350505050565b6109a58383836001611ebc565b600081815b8451811015611eb4576000858281518110611e6a57611e6a612818565b60200260200101519050808311611e905760008381526020829052604090209250611ea1565b600081815260208490526040902092505b5080611eac816127a8565b915050611e4d565b509392505050565b6001546001600160a01b038516611ee557604051622e076360e81b815260040160405180910390fd5b83611f035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fb057506001600160a01b0387163b15155b15612039575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120016000888480600101955088611c20565b61201e576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611fb657826001541461203457600080fd5b61207f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561203a575b50600155611a82565b8280546120949061256b565b90600052602060002090601f0160209004810192826120b657600085556120fc565b82601f106120cf5782800160ff198235161785556120fc565b828001600101855582156120fc579182015b828111156120fc5782358255916020019190600101906120e1565b5061210892915061210c565b5090565b5b80821115612108576000815560010161210d565b6001600160e01b0319811681146117f257600080fd5b60006020828403121561214957600080fd5b81356111c081612121565b60005b8381101561216f578181015183820152602001612157565b8381111561107a5750506000910152565b60008151808452612198816020860160208601612154565b601f01601f19169290920160200192915050565b6020815260006111c06020830184612180565b6000602082840312156121d157600080fd5b5035919050565b80356001600160a01b03811681146121ef57600080fd5b919050565b6000806040838503121561220757600080fd5b612210836121d8565b946020939093013593505050565b60006020828403121561223057600080fd5b6111c0826121d8565b60008060006060848603121561224e57600080fd5b612257846121d8565b9250612265602085016121d8565b9150604084013590509250925092565b6000806020838503121561228857600080fd5b823567ffffffffffffffff808211156122a057600080fd5b818501915085601f8301126122b457600080fd5b8135818111156122c357600080fd5b8660208285010111156122d557600080fd5b60209290920196919550909350505050565b600080604083850312156122fa57600080fd5b50508035926020909101359150565b803560ff811681146121ef57600080fd5b6000806040838503121561232d57600080fd5b61233683612309565b915061234460208401612309565b90509250929050565b6000806040838503121561236057600080fd5b612369836121d8565b91506020830135801515811461237e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156123b557600080fd5b6123be856121d8565b93506123cc602086016121d8565b925060408501359150606085013567ffffffffffffffff808211156123f057600080fd5b818701915087601f83011261240457600080fd5b81358181111561241657612416612389565b604051601f8201601f19908116603f0116810190838211818310171561243e5761243e612389565b816040528281528a602084870101111561245757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006040848603121561249057600080fd5b83359250602084013567ffffffffffffffff808211156124af57600080fd5b818601915086601f8301126124c357600080fd5b8135818111156124d257600080fd5b8760208260051b85010111156124e757600080fd5b6020830194508093505050509250925092565b60008060006060848603121561250f57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561253957600080fd5b612542836121d8565b9150612344602084016121d8565b60006020828403121561256257600080fd5b6111c082612309565b600181811c9082168061257f57607f821691505b602082108114156125a057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561264257612642612612565b500290565b60208082526025908201527f56616c75652063616e6e6f74206265206c6f776572207468616e20746f74616c6040820152640818dbdcdd60da1b606082015260800190565b6000821982111561269f5761269f612612565b500190565b60208082526015908201527443616e6e6f74206d696e742074686973206d616e7960581b604082015260600190565b600083516126e5818460208801612154565b8351908301906126f9818360208801612154565b01949350505050565b6020808252602c908201527f50726573616c6520737570706c7920726561636865642c207761697420666f7260408201526b207075626c69632073616c6560a01b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061278190830184612180565b9695505050505050565b60006020828403121561279d57600080fd5b81516111c081612121565b60006000198214156127bc576127bc612612565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127e8576127e86127c3565b500490565b6000828210156127ff576127ff612612565b500390565b600082612813576128136127c3565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b84303bdbf231b06dbc57f53f4bced3644b32a88c258ecba09c06a2b652d7b5e64736f6c63430008080033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000157c0000000000000000000000000000000000000000000000000000000000000046
Deployed Bytecode
0x6080604052600436106102515760003560e01c80637a74095b11610139578063c7d17fd1116100b6578063dc33e6811161007a578063dc33e6811461070b578063e8d7f0a71461072b578063e95877c71461074b578063e985e9c51461076b578063ec9bb5d1146107b4578063f2fde38b146107d457600080fd5b8063c7d17fd11461069a578063c87b56dd146106af578063cc0ca30b146106cf578063cc640be0146106e2578063d5abeb01146106f557600080fd5b80639eff517a116100fd5780639eff517a146105f8578063a22cb46514610617578063b3a196e914610637578063b88d4fde1461064d578063bc660cac1461066d57600080fd5b80637a74095b146104ff5780638da5cb5b1461051f57806390aa0b0f1461053d5780639231ab2a1461058c57806395d89b41146105e357600080fd5b80633d55c1ff116101d257806355f804b31161019657806355f804b31461044a5780636352211e1461046a5780636f8b44b01461048a57806370a08231146104aa578063715018a6146104ca57806375edcbe0146104df57600080fd5b80633d55c1ff146103cb5780633f5e4741146103e0578063414c1343146103f557806342842e0e146104155780634780cf521461043557600080fd5b806318160ddd1161021957806318160ddd1461034257806323b872dd1461035757806324600fc31461037757806326e337121461038c5780632db11544146103b857600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780631015805b14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612137565b6107f4565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610846565b60405161028291906121ac565b3480156102b957600080fd5b506102cd6102c83660046121bf565b6108d8565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046121f4565b61091c565b005b34801561031357600080fd5b5061033461032236600461221e565b600f6020526000908152604090205481565b604051908152602001610282565b34801561034e57600080fd5b506103346109aa565b34801561036357600080fd5b50610305610372366004612239565b6109b8565b34801561038357600080fd5b506103056109c3565b34801561039857600080fd5b506010546103a69060ff1681565b60405160ff9091168152602001610282565b6103056103c63660046121bf565b610aee565b3480156103d757600080fd5b50610276610ccf565b3480156103ec57600080fd5b50610276610d16565b34801561040157600080fd5b506010546103a69062010000900460ff1681565b34801561042157600080fd5b50610305610430366004612239565b610d41565b34801561044157600080fd5b50610276610d5c565b34801561045657600080fd5b50610305610465366004612275565b610d7b565b34801561047657600080fd5b506102cd6104853660046121bf565b610db1565b34801561049657600080fd5b506103056104a53660046121bf565b610dc3565b3480156104b657600080fd5b506103346104c536600461221e565b610e5c565b3480156104d657600080fd5b50610305610eab565b3480156104eb57600080fd5b506103056104fa3660046122e7565b610ee1565b34801561050b57600080fd5b5061030561051a36600461231a565b610f16565b34801561052b57600080fd5b506000546001600160a01b03166102cd565b34801561054957600080fd5b50601154601254601354601454601554610564949392919085565b604080519586526020860194909452928401919091526060830152608082015260a001610282565b34801561059857600080fd5b506105ac6105a73660046121bf565b610f64565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff169082015291810151151590820152606001610282565b3480156105ef57600080fd5b506102a0610f8a565b34801561060457600080fd5b506010546103a690610100900460ff1681565b34801561062357600080fd5b5061030561063236600461234d565b610f99565b34801561064357600080fd5b50610334600b5481565b34801561065957600080fd5b5061030561066836600461239f565b61102f565b34801561067957600080fd5b5061033461068836600461221e565b600e6020526000908152604090205481565b3480156106a657600080fd5b50610305611080565b3480156106bb57600080fd5b506102a06106ca3660046121bf565b611142565b6103056106dd36600461247b565b6111c7565b6103056106f036600461247b565b611429565b34801561070157600080fd5b50610334600a5481565b34801561071757600080fd5b5061033461072636600461221e565b61160a565b34801561073757600080fd5b506103056107463660046124fa565b611639565b34801561075757600080fd5b506103056107663660046122e7565b6116a7565b34801561077757600080fd5b50610276610786366004612526565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506103056107cf366004612550565b611712565b3480156107e057600080fd5b506103056107ef36600461221e565b61175a565b60006001600160e01b031982166380ac58cd60e01b148061082557506001600160e01b03198216635b5e139f60e01b145b8061084057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546108559061256b565b80601f01602080910402602001604051908101604052809291908181526020018280546108819061256b565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e382611804565b610900576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061092782610db1565b9050806001600160a01b0316836001600160a01b0316141561095c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061097c575061097a8133610786565b155b1561099a576040516367d9dca160e11b815260040160405180910390fd5b6109a583838361183d565b505050565b600254600154036000190190565b6109a5838383611899565b6000546001600160a01b031633146109f65760405162461bcd60e51b81526004016109ed906125a6565b60405180910390fd5b60026009541415610a495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ed565b6002600955604051600090339047908381818185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610ae65760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207769746864726177207061796d656e7400000000000060448201526064016109ed565b506001600955565b323314610b0d5760405162461bcd60e51b81526004016109ed906125db565b6014546000610b1c8383612628565b9050610b26610d16565b610b6e5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016109ed565b803414610b8d5760405162461bcd60e51b81526004016109ed90612647565b600a54610b986109aa565b10610bf55760405162461bcd60e51b815260206004820152602760248201527f4d617820737570706c7920726561636865642c20636f6c6c656374696f6e20736044820152661bdb19081bdd5d60ca1b60648201526084016109ed565b600a5483610c016109aa565b610c0b919061268c565b1115610c295760405162461bcd60e51b81526004016109ed906126a4565b601054336000908152600f60205260409020546201000090910460ff1690610c5290859061268c565b1115610ca05760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206d6178696d756d206d696e7420616d6f756e74000000000060448201526064016109ed565b336000908152600f602052604081208054859290610cbf90849061268c565b909155506109a590503384611a89565b60115460125460135460009291908215801590610ceb57508115155b8015610cf657508015155b8015610d025750814210155b8015610d0e5750804211155b935050505090565b601454601554600091908115801590610d2e57508015155b8015610d3a5750804210155b9250505090565b6109a58383836040518060200160405280600081525061102f565b6000600a54610d696109aa565b1415610d755750600190565b50600090565b6000546001600160a01b03163314610da55760405162461bcd60e51b81526004016109ed906125a6565b6109a560168383612088565b6000610dbc82611aa7565b5192915050565b6000546001600160a01b03163314610ded5760405162461bcd60e51b81526004016109ed906125a6565b80610df66109aa565b1115610e575760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178537570706c79206c657373207468616e20746044820152696f74616c537570706c7960b01b60648201526084016109ed565b600a55565b60006001600160a01b038216610e85576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ed55760405162461bcd60e51b81526004016109ed906125a6565b610edf6000611bd0565b565b6000546001600160a01b03163314610f0b5760405162461bcd60e51b81526004016109ed906125a6565b600c91909155600d55565b6000546001600160a01b03163314610f405760405162461bcd60e51b81526004016109ed906125a6565b6010805460ff9283166101000261ffff199091169290931691909117919091179055565b604080516060810182526000808252602082018190529181019190915261084082611aa7565b6060600480546108559061256b565b6001600160a01b038216331415610fc35760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61103a848484611899565b6001600160a01b0383163b1515801561105c575061105a84848484611c20565b155b1561107a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110aa5760405162461bcd60e51b81526004016109ed906125a6565b6110b2610d16565b6110fa5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016109ed565b6040805160a081018252600080825260208201819052918101829052606081018290526080018190526011819055601281905560138190556014819055601555610e576109aa565b606061114d82611804565b61116a57604051630a14c4b560e41b815260040160405180910390fd5b6000611174611d18565b905080516000141561119557604051806020016040528060008152506111c0565b8061119f84611d27565b6040516020016111b09291906126d3565b6040516020818303038152906040525b9392505050565b3233146111e65760405162461bcd60e51b81526004016109ed906125db565b60115460006111f58583612628565b6040516bffffffffffffffffffffffff193360601b166020820152909150600090603401604051602081830303815290604052805190602001209050611239610ccf565b61127d5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016109ed565b6112be85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e25565b6113055760405162461bcd60e51b81526020600482015260186024820152774e6f7420656c696769626c6520666f722070726573616c6560401b60448201526064016109ed565b8134146113245760405162461bcd60e51b81526004016109ed90612647565b600b5461132f6109aa565b1061134c5760405162461bcd60e51b81526004016109ed90612702565b600b54866113586109aa565b611362919061268c565b11156113805760405162461bcd60e51b81526004016109ed906126a4565b601054336000908152600e602052604090205460ff909116906113a490889061268c565b11156113f25760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206d6178696d756d206d696e7420616d6f756e74000000000060448201526064016109ed565b336000908152600e60205260408120805488929061141190849061268c565b9091555061142190503387611a89565b505050505050565b3233146114485760405162461bcd60e51b81526004016109ed906125db565b60115460006114578583612628565b6040516bffffffffffffffffffffffff193360601b16602082015290915060009060340160405160208183030381529060405280519060200120905061149b610ccf565b6114df5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016109ed565b61152085858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611e25565b6115675760405162461bcd60e51b81526020600482015260186024820152774e6f7420656c696769626c6520666f722070726573616c6560401b60448201526064016109ed565b8134146115865760405162461bcd60e51b81526004016109ed90612647565b600b546115916109aa565b106115ae5760405162461bcd60e51b81526004016109ed90612702565b600b54866115ba6109aa565b6115c4919061268c565b11156115e25760405162461bcd60e51b81526004016109ed906126a4565b601054336000908152600e602052604090205461010090910460ff16906113a490889061268c565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610840565b6000546001600160a01b031633146116635760405162461bcd60e51b81526004016109ed906125a6565b6040805160a0810182528481526020810184905290810182905260006060820181905260809091018190526011939093556012919091556013556014819055601555565b6000546001600160a01b031633146116d15760405162461bcd60e51b81526004016109ed906125a6565b6040805160a0810182526000808252602082018190529181018290526060810184905260800182905260118190556012819055601355601491909155601555565b6000546001600160a01b0316331461173c5760405162461bcd60e51b81526004016109ed906125a6565b6010805460ff909216620100000262ff000019909216919091179055565b6000546001600160a01b031633146117845760405162461bcd60e51b81526004016109ed906125a6565b6001600160a01b0381166117e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ed565b6117f281611bd0565b50565b6001600160a01b03163b151590565b600081600111158015611818575060015482105b8015610840575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118a482611aa7565b9050836001600160a01b031681600001516001600160a01b0316146118db5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118f957506118f98533610786565b80611914575033611909846108d8565b6001600160a01b0316145b90508061193457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661195b57604051633a954ecd60e21b815260040160405180910390fd5b6119676000848761183d565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a3d576001548214611a3d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611aa3828260405180602001604052806000815250611e3b565b5050565b60408051606081018252600080825260208201819052918101919091528180600111158015611ad7575060015481105b15611bb757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611bb55780516001600160a01b031615611b4b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611bb0579392505050565b611b4b565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c5590339089908890889060040161274e565b602060405180830381600087803b158015611c6f57600080fd5b505af1925050508015611c9f575060408051601f3d908101601f19168201909252611c9c9181019061278b565b60015b611cfa573d808015611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b508051611cf2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601680546108559061256b565b606081611d4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d755780611d5f816127a8565b9150611d6e9050600a836127d9565b9150611d4f565b60008167ffffffffffffffff811115611d9057611d90612389565b6040519080825280601f01601f191660200182016040528015611dba576020820181803683370190505b5090505b8415611d1057611dcf6001836127ed565b9150611ddc600a86612804565b611de790603061268c565b60f81b818381518110611dfc57611dfc612818565b60200101906001600160f81b031916908160001a905350611e1e600a866127d9565b9450611dbe565b600082611e328584611e48565b14949350505050565b6109a58383836001611ebc565b600081815b8451811015611eb4576000858281518110611e6a57611e6a612818565b60200260200101519050808311611e905760008381526020829052604090209250611ea1565b600081815260208490526040902092505b5080611eac816127a8565b915050611e4d565b509392505050565b6001546001600160a01b038516611ee557604051622e076360e81b815260040160405180910390fd5b83611f035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fb057506001600160a01b0387163b15155b15612039575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120016000888480600101955088611c20565b61201e576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611fb657826001541461203457600080fd5b61207f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561203a575b50600155611a82565b8280546120949061256b565b90600052602060002090601f0160209004810192826120b657600085556120fc565b82601f106120cf5782800160ff198235161785556120fc565b828001600101855582156120fc579182015b828111156120fc5782358255916020019190600101906120e1565b5061210892915061210c565b5090565b5b80821115612108576000815560010161210d565b6001600160e01b0319811681146117f257600080fd5b60006020828403121561214957600080fd5b81356111c081612121565b60005b8381101561216f578181015183820152602001612157565b8381111561107a5750506000910152565b60008151808452612198816020860160208601612154565b601f01601f19169290920160200192915050565b6020815260006111c06020830184612180565b6000602082840312156121d157600080fd5b5035919050565b80356001600160a01b03811681146121ef57600080fd5b919050565b6000806040838503121561220757600080fd5b612210836121d8565b946020939093013593505050565b60006020828403121561223057600080fd5b6111c0826121d8565b60008060006060848603121561224e57600080fd5b612257846121d8565b9250612265602085016121d8565b9150604084013590509250925092565b6000806020838503121561228857600080fd5b823567ffffffffffffffff808211156122a057600080fd5b818501915085601f8301126122b457600080fd5b8135818111156122c357600080fd5b8660208285010111156122d557600080fd5b60209290920196919550909350505050565b600080604083850312156122fa57600080fd5b50508035926020909101359150565b803560ff811681146121ef57600080fd5b6000806040838503121561232d57600080fd5b61233683612309565b915061234460208401612309565b90509250929050565b6000806040838503121561236057600080fd5b612369836121d8565b91506020830135801515811461237e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156123b557600080fd5b6123be856121d8565b93506123cc602086016121d8565b925060408501359150606085013567ffffffffffffffff808211156123f057600080fd5b818701915087601f83011261240457600080fd5b81358181111561241657612416612389565b604051601f8201601f19908116603f0116810190838211818310171561243e5761243e612389565b816040528281528a602084870101111561245757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006040848603121561249057600080fd5b83359250602084013567ffffffffffffffff808211156124af57600080fd5b818601915086601f8301126124c357600080fd5b8135818111156124d257600080fd5b8760208260051b85010111156124e757600080fd5b6020830194508093505050509250925092565b60008060006060848603121561250f57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561253957600080fd5b612542836121d8565b9150612344602084016121d8565b60006020828403121561256257600080fd5b6111c082612309565b600181811c9082168061257f57607f821691505b602082108114156125a057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561264257612642612612565b500290565b60208082526025908201527f56616c75652063616e6e6f74206265206c6f776572207468616e20746f74616c6040820152640818dbdcdd60da1b606082015260800190565b6000821982111561269f5761269f612612565b500190565b60208082526015908201527443616e6e6f74206d696e742074686973206d616e7960581b604082015260600190565b600083516126e5818460208801612154565b8351908301906126f9818360208801612154565b01949350505050565b6020808252602c908201527f50726573616c6520737570706c7920726561636865642c207761697420666f7260408201526b207075626c69632073616c6560a01b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061278190830184612180565b9695505050505050565b60006020828403121561279d57600080fd5b81516111c081612121565b60006000198214156127bc576127bc612612565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127e8576127e86127c3565b500490565b6000828210156127ff576127ff612612565b500390565b600082612813576128136127c3565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b84303bdbf231b06dbc57f53f4bced3644b32a88c258ecba09c06a2b652d7b5e64736f6c63430008080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000157c0000000000000000000000000000000000000000000000000000000000000046
-----Decoded View---------------
Arg [0] : maxSupply_ (uint256): 8888
Arg [1] : presaleSupply_ (uint256): 5500
Arg [2] : amountForDevs_ (uint256): 70
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [1] : 000000000000000000000000000000000000000000000000000000000000157c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000046
Deployed Bytecode Sourcemap
330:6241:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4679:305:11;;;;;;;;;;-1:-1:-1;4679:305:11;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;4679:305:11;;;;;;;;7792:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9295:204::-;;;;;;;;;;-1:-1:-1;9295:204:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:13;;;1674:51;;1662:2;1647:18;9295:204:11;1528:203:13;8858:371:11;;;;;;;;;;-1:-1:-1;8858:371:11;;;;;:::i;:::-;;:::i;:::-;;576:47:12;;;;;;;;;;-1:-1:-1;576:47:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:13;;;2498:2;2483:18;576:47:12;2364:177:13;3928:303:11;;;;;;;;;;;;;:::i;10160:170::-;;;;;;;;;;-1:-1:-1;10160:170:11;;;;;:::i;:::-;;:::i;6120:197:12:-;;;;;;;;;;;;;:::i;632:29::-;;;;;;;;;;-1:-1:-1;632:29:12;;;;;;;;;;;3051:4:13;3039:17;;;3021:36;;3009:2;2994:18;632:29:12;2879:184:13;3048:668:12;;;;;;:::i;:::-;;:::i;4128:370::-;;;;;;;;;;;;;:::i;4504:264::-;;;;;;;;;;;;;:::i;700:30::-;;;;;;;;;;-1:-1:-1;700:30:12;;;;;;;;;;;10401:185:11;;;;;;;;;;-1:-1:-1;10401:185:11;;;;;:::i;:::-;;:::i;5418:133:12:-;;;;;;;;;;;;;:::i;5900:100::-;;;;;;;;;;-1:-1:-1;5900:100:12;;;;;:::i;:::-;;:::i;7600:125:11:-;;;;;;;;;;-1:-1:-1;7600:125:11;;;;;:::i;:::-;;:::i;4774:185:12:-;;;;;;;;;;-1:-1:-1;4774:185:12;;;;;:::i;:::-;;:::i;5048:206:11:-;;;;;;;;;;-1:-1:-1;5048:206:11;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;4965:164:12:-;;;;;;;;;;-1:-1:-1;4965:164:12;;;;;:::i;:::-;;:::i;5135:160::-;;;;;;;;;;-1:-1:-1;5135:160:12;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;918:28:12;;;;;;;;;;-1:-1:-1;918:28:12;;;;;;;;;;;;;;;;;;;;;;4595:25:13;;;4651:2;4636:18;;4629:34;;;;4679:18;;;4672:34;;;;4737:2;4722:18;;4715:34;4780:3;4765:19;;4758:35;4582:3;4567:19;918:28:12;4336:463:13;6438:130:12;;;;;;;;;;-1:-1:-1;6438:130:12;;;;;:::i;:::-;;:::i;:::-;;;;5036:13:13;;-1:-1:-1;;;;;5032:39:13;5014:58;;5132:4;5120:17;;;5114:24;5140:18;5110:49;5088:20;;;5081:79;5218:17;;;5212:24;5205:32;5198:40;5176:20;;;5169:70;5002:2;4987:18;6438:130:12;4804:441:13;7961:104:11;;;;;;;;;;;;;:::i;666:29:12:-;;;;;;;;;;-1:-1:-1;666:29:12;;;;;;;;;;;9571:287:11;;;;;;;;;;-1:-1:-1;9571:287:11;;;;;:::i;:::-;;:::i;420:28:12:-;;;;;;;;;;;;;;;;10657:369:11;;;;;;;;;;-1:-1:-1;10657:369:11;;;;;:::i;:::-;;:::i;523:48:12:-;;;;;;;;;;-1:-1:-1;523:48:12;;;;;:::i;:::-;;;;;;;;;;;;;;5557:188;;;;;;;;;;;;;:::i;8136:318:11:-;;;;;;;;;;-1:-1:-1;8136:318:11;;;;;:::i;:::-;;:::i;1302:867:12:-;;;;;;:::i;:::-;;:::i;2175:::-;;;;;;:::i;:::-;;:::i;391:24::-;;;;;;;;;;;;;;;;6325:107;;;;;;;;;;-1:-1:-1;6325:107:12;;;;;:::i;:::-;;:::i;3722:207::-;;;;;;;;;;-1:-1:-1;3722:207:12;;;;;:::i;:::-;;:::i;3935:185::-;;;;;;;;;;-1:-1:-1;3935:185:12;;;;;:::i;:::-;;:::i;9929:164:11:-;;;;;;;;;;-1:-1:-1;9929:164:11;;;;;:::i;:::-;-1:-1:-1;;;;;10050:25:11;;;10026:4;10050:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9929:164;5301:111:12;;;;;;;;;;-1:-1:-1;5301:111:12;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;4679:305:11:-;4781:4;-1:-1:-1;;;;;;4818:40:11;;-1:-1:-1;;;4818:40:11;;:105;;-1:-1:-1;;;;;;;4875:48:11;;-1:-1:-1;;;4875:48:11;4818:105;:158;;;-1:-1:-1;;;;;;;;;;937:40:9;;;4940:36:11;4798:178;4679:305;-1:-1:-1;;4679:305:11:o;7792:100::-;7846:13;7879:5;7872:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7792:100;:::o;9295:204::-;9363:7;9388:16;9396:7;9388;:16::i;:::-;9383:64;;9413:34;;-1:-1:-1;;;9413:34:11;;;;;;;;;;;9383:64;-1:-1:-1;9467:24:11;;;;:15;:24;;;;;;-1:-1:-1;;;;;9467:24:11;;9295:204::o;8858:371::-;8931:13;8947:24;8963:7;8947:15;:24::i;:::-;8931:40;;8992:5;-1:-1:-1;;;;;8986:11:11;:2;-1:-1:-1;;;;;8986:11:11;;8982:48;;;9006:24;;-1:-1:-1;;;9006:24:11;;;;;;;;;;;8982:48;719:10:6;-1:-1:-1;;;;;9047:21:11;;;;;;:63;;-1:-1:-1;9073:37:11;9090:5;719:10:6;9929:164:11;:::i;9073:37::-;9072:38;9047:63;9043:138;;;9134:35;;-1:-1:-1;;;9134:35:11;;;;;;;;;;;9043:138;9193:28;9202:2;9206:7;9215:5;9193:8;:28::i;:::-;8920:309;8858:371;;:::o;3928:303::-;4182:12;;6107:1:12;4166:13:11;:28;-1:-1:-1;;4166:46:11;;3928:303::o;10160:170::-;10294:28;10304:4;10310:2;10314:7;10294:9;:28::i;6120:197:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:1;;9539:2:13;2317:63:1::1;::::0;::::1;9521:21:13::0;9578:2;9558:18;;;9551:30;9617:33;9597:18;;;9590:61;9668:18;;2317:63:1::1;9337:355:13::0;2317:63:1::1;1744:1;2455:7;:18:::0;6203:49:12::2;::::0;6185:12:::2;::::0;6203:10:::2;::::0;6226:21:::2;::::0;6185:12;6203:49;6185:12;6203:49;6226:21;6203:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6184:68;;;6267:7;6259:46;;;::::0;-1:-1:-1;;;6259:46:12;;10109:2:13;6259:46:12::2;::::0;::::2;10091:21:13::0;10148:2;10128:18;;;10121:30;10187:28;10167:18;;;10160:56;10233:18;;6259:46:12::2;9907:350:13::0;6259:46:12::2;-1:-1:-1::0;1701:1:1::1;2628:7;:22:::0;6120:197:12:o;3048:668::-;1224:9;1237:10;1224:23;1216:66;;;;-1:-1:-1;;;1216:66:12;;;;;;;:::i;:::-;3144:26;;3123:18:::1;3198:21;3211:8:::0;3144:26;3198:21:::1;:::i;:::-;3177:42;;3240:16;:14;:16::i;:::-;3232:54;;;::::0;-1:-1:-1;;;3232:54:12;;11128:2:13;3232:54:12::1;::::0;::::1;11110:21:13::0;11167:2;11147:18;;;11140:30;-1:-1:-1;;;11186:18:13;;;11179:55;11251:18;;3232:54:12::1;10926:349:13::0;3232:54:12::1;3314:10;3301:9;:23;3293:73;;;;-1:-1:-1::0;;;3293:73:12::1;;;;;;;:::i;:::-;3397:9;;3381:13;:11;:13::i;:::-;:25;3373:77;;;::::0;-1:-1:-1;;;3373:77:12;;11888:2:13;3373:77:12::1;::::0;::::1;11870:21:13::0;11927:2;11907:18;;;11900:30;11966:34;11946:18;;;11939:62;-1:-1:-1;;;12017:18:13;;;12010:37;12064:19;;3373:77:12::1;11686:403:13::0;3373:77:12::1;3493:9;;3481:8;3465:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;3457:71;;;;-1:-1:-1::0;;;3457:71:12::1;;;;;;;:::i;:::-;3582:13;::::0;3556:10:::1;3543:24;::::0;;;:12:::1;:24;::::0;;;;;3582:13;;;::::1;;;::::0;3543:35:::1;::::0;3570:8;;3543:35:::1;:::i;:::-;:52;;3535:92;;;::::0;-1:-1:-1;;;3535:92:12;;12779:2:13;3535:92:12::1;::::0;::::1;12761:21:13::0;12818:2;12798:18;;;12791:30;12857:29;12837:18;;;12830:57;12904:18;;3535:92:12::1;12577:351:13::0;3535:92:12::1;3649:10;3636:24;::::0;;;:12:::1;:24;::::0;;;;:36;;3664:8;;3636:24;:36:::1;::::0;3664:8;;3636:36:::1;:::i;:::-;::::0;;;-1:-1:-1;3679:31:12::1;::::0;-1:-1:-1;3689:10:12::1;3701:8:::0;3679:9:::1;:31::i;4128:370::-:0;4210:10;:23;4265:27;;4322:25;;4176:4;;4210:23;4265:27;4361:15;;;;;:38;;-1:-1:-1;4380:19:12;;;4361:38;:59;;;;-1:-1:-1;4403:17:12;;;4361:59;:96;;;;;4443:14;4424:15;:33;;4361:96;:131;;;;;4480:12;4461:15;:31;;4361:131;4354:138;;;;;4128:370;:::o;4504:264::-;4585:26;;4643:30;;4551:4;;4585:26;4687:15;;;;;:38;;-1:-1:-1;4706:19:12;;;4687:38;:75;;;;;4748:14;4729:15;:33;;4687:75;4680:82;;;;4504:264;:::o;10401:185:11:-;10539:39;10556:4;10562:2;10566:7;10539:39;;;;;;;;;;;;:16;:39::i;5418:133:12:-;5470:4;5503:9;;5486:13;:11;:13::i;:::-;:26;5483:42;;;-1:-1:-1;5521:4:12;;5418:133::o;5483:42::-;-1:-1:-1;5540:5:12;;5418:133::o;5900:100::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5971:23:12::1;:13;5987:7:::0;;5971:23:::1;:::i;7600:125:11:-:0;7664:7;7691:21;7704:7;7691:12;:21::i;:::-;:26;;7600:125;-1:-1:-1;;7600:125:11:o;4774:185:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4867:10:12::1;4850:13;:11;:13::i;:::-;:27;;4842:82;;;::::0;-1:-1:-1;;;4842:82:12;;13135:2:13;4842:82:12::1;::::0;::::1;13117:21:13::0;13174:2;13154:18;;;13147:30;13213:34;13193:18;;;13186:62;-1:-1:-1;;;13264:18:13;;;13257:40;13314:19;;4842:82:12::1;12933:406:13::0;4842:82:12::1;4931:9;:22:::0;4774:185::o;5048:206:11:-;5112:7;-1:-1:-1;;;;;5136:19:11;;5132:60;;5164:28;;-1:-1:-1;;;5164:28:11;;;;;;;;;;;5132:60;-1:-1:-1;;;;;;5218:19:11;;;;;:12;:19;;;;;:27;;;;5048:206::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;4965:164:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5060:12:12::1;:28:::0;;;;5095:12:::1;:28:::0;4965:164::o;5135:160::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5226:12:12::1;:28:::0;;::::1;5261::::0;;::::1;5226;5261;-1:-1:-1::0;;5261:28:12;;;5226;;;::::1;5261::::0;;;;;;;::::1;::::0;;5135:160::o;6438:130::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6541:21:12;6554:7;6541:12;:21::i;7961:104:11:-;8017:13;8050:7;8043:14;;;;;:::i;9571:287::-;-1:-1:-1;;;;;9670:24:11;;719:10:6;9670:24:11;9666:54;;;9703:17;;-1:-1:-1;;;9703:17:11;;;;;;;;;;;9666:54;719:10:6;9733:32:11;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9733:42:11;;;;;;;;;;;;:53;;-1:-1:-1;;9733:53:11;;;;;;;;;;9802:48;;540:41:13;;;9733:42:11;;719:10:6;9802:48:11;;513:18:13;9802:48:11;;;;;;;9571:287;;:::o;10657:369::-;10824:28;10834:4;10840:2;10844:7;10824:9;:28::i;:::-;-1:-1:-1;;;;;10867:13:11;;1465:19:5;:23;;10867:76:11;;;;;10887:56;10918:4;10924:2;10928:7;10937:5;10887:30;:56::i;:::-;10886:57;10867:76;10863:156;;;10967:40;;-1:-1:-1;;;10967:40:11;;;;;;;;;;;10863:156;10657:369;;;;:::o;5557:188:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5616:16:12::1;:14;:16::i;:::-;5608:54;;;::::0;-1:-1:-1;;;5608:54:12;;11128:2:13;5608:54:12::1;::::0;::::1;11110:21:13::0;11167:2;11147:18;;;11140:30;-1:-1:-1;;;11186:18:13;;;11179:55;11251:18;;5608:54:12::1;10926:349:13::0;5608:54:12::1;5682:25;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;5682:25:12;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;5669:10:::1;:38:::0;;;;;;;;;;;;;;;;;5726:13:::1;:11;:13::i;8136:318:11:-:0;8209:13;8240:16;8248:7;8240;:16::i;:::-;8235:59;;8265:29;;-1:-1:-1;;;8265:29:11;;;;;;;;;;;8235:59;8307:21;8331:10;:8;:10::i;:::-;8307:34;;8365:7;8359:21;8384:1;8359:26;;:87;;;;;;;;;;;;;;;;;8412:7;8421:18;:7;:16;:18::i;:::-;8395:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8359:87;8352:94;8136:318;-1:-1:-1;;;8136:318:11:o;1302:867:12:-;1224:9;1237:10;1224:23;1216:66;;;;-1:-1:-1;;;1216:66:12;;;;;;;:::i;:::-;1427:10:::1;:23:::0;1406:18:::1;1478:21;1491:8:::0;1427:23;1478:21:::1;:::i;:::-;1539:28;::::0;-1:-1:-1;;1556:10:12::1;13968:2:13::0;13964:15;13960:53;1539:28:12::1;::::0;::::1;13948:66:13::0;1457:42:12;;-1:-1:-1;1506:20:12::1;::::0;14030:12:13;;1539:28:12::1;;;;;;;;;;;;1529:39;;;;;;1506:62;;1585:17;:15;:17::i;:::-;1577:51;;;::::0;-1:-1:-1;;;1577:51:12;;14255:2:13;1577:51:12::1;::::0;::::1;14237:21:13::0;14294:2;14274:18;;;14267:30;-1:-1:-1;;;14313:18:13;;;14306:51;14374:18;;1577:51:12::1;14053:345:13::0;1577:51:12::1;1643:53;1662:5;;1643:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;1669:12:12::1;::::0;;-1:-1:-1;1683:12:12;;-1:-1:-1;1643:18:12::1;:53::i;:::-;1635:90;;;::::0;-1:-1:-1;;;1635:90:12;;14605:2:13;1635:90:12::1;::::0;::::1;14587:21:13::0;14644:2;14624:18;;;14617:30;-1:-1:-1;;;14663:18:13;;;14656:54;14727:18;;1635:90:12::1;14403:348:13::0;1635:90:12::1;1753:10;1740:9;:23;1732:73;;;;-1:-1:-1::0;;;1732:73:12::1;;;;;;;:::i;:::-;1836:13;;1820;:11;:13::i;:::-;:29;1812:86;;;;-1:-1:-1::0;;;1812:86:12::1;;;;;;;:::i;:::-;1941:13;;1929:8;1913:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;1905:75;;;;-1:-1:-1::0;;;1905:75:12::1;;;;;;;:::i;:::-;2035:12;::::0;2009:10:::1;2035:12;1995:25:::0;;;:13:::1;:25;::::0;;;;;2035:12:::1;::::0;;::::1;::::0;1995:36:::1;::::0;2023:8;;1995:36:::1;:::i;:::-;:52;;1987:92;;;::::0;-1:-1:-1;;;1987:92:12;;12779:2:13;1987:92:12::1;::::0;::::1;12761:21:13::0;12818:2;12798:18;;;12791:30;12857:29;12837:18;;;12830:57;12904:18;;1987:92:12::1;12577:351:13::0;1987:92:12::1;2102:10;2088:25;::::0;;;:13:::1;:25;::::0;;;;:37;;2117:8;;2088:25;:37:::1;::::0;2117:8;;2088:37:::1;:::i;:::-;::::0;;;-1:-1:-1;2132:31:12::1;::::0;-1:-1:-1;2142:10:12::1;2154:8:::0;2132:9:::1;:31::i;:::-;1399:770;;;1302:867:::0;;;:::o;2175:::-;1224:9;1237:10;1224:23;1216:66;;;;-1:-1:-1;;;1216:66:12;;;;;;;:::i;:::-;2300:10:::1;:23:::0;2279:18:::1;2351:21;2364:8:::0;2300:23;2351:21:::1;:::i;:::-;2412:28;::::0;-1:-1:-1;;2429:10:12::1;13968:2:13::0;13964:15;13960:53;2412:28:12::1;::::0;::::1;13948:66:13::0;2330:42:12;;-1:-1:-1;2379:20:12::1;::::0;14030:12:13;;2412:28:12::1;;;;;;;;;;;;2402:39;;;;;;2379:62;;2458:17;:15;:17::i;:::-;2450:51;;;::::0;-1:-1:-1;;;2450:51:12;;14255:2:13;2450:51:12::1;::::0;::::1;14237:21:13::0;14294:2;14274:18;;;14267:30;-1:-1:-1;;;14313:18:13;;;14306:51;14374:18;;2450:51:12::1;14053:345:13::0;2450:51:12::1;2516:53;2535:5;;2516:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;2542:12:12::1;::::0;;-1:-1:-1;2556:12:12;;-1:-1:-1;2516:18:12::1;:53::i;:::-;2508:90;;;::::0;-1:-1:-1;;;2508:90:12;;14605:2:13;2508:90:12::1;::::0;::::1;14587:21:13::0;14644:2;14624:18;;;14617:30;-1:-1:-1;;;14663:18:13;;;14656:54;14727:18;;2508:90:12::1;14403:348:13::0;2508:90:12::1;2626:10;2613:9;:23;2605:73;;;;-1:-1:-1::0;;;2605:73:12::1;;;;;;;:::i;:::-;2709:13;;2693;:11;:13::i;:::-;:29;2685:86;;;;-1:-1:-1::0;;;2685:86:12::1;;;;;;;:::i;:::-;2814:13;;2802:8;2786:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;2778:75;;;;-1:-1:-1::0;;;2778:75:12::1;;;;;;;:::i;:::-;2908:12;::::0;2882:10:::1;2868:25;::::0;;;:13:::1;:25;::::0;;;;;2908:12:::1;::::0;;::::1;;;::::0;2868:36:::1;::::0;2896:8;;2868:36:::1;:::i;6325:107::-:0;-1:-1:-1;;;;;5432:19:11;;6383:7:12;5432:19:11;;;:12;:19;;;;;:32;-1:-1:-1;;;5432:32:11;;;;6406:20:12;5336:137:11;3722:207:12;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3859:64:12::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;3859:64:12;;;;;;;;;;;;;3846:10:::1;:77:::0;;;;;;;;;;;;;;;;;3722:207::o;3935:185::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4057:57:12::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;4057:57:12;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;4044:10:::1;:70:::0;;;;;;;;;;;;;;;;3935:185::o;5301:111::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5375:13:12::1;:30:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;5375:30:12;;::::1;::::0;;;::::1;::::0;;5301:111::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;15371:2:13;1998:73:0::1;::::0;::::1;15353:21:13::0;15410:2;15390:18;;;15383:30;15449:34;15429:18;;;15422:62;-1:-1:-1;;;15500:18:13;;;15493:36;15546:19;;1998:73:0::1;15169:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;1175:320:5:-;-1:-1:-1;;;;;1465:19:5;;:23;;;1175:320::o;11281:174:11:-;11338:4;11381:7;6107:1:12;11362:26:11;;:53;;;;;11402:13;;11392:7;:23;11362:53;:85;;;;-1:-1:-1;;11420:20:11;;;;:11;:20;;;;;:27;-1:-1:-1;;;11420:27:11;;;;11419:28;;11281:174::o;19438:196::-;19553:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19553:29:11;-1:-1:-1;;;;;19553:29:11;;;;;;;;;19598:28;;19553:24;;19598:28;;;;;;;19438:196;;;:::o;14381:2130::-;14496:35;14534:21;14547:7;14534:12;:21::i;:::-;14496:59;;14594:4;-1:-1:-1;;;;;14572:26:11;:13;:18;;;-1:-1:-1;;;;;14572:26:11;;14568:67;;14607:28;;-1:-1:-1;;;14607:28:11;;;;;;;;;;;14568:67;14648:22;719:10:6;-1:-1:-1;;;;;14674:20:11;;;;:73;;-1:-1:-1;14711:36:11;14728:4;719:10:6;9929:164:11;:::i;14711:36::-;14674:126;;;-1:-1:-1;719:10:6;14764:20:11;14776:7;14764:11;:20::i;:::-;-1:-1:-1;;;;;14764:36:11;;14674:126;14648:153;;14819:17;14814:66;;14845:35;;-1:-1:-1;;;14845:35:11;;;;;;;;;;;14814:66;-1:-1:-1;;;;;14895:16:11;;14891:52;;14920:23;;-1:-1:-1;;;14920:23:11;;;;;;;;;;;14891:52;15064:35;15081:1;15085:7;15094:4;15064:8;:35::i;:::-;-1:-1:-1;;;;;15395:18:11;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15395:31:11;;;;;;;-1:-1:-1;;15395:31:11;;;;;;;15441:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15441:29:11;;;;;;;;;;;15521:20;;;:11;:20;;;;;;15556:18;;-1:-1:-1;;;;;;15589:49:11;;;;-1:-1:-1;;;15622:15:11;15589:49;;;;;;;;;;15912:11;;15972:24;;;;;16015:13;;15521:20;;15972:24;;16015:13;16011:384;;16225:13;;16210:11;:28;16206:174;;16263:20;;16332:28;;;;16306:54;;-1:-1:-1;;;16306:54:11;-1:-1:-1;;;;;;16306:54:11;;;-1:-1:-1;;;;;16263:20:11;;16306:54;;;;16206:174;15370:1036;;;16442:7;16438:2;-1:-1:-1;;;;;16423:27:11;16432:4;-1:-1:-1;;;;;16423:27:11;;;;;;;;;;;16461:42;14485:2026;;14381:2130;;;:::o;11463:104::-;11532:27;11542:2;11546:8;11532:27;;;;;;;;;;;;:9;:27::i;:::-;11463:104;;:::o;6429:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6540:7:11;;6107:1:12;6589:23:11;;:47;;;;;6623:13;;6616:4;:20;6589:47;6585:886;;;6657:31;6691:17;;;:11;:17;;;;;;;;;6657:51;;;;;;;;;-1:-1:-1;;;;;6657:51:11;;;;-1:-1:-1;;;6657:51:11;;;;;;;;;;;-1:-1:-1;;;6657:51:11;;;;;;;;;;;;;;6727:729;;6777:14;;-1:-1:-1;;;;;6777:28:11;;6773:101;;6841:9;6429:1109;-1:-1:-1;;;6429:1109:11:o;6773:101::-;-1:-1:-1;;;7216:6:11;7261:17;;;;:11;:17;;;;;;;;;7249:29;;;;;;;;;-1:-1:-1;;;;;7249:29:11;;;;;-1:-1:-1;;;7249:29:11;;;;;;;;;;;-1:-1:-1;;;7249:29:11;;;;;;;;;;;;;7309:28;7305:109;;7377:9;6429:1109;-1:-1:-1;;;6429:1109:11:o;7305:109::-;7176:261;;;6638:833;6585:886;7499:31;;-1:-1:-1;;;7499:31:11;;;;;;;;;;;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;20126:667:11:-;20310:72;;-1:-1:-1;;;20310:72:11;;20289:4;;-1:-1:-1;;;;;20310:36:11;;;;;:72;;719:10:6;;20361:4:11;;20367:7;;20376:5;;20310:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20310:72:11;;;;;;;;-1:-1:-1;;20310:72:11;;;;;;;;;;;;:::i;:::-;;;20306:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20544:13:11;;20540:235;;20590:40;;-1:-1:-1;;;20590:40:11;;;;;;;;;;;20540:235;20733:6;20727:13;20718:6;20714:2;20710:15;20703:38;20306:480;-1:-1:-1;;;;;;20429:55:11;-1:-1:-1;;;20429:55:11;;-1:-1:-1;20306:480:11;20126:667;;;;;;:::o;5786:108:12:-;5846:13;5875;5868:20;;;;;:::i;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;862:184:8;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:8:o;11930:163:11:-;12053:32;12059:2;12063:8;12073:5;12080:4;12053:5;:32::i;1398:662:8:-;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:8;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:8;1398:662;-1:-1:-1;;;1398:662:8:o;12352:1775:11:-;12514:13;;-1:-1:-1;;;;;12542:16:11;;12538:48;;12567:19;;-1:-1:-1;;;12567:19:11;;;;;;;;;;;12538:48;12601:13;12597:44;;12623:18;;-1:-1:-1;;;12623:18:11;;;;;;;;;;;12597:44;-1:-1:-1;;;;;12992:16:11;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;13051:49:11;;12992:44;;;;;;;;13051:49;;;-1:-1:-1;;;;;12992:44:11;;;;;;13051:49;;;;;;;;;;;;;;;;13117:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;13167:66:11;;;;-1:-1:-1;;;13217:15:11;13167:66;;;;;;;;;;13117:25;13314:23;;;13358:4;:23;;;;-1:-1:-1;;;;;;13366:13:11;;1465:19:5;:23;;13366:15:11;13354:641;;;13402:314;13433:38;;13458:12;;-1:-1:-1;;;;;13433:38:11;;;13450:1;;13433:38;;13450:1;;13433:38;13499:69;13538:1;13542:2;13546:14;;;;;;13562:5;13499:30;:69::i;:::-;13494:174;;13604:40;;-1:-1:-1;;;13604:40:11;;;;;;;;;;;13494:174;13711:3;13695:12;:19;;13402:314;;13797:12;13780:13;;:29;13776:43;;13811:8;;;13776:43;13354:641;;;13860:120;13891:40;;13916:14;;;;;-1:-1:-1;;;;;13891:40:11;;;13908:1;;13891:40;;13908:1;;13891:40;13975:3;13959:12;:19;;13860:120;;13354:641;-1:-1:-1;14009:13:11;:28;14059:60;10657:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:13;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:13;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:13:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:13;;1343:180;-1:-1:-1;1343:180:13:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:13;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:13:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3068:592::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3256:9;3243:23;3285:18;3326:2;3318:6;3315:14;3312:34;;;3342:1;3339;3332:12;3312:34;3380:6;3369:9;3365:22;3355:32;;3425:7;3418:4;3414:2;3410:13;3406:27;3396:55;;3447:1;3444;3437:12;3396:55;3487:2;3474:16;3513:2;3505:6;3502:14;3499:34;;;3529:1;3526;3519:12;3499:34;3574:7;3569:2;3560:6;3556:2;3552:15;3548:24;3545:37;3542:57;;;3595:1;3592;3585:12;3542:57;3626:2;3618:11;;;;;3648:6;;-1:-1:-1;3068:592:13;;-1:-1:-1;;;;3068:592:13:o;3665:248::-;3733:6;3741;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;-1:-1:-1;;3833:23:13;;;3903:2;3888:18;;;3875:32;;-1:-1:-1;3665:248:13:o;3918:156::-;3984:20;;4044:4;4033:16;;4023:27;;4013:55;;4064:1;4061;4054:12;4079:252;4143:6;4151;4204:2;4192:9;4183:7;4179:23;4175:32;4172:52;;;4220:1;4217;4210:12;4172:52;4243:27;4260:9;4243:27;:::i;:::-;4233:37;;4289:36;4321:2;4310:9;4306:18;4289:36;:::i;:::-;4279:46;;4079:252;;;;;:::o;5250:347::-;5315:6;5323;5376:2;5364:9;5355:7;5351:23;5347:32;5344:52;;;5392:1;5389;5382:12;5344:52;5415:29;5434:9;5415:29;:::i;:::-;5405:39;;5494:2;5483:9;5479:18;5466:32;5541:5;5534:13;5527:21;5520:5;5517:32;5507:60;;5563:1;5560;5553:12;5507:60;5586:5;5576:15;;;5250:347;;;;;:::o;5602:127::-;5663:10;5658:3;5654:20;5651:1;5644:31;5694:4;5691:1;5684:15;5718:4;5715:1;5708:15;5734:1138;5829:6;5837;5845;5853;5906:3;5894:9;5885:7;5881:23;5877:33;5874:53;;;5923:1;5920;5913:12;5874:53;5946:29;5965:9;5946:29;:::i;:::-;5936:39;;5994:38;6028:2;6017:9;6013:18;5994:38;:::i;:::-;5984:48;;6079:2;6068:9;6064:18;6051:32;6041:42;;6134:2;6123:9;6119:18;6106:32;6157:18;6198:2;6190:6;6187:14;6184:34;;;6214:1;6211;6204:12;6184:34;6252:6;6241:9;6237:22;6227:32;;6297:7;6290:4;6286:2;6282:13;6278:27;6268:55;;6319:1;6316;6309:12;6268:55;6355:2;6342:16;6377:2;6373;6370:10;6367:36;;;6383:18;;:::i;:::-;6458:2;6452:9;6426:2;6512:13;;-1:-1:-1;;6508:22:13;;;6532:2;6504:31;6500:40;6488:53;;;6556:18;;;6576:22;;;6553:46;6550:72;;;6602:18;;:::i;:::-;6642:10;6638:2;6631:22;6677:2;6669:6;6662:18;6717:7;6712:2;6707;6703;6699:11;6695:20;6692:33;6689:53;;;6738:1;6735;6728:12;6689:53;6794:2;6789;6785;6781:11;6776:2;6768:6;6764:15;6751:46;6839:1;6834:2;6829;6821:6;6817:15;6813:24;6806:35;6860:6;6850:16;;;;;;;5734:1138;;;;;;;:::o;6877:683::-;6972:6;6980;6988;7041:2;7029:9;7020:7;7016:23;7012:32;7009:52;;;7057:1;7054;7047:12;7009:52;7093:9;7080:23;7070:33;;7154:2;7143:9;7139:18;7126:32;7177:18;7218:2;7210:6;7207:14;7204:34;;;7234:1;7231;7224:12;7204:34;7272:6;7261:9;7257:22;7247:32;;7317:7;7310:4;7306:2;7302:13;7298:27;7288:55;;7339:1;7336;7329:12;7288:55;7379:2;7366:16;7405:2;7397:6;7394:14;7391:34;;;7421:1;7418;7411:12;7391:34;7474:7;7469:2;7459:6;7456:1;7452:14;7448:2;7444:23;7440:32;7437:45;7434:65;;;7495:1;7492;7485:12;7434:65;7526:2;7522;7518:11;7508:21;;7548:6;7538:16;;;;;6877:683;;;;;:::o;7565:316::-;7642:6;7650;7658;7711:2;7699:9;7690:7;7686:23;7682:32;7679:52;;;7727:1;7724;7717:12;7679:52;-1:-1:-1;;7750:23:13;;;7820:2;7805:18;;7792:32;;-1:-1:-1;7871:2:13;7856:18;;;7843:32;;7565:316;-1:-1:-1;7565:316:13:o;8139:260::-;8207:6;8215;8268:2;8256:9;8247:7;8243:23;8239:32;8236:52;;;8284:1;8281;8274:12;8236:52;8307:29;8326:9;8307:29;:::i;:::-;8297:39;;8355:38;8389:2;8378:9;8374:18;8355:38;:::i;8404:182::-;8461:6;8514:2;8502:9;8493:7;8489:23;8485:32;8482:52;;;8530:1;8527;8520:12;8482:52;8553:27;8570:9;8553:27;:::i;8591:380::-;8670:1;8666:12;;;;8713;;;8734:61;;8788:4;8780:6;8776:17;8766:27;;8734:61;8841:2;8833:6;8830:14;8810:18;8807:38;8804:161;;;8887:10;8882:3;8878:20;8875:1;8868:31;8922:4;8919:1;8912:15;8950:4;8947:1;8940:15;8804:161;;8591:380;;;:::o;8976:356::-;9178:2;9160:21;;;9197:18;;;9190:30;9256:34;9251:2;9236:18;;9229:62;9323:2;9308:18;;8976:356::o;10262:354::-;10464:2;10446:21;;;10503:2;10483:18;;;10476:30;10542:32;10537:2;10522:18;;10515:60;10607:2;10592:18;;10262:354::o;10621:127::-;10682:10;10677:3;10673:20;10670:1;10663:31;10713:4;10710:1;10703:15;10737:4;10734:1;10727:15;10753:168;10793:7;10859:1;10855;10851:6;10847:14;10844:1;10841:21;10836:1;10829:9;10822:17;10818:45;10815:71;;;10866:18;;:::i;:::-;-1:-1:-1;10906:9:13;;10753:168::o;11280:401::-;11482:2;11464:21;;;11521:2;11501:18;;;11494:30;11560:34;11555:2;11540:18;;11533:62;-1:-1:-1;;;11626:2:13;11611:18;;11604:35;11671:3;11656:19;;11280:401::o;12094:128::-;12134:3;12165:1;12161:6;12158:1;12155:13;12152:39;;;12171:18;;:::i;:::-;-1:-1:-1;12207:9:13;;12094:128::o;12227:345::-;12429:2;12411:21;;;12468:2;12448:18;;;12441:30;-1:-1:-1;;;12502:2:13;12487:18;;12480:51;12563:2;12548:18;;12227:345::o;13344:470::-;13523:3;13561:6;13555:13;13577:53;13623:6;13618:3;13611:4;13603:6;13599:17;13577:53;:::i;:::-;13693:13;;13652:16;;;;13715:57;13693:13;13652:16;13749:4;13737:17;;13715:57;:::i;:::-;13788:20;;13344:470;-1:-1:-1;;;;13344:470:13:o;14756:408::-;14958:2;14940:21;;;14997:2;14977:18;;;14970:30;15036:34;15031:2;15016:18;;15009:62;-1:-1:-1;;;15102:2:13;15087:18;;15080:42;15154:3;15139:19;;14756:408::o;15576:489::-;-1:-1:-1;;;;;15845:15:13;;;15827:34;;15897:15;;15892:2;15877:18;;15870:43;15944:2;15929:18;;15922:34;;;15992:3;15987:2;15972:18;;15965:31;;;15770:4;;16013:46;;16039:19;;16031:6;16013:46;:::i;:::-;16005:54;15576:489;-1:-1:-1;;;;;;15576:489:13:o;16070:249::-;16139:6;16192:2;16180:9;16171:7;16167:23;16163:32;16160:52;;;16208:1;16205;16198:12;16160:52;16240:9;16234:16;16259:30;16283:5;16259:30;:::i;16324:135::-;16363:3;-1:-1:-1;;16384:17:13;;16381:43;;;16404:18;;:::i;:::-;-1:-1:-1;16451:1:13;16440:13;;16324:135::o;16464:127::-;16525:10;16520:3;16516:20;16513:1;16506:31;16556:4;16553:1;16546:15;16580:4;16577:1;16570:15;16596:120;16636:1;16662;16652:35;;16667:18;;:::i;:::-;-1:-1:-1;16701:9:13;;16596:120::o;16721:125::-;16761:4;16789:1;16786;16783:8;16780:34;;;16794:18;;:::i;:::-;-1:-1:-1;16831:9:13;;16721:125::o;16851:112::-;16883:1;16909;16899:35;;16914:18;;:::i;:::-;-1:-1:-1;16948:9:13;;16851:112::o;16968:127::-;17029:10;17024:3;17020:20;17017:1;17010:31;17060:4;17057:1;17050:15;17084:4;17081:1;17074:15
Swarm Source
ipfs://b84303bdbf231b06dbc57f53f4bced3644b32a88c258ecba09c06a2b652d7b5e
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.