ERC-721
Overview
Max Total Supply
591 NB
Holders
44
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 NBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NotBoki
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; // // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @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); } } } } // // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // // Creator: Chiru Labs /** * @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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public 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 NotBoki is ERC721A, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenIdCounter; string baseURI; uint256 free = 0 ether; uint256 price = 0.005 ether; uint256 public maximumSupply = 5555; uint256 public maxFreeMint = 2222; uint256 public maxForWallet = 30; uint256 txLimit = 10; mapping (address => uint256) mintedByWallet; bool public saleState = false; constructor() ERC721A("NotBoki", "NB") { tokenIdCounter.increment(); } function _baseURI() internal view override returns (string memory) { return baseURI; } function changeMaxFree(uint256 newMax) external onlyOwner{ maxFreeMint = newMax; } function changeMaxWallet(uint256 newMax) external onlyOwner{ maxForWallet = newMax; } function changeTxLimit(uint256 newMax) external onlyOwner{ txLimit = newMax; } function getCurrentMintPrice() public view returns (uint256 currentPrice){ if(totalSupply() < maxFreeMint){ return free; }else{ return price; } } function mint(uint256 amount) public payable { uint256 supply = tokenIdCounter.current(); require(msg.value >= getCurrentMintPrice() * amount, "Not enough Ether sent"); require(amount <= txLimit, "Exceeds tx limit."); require(supply + amount <= maximumSupply, "Exceeds maximum supply"); require(saleState, "Sale paused"); require(mintedByWallet[msg.sender] + amount <= maxForWallet,"it exceeds max per wallet"); mintedByWallet[msg.sender] += amount; internalMint(msg.sender, amount); } function internalMint(address wallet, uint256 amount) internal { _safeMint(wallet, amount); for (uint256 i = 0; i < amount; i++) { tokenIdCounter.increment(); } } function mintToWallets(address[] memory wallets) external onlyOwner{ for(uint256 i = 0; i < wallets.length; i++){ internalMint(wallets[i], 1); } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function saleSwitch() public onlyOwner { saleState = !saleState; } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(payable(msg.sender).send(balance)); } }
{ "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":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeTxLimit","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":[],"name":"getCurrentMintPrice","outputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"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":"maxForWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"mintToWallets","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleSwitch","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":"_newBaseURI","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a556611c37937e08000600b556115b3600c556108ae600d55601e600e55600a600f556000601160006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600781526020017f4e6f74426f6b69000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4e420000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000d792919062000214565b508060029080519060200190620000f092919062000214565b50505062000113620001076200013060201b60201c565b6200013860201b60201c565b6200012a6008620001fe60201b62001a241760201c565b62000328565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200022290620002f3565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030c57607f821691505b602082108103620003225762000321620002c4565b5b50919050565b61439e80620003386000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a591252d11610095578063e437b45011610064578063e437b450146106cf578063e82ded21146106e6578063e985e9c514610711578063f2fde38b1461074e576101e3565b8063a591252d14610615578063b88d4fde14610640578063c87b56dd14610669578063d920334e146106a6576101e3565b80638da5cb5b116100d15780638da5cb5b1461057a57806395d89b41146105a5578063a0712d68146105d0578063a22cb465146105ec576101e3565b80636352211e146104d257806370a082311461050f578063715018a61461054c578063853828b614610563576101e3565b806323b872dd1161017a5780634f6ccce7116101495780634f6ccce71461041857806355122b011461045557806355f804b31461047e578063603f4d52146104a7576101e3565b806323b872dd146103605780632f745c5914610389578063421f9c9f146103c657806342842e0e146103ef576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630b006d60146102e1578063101cd9911461030a57806318160ddd14610335576101e3565b806301ffc9a7146101e85780630480e58b1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b59565b610777565b60405161021c9190612ba1565b60405180910390f35b34801561023157600080fd5b5061023a6108c1565b6040516102479190612bd5565b60405180910390f35b34801561025c57600080fd5b506102656108c7565b6040516102729190612c89565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612cd7565b610959565b6040516102af9190612d45565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612d8c565b6109de565b005b3480156102ed57600080fd5b5061030860048036038101906103039190612cd7565b610af6565b005b34801561031657600080fd5b5061031f610b7c565b60405161032c9190612bd5565b60405180910390f35b34801561034157600080fd5b5061034a610b82565b6040516103579190612bd5565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612dcc565b610b8b565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612d8c565b610b9b565b6040516103bd9190612bd5565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612f67565b610d8b565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612dcc565b610e4f565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612cd7565b610e6f565b60405161044c9190612bd5565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612cd7565b610ec2565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613065565b610f48565b005b3480156104b357600080fd5b506104bc610fde565b6040516104c99190612ba1565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612cd7565b610ff1565b6040516105069190612d45565b60405180910390f35b34801561051b57600080fd5b50610536600480360381019061053191906130ae565b611007565b6040516105439190612bd5565b60405180910390f35b34801561055857600080fd5b506105616110ef565b005b34801561056f57600080fd5b50610578611177565b005b34801561058657600080fd5b5061058f611239565b60405161059c9190612d45565b60405180910390f35b3480156105b157600080fd5b506105ba611263565b6040516105c79190612c89565b60405180910390f35b6105ea60048036038101906105e59190612cd7565b6112f5565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613107565b61152f565b005b34801561062157600080fd5b5061062a6116af565b6040516106379190612bd5565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906131e8565b6116b5565b005b34801561067557600080fd5b50610690600480360381019061068b9190612cd7565b611711565b60405161069d9190612c89565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612cd7565b611745565b005b3480156106db57600080fd5b506106e46117cb565b005b3480156106f257600080fd5b506106fb611873565b6040516107089190612bd5565b60405180910390f35b34801561071d57600080fd5b506107386004803603810190610733919061326b565b611899565b6040516107459190612ba1565b60405180910390f35b34801561075a57600080fd5b50610775600480360381019061077091906130ae565b61192d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba57506108b982611a3a565b5b9050919050565b600c5481565b6060600180546108d6906132da565b80601f0160208091040260200160405190810160405280929190818152602001828054610902906132da565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600061096482611aa4565b6109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a9061337d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982610ff1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a509061340f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a78611ab1565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa681610aa1611ab1565b611899565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906134a1565b60405180910390fd5b610af1838383611ab9565b505050565b610afe611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610b1c611239565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061350d565b60405180910390fd5b80600e8190555050565b600e5481565b60008054905090565b610b96838383611b6b565b505050565b6000610ba683611007565b8210610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde9061359f565b60405180910390fd5b6000610bf1610b82565b905060008060005b83811015610d49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ceb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d3b57868403610d32578195505050505050610d85565b83806001019450505b508080600101915050610bf9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613631565b60405180910390fd5b92915050565b610d93611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610db1611239565b73ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe9061350d565b60405180910390fd5b60005b8151811015610e4b57610e38828281518110610e2957610e28613651565b5b602002602001015160016120a9565b8080610e43906136af565b915050610e0a565b5050565b610e6a838383604051806020016040528060008152506116b5565b505050565b6000610e79610b82565b8210610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613769565b60405180910390fd5b819050919050565b610eca611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610ee8611239565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f359061350d565b60405180910390fd5b80600d8190555050565b610f50611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610f6e611239565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb9061350d565b60405180910390fd5b8060099080519060200190610fda929190612a10565b5050565b601160009054906101000a900460ff1681565b6000610ffc826120e0565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906137fb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110f7611ab1565b73ffffffffffffffffffffffffffffffffffffffff16611115611239565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111629061350d565b60405180910390fd5b611175600061227a565b565b61117f611ab1565b73ffffffffffffffffffffffffffffffffffffffff1661119d611239565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea9061350d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061123657600080fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611272906132da565b80601f016020809104026020016040519081016040528092919081815260200182805461129e906132da565b80156112eb5780601f106112c0576101008083540402835291602001916112eb565b820191906000526020600020905b8154815290600101906020018083116112ce57829003601f168201915b5050505050905090565b60006113016008612340565b90508161130c611873565b611316919061381b565b341015611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f906138c1565b60405180910390fd5b600f5482111561139d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113949061392d565b60405180910390fd5b600c5482826113ac919061394d565b11156113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e4906139ef565b60405180910390fd5b601160009054906101000a900460ff1661143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613a5b565b60405180910390fd5b600e5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461148a919061394d565b11156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613ac7565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151a919061394d565b9250508190555061152b33836120a9565b5050565b611537611ab1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613b33565b60405180910390fd5b80600660006115b1611ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165e611ab1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a39190612ba1565b60405180910390a35050565b600d5481565b6116c0848484611b6b565b6116cc8484848461234e565b61170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613bc5565b60405180910390fd5b50505050565b6060600961171e836124d5565b60405160200161172f929190613d01565b6040516020818303038152906040529050919050565b61174d611ab1565b73ffffffffffffffffffffffffffffffffffffffff1661176b611239565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b89061350d565b60405180910390fd5b80600f8190555050565b6117d3611ab1565b73ffffffffffffffffffffffffffffffffffffffff166117f1611239565b73ffffffffffffffffffffffffffffffffffffffff1614611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e9061350d565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600d54611880610b82565b101561189057600a549050611896565b600b5490505b90565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611935611ab1565b73ffffffffffffffffffffffffffffffffffffffff16611953611239565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061350d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613da2565b60405180910390fd5b611a218161227a565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b76826120e0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b9d611ab1565b73ffffffffffffffffffffffffffffffffffffffff161480611bf95750611bc2611ab1565b73ffffffffffffffffffffffffffffffffffffffff16611be184610959565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c155750611c148260000151611c0f611ab1565b611899565b5b905080611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613e34565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613ec6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90613f58565b60405180910390fd5b611d458585856001612635565b611d556000848460000151611ab9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361203957611f9881611aa4565b156120385782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a2858585600161263b565b5050505050565b6120b38282612641565b60005b818110156120db576120c86008611a24565b80806120d3906136af565b9150506120b6565b505050565b6120e8612a96565b6120f182611aa4565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790613fea565b60405180910390fd5b60008290505b60008110612239576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461222a578092505050612275565b50808060019003915050612136565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c9061407c565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600061236f8473ffffffffffffffffffffffffffffffffffffffff1661265f565b156124c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612398611ab1565b8786866040518563ffffffff1660e01b81526004016123ba94939291906140f1565b6020604051808303816000875af19250505080156123f657506040513d601f19601f820116820180604052508101906123f39190614152565b60015b612478573d8060008114612426576040519150601f19603f3d011682016040523d82523d6000602084013e61242b565b606091505b506000815103612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790613bc5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124cd565b600190505b949350505050565b60606000820361251c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612630565b600082905060005b6000821461254e578080612537906136af565b915050600a8261254791906141ae565b9150612524565b60008167ffffffffffffffff81111561256a57612569612e24565b5b6040519080825280601f01601f19166020018201604052801561259c5781602001600182028036833780820191505090505b5090505b60008514612629576001826125b591906141df565b9150600a856125c49190614213565b60306125d0919061394d565b60f81b8183815181106125e6576125e5613651565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262291906141ae565b94506125a0565b8093505050505b919050565b50505050565b50505050565b61265b828260405180602001604052806000815250612682565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61268f8383836001612694565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612700906142b6565b60405180910390fd5b6000840361274c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274390614348565b60405180910390fd5b6127596000868387612635565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129f357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129de5761299e600088848861234e565b6129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490613bc5565b60405180910390fd5b5b81806001019250508080600101915050612927565b508060008190555050612a09600086838761263b565b5050505050565b828054612a1c906132da565b90600052602060002090601f016020900481019282612a3e5760008555612a85565b82601f10612a5757805160ff1916838001178555612a85565b82800160010185558215612a85579182015b82811115612a84578251825591602001919060010190612a69565b5b509050612a929190612ad0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ae9576000816000905550600101612ad1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3681612b01565b8114612b4157600080fd5b50565b600081359050612b5381612b2d565b92915050565b600060208284031215612b6f57612b6e612af7565b5b6000612b7d84828501612b44565b91505092915050565b60008115159050919050565b612b9b81612b86565b82525050565b6000602082019050612bb66000830184612b92565b92915050565b6000819050919050565b612bcf81612bbc565b82525050565b6000602082019050612bea6000830184612bc6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c2a578082015181840152602081019050612c0f565b83811115612c39576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c5b82612bf0565b612c658185612bfb565b9350612c75818560208601612c0c565b612c7e81612c3f565b840191505092915050565b60006020820190508181036000830152612ca38184612c50565b905092915050565b612cb481612bbc565b8114612cbf57600080fd5b50565b600081359050612cd181612cab565b92915050565b600060208284031215612ced57612cec612af7565b5b6000612cfb84828501612cc2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2f82612d04565b9050919050565b612d3f81612d24565b82525050565b6000602082019050612d5a6000830184612d36565b92915050565b612d6981612d24565b8114612d7457600080fd5b50565b600081359050612d8681612d60565b92915050565b60008060408385031215612da357612da2612af7565b5b6000612db185828601612d77565b9250506020612dc285828601612cc2565b9150509250929050565b600080600060608486031215612de557612de4612af7565b5b6000612df386828701612d77565b9350506020612e0486828701612d77565b9250506040612e1586828701612cc2565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e5c82612c3f565b810181811067ffffffffffffffff82111715612e7b57612e7a612e24565b5b80604052505050565b6000612e8e612aed565b9050612e9a8282612e53565b919050565b600067ffffffffffffffff821115612eba57612eb9612e24565b5b602082029050602081019050919050565b600080fd5b6000612ee3612ede84612e9f565b612e84565b90508083825260208201905060208402830185811115612f0657612f05612ecb565b5b835b81811015612f2f5780612f1b8882612d77565b845260208401935050602081019050612f08565b5050509392505050565b600082601f830112612f4e57612f4d612e1f565b5b8135612f5e848260208601612ed0565b91505092915050565b600060208284031215612f7d57612f7c612af7565b5b600082013567ffffffffffffffff811115612f9b57612f9a612afc565b5b612fa784828501612f39565b91505092915050565b600080fd5b600067ffffffffffffffff821115612fd057612fcf612e24565b5b612fd982612c3f565b9050602081019050919050565b82818337600083830152505050565b600061300861300384612fb5565b612e84565b90508281526020810184848401111561302457613023612fb0565b5b61302f848285612fe6565b509392505050565b600082601f83011261304c5761304b612e1f565b5b813561305c848260208601612ff5565b91505092915050565b60006020828403121561307b5761307a612af7565b5b600082013567ffffffffffffffff81111561309957613098612afc565b5b6130a584828501613037565b91505092915050565b6000602082840312156130c4576130c3612af7565b5b60006130d284828501612d77565b91505092915050565b6130e481612b86565b81146130ef57600080fd5b50565b600081359050613101816130db565b92915050565b6000806040838503121561311e5761311d612af7565b5b600061312c85828601612d77565b925050602061313d858286016130f2565b9150509250929050565b600067ffffffffffffffff82111561316257613161612e24565b5b61316b82612c3f565b9050602081019050919050565b600061318b61318684613147565b612e84565b9050828152602081018484840111156131a7576131a6612fb0565b5b6131b2848285612fe6565b509392505050565b600082601f8301126131cf576131ce612e1f565b5b81356131df848260208601613178565b91505092915050565b6000806000806080858703121561320257613201612af7565b5b600061321087828801612d77565b945050602061322187828801612d77565b935050604061323287828801612cc2565b925050606085013567ffffffffffffffff81111561325357613252612afc565b5b61325f878288016131ba565b91505092959194509250565b6000806040838503121561328257613281612af7565b5b600061329085828601612d77565b92505060206132a185828601612d77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f257607f821691505b602082108103613305576133046132ab565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613367602d83612bfb565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f9602283612bfb565b91506134048261339d565b604082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061348b603983612bfb565b91506134968261342f565b604082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f7602083612bfb565b9150613502826134c1565b602082019050919050565b60006020820190508181036000830152613526816134ea565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613589602283612bfb565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061361b602e83612bfb565b9150613626826135bf565b604082019050919050565b6000602082019050818103600083015261364a8161360e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136ba82612bbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136ec576136eb613680565b5b600182019050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613753602383612bfb565b915061375e826136f7565b604082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006137e5602b83612bfb565b91506137f082613789565b604082019050919050565b60006020820190508181036000830152613814816137d8565b9050919050565b600061382682612bbc565b915061383183612bbc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386a57613869613680565b5b828202905092915050565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b60006138ab601583612bfb565b91506138b682613875565b602082019050919050565b600060208201905081810360008301526138da8161389e565b9050919050565b7f45786365656473207478206c696d69742e000000000000000000000000000000600082015250565b6000613917601183612bfb565b9150613922826138e1565b602082019050919050565b600060208201905081810360008301526139468161390a565b9050919050565b600061395882612bbc565b915061396383612bbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399857613997613680565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006139d9601683612bfb565b91506139e4826139a3565b602082019050919050565b60006020820190508181036000830152613a08816139cc565b9050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b6000613a45600b83612bfb565b9150613a5082613a0f565b602082019050919050565b60006020820190508181036000830152613a7481613a38565b9050919050565b7f69742065786365656473206d6178207065722077616c6c657400000000000000600082015250565b6000613ab1601983612bfb565b9150613abc82613a7b565b602082019050919050565b60006020820190508181036000830152613ae081613aa4565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613b1d601a83612bfb565b9150613b2882613ae7565b602082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613baf603383612bfb565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c12816132da565b613c1c8186613be5565b94506001821660008114613c375760018114613c4857613c7b565b60ff19831686528186019350613c7b565b613c5185613bf0565b60005b83811015613c7357815481890152600182019150602081019050613c54565b838801955050505b50505092915050565b6000613c8f82612bf0565b613c998185613be5565b9350613ca9818560208601612c0c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ceb600583613be5565b9150613cf682613cb5565b600582019050919050565b6000613d0d8285613c05565b9150613d198284613c84565b9150613d2482613cde565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d8c602683612bfb565b9150613d9782613d30565b604082019050919050565b60006020820190508181036000830152613dbb81613d7f565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613e1e603283612bfb565b9150613e2982613dc2565b604082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613eb0602683612bfb565b9150613ebb82613e54565b604082019050919050565b60006020820190508181036000830152613edf81613ea3565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f42602583612bfb565b9150613f4d82613ee6565b604082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613fd4602a83612bfb565b9150613fdf82613f78565b604082019050919050565b6000602082019050818103600083015261400381613fc7565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614066602f83612bfb565b91506140718261400a565b604082019050919050565b6000602082019050818103600083015261409581614059565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140c38261409c565b6140cd81856140a7565b93506140dd818560208601612c0c565b6140e681612c3f565b840191505092915050565b60006080820190506141066000830187612d36565b6141136020830186612d36565b6141206040830185612bc6565b818103606083015261413281846140b8565b905095945050505050565b60008151905061414c81612b2d565b92915050565b60006020828403121561416857614167612af7565b5b60006141768482850161413d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141b982612bbc565b91506141c483612bbc565b9250826141d4576141d361417f565b5b828204905092915050565b60006141ea82612bbc565b91506141f583612bbc565b92508282101561420857614207613680565b5b828203905092915050565b600061421e82612bbc565b915061422983612bbc565b9250826142395761423861417f565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006142a0602183612bfb565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614332602883612bfb565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b905091905056fea2646970667358221220b61356bb2af6a1ec47c6be8d61f37d558a58c38c39408dc617598c71ca7a653964736f6c634300080e0033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636352211e11610102578063a591252d11610095578063e437b45011610064578063e437b450146106cf578063e82ded21146106e6578063e985e9c514610711578063f2fde38b1461074e576101e3565b8063a591252d14610615578063b88d4fde14610640578063c87b56dd14610669578063d920334e146106a6576101e3565b80638da5cb5b116100d15780638da5cb5b1461057a57806395d89b41146105a5578063a0712d68146105d0578063a22cb465146105ec576101e3565b80636352211e146104d257806370a082311461050f578063715018a61461054c578063853828b614610563576101e3565b806323b872dd1161017a5780634f6ccce7116101495780634f6ccce71461041857806355122b011461045557806355f804b31461047e578063603f4d52146104a7576101e3565b806323b872dd146103605780632f745c5914610389578063421f9c9f146103c657806342842e0e146103ef576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630b006d60146102e1578063101cd9911461030a57806318160ddd14610335576101e3565b806301ffc9a7146101e85780630480e58b1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b59565b610777565b60405161021c9190612ba1565b60405180910390f35b34801561023157600080fd5b5061023a6108c1565b6040516102479190612bd5565b60405180910390f35b34801561025c57600080fd5b506102656108c7565b6040516102729190612c89565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612cd7565b610959565b6040516102af9190612d45565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612d8c565b6109de565b005b3480156102ed57600080fd5b5061030860048036038101906103039190612cd7565b610af6565b005b34801561031657600080fd5b5061031f610b7c565b60405161032c9190612bd5565b60405180910390f35b34801561034157600080fd5b5061034a610b82565b6040516103579190612bd5565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612dcc565b610b8b565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612d8c565b610b9b565b6040516103bd9190612bd5565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612f67565b610d8b565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612dcc565b610e4f565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612cd7565b610e6f565b60405161044c9190612bd5565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612cd7565b610ec2565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613065565b610f48565b005b3480156104b357600080fd5b506104bc610fde565b6040516104c99190612ba1565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612cd7565b610ff1565b6040516105069190612d45565b60405180910390f35b34801561051b57600080fd5b50610536600480360381019061053191906130ae565b611007565b6040516105439190612bd5565b60405180910390f35b34801561055857600080fd5b506105616110ef565b005b34801561056f57600080fd5b50610578611177565b005b34801561058657600080fd5b5061058f611239565b60405161059c9190612d45565b60405180910390f35b3480156105b157600080fd5b506105ba611263565b6040516105c79190612c89565b60405180910390f35b6105ea60048036038101906105e59190612cd7565b6112f5565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613107565b61152f565b005b34801561062157600080fd5b5061062a6116af565b6040516106379190612bd5565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906131e8565b6116b5565b005b34801561067557600080fd5b50610690600480360381019061068b9190612cd7565b611711565b60405161069d9190612c89565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612cd7565b611745565b005b3480156106db57600080fd5b506106e46117cb565b005b3480156106f257600080fd5b506106fb611873565b6040516107089190612bd5565b60405180910390f35b34801561071d57600080fd5b506107386004803603810190610733919061326b565b611899565b6040516107459190612ba1565b60405180910390f35b34801561075a57600080fd5b50610775600480360381019061077091906130ae565b61192d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba57506108b982611a3a565b5b9050919050565b600c5481565b6060600180546108d6906132da565b80601f0160208091040260200160405190810160405280929190818152602001828054610902906132da565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600061096482611aa4565b6109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a9061337d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982610ff1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a509061340f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a78611ab1565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa681610aa1611ab1565b611899565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906134a1565b60405180910390fd5b610af1838383611ab9565b505050565b610afe611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610b1c611239565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061350d565b60405180910390fd5b80600e8190555050565b600e5481565b60008054905090565b610b96838383611b6b565b505050565b6000610ba683611007565b8210610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde9061359f565b60405180910390fd5b6000610bf1610b82565b905060008060005b83811015610d49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ceb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d3b57868403610d32578195505050505050610d85565b83806001019450505b508080600101915050610bf9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613631565b60405180910390fd5b92915050565b610d93611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610db1611239565b73ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe9061350d565b60405180910390fd5b60005b8151811015610e4b57610e38828281518110610e2957610e28613651565b5b602002602001015160016120a9565b8080610e43906136af565b915050610e0a565b5050565b610e6a838383604051806020016040528060008152506116b5565b505050565b6000610e79610b82565b8210610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613769565b60405180910390fd5b819050919050565b610eca611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610ee8611239565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f359061350d565b60405180910390fd5b80600d8190555050565b610f50611ab1565b73ffffffffffffffffffffffffffffffffffffffff16610f6e611239565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb9061350d565b60405180910390fd5b8060099080519060200190610fda929190612a10565b5050565b601160009054906101000a900460ff1681565b6000610ffc826120e0565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906137fb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110f7611ab1565b73ffffffffffffffffffffffffffffffffffffffff16611115611239565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111629061350d565b60405180910390fd5b611175600061227a565b565b61117f611ab1565b73ffffffffffffffffffffffffffffffffffffffff1661119d611239565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea9061350d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061123657600080fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611272906132da565b80601f016020809104026020016040519081016040528092919081815260200182805461129e906132da565b80156112eb5780601f106112c0576101008083540402835291602001916112eb565b820191906000526020600020905b8154815290600101906020018083116112ce57829003601f168201915b5050505050905090565b60006113016008612340565b90508161130c611873565b611316919061381b565b341015611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f906138c1565b60405180910390fd5b600f5482111561139d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113949061392d565b60405180910390fd5b600c5482826113ac919061394d565b11156113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e4906139ef565b60405180910390fd5b601160009054906101000a900460ff1661143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613a5b565b60405180910390fd5b600e5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461148a919061394d565b11156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613ac7565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151a919061394d565b9250508190555061152b33836120a9565b5050565b611537611ab1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613b33565b60405180910390fd5b80600660006115b1611ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165e611ab1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a39190612ba1565b60405180910390a35050565b600d5481565b6116c0848484611b6b565b6116cc8484848461234e565b61170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613bc5565b60405180910390fd5b50505050565b6060600961171e836124d5565b60405160200161172f929190613d01565b6040516020818303038152906040529050919050565b61174d611ab1565b73ffffffffffffffffffffffffffffffffffffffff1661176b611239565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b89061350d565b60405180910390fd5b80600f8190555050565b6117d3611ab1565b73ffffffffffffffffffffffffffffffffffffffff166117f1611239565b73ffffffffffffffffffffffffffffffffffffffff1614611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e9061350d565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600d54611880610b82565b101561189057600a549050611896565b600b5490505b90565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611935611ab1565b73ffffffffffffffffffffffffffffffffffffffff16611953611239565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061350d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613da2565b60405180910390fd5b611a218161227a565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b76826120e0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b9d611ab1565b73ffffffffffffffffffffffffffffffffffffffff161480611bf95750611bc2611ab1565b73ffffffffffffffffffffffffffffffffffffffff16611be184610959565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c155750611c148260000151611c0f611ab1565b611899565b5b905080611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613e34565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613ec6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90613f58565b60405180910390fd5b611d458585856001612635565b611d556000848460000151611ab9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361203957611f9881611aa4565b156120385782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a2858585600161263b565b5050505050565b6120b38282612641565b60005b818110156120db576120c86008611a24565b80806120d3906136af565b9150506120b6565b505050565b6120e8612a96565b6120f182611aa4565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790613fea565b60405180910390fd5b60008290505b60008110612239576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461222a578092505050612275565b50808060019003915050612136565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c9061407c565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600061236f8473ffffffffffffffffffffffffffffffffffffffff1661265f565b156124c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612398611ab1565b8786866040518563ffffffff1660e01b81526004016123ba94939291906140f1565b6020604051808303816000875af19250505080156123f657506040513d601f19601f820116820180604052508101906123f39190614152565b60015b612478573d8060008114612426576040519150601f19603f3d011682016040523d82523d6000602084013e61242b565b606091505b506000815103612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790613bc5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124cd565b600190505b949350505050565b60606000820361251c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612630565b600082905060005b6000821461254e578080612537906136af565b915050600a8261254791906141ae565b9150612524565b60008167ffffffffffffffff81111561256a57612569612e24565b5b6040519080825280601f01601f19166020018201604052801561259c5781602001600182028036833780820191505090505b5090505b60008514612629576001826125b591906141df565b9150600a856125c49190614213565b60306125d0919061394d565b60f81b8183815181106125e6576125e5613651565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262291906141ae565b94506125a0565b8093505050505b919050565b50505050565b50505050565b61265b828260405180602001604052806000815250612682565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61268f8383836001612694565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612700906142b6565b60405180910390fd5b6000840361274c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274390614348565b60405180910390fd5b6127596000868387612635565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129f357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129de5761299e600088848861234e565b6129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490613bc5565b60405180910390fd5b5b81806001019250508080600101915050612927565b508060008190555050612a09600086838761263b565b5050505050565b828054612a1c906132da565b90600052602060002090601f016020900481019282612a3e5760008555612a85565b82601f10612a5757805160ff1916838001178555612a85565b82800160010185558215612a85579182015b82811115612a84578251825591602001919060010190612a69565b5b509050612a929190612ad0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ae9576000816000905550600101612ad1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3681612b01565b8114612b4157600080fd5b50565b600081359050612b5381612b2d565b92915050565b600060208284031215612b6f57612b6e612af7565b5b6000612b7d84828501612b44565b91505092915050565b60008115159050919050565b612b9b81612b86565b82525050565b6000602082019050612bb66000830184612b92565b92915050565b6000819050919050565b612bcf81612bbc565b82525050565b6000602082019050612bea6000830184612bc6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c2a578082015181840152602081019050612c0f565b83811115612c39576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c5b82612bf0565b612c658185612bfb565b9350612c75818560208601612c0c565b612c7e81612c3f565b840191505092915050565b60006020820190508181036000830152612ca38184612c50565b905092915050565b612cb481612bbc565b8114612cbf57600080fd5b50565b600081359050612cd181612cab565b92915050565b600060208284031215612ced57612cec612af7565b5b6000612cfb84828501612cc2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2f82612d04565b9050919050565b612d3f81612d24565b82525050565b6000602082019050612d5a6000830184612d36565b92915050565b612d6981612d24565b8114612d7457600080fd5b50565b600081359050612d8681612d60565b92915050565b60008060408385031215612da357612da2612af7565b5b6000612db185828601612d77565b9250506020612dc285828601612cc2565b9150509250929050565b600080600060608486031215612de557612de4612af7565b5b6000612df386828701612d77565b9350506020612e0486828701612d77565b9250506040612e1586828701612cc2565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e5c82612c3f565b810181811067ffffffffffffffff82111715612e7b57612e7a612e24565b5b80604052505050565b6000612e8e612aed565b9050612e9a8282612e53565b919050565b600067ffffffffffffffff821115612eba57612eb9612e24565b5b602082029050602081019050919050565b600080fd5b6000612ee3612ede84612e9f565b612e84565b90508083825260208201905060208402830185811115612f0657612f05612ecb565b5b835b81811015612f2f5780612f1b8882612d77565b845260208401935050602081019050612f08565b5050509392505050565b600082601f830112612f4e57612f4d612e1f565b5b8135612f5e848260208601612ed0565b91505092915050565b600060208284031215612f7d57612f7c612af7565b5b600082013567ffffffffffffffff811115612f9b57612f9a612afc565b5b612fa784828501612f39565b91505092915050565b600080fd5b600067ffffffffffffffff821115612fd057612fcf612e24565b5b612fd982612c3f565b9050602081019050919050565b82818337600083830152505050565b600061300861300384612fb5565b612e84565b90508281526020810184848401111561302457613023612fb0565b5b61302f848285612fe6565b509392505050565b600082601f83011261304c5761304b612e1f565b5b813561305c848260208601612ff5565b91505092915050565b60006020828403121561307b5761307a612af7565b5b600082013567ffffffffffffffff81111561309957613098612afc565b5b6130a584828501613037565b91505092915050565b6000602082840312156130c4576130c3612af7565b5b60006130d284828501612d77565b91505092915050565b6130e481612b86565b81146130ef57600080fd5b50565b600081359050613101816130db565b92915050565b6000806040838503121561311e5761311d612af7565b5b600061312c85828601612d77565b925050602061313d858286016130f2565b9150509250929050565b600067ffffffffffffffff82111561316257613161612e24565b5b61316b82612c3f565b9050602081019050919050565b600061318b61318684613147565b612e84565b9050828152602081018484840111156131a7576131a6612fb0565b5b6131b2848285612fe6565b509392505050565b600082601f8301126131cf576131ce612e1f565b5b81356131df848260208601613178565b91505092915050565b6000806000806080858703121561320257613201612af7565b5b600061321087828801612d77565b945050602061322187828801612d77565b935050604061323287828801612cc2565b925050606085013567ffffffffffffffff81111561325357613252612afc565b5b61325f878288016131ba565b91505092959194509250565b6000806040838503121561328257613281612af7565b5b600061329085828601612d77565b92505060206132a185828601612d77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f257607f821691505b602082108103613305576133046132ab565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613367602d83612bfb565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f9602283612bfb565b91506134048261339d565b604082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061348b603983612bfb565b91506134968261342f565b604082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f7602083612bfb565b9150613502826134c1565b602082019050919050565b60006020820190508181036000830152613526816134ea565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613589602283612bfb565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061361b602e83612bfb565b9150613626826135bf565b604082019050919050565b6000602082019050818103600083015261364a8161360e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136ba82612bbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136ec576136eb613680565b5b600182019050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613753602383612bfb565b915061375e826136f7565b604082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006137e5602b83612bfb565b91506137f082613789565b604082019050919050565b60006020820190508181036000830152613814816137d8565b9050919050565b600061382682612bbc565b915061383183612bbc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386a57613869613680565b5b828202905092915050565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b60006138ab601583612bfb565b91506138b682613875565b602082019050919050565b600060208201905081810360008301526138da8161389e565b9050919050565b7f45786365656473207478206c696d69742e000000000000000000000000000000600082015250565b6000613917601183612bfb565b9150613922826138e1565b602082019050919050565b600060208201905081810360008301526139468161390a565b9050919050565b600061395882612bbc565b915061396383612bbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399857613997613680565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006139d9601683612bfb565b91506139e4826139a3565b602082019050919050565b60006020820190508181036000830152613a08816139cc565b9050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b6000613a45600b83612bfb565b9150613a5082613a0f565b602082019050919050565b60006020820190508181036000830152613a7481613a38565b9050919050565b7f69742065786365656473206d6178207065722077616c6c657400000000000000600082015250565b6000613ab1601983612bfb565b9150613abc82613a7b565b602082019050919050565b60006020820190508181036000830152613ae081613aa4565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613b1d601a83612bfb565b9150613b2882613ae7565b602082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613baf603383612bfb565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c12816132da565b613c1c8186613be5565b94506001821660008114613c375760018114613c4857613c7b565b60ff19831686528186019350613c7b565b613c5185613bf0565b60005b83811015613c7357815481890152600182019150602081019050613c54565b838801955050505b50505092915050565b6000613c8f82612bf0565b613c998185613be5565b9350613ca9818560208601612c0c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ceb600583613be5565b9150613cf682613cb5565b600582019050919050565b6000613d0d8285613c05565b9150613d198284613c84565b9150613d2482613cde565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d8c602683612bfb565b9150613d9782613d30565b604082019050919050565b60006020820190508181036000830152613dbb81613d7f565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613e1e603283612bfb565b9150613e2982613dc2565b604082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613eb0602683612bfb565b9150613ebb82613e54565b604082019050919050565b60006020820190508181036000830152613edf81613ea3565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f42602583612bfb565b9150613f4d82613ee6565b604082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613fd4602a83612bfb565b9150613fdf82613f78565b604082019050919050565b6000602082019050818103600083015261400381613fc7565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614066602f83612bfb565b91506140718261400a565b604082019050919050565b6000602082019050818103600083015261409581614059565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140c38261409c565b6140cd81856140a7565b93506140dd818560208601612c0c565b6140e681612c3f565b840191505092915050565b60006080820190506141066000830187612d36565b6141136020830186612d36565b6141206040830185612bc6565b818103606083015261413281846140b8565b905095945050505050565b60008151905061414c81612b2d565b92915050565b60006020828403121561416857614167612af7565b5b60006141768482850161413d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141b982612bbc565b91506141c483612bbc565b9250826141d4576141d361417f565b5b828204905092915050565b60006141ea82612bbc565b91506141f583612bbc565b92508282101561420857614207613680565b5b828203905092915050565b600061421e82612bbc565b915061422983612bbc565b9250826142395761423861417f565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006142a0602183612bfb565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614332602883612bfb565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b905091905056fea2646970667358221220b61356bb2af6a1ec47c6be8d61f37d558a58c38c39408dc617598c71ca7a653964736f6c634300080e0033
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.