ETH Price: $2,604.99 (+0.18%)
Gas: 1 Gwei

Token

Shadow 14 (S14)
 

Overview

Max Total Supply

1,000 S14

Holders

394

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 S14
0x80bd1628f974254d6f90290f5fbb5224115795b4
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:
Shadow14

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : shadow14.sol
// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

/// @title Shadow 14

//       ____  _               _                 _ _  _   
//      / ___|| |__   __ _  __| | _____      __ / | || |  
//      \___ \| '_ \ / _` |/ _` |/ _ \ \ /\ / / | | || |_ 
//       ___) | | | | (_| | (_| | (_) \ V  V /  | |__   _|
//      |____/|_| |_|\__,_|\__,_|\___/ \_/\_/   |_|  |_|   

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

    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);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_
  ) {
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = 10;
    collectionSize = 10000;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index <= totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId <= currentIndex && tokenId > 0;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex + 1;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex - 1;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

contract Shadow14 is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    //NOTE Token values incremented for gas efficiency
    uint256 private maxSalePlusOne = 1001;

    uint256 public mintAllowancePlusOne = 4;

    bytes32 public merkleRoot;

    enum ContractState {
        OFF,
        ON
    }
    ContractState public contractState = ContractState.OFF;

    string public placeholderURI;
    string public baseURI;

    address public recipient;

    constructor() ERC721A("Shadow 14", "S14") {
        placeholderURI = "ipfs://.../";

        //address that will recieve mint funds
        recipient = msg.sender;

        //merkleRoot = 0x;

    }

    //
    // Modifiers
    //

    /**
     * Do not allow calls from other contracts.
     */
    modifier noBots() {
        require(msg.sender == tx.origin, "No bots!");
        _;
    }

    /**
     * Ensure current state is correct for this method.
     */
    modifier isContractState(ContractState contractState_) {
        require(contractState == contractState_, "Invalid state");
        _;
    }

    /**
     * Ensure amount of tokens to mint is within the limit.
     */
    modifier withinMintLimit(uint256 quantity) {
        require((totalSupply() + quantity) < maxSalePlusOne, "Exceeds available tokens");
        _;
    }

    //
    // Mint
    //

    /**
     * Mint tokens.
     * @notice This function is only available to those on the allowlist.
     * @param quantity The number of tokens to mint.
     */
    function mintWhitelist(uint256 quantity, bytes32[] calldata proof)
        external
        noBots
        isContractState(ContractState.ON)
        withinMintLimit(quantity)
    {
        require(_numberMinted(msg.sender) + quantity < mintAllowancePlusOne, "Exceeds allowance!");
        require(verify(merkleRoot, keccak256(abi.encodePacked(msg.sender)), proof), "Not a valid proof!");
        _safeMint(msg.sender, quantity);
    }

    //
    // Admin
    //

    /**
     * Set contract state.
     * @param contractState_ The new state of the contract.
     */
    function setContractState(uint contractState_) external onlyOwner {
        require(contractState_ < 2, "Invalid Contract State!");
        if (contractState_ == 0) {
            contractState = ContractState.OFF;
        }
        else {
            contractState = ContractState.ON;
        }
        
    }

    /**
     * Update maximum number of tokens for sale.
     * @param maxSale The maximum number of tokens available for sale.
     */
    function setMaxSale(uint256 maxSale) external onlyOwner {
        uint256 maxSalePlusOne_ = maxSale + 1;
        require(maxSalePlusOne_ < maxSalePlusOne, "Can only reduce supply");
        maxSalePlusOne = maxSalePlusOne_;
    }

    /**
     * Update mint allowance.
     * @param newAllowance The new allowance.
     */
    function setAllowance(uint256 newAllowance) external onlyOwner {
        mintAllowancePlusOne = newAllowance + 1;
    }

    /**
     * Set the presale Merkle root.
     * @dev The Merkle root is calculated from [address, allowance] pairs.
     * @param merkleRoot_ The new merkle roo
     */
    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        merkleRoot = merkleRoot_;
    }

    /**
     * Sets base URI.
     * @param baseURI_ The base URI
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    /**
     * Sets placeholder URI.
     * @param placeholderURI_ The placeholder URI
     */
    function setPlaceholderURI(string memory placeholderURI_) external onlyOwner {
        placeholderURI = placeholderURI_;
    }

    /**
     * Update wallet that will recieve funds.
     * @param newRecipient The new address that will recieve funds
     */
    function setRecipient(address newRecipient) external onlyOwner {
        require(newRecipient != address(0), "Cannot be the 0 address!");
        recipient = newRecipient;
    }


    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(recipient), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    //
    // Views
    //

    /**
     * The block.timestamp when this token was transferred to the current owner.
     * @param tokenId The token id to query
     */
    function ownedSince(uint256 tokenId) public view returns (uint256) {
        return ownershipOf(tokenId).startTimestamp;
    }

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

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

    /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) {
        return ERC721A.supportsInterface(interfaceId);
    }

    /**
     * Verify the Merkle proof is valid.
     * @param root The Merkle root. Use the value stored in the contract
     * @param leaf The leaf. A [address, availableAmt] pair
     * @param proof The Merkle proof used to validate the leaf is in the root
     */
    function verify(
        bytes32 root,
        bytes32 leaf,
        bytes32[] memory proof
    ) public pure returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    /**
     * Get the current amount of Eth stored
     */
    function accountBalance() public view returns(uint) {
        return address(this).balance;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "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":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractState","outputs":[{"internalType":"enum Shadow14.ContractState","name":"","type":"uint8"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAllowancePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownedSince","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAllowance","type":"uint256"}],"name":"setAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"contractState_","type":"uint256"}],"name":"setContractState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSale","type":"uint256"}],"name":"setMaxSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI_","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556103e9600a556004600b556000600d60006101000a81548160ff0219169083600181111562000041576200004062000342565b5b02179055503480156200005357600080fd5b506040518060400160405280600981526020017f536861646f7720313400000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53313400000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000d892919062000292565b508060029080519060200190620000f192919062000292565b50600a60a08181525050612710608081815250505050620001276200011b620001c460201b60201c565b620001cc60201b60201c565b60016009819055506040518060400160405280600b81526020017f697066733a2f2f2e2e2e2f000000000000000000000000000000000000000000815250600e90805190602001906200017c92919062000292565b5033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003d6565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a090620003a0565b90600052602060002090601f016020900481019282620002c4576000855562000310565b82601f10620002df57805160ff191683800117855562000310565b8280016001018555821562000310579182015b828111156200030f578251825591602001919060010190620002f2565b5b5090506200031f919062000323565b5090565b5b808211156200033e57600081600090555060010162000324565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b957607f821691505b60208210811415620003d057620003cf62000371565b5b50919050565b60805160a05161535b62000407600039600081816127220152818161274b0152612dc701526000505061535b6000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c80635a485599116101305780638da5cb5b116100b8578063c87b56dd1161007c578063c87b56dd14610665578063d7224ba014610695578063e985e9c5146106b3578063f2fde38b146106e3578063fb7265ff146106ff57610232565b80638da5cb5b146105d357806395d89b41146105f1578063a22cb4651461060f578063b0a1c1c41461062b578063b88d4fde1461064957610232565b806370a08231116100ff57806370a0823114610541578063715018a6146105715780637313cba91461057b5780637cb647591461059957806385209ee0146105b557610232565b80635a485599146104a55780636352211e146104d557806366d003ac146105055780636c0360eb1461052357610232565b80632eb4a7ab116101be5780633bbed4a0116101825780633bbed4a0146104175780633ccfd60b1461043357806342842e0e1461043d5780634f6ccce71461045957806355f804b31461048957610232565b80632eb4a7ab146103615780632f745c591461037f5780633423e548146103af5780633574a2dd146103df5780633ba93f26146103fb57610232565b806308290dc51161020557806308290dc5146102d1578063095ea7b3146102ed5780630f5eda9e1461030957806318160ddd1461032757806323b872dd1461034557610232565b806301ffc9a714610237578063061431a81461026757806306fdde0314610283578063081812fc146102a1575b600080fd5b610251600480360381019061024c919061340c565b61071b565b60405161025e9190613454565b60405180910390f35b610281600480360381019061027c919061350a565b61072d565b005b61028b610984565b6040516102989190613603565b60405180910390f35b6102bb60048036038101906102b69190613625565b610a16565b6040516102c89190613693565b60405180910390f35b6102eb60048036038101906102e69190613625565b610a9b565b005b610307600480360381019061030291906136da565b610b77565b005b610311610c90565b60405161031e9190613729565b60405180910390f35b61032f610c96565b60405161033c9190613729565b60405180910390f35b61035f600480360381019061035a9190613744565b610c9f565b005b610369610caf565b60405161037691906137b0565b60405180910390f35b610399600480360381019061039491906136da565b610cb5565b6040516103a69190613729565b60405180910390f35b6103c960048036038101906103c49190613935565b610eb3565b6040516103d69190613454565b60405180910390f35b6103f960048036038101906103f49190613a59565b610ec9565b005b61041560048036038101906104109190613625565b610f5f565b005b610431600480360381019061042c9190613aa2565b610ff1565b005b61043b611121565b005b61045760048036038101906104529190613744565b61121b565b005b610473600480360381019061046e9190613625565b61123b565b6040516104809190613729565b60405180910390f35b6104a3600480360381019061049e9190613a59565b61128f565b005b6104bf60048036038101906104ba9190613625565b611325565b6040516104cc9190613729565b60405180910390f35b6104ef60048036038101906104ea9190613625565b611345565b6040516104fc9190613693565b60405180910390f35b61050d61135b565b60405161051a9190613693565b60405180910390f35b61052b611381565b6040516105389190613603565b60405180910390f35b61055b60048036038101906105569190613aa2565b61140f565b6040516105689190613729565b60405180910390f35b6105796114f8565b005b610583611580565b6040516105909190613603565b60405180910390f35b6105b360048036038101906105ae9190613acf565b61160e565b005b6105bd611694565b6040516105ca9190613b73565b60405180910390f35b6105db6116a7565b6040516105e89190613693565b60405180910390f35b6105f96116d1565b6040516106069190613603565b60405180910390f35b61062960048036038101906106249190613bba565b611763565b005b6106336118e4565b6040516106409190613729565b60405180910390f35b610663600480360381019061065e9190613c9b565b6118ec565b005b61067f600480360381019061067a9190613625565b611948565b60405161068c9190613603565b60405180910390f35b61069d611a6f565b6040516106aa9190613729565b60405180910390f35b6106cd60048036038101906106c89190613d1e565b611a75565b6040516106da9190613454565b60405180910390f35b6106fd60048036038101906106f89190613aa2565b611b09565b005b61071960048036038101906107149190613625565b611c01565b005b600061072682611d28565b9050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290613daa565b60405180910390fd5b60018060018111156107b0576107af613afc565b5b600d60009054906101000a900460ff1660018111156107d2576107d1613afc565b5b14610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990613e16565b60405180910390fd5b83600a548161081f610c96565b6108299190613e65565b10610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090613f07565b60405180910390fd5b600b548561087633611e72565b6108809190613e65565b106108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b790613f73565b60405180910390fd5b610934600c54336040516020016108d79190613fdb565b60405160208183030381529060405280519060200120868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610eb3565b610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90614042565b60405180910390fd5b61097d3386611f5b565b5050505050565b60606001805461099390614091565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf90614091565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6000610a2182611f79565b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790614135565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610aa3611f93565b73ffffffffffffffffffffffffffffffffffffffff16610ac16116a7565b73ffffffffffffffffffffffffffffffffffffffff1614610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e906141a1565b60405180910390fd5b6000600182610b269190613e65565b9050600a548110610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061420d565b60405180910390fd5b80600a819055505050565b6000610b8282611345565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061429f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c12611f93565b73ffffffffffffffffffffffffffffffffffffffff161480610c415750610c4081610c3b611f93565b611a75565b5b610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614331565b60405180910390fd5b610c8b838383611f9b565b505050565b600b5481565b60008054905090565b610caa83838361204d565b505050565b600c5481565b6000610cc08361140f565b8210610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906143c3565b60405180910390fd5b6000610d0b610c96565b905060008060005b83811015610e71576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e0557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e5d5786841415610e4e578195505050505050610ead565b8380610e59906143e3565b9450505b508080610e69906143e3565b915050610d13565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea49061449e565b60405180910390fd5b92915050565b6000610ec0828585612606565b90509392505050565b610ed1611f93565b73ffffffffffffffffffffffffffffffffffffffff16610eef6116a7565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c906141a1565b60405180910390fd5b80600e9080519060200190610f5b9291906132c3565b5050565b610f67611f93565b73ffffffffffffffffffffffffffffffffffffffff16610f856116a7565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906141a1565b60405180910390fd5b600181610fe89190613e65565b600b8190555050565b610ff9611f93565b73ffffffffffffffffffffffffffffffffffffffff166110176116a7565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611064906141a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d49061450a565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611129611f93565b73ffffffffffffffffffffffffffffffffffffffff166111476116a7565b73ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906141a1565b60405180910390fd5b60006111a76118e4565b9050600081116111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e39061459c565b60405180910390fd5b611218601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261261d565b50565b611236838383604051806020016040528060008152506118ec565b505050565b6000611245610c96565b821115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e9061462e565b60405180910390fd5b819050919050565b611297611f93565b73ffffffffffffffffffffffffffffffffffffffff166112b56116a7565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611302906141a1565b60405180910390fd5b80600f90805190602001906113219291906132c3565b5050565b6000611330826126ce565b6020015167ffffffffffffffff169050919050565b6000611350826126ce565b600001519050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f805461138e90614091565b80601f01602080910402602001604051908101604052809291908181526020018280546113ba90614091565b80156114075780601f106113dc57610100808354040283529160200191611407565b820191906000526020600020905b8154815290600101906020018083116113ea57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906146c0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611500611f93565b73ffffffffffffffffffffffffffffffffffffffff1661151e6116a7565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b906141a1565b60405180910390fd5b61157e60006128d1565b565b600e805461158d90614091565b80601f01602080910402602001604051908101604052809291908181526020018280546115b990614091565b80156116065780601f106115db57610100808354040283529160200191611606565b820191906000526020600020905b8154815290600101906020018083116115e957829003601f168201915b505050505081565b611616611f93565b73ffffffffffffffffffffffffffffffffffffffff166116346116a7565b73ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906141a1565b60405180910390fd5b80600c8190555050565b600d60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116e090614091565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90614091565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b5050505050905090565b61176b611f93565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061472c565b60405180910390fd5b80600660006117e6611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611893611f93565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d89190613454565b60405180910390a35050565b600047905090565b6118f784848461204d565b61190384848484612997565b611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906147be565b60405180910390fd5b50505050565b60606119578261ffff16611f79565b611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d9061482a565b60405180910390fd5b6000600f80546119a590614091565b905011611a3c57600e80546119b990614091565b80601f01602080910402602001604051908101604052809291908181526020018280546119e590614091565b8015611a325780601f10611a0757610100808354040283529160200191611a32565b820191906000526020600020905b815481529060010190602001808311611a1557829003601f168201915b5050505050611a68565b600f611a4783612b2e565b604051602001611a58929190614966565b6040516020818303038152906040525b9050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b11611f93565b73ffffffffffffffffffffffffffffffffffffffff16611b2f6116a7565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906141a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90614a07565b60405180910390fd5b611bfe816128d1565b50565b611c09611f93565b73ffffffffffffffffffffffffffffffffffffffff16611c276116a7565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906141a1565b60405180910390fd5b60028110611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614a73565b60405180910390fd5b6000811415611cf9576000600d60006101000a81548160ff02191690836001811115611cef57611cee613afc565b5b0217905550611d25565b6001600d60006101000a81548160ff02191690836001811115611d1f57611d1e613afc565b5b02179055505b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e5b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e6b5750611e6a82612c8f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90614b05565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611f75828260405180602001604052806000815250612cf9565b5050565b600080548211158015611f8c5750600082115b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612058826126ce565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661207f611f93565b73ffffffffffffffffffffffffffffffffffffffff1614806120db57506120a4611f93565b73ffffffffffffffffffffffffffffffffffffffff166120c384610a16565b73ffffffffffffffffffffffffffffffffffffffff16145b806120f757506120f682600001516120f1611f93565b611a75565b5b905080612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614b97565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290614cbb565b60405180910390fd5b61222885858560016131f1565b6122386000848460000151611f9b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122a69190614cf7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661234a9190614d2b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124509190613e65565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612596576124c681611f79565b15612595576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125fe86868660016131f7565b505050505050565b60008261261385846131fd565b1490509392505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161264390614da2565b60006040518083038185875af1925050503d8060008114612680576040519150601f19603f3d011682016040523d82523d6000602084013e612685565b606091505b50509050806126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090614e03565b60405180910390fd5b505050565b6126d6613349565b6126df82611f79565b61271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614e95565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127825760017f0000000000000000000000000000000000000000000000000000000000000000846127759190614eb5565b61277f9190613e65565b90505b60008390505b818110612890576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461287c578093505050506128cc565b50808061288890614ee9565b915050612788565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c390614f85565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006129b88473ffffffffffffffffffffffffffffffffffffffff166132b0565b15612b21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129e1611f93565b8786866040518563ffffffff1660e01b8152600401612a039493929190614ffa565b602060405180830381600087803b158015612a1d57600080fd5b505af1925050508015612a4e57506040513d601f19601f82011682018060405250810190612a4b919061505b565b60015b612ad1573d8060008114612a7e576040519150601f19603f3d011682016040523d82523d6000602084013e612a83565b606091505b50600081511415612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac0906147be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b26565b600190505b949350505050565b60606000821415612b76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c8a565b600082905060005b60008214612ba8578080612b91906143e3565b915050600a82612ba191906150b7565b9150612b7e565b60008167ffffffffffffffff811115612bc457612bc36137f7565b5b6040519080825280601f01601f191660200182016040528015612bf65781602001600182028036833780820191505090505b5090505b60008514612c8357600182612c0f9190614eb5565b9150600a85612c1e91906150e8565b6030612c2a9190613e65565b60f81b818381518110612c4057612c3f615119565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c7c91906150b7565b9450612bfa565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001600054612d0a9190613e65565b9050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d73906151ba565b60405180910390fd5b612d8581611f79565b15612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbc90615226565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1f906152b8565b60405180910390fd5b612e3560008583866131f1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f329190614d2b565b6fffffffffffffffffffffffffffffffff168152602001858360200151612f599190614d2b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156131c857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131686000888488612997565b6131a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319e906147be565b60405180910390fd5b81806131b2906143e3565b92505080806131c0906143e3565b9150506130f7565b506001816131d69190614eb5565b6000819055506131e960008785886131f7565b505050505050565b50505050565b50505050565b60008082905060005b84518110156132a557600085828151811061322457613223615119565b5b602002602001015190508083116132655782816040516020016132489291906152f9565b604051602081830303815290604052805190602001209250613291565b80836040516020016132789291906152f9565b6040516020818303038152906040528051906020012092505b50808061329d906143e3565b915050613206565b508091505092915050565b600080823b905060008111915050919050565b8280546132cf90614091565b90600052602060002090601f0160209004810192826132f15760008555613338565b82601f1061330a57805160ff1916838001178555613338565b82800160010185558215613338579182015b8281111561333757825182559160200191906001019061331c565b5b5090506133459190613383565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561339c576000816000905550600101613384565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133e9816133b4565b81146133f457600080fd5b50565b600081359050613406816133e0565b92915050565b600060208284031215613422576134216133aa565b5b6000613430848285016133f7565b91505092915050565b60008115159050919050565b61344e81613439565b82525050565b60006020820190506134696000830184613445565b92915050565b6000819050919050565b6134828161346f565b811461348d57600080fd5b50565b60008135905061349f81613479565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126134ca576134c96134a5565b5b8235905067ffffffffffffffff8111156134e7576134e66134aa565b5b602083019150836020820283011115613503576135026134af565b5b9250929050565b600080600060408486031215613523576135226133aa565b5b600061353186828701613490565b935050602084013567ffffffffffffffff811115613552576135516133af565b5b61355e868287016134b4565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a4578082015181840152602081019050613589565b838111156135b3576000848401525b50505050565b6000601f19601f8301169050919050565b60006135d58261356a565b6135df8185613575565b93506135ef818560208601613586565b6135f8816135b9565b840191505092915050565b6000602082019050818103600083015261361d81846135ca565b905092915050565b60006020828403121561363b5761363a6133aa565b5b600061364984828501613490565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061367d82613652565b9050919050565b61368d81613672565b82525050565b60006020820190506136a86000830184613684565b92915050565b6136b781613672565b81146136c257600080fd5b50565b6000813590506136d4816136ae565b92915050565b600080604083850312156136f1576136f06133aa565b5b60006136ff858286016136c5565b925050602061371085828601613490565b9150509250929050565b6137238161346f565b82525050565b600060208201905061373e600083018461371a565b92915050565b60008060006060848603121561375d5761375c6133aa565b5b600061376b868287016136c5565b935050602061377c868287016136c5565b925050604061378d86828701613490565b9150509250925092565b6000819050919050565b6137aa81613797565b82525050565b60006020820190506137c560008301846137a1565b92915050565b6137d481613797565b81146137df57600080fd5b50565b6000813590506137f1816137cb565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382f826135b9565b810181811067ffffffffffffffff8211171561384e5761384d6137f7565b5b80604052505050565b60006138616133a0565b905061386d8282613826565b919050565b600067ffffffffffffffff82111561388d5761388c6137f7565b5b602082029050602081019050919050565b60006138b16138ac84613872565b613857565b905080838252602082019050602084028301858111156138d4576138d36134af565b5b835b818110156138fd57806138e988826137e2565b8452602084019350506020810190506138d6565b5050509392505050565b600082601f83011261391c5761391b6134a5565b5b813561392c84826020860161389e565b91505092915050565b60008060006060848603121561394e5761394d6133aa565b5b600061395c868287016137e2565b935050602061396d868287016137e2565b925050604084013567ffffffffffffffff81111561398e5761398d6133af565b5b61399a86828701613907565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156139c4576139c36137f7565b5b6139cd826135b9565b9050602081019050919050565b82818337600083830152505050565b60006139fc6139f7846139a9565b613857565b905082815260208101848484011115613a1857613a176139a4565b5b613a238482856139da565b509392505050565b600082601f830112613a4057613a3f6134a5565b5b8135613a508482602086016139e9565b91505092915050565b600060208284031215613a6f57613a6e6133aa565b5b600082013567ffffffffffffffff811115613a8d57613a8c6133af565b5b613a9984828501613a2b565b91505092915050565b600060208284031215613ab857613ab76133aa565b5b6000613ac6848285016136c5565b91505092915050565b600060208284031215613ae557613ae46133aa565b5b6000613af3848285016137e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110613b3c57613b3b613afc565b5b50565b6000819050613b4d82613b2b565b919050565b6000613b5d82613b3f565b9050919050565b613b6d81613b52565b82525050565b6000602082019050613b886000830184613b64565b92915050565b613b9781613439565b8114613ba257600080fd5b50565b600081359050613bb481613b8e565b92915050565b60008060408385031215613bd157613bd06133aa565b5b6000613bdf858286016136c5565b9250506020613bf085828601613ba5565b9150509250929050565b600067ffffffffffffffff821115613c1557613c146137f7565b5b613c1e826135b9565b9050602081019050919050565b6000613c3e613c3984613bfa565b613857565b905082815260208101848484011115613c5a57613c596139a4565b5b613c658482856139da565b509392505050565b600082601f830112613c8257613c816134a5565b5b8135613c92848260208601613c2b565b91505092915050565b60008060008060808587031215613cb557613cb46133aa565b5b6000613cc3878288016136c5565b9450506020613cd4878288016136c5565b9350506040613ce587828801613490565b925050606085013567ffffffffffffffff811115613d0657613d056133af565b5b613d1287828801613c6d565b91505092959194509250565b60008060408385031215613d3557613d346133aa565b5b6000613d43858286016136c5565b9250506020613d54858286016136c5565b9150509250929050565b7f4e6f20626f747321000000000000000000000000000000000000000000000000600082015250565b6000613d94600883613575565b9150613d9f82613d5e565b602082019050919050565b60006020820190508181036000830152613dc381613d87565b9050919050565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b6000613e00600d83613575565b9150613e0b82613dca565b602082019050919050565b60006020820190508181036000830152613e2f81613df3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e708261346f565b9150613e7b8361346f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eb057613eaf613e36565b5b828201905092915050565b7f4578636565647320617661696c61626c6520746f6b656e730000000000000000600082015250565b6000613ef1601883613575565b9150613efc82613ebb565b602082019050919050565b60006020820190508181036000830152613f2081613ee4565b9050919050565b7f4578636565647320616c6c6f77616e6365210000000000000000000000000000600082015250565b6000613f5d601283613575565b9150613f6882613f27565b602082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b60008160601b9050919050565b6000613fab82613f93565b9050919050565b6000613fbd82613fa0565b9050919050565b613fd5613fd082613672565b613fb2565b82525050565b6000613fe78284613fc4565b60148201915081905092915050565b7f4e6f7420612076616c69642070726f6f66210000000000000000000000000000600082015250565b600061402c601283613575565b915061403782613ff6565b602082019050919050565b6000602082019050818103600083015261405b8161401f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a957607f821691505b602082108114156140bd576140bc614062565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061411f602d83613575565b915061412a826140c3565b604082019050919050565b6000602082019050818103600083015261414e81614112565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061418b602083613575565b915061419682614155565b602082019050919050565b600060208201905081810360008301526141ba8161417e565b9050919050565b7f43616e206f6e6c792072656475636520737570706c7900000000000000000000600082015250565b60006141f7601683613575565b9150614202826141c1565b602082019050919050565b60006020820190508181036000830152614226816141ea565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614289602283613575565b91506142948261422d565b604082019050919050565b600060208201905081810360008301526142b88161427c565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061431b603983613575565b9150614326826142bf565b604082019050919050565b6000602082019050818103600083015261434a8161430e565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006143ad602283613575565b91506143b882614351565b604082019050919050565b600060208201905081810360008301526143dc816143a0565b9050919050565b60006143ee8261346f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442157614420613e36565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614488602e83613575565b91506144938261442c565b604082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f43616e6e6f742062652074686520302061646472657373210000000000000000600082015250565b60006144f4601883613575565b91506144ff826144be565b602082019050919050565b60006020820190508181036000830152614523816144e7565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614586602283613575565b91506145918261452a565b604082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614618602383613575565b9150614623826145bc565b604082019050919050565b600060208201905081810360008301526146478161460b565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006146aa602b83613575565b91506146b58261464e565b604082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614716601a83613575565b9150614721826146e0565b602082019050919050565b6000602082019050818103600083015261474581614709565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006147a8603383613575565b91506147b38261474c565b604082019050919050565b600060208201905081810360008301526147d78161479b565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000614814601f83613575565b915061481f826147de565b602082019050919050565b6000602082019050818103600083015261484381614807565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461487781614091565b614881818661484a565b9450600182166000811461489c57600181146148ad576148e0565b60ff198316865281860193506148e0565b6148b685614855565b60005b838110156148d8578154818901526001820191506020810190506148b9565b838801955050505b50505092915050565b60006148f48261356a565b6148fe818561484a565b935061490e818560208601613586565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061495060058361484a565b915061495b8261491a565b600582019050919050565b6000614972828561486a565b915061497e82846148e9565b915061498982614943565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f1602683613575565b91506149fc82614995565b604082019050919050565b60006020820190508181036000830152614a20816149e4565b9050919050565b7f496e76616c696420436f6e747261637420537461746521000000000000000000600082015250565b6000614a5d601783613575565b9150614a6882614a27565b602082019050919050565b60006020820190508181036000830152614a8c81614a50565b9050919050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614aef603183613575565b9150614afa82614a93565b604082019050919050565b60006020820190508181036000830152614b1e81614ae2565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614b81603283613575565b9150614b8c82614b25565b604082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614c13602683613575565b9150614c1e82614bb7565b604082019050919050565b60006020820190508181036000830152614c4281614c06565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ca5602583613575565b9150614cb082614c49565b604082019050919050565b60006020820190508181036000830152614cd481614c98565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000614d0282614cdb565b9150614d0d83614cdb565b925082821015614d2057614d1f613e36565b5b828203905092915050565b6000614d3682614cdb565b9150614d4183614cdb565b9250826fffffffffffffffffffffffffffffffff03821115614d6657614d65613e36565b5b828201905092915050565b600081905092915050565b50565b6000614d8c600083614d71565b9150614d9782614d7c565b600082019050919050565b6000614dad82614d7f565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000614ded601483613575565b9150614df882614db7565b602082019050919050565b60006020820190508181036000830152614e1c81614de0565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614e7f602a83613575565b9150614e8a82614e23565b604082019050919050565b60006020820190508181036000830152614eae81614e72565b9050919050565b6000614ec08261346f565b9150614ecb8361346f565b925082821015614ede57614edd613e36565b5b828203905092915050565b6000614ef48261346f565b91506000821415614f0857614f07613e36565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614f6f602f83613575565b9150614f7a82614f13565b604082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614fcc82614fa5565b614fd68185614fb0565b9350614fe6818560208601613586565b614fef816135b9565b840191505092915050565b600060808201905061500f6000830187613684565b61501c6020830186613684565b615029604083018561371a565b818103606083015261503b8184614fc1565b905095945050505050565b600081519050615055816133e0565b92915050565b600060208284031215615071576150706133aa565b5b600061507f84828501615046565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150c28261346f565b91506150cd8361346f565b9250826150dd576150dc615088565b5b828204905092915050565b60006150f38261346f565b91506150fe8361346f565b92508261510e5761510d615088565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006151a4602183613575565b91506151af82615148565b604082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615210601d83613575565b915061521b826151da565b602082019050919050565b6000602082019050818103600083015261523f81615203565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006152a2602283613575565b91506152ad82615246565b604082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b6000819050919050565b6152f36152ee82613797565b6152d8565b82525050565b600061530582856152e2565b60208201915061531582846152e2565b602082019150819050939250505056fea2646970667358221220d9aa4285b586fb374fcc0a24bb59ad2c0e8ff12dc9f468cad5d5512f7fc7cc5c64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c80635a485599116101305780638da5cb5b116100b8578063c87b56dd1161007c578063c87b56dd14610665578063d7224ba014610695578063e985e9c5146106b3578063f2fde38b146106e3578063fb7265ff146106ff57610232565b80638da5cb5b146105d357806395d89b41146105f1578063a22cb4651461060f578063b0a1c1c41461062b578063b88d4fde1461064957610232565b806370a08231116100ff57806370a0823114610541578063715018a6146105715780637313cba91461057b5780637cb647591461059957806385209ee0146105b557610232565b80635a485599146104a55780636352211e146104d557806366d003ac146105055780636c0360eb1461052357610232565b80632eb4a7ab116101be5780633bbed4a0116101825780633bbed4a0146104175780633ccfd60b1461043357806342842e0e1461043d5780634f6ccce71461045957806355f804b31461048957610232565b80632eb4a7ab146103615780632f745c591461037f5780633423e548146103af5780633574a2dd146103df5780633ba93f26146103fb57610232565b806308290dc51161020557806308290dc5146102d1578063095ea7b3146102ed5780630f5eda9e1461030957806318160ddd1461032757806323b872dd1461034557610232565b806301ffc9a714610237578063061431a81461026757806306fdde0314610283578063081812fc146102a1575b600080fd5b610251600480360381019061024c919061340c565b61071b565b60405161025e9190613454565b60405180910390f35b610281600480360381019061027c919061350a565b61072d565b005b61028b610984565b6040516102989190613603565b60405180910390f35b6102bb60048036038101906102b69190613625565b610a16565b6040516102c89190613693565b60405180910390f35b6102eb60048036038101906102e69190613625565b610a9b565b005b610307600480360381019061030291906136da565b610b77565b005b610311610c90565b60405161031e9190613729565b60405180910390f35b61032f610c96565b60405161033c9190613729565b60405180910390f35b61035f600480360381019061035a9190613744565b610c9f565b005b610369610caf565b60405161037691906137b0565b60405180910390f35b610399600480360381019061039491906136da565b610cb5565b6040516103a69190613729565b60405180910390f35b6103c960048036038101906103c49190613935565b610eb3565b6040516103d69190613454565b60405180910390f35b6103f960048036038101906103f49190613a59565b610ec9565b005b61041560048036038101906104109190613625565b610f5f565b005b610431600480360381019061042c9190613aa2565b610ff1565b005b61043b611121565b005b61045760048036038101906104529190613744565b61121b565b005b610473600480360381019061046e9190613625565b61123b565b6040516104809190613729565b60405180910390f35b6104a3600480360381019061049e9190613a59565b61128f565b005b6104bf60048036038101906104ba9190613625565b611325565b6040516104cc9190613729565b60405180910390f35b6104ef60048036038101906104ea9190613625565b611345565b6040516104fc9190613693565b60405180910390f35b61050d61135b565b60405161051a9190613693565b60405180910390f35b61052b611381565b6040516105389190613603565b60405180910390f35b61055b60048036038101906105569190613aa2565b61140f565b6040516105689190613729565b60405180910390f35b6105796114f8565b005b610583611580565b6040516105909190613603565b60405180910390f35b6105b360048036038101906105ae9190613acf565b61160e565b005b6105bd611694565b6040516105ca9190613b73565b60405180910390f35b6105db6116a7565b6040516105e89190613693565b60405180910390f35b6105f96116d1565b6040516106069190613603565b60405180910390f35b61062960048036038101906106249190613bba565b611763565b005b6106336118e4565b6040516106409190613729565b60405180910390f35b610663600480360381019061065e9190613c9b565b6118ec565b005b61067f600480360381019061067a9190613625565b611948565b60405161068c9190613603565b60405180910390f35b61069d611a6f565b6040516106aa9190613729565b60405180910390f35b6106cd60048036038101906106c89190613d1e565b611a75565b6040516106da9190613454565b60405180910390f35b6106fd60048036038101906106f89190613aa2565b611b09565b005b61071960048036038101906107149190613625565b611c01565b005b600061072682611d28565b9050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290613daa565b60405180910390fd5b60018060018111156107b0576107af613afc565b5b600d60009054906101000a900460ff1660018111156107d2576107d1613afc565b5b14610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990613e16565b60405180910390fd5b83600a548161081f610c96565b6108299190613e65565b10610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090613f07565b60405180910390fd5b600b548561087633611e72565b6108809190613e65565b106108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b790613f73565b60405180910390fd5b610934600c54336040516020016108d79190613fdb565b60405160208183030381529060405280519060200120868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610eb3565b610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90614042565b60405180910390fd5b61097d3386611f5b565b5050505050565b60606001805461099390614091565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf90614091565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6000610a2182611f79565b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790614135565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610aa3611f93565b73ffffffffffffffffffffffffffffffffffffffff16610ac16116a7565b73ffffffffffffffffffffffffffffffffffffffff1614610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e906141a1565b60405180910390fd5b6000600182610b269190613e65565b9050600a548110610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061420d565b60405180910390fd5b80600a819055505050565b6000610b8282611345565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061429f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c12611f93565b73ffffffffffffffffffffffffffffffffffffffff161480610c415750610c4081610c3b611f93565b611a75565b5b610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614331565b60405180910390fd5b610c8b838383611f9b565b505050565b600b5481565b60008054905090565b610caa83838361204d565b505050565b600c5481565b6000610cc08361140f565b8210610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906143c3565b60405180910390fd5b6000610d0b610c96565b905060008060005b83811015610e71576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e0557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e5d5786841415610e4e578195505050505050610ead565b8380610e59906143e3565b9450505b508080610e69906143e3565b915050610d13565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea49061449e565b60405180910390fd5b92915050565b6000610ec0828585612606565b90509392505050565b610ed1611f93565b73ffffffffffffffffffffffffffffffffffffffff16610eef6116a7565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c906141a1565b60405180910390fd5b80600e9080519060200190610f5b9291906132c3565b5050565b610f67611f93565b73ffffffffffffffffffffffffffffffffffffffff16610f856116a7565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906141a1565b60405180910390fd5b600181610fe89190613e65565b600b8190555050565b610ff9611f93565b73ffffffffffffffffffffffffffffffffffffffff166110176116a7565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611064906141a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d49061450a565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611129611f93565b73ffffffffffffffffffffffffffffffffffffffff166111476116a7565b73ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906141a1565b60405180910390fd5b60006111a76118e4565b9050600081116111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e39061459c565b60405180910390fd5b611218601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261261d565b50565b611236838383604051806020016040528060008152506118ec565b505050565b6000611245610c96565b821115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e9061462e565b60405180910390fd5b819050919050565b611297611f93565b73ffffffffffffffffffffffffffffffffffffffff166112b56116a7565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611302906141a1565b60405180910390fd5b80600f90805190602001906113219291906132c3565b5050565b6000611330826126ce565b6020015167ffffffffffffffff169050919050565b6000611350826126ce565b600001519050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f805461138e90614091565b80601f01602080910402602001604051908101604052809291908181526020018280546113ba90614091565b80156114075780601f106113dc57610100808354040283529160200191611407565b820191906000526020600020905b8154815290600101906020018083116113ea57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906146c0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611500611f93565b73ffffffffffffffffffffffffffffffffffffffff1661151e6116a7565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b906141a1565b60405180910390fd5b61157e60006128d1565b565b600e805461158d90614091565b80601f01602080910402602001604051908101604052809291908181526020018280546115b990614091565b80156116065780601f106115db57610100808354040283529160200191611606565b820191906000526020600020905b8154815290600101906020018083116115e957829003601f168201915b505050505081565b611616611f93565b73ffffffffffffffffffffffffffffffffffffffff166116346116a7565b73ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906141a1565b60405180910390fd5b80600c8190555050565b600d60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116e090614091565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90614091565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b5050505050905090565b61176b611f93565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061472c565b60405180910390fd5b80600660006117e6611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611893611f93565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d89190613454565b60405180910390a35050565b600047905090565b6118f784848461204d565b61190384848484612997565b611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906147be565b60405180910390fd5b50505050565b60606119578261ffff16611f79565b611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d9061482a565b60405180910390fd5b6000600f80546119a590614091565b905011611a3c57600e80546119b990614091565b80601f01602080910402602001604051908101604052809291908181526020018280546119e590614091565b8015611a325780601f10611a0757610100808354040283529160200191611a32565b820191906000526020600020905b815481529060010190602001808311611a1557829003601f168201915b5050505050611a68565b600f611a4783612b2e565b604051602001611a58929190614966565b6040516020818303038152906040525b9050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b11611f93565b73ffffffffffffffffffffffffffffffffffffffff16611b2f6116a7565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906141a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90614a07565b60405180910390fd5b611bfe816128d1565b50565b611c09611f93565b73ffffffffffffffffffffffffffffffffffffffff16611c276116a7565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906141a1565b60405180910390fd5b60028110611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614a73565b60405180910390fd5b6000811415611cf9576000600d60006101000a81548160ff02191690836001811115611cef57611cee613afc565b5b0217905550611d25565b6001600d60006101000a81548160ff02191690836001811115611d1f57611d1e613afc565b5b02179055505b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e5b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e6b5750611e6a82612c8f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90614b05565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611f75828260405180602001604052806000815250612cf9565b5050565b600080548211158015611f8c5750600082115b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612058826126ce565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661207f611f93565b73ffffffffffffffffffffffffffffffffffffffff1614806120db57506120a4611f93565b73ffffffffffffffffffffffffffffffffffffffff166120c384610a16565b73ffffffffffffffffffffffffffffffffffffffff16145b806120f757506120f682600001516120f1611f93565b611a75565b5b905080612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614b97565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290614cbb565b60405180910390fd5b61222885858560016131f1565b6122386000848460000151611f9b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122a69190614cf7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661234a9190614d2b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124509190613e65565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612596576124c681611f79565b15612595576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125fe86868660016131f7565b505050505050565b60008261261385846131fd565b1490509392505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161264390614da2565b60006040518083038185875af1925050503d8060008114612680576040519150601f19603f3d011682016040523d82523d6000602084013e612685565b606091505b50509050806126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090614e03565b60405180910390fd5b505050565b6126d6613349565b6126df82611f79565b61271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614e95565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106127825760017f000000000000000000000000000000000000000000000000000000000000000a846127759190614eb5565b61277f9190613e65565b90505b60008390505b818110612890576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461287c578093505050506128cc565b50808061288890614ee9565b915050612788565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c390614f85565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006129b88473ffffffffffffffffffffffffffffffffffffffff166132b0565b15612b21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129e1611f93565b8786866040518563ffffffff1660e01b8152600401612a039493929190614ffa565b602060405180830381600087803b158015612a1d57600080fd5b505af1925050508015612a4e57506040513d601f19601f82011682018060405250810190612a4b919061505b565b60015b612ad1573d8060008114612a7e576040519150601f19603f3d011682016040523d82523d6000602084013e612a83565b606091505b50600081511415612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac0906147be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b26565b600190505b949350505050565b60606000821415612b76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c8a565b600082905060005b60008214612ba8578080612b91906143e3565b915050600a82612ba191906150b7565b9150612b7e565b60008167ffffffffffffffff811115612bc457612bc36137f7565b5b6040519080825280601f01601f191660200182016040528015612bf65781602001600182028036833780820191505090505b5090505b60008514612c8357600182612c0f9190614eb5565b9150600a85612c1e91906150e8565b6030612c2a9190613e65565b60f81b818381518110612c4057612c3f615119565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c7c91906150b7565b9450612bfa565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001600054612d0a9190613e65565b9050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d73906151ba565b60405180910390fd5b612d8581611f79565b15612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbc90615226565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1f906152b8565b60405180910390fd5b612e3560008583866131f1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f329190614d2b565b6fffffffffffffffffffffffffffffffff168152602001858360200151612f599190614d2b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156131c857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131686000888488612997565b6131a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319e906147be565b60405180910390fd5b81806131b2906143e3565b92505080806131c0906143e3565b9150506130f7565b506001816131d69190614eb5565b6000819055506131e960008785886131f7565b505050505050565b50505050565b50505050565b60008082905060005b84518110156132a557600085828151811061322457613223615119565b5b602002602001015190508083116132655782816040516020016132489291906152f9565b604051602081830303815290604052805190602001209250613291565b80836040516020016132789291906152f9565b6040516020818303038152906040528051906020012092505b50808061329d906143e3565b915050613206565b508091505092915050565b600080823b905060008111915050919050565b8280546132cf90614091565b90600052602060002090601f0160209004810192826132f15760008555613338565b82601f1061330a57805160ff1916838001178555613338565b82800160010185558215613338579182015b8281111561333757825182559160200191906001019061331c565b5b5090506133459190613383565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561339c576000816000905550600101613384565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133e9816133b4565b81146133f457600080fd5b50565b600081359050613406816133e0565b92915050565b600060208284031215613422576134216133aa565b5b6000613430848285016133f7565b91505092915050565b60008115159050919050565b61344e81613439565b82525050565b60006020820190506134696000830184613445565b92915050565b6000819050919050565b6134828161346f565b811461348d57600080fd5b50565b60008135905061349f81613479565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126134ca576134c96134a5565b5b8235905067ffffffffffffffff8111156134e7576134e66134aa565b5b602083019150836020820283011115613503576135026134af565b5b9250929050565b600080600060408486031215613523576135226133aa565b5b600061353186828701613490565b935050602084013567ffffffffffffffff811115613552576135516133af565b5b61355e868287016134b4565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a4578082015181840152602081019050613589565b838111156135b3576000848401525b50505050565b6000601f19601f8301169050919050565b60006135d58261356a565b6135df8185613575565b93506135ef818560208601613586565b6135f8816135b9565b840191505092915050565b6000602082019050818103600083015261361d81846135ca565b905092915050565b60006020828403121561363b5761363a6133aa565b5b600061364984828501613490565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061367d82613652565b9050919050565b61368d81613672565b82525050565b60006020820190506136a86000830184613684565b92915050565b6136b781613672565b81146136c257600080fd5b50565b6000813590506136d4816136ae565b92915050565b600080604083850312156136f1576136f06133aa565b5b60006136ff858286016136c5565b925050602061371085828601613490565b9150509250929050565b6137238161346f565b82525050565b600060208201905061373e600083018461371a565b92915050565b60008060006060848603121561375d5761375c6133aa565b5b600061376b868287016136c5565b935050602061377c868287016136c5565b925050604061378d86828701613490565b9150509250925092565b6000819050919050565b6137aa81613797565b82525050565b60006020820190506137c560008301846137a1565b92915050565b6137d481613797565b81146137df57600080fd5b50565b6000813590506137f1816137cb565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382f826135b9565b810181811067ffffffffffffffff8211171561384e5761384d6137f7565b5b80604052505050565b60006138616133a0565b905061386d8282613826565b919050565b600067ffffffffffffffff82111561388d5761388c6137f7565b5b602082029050602081019050919050565b60006138b16138ac84613872565b613857565b905080838252602082019050602084028301858111156138d4576138d36134af565b5b835b818110156138fd57806138e988826137e2565b8452602084019350506020810190506138d6565b5050509392505050565b600082601f83011261391c5761391b6134a5565b5b813561392c84826020860161389e565b91505092915050565b60008060006060848603121561394e5761394d6133aa565b5b600061395c868287016137e2565b935050602061396d868287016137e2565b925050604084013567ffffffffffffffff81111561398e5761398d6133af565b5b61399a86828701613907565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156139c4576139c36137f7565b5b6139cd826135b9565b9050602081019050919050565b82818337600083830152505050565b60006139fc6139f7846139a9565b613857565b905082815260208101848484011115613a1857613a176139a4565b5b613a238482856139da565b509392505050565b600082601f830112613a4057613a3f6134a5565b5b8135613a508482602086016139e9565b91505092915050565b600060208284031215613a6f57613a6e6133aa565b5b600082013567ffffffffffffffff811115613a8d57613a8c6133af565b5b613a9984828501613a2b565b91505092915050565b600060208284031215613ab857613ab76133aa565b5b6000613ac6848285016136c5565b91505092915050565b600060208284031215613ae557613ae46133aa565b5b6000613af3848285016137e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110613b3c57613b3b613afc565b5b50565b6000819050613b4d82613b2b565b919050565b6000613b5d82613b3f565b9050919050565b613b6d81613b52565b82525050565b6000602082019050613b886000830184613b64565b92915050565b613b9781613439565b8114613ba257600080fd5b50565b600081359050613bb481613b8e565b92915050565b60008060408385031215613bd157613bd06133aa565b5b6000613bdf858286016136c5565b9250506020613bf085828601613ba5565b9150509250929050565b600067ffffffffffffffff821115613c1557613c146137f7565b5b613c1e826135b9565b9050602081019050919050565b6000613c3e613c3984613bfa565b613857565b905082815260208101848484011115613c5a57613c596139a4565b5b613c658482856139da565b509392505050565b600082601f830112613c8257613c816134a5565b5b8135613c92848260208601613c2b565b91505092915050565b60008060008060808587031215613cb557613cb46133aa565b5b6000613cc3878288016136c5565b9450506020613cd4878288016136c5565b9350506040613ce587828801613490565b925050606085013567ffffffffffffffff811115613d0657613d056133af565b5b613d1287828801613c6d565b91505092959194509250565b60008060408385031215613d3557613d346133aa565b5b6000613d43858286016136c5565b9250506020613d54858286016136c5565b9150509250929050565b7f4e6f20626f747321000000000000000000000000000000000000000000000000600082015250565b6000613d94600883613575565b9150613d9f82613d5e565b602082019050919050565b60006020820190508181036000830152613dc381613d87565b9050919050565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b6000613e00600d83613575565b9150613e0b82613dca565b602082019050919050565b60006020820190508181036000830152613e2f81613df3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e708261346f565b9150613e7b8361346f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eb057613eaf613e36565b5b828201905092915050565b7f4578636565647320617661696c61626c6520746f6b656e730000000000000000600082015250565b6000613ef1601883613575565b9150613efc82613ebb565b602082019050919050565b60006020820190508181036000830152613f2081613ee4565b9050919050565b7f4578636565647320616c6c6f77616e6365210000000000000000000000000000600082015250565b6000613f5d601283613575565b9150613f6882613f27565b602082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b60008160601b9050919050565b6000613fab82613f93565b9050919050565b6000613fbd82613fa0565b9050919050565b613fd5613fd082613672565b613fb2565b82525050565b6000613fe78284613fc4565b60148201915081905092915050565b7f4e6f7420612076616c69642070726f6f66210000000000000000000000000000600082015250565b600061402c601283613575565b915061403782613ff6565b602082019050919050565b6000602082019050818103600083015261405b8161401f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a957607f821691505b602082108114156140bd576140bc614062565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061411f602d83613575565b915061412a826140c3565b604082019050919050565b6000602082019050818103600083015261414e81614112565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061418b602083613575565b915061419682614155565b602082019050919050565b600060208201905081810360008301526141ba8161417e565b9050919050565b7f43616e206f6e6c792072656475636520737570706c7900000000000000000000600082015250565b60006141f7601683613575565b9150614202826141c1565b602082019050919050565b60006020820190508181036000830152614226816141ea565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614289602283613575565b91506142948261422d565b604082019050919050565b600060208201905081810360008301526142b88161427c565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061431b603983613575565b9150614326826142bf565b604082019050919050565b6000602082019050818103600083015261434a8161430e565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006143ad602283613575565b91506143b882614351565b604082019050919050565b600060208201905081810360008301526143dc816143a0565b9050919050565b60006143ee8261346f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442157614420613e36565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614488602e83613575565b91506144938261442c565b604082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f43616e6e6f742062652074686520302061646472657373210000000000000000600082015250565b60006144f4601883613575565b91506144ff826144be565b602082019050919050565b60006020820190508181036000830152614523816144e7565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614586602283613575565b91506145918261452a565b604082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614618602383613575565b9150614623826145bc565b604082019050919050565b600060208201905081810360008301526146478161460b565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006146aa602b83613575565b91506146b58261464e565b604082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614716601a83613575565b9150614721826146e0565b602082019050919050565b6000602082019050818103600083015261474581614709565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006147a8603383613575565b91506147b38261474c565b604082019050919050565b600060208201905081810360008301526147d78161479b565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000614814601f83613575565b915061481f826147de565b602082019050919050565b6000602082019050818103600083015261484381614807565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461487781614091565b614881818661484a565b9450600182166000811461489c57600181146148ad576148e0565b60ff198316865281860193506148e0565b6148b685614855565b60005b838110156148d8578154818901526001820191506020810190506148b9565b838801955050505b50505092915050565b60006148f48261356a565b6148fe818561484a565b935061490e818560208601613586565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061495060058361484a565b915061495b8261491a565b600582019050919050565b6000614972828561486a565b915061497e82846148e9565b915061498982614943565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f1602683613575565b91506149fc82614995565b604082019050919050565b60006020820190508181036000830152614a20816149e4565b9050919050565b7f496e76616c696420436f6e747261637420537461746521000000000000000000600082015250565b6000614a5d601783613575565b9150614a6882614a27565b602082019050919050565b60006020820190508181036000830152614a8c81614a50565b9050919050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614aef603183613575565b9150614afa82614a93565b604082019050919050565b60006020820190508181036000830152614b1e81614ae2565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614b81603283613575565b9150614b8c82614b25565b604082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614c13602683613575565b9150614c1e82614bb7565b604082019050919050565b60006020820190508181036000830152614c4281614c06565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ca5602583613575565b9150614cb082614c49565b604082019050919050565b60006020820190508181036000830152614cd481614c98565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000614d0282614cdb565b9150614d0d83614cdb565b925082821015614d2057614d1f613e36565b5b828203905092915050565b6000614d3682614cdb565b9150614d4183614cdb565b9250826fffffffffffffffffffffffffffffffff03821115614d6657614d65613e36565b5b828201905092915050565b600081905092915050565b50565b6000614d8c600083614d71565b9150614d9782614d7c565b600082019050919050565b6000614dad82614d7f565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000614ded601483613575565b9150614df882614db7565b602082019050919050565b60006020820190508181036000830152614e1c81614de0565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614e7f602a83613575565b9150614e8a82614e23565b604082019050919050565b60006020820190508181036000830152614eae81614e72565b9050919050565b6000614ec08261346f565b9150614ecb8361346f565b925082821015614ede57614edd613e36565b5b828203905092915050565b6000614ef48261346f565b91506000821415614f0857614f07613e36565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614f6f602f83613575565b9150614f7a82614f13565b604082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614fcc82614fa5565b614fd68185614fb0565b9350614fe6818560208601613586565b614fef816135b9565b840191505092915050565b600060808201905061500f6000830187613684565b61501c6020830186613684565b615029604083018561371a565b818103606083015261503b8184614fc1565b905095945050505050565b600081519050615055816133e0565b92915050565b600060208284031215615071576150706133aa565b5b600061507f84828501615046565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150c28261346f565b91506150cd8361346f565b9250826150dd576150dc615088565b5b828204905092915050565b60006150f38261346f565b91506150fe8361346f565b92508261510e5761510d615088565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006151a4602183613575565b91506151af82615148565b604082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615210601d83613575565b915061521b826151da565b602082019050919050565b6000602082019050818103600083015261523f81615203565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006152a2602283613575565b91506152ad82615246565b604082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b6000819050919050565b6152f36152ee82613797565b6152d8565b82525050565b600061530582856152e2565b60208201915061531582846152e2565b602082019150819050939250505056fea2646970667358221220d9aa4285b586fb374fcc0a24bb59ad2c0e8ff12dc9f468cad5d5512f7fc7cc5c64736f6c63430008090033

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.