ERC-721
Overview
Max Total Supply
2,191 NB?
Holders
1,874
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NB?Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PresentForYou
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ____ ____ ____ _____ ____ _____ _ _____ _____ ____ ____ ___ _ ____ _ / _ \ / __\/ __\/ __// ___\/ __// \ /|/__ __\ / // _ \/ __\ \ \/// _ \/ \ /\ | / \| | \/|| \/|| \ | \| \ | |\ || / \ | __\| / \|| \/| \ / | / \|| | || | |-|| | __/| /| /_ \___ || /_ | | \|| | | | | | \_/|| / / / | \_/|| \_/| \_/ \| \_/ \_/\_\\____\\____/\____\\_/ \| \_/ \_/ \____/\_/\_\ /_/ \____/\____/ */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } 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); } } pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; interface IMain { function ownerOf( uint _tokenid) external view returns (address); } /* ____ ____ ____ _____ ____ _____ _ _____ _____ ____ ____ ___ _ ____ _ / _ \ / __\/ __\/ __// ___\/ __// \ /|/__ __\ / // _ \/ __\ \ \/// _ \/ \ /\ | / \| | \/|| \/|| \ | \| \ | |\ || / \ | __\| / \|| \/| \ / | / \|| | || | |-|| | __/| /| /_ \___ || /_ | | \|| | | | | | \_/|| / / / | \_/|| \_/| \_/ \| \_/ \_/\_\\____\\____/\____\\_/ \| \_/ \_/ \____/\_/\_\ /_/ \____/\____/ */ contract PresentForYou is ERC721A, DefaultOperatorFilterer , Ownable { using Strings for uint256; string private uriPrefix = ""; string private uriSuffix = ".json"; string public hiddenURL = "https://nftstorage.link/ipfs/bafkreigbehsdhbxjebzkh3qxciu4n6igknv2fb6d7bjp6mlbrpp6ydeo5m"; uint256 public cost = 0 ether; uint16 public maxSupply = 2191; uint8 public maxMintAmountPerTx = 1; uint8 public maxMintAmountPerWallet = 1; bool public paused = false; bool public reveal = false; // Reveal at Dec 25th mapping (address => uint8) public NFTPerAddress; constructor() ERC721A("A Present for you", "NB?") { } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 _txPerAddress = NFTPerAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount <= maxMintAmountPerTx, "Exceeds max nft limit per transaction."); require(_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max nft limit per wallet."); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = _txPerAddress + _mintAmount; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setMaxMintAmountPerWallet(uint8 _limit) external onlyOwner{ maxMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806020016040528060008152506009908162000024919062000760565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200006b919062000760565b506040518060800160405280605881526020016200501260589139600b908162000096919062000760565b506000600c5561088f600d60006101000a81548161ffff021916908361ffff1602179055506001600d60026101000a81548160ff021916908360ff1602179055506001600d60036101000a81548160ff021916908360ff1602179055506000600d60046101000a81548160ff0219169083151502179055506000600d60056101000a81548160ff0219169083151502179055503480156200013657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601181526020017f412050726573656e7420666f7220796f750000000000000000000000000000008152506040518060400160405280600381526020017f4e423f00000000000000000000000000000000000000000000000000000000008152508160029081620001cb919062000760565b508060039081620001dd919062000760565b50620001ee6200041360201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003eb578015620002b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002779291906200088c565b600060405180830381600087803b1580156200029257600080fd5b505af1158015620002a7573d6000803e3d6000fd5b50505050620003ea565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200036b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620003319291906200088c565b600060405180830381600087803b1580156200034c57600080fd5b505af115801562000361573d6000803e3d6000fd5b50505050620003e9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003b49190620008b9565b600060405180830381600087803b158015620003cf57600080fd5b505af1158015620003e4573d6000803e3d6000fd5b505050505b5b5b50506200040d620004016200041860201b60201c565b6200042060201b60201c565b620008d6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056857607f821691505b6020821081036200057e576200057d62000520565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a9565b620005f48683620005a9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006416200063b62000635846200060c565b62000616565b6200060c565b9050919050565b6000819050919050565b6200065d8362000620565b620006756200066c8262000648565b848454620005b6565b825550505050565b600090565b6200068c6200067d565b6200069981848462000652565b505050565b5b81811015620006c157620006b560008262000682565b6001810190506200069f565b5050565b601f8211156200071057620006da8162000584565b620006e58462000599565b81016020851015620006f5578190505b6200070d620007048562000599565b8301826200069e565b50505b505050565b600082821c905092915050565b6000620007356000198460080262000715565b1980831691505092915050565b600062000750838362000722565b9150826002028217905092915050565b6200076b82620004e6565b67ffffffffffffffff811115620007875762000786620004f1565b5b6200079382546200054f565b620007a0828285620006c5565b600060209050601f831160018114620007d85760008415620007c3578287015190505b620007cf858262000742565b8655506200083f565b601f198416620007e88662000584565b60005b828110156200081257848901518255600182019150602085019450602081019050620007eb565b868310156200083257848901516200082e601f89168262000722565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008748262000847565b9050919050565b620008868162000867565b82525050565b6000604082019050620008a360008301856200087b565b620008b260208301846200087b565b9392505050565b6000602082019050620008d060008301846200087b565b92915050565b61472c80620008e66000396000f3fe60806040526004361061020f5760003560e01c80636ecd230611610118578063aa062290116100a0578063d5abeb011161006f578063d5abeb011461072c578063dbd37cf414610757578063e985e9c514610794578063eef440af146107d1578063f2fde38b146107fc5761020f565b8063aa06229014610672578063b88d4fde1461069b578063bc951b91146106c4578063c87b56dd146106ef5761020f565b80638da5cb5b116100e75780638da5cb5b1461059d57806394354fd0146105c857806395d89b41146105f3578063a22cb4651461061e578063a475b5dd146106475761020f565b80636ecd23061461050457806370a0823114610520578063715018a61461055d5780637ec4a659146105745761020f565b806328b60d151161019b5780633ccfd60b1161016a5780633ccfd60b1461043357806342842e0e1461044a57806344a0d68a146104735780635c975abb1461049c5780636352211e146104c75761020f565b806328b60d15146103b35780632f6f98e1146103dc57806337a66d85146104055780633bd649681461041c5761020f565b8063095ea7b3116101e2578063095ea7b3146102e25780631067fcc71461030b57806313faede61461033457806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306421c2f1461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906133fd565b610825565b6040516102489190613445565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061349a565b610907565b005b34801561028657600080fd5b5061028f6109a3565b60405161029c9190613557565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906135af565b610a35565b6040516102d9919061361d565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613664565b610ab1565b005b34801561031757600080fd5b50610332600480360381019061032d91906137d9565b610bbb565b005b34801561034057600080fd5b50610349610c4a565b6040516103569190613831565b60405180910390f35b34801561036b57600080fd5b50610374610c50565b6040516103819190613831565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061384c565b610c67565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906138d8565b610e49565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613905565b610ee7565b005b34801561041157600080fd5b5061041a610ff4565b005b34801561042857600080fd5b5061043161109c565b005b34801561043f57600080fd5b50610448611144565b005b34801561045657600080fd5b50610471600480360381019061046c919061384c565b61120f565b005b34801561047f57600080fd5b5061049a600480360381019061049591906135af565b6113f1565b005b3480156104a857600080fd5b506104b1611477565b6040516104be9190613445565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906135af565b61148a565b6040516104fb919061361d565b60405180910390f35b61051e600480360381019061051991906138d8565b6114a0565b005b34801561052c57600080fd5b5061054760048036038101906105429190613945565b611741565b6040516105549190613831565b60405180910390f35b34801561056957600080fd5b50610572611810565b005b34801561058057600080fd5b5061059b600480360381019061059691906137d9565b611898565b005b3480156105a957600080fd5b506105b2611927565b6040516105bf919061361d565b60405180910390f35b3480156105d457600080fd5b506105dd611951565b6040516105ea9190613981565b60405180910390f35b3480156105ff57600080fd5b50610608611964565b6040516106159190613557565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906139c8565b6119f6565b005b34801561065357600080fd5b5061065c611b6d565b6040516106699190613445565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906138d8565b611b80565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613aa9565b611c1a565b005b3480156106d057600080fd5b506106d9611dff565b6040516106e69190613981565b60405180910390f35b3480156106fb57600080fd5b50610716600480360381019061071191906135af565b611e12565b6040516107239190613557565b60405180910390f35b34801561073857600080fd5b50610741611f6a565b60405161074e9190613b3b565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613945565b611f7e565b60405161078b9190613981565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613b56565b611f9e565b6040516107c89190613445565b60405180910390f35b3480156107dd57600080fd5b506107e6612032565b6040516107f39190613557565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613945565b6120c0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090057506108ff826121b7565b5b9050919050565b61090f612221565b73ffffffffffffffffffffffffffffffffffffffff1661092d611927565b73ffffffffffffffffffffffffffffffffffffffff1614610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613be2565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109b290613c31565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613c31565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a4082612229565b610a76576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abc8261148a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b23576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b42612221565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b745750610b7281610b6d612221565b611f9e565b155b15610bab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb6838383612277565b505050565b610bc3612221565b73ffffffffffffffffffffffffffffffffffffffff16610be1611927565b73ffffffffffffffffffffffffffffffffffffffff1614610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613be2565b60405180910390fd5b80600b9081610c469190613e0e565b5050565b600c5481565b6000610c5a612329565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e37573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd957610cd484848461232e565b610e43565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d22929190613ee0565b602060405180830381865afa158015610d3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d639190613f1e565b8015610df557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610db3929190613ee0565b602060405180830381865afa158015610dd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df49190613f1e565b5b610e3657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e2d919061361d565b60405180910390fd5b5b610e4284848461232e565b5b50505050565b610e51612221565b73ffffffffffffffffffffffffffffffffffffffff16610e6f611927565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90613be2565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b610eef612221565b73ffffffffffffffffffffffffffffffffffffffff16610f0d611927565b73ffffffffffffffffffffffffffffffffffffffff1614610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613be2565b60405180910390fd5b6000610f6d610c50565b9050600d60009054906101000a900461ffff1661ffff168382610f909190613f7a565b61ffff161115610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613ffc565b60405180910390fd5b610fe3828461ffff1661233e565b600092506000915060009050505050565b610ffc612221565b73ffffffffffffffffffffffffffffffffffffffff1661101a611927565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613be2565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b6110a4612221565b73ffffffffffffffffffffffffffffffffffffffff166110c2611927565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613be2565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b61114c612221565b73ffffffffffffffffffffffffffffffffffffffff1661116a611927565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790613be2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561120b573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113df573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112815761127c84848461235c565b6113eb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ca929190613ee0565b602060405180830381865afa1580156112e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130b9190613f1e565b801561139d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161135b929190613ee0565b602060405180830381865afa158015611378573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139c9190613f1e565b5b6113de57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113d5919061361d565b60405180910390fd5b5b6113ea84848461235c565b5b50505050565b6113f9612221565b73ffffffffffffffffffffffffffffffffffffffff16611417611927565b73ffffffffffffffffffffffffffffffffffffffff161461146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613be2565b60405180910390fd5b80600c8190555050565b600d60049054906101000a900460ff1681565b60006114958261237c565b600001519050919050565b60006114aa610c50565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff16836115219190613f7a565b61ffff161115611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90613ffc565b60405180910390fd5b600d60029054906101000a900460ff1660ff168360ff1611156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b59061408e565b60405180910390fd5b600d60039054906101000a900460ff1660ff1683826115dd91906140ae565b60ff161115611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614155565b60405180910390fd5b600d60049054906101000a900460ff1615611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906141c1565b60405180910390fd5b8260ff16600c5461168291906141e1565b3410156116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb9061426f565b60405180910390fd5b6116d1338460ff1661233e565b82816116dd91906140ae565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611818612221565b73ffffffffffffffffffffffffffffffffffffffff16611836611927565b73ffffffffffffffffffffffffffffffffffffffff161461188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613be2565b60405180910390fd5b611896600061260b565b565b6118a0612221565b73ffffffffffffffffffffffffffffffffffffffff166118be611927565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90613be2565b60405180910390fd5b80600990816119239190613e0e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461197390613c31565b80601f016020809104026020016040519081016040528092919081815260200182805461199f90613c31565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b5050505050905090565b6119fe612221565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a62576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a6f612221565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1c612221565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b619190613445565b60405180910390a35050565b600d60059054906101000a900460ff1681565b611b88612221565b73ffffffffffffffffffffffffffffffffffffffff16611ba6611927565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613be2565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611deb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c8d57611c88858585856126d1565b611df8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611cd6929190613ee0565b602060405180830381865afa158015611cf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d179190613f1e565b8015611da957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d67929190613ee0565b602060405180830381865afa158015611d84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da89190613f1e565b5b611dea57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611de1919061361d565b60405180910390fd5b5b611df7858585856126d1565b5b5050505050565b600d60039054906101000a900460ff1681565b6060611e1d82612229565b611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614301565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611f0957600b8054611e8490613c31565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb090613c31565b8015611efd5780601f10611ed257610100808354040283529160200191611efd565b820191906000526020600020905b815481529060010190602001808311611ee057829003601f168201915b50505050509050611f65565b6000611f1361274d565b90506000815111611f335760405180602001604052806000815250611f61565b80611f3d846127df565b600a604051602001611f51939291906143e0565b6040516020818303038152906040525b9150505b919050565b600d60009054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461203f90613c31565b80601f016020809104026020016040519081016040528092919081815260200182805461206b90613c31565b80156120b85780601f1061208d576101008083540402835291602001916120b8565b820191906000526020600020905b81548152906001019060200180831161209b57829003601f168201915b505050505081565b6120c8612221565b73ffffffffffffffffffffffffffffffffffffffff166120e6611927565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614483565b60405180910390fd5b6121b48161260b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612234612329565b11158015612243575060005482105b8015612270575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61233983838361293f565b505050565b612358828260405180602001604052806000815250612df3565b5050565b61237783838360405180602001604052806000815250611c1a565b505050565b61238461334e565b600082905080612392612329565b111580156123a1575060005481105b156125d4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516125d257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124b6578092505050612606565b5b6001156125d157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125cc578092505050612606565b6124b7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126dc84848461293f565b6126fb8373ffffffffffffffffffffffffffffffffffffffff16612e05565b8015612710575061270e84848484612e28565b155b15612747576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461275c90613c31565b80601f016020809104026020016040519081016040528092919081815260200182805461278890613c31565b80156127d55780601f106127aa576101008083540402835291602001916127d5565b820191906000526020600020905b8154815290600101906020018083116127b857829003601f168201915b5050505050905090565b606060008203612826576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293a565b600082905060005b60008214612858578080612841906144a3565b915050600a82612851919061451a565b915061282e565b60008167ffffffffffffffff811115612874576128736136ae565b5b6040519080825280601f01601f1916602001820160405280156128a65781602001600182028036833780820191505090505b5090505b60008514612933576001826128bf919061454b565b9150600a856128ce919061457f565b60306128da91906145b0565b60f81b8183815181106128f0576128ef6145e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561292c919061451a565b94506128aa565b8093505050505b919050565b600061294a8261237c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166129d6612221565b73ffffffffffffffffffffffffffffffffffffffff161480612a055750612a04856129ff612221565b611f9e565b5b80612a4a5750612a13612221565b73ffffffffffffffffffffffffffffffffffffffff16612a3284610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ae9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af68585856001612f78565b612b0260008487612277565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d81576000548214612d8057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dec8585856001612f7e565b5050505050565b612e008383836001612f84565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e4e612221565b8786866040518563ffffffff1660e01b8152600401612e709493929190614668565b6020604051808303816000875af1925050508015612eac57506040513d601f19601f82011682018060405250810190612ea991906146c9565b60015b612f25573d8060008114612edc576040519150601f19603f3d011682016040523d82523d6000602084013e612ee1565b606091505b506000815103612f1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ff0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361302a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130376000868387612f78565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561320157506132008773ffffffffffffffffffffffffffffffffffffffff16612e05565b5b156132c6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132766000888480600101955088612e28565b6132ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036132075782600054146132c157600080fd5b613331565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036132c7575b8160008190555050506133476000868387612f7e565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133da816133a5565b81146133e557600080fd5b50565b6000813590506133f7816133d1565b92915050565b6000602082840312156134135761341261339b565b5b6000613421848285016133e8565b91505092915050565b60008115159050919050565b61343f8161342a565b82525050565b600060208201905061345a6000830184613436565b92915050565b600061ffff82169050919050565b61347781613460565b811461348257600080fd5b50565b6000813590506134948161346e565b92915050565b6000602082840312156134b0576134af61339b565b5b60006134be84828501613485565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135015780820151818401526020810190506134e6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613529826134c7565b61353381856134d2565b93506135438185602086016134e3565b61354c8161350d565b840191505092915050565b60006020820190508181036000830152613571818461351e565b905092915050565b6000819050919050565b61358c81613579565b811461359757600080fd5b50565b6000813590506135a981613583565b92915050565b6000602082840312156135c5576135c461339b565b5b60006135d38482850161359a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613607826135dc565b9050919050565b613617816135fc565b82525050565b6000602082019050613632600083018461360e565b92915050565b613641816135fc565b811461364c57600080fd5b50565b60008135905061365e81613638565b92915050565b6000806040838503121561367b5761367a61339b565b5b60006136898582860161364f565b925050602061369a8582860161359a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136e68261350d565b810181811067ffffffffffffffff82111715613705576137046136ae565b5b80604052505050565b6000613718613391565b905061372482826136dd565b919050565b600067ffffffffffffffff821115613744576137436136ae565b5b61374d8261350d565b9050602081019050919050565b82818337600083830152505050565b600061377c61377784613729565b61370e565b905082815260208101848484011115613798576137976136a9565b5b6137a384828561375a565b509392505050565b600082601f8301126137c0576137bf6136a4565b5b81356137d0848260208601613769565b91505092915050565b6000602082840312156137ef576137ee61339b565b5b600082013567ffffffffffffffff81111561380d5761380c6133a0565b5b613819848285016137ab565b91505092915050565b61382b81613579565b82525050565b60006020820190506138466000830184613822565b92915050565b6000806000606084860312156138655761386461339b565b5b60006138738682870161364f565b93505060206138848682870161364f565b92505060406138958682870161359a565b9150509250925092565b600060ff82169050919050565b6138b58161389f565b81146138c057600080fd5b50565b6000813590506138d2816138ac565b92915050565b6000602082840312156138ee576138ed61339b565b5b60006138fc848285016138c3565b91505092915050565b6000806040838503121561391c5761391b61339b565b5b600061392a85828601613485565b925050602061393b8582860161364f565b9150509250929050565b60006020828403121561395b5761395a61339b565b5b60006139698482850161364f565b91505092915050565b61397b8161389f565b82525050565b60006020820190506139966000830184613972565b92915050565b6139a58161342a565b81146139b057600080fd5b50565b6000813590506139c28161399c565b92915050565b600080604083850312156139df576139de61339b565b5b60006139ed8582860161364f565b92505060206139fe858286016139b3565b9150509250929050565b600067ffffffffffffffff821115613a2357613a226136ae565b5b613a2c8261350d565b9050602081019050919050565b6000613a4c613a4784613a08565b61370e565b905082815260208101848484011115613a6857613a676136a9565b5b613a7384828561375a565b509392505050565b600082601f830112613a9057613a8f6136a4565b5b8135613aa0848260208601613a39565b91505092915050565b60008060008060808587031215613ac357613ac261339b565b5b6000613ad18782880161364f565b9450506020613ae28782880161364f565b9350506040613af38782880161359a565b925050606085013567ffffffffffffffff811115613b1457613b136133a0565b5b613b2087828801613a7b565b91505092959194509250565b613b3581613460565b82525050565b6000602082019050613b506000830184613b2c565b92915050565b60008060408385031215613b6d57613b6c61339b565b5b6000613b7b8582860161364f565b9250506020613b8c8582860161364f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bcc6020836134d2565b9150613bd782613b96565b602082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4957607f821691505b602082108103613c5c57613c5b613c02565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613cc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c87565b613cce8683613c87565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d0b613d06613d0184613579565b613ce6565b613579565b9050919050565b6000819050919050565b613d2583613cf0565b613d39613d3182613d12565b848454613c94565b825550505050565b600090565b613d4e613d41565b613d59818484613d1c565b505050565b5b81811015613d7d57613d72600082613d46565b600181019050613d5f565b5050565b601f821115613dc257613d9381613c62565b613d9c84613c77565b81016020851015613dab578190505b613dbf613db785613c77565b830182613d5e565b50505b505050565b600082821c905092915050565b6000613de560001984600802613dc7565b1980831691505092915050565b6000613dfe8383613dd4565b9150826002028217905092915050565b613e17826134c7565b67ffffffffffffffff811115613e3057613e2f6136ae565b5b613e3a8254613c31565b613e45828285613d81565b600060209050601f831160018114613e785760008415613e66578287015190505b613e708582613df2565b865550613ed8565b601f198416613e8686613c62565b60005b82811015613eae57848901518255600182019150602085019450602081019050613e89565b86831015613ecb5784890151613ec7601f891682613dd4565b8355505b6001600288020188555050505b505050505050565b6000604082019050613ef5600083018561360e565b613f02602083018461360e565b9392505050565b600081519050613f188161399c565b92915050565b600060208284031215613f3457613f3361339b565b5b6000613f4284828501613f09565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f8582613460565b9150613f9083613460565b9250828201905061ffff811115613faa57613fa9613f4b565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000613fe66013836134d2565b9150613ff182613fb0565b602082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f45786365656473206d6178206e6674206c696d697420706572207472616e736160008201527f6374696f6e2e0000000000000000000000000000000000000000000000000000602082015250565b60006140786026836134d2565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b60006140b98261389f565b91506140c48361389f565b9250828201905060ff8111156140dd576140dc613f4b565b5b92915050565b7f45786365656473206d6178206e6674206c696d6974207065722077616c6c657460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061413f6021836134d2565b915061414a826140e3565b604082019050919050565b6000602082019050818103600083015261416e81614132565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006141ab6017836134d2565b91506141b682614175565b602082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b60006141ec82613579565b91506141f783613579565b925082820261420581613579565b9150828204841483151761421c5761421b613f4b565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006142596013836134d2565b915061426482614223565b602082019050919050565b600060208201905081810360008301526142888161424c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006142eb602f836134d2565b91506142f68261428f565b604082019050919050565b6000602082019050818103600083015261431a816142de565b9050919050565b600081905092915050565b6000614337826134c7565b6143418185614321565b93506143518185602086016134e3565b80840191505092915050565b6000815461436a81613c31565b6143748186614321565b9450600182166000811461438f57600181146143a4576143d7565b60ff19831686528115158202860193506143d7565b6143ad85613c62565b60005b838110156143cf578154818901526001820191506020810190506143b0565b838801955050505b50505092915050565b60006143ec828661432c565b91506143f8828561432c565b9150614404828461435d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061446d6026836134d2565b915061447882614411565b604082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b60006144ae82613579565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144e0576144df613f4b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061452582613579565b915061453083613579565b9250826145405761453f6144eb565b5b828204905092915050565b600061455682613579565b915061456183613579565b925082820390508181111561457957614578613f4b565b5b92915050565b600061458a82613579565b915061459583613579565b9250826145a5576145a46144eb565b5b828206905092915050565b60006145bb82613579565b91506145c683613579565b92508282019050808211156145de576145dd613f4b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061463a82614613565b614644818561461e565b93506146548185602086016134e3565b61465d8161350d565b840191505092915050565b600060808201905061467d600083018761360e565b61468a602083018661360e565b6146976040830185613822565b81810360608301526146a9818461462f565b905095945050505050565b6000815190506146c3816133d1565b92915050565b6000602082840312156146df576146de61339b565b5b60006146ed848285016146b4565b9150509291505056fea2646970667358221220a36653f3bae4ce6e12f15cf1a81f1d1e20fce55c44b09ff764f46e516dbf4d0664736f6c6343000811003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261666b7265696762656873646862786a65627a6b68337178636975346e3669676b6e76326662366437626a70366d6c62727070367964656f356d
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636ecd230611610118578063aa062290116100a0578063d5abeb011161006f578063d5abeb011461072c578063dbd37cf414610757578063e985e9c514610794578063eef440af146107d1578063f2fde38b146107fc5761020f565b8063aa06229014610672578063b88d4fde1461069b578063bc951b91146106c4578063c87b56dd146106ef5761020f565b80638da5cb5b116100e75780638da5cb5b1461059d57806394354fd0146105c857806395d89b41146105f3578063a22cb4651461061e578063a475b5dd146106475761020f565b80636ecd23061461050457806370a0823114610520578063715018a61461055d5780637ec4a659146105745761020f565b806328b60d151161019b5780633ccfd60b1161016a5780633ccfd60b1461043357806342842e0e1461044a57806344a0d68a146104735780635c975abb1461049c5780636352211e146104c75761020f565b806328b60d15146103b35780632f6f98e1146103dc57806337a66d85146104055780633bd649681461041c5761020f565b8063095ea7b3116101e2578063095ea7b3146102e25780631067fcc71461030b57806313faede61461033457806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306421c2f1461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906133fd565b610825565b6040516102489190613445565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061349a565b610907565b005b34801561028657600080fd5b5061028f6109a3565b60405161029c9190613557565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906135af565b610a35565b6040516102d9919061361d565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613664565b610ab1565b005b34801561031757600080fd5b50610332600480360381019061032d91906137d9565b610bbb565b005b34801561034057600080fd5b50610349610c4a565b6040516103569190613831565b60405180910390f35b34801561036b57600080fd5b50610374610c50565b6040516103819190613831565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061384c565b610c67565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906138d8565b610e49565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613905565b610ee7565b005b34801561041157600080fd5b5061041a610ff4565b005b34801561042857600080fd5b5061043161109c565b005b34801561043f57600080fd5b50610448611144565b005b34801561045657600080fd5b50610471600480360381019061046c919061384c565b61120f565b005b34801561047f57600080fd5b5061049a600480360381019061049591906135af565b6113f1565b005b3480156104a857600080fd5b506104b1611477565b6040516104be9190613445565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906135af565b61148a565b6040516104fb919061361d565b60405180910390f35b61051e600480360381019061051991906138d8565b6114a0565b005b34801561052c57600080fd5b5061054760048036038101906105429190613945565b611741565b6040516105549190613831565b60405180910390f35b34801561056957600080fd5b50610572611810565b005b34801561058057600080fd5b5061059b600480360381019061059691906137d9565b611898565b005b3480156105a957600080fd5b506105b2611927565b6040516105bf919061361d565b60405180910390f35b3480156105d457600080fd5b506105dd611951565b6040516105ea9190613981565b60405180910390f35b3480156105ff57600080fd5b50610608611964565b6040516106159190613557565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906139c8565b6119f6565b005b34801561065357600080fd5b5061065c611b6d565b6040516106699190613445565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906138d8565b611b80565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613aa9565b611c1a565b005b3480156106d057600080fd5b506106d9611dff565b6040516106e69190613981565b60405180910390f35b3480156106fb57600080fd5b50610716600480360381019061071191906135af565b611e12565b6040516107239190613557565b60405180910390f35b34801561073857600080fd5b50610741611f6a565b60405161074e9190613b3b565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613945565b611f7e565b60405161078b9190613981565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613b56565b611f9e565b6040516107c89190613445565b60405180910390f35b3480156107dd57600080fd5b506107e6612032565b6040516107f39190613557565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613945565b6120c0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090057506108ff826121b7565b5b9050919050565b61090f612221565b73ffffffffffffffffffffffffffffffffffffffff1661092d611927565b73ffffffffffffffffffffffffffffffffffffffff1614610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613be2565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109b290613c31565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613c31565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a4082612229565b610a76576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abc8261148a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b23576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b42612221565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b745750610b7281610b6d612221565b611f9e565b155b15610bab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb6838383612277565b505050565b610bc3612221565b73ffffffffffffffffffffffffffffffffffffffff16610be1611927565b73ffffffffffffffffffffffffffffffffffffffff1614610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613be2565b60405180910390fd5b80600b9081610c469190613e0e565b5050565b600c5481565b6000610c5a612329565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e37573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd957610cd484848461232e565b610e43565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d22929190613ee0565b602060405180830381865afa158015610d3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d639190613f1e565b8015610df557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610db3929190613ee0565b602060405180830381865afa158015610dd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df49190613f1e565b5b610e3657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e2d919061361d565b60405180910390fd5b5b610e4284848461232e565b5b50505050565b610e51612221565b73ffffffffffffffffffffffffffffffffffffffff16610e6f611927565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90613be2565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b610eef612221565b73ffffffffffffffffffffffffffffffffffffffff16610f0d611927565b73ffffffffffffffffffffffffffffffffffffffff1614610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613be2565b60405180910390fd5b6000610f6d610c50565b9050600d60009054906101000a900461ffff1661ffff168382610f909190613f7a565b61ffff161115610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613ffc565b60405180910390fd5b610fe3828461ffff1661233e565b600092506000915060009050505050565b610ffc612221565b73ffffffffffffffffffffffffffffffffffffffff1661101a611927565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613be2565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b6110a4612221565b73ffffffffffffffffffffffffffffffffffffffff166110c2611927565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613be2565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b61114c612221565b73ffffffffffffffffffffffffffffffffffffffff1661116a611927565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790613be2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561120b573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113df573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112815761127c84848461235c565b6113eb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ca929190613ee0565b602060405180830381865afa1580156112e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130b9190613f1e565b801561139d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161135b929190613ee0565b602060405180830381865afa158015611378573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139c9190613f1e565b5b6113de57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113d5919061361d565b60405180910390fd5b5b6113ea84848461235c565b5b50505050565b6113f9612221565b73ffffffffffffffffffffffffffffffffffffffff16611417611927565b73ffffffffffffffffffffffffffffffffffffffff161461146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613be2565b60405180910390fd5b80600c8190555050565b600d60049054906101000a900460ff1681565b60006114958261237c565b600001519050919050565b60006114aa610c50565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff16836115219190613f7a565b61ffff161115611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90613ffc565b60405180910390fd5b600d60029054906101000a900460ff1660ff168360ff1611156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b59061408e565b60405180910390fd5b600d60039054906101000a900460ff1660ff1683826115dd91906140ae565b60ff161115611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614155565b60405180910390fd5b600d60049054906101000a900460ff1615611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906141c1565b60405180910390fd5b8260ff16600c5461168291906141e1565b3410156116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb9061426f565b60405180910390fd5b6116d1338460ff1661233e565b82816116dd91906140ae565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611818612221565b73ffffffffffffffffffffffffffffffffffffffff16611836611927565b73ffffffffffffffffffffffffffffffffffffffff161461188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613be2565b60405180910390fd5b611896600061260b565b565b6118a0612221565b73ffffffffffffffffffffffffffffffffffffffff166118be611927565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90613be2565b60405180910390fd5b80600990816119239190613e0e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461197390613c31565b80601f016020809104026020016040519081016040528092919081815260200182805461199f90613c31565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b5050505050905090565b6119fe612221565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a62576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a6f612221565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1c612221565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b619190613445565b60405180910390a35050565b600d60059054906101000a900460ff1681565b611b88612221565b73ffffffffffffffffffffffffffffffffffffffff16611ba6611927565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613be2565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611deb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c8d57611c88858585856126d1565b611df8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611cd6929190613ee0565b602060405180830381865afa158015611cf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d179190613f1e565b8015611da957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d67929190613ee0565b602060405180830381865afa158015611d84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da89190613f1e565b5b611dea57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611de1919061361d565b60405180910390fd5b5b611df7858585856126d1565b5b5050505050565b600d60039054906101000a900460ff1681565b6060611e1d82612229565b611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614301565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611f0957600b8054611e8490613c31565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb090613c31565b8015611efd5780601f10611ed257610100808354040283529160200191611efd565b820191906000526020600020905b815481529060010190602001808311611ee057829003601f168201915b50505050509050611f65565b6000611f1361274d565b90506000815111611f335760405180602001604052806000815250611f61565b80611f3d846127df565b600a604051602001611f51939291906143e0565b6040516020818303038152906040525b9150505b919050565b600d60009054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461203f90613c31565b80601f016020809104026020016040519081016040528092919081815260200182805461206b90613c31565b80156120b85780601f1061208d576101008083540402835291602001916120b8565b820191906000526020600020905b81548152906001019060200180831161209b57829003601f168201915b505050505081565b6120c8612221565b73ffffffffffffffffffffffffffffffffffffffff166120e6611927565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614483565b60405180910390fd5b6121b48161260b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612234612329565b11158015612243575060005482105b8015612270575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61233983838361293f565b505050565b612358828260405180602001604052806000815250612df3565b5050565b61237783838360405180602001604052806000815250611c1a565b505050565b61238461334e565b600082905080612392612329565b111580156123a1575060005481105b156125d4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516125d257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124b6578092505050612606565b5b6001156125d157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125cc578092505050612606565b6124b7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126dc84848461293f565b6126fb8373ffffffffffffffffffffffffffffffffffffffff16612e05565b8015612710575061270e84848484612e28565b155b15612747576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461275c90613c31565b80601f016020809104026020016040519081016040528092919081815260200182805461278890613c31565b80156127d55780601f106127aa576101008083540402835291602001916127d5565b820191906000526020600020905b8154815290600101906020018083116127b857829003601f168201915b5050505050905090565b606060008203612826576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293a565b600082905060005b60008214612858578080612841906144a3565b915050600a82612851919061451a565b915061282e565b60008167ffffffffffffffff811115612874576128736136ae565b5b6040519080825280601f01601f1916602001820160405280156128a65781602001600182028036833780820191505090505b5090505b60008514612933576001826128bf919061454b565b9150600a856128ce919061457f565b60306128da91906145b0565b60f81b8183815181106128f0576128ef6145e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561292c919061451a565b94506128aa565b8093505050505b919050565b600061294a8261237c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166129d6612221565b73ffffffffffffffffffffffffffffffffffffffff161480612a055750612a04856129ff612221565b611f9e565b5b80612a4a5750612a13612221565b73ffffffffffffffffffffffffffffffffffffffff16612a3284610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ae9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af68585856001612f78565b612b0260008487612277565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d81576000548214612d8057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dec8585856001612f7e565b5050505050565b612e008383836001612f84565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e4e612221565b8786866040518563ffffffff1660e01b8152600401612e709493929190614668565b6020604051808303816000875af1925050508015612eac57506040513d601f19601f82011682018060405250810190612ea991906146c9565b60015b612f25573d8060008114612edc576040519150601f19603f3d011682016040523d82523d6000602084013e612ee1565b606091505b506000815103612f1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ff0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361302a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130376000868387612f78565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561320157506132008773ffffffffffffffffffffffffffffffffffffffff16612e05565b5b156132c6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132766000888480600101955088612e28565b6132ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036132075782600054146132c157600080fd5b613331565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036132c7575b8160008190555050506133476000868387612f7e565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133da816133a5565b81146133e557600080fd5b50565b6000813590506133f7816133d1565b92915050565b6000602082840312156134135761341261339b565b5b6000613421848285016133e8565b91505092915050565b60008115159050919050565b61343f8161342a565b82525050565b600060208201905061345a6000830184613436565b92915050565b600061ffff82169050919050565b61347781613460565b811461348257600080fd5b50565b6000813590506134948161346e565b92915050565b6000602082840312156134b0576134af61339b565b5b60006134be84828501613485565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135015780820151818401526020810190506134e6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613529826134c7565b61353381856134d2565b93506135438185602086016134e3565b61354c8161350d565b840191505092915050565b60006020820190508181036000830152613571818461351e565b905092915050565b6000819050919050565b61358c81613579565b811461359757600080fd5b50565b6000813590506135a981613583565b92915050565b6000602082840312156135c5576135c461339b565b5b60006135d38482850161359a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613607826135dc565b9050919050565b613617816135fc565b82525050565b6000602082019050613632600083018461360e565b92915050565b613641816135fc565b811461364c57600080fd5b50565b60008135905061365e81613638565b92915050565b6000806040838503121561367b5761367a61339b565b5b60006136898582860161364f565b925050602061369a8582860161359a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136e68261350d565b810181811067ffffffffffffffff82111715613705576137046136ae565b5b80604052505050565b6000613718613391565b905061372482826136dd565b919050565b600067ffffffffffffffff821115613744576137436136ae565b5b61374d8261350d565b9050602081019050919050565b82818337600083830152505050565b600061377c61377784613729565b61370e565b905082815260208101848484011115613798576137976136a9565b5b6137a384828561375a565b509392505050565b600082601f8301126137c0576137bf6136a4565b5b81356137d0848260208601613769565b91505092915050565b6000602082840312156137ef576137ee61339b565b5b600082013567ffffffffffffffff81111561380d5761380c6133a0565b5b613819848285016137ab565b91505092915050565b61382b81613579565b82525050565b60006020820190506138466000830184613822565b92915050565b6000806000606084860312156138655761386461339b565b5b60006138738682870161364f565b93505060206138848682870161364f565b92505060406138958682870161359a565b9150509250925092565b600060ff82169050919050565b6138b58161389f565b81146138c057600080fd5b50565b6000813590506138d2816138ac565b92915050565b6000602082840312156138ee576138ed61339b565b5b60006138fc848285016138c3565b91505092915050565b6000806040838503121561391c5761391b61339b565b5b600061392a85828601613485565b925050602061393b8582860161364f565b9150509250929050565b60006020828403121561395b5761395a61339b565b5b60006139698482850161364f565b91505092915050565b61397b8161389f565b82525050565b60006020820190506139966000830184613972565b92915050565b6139a58161342a565b81146139b057600080fd5b50565b6000813590506139c28161399c565b92915050565b600080604083850312156139df576139de61339b565b5b60006139ed8582860161364f565b92505060206139fe858286016139b3565b9150509250929050565b600067ffffffffffffffff821115613a2357613a226136ae565b5b613a2c8261350d565b9050602081019050919050565b6000613a4c613a4784613a08565b61370e565b905082815260208101848484011115613a6857613a676136a9565b5b613a7384828561375a565b509392505050565b600082601f830112613a9057613a8f6136a4565b5b8135613aa0848260208601613a39565b91505092915050565b60008060008060808587031215613ac357613ac261339b565b5b6000613ad18782880161364f565b9450506020613ae28782880161364f565b9350506040613af38782880161359a565b925050606085013567ffffffffffffffff811115613b1457613b136133a0565b5b613b2087828801613a7b565b91505092959194509250565b613b3581613460565b82525050565b6000602082019050613b506000830184613b2c565b92915050565b60008060408385031215613b6d57613b6c61339b565b5b6000613b7b8582860161364f565b9250506020613b8c8582860161364f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bcc6020836134d2565b9150613bd782613b96565b602082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4957607f821691505b602082108103613c5c57613c5b613c02565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613cc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c87565b613cce8683613c87565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d0b613d06613d0184613579565b613ce6565b613579565b9050919050565b6000819050919050565b613d2583613cf0565b613d39613d3182613d12565b848454613c94565b825550505050565b600090565b613d4e613d41565b613d59818484613d1c565b505050565b5b81811015613d7d57613d72600082613d46565b600181019050613d5f565b5050565b601f821115613dc257613d9381613c62565b613d9c84613c77565b81016020851015613dab578190505b613dbf613db785613c77565b830182613d5e565b50505b505050565b600082821c905092915050565b6000613de560001984600802613dc7565b1980831691505092915050565b6000613dfe8383613dd4565b9150826002028217905092915050565b613e17826134c7565b67ffffffffffffffff811115613e3057613e2f6136ae565b5b613e3a8254613c31565b613e45828285613d81565b600060209050601f831160018114613e785760008415613e66578287015190505b613e708582613df2565b865550613ed8565b601f198416613e8686613c62565b60005b82811015613eae57848901518255600182019150602085019450602081019050613e89565b86831015613ecb5784890151613ec7601f891682613dd4565b8355505b6001600288020188555050505b505050505050565b6000604082019050613ef5600083018561360e565b613f02602083018461360e565b9392505050565b600081519050613f188161399c565b92915050565b600060208284031215613f3457613f3361339b565b5b6000613f4284828501613f09565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f8582613460565b9150613f9083613460565b9250828201905061ffff811115613faa57613fa9613f4b565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000613fe66013836134d2565b9150613ff182613fb0565b602082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f45786365656473206d6178206e6674206c696d697420706572207472616e736160008201527f6374696f6e2e0000000000000000000000000000000000000000000000000000602082015250565b60006140786026836134d2565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b60006140b98261389f565b91506140c48361389f565b9250828201905060ff8111156140dd576140dc613f4b565b5b92915050565b7f45786365656473206d6178206e6674206c696d6974207065722077616c6c657460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061413f6021836134d2565b915061414a826140e3565b604082019050919050565b6000602082019050818103600083015261416e81614132565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006141ab6017836134d2565b91506141b682614175565b602082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b60006141ec82613579565b91506141f783613579565b925082820261420581613579565b9150828204841483151761421c5761421b613f4b565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006142596013836134d2565b915061426482614223565b602082019050919050565b600060208201905081810360008301526142888161424c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006142eb602f836134d2565b91506142f68261428f565b604082019050919050565b6000602082019050818103600083015261431a816142de565b9050919050565b600081905092915050565b6000614337826134c7565b6143418185614321565b93506143518185602086016134e3565b80840191505092915050565b6000815461436a81613c31565b6143748186614321565b9450600182166000811461438f57600181146143a4576143d7565b60ff19831686528115158202860193506143d7565b6143ad85613c62565b60005b838110156143cf578154818901526001820191506020810190506143b0565b838801955050505b50505092915050565b60006143ec828661432c565b91506143f8828561432c565b9150614404828461435d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061446d6026836134d2565b915061447882614411565b604082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b60006144ae82613579565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144e0576144df613f4b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061452582613579565b915061453083613579565b9250826145405761453f6144eb565b5b828204905092915050565b600061455682613579565b915061456183613579565b925082820390508181111561457957614578613f4b565b5b92915050565b600061458a82613579565b915061459583613579565b9250826145a5576145a46144eb565b5b828206905092915050565b60006145bb82613579565b91506145c683613579565b92508282019050808211156145de576145dd613f4b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061463a82614613565b614644818561461e565b93506146548185602086016134e3565b61465d8161350d565b840191505092915050565b600060808201905061467d600083018761360e565b61468a602083018661360e565b6146976040830185613822565b81810360608301526146a9818461462f565b905095945050505050565b6000815190506146c3816133d1565b92915050565b6000602082840312156146df576146de61339b565b5b60006146ed848285016146b4565b9150509291505056fea2646970667358221220a36653f3bae4ce6e12f15cf1a81f1d1e20fce55c44b09ff764f46e516dbf4d0664736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.