ERC-721
Overview
Max Total Supply
2,833 WITCHV
Holders
632
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 WITCHVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WitchesVillage
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** * @title Witches Village contract * @dev Extends ERC721A - thanks azuki */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.4; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.4; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.4; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.4; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.4; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.4; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.4; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.4; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.4; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.4; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.4; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract WitchesVillage is ERC721A, Ownable, ReentrancyGuard { string public baseURI; uint public price = 0.003 ether; uint public maxPerTx = 5; uint public maxPerWallet = 10; uint public totalFree = 2777; uint public maxSupply = 8888; uint public nextOwnerToExplicitlySet; bool public mintEnabled; constructor() ERC721A("Witches Village", "WITCHV"){ } function mint(uint256 amt) external payable { uint cost = price; if(totalSupply() + amt < totalFree + 1) { cost = 0; } require(mintEnabled, "Minting is not live yet, hold on rapid witch."); require(msg.sender == tx.origin,"Be yourself, honey."); require(msg.value == amt * cost,"Please send the exact amount."); require( amt < maxPerTx + 1, "Max per TX reached."); require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!"); require(totalSupply() + amt < maxSupply + 1,"No more witches"); _safeMint(msg.sender, amt); } function ownerBatchMint(uint256 amt) external onlyOwner { require(totalSupply() + amt < maxSupply + 1,"too many!"); _safeMint(msg.sender, amt); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660aa87bee538000600a556005600b55600a600c55610ad9600d556122b8600e553480156200003257600080fd5b506040518060400160405280600f81526020017f576974636865732056696c6c61676500000000000000000000000000000000008152506040518060400160405280600681526020017f57495443485600000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001cf565b508060029080519060200190620000d0929190620001cf565b505050620000f3620000e76200010160201b60201c565b6200010960201b60201c565b6001600881905550620002e4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dd906200027f565b90600052602060002090601f0160209004810192826200020157600085556200024d565b82601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b5b808211156200027b57600081600090555060010162000261565b5090565b600060028204905060018216806200029857607f821691505b60208210811415620002af57620002ae620002b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61493f80620002f46000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba01461079c578063dc33e681146107c7578063e985e9c514610804578063f2fde38b14610841578063f968adbe1461086a5761021a565b8063b88d4fde146106b7578063c6f6f216146106e0578063c87b56dd14610709578063d123973014610746578063d5abeb01146107715761021a565b806391b7f5ed116100f257806391b7f5ed146105f357806395d89b411461061c578063a035b1fe14610647578063a0712d6814610672578063a22cb4651461068e5761021a565b8063715018a6146105715780637d55094d146105885780638da5cb5b1461059f5780638db89f07146105ca5761021a565b80633ccfd60b116101a657806355f804b31161017557806355f804b31461047a578063563aaf11146104a35780636352211e146104cc5780636c0360eb1461050957806370a08231146105345761021a565b80633ccfd60b146103d257806342842e0e146103e9578063453c2310146104125780634f6ccce71461043d5761021a565b806318160ddd116101ed57806318160ddd146102ed578063228025e81461031857806323b872dd146103415780632f745c591461036a578063333e44e6146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132d8565b610895565b6040516102539190613922565b60405180910390f35b34801561026857600080fd5b506102716109df565b60405161027e919061393d565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061336f565b610a71565b6040516102bb91906138bb565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061329c565b610af6565b005b3480156102f957600080fd5b50610302610c0f565b60405161030f9190613cff565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061336f565b610c18565b005b34801561034d57600080fd5b5061036860048036038101906103639190613196565b610c9e565b005b34801561037657600080fd5b50610391600480360381019061038c919061329c565b610cae565b60405161039e9190613cff565b60405180910390f35b3480156103b357600080fd5b506103bc610ea0565b6040516103c99190613cff565b60405180910390f35b3480156103de57600080fd5b506103e7610ea6565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613196565b611027565b005b34801561041e57600080fd5b50610427611047565b6040516104349190613cff565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f919061336f565b61104d565b6040516104719190613cff565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061332a565b6110a0565b005b3480156104af57600080fd5b506104ca60048036038101906104c5919061336f565b611132565b005b3480156104d857600080fd5b506104f360048036038101906104ee919061336f565b6111b8565b60405161050091906138bb565b60405180910390f35b34801561051557600080fd5b5061051e6111ce565b60405161052b919061393d565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613131565b61125c565b6040516105689190613cff565b60405180910390f35b34801561057d57600080fd5b50610586611345565b005b34801561059457600080fd5b5061059d6113cd565b005b3480156105ab57600080fd5b506105b4611475565b6040516105c191906138bb565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec919061336f565b61149f565b005b3480156105ff57600080fd5b5061061a6004803603810190610615919061336f565b61158a565b005b34801561062857600080fd5b50610631611610565b60405161063e919061393d565b60405180910390f35b34801561065357600080fd5b5061065c6116a2565b6040516106699190613cff565b60405180910390f35b61068c6004803603810190610687919061336f565b6116a8565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613260565b6118fe565b005b3480156106c357600080fd5b506106de60048036038101906106d991906131e5565b611a7f565b005b3480156106ec57600080fd5b506107076004803603810190610702919061336f565b611adb565b005b34801561071557600080fd5b50610730600480360381019061072b919061336f565b611b61565b60405161073d919061393d565b60405180910390f35b34801561075257600080fd5b5061075b611c09565b6040516107689190613922565b60405180910390f35b34801561077d57600080fd5b50610786611c1c565b6040516107939190613cff565b60405180910390f35b3480156107a857600080fd5b506107b1611c22565b6040516107be9190613cff565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613131565b611c28565b6040516107fb9190613cff565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061315a565b611c3a565b6040516108389190613922565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613131565b611cce565b005b34801561087657600080fd5b5061087f611dc6565b60405161088c9190613cff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d857506109d782611dcc565b5b9050919050565b6060600180546109ee90613f89565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90613f89565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7c82611e36565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613cdf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b01826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b9f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91611e43565b73ffffffffffffffffffffffffffffffffffffffff161480610bc05750610bbf81610bba611e43565b611c3a565b5b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613a7f565b60405180910390fd5b610c0a838383611e4b565b505050565b60008054905090565b610c20611e43565b73ffffffffffffffffffffffffffffffffffffffff16610c3e611475565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90613adf565b60405180910390fd5b80600e8190555050565b610ca9838383611efd565b505050565b6000610cb98361125c565b8210610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf19061395f565b60405180910390fd5b6000610d04610c0f565b905060008060005b83811015610e5e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e505786841415610e47578195505050505050610e9a565b83806001019450505b508080600101915050610d0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613c7f565b60405180910390fd5b92915050565b600d5481565b610eae611e43565b73ffffffffffffffffffffffffffffffffffffffff16610ecc611475565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613adf565b60405180910390fd5b60026008541415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613c9f565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f96906138a6565b60006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505090508061101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613bbf565b60405180910390fd5b506001600881905550565b61104283838360405180602001604052806000815250611a7f565b505050565b600c5481565b6000611057610c0f565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906139ff565b60405180910390fd5b819050919050565b6110a8611e43565b73ffffffffffffffffffffffffffffffffffffffff166110c6611475565b73ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390613adf565b60405180910390fd5b81816009919061112d929190612f39565b505050565b61113a611e43565b73ffffffffffffffffffffffffffffffffffffffff16611158611475565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613adf565b60405180910390fd5b80600d8190555050565b60006111c38261243d565b600001519050919050565b600980546111db90613f89565b80601f016020809104026020016040519081016040528092919081815260200182805461120790613f89565b80156112545780601f1061122957610100808354040283529160200191611254565b820191906000526020600020905b81548152906001019060200180831161123757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613a9f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61134d611e43565b73ffffffffffffffffffffffffffffffffffffffff1661136b611475565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613adf565b60405180910390fd5b6113cb60006125d7565b565b6113d5611e43565b73ffffffffffffffffffffffffffffffffffffffff166113f3611475565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613adf565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a7611e43565b73ffffffffffffffffffffffffffffffffffffffff166114c5611475565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613adf565b60405180910390fd5b6001600e5461152a9190613dbe565b81611533610c0f565b61153d9190613dbe565b1061157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a5f565b60405180910390fd5b611587338261269d565b50565b611592611e43565b73ffffffffffffffffffffffffffffffffffffffff166115b0611475565b73ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613adf565b60405180910390fd5b80600a8190555050565b60606002805461161f90613f89565b80601f016020809104026020016040519081016040528092919081815260200182805461164b90613f89565b80156116985780601f1061166d57610100808354040283529160200191611698565b820191906000526020600020905b81548152906001019060200180831161167b57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d546116be9190613dbe565b826116c7610c0f565b6116d19190613dbe565b10156116dc57600090505b601060009054906101000a900460ff1661172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613aff565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117909061399f565b60405180910390fd5b80826117a59190613e45565b34146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613b7f565b60405180910390fd5b6001600b546117f59190613dbe565b8210611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613c5f565b60405180910390fd5b600c548261184333611c28565b61184d9190613dbe565b111561188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906139df565b60405180910390fd5b6001600e5461189d9190613dbe565b826118a6610c0f565b6118b09190613dbe565b106118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613c1f565b60405180910390fd5b6118fa338361269d565b5050565b611906611e43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613b3f565b60405180910390fd5b8060066000611981611e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e611e43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a739190613922565b60405180910390a35050565b611a8a848484611efd565b611a96848484846126bb565b611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613bdf565b60405180910390fd5b50505050565b611ae3611e43565b73ffffffffffffffffffffffffffffffffffffffff16611b01611475565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613adf565b60405180910390fd5b80600b8190555050565b6060611b6c82611e36565b611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613b1f565b60405180910390fd5b6000611bb5612852565b9050600081511415611bd65760405180602001604052806000815250611c01565b80611be0846128e4565b604051602001611bf1929190613882565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611c3382612a91565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd6611e43565b73ffffffffffffffffffffffffffffffffffffffff16611cf4611475565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613adf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db19061397f565b60405180910390fd5b611dc3816125d7565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f088261243d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f2f611e43565b73ffffffffffffffffffffffffffffffffffffffff161480611f8b5750611f54611e43565b73ffffffffffffffffffffffffffffffffffffffff16611f7384610a71565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa75750611fa68260000151611fa1611e43565b611c3a565b5b905080611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613b5f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613abf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290613a1f565b60405180910390fd5b6120d88585856001612b7a565b6120e86000848460000151611e4b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123cd5761232c81611e36565b156123cc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124368585856001612b80565b5050505050565b612445612fbf565b61244e82611e36565b61248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906139bf565b60405180910390fd5b60008290505b60008110612596576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125875780925050506125d2565b50808060019003915050612493565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990613cbf565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126b7828260405180602001604052806000815250612b86565b5050565b60006126dc8473ffffffffffffffffffffffffffffffffffffffff16612b98565b15612845578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612705611e43565b8786866040518563ffffffff1660e01b815260040161272794939291906138d6565b602060405180830381600087803b15801561274157600080fd5b505af192505050801561277257506040513d601f19601f8201168201806040525081019061276f9190613301565b60015b6127f5573d80600081146127a2576040519150601f19603f3d011682016040523d82523d6000602084013e6127a7565b606091505b506000815114156127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490613bdf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061284a565b600190505b949350505050565b60606009805461286190613f89565b80601f016020809104026020016040519081016040528092919081815260200182805461288d90613f89565b80156128da5780601f106128af576101008083540402835291602001916128da565b820191906000526020600020905b8154815290600101906020018083116128bd57829003601f168201915b5050505050905090565b6060600082141561292c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a8c565b600082905060005b6000821461295e57808061294790613fec565b915050600a826129579190613e14565b9150612934565b60008167ffffffffffffffff8111156129a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129d25781602001600182028036833780820191505090505b5090505b60008514612a85576001826129eb9190613e9f565b9150600a856129fa9190614035565b6030612a069190613dbe565b60f81b818381518110612a42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a7e9190613e14565b94506129d6565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990613a3f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612b938383836001612bbb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613bff565b60405180910390fd5b6000841415612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90613c3f565b60405180910390fd5b612c826000868387612b7a565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f1c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612f0757612ec760008884886126bb565b612f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd90613bdf565b60405180910390fd5b5b81806001019250508080600101915050612e50565b508060008190555050612f326000868387612b80565b5050505050565b828054612f4590613f89565b90600052602060002090601f016020900481019282612f675760008555612fae565b82601f10612f8057803560ff1916838001178555612fae565b82800160010185558215612fae579182015b82811115612fad578235825591602001919060010190612f92565b5b509050612fbb9190612ff9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613012576000816000905550600101612ffa565b5090565b600061302961302484613d3f565b613d1a565b90508281526020810184848401111561304157600080fd5b61304c848285613f47565b509392505050565b600081359050613063816148ad565b92915050565b600081359050613078816148c4565b92915050565b60008135905061308d816148db565b92915050565b6000815190506130a2816148db565b92915050565b600082601f8301126130b957600080fd5b81356130c9848260208601613016565b91505092915050565b60008083601f8401126130e457600080fd5b8235905067ffffffffffffffff8111156130fd57600080fd5b60208301915083600182028301111561311557600080fd5b9250929050565b60008135905061312b816148f2565b92915050565b60006020828403121561314357600080fd5b600061315184828501613054565b91505092915050565b6000806040838503121561316d57600080fd5b600061317b85828601613054565b925050602061318c85828601613054565b9150509250929050565b6000806000606084860312156131ab57600080fd5b60006131b986828701613054565b93505060206131ca86828701613054565b92505060406131db8682870161311c565b9150509250925092565b600080600080608085870312156131fb57600080fd5b600061320987828801613054565b945050602061321a87828801613054565b935050604061322b8782880161311c565b925050606085013567ffffffffffffffff81111561324857600080fd5b613254878288016130a8565b91505092959194509250565b6000806040838503121561327357600080fd5b600061328185828601613054565b925050602061329285828601613069565b9150509250929050565b600080604083850312156132af57600080fd5b60006132bd85828601613054565b92505060206132ce8582860161311c565b9150509250929050565b6000602082840312156132ea57600080fd5b60006132f88482850161307e565b91505092915050565b60006020828403121561331357600080fd5b600061332184828501613093565b91505092915050565b6000806020838503121561333d57600080fd5b600083013567ffffffffffffffff81111561335757600080fd5b613363858286016130d2565b92509250509250929050565b60006020828403121561338157600080fd5b600061338f8482850161311c565b91505092915050565b6133a181613ed3565b82525050565b6133b081613ee5565b82525050565b60006133c182613d70565b6133cb8185613d86565b93506133db818560208601613f56565b6133e481614122565b840191505092915050565b60006133fa82613d7b565b6134048185613da2565b9350613414818560208601613f56565b61341d81614122565b840191505092915050565b600061343382613d7b565b61343d8185613db3565b935061344d818560208601613f56565b80840191505092915050565b6000613466602283613da2565b915061347182614133565b604082019050919050565b6000613489602683613da2565b915061349482614182565b604082019050919050565b60006134ac601383613da2565b91506134b7826141d1565b602082019050919050565b60006134cf602a83613da2565b91506134da826141fa565b604082019050919050565b60006134f2601483613da2565b91506134fd82614249565b602082019050919050565b6000613515602383613da2565b915061352082614272565b604082019050919050565b6000613538602583613da2565b9150613543826142c1565b604082019050919050565b600061355b603183613da2565b915061356682614310565b604082019050919050565b600061357e600983613da2565b91506135898261435f565b602082019050919050565b60006135a1603983613da2565b91506135ac82614388565b604082019050919050565b60006135c4602b83613da2565b91506135cf826143d7565b604082019050919050565b60006135e7602683613da2565b91506135f282614426565b604082019050919050565b600061360a602083613da2565b915061361582614475565b602082019050919050565b600061362d602d83613da2565b91506136388261449e565b604082019050919050565b6000613650602f83613da2565b915061365b826144ed565b604082019050919050565b6000613673601a83613da2565b915061367e8261453c565b602082019050919050565b6000613696603283613da2565b91506136a182614565565b604082019050919050565b60006136b9601d83613da2565b91506136c4826145b4565b602082019050919050565b60006136dc602283613da2565b91506136e7826145dd565b604082019050919050565b60006136ff600083613d97565b915061370a8261462c565b600082019050919050565b6000613722601083613da2565b915061372d8261462f565b602082019050919050565b6000613745603383613da2565b915061375082614658565b604082019050919050565b6000613768602183613da2565b9150613773826146a7565b604082019050919050565b600061378b600f83613da2565b9150613796826146f6565b602082019050919050565b60006137ae602883613da2565b91506137b98261471f565b604082019050919050565b60006137d1601383613da2565b91506137dc8261476e565b602082019050919050565b60006137f4602e83613da2565b91506137ff82614797565b604082019050919050565b6000613817601f83613da2565b9150613822826147e6565b602082019050919050565b600061383a602f83613da2565b91506138458261480f565b604082019050919050565b600061385d602d83613da2565b91506138688261485e565b604082019050919050565b61387c81613f3d565b82525050565b600061388e8285613428565b915061389a8284613428565b91508190509392505050565b60006138b1826136f2565b9150819050919050565b60006020820190506138d06000830184613398565b92915050565b60006080820190506138eb6000830187613398565b6138f86020830186613398565b6139056040830185613873565b818103606083015261391781846133b6565b905095945050505050565b600060208201905061393760008301846133a7565b92915050565b6000602082019050818103600083015261395781846133ef565b905092915050565b6000602082019050818103600083015261397881613459565b9050919050565b600060208201905081810360008301526139988161347c565b9050919050565b600060208201905081810360008301526139b88161349f565b9050919050565b600060208201905081810360008301526139d8816134c2565b9050919050565b600060208201905081810360008301526139f8816134e5565b9050919050565b60006020820190508181036000830152613a1881613508565b9050919050565b60006020820190508181036000830152613a388161352b565b9050919050565b60006020820190508181036000830152613a588161354e565b9050919050565b60006020820190508181036000830152613a7881613571565b9050919050565b60006020820190508181036000830152613a9881613594565b9050919050565b60006020820190508181036000830152613ab8816135b7565b9050919050565b60006020820190508181036000830152613ad8816135da565b9050919050565b60006020820190508181036000830152613af8816135fd565b9050919050565b60006020820190508181036000830152613b1881613620565b9050919050565b60006020820190508181036000830152613b3881613643565b9050919050565b60006020820190508181036000830152613b5881613666565b9050919050565b60006020820190508181036000830152613b7881613689565b9050919050565b60006020820190508181036000830152613b98816136ac565b9050919050565b60006020820190508181036000830152613bb8816136cf565b9050919050565b60006020820190508181036000830152613bd881613715565b9050919050565b60006020820190508181036000830152613bf881613738565b9050919050565b60006020820190508181036000830152613c188161375b565b9050919050565b60006020820190508181036000830152613c388161377e565b9050919050565b60006020820190508181036000830152613c58816137a1565b9050919050565b60006020820190508181036000830152613c78816137c4565b9050919050565b60006020820190508181036000830152613c98816137e7565b9050919050565b60006020820190508181036000830152613cb88161380a565b9050919050565b60006020820190508181036000830152613cd88161382d565b9050919050565b60006020820190508181036000830152613cf881613850565b9050919050565b6000602082019050613d146000830184613873565b92915050565b6000613d24613d35565b9050613d308282613fbb565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5a57613d596140f3565b5b613d6382614122565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc982613f3d565b9150613dd483613f3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0957613e08614066565b5b828201905092915050565b6000613e1f82613f3d565b9150613e2a83613f3d565b925082613e3a57613e39614095565b5b828204905092915050565b6000613e5082613f3d565b9150613e5b83613f3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9457613e93614066565b5b828202905092915050565b6000613eaa82613f3d565b9150613eb583613f3d565b925082821015613ec857613ec7614066565b5b828203905092915050565b6000613ede82613f1d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f74578082015181840152602081019050613f59565b83811115613f83576000848401525b50505050565b60006002820490506001821680613fa157607f821691505b60208210811415613fb557613fb46140c4565b5b50919050565b613fc482614122565b810181811067ffffffffffffffff82111715613fe357613fe26140f3565b5b80604052505050565b6000613ff782613f3d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402a57614029614066565b5b600182019050919050565b600061404082613f3d565b915061404b83613f3d565b92508261405b5761405a614095565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2072617069642077697463682e00000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520776974636865730000000000000000000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6148b681613ed3565b81146148c157600080fd5b50565b6148cd81613ee5565b81146148d857600080fd5b50565b6148e481613ef1565b81146148ef57600080fd5b50565b6148fb81613f3d565b811461490657600080fd5b5056fea26469706673582212202b646ede92a8db8cb751f2111b1c0bd32b3a5548ddbc11409d234eff54d2374864736f6c63430008040033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba01461079c578063dc33e681146107c7578063e985e9c514610804578063f2fde38b14610841578063f968adbe1461086a5761021a565b8063b88d4fde146106b7578063c6f6f216146106e0578063c87b56dd14610709578063d123973014610746578063d5abeb01146107715761021a565b806391b7f5ed116100f257806391b7f5ed146105f357806395d89b411461061c578063a035b1fe14610647578063a0712d6814610672578063a22cb4651461068e5761021a565b8063715018a6146105715780637d55094d146105885780638da5cb5b1461059f5780638db89f07146105ca5761021a565b80633ccfd60b116101a657806355f804b31161017557806355f804b31461047a578063563aaf11146104a35780636352211e146104cc5780636c0360eb1461050957806370a08231146105345761021a565b80633ccfd60b146103d257806342842e0e146103e9578063453c2310146104125780634f6ccce71461043d5761021a565b806318160ddd116101ed57806318160ddd146102ed578063228025e81461031857806323b872dd146103415780632f745c591461036a578063333e44e6146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132d8565b610895565b6040516102539190613922565b60405180910390f35b34801561026857600080fd5b506102716109df565b60405161027e919061393d565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061336f565b610a71565b6040516102bb91906138bb565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061329c565b610af6565b005b3480156102f957600080fd5b50610302610c0f565b60405161030f9190613cff565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061336f565b610c18565b005b34801561034d57600080fd5b5061036860048036038101906103639190613196565b610c9e565b005b34801561037657600080fd5b50610391600480360381019061038c919061329c565b610cae565b60405161039e9190613cff565b60405180910390f35b3480156103b357600080fd5b506103bc610ea0565b6040516103c99190613cff565b60405180910390f35b3480156103de57600080fd5b506103e7610ea6565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613196565b611027565b005b34801561041e57600080fd5b50610427611047565b6040516104349190613cff565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f919061336f565b61104d565b6040516104719190613cff565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061332a565b6110a0565b005b3480156104af57600080fd5b506104ca60048036038101906104c5919061336f565b611132565b005b3480156104d857600080fd5b506104f360048036038101906104ee919061336f565b6111b8565b60405161050091906138bb565b60405180910390f35b34801561051557600080fd5b5061051e6111ce565b60405161052b919061393d565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613131565b61125c565b6040516105689190613cff565b60405180910390f35b34801561057d57600080fd5b50610586611345565b005b34801561059457600080fd5b5061059d6113cd565b005b3480156105ab57600080fd5b506105b4611475565b6040516105c191906138bb565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec919061336f565b61149f565b005b3480156105ff57600080fd5b5061061a6004803603810190610615919061336f565b61158a565b005b34801561062857600080fd5b50610631611610565b60405161063e919061393d565b60405180910390f35b34801561065357600080fd5b5061065c6116a2565b6040516106699190613cff565b60405180910390f35b61068c6004803603810190610687919061336f565b6116a8565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613260565b6118fe565b005b3480156106c357600080fd5b506106de60048036038101906106d991906131e5565b611a7f565b005b3480156106ec57600080fd5b506107076004803603810190610702919061336f565b611adb565b005b34801561071557600080fd5b50610730600480360381019061072b919061336f565b611b61565b60405161073d919061393d565b60405180910390f35b34801561075257600080fd5b5061075b611c09565b6040516107689190613922565b60405180910390f35b34801561077d57600080fd5b50610786611c1c565b6040516107939190613cff565b60405180910390f35b3480156107a857600080fd5b506107b1611c22565b6040516107be9190613cff565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613131565b611c28565b6040516107fb9190613cff565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061315a565b611c3a565b6040516108389190613922565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613131565b611cce565b005b34801561087657600080fd5b5061087f611dc6565b60405161088c9190613cff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d857506109d782611dcc565b5b9050919050565b6060600180546109ee90613f89565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90613f89565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7c82611e36565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613cdf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b01826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b9f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91611e43565b73ffffffffffffffffffffffffffffffffffffffff161480610bc05750610bbf81610bba611e43565b611c3a565b5b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613a7f565b60405180910390fd5b610c0a838383611e4b565b505050565b60008054905090565b610c20611e43565b73ffffffffffffffffffffffffffffffffffffffff16610c3e611475565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90613adf565b60405180910390fd5b80600e8190555050565b610ca9838383611efd565b505050565b6000610cb98361125c565b8210610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf19061395f565b60405180910390fd5b6000610d04610c0f565b905060008060005b83811015610e5e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e505786841415610e47578195505050505050610e9a565b83806001019450505b508080600101915050610d0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613c7f565b60405180910390fd5b92915050565b600d5481565b610eae611e43565b73ffffffffffffffffffffffffffffffffffffffff16610ecc611475565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613adf565b60405180910390fd5b60026008541415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613c9f565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f96906138a6565b60006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505090508061101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613bbf565b60405180910390fd5b506001600881905550565b61104283838360405180602001604052806000815250611a7f565b505050565b600c5481565b6000611057610c0f565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906139ff565b60405180910390fd5b819050919050565b6110a8611e43565b73ffffffffffffffffffffffffffffffffffffffff166110c6611475565b73ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390613adf565b60405180910390fd5b81816009919061112d929190612f39565b505050565b61113a611e43565b73ffffffffffffffffffffffffffffffffffffffff16611158611475565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613adf565b60405180910390fd5b80600d8190555050565b60006111c38261243d565b600001519050919050565b600980546111db90613f89565b80601f016020809104026020016040519081016040528092919081815260200182805461120790613f89565b80156112545780601f1061122957610100808354040283529160200191611254565b820191906000526020600020905b81548152906001019060200180831161123757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613a9f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61134d611e43565b73ffffffffffffffffffffffffffffffffffffffff1661136b611475565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613adf565b60405180910390fd5b6113cb60006125d7565b565b6113d5611e43565b73ffffffffffffffffffffffffffffffffffffffff166113f3611475565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613adf565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a7611e43565b73ffffffffffffffffffffffffffffffffffffffff166114c5611475565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613adf565b60405180910390fd5b6001600e5461152a9190613dbe565b81611533610c0f565b61153d9190613dbe565b1061157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a5f565b60405180910390fd5b611587338261269d565b50565b611592611e43565b73ffffffffffffffffffffffffffffffffffffffff166115b0611475565b73ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613adf565b60405180910390fd5b80600a8190555050565b60606002805461161f90613f89565b80601f016020809104026020016040519081016040528092919081815260200182805461164b90613f89565b80156116985780601f1061166d57610100808354040283529160200191611698565b820191906000526020600020905b81548152906001019060200180831161167b57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d546116be9190613dbe565b826116c7610c0f565b6116d19190613dbe565b10156116dc57600090505b601060009054906101000a900460ff1661172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613aff565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117909061399f565b60405180910390fd5b80826117a59190613e45565b34146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613b7f565b60405180910390fd5b6001600b546117f59190613dbe565b8210611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613c5f565b60405180910390fd5b600c548261184333611c28565b61184d9190613dbe565b111561188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906139df565b60405180910390fd5b6001600e5461189d9190613dbe565b826118a6610c0f565b6118b09190613dbe565b106118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613c1f565b60405180910390fd5b6118fa338361269d565b5050565b611906611e43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613b3f565b60405180910390fd5b8060066000611981611e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e611e43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a739190613922565b60405180910390a35050565b611a8a848484611efd565b611a96848484846126bb565b611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613bdf565b60405180910390fd5b50505050565b611ae3611e43565b73ffffffffffffffffffffffffffffffffffffffff16611b01611475565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613adf565b60405180910390fd5b80600b8190555050565b6060611b6c82611e36565b611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613b1f565b60405180910390fd5b6000611bb5612852565b9050600081511415611bd65760405180602001604052806000815250611c01565b80611be0846128e4565b604051602001611bf1929190613882565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611c3382612a91565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd6611e43565b73ffffffffffffffffffffffffffffffffffffffff16611cf4611475565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613adf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db19061397f565b60405180910390fd5b611dc3816125d7565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f088261243d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f2f611e43565b73ffffffffffffffffffffffffffffffffffffffff161480611f8b5750611f54611e43565b73ffffffffffffffffffffffffffffffffffffffff16611f7384610a71565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa75750611fa68260000151611fa1611e43565b611c3a565b5b905080611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613b5f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613abf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290613a1f565b60405180910390fd5b6120d88585856001612b7a565b6120e86000848460000151611e4b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123cd5761232c81611e36565b156123cc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124368585856001612b80565b5050505050565b612445612fbf565b61244e82611e36565b61248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906139bf565b60405180910390fd5b60008290505b60008110612596576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125875780925050506125d2565b50808060019003915050612493565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990613cbf565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126b7828260405180602001604052806000815250612b86565b5050565b60006126dc8473ffffffffffffffffffffffffffffffffffffffff16612b98565b15612845578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612705611e43565b8786866040518563ffffffff1660e01b815260040161272794939291906138d6565b602060405180830381600087803b15801561274157600080fd5b505af192505050801561277257506040513d601f19601f8201168201806040525081019061276f9190613301565b60015b6127f5573d80600081146127a2576040519150601f19603f3d011682016040523d82523d6000602084013e6127a7565b606091505b506000815114156127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490613bdf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061284a565b600190505b949350505050565b60606009805461286190613f89565b80601f016020809104026020016040519081016040528092919081815260200182805461288d90613f89565b80156128da5780601f106128af576101008083540402835291602001916128da565b820191906000526020600020905b8154815290600101906020018083116128bd57829003601f168201915b5050505050905090565b6060600082141561292c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a8c565b600082905060005b6000821461295e57808061294790613fec565b915050600a826129579190613e14565b9150612934565b60008167ffffffffffffffff8111156129a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129d25781602001600182028036833780820191505090505b5090505b60008514612a85576001826129eb9190613e9f565b9150600a856129fa9190614035565b6030612a069190613dbe565b60f81b818381518110612a42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a7e9190613e14565b94506129d6565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990613a3f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612b938383836001612bbb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613bff565b60405180910390fd5b6000841415612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90613c3f565b60405180910390fd5b612c826000868387612b7a565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f1c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612f0757612ec760008884886126bb565b612f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd90613bdf565b60405180910390fd5b5b81806001019250508080600101915050612e50565b508060008190555050612f326000868387612b80565b5050505050565b828054612f4590613f89565b90600052602060002090601f016020900481019282612f675760008555612fae565b82601f10612f8057803560ff1916838001178555612fae565b82800160010185558215612fae579182015b82811115612fad578235825591602001919060010190612f92565b5b509050612fbb9190612ff9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613012576000816000905550600101612ffa565b5090565b600061302961302484613d3f565b613d1a565b90508281526020810184848401111561304157600080fd5b61304c848285613f47565b509392505050565b600081359050613063816148ad565b92915050565b600081359050613078816148c4565b92915050565b60008135905061308d816148db565b92915050565b6000815190506130a2816148db565b92915050565b600082601f8301126130b957600080fd5b81356130c9848260208601613016565b91505092915050565b60008083601f8401126130e457600080fd5b8235905067ffffffffffffffff8111156130fd57600080fd5b60208301915083600182028301111561311557600080fd5b9250929050565b60008135905061312b816148f2565b92915050565b60006020828403121561314357600080fd5b600061315184828501613054565b91505092915050565b6000806040838503121561316d57600080fd5b600061317b85828601613054565b925050602061318c85828601613054565b9150509250929050565b6000806000606084860312156131ab57600080fd5b60006131b986828701613054565b93505060206131ca86828701613054565b92505060406131db8682870161311c565b9150509250925092565b600080600080608085870312156131fb57600080fd5b600061320987828801613054565b945050602061321a87828801613054565b935050604061322b8782880161311c565b925050606085013567ffffffffffffffff81111561324857600080fd5b613254878288016130a8565b91505092959194509250565b6000806040838503121561327357600080fd5b600061328185828601613054565b925050602061329285828601613069565b9150509250929050565b600080604083850312156132af57600080fd5b60006132bd85828601613054565b92505060206132ce8582860161311c565b9150509250929050565b6000602082840312156132ea57600080fd5b60006132f88482850161307e565b91505092915050565b60006020828403121561331357600080fd5b600061332184828501613093565b91505092915050565b6000806020838503121561333d57600080fd5b600083013567ffffffffffffffff81111561335757600080fd5b613363858286016130d2565b92509250509250929050565b60006020828403121561338157600080fd5b600061338f8482850161311c565b91505092915050565b6133a181613ed3565b82525050565b6133b081613ee5565b82525050565b60006133c182613d70565b6133cb8185613d86565b93506133db818560208601613f56565b6133e481614122565b840191505092915050565b60006133fa82613d7b565b6134048185613da2565b9350613414818560208601613f56565b61341d81614122565b840191505092915050565b600061343382613d7b565b61343d8185613db3565b935061344d818560208601613f56565b80840191505092915050565b6000613466602283613da2565b915061347182614133565b604082019050919050565b6000613489602683613da2565b915061349482614182565b604082019050919050565b60006134ac601383613da2565b91506134b7826141d1565b602082019050919050565b60006134cf602a83613da2565b91506134da826141fa565b604082019050919050565b60006134f2601483613da2565b91506134fd82614249565b602082019050919050565b6000613515602383613da2565b915061352082614272565b604082019050919050565b6000613538602583613da2565b9150613543826142c1565b604082019050919050565b600061355b603183613da2565b915061356682614310565b604082019050919050565b600061357e600983613da2565b91506135898261435f565b602082019050919050565b60006135a1603983613da2565b91506135ac82614388565b604082019050919050565b60006135c4602b83613da2565b91506135cf826143d7565b604082019050919050565b60006135e7602683613da2565b91506135f282614426565b604082019050919050565b600061360a602083613da2565b915061361582614475565b602082019050919050565b600061362d602d83613da2565b91506136388261449e565b604082019050919050565b6000613650602f83613da2565b915061365b826144ed565b604082019050919050565b6000613673601a83613da2565b915061367e8261453c565b602082019050919050565b6000613696603283613da2565b91506136a182614565565b604082019050919050565b60006136b9601d83613da2565b91506136c4826145b4565b602082019050919050565b60006136dc602283613da2565b91506136e7826145dd565b604082019050919050565b60006136ff600083613d97565b915061370a8261462c565b600082019050919050565b6000613722601083613da2565b915061372d8261462f565b602082019050919050565b6000613745603383613da2565b915061375082614658565b604082019050919050565b6000613768602183613da2565b9150613773826146a7565b604082019050919050565b600061378b600f83613da2565b9150613796826146f6565b602082019050919050565b60006137ae602883613da2565b91506137b98261471f565b604082019050919050565b60006137d1601383613da2565b91506137dc8261476e565b602082019050919050565b60006137f4602e83613da2565b91506137ff82614797565b604082019050919050565b6000613817601f83613da2565b9150613822826147e6565b602082019050919050565b600061383a602f83613da2565b91506138458261480f565b604082019050919050565b600061385d602d83613da2565b91506138688261485e565b604082019050919050565b61387c81613f3d565b82525050565b600061388e8285613428565b915061389a8284613428565b91508190509392505050565b60006138b1826136f2565b9150819050919050565b60006020820190506138d06000830184613398565b92915050565b60006080820190506138eb6000830187613398565b6138f86020830186613398565b6139056040830185613873565b818103606083015261391781846133b6565b905095945050505050565b600060208201905061393760008301846133a7565b92915050565b6000602082019050818103600083015261395781846133ef565b905092915050565b6000602082019050818103600083015261397881613459565b9050919050565b600060208201905081810360008301526139988161347c565b9050919050565b600060208201905081810360008301526139b88161349f565b9050919050565b600060208201905081810360008301526139d8816134c2565b9050919050565b600060208201905081810360008301526139f8816134e5565b9050919050565b60006020820190508181036000830152613a1881613508565b9050919050565b60006020820190508181036000830152613a388161352b565b9050919050565b60006020820190508181036000830152613a588161354e565b9050919050565b60006020820190508181036000830152613a7881613571565b9050919050565b60006020820190508181036000830152613a9881613594565b9050919050565b60006020820190508181036000830152613ab8816135b7565b9050919050565b60006020820190508181036000830152613ad8816135da565b9050919050565b60006020820190508181036000830152613af8816135fd565b9050919050565b60006020820190508181036000830152613b1881613620565b9050919050565b60006020820190508181036000830152613b3881613643565b9050919050565b60006020820190508181036000830152613b5881613666565b9050919050565b60006020820190508181036000830152613b7881613689565b9050919050565b60006020820190508181036000830152613b98816136ac565b9050919050565b60006020820190508181036000830152613bb8816136cf565b9050919050565b60006020820190508181036000830152613bd881613715565b9050919050565b60006020820190508181036000830152613bf881613738565b9050919050565b60006020820190508181036000830152613c188161375b565b9050919050565b60006020820190508181036000830152613c388161377e565b9050919050565b60006020820190508181036000830152613c58816137a1565b9050919050565b60006020820190508181036000830152613c78816137c4565b9050919050565b60006020820190508181036000830152613c98816137e7565b9050919050565b60006020820190508181036000830152613cb88161380a565b9050919050565b60006020820190508181036000830152613cd88161382d565b9050919050565b60006020820190508181036000830152613cf881613850565b9050919050565b6000602082019050613d146000830184613873565b92915050565b6000613d24613d35565b9050613d308282613fbb565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5a57613d596140f3565b5b613d6382614122565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc982613f3d565b9150613dd483613f3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0957613e08614066565b5b828201905092915050565b6000613e1f82613f3d565b9150613e2a83613f3d565b925082613e3a57613e39614095565b5b828204905092915050565b6000613e5082613f3d565b9150613e5b83613f3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9457613e93614066565b5b828202905092915050565b6000613eaa82613f3d565b9150613eb583613f3d565b925082821015613ec857613ec7614066565b5b828203905092915050565b6000613ede82613f1d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f74578082015181840152602081019050613f59565b83811115613f83576000848401525b50505050565b60006002820490506001821680613fa157607f821691505b60208210811415613fb557613fb46140c4565b5b50919050565b613fc482614122565b810181811067ffffffffffffffff82111715613fe357613fe26140f3565b5b80604052505050565b6000613ff782613f3d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402a57614029614066565b5b600182019050919050565b600061404082613f3d565b915061404b83613f3d565b92508261405b5761405a614095565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2072617069642077697463682e00000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520776974636865730000000000000000000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6148b681613ed3565b81146148c157600080fd5b50565b6148cd81613ee5565b81146148d857600080fd5b50565b6148e481613ef1565b81146148ef57600080fd5b50565b6148fb81613f3d565b811461490657600080fd5b5056fea26469706673582212202b646ede92a8db8cb751f2111b1c0bd32b3a5548ddbc11409d234eff54d2374864736f6c63430008040033
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.