Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 62 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15329349 | 892 days ago | IN | 0 ETH | 0.00074523 | ||||
Set Approval For... | 15052682 | 935 days ago | IN | 0 ETH | 0.00191733 | ||||
Mint | 15051927 | 935 days ago | IN | 0 ETH | 0.04011442 | ||||
Mint | 15051925 | 935 days ago | IN | 0 ETH | 0.00652153 | ||||
Mint | 15051923 | 935 days ago | IN | 0 ETH | 0.00721538 | ||||
Mint | 15051921 | 935 days ago | IN | 0 ETH | 0.00685361 | ||||
Mint | 15051920 | 935 days ago | IN | 0 ETH | 0.00724852 | ||||
Mint | 15051919 | 935 days ago | IN | 0 ETH | 0.01237921 | ||||
Mint | 15051917 | 935 days ago | IN | 0 ETH | 0.00752118 | ||||
Mint | 15051916 | 935 days ago | IN | 0 ETH | 0.00673519 | ||||
Mint | 15051914 | 935 days ago | IN | 0 ETH | 0.00775413 | ||||
Mint | 15051912 | 935 days ago | IN | 0 ETH | 0.01208351 | ||||
Mint | 15051911 | 935 days ago | IN | 0 ETH | 0.00710837 | ||||
Mint | 15051908 | 935 days ago | IN | 0 ETH | 0.0136622 | ||||
Mint | 15051907 | 935 days ago | IN | 0 ETH | 0.00741051 | ||||
Mint | 15051906 | 935 days ago | IN | 0 ETH | 0.00663725 | ||||
Mint | 15051904 | 935 days ago | IN | 0 ETH | 0.00689872 | ||||
Mint | 15051903 | 935 days ago | IN | 0 ETH | 0.01692241 | ||||
Mint | 15051901 | 935 days ago | IN | 0 ETH | 0.01348119 | ||||
Mint | 15051899 | 935 days ago | IN | 0 ETH | 0.00941897 | ||||
Mint | 15051898 | 935 days ago | IN | 0 ETH | 0.00994743 | ||||
Mint | 15051897 | 935 days ago | IN | 0 ETH | 0.01484682 | ||||
Mint | 15051896 | 935 days ago | IN | 0 ETH | 0.01451275 | ||||
Mint | 15051895 | 935 days ago | IN | 0 ETH | 0.00834668 | ||||
Mint | 15051894 | 935 days ago | IN | 0 ETH | 0.01235223 |
Loading...
Loading
Contract Name:
CodysInnerCircle
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; // struct Holder { // address holder; // uint256 amount; // } contract CodysInnerCircle is ERC721Enumerable, Ownable { event ThisAddress(address addr); using Strings for uint256; string public ogHolderBaseURI; string public newHolderBaseURI; string public baseExtension = ""; string public notRevealedUri; uint256 public cost = 0.15 ether; uint256 public maxSupply = 1000; uint256 public maxMintAmount = 1000; uint256 public nftPerAddressLimit = 1000; uint256 public numOgHolders = 0; bool public paused = false; bool public revealed = true; bool public onlyWhitelisted = false; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initOgHolderBaseUri, string memory _initNewHolderBaseUri, uint256 _initNumOgHolders, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setOgHolderBaseURI(_initNotRevealedUri); setNotRevealedURI(_initNotRevealedUri); setNumOgHolders(_initNumOgHolders); setOgHolderBaseURI(_initOgHolderBaseUri); setNewHolderBaseURI(_initNewHolderBaseUri); // Set Initial Holding State // for (uint256 i = 0; i < _initialHolders.length; i++) { // mint(_initialHolders[i].amount, _initialHolders[i].holder); // } } // public function mint(uint256 _mintAmount, address to) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require( _mintAmount <= maxMintAmount, "max mint amount per session exceeded" ); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if (onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require( ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded" ); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[to]++; _safeMint(to, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint256 i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (tokenId <= numOgHolders) { return ogHolderBaseURI; } return newHolderBaseURI; } //only owner function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setNumOgHolders(uint256 _numOgHolders) public onlyOwner { numOgHolders = _numOgHolders; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setOgHolderBaseURI(string memory _ogHolderBaseURI) public onlyOwner { ogHolderBaseURI = _ogHolderBaseURI; } function setNewHolderBaseURI(string memory _newHolderBaseURI) public onlyOwner { newHolderBaseURI = _newHolderBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `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) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"_initOgHolderBaseUri","type":"string"},{"internalType":"string","name":"_initNewHolderBaseUri","type":"string"},{"internalType":"uint256","name":"_initNumOgHolders","type":"uint256"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"ThisAddress","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":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newHolderBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numOgHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogHolderBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHolderBaseURI","type":"string"}],"name":"setNewHolderBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOgHolders","type":"uint256"}],"name":"setNumOgHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ogHolderBaseURI","type":"string"}],"name":"setOgHolderBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600d90816200002491906200076c565b50670214e8348c4f0000600f556103e86010556103e86011556103e860125560006013556000601460006101000a81548160ff0219169083151502179055506001601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff021916908315150217905550348015620000a657600080fd5b5060405162005c8f38038062005c8f8339818101604052810190620000cc9190620009f2565b85858160009081620000df91906200076c565b508060019081620000f191906200076c565b50505062000114620001086200017560201b60201c565b6200017d60201b60201c565b62000125816200024360201b60201c565b6200013681620002e760201b60201c565b62000147826200038b60201b60201c565b62000158846200024360201b60201c565b62000169836200042460201b60201c565b50505050505062000bac565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002536200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000279620004c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c99062000b8a565b60405180910390fd5b80600b9081620002e391906200076c565b5050565b620002f76200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031d620004c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036d9062000b8a565b60405180910390fd5b80600e90816200038791906200076c565b5050565b6200039b6200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003c1620004c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200041a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004119062000b8a565b60405180910390fd5b8060138190555050565b620004346200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200045a620004c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004aa9062000b8a565b60405180910390fd5b80600c9081620004c491906200076c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057457607f821691505b6020821081036200058a57620005896200052c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005b5565b620006008683620005b5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200064d62000647620006418462000618565b62000622565b62000618565b9050919050565b6000819050919050565b62000669836200062c565b62000681620006788262000654565b848454620005c2565b825550505050565b600090565b6200069862000689565b620006a58184846200065e565b505050565b5b81811015620006cd57620006c16000826200068e565b600181019050620006ab565b5050565b601f8211156200071c57620006e68162000590565b620006f184620005a5565b8101602085101562000701578190505b620007196200071085620005a5565b830182620006aa565b50505b505050565b600082821c905092915050565b6000620007416000198460080262000721565b1980831691505092915050565b60006200075c83836200072e565b9150826002028217905092915050565b6200077782620004f2565b67ffffffffffffffff811115620007935762000792620004fd565b5b6200079f82546200055b565b620007ac828285620006d1565b600060209050601f831160018114620007e45760008415620007cf578287015190505b620007db85826200074e565b8655506200084b565b601f198416620007f48662000590565b60005b828110156200081e57848901518255600182019150602085019450602081019050620007f7565b868310156200083e57848901516200083a601f8916826200072e565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200088d8262000871565b810181811067ffffffffffffffff82111715620008af57620008ae620004fd565b5b80604052505050565b6000620008c462000853565b9050620008d2828262000882565b919050565b600067ffffffffffffffff821115620008f557620008f4620004fd565b5b620009008262000871565b9050602081019050919050565b60005b838110156200092d57808201518184015260208101905062000910565b838111156200093d576000848401525b50505050565b60006200095a6200095484620008d7565b620008b8565b9050828152602081018484840111156200097957620009786200086c565b5b620009868482856200090d565b509392505050565b600082601f830112620009a657620009a562000867565b5b8151620009b884826020860162000943565b91505092915050565b620009cc8162000618565b8114620009d857600080fd5b50565b600081519050620009ec81620009c1565b92915050565b60008060008060008060c0878903121562000a125762000a116200085d565b5b600087015167ffffffffffffffff81111562000a335762000a3262000862565b5b62000a4189828a016200098e565b965050602087015167ffffffffffffffff81111562000a655762000a6462000862565b5b62000a7389828a016200098e565b955050604087015167ffffffffffffffff81111562000a975762000a9662000862565b5b62000aa589828a016200098e565b945050606087015167ffffffffffffffff81111562000ac95762000ac862000862565b5b62000ad789828a016200098e565b935050608062000aea89828a01620009db565b92505060a087015167ffffffffffffffff81111562000b0e5762000b0d62000862565b5b62000b1c89828a016200098e565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b7260208362000b29565b915062000b7f8262000b3a565b602082019050919050565b6000602082019050818103600083015262000ba58162000b63565b9050919050565b6150d38062000bbc6000396000f3fe6080604052600436106102ad5760003560e01c80635c975abb11610175578063b88d4fde116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610a93578063edec5f2714610ad0578063f2c4ce1e14610af9578063f2fde38b14610b22576102ad565b8063d5abeb0114610a16578063d8ca3c0e14610a41578063da3ef23f14610a6a576102ad565b8063b88d4fde146108f4578063ba4e5c491461091d578063ba7d2c761461095a578063c668286214610985578063c87b56dd146109b0578063d0eb26b0146109ed576102ad565b80638da5cb5b1161012e5780638da5cb5b1461081757806394bf804d1461084257806395d89b411461085e5780639c70b51214610889578063a22cb465146108b4578063a475b5dd146108dd576102ad565b80635c975abb146107075780636352211e1461073257806370a082311461076f578063715018a6146107ac5780637ae1a76a146107c35780637f00c7a6146107ee576102ad565b806323b872dd1161021957806342842e0e116101d257806342842e0e146105e5578063438b63001461060e57806344a0d68a1461064b5780634f6ccce71461067457806351830227146106b15780635be98712146106dc576102ad565b806323b872dd146104e45780632f745c591461050d5780633a88a1d51461054a5780633af32abf146105755780633c952764146105b25780633ccfd60b146105db576102ad565b8063095ea7b31161026b578063095ea7b3146103d45780630bba5298146103fd57806313faede61461042657806318160ddd1461045157806318cae2691461047c578063239c70ae146104b9576102ad565b80627e5e0f146102b257806301ffc9a7146102db57806302329a291461031857806306fdde0314610341578063081812fc1461036c578063081c8c44146103a9575b600080fd5b3480156102be57600080fd5b506102d960048036038101906102d4919061375c565b610b4b565b005b3480156102e757600080fd5b5061030260048036038101906102fd91906137fd565b610bda565b60405161030f9190613845565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061388c565b610c54565b005b34801561034d57600080fd5b50610356610ced565b6040516103639190613941565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613999565b610d7f565b6040516103a09190613a07565b60405180910390f35b3480156103b557600080fd5b506103be610e04565b6040516103cb9190613941565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613a4e565b610e92565b005b34801561040957600080fd5b50610424600480360381019061041f919061375c565b610fa9565b005b34801561043257600080fd5b5061043b611038565b6040516104489190613a9d565b60405180910390f35b34801561045d57600080fd5b5061046661103e565b6040516104739190613a9d565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613ab8565b61104b565b6040516104b09190613a9d565b60405180910390f35b3480156104c557600080fd5b506104ce611063565b6040516104db9190613a9d565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613ae5565b611069565b005b34801561051957600080fd5b50610534600480360381019061052f9190613a4e565b6110c9565b6040516105419190613a9d565b60405180910390f35b34801561055657600080fd5b5061055f61116e565b60405161056c9190613941565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190613ab8565b6111fc565b6040516105a99190613845565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d4919061388c565b6112aa565b005b6105e3611343565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613ae5565b61143f565b005b34801561061a57600080fd5b5061063560048036038101906106309190613ab8565b61145f565b6040516106429190613bf6565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613999565b61150d565b005b34801561068057600080fd5b5061069b60048036038101906106969190613999565b611593565b6040516106a89190613a9d565b60405180910390f35b3480156106bd57600080fd5b506106c6611604565b6040516106d39190613845565b60405180910390f35b3480156106e857600080fd5b506106f1611617565b6040516106fe9190613941565b60405180910390f35b34801561071357600080fd5b5061071c6116a5565b6040516107299190613845565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613999565b6116b8565b6040516107669190613a07565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190613ab8565b611769565b6040516107a39190613a9d565b60405180910390f35b3480156107b857600080fd5b506107c1611820565b005b3480156107cf57600080fd5b506107d86118a8565b6040516107e59190613a9d565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613999565b6118ae565b005b34801561082357600080fd5b5061082c611934565b6040516108399190613a07565b60405180910390f35b61085c60048036038101906108579190613c18565b61195e565b005b34801561086a57600080fd5b50610873611ca7565b6040516108809190613941565b60405180910390f35b34801561089557600080fd5b5061089e611d39565b6040516108ab9190613845565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613c58565b611d4c565b005b3480156108e957600080fd5b506108f2611d62565b005b34801561090057600080fd5b5061091b60048036038101906109169190613d39565b611dfb565b005b34801561092957600080fd5b50610944600480360381019061093f9190613999565b611e5d565b6040516109519190613a07565b60405180910390f35b34801561096657600080fd5b5061096f611e9c565b60405161097c9190613a9d565b60405180910390f35b34801561099157600080fd5b5061099a611ea2565b6040516109a79190613941565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d29190613999565b611f30565b6040516109e49190613941565b60405180910390f35b3480156109f957600080fd5b50610a146004803603810190610a0f9190613999565b612060565b005b348015610a2257600080fd5b50610a2b6120e6565b604051610a389190613a9d565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613999565b6120ec565b005b348015610a7657600080fd5b50610a916004803603810190610a8c919061375c565b612172565b005b348015610a9f57600080fd5b50610aba6004803603810190610ab59190613dbc565b612201565b604051610ac79190613845565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190613e5c565b612295565b005b348015610b0557600080fd5b50610b206004803603810190610b1b919061375c565b612335565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613ab8565b6123c4565b005b610b536124bb565b73ffffffffffffffffffffffffffffffffffffffff16610b71611934565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613ef5565b60405180910390fd5b80600c9081610bd69190614121565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4d5750610c4c826124c3565b5b9050919050565b610c5c6124bb565b73ffffffffffffffffffffffffffffffffffffffff16610c7a611934565b73ffffffffffffffffffffffffffffffffffffffff1614610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790613ef5565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b606060008054610cfc90613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2890613f44565b8015610d755780601f10610d4a57610100808354040283529160200191610d75565b820191906000526020600020905b815481529060010190602001808311610d5857829003601f168201915b5050505050905090565b6000610d8a826125a5565b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614265565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610e1190613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d90613f44565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b505050505081565b6000610e9d826116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906142f7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2c6124bb565b73ffffffffffffffffffffffffffffffffffffffff161480610f5b5750610f5a81610f556124bb565b612201565b5b610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190614389565b60405180910390fd5b610fa48383612611565b505050565b610fb16124bb565b73ffffffffffffffffffffffffffffffffffffffff16610fcf611934565b73ffffffffffffffffffffffffffffffffffffffff1614611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613ef5565b60405180910390fd5b80600b90816110349190614121565b5050565b600f5481565b6000600880549050905090565b60166020528060005260406000206000915090505481565b60115481565b61107a6110746124bb565b826126ca565b6110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b09061441b565b60405180910390fd5b6110c48383836127a8565b505050565b60006110d483611769565b8210611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c906144ad565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c805461117b90613f44565b80601f01602080910402602001604051908101604052809291908181526020018280546111a790613f44565b80156111f45780601f106111c9576101008083540402835291602001916111f4565b820191906000526020600020905b8154815290600101906020018083116111d757829003601f168201915b505050505081565b600080600090505b60158054905081101561129f578273ffffffffffffffffffffffffffffffffffffffff166015828154811061123c5761123b6144cd565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361128c5760019150506112a5565b80806112979061452b565b915050611204565b50600090505b919050565b6112b26124bb565b73ffffffffffffffffffffffffffffffffffffffff166112d0611934565b73ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90613ef5565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b61134b6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611369611934565b73ffffffffffffffffffffffffffffffffffffffff16146113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613ef5565b60405180910390fd5b60006113c9611934565b73ffffffffffffffffffffffffffffffffffffffff16476040516113ec906145a4565b60006040518083038185875af1925050503d8060008114611429576040519150601f19603f3d011682016040523d82523d6000602084013e61142e565b606091505b505090508061143c57600080fd5b50565b61145a83838360405180602001604052806000815250611dfb565b505050565b6060600061146c83611769565b905060008167ffffffffffffffff81111561148a57611489613631565b5b6040519080825280602002602001820160405280156114b85781602001602082028036833780820191505090505b50905060005b82811015611502576114d085826110c9565b8282815181106114e3576114e26144cd565b5b60200260200101818152505080806114fa9061452b565b9150506114be565b508092505050919050565b6115156124bb565b73ffffffffffffffffffffffffffffffffffffffff16611533611934565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090613ef5565b60405180910390fd5b80600f8190555050565b600061159d61103e565b82106115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d59061462b565b60405180910390fd5b600882815481106115f2576115f16144cd565b5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b600b805461162490613f44565b80601f016020809104026020016040519081016040528092919081815260200182805461165090613f44565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b505050505081565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611757906146bd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061474f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118286124bb565b73ffffffffffffffffffffffffffffffffffffffff16611846611934565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613ef5565b60405180910390fd5b6118a66000612a0e565b565b60135481565b6118b66124bb565b73ffffffffffffffffffffffffffffffffffffffff166118d4611934565b73ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613ef5565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900460ff16156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906147bb565b60405180910390fd5b60006119b861103e565b9050600083116119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490614827565b60405180910390fd5b601154831115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a39906148b9565b60405180910390fd5b6010548382611a5191906148d9565b1115611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a899061497b565b60405180910390fd5b611a9a611934565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c165760011515601460029054906101000a900460ff16151503611bc557611af0336111fc565b611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b26906149e7565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548482611b8291906148d9565b1115611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614a53565b60405180910390fd5b505b82600f54611bd39190614a73565b341015611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90614b19565b60405180910390fd5b5b6000600190505b838111611ca157601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c749061452b565b9190505550611c8e838284611c8991906148d9565b612ad4565b8080611c999061452b565b915050611c1d565b50505050565b606060018054611cb690613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce290613f44565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b601460029054906101000a900460ff1681565b611d5e611d576124bb565b8383612af2565b5050565b611d6a6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611d88611934565b73ffffffffffffffffffffffffffffffffffffffff1614611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd590613ef5565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b611e0c611e066124bb565b836126ca565b611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e429061441b565b60405180910390fd5b611e5784848484612c5e565b50505050565b60158181548110611e6d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d8054611eaf90613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054611edb90613f44565b8015611f285780601f10611efd57610100808354040283529160200191611f28565b820191906000526020600020905b815481529060010190602001808311611f0b57829003601f168201915b505050505081565b60606013548211611fcd57600b8054611f4890613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7490613f44565b8015611fc15780601f10611f9657610100808354040283529160200191611fc1565b820191906000526020600020905b815481529060010190602001808311611fa457829003601f168201915b5050505050905061205b565b600c8054611fda90613f44565b80601f016020809104026020016040519081016040528092919081815260200182805461200690613f44565b80156120535780601f1061202857610100808354040283529160200191612053565b820191906000526020600020905b81548152906001019060200180831161203657829003601f168201915b505050505090505b919050565b6120686124bb565b73ffffffffffffffffffffffffffffffffffffffff16612086611934565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390613ef5565b60405180910390fd5b8060128190555050565b60105481565b6120f46124bb565b73ffffffffffffffffffffffffffffffffffffffff16612112611934565b73ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613ef5565b60405180910390fd5b8060138190555050565b61217a6124bb565b73ffffffffffffffffffffffffffffffffffffffff16612198611934565b73ffffffffffffffffffffffffffffffffffffffff16146121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590613ef5565b60405180910390fd5b80600d90816121fd9190614121565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61229d6124bb565b73ffffffffffffffffffffffffffffffffffffffff166122bb611934565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890613ef5565b60405180910390fd5b6015600061231f9190613524565b818160159190612330929190613545565b505050565b61233d6124bb565b73ffffffffffffffffffffffffffffffffffffffff1661235b611934565b73ffffffffffffffffffffffffffffffffffffffff16146123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890613ef5565b60405180910390fd5b80600e90816123c09190614121565b5050565b6123cc6124bb565b73ffffffffffffffffffffffffffffffffffffffff166123ea611934565b73ffffffffffffffffffffffffffffffffffffffff1614612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790613ef5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690614bab565b60405180910390fd5b6124b881612a0e565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061259e575061259d82612cba565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612684836116b8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d5826125a5565b612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614c3d565b60405180910390fd5b600061271f836116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061276157506127608185612201565b5b8061279f57508373ffffffffffffffffffffffffffffffffffffffff1661278784610d7f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c8826116b8565b73ffffffffffffffffffffffffffffffffffffffff161461281e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281590614ccf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614d61565b60405180910390fd5b612898838383612d24565b6128a3600082612611565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f39190614d81565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294a91906148d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a09838383612e36565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aee828260405180602001604052806000815250612e3b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5790614e01565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c519190613845565b60405180910390a3505050565b612c698484846127a8565b612c7584848484612e96565b612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab90614e93565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d2f83838361301d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d7157612d6c81613022565b612db0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612daf57612dae838261306b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612df257612ded816131d8565b612e31565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e3057612e2f82826132a9565b5b5b505050565b505050565b612e458383613328565b612e526000848484612e96565b612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8890614e93565b60405180910390fd5b505050565b6000612eb78473ffffffffffffffffffffffffffffffffffffffff16613501565b15613010578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ee06124bb565b8786866040518563ffffffff1660e01b8152600401612f029493929190614f08565b6020604051808303816000875af1925050508015612f3e57506040513d601f19601f82011682018060405250810190612f3b9190614f69565b60015b612fc0573d8060008114612f6e576040519150601f19603f3d011682016040523d82523d6000602084013e612f73565b606091505b506000815103612fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612faf90614e93565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613015565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161307884611769565b6130829190614d81565b9050600060076000848152602001908152602001600020549050818114613167576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131ec9190614d81565b905060006009600084815260200190815260200160002054905060006008838154811061321c5761321b6144cd565b5b90600052602060002001549050806008838154811061323e5761323d6144cd565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061328d5761328c614f96565b5b6001900381819060005260206000200160009055905550505050565b60006132b483611769565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e90615011565b60405180910390fd5b6133a0816125a5565b156133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d79061507d565b60405180910390fd5b6133ec60008383612d24565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461343c91906148d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134fd60008383612e36565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b508054600082559060005260206000209081019061354291906135e5565b50565b8280548282559060005260206000209081019282156135d4579160200282015b828111156135d357823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613565565b5b5090506135e191906135e5565b5090565b5b808211156135fe5760008160009055506001016135e6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61366982613620565b810181811067ffffffffffffffff8211171561368857613687613631565b5b80604052505050565b600061369b613602565b90506136a78282613660565b919050565b600067ffffffffffffffff8211156136c7576136c6613631565b5b6136d082613620565b9050602081019050919050565b82818337600083830152505050565b60006136ff6136fa846136ac565b613691565b90508281526020810184848401111561371b5761371a61361b565b5b6137268482856136dd565b509392505050565b600082601f83011261374357613742613616565b5b81356137538482602086016136ec565b91505092915050565b6000602082840312156137725761377161360c565b5b600082013567ffffffffffffffff8111156137905761378f613611565b5b61379c8482850161372e565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137da816137a5565b81146137e557600080fd5b50565b6000813590506137f7816137d1565b92915050565b6000602082840312156138135761381261360c565b5b6000613821848285016137e8565b91505092915050565b60008115159050919050565b61383f8161382a565b82525050565b600060208201905061385a6000830184613836565b92915050565b6138698161382a565b811461387457600080fd5b50565b60008135905061388681613860565b92915050565b6000602082840312156138a2576138a161360c565b5b60006138b084828501613877565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f35780820151818401526020810190506138d8565b83811115613902576000848401525b50505050565b6000613913826138b9565b61391d81856138c4565b935061392d8185602086016138d5565b61393681613620565b840191505092915050565b6000602082019050818103600083015261395b8184613908565b905092915050565b6000819050919050565b61397681613963565b811461398157600080fd5b50565b6000813590506139938161396d565b92915050565b6000602082840312156139af576139ae61360c565b5b60006139bd84828501613984565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139f1826139c6565b9050919050565b613a01816139e6565b82525050565b6000602082019050613a1c60008301846139f8565b92915050565b613a2b816139e6565b8114613a3657600080fd5b50565b600081359050613a4881613a22565b92915050565b60008060408385031215613a6557613a6461360c565b5b6000613a7385828601613a39565b9250506020613a8485828601613984565b9150509250929050565b613a9781613963565b82525050565b6000602082019050613ab26000830184613a8e565b92915050565b600060208284031215613ace57613acd61360c565b5b6000613adc84828501613a39565b91505092915050565b600080600060608486031215613afe57613afd61360c565b5b6000613b0c86828701613a39565b9350506020613b1d86828701613a39565b9250506040613b2e86828701613984565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b6d81613963565b82525050565b6000613b7f8383613b64565b60208301905092915050565b6000602082019050919050565b6000613ba382613b38565b613bad8185613b43565b9350613bb883613b54565b8060005b83811015613be9578151613bd08882613b73565b9750613bdb83613b8b565b925050600181019050613bbc565b5085935050505092915050565b60006020820190508181036000830152613c108184613b98565b905092915050565b60008060408385031215613c2f57613c2e61360c565b5b6000613c3d85828601613984565b9250506020613c4e85828601613a39565b9150509250929050565b60008060408385031215613c6f57613c6e61360c565b5b6000613c7d85828601613a39565b9250506020613c8e85828601613877565b9150509250929050565b600067ffffffffffffffff821115613cb357613cb2613631565b5b613cbc82613620565b9050602081019050919050565b6000613cdc613cd784613c98565b613691565b905082815260208101848484011115613cf857613cf761361b565b5b613d038482856136dd565b509392505050565b600082601f830112613d2057613d1f613616565b5b8135613d30848260208601613cc9565b91505092915050565b60008060008060808587031215613d5357613d5261360c565b5b6000613d6187828801613a39565b9450506020613d7287828801613a39565b9350506040613d8387828801613984565b925050606085013567ffffffffffffffff811115613da457613da3613611565b5b613db087828801613d0b565b91505092959194509250565b60008060408385031215613dd357613dd261360c565b5b6000613de185828601613a39565b9250506020613df285828601613a39565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613e1c57613e1b613616565b5b8235905067ffffffffffffffff811115613e3957613e38613dfc565b5b602083019150836020820283011115613e5557613e54613e01565b5b9250929050565b60008060208385031215613e7357613e7261360c565b5b600083013567ffffffffffffffff811115613e9157613e90613611565b5b613e9d85828601613e06565b92509250509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613edf6020836138c4565b9150613eea82613ea9565b602082019050919050565b60006020820190508181036000830152613f0e81613ed2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5c57607f821691505b602082108103613f6f57613f6e613f15565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fd77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f9a565b613fe18683613f9a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061401e61401961401484613963565b613ff9565b613963565b9050919050565b6000819050919050565b61403883614003565b61404c61404482614025565b848454613fa7565b825550505050565b600090565b614061614054565b61406c81848461402f565b505050565b5b8181101561409057614085600082614059565b600181019050614072565b5050565b601f8211156140d5576140a681613f75565b6140af84613f8a565b810160208510156140be578190505b6140d26140ca85613f8a565b830182614071565b50505b505050565b600082821c905092915050565b60006140f8600019846008026140da565b1980831691505092915050565b600061411183836140e7565b9150826002028217905092915050565b61412a826138b9565b67ffffffffffffffff81111561414357614142613631565b5b61414d8254613f44565b614158828285614094565b600060209050601f83116001811461418b5760008415614179578287015190505b6141838582614105565b8655506141eb565b601f19841661419986613f75565b60005b828110156141c15784890151825560018201915060208501945060208101905061419c565b868310156141de57848901516141da601f8916826140e7565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061424f602c836138c4565b915061425a826141f3565b604082019050919050565b6000602082019050818103600083015261427e81614242565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142e16021836138c4565b91506142ec82614285565b604082019050919050565b60006020820190508181036000830152614310816142d4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143736038836138c4565b915061437e82614317565b604082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144056031836138c4565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614497602b836138c4565b91506144a28261443b565b604082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061453682613963565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614568576145676144fc565b5b600182019050919050565b600081905092915050565b50565b600061458e600083614573565b91506145998261457e565b600082019050919050565b60006145af82614581565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614615602c836138c4565b9150614620826145b9565b604082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006146a76029836138c4565b91506146b28261464b565b604082019050919050565b600060208201905081810360008301526146d68161469a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614739602a836138c4565b9150614744826146dd565b604082019050919050565b600060208201905081810360008301526147688161472c565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b60006147a56016836138c4565b91506147b08261476f565b602082019050919050565b600060208201905081810360008301526147d481614798565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000614811601b836138c4565b915061481c826147db565b602082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b60006148a36024836138c4565b91506148ae82614847565b604082019050919050565b600060208201905081810360008301526148d281614896565b9050919050565b60006148e482613963565b91506148ef83613963565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614924576149236144fc565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006149656016836138c4565b91506149708261492f565b602082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b60006149d16017836138c4565b91506149dc8261499b565b602082019050919050565b60006020820190508181036000830152614a00816149c4565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000614a3d601c836138c4565b9150614a4882614a07565b602082019050919050565b60006020820190508181036000830152614a6c81614a30565b9050919050565b6000614a7e82613963565b9150614a8983613963565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ac257614ac16144fc565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614b036012836138c4565b9150614b0e82614acd565b602082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b956026836138c4565b9150614ba082614b39565b604082019050919050565b60006020820190508181036000830152614bc481614b88565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614c27602c836138c4565b9150614c3282614bcb565b604082019050919050565b60006020820190508181036000830152614c5681614c1a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614cb96025836138c4565b9150614cc482614c5d565b604082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d4b6024836138c4565b9150614d5682614cef565b604082019050919050565b60006020820190508181036000830152614d7a81614d3e565b9050919050565b6000614d8c82613963565b9150614d9783613963565b925082821015614daa57614da96144fc565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614deb6019836138c4565b9150614df682614db5565b602082019050919050565b60006020820190508181036000830152614e1a81614dde565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614e7d6032836138c4565b9150614e8882614e21565b604082019050919050565b60006020820190508181036000830152614eac81614e70565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614eda82614eb3565b614ee48185614ebe565b9350614ef48185602086016138d5565b614efd81613620565b840191505092915050565b6000608082019050614f1d60008301876139f8565b614f2a60208301866139f8565b614f376040830185613a8e565b8181036060830152614f498184614ecf565b905095945050505050565b600081519050614f63816137d1565b92915050565b600060208284031215614f7f57614f7e61360c565b5b6000614f8d84828501614f54565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614ffb6020836138c4565b915061500682614fc5565b602082019050919050565b6000602082019050818103600083015261502a81614fee565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615067601c836138c4565b915061507282615031565b602082019050919050565b600060208201905081810360008301526150968161505a565b905091905056fea2646970667358221220920aee49240a006acf4a32f67a757b1ae3cfd3cc1b764487b32da5a61079664164736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010436f647973496e6e6572436972636c6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000524434f4459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f636f64797468726976652e7468656c616d6264612e67726f75702f6f672d686f6c6465722e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636f64797468726976652e7468656c616d6264612e67726f75702f6e65772d686f6c6465722e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4e4f545f4150504c494341424c45000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102ad5760003560e01c80635c975abb11610175578063b88d4fde116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610a93578063edec5f2714610ad0578063f2c4ce1e14610af9578063f2fde38b14610b22576102ad565b8063d5abeb0114610a16578063d8ca3c0e14610a41578063da3ef23f14610a6a576102ad565b8063b88d4fde146108f4578063ba4e5c491461091d578063ba7d2c761461095a578063c668286214610985578063c87b56dd146109b0578063d0eb26b0146109ed576102ad565b80638da5cb5b1161012e5780638da5cb5b1461081757806394bf804d1461084257806395d89b411461085e5780639c70b51214610889578063a22cb465146108b4578063a475b5dd146108dd576102ad565b80635c975abb146107075780636352211e1461073257806370a082311461076f578063715018a6146107ac5780637ae1a76a146107c35780637f00c7a6146107ee576102ad565b806323b872dd1161021957806342842e0e116101d257806342842e0e146105e5578063438b63001461060e57806344a0d68a1461064b5780634f6ccce71461067457806351830227146106b15780635be98712146106dc576102ad565b806323b872dd146104e45780632f745c591461050d5780633a88a1d51461054a5780633af32abf146105755780633c952764146105b25780633ccfd60b146105db576102ad565b8063095ea7b31161026b578063095ea7b3146103d45780630bba5298146103fd57806313faede61461042657806318160ddd1461045157806318cae2691461047c578063239c70ae146104b9576102ad565b80627e5e0f146102b257806301ffc9a7146102db57806302329a291461031857806306fdde0314610341578063081812fc1461036c578063081c8c44146103a9575b600080fd5b3480156102be57600080fd5b506102d960048036038101906102d4919061375c565b610b4b565b005b3480156102e757600080fd5b5061030260048036038101906102fd91906137fd565b610bda565b60405161030f9190613845565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061388c565b610c54565b005b34801561034d57600080fd5b50610356610ced565b6040516103639190613941565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613999565b610d7f565b6040516103a09190613a07565b60405180910390f35b3480156103b557600080fd5b506103be610e04565b6040516103cb9190613941565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613a4e565b610e92565b005b34801561040957600080fd5b50610424600480360381019061041f919061375c565b610fa9565b005b34801561043257600080fd5b5061043b611038565b6040516104489190613a9d565b60405180910390f35b34801561045d57600080fd5b5061046661103e565b6040516104739190613a9d565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613ab8565b61104b565b6040516104b09190613a9d565b60405180910390f35b3480156104c557600080fd5b506104ce611063565b6040516104db9190613a9d565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613ae5565b611069565b005b34801561051957600080fd5b50610534600480360381019061052f9190613a4e565b6110c9565b6040516105419190613a9d565b60405180910390f35b34801561055657600080fd5b5061055f61116e565b60405161056c9190613941565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190613ab8565b6111fc565b6040516105a99190613845565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d4919061388c565b6112aa565b005b6105e3611343565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613ae5565b61143f565b005b34801561061a57600080fd5b5061063560048036038101906106309190613ab8565b61145f565b6040516106429190613bf6565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613999565b61150d565b005b34801561068057600080fd5b5061069b60048036038101906106969190613999565b611593565b6040516106a89190613a9d565b60405180910390f35b3480156106bd57600080fd5b506106c6611604565b6040516106d39190613845565b60405180910390f35b3480156106e857600080fd5b506106f1611617565b6040516106fe9190613941565b60405180910390f35b34801561071357600080fd5b5061071c6116a5565b6040516107299190613845565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613999565b6116b8565b6040516107669190613a07565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190613ab8565b611769565b6040516107a39190613a9d565b60405180910390f35b3480156107b857600080fd5b506107c1611820565b005b3480156107cf57600080fd5b506107d86118a8565b6040516107e59190613a9d565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613999565b6118ae565b005b34801561082357600080fd5b5061082c611934565b6040516108399190613a07565b60405180910390f35b61085c60048036038101906108579190613c18565b61195e565b005b34801561086a57600080fd5b50610873611ca7565b6040516108809190613941565b60405180910390f35b34801561089557600080fd5b5061089e611d39565b6040516108ab9190613845565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613c58565b611d4c565b005b3480156108e957600080fd5b506108f2611d62565b005b34801561090057600080fd5b5061091b60048036038101906109169190613d39565b611dfb565b005b34801561092957600080fd5b50610944600480360381019061093f9190613999565b611e5d565b6040516109519190613a07565b60405180910390f35b34801561096657600080fd5b5061096f611e9c565b60405161097c9190613a9d565b60405180910390f35b34801561099157600080fd5b5061099a611ea2565b6040516109a79190613941565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d29190613999565b611f30565b6040516109e49190613941565b60405180910390f35b3480156109f957600080fd5b50610a146004803603810190610a0f9190613999565b612060565b005b348015610a2257600080fd5b50610a2b6120e6565b604051610a389190613a9d565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613999565b6120ec565b005b348015610a7657600080fd5b50610a916004803603810190610a8c919061375c565b612172565b005b348015610a9f57600080fd5b50610aba6004803603810190610ab59190613dbc565b612201565b604051610ac79190613845565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190613e5c565b612295565b005b348015610b0557600080fd5b50610b206004803603810190610b1b919061375c565b612335565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613ab8565b6123c4565b005b610b536124bb565b73ffffffffffffffffffffffffffffffffffffffff16610b71611934565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613ef5565b60405180910390fd5b80600c9081610bd69190614121565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4d5750610c4c826124c3565b5b9050919050565b610c5c6124bb565b73ffffffffffffffffffffffffffffffffffffffff16610c7a611934565b73ffffffffffffffffffffffffffffffffffffffff1614610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790613ef5565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b606060008054610cfc90613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2890613f44565b8015610d755780601f10610d4a57610100808354040283529160200191610d75565b820191906000526020600020905b815481529060010190602001808311610d5857829003601f168201915b5050505050905090565b6000610d8a826125a5565b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614265565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610e1190613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d90613f44565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b505050505081565b6000610e9d826116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906142f7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2c6124bb565b73ffffffffffffffffffffffffffffffffffffffff161480610f5b5750610f5a81610f556124bb565b612201565b5b610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190614389565b60405180910390fd5b610fa48383612611565b505050565b610fb16124bb565b73ffffffffffffffffffffffffffffffffffffffff16610fcf611934565b73ffffffffffffffffffffffffffffffffffffffff1614611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613ef5565b60405180910390fd5b80600b90816110349190614121565b5050565b600f5481565b6000600880549050905090565b60166020528060005260406000206000915090505481565b60115481565b61107a6110746124bb565b826126ca565b6110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b09061441b565b60405180910390fd5b6110c48383836127a8565b505050565b60006110d483611769565b8210611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c906144ad565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c805461117b90613f44565b80601f01602080910402602001604051908101604052809291908181526020018280546111a790613f44565b80156111f45780601f106111c9576101008083540402835291602001916111f4565b820191906000526020600020905b8154815290600101906020018083116111d757829003601f168201915b505050505081565b600080600090505b60158054905081101561129f578273ffffffffffffffffffffffffffffffffffffffff166015828154811061123c5761123b6144cd565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361128c5760019150506112a5565b80806112979061452b565b915050611204565b50600090505b919050565b6112b26124bb565b73ffffffffffffffffffffffffffffffffffffffff166112d0611934565b73ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90613ef5565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b61134b6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611369611934565b73ffffffffffffffffffffffffffffffffffffffff16146113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613ef5565b60405180910390fd5b60006113c9611934565b73ffffffffffffffffffffffffffffffffffffffff16476040516113ec906145a4565b60006040518083038185875af1925050503d8060008114611429576040519150601f19603f3d011682016040523d82523d6000602084013e61142e565b606091505b505090508061143c57600080fd5b50565b61145a83838360405180602001604052806000815250611dfb565b505050565b6060600061146c83611769565b905060008167ffffffffffffffff81111561148a57611489613631565b5b6040519080825280602002602001820160405280156114b85781602001602082028036833780820191505090505b50905060005b82811015611502576114d085826110c9565b8282815181106114e3576114e26144cd565b5b60200260200101818152505080806114fa9061452b565b9150506114be565b508092505050919050565b6115156124bb565b73ffffffffffffffffffffffffffffffffffffffff16611533611934565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090613ef5565b60405180910390fd5b80600f8190555050565b600061159d61103e565b82106115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d59061462b565b60405180910390fd5b600882815481106115f2576115f16144cd565b5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b600b805461162490613f44565b80601f016020809104026020016040519081016040528092919081815260200182805461165090613f44565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b505050505081565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611757906146bd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061474f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118286124bb565b73ffffffffffffffffffffffffffffffffffffffff16611846611934565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613ef5565b60405180910390fd5b6118a66000612a0e565b565b60135481565b6118b66124bb565b73ffffffffffffffffffffffffffffffffffffffff166118d4611934565b73ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613ef5565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900460ff16156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906147bb565b60405180910390fd5b60006119b861103e565b9050600083116119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490614827565b60405180910390fd5b601154831115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a39906148b9565b60405180910390fd5b6010548382611a5191906148d9565b1115611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a899061497b565b60405180910390fd5b611a9a611934565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c165760011515601460029054906101000a900460ff16151503611bc557611af0336111fc565b611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b26906149e7565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548482611b8291906148d9565b1115611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614a53565b60405180910390fd5b505b82600f54611bd39190614a73565b341015611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90614b19565b60405180910390fd5b5b6000600190505b838111611ca157601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c749061452b565b9190505550611c8e838284611c8991906148d9565b612ad4565b8080611c999061452b565b915050611c1d565b50505050565b606060018054611cb690613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce290613f44565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b601460029054906101000a900460ff1681565b611d5e611d576124bb565b8383612af2565b5050565b611d6a6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611d88611934565b73ffffffffffffffffffffffffffffffffffffffff1614611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd590613ef5565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b611e0c611e066124bb565b836126ca565b611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e429061441b565b60405180910390fd5b611e5784848484612c5e565b50505050565b60158181548110611e6d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d8054611eaf90613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054611edb90613f44565b8015611f285780601f10611efd57610100808354040283529160200191611f28565b820191906000526020600020905b815481529060010190602001808311611f0b57829003601f168201915b505050505081565b60606013548211611fcd57600b8054611f4890613f44565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7490613f44565b8015611fc15780601f10611f9657610100808354040283529160200191611fc1565b820191906000526020600020905b815481529060010190602001808311611fa457829003601f168201915b5050505050905061205b565b600c8054611fda90613f44565b80601f016020809104026020016040519081016040528092919081815260200182805461200690613f44565b80156120535780601f1061202857610100808354040283529160200191612053565b820191906000526020600020905b81548152906001019060200180831161203657829003601f168201915b505050505090505b919050565b6120686124bb565b73ffffffffffffffffffffffffffffffffffffffff16612086611934565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390613ef5565b60405180910390fd5b8060128190555050565b60105481565b6120f46124bb565b73ffffffffffffffffffffffffffffffffffffffff16612112611934565b73ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613ef5565b60405180910390fd5b8060138190555050565b61217a6124bb565b73ffffffffffffffffffffffffffffffffffffffff16612198611934565b73ffffffffffffffffffffffffffffffffffffffff16146121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590613ef5565b60405180910390fd5b80600d90816121fd9190614121565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61229d6124bb565b73ffffffffffffffffffffffffffffffffffffffff166122bb611934565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890613ef5565b60405180910390fd5b6015600061231f9190613524565b818160159190612330929190613545565b505050565b61233d6124bb565b73ffffffffffffffffffffffffffffffffffffffff1661235b611934565b73ffffffffffffffffffffffffffffffffffffffff16146123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890613ef5565b60405180910390fd5b80600e90816123c09190614121565b5050565b6123cc6124bb565b73ffffffffffffffffffffffffffffffffffffffff166123ea611934565b73ffffffffffffffffffffffffffffffffffffffff1614612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790613ef5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690614bab565b60405180910390fd5b6124b881612a0e565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061259e575061259d82612cba565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612684836116b8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d5826125a5565b612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614c3d565b60405180910390fd5b600061271f836116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061276157506127608185612201565b5b8061279f57508373ffffffffffffffffffffffffffffffffffffffff1661278784610d7f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c8826116b8565b73ffffffffffffffffffffffffffffffffffffffff161461281e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281590614ccf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614d61565b60405180910390fd5b612898838383612d24565b6128a3600082612611565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f39190614d81565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294a91906148d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a09838383612e36565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aee828260405180602001604052806000815250612e3b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5790614e01565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c519190613845565b60405180910390a3505050565b612c698484846127a8565b612c7584848484612e96565b612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab90614e93565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d2f83838361301d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d7157612d6c81613022565b612db0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612daf57612dae838261306b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612df257612ded816131d8565b612e31565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e3057612e2f82826132a9565b5b5b505050565b505050565b612e458383613328565b612e526000848484612e96565b612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8890614e93565b60405180910390fd5b505050565b6000612eb78473ffffffffffffffffffffffffffffffffffffffff16613501565b15613010578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ee06124bb565b8786866040518563ffffffff1660e01b8152600401612f029493929190614f08565b6020604051808303816000875af1925050508015612f3e57506040513d601f19601f82011682018060405250810190612f3b9190614f69565b60015b612fc0573d8060008114612f6e576040519150601f19603f3d011682016040523d82523d6000602084013e612f73565b606091505b506000815103612fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612faf90614e93565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613015565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161307884611769565b6130829190614d81565b9050600060076000848152602001908152602001600020549050818114613167576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131ec9190614d81565b905060006009600084815260200190815260200160002054905060006008838154811061321c5761321b6144cd565b5b90600052602060002001549050806008838154811061323e5761323d6144cd565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061328d5761328c614f96565b5b6001900381819060005260206000200160009055905550505050565b60006132b483611769565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e90615011565b60405180910390fd5b6133a0816125a5565b156133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d79061507d565b60405180910390fd5b6133ec60008383612d24565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461343c91906148d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134fd60008383612e36565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b508054600082559060005260206000209081019061354291906135e5565b50565b8280548282559060005260206000209081019282156135d4579160200282015b828111156135d357823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613565565b5b5090506135e191906135e5565b5090565b5b808211156135fe5760008160009055506001016135e6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61366982613620565b810181811067ffffffffffffffff8211171561368857613687613631565b5b80604052505050565b600061369b613602565b90506136a78282613660565b919050565b600067ffffffffffffffff8211156136c7576136c6613631565b5b6136d082613620565b9050602081019050919050565b82818337600083830152505050565b60006136ff6136fa846136ac565b613691565b90508281526020810184848401111561371b5761371a61361b565b5b6137268482856136dd565b509392505050565b600082601f83011261374357613742613616565b5b81356137538482602086016136ec565b91505092915050565b6000602082840312156137725761377161360c565b5b600082013567ffffffffffffffff8111156137905761378f613611565b5b61379c8482850161372e565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137da816137a5565b81146137e557600080fd5b50565b6000813590506137f7816137d1565b92915050565b6000602082840312156138135761381261360c565b5b6000613821848285016137e8565b91505092915050565b60008115159050919050565b61383f8161382a565b82525050565b600060208201905061385a6000830184613836565b92915050565b6138698161382a565b811461387457600080fd5b50565b60008135905061388681613860565b92915050565b6000602082840312156138a2576138a161360c565b5b60006138b084828501613877565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f35780820151818401526020810190506138d8565b83811115613902576000848401525b50505050565b6000613913826138b9565b61391d81856138c4565b935061392d8185602086016138d5565b61393681613620565b840191505092915050565b6000602082019050818103600083015261395b8184613908565b905092915050565b6000819050919050565b61397681613963565b811461398157600080fd5b50565b6000813590506139938161396d565b92915050565b6000602082840312156139af576139ae61360c565b5b60006139bd84828501613984565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139f1826139c6565b9050919050565b613a01816139e6565b82525050565b6000602082019050613a1c60008301846139f8565b92915050565b613a2b816139e6565b8114613a3657600080fd5b50565b600081359050613a4881613a22565b92915050565b60008060408385031215613a6557613a6461360c565b5b6000613a7385828601613a39565b9250506020613a8485828601613984565b9150509250929050565b613a9781613963565b82525050565b6000602082019050613ab26000830184613a8e565b92915050565b600060208284031215613ace57613acd61360c565b5b6000613adc84828501613a39565b91505092915050565b600080600060608486031215613afe57613afd61360c565b5b6000613b0c86828701613a39565b9350506020613b1d86828701613a39565b9250506040613b2e86828701613984565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b6d81613963565b82525050565b6000613b7f8383613b64565b60208301905092915050565b6000602082019050919050565b6000613ba382613b38565b613bad8185613b43565b9350613bb883613b54565b8060005b83811015613be9578151613bd08882613b73565b9750613bdb83613b8b565b925050600181019050613bbc565b5085935050505092915050565b60006020820190508181036000830152613c108184613b98565b905092915050565b60008060408385031215613c2f57613c2e61360c565b5b6000613c3d85828601613984565b9250506020613c4e85828601613a39565b9150509250929050565b60008060408385031215613c6f57613c6e61360c565b5b6000613c7d85828601613a39565b9250506020613c8e85828601613877565b9150509250929050565b600067ffffffffffffffff821115613cb357613cb2613631565b5b613cbc82613620565b9050602081019050919050565b6000613cdc613cd784613c98565b613691565b905082815260208101848484011115613cf857613cf761361b565b5b613d038482856136dd565b509392505050565b600082601f830112613d2057613d1f613616565b5b8135613d30848260208601613cc9565b91505092915050565b60008060008060808587031215613d5357613d5261360c565b5b6000613d6187828801613a39565b9450506020613d7287828801613a39565b9350506040613d8387828801613984565b925050606085013567ffffffffffffffff811115613da457613da3613611565b5b613db087828801613d0b565b91505092959194509250565b60008060408385031215613dd357613dd261360c565b5b6000613de185828601613a39565b9250506020613df285828601613a39565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613e1c57613e1b613616565b5b8235905067ffffffffffffffff811115613e3957613e38613dfc565b5b602083019150836020820283011115613e5557613e54613e01565b5b9250929050565b60008060208385031215613e7357613e7261360c565b5b600083013567ffffffffffffffff811115613e9157613e90613611565b5b613e9d85828601613e06565b92509250509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613edf6020836138c4565b9150613eea82613ea9565b602082019050919050565b60006020820190508181036000830152613f0e81613ed2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5c57607f821691505b602082108103613f6f57613f6e613f15565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fd77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f9a565b613fe18683613f9a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061401e61401961401484613963565b613ff9565b613963565b9050919050565b6000819050919050565b61403883614003565b61404c61404482614025565b848454613fa7565b825550505050565b600090565b614061614054565b61406c81848461402f565b505050565b5b8181101561409057614085600082614059565b600181019050614072565b5050565b601f8211156140d5576140a681613f75565b6140af84613f8a565b810160208510156140be578190505b6140d26140ca85613f8a565b830182614071565b50505b505050565b600082821c905092915050565b60006140f8600019846008026140da565b1980831691505092915050565b600061411183836140e7565b9150826002028217905092915050565b61412a826138b9565b67ffffffffffffffff81111561414357614142613631565b5b61414d8254613f44565b614158828285614094565b600060209050601f83116001811461418b5760008415614179578287015190505b6141838582614105565b8655506141eb565b601f19841661419986613f75565b60005b828110156141c15784890151825560018201915060208501945060208101905061419c565b868310156141de57848901516141da601f8916826140e7565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061424f602c836138c4565b915061425a826141f3565b604082019050919050565b6000602082019050818103600083015261427e81614242565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142e16021836138c4565b91506142ec82614285565b604082019050919050565b60006020820190508181036000830152614310816142d4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143736038836138c4565b915061437e82614317565b604082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144056031836138c4565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614497602b836138c4565b91506144a28261443b565b604082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061453682613963565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614568576145676144fc565b5b600182019050919050565b600081905092915050565b50565b600061458e600083614573565b91506145998261457e565b600082019050919050565b60006145af82614581565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614615602c836138c4565b9150614620826145b9565b604082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006146a76029836138c4565b91506146b28261464b565b604082019050919050565b600060208201905081810360008301526146d68161469a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614739602a836138c4565b9150614744826146dd565b604082019050919050565b600060208201905081810360008301526147688161472c565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b60006147a56016836138c4565b91506147b08261476f565b602082019050919050565b600060208201905081810360008301526147d481614798565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000614811601b836138c4565b915061481c826147db565b602082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b60006148a36024836138c4565b91506148ae82614847565b604082019050919050565b600060208201905081810360008301526148d281614896565b9050919050565b60006148e482613963565b91506148ef83613963565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614924576149236144fc565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006149656016836138c4565b91506149708261492f565b602082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b60006149d16017836138c4565b91506149dc8261499b565b602082019050919050565b60006020820190508181036000830152614a00816149c4565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000614a3d601c836138c4565b9150614a4882614a07565b602082019050919050565b60006020820190508181036000830152614a6c81614a30565b9050919050565b6000614a7e82613963565b9150614a8983613963565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ac257614ac16144fc565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614b036012836138c4565b9150614b0e82614acd565b602082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b956026836138c4565b9150614ba082614b39565b604082019050919050565b60006020820190508181036000830152614bc481614b88565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614c27602c836138c4565b9150614c3282614bcb565b604082019050919050565b60006020820190508181036000830152614c5681614c1a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614cb96025836138c4565b9150614cc482614c5d565b604082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d4b6024836138c4565b9150614d5682614cef565b604082019050919050565b60006020820190508181036000830152614d7a81614d3e565b9050919050565b6000614d8c82613963565b9150614d9783613963565b925082821015614daa57614da96144fc565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614deb6019836138c4565b9150614df682614db5565b602082019050919050565b60006020820190508181036000830152614e1a81614dde565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614e7d6032836138c4565b9150614e8882614e21565b604082019050919050565b60006020820190508181036000830152614eac81614e70565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614eda82614eb3565b614ee48185614ebe565b9350614ef48185602086016138d5565b614efd81613620565b840191505092915050565b6000608082019050614f1d60008301876139f8565b614f2a60208301866139f8565b614f376040830185613a8e565b8181036060830152614f498184614ecf565b905095945050505050565b600081519050614f63816137d1565b92915050565b600060208284031215614f7f57614f7e61360c565b5b6000614f8d84828501614f54565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614ffb6020836138c4565b915061500682614fc5565b602082019050919050565b6000602082019050818103600083015261502a81614fee565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615067601c836138c4565b915061507282615031565b602082019050919050565b600060208201905081810360008301526150968161505a565b905091905056fea2646970667358221220920aee49240a006acf4a32f67a757b1ae3cfd3cc1b764487b32da5a61079664164736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010436f647973496e6e6572436972636c6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000524434f4459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f636f64797468726976652e7468656c616d6264612e67726f75702f6f672d686f6c6465722e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636f64797468726976652e7468656c616d6264612e67726f75702f6e65772d686f6c6465722e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4e4f545f4150504c494341424c45000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CodysInnerCircle
Arg [1] : _symbol (string): $CODY
Arg [2] : _initOgHolderBaseUri (string): https://codythrive.thelambda.group/og-holder.json
Arg [3] : _initNewHolderBaseUri (string): https://codythrive.thelambda.group/new-holder.json
Arg [4] : _initNumOgHolders (uint256): 70
Arg [5] : _initNotRevealedUri (string): NOT_APPLICABLE
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 436f647973496e6e6572436972636c6500000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 24434f4459000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [11] : 68747470733a2f2f636f64797468726976652e7468656c616d6264612e67726f
Arg [12] : 75702f6f672d686f6c6465722e6a736f6e000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [14] : 68747470733a2f2f636f64797468726976652e7468656c616d6264612e67726f
Arg [15] : 75702f6e65772d686f6c6465722e6a736f6e0000000000000000000000000000
Arg [16] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [17] : 4e4f545f4150504c494341424c45000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.