ERC-721
Overview
Max Total Supply
397 defNFT
Holders
223
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 defNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DefNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721A.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./MerkleProof.sol"; contract DefNFT is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public whiteListCost = 0; // 0 eth uint256 public publicCost = 5000000000000000; // 0.005 eth uint256 public maxSupply = 1000; //setter to be change uint256 public maxMintAmount = 10; //max mint amount bool public paused = true; bool public revealed = false; string public notRevealedUri; mapping(address => bool) public AddressMinted; bytes32 public merkleRoot = 0x37f8aa45011c9bf1f09feb528b9df9c19875df288057d05e476e51406d8b2dac; //will be change as we change whitelist constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // whiteList Mint function function whiteListMint(bytes32[] calldata _merkleProof) public payable { uint256 supply = totalSupply(); require(!paused); require(supply + 1 <= maxSupply); require(msg.value >= whiteListCost); require(!AddressMinted[msg.sender], "Already minted Once"); //verify the provided _merkleProof given to us through the API call on our website bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid Proof!!" ); _safeMint(msg.sender, 1); AddressMinted[msg.sender] = true; } // Public mint at a price function publicMint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0, "Quantity cannot be zero"); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); require(msg.value >= publicCost * _mintAmount); _safeMint(msg.sender, _mintAmount); } // Minting for ownerOnly function reserveMint(uint256 _mintAmount) public payable onlyOwner { uint256 supply = totalSupply(); require(_mintAmount > 0); require(supply + _mintAmount <= maxSupply); _safeMint(msg.sender, _mintAmount); } // airdropping to array of address function sendGifts(address[] memory _wallets) public onlyOwner { uint256 supply = totalSupply(); require( supply + _wallets.length <= maxSupply, "not enough tokens left" ); for (uint256 i = 0; i < _wallets.length; i++) { _safeMint(_wallets[i], 1); } } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //Returns URI of the particular token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!revealed) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } //only owner function reveal(bool _revealed) public onlyOwner { revealed = _revealed; } function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner { maxMintAmount = _maxMintAmount; } function setWhiteListCost(uint256 _whiteListCost) public onlyOwner { whiteListCost = _whiteListCost; } function setPublicCost(uint256 _publicCost) public onlyOwner { publicCost = _publicCost; } function setMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner { merkleRoot = _newMerkleRoot; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// 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 (utils/Context.sol) pragma solidity ^0.8.7; /** * @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 v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.7; 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 // Creator: Chiru Labs pragma solidity ^0.8.7; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./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 v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.7; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.7; import "./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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.7; 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.7; /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Merkle 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 (access/Ownable.sol) pragma solidity ^0.8.7; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.7; /** * @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 (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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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"},{"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":"","type":"address"}],"name":"AddressMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whiteListCost","type":"uint256"}],"name":"setWhiteListCost","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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000051929190620003ed565b506000600c556611c37937e08000600d556103e8600e55600a600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055507f37f8aa45011c9bf1f09feb528b9df9c19875df288057d05e476e51406d8b2dac60001b601355348015620000d757600080fd5b5060405162004b6c38038062004b6c8339818101604052810190620000fd91906200051b565b83836200011f620001136200019d60201b60201c565b620001a560201b60201c565b816003908051906020019062000137929190620003ed565b50806004908051906020019062000150929190620003ed565b50620001616200026960201b60201c565b6001819055505050600160098190555062000182826200026e60201b60201c565b62000193816200031960201b60201c565b5050505062000810565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b6200027e6200019d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a4620003c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f49062000630565b60405180910390fd5b80600a908051906020019062000315929190620003ed565b5050565b620003296200019d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034f620003c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039f9062000630565b60405180910390fd5b8060119080519060200190620003c0929190620003ed565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003fb90620006f8565b90600052602060002090601f0160209004810192826200041f57600085556200046b565b82601f106200043a57805160ff19168380011785556200046b565b828001600101855582156200046b579182015b828111156200046a5782518255916020019190600101906200044d565b5b5090506200047a91906200047e565b5090565b5b80821115620004995760008160009055506001016200047f565b5090565b6000620004b4620004ae846200067b565b62000652565b905082815260208101848484011115620004d357620004d2620007c7565b5b620004e0848285620006c2565b509392505050565b600082601f8301126200050057620004ff620007c2565b5b8151620005128482602086016200049d565b91505092915050565b60008060008060808587031215620005385762000537620007d1565b5b600085015167ffffffffffffffff811115620005595762000558620007cc565b5b6200056787828801620004e8565b945050602085015167ffffffffffffffff8111156200058b576200058a620007cc565b5b6200059987828801620004e8565b935050604085015167ffffffffffffffff811115620005bd57620005bc620007cc565b5b620005cb87828801620004e8565b925050606085015167ffffffffffffffff811115620005ef57620005ee620007cc565b5b620005fd87828801620004e8565b91505092959194509250565b600062000618602083620006b1565b91506200062582620007e7565b602082019050919050565b600060208201905081810360008301526200064b8162000609565b9050919050565b60006200065e62000671565b90506200066c82826200072e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000699576200069862000793565b5b620006a482620007d6565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006e2578082015181840152602081019050620006c5565b83811115620006f2576000848401525b50505050565b600060028204905060018216806200071157607f821691505b6020821081141562000728576200072762000764565b5b50919050565b6200073982620007d6565b810181811067ffffffffffffffff821117156200075b576200075a62000793565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61434c80620008206000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610817578063da3ef23f14610842578063ddc463921461086b578063e985e9c5146108a8578063f2c4ce1e146108e5578063f2fde38b1461090e57610246565b8063a22cb46514610734578063b88d4fde1461075d578063c668286214610786578063c7e9d141146107b1578063c87b56dd146107da57610246565b80638da5cb5b116100fd5780638da5cb5b1461066e5780639257e04414610699578063940cd05b146106c457806395d89b41146106ed57806397254e551461071857610246565b8063715018a6146105b15780637c8255db146105c85780637cb64759146105f1578063811d24371461061a5780638693da201461064357610246565b806323b872dd116101c7578063518302271161018b57806351830227146104b857806355f804b3146104e35780635c975abb1461050c5780636352211e1461053757806370a082311461057457610246565b806323b872dd146104085780632db11544146104315780632eb4a7ab1461044d5780633ccfd60b1461047857806342842e0e1461048f57610246565b8063088a4ed01161020e578063088a4ed014610344578063095ea7b31461036d5780631342ff4c1461039657806318160ddd146103b2578063239c70ae146103dd57610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063081c8c4414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906136f0565b610937565b60405161027f9190613add565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613696565b610a19565b005b3480156102bd57600080fd5b506102c6610ab2565b6040516102d39190613b13565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613793565b610b44565b6040516103109190613a76565b60405180910390f35b34801561032557600080fd5b5061032e610bc0565b60405161033b9190613b13565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613793565b610c4e565b005b34801561037957600080fd5b50610394600480360381019061038f91906135c0565b610cd4565b005b6103b060048036038101906103ab9190613793565b610ddf565b005b3480156103be57600080fd5b506103c7610e9c565b6040516103d49190613c15565b60405180910390f35b3480156103e957600080fd5b506103f2610eb3565b6040516103ff9190613c15565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906134aa565b610eb9565b005b61044b60048036038101906104469190613793565b610ec9565b005b34801561045957600080fd5b50610462610f83565b60405161046f9190613af8565b60405180910390f35b34801561048457600080fd5b5061048d610f89565b005b34801561049b57600080fd5b506104b660048036038101906104b191906134aa565b611054565b005b3480156104c457600080fd5b506104cd611074565b6040516104da9190613add565b60405180910390f35b3480156104ef57600080fd5b5061050a6004803603810190610505919061374a565b611087565b005b34801561051857600080fd5b5061052161111d565b60405161052e9190613add565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613793565b611130565b60405161056b9190613a76565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061343d565b611146565b6040516105a89190613c15565b60405180910390f35b3480156105bd57600080fd5b506105c6611216565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613600565b61129e565b005b3480156105fd57600080fd5b50610618600480360381019061061391906136c3565b6113c0565b005b34801561062657600080fd5b50610641600480360381019061063c9190613793565b611446565b005b34801561064f57600080fd5b506106586114cc565b6040516106659190613c15565b60405180910390f35b34801561067a57600080fd5b506106836114d2565b6040516106909190613a76565b60405180910390f35b3480156106a557600080fd5b506106ae6114fb565b6040516106bb9190613c15565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190613696565b611501565b005b3480156106f957600080fd5b5061070261159a565b60405161070f9190613b13565b60405180910390f35b610732600480360381019061072d9190613649565b61162c565b005b34801561074057600080fd5b5061075b60048036038101906107569190613580565b61182a565b005b34801561076957600080fd5b50610784600480360381019061077f91906134fd565b6119a2565b005b34801561079257600080fd5b5061079b611a1e565b6040516107a89190613b13565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613793565b611aac565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613793565b611b32565b60405161080e9190613b13565b60405180910390f35b34801561082357600080fd5b5061082c611c83565b6040516108399190613c15565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061374a565b611c89565b005b34801561087757600080fd5b50610892600480360381019061088d919061343d565b611d1f565b60405161089f9190613add565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca919061346a565b611d3f565b6040516108dc9190613add565b60405180910390f35b3480156108f157600080fd5b5061090c6004803603810190610907919061374a565b611dd3565b005b34801561091a57600080fd5b506109356004803603810190610930919061343d565b611e69565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a125750610a1182611f61565b5b9050919050565b610a21611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610a3f6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613b95565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060038054610ac190613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054610aed90613f10565b8015610b3a5780601f10610b0f57610100808354040283529160200191610b3a565b820191906000526020600020905b815481529060010190602001808311610b1d57829003601f168201915b5050505050905090565b6000610b4f82611fd3565b610b85576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610bcd90613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613f10565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b610c56611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610c746114d2565b73ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190613b95565b60405180910390fd5b80600f8190555050565b6000610cdf82611130565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d66611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d985750610d9681610d91611fcb565b611d3f565b155b15610dcf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dda838383612021565b505050565b610de7611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610e056114d2565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613b95565b60405180910390fd5b6000610e65610e9c565b905060008211610e7457600080fd5b600e548282610e839190613d3b565b1115610e8e57600080fd5b610e9833836120d3565b5050565b6000610ea66120f1565b6002546001540303905090565b600f5481565b610ec48383836120f6565b505050565b6000610ed3610e9c565b9050601060009054906101000a900460ff1615610eef57600080fd5b60008211610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613b75565b60405180910390fd5b600f54821115610f4157600080fd5b600e548282610f509190613d3b565b1115610f5b57600080fd5b81600d54610f699190613dc2565b341015610f7557600080fd5b610f7f33836120d3565b5050565b60135481565b610f91611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610faf6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90613b95565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611050573d6000803e3d6000fd5b5050565b61106f838383604051806020016040528060008152506119a2565b505050565b601060019054906101000a900460ff1681565b61108f611fcb565b73ffffffffffffffffffffffffffffffffffffffff166110ad6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613b95565b60405180910390fd5b80600a9080519060200190611119929190613105565b5050565b601060009054906101000a900460ff1681565b600061113b826125ac565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61121e611fcb565b73ffffffffffffffffffffffffffffffffffffffff1661123c6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990613b95565b60405180910390fd5b61129c600061283b565b565b6112a6611fcb565b73ffffffffffffffffffffffffffffffffffffffff166112c46114d2565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613b95565b60405180910390fd5b6000611324610e9c565b9050600e548251826113369190613d3b565b1115611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613bf5565b60405180910390fd5b60005b82518110156113bb576113a88382815181106113995761139861409e565b5b602002602001015160016120d3565b80806113b390613f73565b91505061137a565b505050565b6113c8611fcb565b73ffffffffffffffffffffffffffffffffffffffff166113e66114d2565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613b95565b60405180910390fd5b8060138190555050565b61144e611fcb565b73ffffffffffffffffffffffffffffffffffffffff1661146c6114d2565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613b95565b60405180910390fd5b80600d8190555050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b611509611fcb565b73ffffffffffffffffffffffffffffffffffffffff166115276114d2565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613b95565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6060600480546115a990613f10565b80601f01602080910402602001604051908101604052809291908181526020018280546115d590613f10565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905090565b6000611636610e9c565b9050601060009054906101000a900460ff161561165257600080fd5b600e546001826116629190613d3b565b111561166d57600080fd5b600c5434101561167c57600080fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613bd5565b60405180910390fd5b60003360405160200161171c9190613a2a565b604051602081830303815290604052805190602001209050611782848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601354836128ff565b6117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613b55565b60405180910390fd5b6117cc3360016120d3565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b611832611fcb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611897576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006118a4611fcb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611951611fcb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119969190613add565b60405180910390a35050565b6119ad8484846120f6565b6119cc8373ffffffffffffffffffffffffffffffffffffffff16612916565b80156119e157506119df84848484612939565b155b15611a18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b8054611a2b90613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5790613f10565b8015611aa45780601f10611a7957610100808354040283529160200191611aa4565b820191906000526020600020905b815481529060010190602001808311611a8757829003601f168201915b505050505081565b611ab4611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611ad26114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613b95565b60405180910390fd5b80600c8190555050565b6060611b3d82611fd3565b611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390613bb5565b60405180910390fd5b601060019054906101000a900460ff16611c225760118054611b9d90613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc990613f10565b8015611c165780601f10611beb57610100808354040283529160200191611c16565b820191906000526020600020905b815481529060010190602001808311611bf957829003601f168201915b50505050509050611c7e565b6000611c2c612a99565b90506000815111611c4c5760405180602001604052806000815250611c7a565b80611c5684612b2b565b600b604051602001611c6a93929190613a45565b6040516020818303038152906040525b9150505b919050565b600e5481565b611c91611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611caf6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613b95565b60405180910390fd5b80600b9080519060200190611d1b929190613105565b5050565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ddb611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611df96114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613b95565b60405180910390fd5b8060119080519060200190611e65929190613105565b5050565b611e71611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611e8f6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613b95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90613b35565b60405180910390fd5b611f5e8161283b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611fde6120f1565b11158015611fed575060015482105b801561201a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6120ed828260405180602001604052806000815250612c8c565b5050565b600090565b6000612101826125ac565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461216c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661218d611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614806121bc57506121bb856121b6611fcb565b611d3f565b5b8061220157506121ca611fcb565b73ffffffffffffffffffffffffffffffffffffffff166121e984610b44565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061223a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ae8585856001612c9e565b6122ba60008487612021565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561253a57600154821461253957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125a58585856001612ca4565b5050505050565b6125b461318b565b6000829050806125c26120f1565b111580156125d1575060015481105b15612804576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161280257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126e6578092505050612836565b5b60011561280157818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127fc578092505050612836565b6126e7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261290c8584612caa565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295f611fcb565b8786866040518563ffffffff1660e01b81526004016129819493929190613a91565b602060405180830381600087803b15801561299b57600080fd5b505af19250505080156129cc57506040513d601f19601f820116820180604052508101906129c9919061371d565b60015b612a46573d80600081146129fc576040519150601f19603f3d011682016040523d82523d6000602084013e612a01565b606091505b50600081511415612a3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612aa890613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054612ad490613f10565b8015612b215780601f10612af657610100808354040283529160200191612b21565b820191906000526020600020905b815481529060010190602001808311612b0457829003601f168201915b5050505050905090565b60606000821415612b73576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c87565b600082905060005b60008214612ba5578080612b8e90613f73565b915050600a82612b9e9190613d91565b9150612b7b565b60008167ffffffffffffffff811115612bc157612bc06140cd565b5b6040519080825280601f01601f191660200182016040528015612bf35781602001600182028036833780820191505090505b5090505b60008514612c8057600182612c0c9190613e1c565b9150600a85612c1b9190613fe0565b6030612c279190613d3b565b60f81b818381518110612c3d57612c3c61409e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c799190613d91565b9450612bf7565b8093505050505b919050565b612c998383836001612d1f565b505050565b50505050565b50505050565b60008082905060005b8451811015612d14576000858281518110612cd157612cd061409e565b5b60200260200101519050808311612cf357612cec83826130ee565b9250612d00565b612cfd81846130ee565b92505b508080612d0c90613f73565b915050612cb3565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dc8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd56000868387612c9e565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f9f5750612f9e8773ffffffffffffffffffffffffffffffffffffffff16612916565b5b15613065575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130146000888480600101955088612939565b61304a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612fa557826001541461306057600080fd5b6130d1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613066575b8160018190555050506130e76000868387612ca4565b5050505050565b600082600052816020526040600020905092915050565b82805461311190613f10565b90600052602060002090601f016020900481019282613133576000855561317a565b82601f1061314c57805160ff191683800117855561317a565b8280016001018555821561317a579182015b8281111561317957825182559160200191906001019061315e565b5b50905061318791906131ce565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131e75760008160009055506001016131cf565b5090565b60006131fe6131f984613c55565b613c30565b9050808382526020820190508285602086028201111561322157613220614106565b5b60005b85811015613251578161323788826132df565b845260208401935060208301925050600181019050613224565b5050509392505050565b600061326e61326984613c81565b613c30565b90508281526020810184848401111561328a5761328961410b565b5b613295848285613ece565b509392505050565b60006132b06132ab84613cb2565b613c30565b9050828152602081018484840111156132cc576132cb61410b565b5b6132d7848285613ece565b509392505050565b6000813590506132ee816142a3565b92915050565b600082601f83011261330957613308614101565b5b81356133198482602086016131eb565b91505092915050565b60008083601f84011261333857613337614101565b5b8235905067ffffffffffffffff811115613355576133546140fc565b5b60208301915083602082028301111561337157613370614106565b5b9250929050565b600081359050613387816142ba565b92915050565b60008135905061339c816142d1565b92915050565b6000813590506133b1816142e8565b92915050565b6000815190506133c6816142e8565b92915050565b600082601f8301126133e1576133e0614101565b5b81356133f184826020860161325b565b91505092915050565b600082601f83011261340f5761340e614101565b5b813561341f84826020860161329d565b91505092915050565b600081359050613437816142ff565b92915050565b60006020828403121561345357613452614115565b5b6000613461848285016132df565b91505092915050565b6000806040838503121561348157613480614115565b5b600061348f858286016132df565b92505060206134a0858286016132df565b9150509250929050565b6000806000606084860312156134c3576134c2614115565b5b60006134d1868287016132df565b93505060206134e2868287016132df565b92505060406134f386828701613428565b9150509250925092565b6000806000806080858703121561351757613516614115565b5b6000613525878288016132df565b9450506020613536878288016132df565b935050604061354787828801613428565b925050606085013567ffffffffffffffff81111561356857613567614110565b5b613574878288016133cc565b91505092959194509250565b6000806040838503121561359757613596614115565b5b60006135a5858286016132df565b92505060206135b685828601613378565b9150509250929050565b600080604083850312156135d7576135d6614115565b5b60006135e5858286016132df565b92505060206135f685828601613428565b9150509250929050565b60006020828403121561361657613615614115565b5b600082013567ffffffffffffffff81111561363457613633614110565b5b613640848285016132f4565b91505092915050565b600080602083850312156136605761365f614115565b5b600083013567ffffffffffffffff81111561367e5761367d614110565b5b61368a85828601613322565b92509250509250929050565b6000602082840312156136ac576136ab614115565b5b60006136ba84828501613378565b91505092915050565b6000602082840312156136d9576136d8614115565b5b60006136e78482850161338d565b91505092915050565b60006020828403121561370657613705614115565b5b6000613714848285016133a2565b91505092915050565b60006020828403121561373357613732614115565b5b6000613741848285016133b7565b91505092915050565b6000602082840312156137605761375f614115565b5b600082013567ffffffffffffffff81111561377e5761377d614110565b5b61378a848285016133fa565b91505092915050565b6000602082840312156137a9576137a8614115565b5b60006137b784828501613428565b91505092915050565b6137c981613e50565b82525050565b6137e06137db82613e50565b613fbc565b82525050565b6137ef81613e62565b82525050565b6137fe81613e6e565b82525050565b600061380f82613cf8565b6138198185613d0e565b9350613829818560208601613edd565b6138328161411a565b840191505092915050565b600061384882613d03565b6138528185613d1f565b9350613862818560208601613edd565b61386b8161411a565b840191505092915050565b600061388182613d03565b61388b8185613d30565b935061389b818560208601613edd565b80840191505092915050565b600081546138b481613f10565b6138be8186613d30565b945060018216600081146138d957600181146138ea5761391d565b60ff1983168652818601935061391d565b6138f385613ce3565b60005b83811015613915578154818901526001820191506020810190506138f6565b838801955050505b50505092915050565b6000613933602683613d1f565b915061393e82614138565b604082019050919050565b6000613956600f83613d1f565b915061396182614187565b602082019050919050565b6000613979601783613d1f565b9150613984826141b0565b602082019050919050565b600061399c602083613d1f565b91506139a7826141d9565b602082019050919050565b60006139bf602f83613d1f565b91506139ca82614202565b604082019050919050565b60006139e2601383613d1f565b91506139ed82614251565b602082019050919050565b6000613a05601683613d1f565b9150613a108261427a565b602082019050919050565b613a2481613ec4565b82525050565b6000613a3682846137cf565b60148201915081905092915050565b6000613a518286613876565b9150613a5d8285613876565b9150613a6982846138a7565b9150819050949350505050565b6000602082019050613a8b60008301846137c0565b92915050565b6000608082019050613aa660008301876137c0565b613ab360208301866137c0565b613ac06040830185613a1b565b8181036060830152613ad28184613804565b905095945050505050565b6000602082019050613af260008301846137e6565b92915050565b6000602082019050613b0d60008301846137f5565b92915050565b60006020820190508181036000830152613b2d818461383d565b905092915050565b60006020820190508181036000830152613b4e81613926565b9050919050565b60006020820190508181036000830152613b6e81613949565b9050919050565b60006020820190508181036000830152613b8e8161396c565b9050919050565b60006020820190508181036000830152613bae8161398f565b9050919050565b60006020820190508181036000830152613bce816139b2565b9050919050565b60006020820190508181036000830152613bee816139d5565b9050919050565b60006020820190508181036000830152613c0e816139f8565b9050919050565b6000602082019050613c2a6000830184613a1b565b92915050565b6000613c3a613c4b565b9050613c468282613f42565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7057613c6f6140cd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c9c57613c9b6140cd565b5b613ca58261411a565b9050602081019050919050565b600067ffffffffffffffff821115613ccd57613ccc6140cd565b5b613cd68261411a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4682613ec4565b9150613d5183613ec4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8657613d85614011565b5b828201905092915050565b6000613d9c82613ec4565b9150613da783613ec4565b925082613db757613db6614040565b5b828204905092915050565b6000613dcd82613ec4565b9150613dd883613ec4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1157613e10614011565b5b828202905092915050565b6000613e2782613ec4565b9150613e3283613ec4565b925082821015613e4557613e44614011565b5b828203905092915050565b6000613e5b82613ea4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efb578082015181840152602081019050613ee0565b83811115613f0a576000848401525b50505050565b60006002820490506001821680613f2857607f821691505b60208210811415613f3c57613f3b61406f565b5b50919050565b613f4b8261411a565b810181811067ffffffffffffffff82111715613f6a57613f696140cd565b5b80604052505050565b6000613f7e82613ec4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb157613fb0614011565b5b600182019050919050565b6000613fc782613fce565b9050919050565b6000613fd98261412b565b9050919050565b6000613feb82613ec4565b9150613ff683613ec4565b92508261400657614005614040565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f6621210000000000000000000000000000000000600082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f416c7265616479206d696e746564204f6e636500000000000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6142ac81613e50565b81146142b757600080fd5b50565b6142c381613e62565b81146142ce57600080fd5b50565b6142da81613e6e565b81146142e557600080fd5b50565b6142f181613e78565b81146142fc57600080fd5b50565b61430881613ec4565b811461431357600080fd5b5056fea26469706673582212207c65a50cee39bf217b720c02e988ff0f9925eec14b8a32b2a9c15ad99bc195ca64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b44656661756c74204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066465664e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008746573747465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087465737474657374000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c8063715018a611610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610817578063da3ef23f14610842578063ddc463921461086b578063e985e9c5146108a8578063f2c4ce1e146108e5578063f2fde38b1461090e57610246565b8063a22cb46514610734578063b88d4fde1461075d578063c668286214610786578063c7e9d141146107b1578063c87b56dd146107da57610246565b80638da5cb5b116100fd5780638da5cb5b1461066e5780639257e04414610699578063940cd05b146106c457806395d89b41146106ed57806397254e551461071857610246565b8063715018a6146105b15780637c8255db146105c85780637cb64759146105f1578063811d24371461061a5780638693da201461064357610246565b806323b872dd116101c7578063518302271161018b57806351830227146104b857806355f804b3146104e35780635c975abb1461050c5780636352211e1461053757806370a082311461057457610246565b806323b872dd146104085780632db11544146104315780632eb4a7ab1461044d5780633ccfd60b1461047857806342842e0e1461048f57610246565b8063088a4ed01161020e578063088a4ed014610344578063095ea7b31461036d5780631342ff4c1461039657806318160ddd146103b2578063239c70ae146103dd57610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063081c8c4414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906136f0565b610937565b60405161027f9190613add565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613696565b610a19565b005b3480156102bd57600080fd5b506102c6610ab2565b6040516102d39190613b13565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613793565b610b44565b6040516103109190613a76565b60405180910390f35b34801561032557600080fd5b5061032e610bc0565b60405161033b9190613b13565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613793565b610c4e565b005b34801561037957600080fd5b50610394600480360381019061038f91906135c0565b610cd4565b005b6103b060048036038101906103ab9190613793565b610ddf565b005b3480156103be57600080fd5b506103c7610e9c565b6040516103d49190613c15565b60405180910390f35b3480156103e957600080fd5b506103f2610eb3565b6040516103ff9190613c15565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906134aa565b610eb9565b005b61044b60048036038101906104469190613793565b610ec9565b005b34801561045957600080fd5b50610462610f83565b60405161046f9190613af8565b60405180910390f35b34801561048457600080fd5b5061048d610f89565b005b34801561049b57600080fd5b506104b660048036038101906104b191906134aa565b611054565b005b3480156104c457600080fd5b506104cd611074565b6040516104da9190613add565b60405180910390f35b3480156104ef57600080fd5b5061050a6004803603810190610505919061374a565b611087565b005b34801561051857600080fd5b5061052161111d565b60405161052e9190613add565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613793565b611130565b60405161056b9190613a76565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061343d565b611146565b6040516105a89190613c15565b60405180910390f35b3480156105bd57600080fd5b506105c6611216565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613600565b61129e565b005b3480156105fd57600080fd5b50610618600480360381019061061391906136c3565b6113c0565b005b34801561062657600080fd5b50610641600480360381019061063c9190613793565b611446565b005b34801561064f57600080fd5b506106586114cc565b6040516106659190613c15565b60405180910390f35b34801561067a57600080fd5b506106836114d2565b6040516106909190613a76565b60405180910390f35b3480156106a557600080fd5b506106ae6114fb565b6040516106bb9190613c15565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190613696565b611501565b005b3480156106f957600080fd5b5061070261159a565b60405161070f9190613b13565b60405180910390f35b610732600480360381019061072d9190613649565b61162c565b005b34801561074057600080fd5b5061075b60048036038101906107569190613580565b61182a565b005b34801561076957600080fd5b50610784600480360381019061077f91906134fd565b6119a2565b005b34801561079257600080fd5b5061079b611a1e565b6040516107a89190613b13565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613793565b611aac565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613793565b611b32565b60405161080e9190613b13565b60405180910390f35b34801561082357600080fd5b5061082c611c83565b6040516108399190613c15565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061374a565b611c89565b005b34801561087757600080fd5b50610892600480360381019061088d919061343d565b611d1f565b60405161089f9190613add565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca919061346a565b611d3f565b6040516108dc9190613add565b60405180910390f35b3480156108f157600080fd5b5061090c6004803603810190610907919061374a565b611dd3565b005b34801561091a57600080fd5b506109356004803603810190610930919061343d565b611e69565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a125750610a1182611f61565b5b9050919050565b610a21611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610a3f6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613b95565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060038054610ac190613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054610aed90613f10565b8015610b3a5780601f10610b0f57610100808354040283529160200191610b3a565b820191906000526020600020905b815481529060010190602001808311610b1d57829003601f168201915b5050505050905090565b6000610b4f82611fd3565b610b85576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610bcd90613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613f10565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b610c56611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610c746114d2565b73ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190613b95565b60405180910390fd5b80600f8190555050565b6000610cdf82611130565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d66611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d985750610d9681610d91611fcb565b611d3f565b155b15610dcf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dda838383612021565b505050565b610de7611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610e056114d2565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613b95565b60405180910390fd5b6000610e65610e9c565b905060008211610e7457600080fd5b600e548282610e839190613d3b565b1115610e8e57600080fd5b610e9833836120d3565b5050565b6000610ea66120f1565b6002546001540303905090565b600f5481565b610ec48383836120f6565b505050565b6000610ed3610e9c565b9050601060009054906101000a900460ff1615610eef57600080fd5b60008211610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613b75565b60405180910390fd5b600f54821115610f4157600080fd5b600e548282610f509190613d3b565b1115610f5b57600080fd5b81600d54610f699190613dc2565b341015610f7557600080fd5b610f7f33836120d3565b5050565b60135481565b610f91611fcb565b73ffffffffffffffffffffffffffffffffffffffff16610faf6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90613b95565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611050573d6000803e3d6000fd5b5050565b61106f838383604051806020016040528060008152506119a2565b505050565b601060019054906101000a900460ff1681565b61108f611fcb565b73ffffffffffffffffffffffffffffffffffffffff166110ad6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613b95565b60405180910390fd5b80600a9080519060200190611119929190613105565b5050565b601060009054906101000a900460ff1681565b600061113b826125ac565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61121e611fcb565b73ffffffffffffffffffffffffffffffffffffffff1661123c6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990613b95565b60405180910390fd5b61129c600061283b565b565b6112a6611fcb565b73ffffffffffffffffffffffffffffffffffffffff166112c46114d2565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613b95565b60405180910390fd5b6000611324610e9c565b9050600e548251826113369190613d3b565b1115611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613bf5565b60405180910390fd5b60005b82518110156113bb576113a88382815181106113995761139861409e565b5b602002602001015160016120d3565b80806113b390613f73565b91505061137a565b505050565b6113c8611fcb565b73ffffffffffffffffffffffffffffffffffffffff166113e66114d2565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613b95565b60405180910390fd5b8060138190555050565b61144e611fcb565b73ffffffffffffffffffffffffffffffffffffffff1661146c6114d2565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613b95565b60405180910390fd5b80600d8190555050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b611509611fcb565b73ffffffffffffffffffffffffffffffffffffffff166115276114d2565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613b95565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6060600480546115a990613f10565b80601f01602080910402602001604051908101604052809291908181526020018280546115d590613f10565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905090565b6000611636610e9c565b9050601060009054906101000a900460ff161561165257600080fd5b600e546001826116629190613d3b565b111561166d57600080fd5b600c5434101561167c57600080fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613bd5565b60405180910390fd5b60003360405160200161171c9190613a2a565b604051602081830303815290604052805190602001209050611782848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601354836128ff565b6117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613b55565b60405180910390fd5b6117cc3360016120d3565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b611832611fcb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611897576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006118a4611fcb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611951611fcb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119969190613add565b60405180910390a35050565b6119ad8484846120f6565b6119cc8373ffffffffffffffffffffffffffffffffffffffff16612916565b80156119e157506119df84848484612939565b155b15611a18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b8054611a2b90613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5790613f10565b8015611aa45780601f10611a7957610100808354040283529160200191611aa4565b820191906000526020600020905b815481529060010190602001808311611a8757829003601f168201915b505050505081565b611ab4611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611ad26114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613b95565b60405180910390fd5b80600c8190555050565b6060611b3d82611fd3565b611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390613bb5565b60405180910390fd5b601060019054906101000a900460ff16611c225760118054611b9d90613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc990613f10565b8015611c165780601f10611beb57610100808354040283529160200191611c16565b820191906000526020600020905b815481529060010190602001808311611bf957829003601f168201915b50505050509050611c7e565b6000611c2c612a99565b90506000815111611c4c5760405180602001604052806000815250611c7a565b80611c5684612b2b565b600b604051602001611c6a93929190613a45565b6040516020818303038152906040525b9150505b919050565b600e5481565b611c91611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611caf6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613b95565b60405180910390fd5b80600b9080519060200190611d1b929190613105565b5050565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ddb611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611df96114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613b95565b60405180910390fd5b8060119080519060200190611e65929190613105565b5050565b611e71611fcb565b73ffffffffffffffffffffffffffffffffffffffff16611e8f6114d2565b73ffffffffffffffffffffffffffffffffffffffff1614611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613b95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90613b35565b60405180910390fd5b611f5e8161283b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611fde6120f1565b11158015611fed575060015482105b801561201a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6120ed828260405180602001604052806000815250612c8c565b5050565b600090565b6000612101826125ac565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461216c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661218d611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614806121bc57506121bb856121b6611fcb565b611d3f565b5b8061220157506121ca611fcb565b73ffffffffffffffffffffffffffffffffffffffff166121e984610b44565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061223a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ae8585856001612c9e565b6122ba60008487612021565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561253a57600154821461253957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125a58585856001612ca4565b5050505050565b6125b461318b565b6000829050806125c26120f1565b111580156125d1575060015481105b15612804576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161280257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126e6578092505050612836565b5b60011561280157818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127fc578092505050612836565b6126e7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261290c8584612caa565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295f611fcb565b8786866040518563ffffffff1660e01b81526004016129819493929190613a91565b602060405180830381600087803b15801561299b57600080fd5b505af19250505080156129cc57506040513d601f19601f820116820180604052508101906129c9919061371d565b60015b612a46573d80600081146129fc576040519150601f19603f3d011682016040523d82523d6000602084013e612a01565b606091505b50600081511415612a3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612aa890613f10565b80601f0160208091040260200160405190810160405280929190818152602001828054612ad490613f10565b8015612b215780601f10612af657610100808354040283529160200191612b21565b820191906000526020600020905b815481529060010190602001808311612b0457829003601f168201915b5050505050905090565b60606000821415612b73576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c87565b600082905060005b60008214612ba5578080612b8e90613f73565b915050600a82612b9e9190613d91565b9150612b7b565b60008167ffffffffffffffff811115612bc157612bc06140cd565b5b6040519080825280601f01601f191660200182016040528015612bf35781602001600182028036833780820191505090505b5090505b60008514612c8057600182612c0c9190613e1c565b9150600a85612c1b9190613fe0565b6030612c279190613d3b565b60f81b818381518110612c3d57612c3c61409e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c799190613d91565b9450612bf7565b8093505050505b919050565b612c998383836001612d1f565b505050565b50505050565b50505050565b60008082905060005b8451811015612d14576000858281518110612cd157612cd061409e565b5b60200260200101519050808311612cf357612cec83826130ee565b9250612d00565b612cfd81846130ee565b92505b508080612d0c90613f73565b915050612cb3565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dc8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd56000868387612c9e565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f9f5750612f9e8773ffffffffffffffffffffffffffffffffffffffff16612916565b5b15613065575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130146000888480600101955088612939565b61304a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612fa557826001541461306057600080fd5b6130d1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613066575b8160018190555050506130e76000868387612ca4565b5050505050565b600082600052816020526040600020905092915050565b82805461311190613f10565b90600052602060002090601f016020900481019282613133576000855561317a565b82601f1061314c57805160ff191683800117855561317a565b8280016001018555821561317a579182015b8281111561317957825182559160200191906001019061315e565b5b50905061318791906131ce565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131e75760008160009055506001016131cf565b5090565b60006131fe6131f984613c55565b613c30565b9050808382526020820190508285602086028201111561322157613220614106565b5b60005b85811015613251578161323788826132df565b845260208401935060208301925050600181019050613224565b5050509392505050565b600061326e61326984613c81565b613c30565b90508281526020810184848401111561328a5761328961410b565b5b613295848285613ece565b509392505050565b60006132b06132ab84613cb2565b613c30565b9050828152602081018484840111156132cc576132cb61410b565b5b6132d7848285613ece565b509392505050565b6000813590506132ee816142a3565b92915050565b600082601f83011261330957613308614101565b5b81356133198482602086016131eb565b91505092915050565b60008083601f84011261333857613337614101565b5b8235905067ffffffffffffffff811115613355576133546140fc565b5b60208301915083602082028301111561337157613370614106565b5b9250929050565b600081359050613387816142ba565b92915050565b60008135905061339c816142d1565b92915050565b6000813590506133b1816142e8565b92915050565b6000815190506133c6816142e8565b92915050565b600082601f8301126133e1576133e0614101565b5b81356133f184826020860161325b565b91505092915050565b600082601f83011261340f5761340e614101565b5b813561341f84826020860161329d565b91505092915050565b600081359050613437816142ff565b92915050565b60006020828403121561345357613452614115565b5b6000613461848285016132df565b91505092915050565b6000806040838503121561348157613480614115565b5b600061348f858286016132df565b92505060206134a0858286016132df565b9150509250929050565b6000806000606084860312156134c3576134c2614115565b5b60006134d1868287016132df565b93505060206134e2868287016132df565b92505060406134f386828701613428565b9150509250925092565b6000806000806080858703121561351757613516614115565b5b6000613525878288016132df565b9450506020613536878288016132df565b935050604061354787828801613428565b925050606085013567ffffffffffffffff81111561356857613567614110565b5b613574878288016133cc565b91505092959194509250565b6000806040838503121561359757613596614115565b5b60006135a5858286016132df565b92505060206135b685828601613378565b9150509250929050565b600080604083850312156135d7576135d6614115565b5b60006135e5858286016132df565b92505060206135f685828601613428565b9150509250929050565b60006020828403121561361657613615614115565b5b600082013567ffffffffffffffff81111561363457613633614110565b5b613640848285016132f4565b91505092915050565b600080602083850312156136605761365f614115565b5b600083013567ffffffffffffffff81111561367e5761367d614110565b5b61368a85828601613322565b92509250509250929050565b6000602082840312156136ac576136ab614115565b5b60006136ba84828501613378565b91505092915050565b6000602082840312156136d9576136d8614115565b5b60006136e78482850161338d565b91505092915050565b60006020828403121561370657613705614115565b5b6000613714848285016133a2565b91505092915050565b60006020828403121561373357613732614115565b5b6000613741848285016133b7565b91505092915050565b6000602082840312156137605761375f614115565b5b600082013567ffffffffffffffff81111561377e5761377d614110565b5b61378a848285016133fa565b91505092915050565b6000602082840312156137a9576137a8614115565b5b60006137b784828501613428565b91505092915050565b6137c981613e50565b82525050565b6137e06137db82613e50565b613fbc565b82525050565b6137ef81613e62565b82525050565b6137fe81613e6e565b82525050565b600061380f82613cf8565b6138198185613d0e565b9350613829818560208601613edd565b6138328161411a565b840191505092915050565b600061384882613d03565b6138528185613d1f565b9350613862818560208601613edd565b61386b8161411a565b840191505092915050565b600061388182613d03565b61388b8185613d30565b935061389b818560208601613edd565b80840191505092915050565b600081546138b481613f10565b6138be8186613d30565b945060018216600081146138d957600181146138ea5761391d565b60ff1983168652818601935061391d565b6138f385613ce3565b60005b83811015613915578154818901526001820191506020810190506138f6565b838801955050505b50505092915050565b6000613933602683613d1f565b915061393e82614138565b604082019050919050565b6000613956600f83613d1f565b915061396182614187565b602082019050919050565b6000613979601783613d1f565b9150613984826141b0565b602082019050919050565b600061399c602083613d1f565b91506139a7826141d9565b602082019050919050565b60006139bf602f83613d1f565b91506139ca82614202565b604082019050919050565b60006139e2601383613d1f565b91506139ed82614251565b602082019050919050565b6000613a05601683613d1f565b9150613a108261427a565b602082019050919050565b613a2481613ec4565b82525050565b6000613a3682846137cf565b60148201915081905092915050565b6000613a518286613876565b9150613a5d8285613876565b9150613a6982846138a7565b9150819050949350505050565b6000602082019050613a8b60008301846137c0565b92915050565b6000608082019050613aa660008301876137c0565b613ab360208301866137c0565b613ac06040830185613a1b565b8181036060830152613ad28184613804565b905095945050505050565b6000602082019050613af260008301846137e6565b92915050565b6000602082019050613b0d60008301846137f5565b92915050565b60006020820190508181036000830152613b2d818461383d565b905092915050565b60006020820190508181036000830152613b4e81613926565b9050919050565b60006020820190508181036000830152613b6e81613949565b9050919050565b60006020820190508181036000830152613b8e8161396c565b9050919050565b60006020820190508181036000830152613bae8161398f565b9050919050565b60006020820190508181036000830152613bce816139b2565b9050919050565b60006020820190508181036000830152613bee816139d5565b9050919050565b60006020820190508181036000830152613c0e816139f8565b9050919050565b6000602082019050613c2a6000830184613a1b565b92915050565b6000613c3a613c4b565b9050613c468282613f42565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7057613c6f6140cd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c9c57613c9b6140cd565b5b613ca58261411a565b9050602081019050919050565b600067ffffffffffffffff821115613ccd57613ccc6140cd565b5b613cd68261411a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4682613ec4565b9150613d5183613ec4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8657613d85614011565b5b828201905092915050565b6000613d9c82613ec4565b9150613da783613ec4565b925082613db757613db6614040565b5b828204905092915050565b6000613dcd82613ec4565b9150613dd883613ec4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1157613e10614011565b5b828202905092915050565b6000613e2782613ec4565b9150613e3283613ec4565b925082821015613e4557613e44614011565b5b828203905092915050565b6000613e5b82613ea4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efb578082015181840152602081019050613ee0565b83811115613f0a576000848401525b50505050565b60006002820490506001821680613f2857607f821691505b60208210811415613f3c57613f3b61406f565b5b50919050565b613f4b8261411a565b810181811067ffffffffffffffff82111715613f6a57613f696140cd565b5b80604052505050565b6000613f7e82613ec4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb157613fb0614011565b5b600182019050919050565b6000613fc782613fce565b9050919050565b6000613fd98261412b565b9050919050565b6000613feb82613ec4565b9150613ff683613ec4565b92508261400657614005614040565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f6621210000000000000000000000000000000000600082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f416c7265616479206d696e746564204f6e636500000000000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6142ac81613e50565b81146142b757600080fd5b50565b6142c381613e62565b81146142ce57600080fd5b50565b6142da81613e6e565b81146142e557600080fd5b50565b6142f181613e78565b81146142fc57600080fd5b50565b61430881613ec4565b811461431357600080fd5b5056fea26469706673582212207c65a50cee39bf217b720c02e988ff0f9925eec14b8a32b2a9c15ad99bc195ca64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b44656661756c74204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066465664e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008746573747465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087465737474657374000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Default NFT
Arg [1] : _symbol (string): defNFT
Arg [2] : _initBaseURI (string): testtest
Arg [3] : _initNotRevealedUri (string): testtest
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 44656661756c74204e4654000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 6465664e46540000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 7465737474657374000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 7465737474657374000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
176:4935:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4437:355:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4878:79:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7632:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9232:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;632:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3995:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8795:371:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2337:249:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3686:303:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;507:33:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10220:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1900:399:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;723:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4965:143;;;;;;;;;;;;;:::i;:::-;;10461:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;597:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4607:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;565:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7440:125:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4856:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;2634:340:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4355:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4243:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;383:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;335:32:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3899:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7801:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1193:668:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9549:319:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10717:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;291:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4119:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3158:715;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;447:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4719:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;669:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9939:214:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4473:126:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4437:355:4;4584:4;4641:25;4626:40;;;:11;:40;;;;:105;;;;4698:33;4683:48;;;:11;:48;;;;4626:105;:158;;;;4748:36;4772:11;4748:23;:36::i;:::-;4626:158;4606:178;;4437:355;;;:::o;4878:79:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4943:6:2::1;4934;;:15;;;;;;;;;;;;;;;;;;4878:79:::0;:::o;7632:100:4:-;7686:13;7719:5;7712:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7632:100;:::o;9232:245::-;9336:7;9366:16;9374:7;9366;:16::i;:::-;9361:64;;9391:34;;;;;;;;;;;;;;9361:64;9445:15;:24;9461:7;9445:24;;;;;;;;;;;;;;;;;;;;;9438:31;;9232:245;;;:::o;632:28:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3995:116::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4089:14:2::1;4073:13;:30;;;;3995:116:::0;:::o;8795:371:4:-;8868:13;8884:24;8900:7;8884:15;:24::i;:::-;8868:40;;8929:5;8923:11;;:2;:11;;;8919:48;;;8943:24;;;;;;;;;;;;;;8919:48;9000:5;8984:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9010:37;9027:5;9034:12;:10;:12::i;:::-;9010:16;:37::i;:::-;9009:38;8984:63;8980:138;;;9071:35;;;;;;;;;;;;;;8980:138;9130:28;9139:2;9143:7;9152:5;9130:8;:28::i;:::-;8857:309;8795:371;;:::o;2337:249:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2415:14:2::1;2432:13;:11;:13::i;:::-;2415:30;;2478:1;2464:11;:15;2456:24;;;::::0;::::1;;2523:9;;2508:11;2499:6;:20;;;;:::i;:::-;:33;;2491:42;;;::::0;::::1;;2544:34;2554:10;2566:11;2544:9;:34::i;:::-;2404:182;2337:249:::0;:::o;3686:303:4:-;3730:7;3955:15;:13;:15::i;:::-;3940:12;;3924:13;;:28;:46;3917:53;;3686:303;:::o;507:33:2:-;;;;:::o;10220:170:4:-;10354:28;10364:4;10370:2;10374:7;10354:9;:28::i;:::-;10220:170;;;:::o;1900:399:2:-;1967:14;1984:13;:11;:13::i;:::-;1967:30;;2017:6;;;;;;;;;;;2016:7;2008:16;;;;;;2057:1;2043:11;:15;2035:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2120:13;;2105:11;:28;;2097:37;;;;;;2177:9;;2162:11;2153:6;:20;;;;:::i;:::-;:33;;2145:42;;;;;;2232:11;2219:10;;:24;;;;:::i;:::-;2206:9;:37;;2198:46;;;;;;2257:34;2267:10;2279:11;2257:9;:34::i;:::-;1956:343;1900:399;:::o;723:103::-;;;;:::o;4965:143::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5013:15:2::1;5031:21;5013:39;;5071:10;5063:28;;:37;5092:7;5063:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5002:106;4965:143::o:0;10461:185:4:-;10599:39;10616:4;10622:2;10626:7;10599:39;;;;;;;;;;;;:16;:39::i;:::-;10461:185;;;:::o;597:28:2:-;;;;;;;;;;;;;:::o;4607:104::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4692:11:2::1;4682:7;:21;;;;;;;;;;;;:::i;:::-;;4607:104:::0;:::o;565:25::-;;;;;;;;;;;;;:::o;7440:125:4:-;7504:7;7531:21;7544:7;7531:12;:21::i;:::-;:26;;;7524:33;;7440:125;;;:::o;4856:206::-;4920:7;4961:1;4944:19;;:5;:19;;;4940:60;;;4972:28;;;;;;;;;;;;;;4940:60;5026:12;:19;5039:5;5026:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5018:36;;5011:43;;4856:206;;;:::o;1714:103:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2634:340:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2708:14:2::1;2725:13;:11;:13::i;:::-;2708:30;;2799:9;;2780:8;:15;2771:6;:24;;;;:::i;:::-;:37;;2749:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;2874:9;2869:98;2893:8;:15;2889:1;:19;2869:98;;;2930:25;2940:8;2949:1;2940:11;;;;;;;;:::i;:::-;;;;;;;;2953:1;2930:9;:25::i;:::-;2910:3;;;;;:::i;:::-;;;;2869:98;;;;2697:277;2634:340:::0;:::o;4355:110::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4443:14:2::1;4430:10;:27;;;;4355:110:::0;:::o;4243:104::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4328:11:2::1;4315:10;:24;;;;4243:104:::0;:::o;383:44::-;;;;:::o;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;335:32:2:-;;;;:::o;3899:88::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3970:9:2::1;3959:8;;:20;;;;;;;;;;;;;;;;;;3899:88:::0;:::o;7801:104:4:-;7857:13;7890:7;7883:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7801:104;:::o;1193:668:2:-;1275:14;1292:13;:11;:13::i;:::-;1275:30;;1325:6;;;;;;;;;;;1324:7;1316:16;;;;;;1365:9;;1360:1;1351:6;:10;;;;:::i;:::-;:23;;1343:32;;;;;;1407:13;;1394:9;:26;;1386:35;;;;;;1441:13;:25;1455:10;1441:25;;;;;;;;;;;;;;;;;;;;;;;;;1440:26;1432:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1595:12;1637:10;1620:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1610:39;;;;;;1595:54;;1682:50;1701:12;;1682:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1715:10;;1727:4;1682:18;:50::i;:::-;1660:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;1786:24;1796:10;1808:1;1786:9;:24::i;:::-;1849:4;1821:13;:25;1835:10;1821:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;1264:597;;1193:668;;:::o;9549:319:4:-;9692:12;:10;:12::i;:::-;9680:24;;:8;:24;;;9676:54;;;9713:17;;;;;;;;;;;;;;9676:54;9788:8;9743:18;:32;9762:12;:10;:12::i;:::-;9743:32;;;;;;;;;;;;;;;:42;9776:8;9743:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9841:8;9812:48;;9827:12;:10;:12::i;:::-;9812:48;;;9851:8;9812:48;;;;;;:::i;:::-;;;;;;;;9549:319;;:::o;10717:406::-;10884:28;10894:4;10900:2;10904:7;10884:9;:28::i;:::-;10941:15;:2;:13;;;:15::i;:::-;:89;;;;;10974:56;11005:4;11011:2;11015:7;11024:5;10974:30;:56::i;:::-;10973:57;10941:89;10923:193;;;11064:40;;;;;;;;;;;;;;10923:193;10717:406;;;;:::o;291:37:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4119:116::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4213:14:2::1;4197:13;:30;;;;4119:116:::0;:::o;3158:715::-;3276:13;3329:16;3337:7;3329;:16::i;:::-;3307:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;3438:8;;;;;;;;;;;3433:63;;3470:14;3463:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3433:63;3506:28;3537:10;:8;:10::i;:::-;3506:41;;3609:1;3584:14;3578:28;:32;:287;;;;;;;;;;;;;;;;;3702:14;3743:18;:7;:16;:18::i;:::-;3788:13;3659:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3578:287;3558:307;;;3158:715;;;;:::o;447:31::-;;;;:::o;4719:151::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4845:17:2::1;4829:13;:33;;;;;;;;;;;;:::i;:::-;;4719:151:::0;:::o;669:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;9939:214:4:-;10081:4;10110:18;:25;10129:5;10110:25;;;;;;;;;;;;;;;:35;10136:8;10110:35;;;;;;;;;;;;;;;;;;;;;;;;;10103:42;;9939:214;;;;:::o;4473:126:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4576:15:2::1;4559:14;:32;;;;;;;;;;;;:::i;:::-;;4473:126:::0;:::o;1972:201:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;854:157:3:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;11378:213:4:-;11435:4;11491:7;11472:15;:13;:15::i;:::-;:26;;:66;;;;;11525:13;;11515:7;:23;11472:66;:111;;;;;11556:11;:20;11568:7;11556:20;;;;;;;;;;;:27;;;;;;;;;;;;11555:28;11472:111;11452:131;;11378:213;;;:::o;19765:196::-;19907:2;19880:15;:24;19896:7;19880:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19945:7;19941:2;19925:28;;19934:5;19925:28;;;;;;;;;;;;19765:196;;;:::o;11599:104::-;11668:27;11678:2;11682:8;11668:27;;;;;;;;;;;;:9;:27::i;:::-;11599:104;;:::o;3460:92::-;3516:7;3460:92;:::o;14708:2130::-;14823:35;14861:21;14874:7;14861:12;:21::i;:::-;14823:59;;14921:4;14899:26;;:13;:18;;;:26;;;14895:67;;14934:28;;;;;;;;;;;;;;14895:67;14975:22;15017:4;15001:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;15038:36;15055:4;15061:12;:10;:12::i;:::-;15038:16;:36::i;:::-;15001:73;:126;;;;15115:12;:10;:12::i;:::-;15091:36;;:20;15103:7;15091:11;:20::i;:::-;:36;;;15001:126;14975:153;;15146:17;15141:66;;15172:35;;;;;;;;;;;;;;15141:66;15236:1;15222:16;;:2;:16;;;15218:52;;;15247:23;;;;;;;;;;;;;;15218:52;15283:43;15305:4;15311:2;15315:7;15324:1;15283:21;:43::i;:::-;15391:35;15408:1;15412:7;15421:4;15391:8;:35::i;:::-;15752:1;15722:12;:18;15735:4;15722:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15796:1;15768:12;:16;15781:2;15768:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15814:31;15848:11;:20;15860:7;15848:20;;;;;;;;;;;15814:54;;15899:2;15883:8;:13;;;:18;;;;;;;;;;;;;;;;;;15949:15;15916:8;:23;;;:49;;;;;;;;;;;;;;;;;;16217:19;16249:1;16239:7;:11;16217:33;;16265:31;16299:11;:24;16311:11;16299:24;;;;;;;;;;;16265:58;;16367:1;16342:27;;:8;:13;;;;;;;;;;;;:27;;;16338:384;;;16552:13;;16537:11;:28;16533:174;;16606:4;16590:8;:13;;;:20;;;;;;;;;;;;;;;;;;16659:13;:28;;;16633:8;:23;;;:54;;;;;;;;;;;;;;;;;;16533:174;16338:384;15697:1036;;;16769:7;16765:2;16750:27;;16759:4;16750:27;;;;;;;;;;;;16788:42;16809:4;16815:2;16819:7;16828:1;16788:20;:42::i;:::-;14812:2026;;14708:2130;;;:::o;6237:1141::-;6326:21;;:::i;:::-;6365:12;6380:7;6365:22;;6448:4;6429:15;:13;:15::i;:::-;:23;;:47;;;;;6463:13;;6456:4;:20;6429:47;6425:886;;;6497:31;6531:11;:17;6543:4;6531:17;;;;;;;;;;;6497:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6572:9;:16;;;6567:729;;6643:1;6617:28;;:9;:14;;;:28;;;6613:101;;6681:9;6674:16;;;;;;6613:101;7016:261;7023:4;7016:261;;;7056:6;;;;;;;;7101:11;:17;7113:4;7101:17;;;;;;;;;;;7089:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7175:1;7149:28;;:9;:14;;;:28;;;7145:109;;7217:9;7210:16;;;;;;7145:109;7016:261;;;6567:729;6478:833;6425:886;7339:31;;;;;;;;;;;;;;6237:1141;;;;:::o;2333:191:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;1180:190:9:-;1305:4;1358;1329:25;1342:5;1349:4;1329:12;:25::i;:::-;:33;1322:40;;1180:190;;;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;20453:772:4:-;20616:4;20666:2;20650:36;;;20705:12;:10;:12::i;:::-;20736:4;20759:7;20785:5;20650:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20633:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20993:1;20976:6;:13;:18;20972:235;;;21022:40;;;;;;;;;;;;;;20972:235;21165:6;21159:13;21150:6;21146:2;21142:15;21135:38;20633:585;20871:45;;;20861:55;;;:6;:55;;;;20854:62;;;20453:772;;;;;;:::o;2999:108:2:-;3059:13;3092:7;3085:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2999:108;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;12066:163:4:-;12189:32;12195:2;12199:8;12209:5;12216:4;12189:5;:32::i;:::-;12066:163;;;:::o;21873:159::-;;;;;:::o;22691:158::-;;;;;:::o;1731:675:9:-;1814:7;1834:20;1857:4;1834:27;;1877:9;1872:497;1896:5;:12;1892:1;:16;1872:497;;;1930:20;1953:5;1959:1;1953:8;;;;;;;;:::i;:::-;;;;;;;;1930:31;;1996:12;1980;:28;1976:382;;2123:42;2138:12;2152;2123:14;:42::i;:::-;2108:57;;1976:382;;;2300:42;2315:12;2329;2300:14;:42::i;:::-;2285:57;;1976:382;1915:454;1910:3;;;;;:::i;:::-;;;;1872:497;;;;2386:12;2379:19;;;1731:675;;;;:::o;12488:1966:4:-;12627:20;12650:13;;12627:36;;12692:1;12678:16;;:2;:16;;;12674:48;;;12703:19;;;;;;;;;;;;;;12674:48;12749:1;12737:8;:13;12733:44;;;12759:18;;;;;;;;;;;;;;12733:44;12790:61;12820:1;12824:2;12828:12;12842:8;12790:21;:61::i;:::-;13163:8;13128:12;:16;13141:2;13128:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13227:8;13187:12;:16;13200:2;13187:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13286:2;13253:11;:25;13265:12;13253:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13353:15;13303:11;:25;13315:12;13303:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13386:20;13409:12;13386:35;;13436:11;13465:8;13450:12;:23;13436:37;;13494:4;:23;;;;;13502:15;:2;:13;;;:15::i;:::-;13494:23;13490:832;;;13538:505;13594:12;13590:2;13569:38;;13586:1;13569:38;;;;;;;;;;;;13661:212;13730:1;13763:2;13796:14;;;;;;13841:5;13661:30;:212::i;:::-;13630:365;;13931:40;;;;;;;;;;;;;;13630:365;14038:3;14022:12;:19;;13538:505;;14124:12;14107:13;;:29;14103:43;;14138:8;;;14103:43;13490:832;;;14187:120;14243:14;;;;;;14239:2;14218:40;;14235:1;14218:40;;;;;;;;;;;;14302:3;14286:12;:19;;14187:120;;13490:832;14352:12;14336:13;:28;;;;13103:1273;;14386:60;14415:1;14419:2;14423:12;14437:8;14386:20;:60::i;:::-;12616:1838;12488:1966;;;;:::o;2414:224:9:-;2482:13;2545:1;2539:4;2532:15;2574:1;2568:4;2561:15;2615:4;2609;2599:21;2590:30;;2414:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:13:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2141:568::-;2214:8;2224:6;2274:3;2267:4;2259:6;2255:17;2251:27;2241:122;;2282:79;;:::i;:::-;2241:122;2395:6;2382:20;2372:30;;2425:18;2417:6;2414:30;2411:117;;;2447:79;;:::i;:::-;2411:117;2561:4;2553:6;2549:17;2537:29;;2615:3;2607:4;2599:6;2595:17;2585:8;2581:32;2578:41;2575:128;;;2622:79;;:::i;:::-;2575:128;2141:568;;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:329::-;4210:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:119;;;4265:79;;:::i;:::-;4227:119;4385:1;4410:53;4455:7;4446:6;4435:9;4431:22;4410:53;:::i;:::-;4400:63;;4356:117;4151:329;;;;:::o;4486:474::-;4554:6;4562;4611:2;4599:9;4590:7;4586:23;4582:32;4579:119;;;4617:79;;:::i;:::-;4579:119;4737:1;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4708:117;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;4486:474;;;;;:::o;4966:619::-;5043:6;5051;5059;5108:2;5096:9;5087:7;5083:23;5079:32;5076:119;;;5114:79;;:::i;:::-;5076:119;5234:1;5259:53;5304:7;5295:6;5284:9;5280:22;5259:53;:::i;:::-;5249:63;;5205:117;5361:2;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5332:118;5489:2;5515:53;5560:7;5551:6;5540:9;5536:22;5515:53;:::i;:::-;5505:63;;5460:118;4966:619;;;;;:::o;5591:943::-;5686:6;5694;5702;5710;5759:3;5747:9;5738:7;5734:23;5730:33;5727:120;;;5766:79;;:::i;:::-;5727:120;5886:1;5911:53;5956:7;5947:6;5936:9;5932:22;5911:53;:::i;:::-;5901:63;;5857:117;6013:2;6039:53;6084:7;6075:6;6064:9;6060:22;6039:53;:::i;:::-;6029:63;;5984:118;6141:2;6167:53;6212:7;6203:6;6192:9;6188:22;6167:53;:::i;:::-;6157:63;;6112:118;6297:2;6286:9;6282:18;6269:32;6328:18;6320:6;6317:30;6314:117;;;6350:79;;:::i;:::-;6314:117;6455:62;6509:7;6500:6;6489:9;6485:22;6455:62;:::i;:::-;6445:72;;6240:287;5591:943;;;;;;;:::o;6540:468::-;6605:6;6613;6662:2;6650:9;6641:7;6637:23;6633:32;6630:119;;;6668:79;;:::i;:::-;6630:119;6788:1;6813:53;6858:7;6849:6;6838:9;6834:22;6813:53;:::i;:::-;6803:63;;6759:117;6915:2;6941:50;6983:7;6974:6;6963:9;6959:22;6941:50;:::i;:::-;6931:60;;6886:115;6540:468;;;;;:::o;7014:474::-;7082:6;7090;7139:2;7127:9;7118:7;7114:23;7110:32;7107:119;;;7145:79;;:::i;:::-;7107:119;7265:1;7290:53;7335:7;7326:6;7315:9;7311:22;7290:53;:::i;:::-;7280:63;;7236:117;7392:2;7418:53;7463:7;7454:6;7443:9;7439:22;7418:53;:::i;:::-;7408:63;;7363:118;7014:474;;;;;:::o;7494:539::-;7578:6;7627:2;7615:9;7606:7;7602:23;7598:32;7595:119;;;7633:79;;:::i;:::-;7595:119;7781:1;7770:9;7766:17;7753:31;7811:18;7803:6;7800:30;7797:117;;;7833:79;;:::i;:::-;7797:117;7938:78;8008:7;7999:6;7988:9;7984:22;7938:78;:::i;:::-;7928:88;;7724:302;7494:539;;;;:::o;8039:559::-;8125:6;8133;8182:2;8170:9;8161:7;8157:23;8153:32;8150:119;;;8188:79;;:::i;:::-;8150:119;8336:1;8325:9;8321:17;8308:31;8366:18;8358:6;8355:30;8352:117;;;8388:79;;:::i;:::-;8352:117;8501:80;8573:7;8564:6;8553:9;8549:22;8501:80;:::i;:::-;8483:98;;;;8279:312;8039:559;;;;;:::o;8604:323::-;8660:6;8709:2;8697:9;8688:7;8684:23;8680:32;8677:119;;;8715:79;;:::i;:::-;8677:119;8835:1;8860:50;8902:7;8893:6;8882:9;8878:22;8860:50;:::i;:::-;8850:60;;8806:114;8604:323;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:327::-;9326:6;9375:2;9363:9;9354:7;9350:23;9346:32;9343:119;;;9381:79;;:::i;:::-;9343:119;9501:1;9526:52;9570:7;9561:6;9550:9;9546:22;9526:52;:::i;:::-;9516:62;;9472:116;9268:327;;;;:::o;9601:349::-;9670:6;9719:2;9707:9;9698:7;9694:23;9690:32;9687:119;;;9725:79;;:::i;:::-;9687:119;9845:1;9870:63;9925:7;9916:6;9905:9;9901:22;9870:63;:::i;:::-;9860:73;;9816:127;9601:349;;;;:::o;9956:509::-;10025:6;10074:2;10062:9;10053:7;10049:23;10045:32;10042:119;;;10080:79;;:::i;:::-;10042:119;10228:1;10217:9;10213:17;10200:31;10258:18;10250:6;10247:30;10244:117;;;10280:79;;:::i;:::-;10244:117;10385:63;10440:7;10431:6;10420:9;10416:22;10385:63;:::i;:::-;10375:73;;10171:287;9956:509;;;;:::o;10471:329::-;10530:6;10579:2;10567:9;10558:7;10554:23;10550:32;10547:119;;;10585:79;;:::i;:::-;10547:119;10705:1;10730:53;10775:7;10766:6;10755:9;10751:22;10730:53;:::i;:::-;10720:63;;10676:117;10471:329;;;;:::o;10806:118::-;10893:24;10911:5;10893:24;:::i;:::-;10888:3;10881:37;10806:118;;:::o;10930:157::-;11035:45;11055:24;11073:5;11055:24;:::i;:::-;11035:45;:::i;:::-;11030:3;11023:58;10930:157;;:::o;11093:109::-;11174:21;11189:5;11174:21;:::i;:::-;11169:3;11162:34;11093:109;;:::o;11208:118::-;11295:24;11313:5;11295:24;:::i;:::-;11290:3;11283:37;11208:118;;:::o;11332:360::-;11418:3;11446:38;11478:5;11446:38;:::i;:::-;11500:70;11563:6;11558:3;11500:70;:::i;:::-;11493:77;;11579:52;11624:6;11619:3;11612:4;11605:5;11601:16;11579:52;:::i;:::-;11656:29;11678:6;11656:29;:::i;:::-;11651:3;11647:39;11640:46;;11422:270;11332:360;;;;:::o;11698:364::-;11786:3;11814:39;11847:5;11814:39;:::i;:::-;11869:71;11933:6;11928:3;11869:71;:::i;:::-;11862:78;;11949:52;11994:6;11989:3;11982:4;11975:5;11971:16;11949:52;:::i;:::-;12026:29;12048:6;12026:29;:::i;:::-;12021:3;12017:39;12010:46;;11790:272;11698:364;;;;:::o;12068:377::-;12174:3;12202:39;12235:5;12202:39;:::i;:::-;12257:89;12339:6;12334:3;12257:89;:::i;:::-;12250:96;;12355:52;12400:6;12395:3;12388:4;12381:5;12377:16;12355:52;:::i;:::-;12432:6;12427:3;12423:16;12416:23;;12178:267;12068:377;;;;:::o;12475:845::-;12578:3;12615:5;12609:12;12644:36;12670:9;12644:36;:::i;:::-;12696:89;12778:6;12773:3;12696:89;:::i;:::-;12689:96;;12816:1;12805:9;12801:17;12832:1;12827:137;;;;12978:1;12973:341;;;;12794:520;;12827:137;12911:4;12907:9;12896;12892:25;12887:3;12880:38;12947:6;12942:3;12938:16;12931:23;;12827:137;;12973:341;13040:38;13072:5;13040:38;:::i;:::-;13100:1;13114:154;13128:6;13125:1;13122:13;13114:154;;;13202:7;13196:14;13192:1;13187:3;13183:11;13176:35;13252:1;13243:7;13239:15;13228:26;;13150:4;13147:1;13143:12;13138:17;;13114:154;;;13297:6;13292:3;13288:16;13281:23;;12980:334;;12794:520;;12582:738;;12475:845;;;;:::o;13326:366::-;13468:3;13489:67;13553:2;13548:3;13489:67;:::i;:::-;13482:74;;13565:93;13654:3;13565:93;:::i;:::-;13683:2;13678:3;13674:12;13667:19;;13326:366;;;:::o;13698:::-;13840:3;13861:67;13925:2;13920:3;13861:67;:::i;:::-;13854:74;;13937:93;14026:3;13937:93;:::i;:::-;14055:2;14050:3;14046:12;14039:19;;13698:366;;;:::o;14070:::-;14212:3;14233:67;14297:2;14292:3;14233:67;:::i;:::-;14226:74;;14309:93;14398:3;14309:93;:::i;:::-;14427:2;14422:3;14418:12;14411:19;;14070:366;;;:::o;14442:::-;14584:3;14605:67;14669:2;14664:3;14605:67;:::i;:::-;14598:74;;14681:93;14770:3;14681:93;:::i;:::-;14799:2;14794:3;14790:12;14783:19;;14442:366;;;:::o;14814:::-;14956:3;14977:67;15041:2;15036:3;14977:67;:::i;:::-;14970:74;;15053:93;15142:3;15053:93;:::i;:::-;15171:2;15166:3;15162:12;15155:19;;14814:366;;;:::o;15186:::-;15328:3;15349:67;15413:2;15408:3;15349:67;:::i;:::-;15342:74;;15425:93;15514:3;15425:93;:::i;:::-;15543:2;15538:3;15534:12;15527:19;;15186:366;;;:::o;15558:::-;15700:3;15721:67;15785:2;15780:3;15721:67;:::i;:::-;15714:74;;15797:93;15886:3;15797:93;:::i;:::-;15915:2;15910:3;15906:12;15899:19;;15558:366;;;:::o;15930:118::-;16017:24;16035:5;16017:24;:::i;:::-;16012:3;16005:37;15930:118;;:::o;16054:256::-;16166:3;16181:75;16252:3;16243:6;16181:75;:::i;:::-;16281:2;16276:3;16272:12;16265:19;;16301:3;16294:10;;16054:256;;;;:::o;16316:589::-;16541:3;16563:95;16654:3;16645:6;16563:95;:::i;:::-;16556:102;;16675:95;16766:3;16757:6;16675:95;:::i;:::-;16668:102;;16787:92;16875:3;16866:6;16787:92;:::i;:::-;16780:99;;16896:3;16889:10;;16316:589;;;;;;:::o;16911:222::-;17004:4;17042:2;17031:9;17027:18;17019:26;;17055:71;17123:1;17112:9;17108:17;17099:6;17055:71;:::i;:::-;16911:222;;;;:::o;17139:640::-;17334:4;17372:3;17361:9;17357:19;17349:27;;17386:71;17454:1;17443:9;17439:17;17430:6;17386:71;:::i;:::-;17467:72;17535:2;17524:9;17520:18;17511:6;17467:72;:::i;:::-;17549;17617:2;17606:9;17602:18;17593:6;17549:72;:::i;:::-;17668:9;17662:4;17658:20;17653:2;17642:9;17638:18;17631:48;17696:76;17767:4;17758:6;17696:76;:::i;:::-;17688:84;;17139:640;;;;;;;:::o;17785:210::-;17872:4;17910:2;17899:9;17895:18;17887:26;;17923:65;17985:1;17974:9;17970:17;17961:6;17923:65;:::i;:::-;17785:210;;;;:::o;18001:222::-;18094:4;18132:2;18121:9;18117:18;18109:26;;18145:71;18213:1;18202:9;18198:17;18189:6;18145:71;:::i;:::-;18001:222;;;;:::o;18229:313::-;18342:4;18380:2;18369:9;18365:18;18357:26;;18429:9;18423:4;18419:20;18415:1;18404:9;18400:17;18393:47;18457:78;18530:4;18521:6;18457:78;:::i;:::-;18449:86;;18229:313;;;;:::o;18548:419::-;18714:4;18752:2;18741:9;18737:18;18729:26;;18801:9;18795:4;18791:20;18787:1;18776:9;18772:17;18765:47;18829:131;18955:4;18829:131;:::i;:::-;18821:139;;18548:419;;;:::o;18973:::-;19139:4;19177:2;19166:9;19162:18;19154:26;;19226:9;19220:4;19216:20;19212:1;19201:9;19197:17;19190:47;19254:131;19380:4;19254:131;:::i;:::-;19246:139;;18973:419;;;:::o;19398:::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19679:131;19805:4;19679:131;:::i;:::-;19671:139;;19398:419;;;:::o;19823:::-;19989:4;20027:2;20016:9;20012:18;20004:26;;20076:9;20070:4;20066:20;20062:1;20051:9;20047:17;20040:47;20104:131;20230:4;20104:131;:::i;:::-;20096:139;;19823:419;;;:::o;20248:::-;20414:4;20452:2;20441:9;20437:18;20429:26;;20501:9;20495:4;20491:20;20487:1;20476:9;20472:17;20465:47;20529:131;20655:4;20529:131;:::i;:::-;20521:139;;20248:419;;;:::o;20673:::-;20839:4;20877:2;20866:9;20862:18;20854:26;;20926:9;20920:4;20916:20;20912:1;20901:9;20897:17;20890:47;20954:131;21080:4;20954:131;:::i;:::-;20946:139;;20673:419;;;:::o;21098:::-;21264:4;21302:2;21291:9;21287:18;21279:26;;21351:9;21345:4;21341:20;21337:1;21326:9;21322:17;21315:47;21379:131;21505:4;21379:131;:::i;:::-;21371:139;;21098:419;;;:::o;21523:222::-;21616:4;21654:2;21643:9;21639:18;21631:26;;21667:71;21735:1;21724:9;21720:17;21711:6;21667:71;:::i;:::-;21523:222;;;;:::o;21751:129::-;21785:6;21812:20;;:::i;:::-;21802:30;;21841:33;21869:4;21861:6;21841:33;:::i;:::-;21751:129;;;:::o;21886:75::-;21919:6;21952:2;21946:9;21936:19;;21886:75;:::o;21967:311::-;22044:4;22134:18;22126:6;22123:30;22120:56;;;22156:18;;:::i;:::-;22120:56;22206:4;22198:6;22194:17;22186:25;;22266:4;22260;22256:15;22248:23;;21967:311;;;:::o;22284:307::-;22345:4;22435:18;22427:6;22424:30;22421:56;;;22457:18;;:::i;:::-;22421:56;22495:29;22517:6;22495:29;:::i;:::-;22487:37;;22579:4;22573;22569:15;22561:23;;22284:307;;;:::o;22597:308::-;22659:4;22749:18;22741:6;22738:30;22735:56;;;22771:18;;:::i;:::-;22735:56;22809:29;22831:6;22809:29;:::i;:::-;22801:37;;22893:4;22887;22883:15;22875:23;;22597:308;;;:::o;22911:141::-;22960:4;22983:3;22975:11;;23006:3;23003:1;22996:14;23040:4;23037:1;23027:18;23019:26;;22911:141;;;:::o;23058:98::-;23109:6;23143:5;23137:12;23127:22;;23058:98;;;:::o;23162:99::-;23214:6;23248:5;23242:12;23232:22;;23162:99;;;:::o;23267:168::-;23350:11;23384:6;23379:3;23372:19;23424:4;23419:3;23415:14;23400:29;;23267:168;;;;:::o;23441:169::-;23525:11;23559:6;23554:3;23547:19;23599:4;23594:3;23590:14;23575:29;;23441:169;;;;:::o;23616:148::-;23718:11;23755:3;23740:18;;23616:148;;;;:::o;23770:305::-;23810:3;23829:20;23847:1;23829:20;:::i;:::-;23824:25;;23863:20;23881:1;23863:20;:::i;:::-;23858:25;;24017:1;23949:66;23945:74;23942:1;23939:81;23936:107;;;24023:18;;:::i;:::-;23936:107;24067:1;24064;24060:9;24053:16;;23770:305;;;;:::o;24081:185::-;24121:1;24138:20;24156:1;24138:20;:::i;:::-;24133:25;;24172:20;24190:1;24172:20;:::i;:::-;24167:25;;24211:1;24201:35;;24216:18;;:::i;:::-;24201:35;24258:1;24255;24251:9;24246:14;;24081:185;;;;:::o;24272:348::-;24312:7;24335:20;24353:1;24335:20;:::i;:::-;24330:25;;24369:20;24387:1;24369:20;:::i;:::-;24364:25;;24557:1;24489:66;24485:74;24482:1;24479:81;24474:1;24467:9;24460:17;24456:105;24453:131;;;24564:18;;:::i;:::-;24453:131;24612:1;24609;24605:9;24594:20;;24272:348;;;;:::o;24626:191::-;24666:4;24686:20;24704:1;24686:20;:::i;:::-;24681:25;;24720:20;24738:1;24720:20;:::i;:::-;24715:25;;24759:1;24756;24753:8;24750:34;;;24764:18;;:::i;:::-;24750:34;24809:1;24806;24802:9;24794:17;;24626:191;;;;:::o;24823:96::-;24860:7;24889:24;24907:5;24889:24;:::i;:::-;24878:35;;24823:96;;;:::o;24925:90::-;24959:7;25002:5;24995:13;24988:21;24977:32;;24925:90;;;:::o;25021:77::-;25058:7;25087:5;25076:16;;25021:77;;;:::o;25104:149::-;25140:7;25180:66;25173:5;25169:78;25158:89;;25104:149;;;:::o;25259:126::-;25296:7;25336:42;25329:5;25325:54;25314:65;;25259:126;;;:::o;25391:77::-;25428:7;25457:5;25446:16;;25391:77;;;:::o;25474:154::-;25558:6;25553:3;25548;25535:30;25620:1;25611:6;25606:3;25602:16;25595:27;25474:154;;;:::o;25634:307::-;25702:1;25712:113;25726:6;25723:1;25720:13;25712:113;;;25811:1;25806:3;25802:11;25796:18;25792:1;25787:3;25783:11;25776:39;25748:2;25745:1;25741:10;25736:15;;25712:113;;;25843:6;25840:1;25837:13;25834:101;;;25923:1;25914:6;25909:3;25905:16;25898:27;25834:101;25683:258;25634:307;;;:::o;25947:320::-;25991:6;26028:1;26022:4;26018:12;26008:22;;26075:1;26069:4;26065:12;26096:18;26086:81;;26152:4;26144:6;26140:17;26130:27;;26086:81;26214:2;26206:6;26203:14;26183:18;26180:38;26177:84;;;26233:18;;:::i;:::-;26177:84;25998:269;25947:320;;;:::o;26273:281::-;26356:27;26378:4;26356:27;:::i;:::-;26348:6;26344:40;26486:6;26474:10;26471:22;26450:18;26438:10;26435:34;26432:62;26429:88;;;26497:18;;:::i;:::-;26429:88;26537:10;26533:2;26526:22;26316:238;26273:281;;:::o;26560:233::-;26599:3;26622:24;26640:5;26622:24;:::i;:::-;26613:33;;26668:66;26661:5;26658:77;26655:103;;;26738:18;;:::i;:::-;26655:103;26785:1;26778:5;26774:13;26767:20;;26560:233;;;:::o;26799:100::-;26838:7;26867:26;26887:5;26867:26;:::i;:::-;26856:37;;26799:100;;;:::o;26905:94::-;26944:7;26973:20;26987:5;26973:20;:::i;:::-;26962:31;;26905:94;;;:::o;27005:176::-;27037:1;27054:20;27072:1;27054:20;:::i;:::-;27049:25;;27088:20;27106:1;27088:20;:::i;:::-;27083:25;;27127:1;27117:35;;27132:18;;:::i;:::-;27117:35;27173:1;27170;27166:9;27161:14;;27005:176;;;;:::o;27187:180::-;27235:77;27232:1;27225:88;27332:4;27329:1;27322:15;27356:4;27353:1;27346:15;27373:180;27421:77;27418:1;27411:88;27518:4;27515:1;27508:15;27542:4;27539:1;27532:15;27559:180;27607:77;27604:1;27597:88;27704:4;27701:1;27694:15;27728:4;27725:1;27718:15;27745:180;27793:77;27790:1;27783:88;27890:4;27887:1;27880:15;27914:4;27911:1;27904:15;27931:180;27979:77;27976:1;27969:88;28076:4;28073:1;28066:15;28100:4;28097:1;28090:15;28117:117;28226:1;28223;28216:12;28240:117;28349:1;28346;28339:12;28363:117;28472:1;28469;28462:12;28486:117;28595:1;28592;28585:12;28609:117;28718:1;28715;28708:12;28732:117;28841:1;28838;28831:12;28855:102;28896:6;28947:2;28943:7;28938:2;28931:5;28927:14;28923:28;28913:38;;28855:102;;;:::o;28963:94::-;28996:8;29044:5;29040:2;29036:14;29015:35;;28963:94;;;:::o;29063:225::-;29203:34;29199:1;29191:6;29187:14;29180:58;29272:8;29267:2;29259:6;29255:15;29248:33;29063:225;:::o;29294:165::-;29434:17;29430:1;29422:6;29418:14;29411:41;29294:165;:::o;29465:173::-;29605:25;29601:1;29593:6;29589:14;29582:49;29465:173;:::o;29644:182::-;29784:34;29780:1;29772:6;29768:14;29761:58;29644:182;:::o;29832:234::-;29972:34;29968:1;29960:6;29956:14;29949:58;30041:17;30036:2;30028:6;30024:15;30017:42;29832:234;:::o;30072:169::-;30212:21;30208:1;30200:6;30196:14;30189:45;30072:169;:::o;30247:172::-;30387:24;30383:1;30375:6;30371:14;30364:48;30247:172;:::o;30425:122::-;30498:24;30516:5;30498:24;:::i;:::-;30491:5;30488:35;30478:63;;30537:1;30534;30527:12;30478:63;30425:122;:::o;30553:116::-;30623:21;30638:5;30623:21;:::i;:::-;30616:5;30613:32;30603:60;;30659:1;30656;30649:12;30603:60;30553:116;:::o;30675:122::-;30748:24;30766:5;30748:24;:::i;:::-;30741:5;30738:35;30728:63;;30787:1;30784;30777:12;30728:63;30675:122;:::o;30803:120::-;30875:23;30892:5;30875:23;:::i;:::-;30868:5;30865:34;30855:62;;30913:1;30910;30903:12;30855:62;30803:120;:::o;30929:122::-;31002:24;31020:5;31002:24;:::i;:::-;30995:5;30992:35;30982:63;;31041:1;31038;31031:12;30982:63;30929:122;:::o
Swarm Source
ipfs://7c65a50cee39bf217b720c02e988ff0f9925eec14b8a32b2a9c15ad99bc195ca
[ 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.