ETH Price: $2,353.29 (+1.75%)

Token

Emotions (EMO)
 

Overview

Max Total Supply

35 EMO

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EMO
0x9a428d7491ec6a669c7fe93e1e331fe881e9746f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Emotions

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Emotions.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract Emotions is ERC721, Ownable {
  constructor() ERC721("Emotions", "EMO") {}

  string private uri = "https://assets.bossdrops.io/emotions/";

  uint public constant MAX_TOKENS = 1777;

  // Only 10 nfts can be purchased per transaction.
  uint public constant maxNumPurchase = 10;

  // How many tokens an early access member is allowed to mint.
  uint public earlyAccessTokensPerUser = 1;

  uint public totalEarlyAccessTokensAllowed = 269;

  uint public currentEarlyAccessTokensClaimed = 0;

  mapping (address => bool) private earlyAccessAllowList;

  mapping (address => uint) private earlyAccessClaimedTokens;

  /**
  * The state of the sale:
  * 0 = closed
  * 1 = early access
  * 2 = open
  */
  uint public saleState = 0;

  // Mint price is 0.07 ETH. 
  uint public mintPriceWei = 70000000000000000;

  uint public numMinted = 0;

  function canClaimEarlyAccessToken(address addr) view public returns (bool) {
    return earlyAccessAllowList[addr] && earlyAccessClaimedTokens[addr] < earlyAccessTokensPerUser && currentEarlyAccessTokensClaimed < totalEarlyAccessTokensAllowed;
  }

  function mint(uint num) public payable {
    require(saleState == 1 || saleState == 2, "Sale must be active to mint");
    if (saleState == 1) {
      _checkEarlyAccess(msg.sender, num);
      earlyAccessClaimedTokens[msg.sender] = SafeMath.add(earlyAccessClaimedTokens[msg.sender], 1);
      currentEarlyAccessTokensClaimed = SafeMath.add(currentEarlyAccessTokensClaimed, 1);
    } else if (saleState == 2) {
      _checkRegularSale(num);
    }
    require(msg.value >= SafeMath.mul(num, mintPriceWei), "Insufficient amount sent");
    _mintTo(msg.sender, num);
  }

  function _mintTo(address to, uint num) internal {
    uint newTotal = SafeMath.add(num, numMinted);
    require(newTotal <= MAX_TOKENS, "Minting would exceed max allowed supply");
    while(numMinted < newTotal) {
        _mint(to, numMinted);
        numMinted++;
    }
  }
  
  function totalSupply() public view virtual returns (uint) {
    return numMinted;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uri;
  }

  function _checkRegularSale(uint numberOfTokens) pure internal {
    require(numberOfTokens <= maxNumPurchase, "Can only mint 10 tokens at a time");
  }

  function _checkEarlyAccess(address sender, uint numberOfTokens) view internal {
    require(earlyAccessAllowList[sender], "Sender is not on the early access list");
    require(currentEarlyAccessTokensClaimed < totalEarlyAccessTokensAllowed, "Minting would exceed total allowed for early access");
    require(earlyAccessClaimedTokens[sender] < earlyAccessTokensPerUser, "Sender cannot claim any more early access gauntlets at this time");
    require(numberOfTokens == 1, "Can only mint 1 token in the early access sale");
  }

  /** OWNER FUNCTIONS */
  function ownerMint(uint num) public onlyOwner {
    _mintTo(msg.sender, num);
  }
  
  function withdraw() public onlyOwner {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  function setEarlyAccessTokensPerUser(uint num) public onlyOwner {
    earlyAccessTokensPerUser = num;
  }

  function setSaleState(uint newState) public onlyOwner {
      require(newState >= 0 && newState <= 2, "Invalid state");
      saleState = newState;
  }

  function setTotalEarlyAccessTokensAllowed(uint num) public onlyOwner {
    totalEarlyAccessTokensAllowed = num;
  }

  function addEarlyAccessMembers(address[] memory addresses) public onlyOwner {
    for (uint i = 0; i < addresses.length; i++) {
      earlyAccessAllowList[addresses[i]] = true;
    }
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    uri = baseURI;
  }

  function setMintPrice(uint newPriceWei) public onlyOwner {
    mintPriceWei = newPriceWei;
  }
}

File 2 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 4 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 11 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addEarlyAccessMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"canClaimEarlyAccessToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEarlyAccessTokensClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessTokensPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNumPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPriceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMinted","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":"num","type":"uint256"}],"name":"ownerMint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"num","type":"uint256"}],"name":"setEarlyAccessTokensPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceWei","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setTotalEarlyAccessTokensAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEarlyAccessTokensAllowed","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"}]

6080604052604051806060016040528060258152602001620044ee602591396007908051906020019062000035929190620001fd565b50600160085561010d6009556000600a556000600d5566f8b0a10e470000600e556000600f553480156200006857600080fd5b506040518060400160405280600881526020017f456d6f74696f6e730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f454d4f00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ed929190620001fd565b50806001908051906020019062000106929190620001fd565b505050620001296200011d6200012f60201b60201c565b6200013760201b60201c565b62000312565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020b90620002ad565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b60006002820490506001821680620002c657607f821691505b60208210811415620002dd57620002dc620002e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6141cc80620003226000396000f3fe6080604052600436106102035760003560e01c80638293575211610118578063c87b56dd116100a0578063f19e75d41161006f578063f19e75d414610745578063f2fde38b1461076e578063f47c84c514610797578063f4a0a528146107c2578063f9c9816f146107eb57610203565b8063c87b56dd14610675578063cb2c9722146106b2578063d52079b4146106dd578063e985e9c51461070857610203565b806395da2da5116100e757806395da2da5146105b5578063a0712d68146105de578063a22cb465146105fa578063b7a67ab214610623578063b88d4fde1461064c57610203565b8063829357521461050b57806389a7aeac146105345780638da5cb5b1461055f57806395d89b411461058a57610203565b806334abf28d1161019b57806355f804b31161016a57806355f804b314610426578063603f4d521461044f5780636352211e1461047a57806370a08231146104b7578063715018a6146104f457610203565b806334abf28d146103905780633ccfd60b146103bb57806342842e0e146103d2578063460a0e93146103fb57610203565b8063084c4088116101d7578063084c4088146102ea578063095ea7b31461031357806318160ddd1461033c57806323b872dd1461036757610203565b8062fc5d111461020857806301ffc9a71461024557806306fdde0314610282578063081812fc146102ad575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190612ac0565b610816565b60405161023c9190613262565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612ccc565b6108c7565b6040516102799190613262565b60405180910390f35b34801561028e57600080fd5b506102976109a9565b6040516102a4919061327d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612d6f565b610a3b565b6040516102e191906131fb565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612d6f565b610ac0565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612c43565b610b97565b005b34801561034857600080fd5b50610351610caf565b60405161035e91906135bf565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612b2d565b610cb9565b005b34801561039c57600080fd5b506103a5610d19565b6040516103b291906135bf565b60405180910390f35b3480156103c757600080fd5b506103d0610d1f565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612b2d565b610dea565b005b34801561040757600080fd5b50610410610e0a565b60405161041d91906135bf565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190612d26565b610e10565b005b34801561045b57600080fd5b50610464610ea6565b60405161047191906135bf565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612d6f565b610eac565b6040516104ae91906131fb565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612ac0565b610f5e565b6040516104eb91906135bf565b60405180910390f35b34801561050057600080fd5b50610509611016565b005b34801561051757600080fd5b50610532600480360381019061052d9190612d6f565b61109e565b005b34801561054057600080fd5b50610549611124565b60405161055691906135bf565b60405180910390f35b34801561056b57600080fd5b5061057461112a565b60405161058191906131fb565b60405180910390f35b34801561059657600080fd5b5061059f611154565b6040516105ac919061327d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612c83565b6111e6565b005b6105f860048036038101906105f39190612d6f565b6112f7565b005b34801561060657600080fd5b50610621600480360381019061061c9190612c03565b611474565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612d6f565b6115f5565b005b34801561065857600080fd5b50610673600480360381019061066e9190612b80565b61167b565b005b34801561068157600080fd5b5061069c60048036038101906106979190612d6f565b6116dd565b6040516106a9919061327d565b60405180910390f35b3480156106be57600080fd5b506106c7611784565b6040516106d491906135bf565b60405180910390f35b3480156106e957600080fd5b506106f261178a565b6040516106ff91906135bf565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612aed565b611790565b60405161073c9190613262565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612d6f565b611824565b005b34801561077a57600080fd5b5061079560048036038101906107909190612ac0565b6118ad565b005b3480156107a357600080fd5b506107ac6119a5565b6040516107b991906135bf565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190612d6f565b6119ab565b005b3480156107f757600080fd5b50610800611a31565b60405161080d91906135bf565b60405180910390f35b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156108b15750600854600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b80156108c05750600954600a54105b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a257506109a182611a36565b5b9050919050565b6060600080546109b89061389b565b80601f01602080910402602001604051908101604052809291908181526020018280546109e49061389b565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b6000610a4682611aa0565b610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c9061347f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ac8611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610ae661112a565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906134bf565b60405180910390fd5b60008110158015610b4e575060028111155b610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b849061349f565b60405180910390fd5b80600d8190555050565b6000610ba282610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061353f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c32611b0c565b73ffffffffffffffffffffffffffffffffffffffff161480610c615750610c6081610c5b611b0c565b611790565b5b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906133ff565b60405180910390fd5b610caa8383611b14565b505050565b6000600f54905090565b610cca610cc4611b0c565b82611bcd565b610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061355f565b60405180910390fd5b610d14838383611cab565b505050565b600a5481565b610d27611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610d4561112a565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d92906134bf565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610de6573d6000803e3d6000fd5b5050565b610e058383836040518060200160405280600081525061167b565b505050565b60095481565b610e18611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610e3661112a565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906134bf565b60405180910390fd5b8060079080519060200190610ea2929190612836565b5050565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061343f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061341f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61101e611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661103c61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611089906134bf565b60405180910390fd5b61109c6000611f07565b565b6110a6611b0c565b73ffffffffffffffffffffffffffffffffffffffff166110c461112a565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906134bf565b60405180910390fd5b8060098190555050565b60085481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111639061389b565b80601f016020809104026020016040519081016040528092919081815260200182805461118f9061389b565b80156111dc5780601f106111b1576101008083540402835291602001916111dc565b820191906000526020600020905b8154815290600101906020018083116111bf57829003601f168201915b5050505050905090565b6111ee611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661120c61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611259906134bf565b60405180910390fd5b60005b81518110156112f3576001600b600084848151811061128757611286613a05565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112eb906138fe565b915050611265565b5050565b6001600d54148061130a57506002600d54145b611349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611340906133bf565b60405180910390fd5b6001600d5414156114035761135e3382611fcd565b6113a8600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001612169565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113f8600a546001612169565b600a81905550611419565b6002600d541415611418576114178161217f565b5b5b61142581600e546121c6565b341015611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e9061351f565b60405180910390fd5b61147133826121dc565b50565b61147c611b0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061337f565b60405180910390fd5b80600560006114f7611b0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a4611b0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e99190613262565b60405180910390a35050565b6115fd611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661161b61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906134bf565b60405180910390fd5b8060088190555050565b61168c611686611b0c565b83611bcd565b6116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c29061355f565b60405180910390fd5b6116d78484848461226a565b50505050565b60606116e882611aa0565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906134ff565b60405180910390fd5b60006117316122c6565b90506000815111611751576040518060200160405280600081525061177c565b8061175b84612358565b60405160200161176c9291906131d7565b6040516020818303038152906040525b915050919050565b600e5481565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182c611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661184a61112a565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906134bf565b60405180910390fd5b6118aa33826121dc565b50565b6118b5611b0c565b73ffffffffffffffffffffffffffffffffffffffff166118d361112a565b73ffffffffffffffffffffffffffffffffffffffff1614611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611920906134bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611990906132ff565b60405180910390fd5b6119a281611f07565b50565b6106f181565b6119b3611b0c565b73ffffffffffffffffffffffffffffffffffffffff166119d161112a565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e906134bf565b60405180910390fd5b80600e8190555050565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b8783610eac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bd882611aa0565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906133df565b60405180910390fd5b6000611c2283610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9157508373ffffffffffffffffffffffffffffffffffffffff16611c7984610a3b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ca25750611ca18185611790565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ccb82610eac565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d18906134df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d889061335f565b60405180910390fd5b611d9c8383836124b9565b611da7600082611b14565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df791906137b1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4e91906136d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061339f565b60405180910390fd5b600954600a541061209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906132df565b60405180910390fd5b600854600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121199061357f565b60405180910390fd5b60018114612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c9061329f565b60405180910390fd5b5050565b6000818361217791906136d0565b905092915050565b600a8111156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba9061359f565b60405180910390fd5b50565b600081836121d49190613757565b905092915050565b60006121ea82600f54612169565b90506106f1811115612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122289061333f565b60405180910390fd5b5b80600f5410156122655761224883600f546124be565b600f600081548092919061225b906138fe565b9190505550612232565b505050565b612275848484611cab565b6122818484848461268c565b6122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b7906132bf565b60405180910390fd5b50505050565b6060600780546122d59061389b565b80601f01602080910402602001604051908101604052809291908181526020018280546123019061389b565b801561234e5780601f106123235761010080835404028352916020019161234e565b820191906000526020600020905b81548152906001019060200180831161233157829003601f168201915b5050505050905090565b606060008214156123a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b4565b600082905060005b600082146123d25780806123bb906138fe565b915050600a826123cb9190613726565b91506123a8565b60008167ffffffffffffffff8111156123ee576123ed613a34565b5b6040519080825280601f01601f1916602001820160405280156124205781602001600182028036833780820191505090505b5090505b600085146124ad5760018261243991906137b1565b9150600a856124489190613947565b603061245491906136d0565b60f81b81838151811061246a57612469613a05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a69190613726565b9450612424565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125259061345f565b60405180910390fd5b61253781611aa0565b15612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e9061331f565b60405180910390fd5b612583600083836124b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125d391906136d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006126ad8473ffffffffffffffffffffffffffffffffffffffff16612823565b15612816578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d6611b0c565b8786866040518563ffffffff1660e01b81526004016126f89493929190613216565b602060405180830381600087803b15801561271257600080fd5b505af192505050801561274357506040513d601f19601f820116820180604052508101906127409190612cf9565b60015b6127c6573d8060008114612773576040519150601f19603f3d011682016040523d82523d6000602084013e612778565b606091505b506000815114156127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b5906132bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061281b565b600190505b949350505050565b600080823b905060008111915050919050565b8280546128429061389b565b90600052602060002090601f01602090048101928261286457600085556128ab565b82601f1061287d57805160ff19168380011785556128ab565b828001600101855582156128ab579182015b828111156128aa57825182559160200191906001019061288f565b5b5090506128b891906128bc565b5090565b5b808211156128d55760008160009055506001016128bd565b5090565b60006128ec6128e7846135ff565b6135da565b9050808382526020820190508285602086028201111561290f5761290e613a68565b5b60005b8581101561293f578161292588826129cd565b845260208401935060208301925050600181019050612912565b5050509392505050565b600061295c6129578461362b565b6135da565b90508281526020810184848401111561297857612977613a6d565b5b612983848285613859565b509392505050565b600061299e6129998461365c565b6135da565b9050828152602081018484840111156129ba576129b9613a6d565b5b6129c5848285613859565b509392505050565b6000813590506129dc8161413a565b92915050565b600082601f8301126129f7576129f6613a63565b5b8135612a078482602086016128d9565b91505092915050565b600081359050612a1f81614151565b92915050565b600081359050612a3481614168565b92915050565b600081519050612a4981614168565b92915050565b600082601f830112612a6457612a63613a63565b5b8135612a74848260208601612949565b91505092915050565b600082601f830112612a9257612a91613a63565b5b8135612aa284826020860161298b565b91505092915050565b600081359050612aba8161417f565b92915050565b600060208284031215612ad657612ad5613a77565b5b6000612ae4848285016129cd565b91505092915050565b60008060408385031215612b0457612b03613a77565b5b6000612b12858286016129cd565b9250506020612b23858286016129cd565b9150509250929050565b600080600060608486031215612b4657612b45613a77565b5b6000612b54868287016129cd565b9350506020612b65868287016129cd565b9250506040612b7686828701612aab565b9150509250925092565b60008060008060808587031215612b9a57612b99613a77565b5b6000612ba8878288016129cd565b9450506020612bb9878288016129cd565b9350506040612bca87828801612aab565b925050606085013567ffffffffffffffff811115612beb57612bea613a72565b5b612bf787828801612a4f565b91505092959194509250565b60008060408385031215612c1a57612c19613a77565b5b6000612c28858286016129cd565b9250506020612c3985828601612a10565b9150509250929050565b60008060408385031215612c5a57612c59613a77565b5b6000612c68858286016129cd565b9250506020612c7985828601612aab565b9150509250929050565b600060208284031215612c9957612c98613a77565b5b600082013567ffffffffffffffff811115612cb757612cb6613a72565b5b612cc3848285016129e2565b91505092915050565b600060208284031215612ce257612ce1613a77565b5b6000612cf084828501612a25565b91505092915050565b600060208284031215612d0f57612d0e613a77565b5b6000612d1d84828501612a3a565b91505092915050565b600060208284031215612d3c57612d3b613a77565b5b600082013567ffffffffffffffff811115612d5a57612d59613a72565b5b612d6684828501612a7d565b91505092915050565b600060208284031215612d8557612d84613a77565b5b6000612d9384828501612aab565b91505092915050565b612da5816137e5565b82525050565b612db4816137f7565b82525050565b6000612dc58261368d565b612dcf81856136a3565b9350612ddf818560208601613868565b612de881613a7c565b840191505092915050565b6000612dfe82613698565b612e0881856136b4565b9350612e18818560208601613868565b612e2181613a7c565b840191505092915050565b6000612e3782613698565b612e4181856136c5565b9350612e51818560208601613868565b80840191505092915050565b6000612e6a602e836136b4565b9150612e7582613a8d565b604082019050919050565b6000612e8d6032836136b4565b9150612e9882613adc565b604082019050919050565b6000612eb06033836136b4565b9150612ebb82613b2b565b604082019050919050565b6000612ed36026836136b4565b9150612ede82613b7a565b604082019050919050565b6000612ef6601c836136b4565b9150612f0182613bc9565b602082019050919050565b6000612f196027836136b4565b9150612f2482613bf2565b604082019050919050565b6000612f3c6024836136b4565b9150612f4782613c41565b604082019050919050565b6000612f5f6019836136b4565b9150612f6a82613c90565b602082019050919050565b6000612f826026836136b4565b9150612f8d82613cb9565b604082019050919050565b6000612fa5601b836136b4565b9150612fb082613d08565b602082019050919050565b6000612fc8602c836136b4565b9150612fd382613d31565b604082019050919050565b6000612feb6038836136b4565b9150612ff682613d80565b604082019050919050565b600061300e602a836136b4565b915061301982613dcf565b604082019050919050565b60006130316029836136b4565b915061303c82613e1e565b604082019050919050565b60006130546020836136b4565b915061305f82613e6d565b602082019050919050565b6000613077602c836136b4565b915061308282613e96565b604082019050919050565b600061309a600d836136b4565b91506130a582613ee5565b602082019050919050565b60006130bd6020836136b4565b91506130c882613f0e565b602082019050919050565b60006130e06029836136b4565b91506130eb82613f37565b604082019050919050565b6000613103602f836136b4565b915061310e82613f86565b604082019050919050565b60006131266018836136b4565b915061313182613fd5565b602082019050919050565b60006131496021836136b4565b915061315482613ffe565b604082019050919050565b600061316c6031836136b4565b91506131778261404d565b604082019050919050565b600061318f6040836136b4565b915061319a8261409c565b604082019050919050565b60006131b26021836136b4565b91506131bd826140eb565b604082019050919050565b6131d18161384f565b82525050565b60006131e38285612e2c565b91506131ef8284612e2c565b91508190509392505050565b60006020820190506132106000830184612d9c565b92915050565b600060808201905061322b6000830187612d9c565b6132386020830186612d9c565b61324560408301856131c8565b81810360608301526132578184612dba565b905095945050505050565b60006020820190506132776000830184612dab565b92915050565b600060208201905081810360008301526132978184612df3565b905092915050565b600060208201905081810360008301526132b881612e5d565b9050919050565b600060208201905081810360008301526132d881612e80565b9050919050565b600060208201905081810360008301526132f881612ea3565b9050919050565b6000602082019050818103600083015261331881612ec6565b9050919050565b6000602082019050818103600083015261333881612ee9565b9050919050565b6000602082019050818103600083015261335881612f0c565b9050919050565b6000602082019050818103600083015261337881612f2f565b9050919050565b6000602082019050818103600083015261339881612f52565b9050919050565b600060208201905081810360008301526133b881612f75565b9050919050565b600060208201905081810360008301526133d881612f98565b9050919050565b600060208201905081810360008301526133f881612fbb565b9050919050565b6000602082019050818103600083015261341881612fde565b9050919050565b6000602082019050818103600083015261343881613001565b9050919050565b6000602082019050818103600083015261345881613024565b9050919050565b6000602082019050818103600083015261347881613047565b9050919050565b600060208201905081810360008301526134988161306a565b9050919050565b600060208201905081810360008301526134b88161308d565b9050919050565b600060208201905081810360008301526134d8816130b0565b9050919050565b600060208201905081810360008301526134f8816130d3565b9050919050565b60006020820190508181036000830152613518816130f6565b9050919050565b6000602082019050818103600083015261353881613119565b9050919050565b600060208201905081810360008301526135588161313c565b9050919050565b600060208201905081810360008301526135788161315f565b9050919050565b6000602082019050818103600083015261359881613182565b9050919050565b600060208201905081810360008301526135b8816131a5565b9050919050565b60006020820190506135d460008301846131c8565b92915050565b60006135e46135f5565b90506135f082826138cd565b919050565b6000604051905090565b600067ffffffffffffffff82111561361a57613619613a34565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561364657613645613a34565b5b61364f82613a7c565b9050602081019050919050565b600067ffffffffffffffff82111561367757613676613a34565b5b61368082613a7c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136db8261384f565b91506136e68361384f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371b5761371a613978565b5b828201905092915050565b60006137318261384f565b915061373c8361384f565b92508261374c5761374b6139a7565b5b828204905092915050565b60006137628261384f565b915061376d8361384f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137a6576137a5613978565b5b828202905092915050565b60006137bc8261384f565b91506137c78361384f565b9250828210156137da576137d9613978565b5b828203905092915050565b60006137f08261382f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561388657808201518184015260208101905061386b565b83811115613895576000848401525b50505050565b600060028204905060018216806138b357607f821691505b602082108114156138c7576138c66139d6565b5b50919050565b6138d682613a7c565b810181811067ffffffffffffffff821117156138f5576138f4613a34565b5b80604052505050565b60006139098261384f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393c5761393b613978565b5b600182019050919050565b60006139528261384f565b915061395d8361384f565b92508261396d5761396c6139a7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74203120746f6b656e20696e207468652065617260008201527f6c79206163636573732073616c65000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c642065786365656420746f74616c20616c6c6f7760008201527f656420666f72206561726c792061636365737300000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820616c6c6f77656460008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53656e646572206973206e6f74206f6e20746865206561726c7920616363657360008201527f73206c6973740000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e742073656e740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53656e6465722063616e6e6f7420636c61696d20616e79206d6f72652065617260008201527f6c7920616363657373206761756e746c65747320617420746869732074696d65602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b614143816137e5565b811461414e57600080fd5b50565b61415a816137f7565b811461416557600080fd5b50565b61417181613803565b811461417c57600080fd5b50565b6141888161384f565b811461419357600080fd5b5056fea2646970667358221220484d022ff4373e0c6c696e9b34419186aec8afef39b01807068542fdde64dc0e64736f6c6343000807003368747470733a2f2f6173736574732e626f737364726f70732e696f2f656d6f74696f6e732f

Deployed Bytecode

0x6080604052600436106102035760003560e01c80638293575211610118578063c87b56dd116100a0578063f19e75d41161006f578063f19e75d414610745578063f2fde38b1461076e578063f47c84c514610797578063f4a0a528146107c2578063f9c9816f146107eb57610203565b8063c87b56dd14610675578063cb2c9722146106b2578063d52079b4146106dd578063e985e9c51461070857610203565b806395da2da5116100e757806395da2da5146105b5578063a0712d68146105de578063a22cb465146105fa578063b7a67ab214610623578063b88d4fde1461064c57610203565b8063829357521461050b57806389a7aeac146105345780638da5cb5b1461055f57806395d89b411461058a57610203565b806334abf28d1161019b57806355f804b31161016a57806355f804b314610426578063603f4d521461044f5780636352211e1461047a57806370a08231146104b7578063715018a6146104f457610203565b806334abf28d146103905780633ccfd60b146103bb57806342842e0e146103d2578063460a0e93146103fb57610203565b8063084c4088116101d7578063084c4088146102ea578063095ea7b31461031357806318160ddd1461033c57806323b872dd1461036757610203565b8062fc5d111461020857806301ffc9a71461024557806306fdde0314610282578063081812fc146102ad575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190612ac0565b610816565b60405161023c9190613262565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612ccc565b6108c7565b6040516102799190613262565b60405180910390f35b34801561028e57600080fd5b506102976109a9565b6040516102a4919061327d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612d6f565b610a3b565b6040516102e191906131fb565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612d6f565b610ac0565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612c43565b610b97565b005b34801561034857600080fd5b50610351610caf565b60405161035e91906135bf565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612b2d565b610cb9565b005b34801561039c57600080fd5b506103a5610d19565b6040516103b291906135bf565b60405180910390f35b3480156103c757600080fd5b506103d0610d1f565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612b2d565b610dea565b005b34801561040757600080fd5b50610410610e0a565b60405161041d91906135bf565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190612d26565b610e10565b005b34801561045b57600080fd5b50610464610ea6565b60405161047191906135bf565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612d6f565b610eac565b6040516104ae91906131fb565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612ac0565b610f5e565b6040516104eb91906135bf565b60405180910390f35b34801561050057600080fd5b50610509611016565b005b34801561051757600080fd5b50610532600480360381019061052d9190612d6f565b61109e565b005b34801561054057600080fd5b50610549611124565b60405161055691906135bf565b60405180910390f35b34801561056b57600080fd5b5061057461112a565b60405161058191906131fb565b60405180910390f35b34801561059657600080fd5b5061059f611154565b6040516105ac919061327d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612c83565b6111e6565b005b6105f860048036038101906105f39190612d6f565b6112f7565b005b34801561060657600080fd5b50610621600480360381019061061c9190612c03565b611474565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612d6f565b6115f5565b005b34801561065857600080fd5b50610673600480360381019061066e9190612b80565b61167b565b005b34801561068157600080fd5b5061069c60048036038101906106979190612d6f565b6116dd565b6040516106a9919061327d565b60405180910390f35b3480156106be57600080fd5b506106c7611784565b6040516106d491906135bf565b60405180910390f35b3480156106e957600080fd5b506106f261178a565b6040516106ff91906135bf565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612aed565b611790565b60405161073c9190613262565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612d6f565b611824565b005b34801561077a57600080fd5b5061079560048036038101906107909190612ac0565b6118ad565b005b3480156107a357600080fd5b506107ac6119a5565b6040516107b991906135bf565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190612d6f565b6119ab565b005b3480156107f757600080fd5b50610800611a31565b60405161080d91906135bf565b60405180910390f35b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156108b15750600854600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b80156108c05750600954600a54105b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a257506109a182611a36565b5b9050919050565b6060600080546109b89061389b565b80601f01602080910402602001604051908101604052809291908181526020018280546109e49061389b565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b6000610a4682611aa0565b610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c9061347f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ac8611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610ae661112a565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906134bf565b60405180910390fd5b60008110158015610b4e575060028111155b610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b849061349f565b60405180910390fd5b80600d8190555050565b6000610ba282610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061353f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c32611b0c565b73ffffffffffffffffffffffffffffffffffffffff161480610c615750610c6081610c5b611b0c565b611790565b5b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906133ff565b60405180910390fd5b610caa8383611b14565b505050565b6000600f54905090565b610cca610cc4611b0c565b82611bcd565b610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061355f565b60405180910390fd5b610d14838383611cab565b505050565b600a5481565b610d27611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610d4561112a565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d92906134bf565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610de6573d6000803e3d6000fd5b5050565b610e058383836040518060200160405280600081525061167b565b505050565b60095481565b610e18611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610e3661112a565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906134bf565b60405180910390fd5b8060079080519060200190610ea2929190612836565b5050565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061343f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061341f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61101e611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661103c61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611089906134bf565b60405180910390fd5b61109c6000611f07565b565b6110a6611b0c565b73ffffffffffffffffffffffffffffffffffffffff166110c461112a565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906134bf565b60405180910390fd5b8060098190555050565b60085481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111639061389b565b80601f016020809104026020016040519081016040528092919081815260200182805461118f9061389b565b80156111dc5780601f106111b1576101008083540402835291602001916111dc565b820191906000526020600020905b8154815290600101906020018083116111bf57829003601f168201915b5050505050905090565b6111ee611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661120c61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611259906134bf565b60405180910390fd5b60005b81518110156112f3576001600b600084848151811061128757611286613a05565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112eb906138fe565b915050611265565b5050565b6001600d54148061130a57506002600d54145b611349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611340906133bf565b60405180910390fd5b6001600d5414156114035761135e3382611fcd565b6113a8600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001612169565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113f8600a546001612169565b600a81905550611419565b6002600d541415611418576114178161217f565b5b5b61142581600e546121c6565b341015611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e9061351f565b60405180910390fd5b61147133826121dc565b50565b61147c611b0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061337f565b60405180910390fd5b80600560006114f7611b0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a4611b0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e99190613262565b60405180910390a35050565b6115fd611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661161b61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906134bf565b60405180910390fd5b8060088190555050565b61168c611686611b0c565b83611bcd565b6116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c29061355f565b60405180910390fd5b6116d78484848461226a565b50505050565b60606116e882611aa0565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906134ff565b60405180910390fd5b60006117316122c6565b90506000815111611751576040518060200160405280600081525061177c565b8061175b84612358565b60405160200161176c9291906131d7565b6040516020818303038152906040525b915050919050565b600e5481565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182c611b0c565b73ffffffffffffffffffffffffffffffffffffffff1661184a61112a565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906134bf565b60405180910390fd5b6118aa33826121dc565b50565b6118b5611b0c565b73ffffffffffffffffffffffffffffffffffffffff166118d361112a565b73ffffffffffffffffffffffffffffffffffffffff1614611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611920906134bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611990906132ff565b60405180910390fd5b6119a281611f07565b50565b6106f181565b6119b3611b0c565b73ffffffffffffffffffffffffffffffffffffffff166119d161112a565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e906134bf565b60405180910390fd5b80600e8190555050565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b8783610eac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bd882611aa0565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906133df565b60405180910390fd5b6000611c2283610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9157508373ffffffffffffffffffffffffffffffffffffffff16611c7984610a3b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ca25750611ca18185611790565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ccb82610eac565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d18906134df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d889061335f565b60405180910390fd5b611d9c8383836124b9565b611da7600082611b14565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df791906137b1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4e91906136d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061339f565b60405180910390fd5b600954600a541061209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906132df565b60405180910390fd5b600854600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121199061357f565b60405180910390fd5b60018114612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c9061329f565b60405180910390fd5b5050565b6000818361217791906136d0565b905092915050565b600a8111156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba9061359f565b60405180910390fd5b50565b600081836121d49190613757565b905092915050565b60006121ea82600f54612169565b90506106f1811115612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122289061333f565b60405180910390fd5b5b80600f5410156122655761224883600f546124be565b600f600081548092919061225b906138fe565b9190505550612232565b505050565b612275848484611cab565b6122818484848461268c565b6122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b7906132bf565b60405180910390fd5b50505050565b6060600780546122d59061389b565b80601f01602080910402602001604051908101604052809291908181526020018280546123019061389b565b801561234e5780601f106123235761010080835404028352916020019161234e565b820191906000526020600020905b81548152906001019060200180831161233157829003601f168201915b5050505050905090565b606060008214156123a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b4565b600082905060005b600082146123d25780806123bb906138fe565b915050600a826123cb9190613726565b91506123a8565b60008167ffffffffffffffff8111156123ee576123ed613a34565b5b6040519080825280601f01601f1916602001820160405280156124205781602001600182028036833780820191505090505b5090505b600085146124ad5760018261243991906137b1565b9150600a856124489190613947565b603061245491906136d0565b60f81b81838151811061246a57612469613a05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a69190613726565b9450612424565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125259061345f565b60405180910390fd5b61253781611aa0565b15612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e9061331f565b60405180910390fd5b612583600083836124b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125d391906136d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006126ad8473ffffffffffffffffffffffffffffffffffffffff16612823565b15612816578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d6611b0c565b8786866040518563ffffffff1660e01b81526004016126f89493929190613216565b602060405180830381600087803b15801561271257600080fd5b505af192505050801561274357506040513d601f19601f820116820180604052508101906127409190612cf9565b60015b6127c6573d8060008114612773576040519150601f19603f3d011682016040523d82523d6000602084013e612778565b606091505b506000815114156127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b5906132bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061281b565b600190505b949350505050565b600080823b905060008111915050919050565b8280546128429061389b565b90600052602060002090601f01602090048101928261286457600085556128ab565b82601f1061287d57805160ff19168380011785556128ab565b828001600101855582156128ab579182015b828111156128aa57825182559160200191906001019061288f565b5b5090506128b891906128bc565b5090565b5b808211156128d55760008160009055506001016128bd565b5090565b60006128ec6128e7846135ff565b6135da565b9050808382526020820190508285602086028201111561290f5761290e613a68565b5b60005b8581101561293f578161292588826129cd565b845260208401935060208301925050600181019050612912565b5050509392505050565b600061295c6129578461362b565b6135da565b90508281526020810184848401111561297857612977613a6d565b5b612983848285613859565b509392505050565b600061299e6129998461365c565b6135da565b9050828152602081018484840111156129ba576129b9613a6d565b5b6129c5848285613859565b509392505050565b6000813590506129dc8161413a565b92915050565b600082601f8301126129f7576129f6613a63565b5b8135612a078482602086016128d9565b91505092915050565b600081359050612a1f81614151565b92915050565b600081359050612a3481614168565b92915050565b600081519050612a4981614168565b92915050565b600082601f830112612a6457612a63613a63565b5b8135612a74848260208601612949565b91505092915050565b600082601f830112612a9257612a91613a63565b5b8135612aa284826020860161298b565b91505092915050565b600081359050612aba8161417f565b92915050565b600060208284031215612ad657612ad5613a77565b5b6000612ae4848285016129cd565b91505092915050565b60008060408385031215612b0457612b03613a77565b5b6000612b12858286016129cd565b9250506020612b23858286016129cd565b9150509250929050565b600080600060608486031215612b4657612b45613a77565b5b6000612b54868287016129cd565b9350506020612b65868287016129cd565b9250506040612b7686828701612aab565b9150509250925092565b60008060008060808587031215612b9a57612b99613a77565b5b6000612ba8878288016129cd565b9450506020612bb9878288016129cd565b9350506040612bca87828801612aab565b925050606085013567ffffffffffffffff811115612beb57612bea613a72565b5b612bf787828801612a4f565b91505092959194509250565b60008060408385031215612c1a57612c19613a77565b5b6000612c28858286016129cd565b9250506020612c3985828601612a10565b9150509250929050565b60008060408385031215612c5a57612c59613a77565b5b6000612c68858286016129cd565b9250506020612c7985828601612aab565b9150509250929050565b600060208284031215612c9957612c98613a77565b5b600082013567ffffffffffffffff811115612cb757612cb6613a72565b5b612cc3848285016129e2565b91505092915050565b600060208284031215612ce257612ce1613a77565b5b6000612cf084828501612a25565b91505092915050565b600060208284031215612d0f57612d0e613a77565b5b6000612d1d84828501612a3a565b91505092915050565b600060208284031215612d3c57612d3b613a77565b5b600082013567ffffffffffffffff811115612d5a57612d59613a72565b5b612d6684828501612a7d565b91505092915050565b600060208284031215612d8557612d84613a77565b5b6000612d9384828501612aab565b91505092915050565b612da5816137e5565b82525050565b612db4816137f7565b82525050565b6000612dc58261368d565b612dcf81856136a3565b9350612ddf818560208601613868565b612de881613a7c565b840191505092915050565b6000612dfe82613698565b612e0881856136b4565b9350612e18818560208601613868565b612e2181613a7c565b840191505092915050565b6000612e3782613698565b612e4181856136c5565b9350612e51818560208601613868565b80840191505092915050565b6000612e6a602e836136b4565b9150612e7582613a8d565b604082019050919050565b6000612e8d6032836136b4565b9150612e9882613adc565b604082019050919050565b6000612eb06033836136b4565b9150612ebb82613b2b565b604082019050919050565b6000612ed36026836136b4565b9150612ede82613b7a565b604082019050919050565b6000612ef6601c836136b4565b9150612f0182613bc9565b602082019050919050565b6000612f196027836136b4565b9150612f2482613bf2565b604082019050919050565b6000612f3c6024836136b4565b9150612f4782613c41565b604082019050919050565b6000612f5f6019836136b4565b9150612f6a82613c90565b602082019050919050565b6000612f826026836136b4565b9150612f8d82613cb9565b604082019050919050565b6000612fa5601b836136b4565b9150612fb082613d08565b602082019050919050565b6000612fc8602c836136b4565b9150612fd382613d31565b604082019050919050565b6000612feb6038836136b4565b9150612ff682613d80565b604082019050919050565b600061300e602a836136b4565b915061301982613dcf565b604082019050919050565b60006130316029836136b4565b915061303c82613e1e565b604082019050919050565b60006130546020836136b4565b915061305f82613e6d565b602082019050919050565b6000613077602c836136b4565b915061308282613e96565b604082019050919050565b600061309a600d836136b4565b91506130a582613ee5565b602082019050919050565b60006130bd6020836136b4565b91506130c882613f0e565b602082019050919050565b60006130e06029836136b4565b91506130eb82613f37565b604082019050919050565b6000613103602f836136b4565b915061310e82613f86565b604082019050919050565b60006131266018836136b4565b915061313182613fd5565b602082019050919050565b60006131496021836136b4565b915061315482613ffe565b604082019050919050565b600061316c6031836136b4565b91506131778261404d565b604082019050919050565b600061318f6040836136b4565b915061319a8261409c565b604082019050919050565b60006131b26021836136b4565b91506131bd826140eb565b604082019050919050565b6131d18161384f565b82525050565b60006131e38285612e2c565b91506131ef8284612e2c565b91508190509392505050565b60006020820190506132106000830184612d9c565b92915050565b600060808201905061322b6000830187612d9c565b6132386020830186612d9c565b61324560408301856131c8565b81810360608301526132578184612dba565b905095945050505050565b60006020820190506132776000830184612dab565b92915050565b600060208201905081810360008301526132978184612df3565b905092915050565b600060208201905081810360008301526132b881612e5d565b9050919050565b600060208201905081810360008301526132d881612e80565b9050919050565b600060208201905081810360008301526132f881612ea3565b9050919050565b6000602082019050818103600083015261331881612ec6565b9050919050565b6000602082019050818103600083015261333881612ee9565b9050919050565b6000602082019050818103600083015261335881612f0c565b9050919050565b6000602082019050818103600083015261337881612f2f565b9050919050565b6000602082019050818103600083015261339881612f52565b9050919050565b600060208201905081810360008301526133b881612f75565b9050919050565b600060208201905081810360008301526133d881612f98565b9050919050565b600060208201905081810360008301526133f881612fbb565b9050919050565b6000602082019050818103600083015261341881612fde565b9050919050565b6000602082019050818103600083015261343881613001565b9050919050565b6000602082019050818103600083015261345881613024565b9050919050565b6000602082019050818103600083015261347881613047565b9050919050565b600060208201905081810360008301526134988161306a565b9050919050565b600060208201905081810360008301526134b88161308d565b9050919050565b600060208201905081810360008301526134d8816130b0565b9050919050565b600060208201905081810360008301526134f8816130d3565b9050919050565b60006020820190508181036000830152613518816130f6565b9050919050565b6000602082019050818103600083015261353881613119565b9050919050565b600060208201905081810360008301526135588161313c565b9050919050565b600060208201905081810360008301526135788161315f565b9050919050565b6000602082019050818103600083015261359881613182565b9050919050565b600060208201905081810360008301526135b8816131a5565b9050919050565b60006020820190506135d460008301846131c8565b92915050565b60006135e46135f5565b90506135f082826138cd565b919050565b6000604051905090565b600067ffffffffffffffff82111561361a57613619613a34565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561364657613645613a34565b5b61364f82613a7c565b9050602081019050919050565b600067ffffffffffffffff82111561367757613676613a34565b5b61368082613a7c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136db8261384f565b91506136e68361384f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371b5761371a613978565b5b828201905092915050565b60006137318261384f565b915061373c8361384f565b92508261374c5761374b6139a7565b5b828204905092915050565b60006137628261384f565b915061376d8361384f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137a6576137a5613978565b5b828202905092915050565b60006137bc8261384f565b91506137c78361384f565b9250828210156137da576137d9613978565b5b828203905092915050565b60006137f08261382f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561388657808201518184015260208101905061386b565b83811115613895576000848401525b50505050565b600060028204905060018216806138b357607f821691505b602082108114156138c7576138c66139d6565b5b50919050565b6138d682613a7c565b810181811067ffffffffffffffff821117156138f5576138f4613a34565b5b80604052505050565b60006139098261384f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393c5761393b613978565b5b600182019050919050565b60006139528261384f565b915061395d8361384f565b92508261396d5761396c6139a7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74203120746f6b656e20696e207468652065617260008201527f6c79206163636573732073616c65000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c642065786365656420746f74616c20616c6c6f7760008201527f656420666f72206561726c792061636365737300000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820616c6c6f77656460008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53656e646572206973206e6f74206f6e20746865206561726c7920616363657360008201527f73206c6973740000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e742073656e740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53656e6465722063616e6e6f7420636c61696d20616e79206d6f72652065617260008201527f6c7920616363657373206761756e746c65747320617420746869732074696d65602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b614143816137e5565b811461414e57600080fd5b50565b61415a816137f7565b811461416557600080fd5b50565b61417181613803565b811461417c57600080fd5b50565b6141888161384f565b811461419357600080fd5b5056fea2646970667358221220484d022ff4373e0c6c696e9b34419186aec8afef39b01807068542fdde64dc0e64736f6c63430008070033

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.