ETH Price: $3,475.02 (+0.74%)
Gas: 6 Gwei

Token

Metaguardians: Sidekicks (SIDEK)
 

Overview

Max Total Supply

12,500 SIDEK

Holders

726

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
memoblastingman.eth
Balance
3 SIDEK
0x32130a7128E5E59430b26CFF4dE82EBB45B43852
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:
Sidekicks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Sidekicks.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Sidekicks is ERC721, Ownable {
    bool public saleActive = false;
    bool public metaFlag = false;
    
    string internal baseTokenURI;

    bytes32 public merkleRoot;

    uint public totalSupply = 12500;

    uint public t2Price = 0.06 ether;
    uint public t3Price = 0.1 ether;

    uint public thNonce = 0;
    uint public t2Nonce = 0;
    uint public t3Nonce = 0;

    uint public thMax = 10000;
    uint public t2Max = 2000;
    uint public t3Max = 500;

    uint public maxTx = 20;

    mapping(address => bool) public claimed;

    constructor() ERC721("Metaguardians: Sidekicks", "SIDEK") {}


    modifier checkSupply(uint qty) {
        require(qty + (thNonce + t2Nonce + t3Nonce) <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        _;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }
    
    function setT2Price(uint newPrice) external onlyOwner {
        t2Price = newPrice;
    }

    function setT3Price(uint newPrice) external onlyOwner {
        t3Price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function toggleSaleActive() public onlyOwner {
        saleActive = !saleActive;
    }

    function toggleMetaFlag() public onlyOwner {
        metaFlag = !metaFlag;
    }

    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    function getTierHAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < thNonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }

    function getTier2AssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = thMax; i < (thMax + t2Nonce); i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }

    function getTier3AssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = (thMax + t2Max); i < (thMax + t2Max + t3Nonce); i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }

    function giveawayTH(address to, uint qty) external onlyOwner {
        require(qty + thNonce <= thMax, "SUPPLY: Value exceeds Tier H Supply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = thNonce;
            _safeMint(to, tokenId);
            thNonce++;
        }
    }

    function giveawayT2(address to, uint qty) external onlyOwner {
        require(qty + t2Nonce <= t2Max, "SUPPLY: Value exceeds Tier 2 Supply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = thMax + t2Nonce;
            _safeMint(to, tokenId);
            t2Nonce++;
        }
    }

    function giveawayT3(address to, uint qty) external onlyOwner {
        require(qty + t3Nonce <= t3Max, "SUPPLY: Value exceeds Tier 3 Supply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = (thMax + t2Max) + t3Nonce;
            _safeMint(to, tokenId);
            t3Nonce++;
        }
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function mintTierH(uint qty, bytes32[] memory proof) external checkSupply(qty) {
        if(metaFlag) {
            require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Invalid proof");
            require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        } else {
            require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender, qty))), "Invalid proof");
            require(!claimed[msg.sender], "TRANSACTION: You already claimed!");
        }
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty + thNonce <= thMax, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = thNonce;
            _safeMint(msg.sender, tokenId);
            thNonce++;
        }
        claimed[msg.sender] = true;
    }

    function mintTier2(uint qty) external payable checkSupply(qty) {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + t2Nonce <= t2Max, "SUPPLY: Value exceeds Tier 2 Supply");
        require(msg.value >= t2Price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = thMax + t2Nonce;
            _safeMint(msg.sender, tokenId);
            t2Nonce++;
        }
    }

    function mintTier3(uint qty) external payable checkSupply(qty) {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + t3Nonce <= t3Max, "SUPPLY: Value exceeds Tier 3 Supply");
        require(msg.value >= t3Price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = (thMax + t2Max) + t3Nonce;
            _safeMint(msg.sender, tokenId);
            t3Nonce++;
        }
    }
    
    function withdrawOwner() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 3 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"name":"getTier2AssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTier3AssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTierHAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveawayT2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveawayT3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveawayTH","outputs":[],"stateMutability":"nonpayable","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":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metaFlag","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintTier2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintTier3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintTierH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setT2Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setT3Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2Max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2Nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t3Max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t3Nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t3Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMetaFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055506130d460095566d529ae9e860000600a5567016345785d8a0000600b556000600c556000600d556000600e55612710600f556107d06010556101f460115560146012553480156200008a57600080fd5b506040518060400160405280601881526020017f4d657461677561726469616e733a20536964656b69636b7300000000000000008152506040518060400160405280600581526020017f534944454b00000000000000000000000000000000000000000000000000000081525081600090805190602001906200010f9291906200021f565b508060019080519060200190620001289291906200021f565b5050506200014b6200013f6200015160201b60201c565b6200015960201b60201c565b62000334565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022d90620002cf565b90600052602060002090601f0160209004810192826200025157600085556200029d565b82601f106200026c57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029c5782518255916020019190600101906200027f565b5b509050620002ac9190620002b0565b5090565b5b80821115620002cb576000816000905550600101620002b1565b5090565b60006002820490506001821680620002e857607f821691505b60208210811415620002ff57620002fe62000305565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61515080620003446000396000f3fe6080604052600436106102935760003560e01c80637c0b25571161015a578063b88d4fde116100c1578063cd2fa6391161007a578063cd2fa639146109d2578063de1aa7da146109fd578063e8cc00ad14610a28578063e985e9c514610a3f578063f2fde38b14610a7c578063f7ea7a3d14610aa557610293565b8063b88d4fde146108b0578063bc337182146108d9578063bc7b175b14610902578063c39439881461092d578063c87b56dd14610958578063c884ef831461099557610293565b806395d89b411161011357806395d89b41146107a057806398a86f79146107cb5780639e393ae0146107f6578063a22cb46514610821578063a3a5d3141461084a578063b59101b41461087357610293565b80637c0b25571461067e5780637cb64759146106bb5780637da4c746146106e45780638da5cb5b1461070f5780638e75ae031461073a57806393b4747c1461077757610293565b806342842e0e116101fe5780636034caf7116101b75780636034caf71461056c5780636352211e1461059757806368428a1b146105d457806370a08231146105ff578063715018a61461063c5780637437681e1461065357610293565b806342842e0e14610495578063503181bd146104be578063567dadec146104e757806357d9caa5146105105780635aa3db69146105395780635f030c1d1461055557610293565b806318160ddd1161025057806318160ddd146103ba57806323b872dd146103e55780632eb4a7ab1461040e57806330176e13146104395780633100a535146104625780633a2f513c1461047957610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630e630cc81461036657806314424e1514610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613a41565b610ace565b6040516102cc9190614162565b60405180910390f35b3480156102e157600080fd5b506102ea610bb0565b6040516102f79190614198565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613ae8565b610c42565b60405161033491906140d9565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906139d4565b610cc7565b005b34801561037257600080fd5b5061037b610ddf565b60405161038891906144da565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613b15565b610de5565b005b3480156103c657600080fd5b506103cf611177565b6040516103dc91906144da565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906138be565b61117d565b005b34801561041a57600080fd5b506104236111dd565b604051610430919061417d565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613a9b565b6111e3565b005b34801561046e57600080fd5b50610477611275565b005b610493600480360381019061048e9190613ae8565b61131d565b005b3480156104a157600080fd5b506104bc60048036038101906104b791906138be565b611525565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613ae8565b611545565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613ae8565b6115cb565b005b34801561051c57600080fd5b50610537600480360381019061053291906139d4565b611651565b005b610553600480360381019061054e9190613ae8565b61176c565b005b34801561056157600080fd5b5061056a611981565b005b34801561057857600080fd5b50610581611a29565b60405161058e91906144da565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613ae8565b611a2f565b6040516105cb91906140d9565b60405180910390f35b3480156105e057600080fd5b506105e9611ae1565b6040516105f69190614162565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613851565b611af4565b60405161063391906144da565b60405180910390f35b34801561064857600080fd5b50610651611bac565b005b34801561065f57600080fd5b50610668611c34565b60405161067591906144da565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613851565b611c3a565b6040516106b29190614140565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613a14565b611d28565b005b3480156106f057600080fd5b506106f9611dae565b60405161070691906144da565b60405180910390f35b34801561071b57600080fd5b50610724611db4565b60405161073191906140d9565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613851565b611dde565b60405161076e9190614140565b60405180910390f35b34801561078357600080fd5b5061079e600480360381019061079991906139d4565b611ef8565b005b3480156107ac57600080fd5b506107b5612020565b6040516107c29190614198565b60405180910390f35b3480156107d757600080fd5b506107e06120b2565b6040516107ed91906144da565b60405180910390f35b34801561080257600080fd5b5061080b6120b8565b60405161081891906144da565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613994565b6120be565b005b34801561085657600080fd5b50610871600480360381019061086c91906139d4565b6120d4565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613851565b612209565b6040516108a79190614140565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613911565b612309565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613ae8565b61236b565b005b34801561090e57600080fd5b506109176123f1565b60405161092491906144da565b60405180910390f35b34801561093957600080fd5b506109426123f7565b60405161094f91906144da565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a9190613ae8565b6123fd565b60405161098c9190614198565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190613851565b6124a4565b6040516109c99190614162565b60405180910390f35b3480156109de57600080fd5b506109e76124c4565b6040516109f491906144da565b60405180910390f35b348015610a0957600080fd5b50610a126124ca565b604051610a1f9190614162565b60405180910390f35b348015610a3457600080fd5b50610a3d6124dd565b005b348015610a4b57600080fd5b50610a666004803603810190610a61919061387e565b6125a2565b604051610a739190614162565b60405180910390f35b348015610a8857600080fd5b50610aa36004803603810190610a9e9190613851565b612636565b005b348015610ab157600080fd5b50610acc6004803603810190610ac79190613ae8565b61272e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba95750610ba8826127b4565b5b9050919050565b606060008054610bbf906147c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610beb906147c8565b8015610c385780601f10610c0d57610100808354040283529160200191610c38565b820191906000526020600020905b815481529060010190602001808311610c1b57829003601f168201915b5050505050905090565b6000610c4d8261281e565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906143da565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd282611a2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061443a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6261288a565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b61288a565b6125a2565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc79061431a565b60405180910390fd5b610dda8383612892565b505050565b60115481565b81600954600e54600d54600c54610dfc91906145f3565b610e0691906145f3565b82610e1191906145f3565b1115610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e499061445a565b60405180910390fd5b600660159054906101000a900460ff1615610f2e57610e9a8260085433604051602001610e7f919061406e565b6040516020818303038152906040528051906020012061294b565b610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed09061449a565b60405180910390fd5b60125483111580610eea5750600183105b610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f209061425a565b60405180910390fd5b611030565b610f63826008543386604051602001610f48929190614089565b6040516020818303038152906040528051906020012061294b565b610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f999061449a565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906142fa565b60405180910390fd5b5b600660149054906101000a900460ff1661107f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611076906143ba565b60405180910390fd5b600f54600c548461109091906145f3565b11156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c89061445a565b60405180910390fd5b60005b83811015611119576000600c5490506110ed3382612962565b600c60008154809291906111009061482b565b91905055505080806111119061482b565b9150506110d4565b506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60095481565b61118e61118861288a565b82612980565b6111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c49061447a565b60405180910390fd5b6111d8838383612a5e565b505050565b60085481565b6111eb61288a565b73ffffffffffffffffffffffffffffffffffffffff16611209611db4565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906143fa565b60405180910390fd5b8181600791906112709291906135cc565b505050565b61127d61288a565b73ffffffffffffffffffffffffffffffffffffffff1661129b611db4565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906143fa565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b80600954600e54600d54600c5461133491906145f3565b61133e91906145f3565b8261134991906145f3565b111561138a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113819061445a565b60405180910390fd5b600660149054906101000a900460ff166113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d0906143ba565b60405180910390fd5b601254821115806113ea5750600182105b611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061425a565b60405180910390fd5b601054600d548361143a91906145f3565b111561147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906144ba565b60405180910390fd5b81600a54611489919061467a565b3410156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061427a565b60405180910390fd5b60005b82811015611520576000600d54600f546114e891906145f3565b90506114f43382612962565b600d60008154809291906115079061482b565b91905055505080806115189061482b565b9150506114ce565b505050565b61154083838360405180602001604052806000815250612309565b505050565b61154d61288a565b73ffffffffffffffffffffffffffffffffffffffff1661156b611db4565b73ffffffffffffffffffffffffffffffffffffffff16146115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906143fa565b60405180910390fd5b80600a8190555050565b6115d361288a565b73ffffffffffffffffffffffffffffffffffffffff166115f1611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e906143fa565b60405180910390fd5b80600b8190555050565b61165961288a565b73ffffffffffffffffffffffffffffffffffffffff16611677611db4565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906143fa565b60405180910390fd5b600f54600c54826116de91906145f3565b111561171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169061433a565b60405180910390fd5b60005b81811015611767576000600c54905061173b8482612962565b600c600081548092919061174e9061482b565b919050555050808061175f9061482b565b915050611722565b505050565b80600954600e54600d54600c5461178391906145f3565b61178d91906145f3565b8261179891906145f3565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061445a565b60405180910390fd5b600660149054906101000a900460ff16611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906143ba565b60405180910390fd5b601254821115806118395750600182105b611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f9061425a565b60405180910390fd5b601154600e548361188991906145f3565b11156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906141da565b60405180910390fd5b81600b546118d8919061467a565b34101561191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119119061427a565b60405180910390fd5b60005b8281101561197c576000600e54601054600f5461193a91906145f3565b61194491906145f3565b90506119503382612962565b600e60008154809291906119639061482b565b91905055505080806119749061482b565b91505061191d565b505050565b61198961288a565b73ffffffffffffffffffffffffffffffffffffffff166119a7611db4565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906143fa565b60405180910390fd5b600660159054906101000a900460ff1615600660156101000a81548160ff021916908315150217905550565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf9061437a565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9061435a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bb461288a565b73ffffffffffffffffffffffffffffffffffffffff16611bd2611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906143fa565b60405180910390fd5b611c326000612cc5565b565b60125481565b60606000611c4783611af4565b67ffffffffffffffff811115611c6057611c5f61498f565b5b604051908082528060200260200182016040528015611c8e5781602001602082028036833780820191505090505b5090506000805b600c54811015611d1d578473ffffffffffffffffffffffffffffffffffffffff16611cbf82611a2f565b73ffffffffffffffffffffffffffffffffffffffff161415611d0a5780838381518110611cef57611cee614960565b5b6020026020010181815250508180611d069061482b565b9250505b8080611d159061482b565b915050611c95565b508192505050919050565b611d3061288a565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b906143fa565b60405180910390fd5b8060088190555050565b600e5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000611deb83611af4565b67ffffffffffffffff811115611e0457611e0361498f565b5b604051908082528060200260200182016040528015611e325781602001602082028036833780820191505090505b509050600080601054600f54611e4891906145f3565b90505b600e54601054600f54611e5e91906145f3565b611e6891906145f3565b811015611eed578473ffffffffffffffffffffffffffffffffffffffff16611e8f82611a2f565b73ffffffffffffffffffffffffffffffffffffffff161415611eda5780838381518110611ebf57611ebe614960565b5b6020026020010181815250508180611ed69061482b565b9250505b8080611ee59061482b565b915050611e4b565b508192505050919050565b611f0061288a565b73ffffffffffffffffffffffffffffffffffffffff16611f1e611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b906143fa565b60405180910390fd5b601054600d5482611f8591906145f3565b1115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906144ba565b60405180910390fd5b60005b8181101561201b576000600d54600f54611fe391906145f3565b9050611fef8482612962565b600d60008154809291906120029061482b565b91905055505080806120139061482b565b915050611fc9565b505050565b60606001805461202f906147c8565b80601f016020809104026020016040519081016040528092919081815260200182805461205b906147c8565b80156120a85780601f1061207d576101008083540402835291602001916120a8565b820191906000526020600020905b81548152906001019060200180831161208b57829003601f168201915b5050505050905090565b60105481565b600c5481565b6120d06120c961288a565b8383612d8b565b5050565b6120dc61288a565b73ffffffffffffffffffffffffffffffffffffffff166120fa611db4565b73ffffffffffffffffffffffffffffffffffffffff1614612150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612147906143fa565b60405180910390fd5b601154600e548261216191906145f3565b11156121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612199906141da565b60405180910390fd5b60005b81811015612204576000600e54601054600f546121c291906145f3565b6121cc91906145f3565b90506121d88482612962565b600e60008154809291906121eb9061482b565b91905055505080806121fc9061482b565b9150506121a5565b505050565b6060600061221683611af4565b67ffffffffffffffff81111561222f5761222e61498f565b5b60405190808252806020026020018201604052801561225d5781602001602082028036833780820191505090505b509050600080600f5490505b600d54600f5461227991906145f3565b8110156122fe578473ffffffffffffffffffffffffffffffffffffffff166122a082611a2f565b73ffffffffffffffffffffffffffffffffffffffff1614156122eb57808383815181106122d0576122cf614960565b5b60200260200101818152505081806122e79061482b565b9250505b80806122f69061482b565b915050612269565b508192505050919050565b61231a61231461288a565b83612980565b612359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123509061447a565b60405180910390fd5b61236584848484612ef8565b50505050565b61237361288a565b73ffffffffffffffffffffffffffffffffffffffff16612391611db4565b73ffffffffffffffffffffffffffffffffffffffff16146123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de906143fa565b60405180910390fd5b8060128190555050565b600f5481565b600b5481565b60606124088261281e565b612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e9061441a565b60405180910390fd5b6000612451612f54565b90506000815111612471576040518060200160405280600081525061249c565b8061247b84612fe6565b60405160200161248c9291906140b5565b6040516020818303038152906040525b915050919050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481565b600660159054906101000a900460ff1681565b6124e561288a565b73ffffffffffffffffffffffffffffffffffffffff16612503611db4565b73ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612550906143fa565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561259f573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61263e61288a565b73ffffffffffffffffffffffffffffffffffffffff1661265c611db4565b73ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a9906143fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906141fa565b60405180910390fd5b61272b81612cc5565b50565b61273661288a565b73ffffffffffffffffffffffffffffffffffffffff16612754611db4565b73ffffffffffffffffffffffffffffffffffffffff16146127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a1906143fa565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661290583611a2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826129588584613147565b1490509392505050565b61297c8282604051806020016040528060008152506131bc565b5050565b600061298b8261281e565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c1906142da565b60405180910390fd5b60006129d583611a2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a175750612a1681856125a2565b5b80612a5557508373ffffffffffffffffffffffffffffffffffffffff16612a3d84610c42565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a7e82611a2f565b73ffffffffffffffffffffffffffffffffffffffff1614612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb9061421a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b9061429a565b60405180910390fd5b612b4f838383613217565b612b5a600082612892565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa91906146d4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0191906145f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cc083838361321c565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df1906142ba565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612eeb9190614162565b60405180910390a3505050565b612f03848484612a5e565b612f0f84848484613221565b612f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f45906141ba565b60405180910390fd5b50505050565b606060078054612f63906147c8565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8f906147c8565b8015612fdc5780601f10612fb157610100808354040283529160200191612fdc565b820191906000526020600020905b815481529060010190602001808311612fbf57829003601f168201915b5050505050905090565b6060600082141561302e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613142565b600082905060005b600082146130605780806130499061482b565b915050600a826130599190614649565b9150613036565b60008167ffffffffffffffff81111561307c5761307b61498f565b5b6040519080825280601f01601f1916602001820160405280156130ae5781602001600182028036833780820191505090505b5090505b6000851461313b576001826130c791906146d4565b9150600a856130d691906148a2565b60306130e291906145f3565b60f81b8183815181106130f8576130f7614960565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131349190614649565b94506130b2565b8093505050505b919050565b60008082905060005b84518110156131b157600085828151811061316e5761316d614960565b5b602002602001015190508083116131905761318983826133b8565b925061319d565b61319a81846133b8565b92505b5080806131a99061482b565b915050613150565b508091505092915050565b6131c683836133cf565b6131d36000848484613221565b613212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613209906141ba565b60405180910390fd5b505050565b505050565b505050565b60006132428473ffffffffffffffffffffffffffffffffffffffff166135a9565b156133ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261326b61288a565b8786866040518563ffffffff1660e01b815260040161328d94939291906140f4565b602060405180830381600087803b1580156132a757600080fd5b505af19250505080156132d857506040513d601f19601f820116820180604052508101906132d59190613a6e565b60015b61335b573d8060008114613308576040519150601f19603f3d011682016040523d82523d6000602084013e61330d565b606091505b50600081511415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a906141ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133b0565b600190505b949350505050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134369061439a565b60405180910390fd5b6134488161281e565b15613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f9061423a565b60405180910390fd5b61349460008383613217565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134e491906145f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135a56000838361321c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546135d8906147c8565b90600052602060002090601f0160209004810192826135fa5760008555613641565b82601f1061361357803560ff1916838001178555613641565b82800160010185558215613641579182015b82811115613640578235825591602001919060010190613625565b5b50905061364e9190613652565b5090565b5b8082111561366b576000816000905550600101613653565b5090565b600061368261367d8461451a565b6144f5565b905080838252602082019050828560208602820111156136a5576136a46149c8565b5b60005b858110156136d557816136bb8882613779565b8452602084019350602083019250506001810190506136a8565b5050509392505050565b60006136f26136ed84614546565b6144f5565b90508281526020810184848401111561370e5761370d6149cd565b5b613719848285614786565b509392505050565b600081359050613730816150a7565b92915050565b600082601f83011261374b5761374a6149c3565b5b813561375b84826020860161366f565b91505092915050565b600081359050613773816150be565b92915050565b600081359050613788816150d5565b92915050565b60008135905061379d816150ec565b92915050565b6000815190506137b2816150ec565b92915050565b600082601f8301126137cd576137cc6149c3565b5b81356137dd8482602086016136df565b91505092915050565b60008083601f8401126137fc576137fb6149c3565b5b8235905067ffffffffffffffff811115613819576138186149be565b5b602083019150836001820283011115613835576138346149c8565b5b9250929050565b60008135905061384b81615103565b92915050565b600060208284031215613867576138666149d7565b5b600061387584828501613721565b91505092915050565b60008060408385031215613895576138946149d7565b5b60006138a385828601613721565b92505060206138b485828601613721565b9150509250929050565b6000806000606084860312156138d7576138d66149d7565b5b60006138e586828701613721565b93505060206138f686828701613721565b92505060406139078682870161383c565b9150509250925092565b6000806000806080858703121561392b5761392a6149d7565b5b600061393987828801613721565b945050602061394a87828801613721565b935050604061395b8782880161383c565b925050606085013567ffffffffffffffff81111561397c5761397b6149d2565b5b613988878288016137b8565b91505092959194509250565b600080604083850312156139ab576139aa6149d7565b5b60006139b985828601613721565b92505060206139ca85828601613764565b9150509250929050565b600080604083850312156139eb576139ea6149d7565b5b60006139f985828601613721565b9250506020613a0a8582860161383c565b9150509250929050565b600060208284031215613a2a57613a296149d7565b5b6000613a3884828501613779565b91505092915050565b600060208284031215613a5757613a566149d7565b5b6000613a658482850161378e565b91505092915050565b600060208284031215613a8457613a836149d7565b5b6000613a92848285016137a3565b91505092915050565b60008060208385031215613ab257613ab16149d7565b5b600083013567ffffffffffffffff811115613ad057613acf6149d2565b5b613adc858286016137e6565b92509250509250929050565b600060208284031215613afe57613afd6149d7565b5b6000613b0c8482850161383c565b91505092915050565b60008060408385031215613b2c57613b2b6149d7565b5b6000613b3a8582860161383c565b925050602083013567ffffffffffffffff811115613b5b57613b5a6149d2565b5b613b6785828601613736565b9150509250929050565b6000613b7d8383614039565b60208301905092915050565b613b9281614708565b82525050565b613ba9613ba482614708565b614874565b82525050565b6000613bba82614587565b613bc481856145b5565b9350613bcf83614577565b8060005b83811015613c00578151613be78882613b71565b9750613bf2836145a8565b925050600181019050613bd3565b5085935050505092915050565b613c168161471a565b82525050565b613c2581614726565b82525050565b6000613c3682614592565b613c4081856145c6565b9350613c50818560208601614795565b613c59816149dc565b840191505092915050565b6000613c6f8261459d565b613c7981856145d7565b9350613c89818560208601614795565b613c92816149dc565b840191505092915050565b6000613ca88261459d565b613cb281856145e8565b9350613cc2818560208601614795565b80840191505092915050565b6000613cdb6032836145d7565b9150613ce6826149fa565b604082019050919050565b6000613cfe6023836145d7565b9150613d0982614a49565b604082019050919050565b6000613d216026836145d7565b9150613d2c82614a98565b604082019050919050565b6000613d446025836145d7565b9150613d4f82614ae7565b604082019050919050565b6000613d67601c836145d7565b9150613d7282614b36565b602082019050919050565b6000613d8a6024836145d7565b9150613d9582614b5f565b604082019050919050565b6000613dad6016836145d7565b9150613db882614bae565b602082019050919050565b6000613dd06024836145d7565b9150613ddb82614bd7565b604082019050919050565b6000613df36019836145d7565b9150613dfe82614c26565b602082019050919050565b6000613e16602c836145d7565b9150613e2182614c4f565b604082019050919050565b6000613e396021836145d7565b9150613e4482614c9e565b604082019050919050565b6000613e5c6038836145d7565b9150613e6782614ced565b604082019050919050565b6000613e7f6023836145d7565b9150613e8a82614d3c565b604082019050919050565b6000613ea2602a836145d7565b9150613ead82614d8b565b604082019050919050565b6000613ec56029836145d7565b9150613ed082614dda565b604082019050919050565b6000613ee86020836145d7565b9150613ef382614e29565b602082019050919050565b6000613f0b601f836145d7565b9150613f1682614e52565b602082019050919050565b6000613f2e602c836145d7565b9150613f3982614e7b565b604082019050919050565b6000613f516020836145d7565b9150613f5c82614eca565b602082019050919050565b6000613f74602f836145d7565b9150613f7f82614ef3565b604082019050919050565b6000613f976021836145d7565b9150613fa282614f42565b604082019050919050565b6000613fba6021836145d7565b9150613fc582614f91565b604082019050919050565b6000613fdd6031836145d7565b9150613fe882614fe0565b604082019050919050565b6000614000600d836145d7565b915061400b8261502f565b602082019050919050565b60006140236023836145d7565b915061402e82615058565b604082019050919050565b6140428161477c565b82525050565b6140518161477c565b82525050565b6140686140638261477c565b614898565b82525050565b600061407a8284613b98565b60148201915081905092915050565b60006140958285613b98565b6014820191506140a58284614057565b6020820191508190509392505050565b60006140c18285613c9d565b91506140cd8284613c9d565b91508190509392505050565b60006020820190506140ee6000830184613b89565b92915050565b60006080820190506141096000830187613b89565b6141166020830186613b89565b6141236040830185614048565b81810360608301526141358184613c2b565b905095945050505050565b6000602082019050818103600083015261415a8184613baf565b905092915050565b60006020820190506141776000830184613c0d565b92915050565b60006020820190506141926000830184613c1c565b92915050565b600060208201905081810360008301526141b28184613c64565b905092915050565b600060208201905081810360008301526141d381613cce565b9050919050565b600060208201905081810360008301526141f381613cf1565b9050919050565b6000602082019050818103600083015261421381613d14565b9050919050565b6000602082019050818103600083015261423381613d37565b9050919050565b6000602082019050818103600083015261425381613d5a565b9050919050565b6000602082019050818103600083015261427381613d7d565b9050919050565b6000602082019050818103600083015261429381613da0565b9050919050565b600060208201905081810360008301526142b381613dc3565b9050919050565b600060208201905081810360008301526142d381613de6565b9050919050565b600060208201905081810360008301526142f381613e09565b9050919050565b6000602082019050818103600083015261431381613e2c565b9050919050565b6000602082019050818103600083015261433381613e4f565b9050919050565b6000602082019050818103600083015261435381613e72565b9050919050565b6000602082019050818103600083015261437381613e95565b9050919050565b6000602082019050818103600083015261439381613eb8565b9050919050565b600060208201905081810360008301526143b381613edb565b9050919050565b600060208201905081810360008301526143d381613efe565b9050919050565b600060208201905081810360008301526143f381613f21565b9050919050565b6000602082019050818103600083015261441381613f44565b9050919050565b6000602082019050818103600083015261443381613f67565b9050919050565b6000602082019050818103600083015261445381613f8a565b9050919050565b6000602082019050818103600083015261447381613fad565b9050919050565b6000602082019050818103600083015261449381613fd0565b9050919050565b600060208201905081810360008301526144b381613ff3565b9050919050565b600060208201905081810360008301526144d381614016565b9050919050565b60006020820190506144ef6000830184614048565b92915050565b60006144ff614510565b905061450b82826147fa565b919050565b6000604051905090565b600067ffffffffffffffff8211156145355761453461498f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145615761456061498f565b5b61456a826149dc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145fe8261477c565b91506146098361477c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561463e5761463d6148d3565b5b828201905092915050565b60006146548261477c565b915061465f8361477c565b92508261466f5761466e614902565b5b828204905092915050565b60006146858261477c565b91506146908361477c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c9576146c86148d3565b5b828202905092915050565b60006146df8261477c565b91506146ea8361477c565b9250828210156146fd576146fc6148d3565b5b828203905092915050565b60006147138261475c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147b3578082015181840152602081019050614798565b838111156147c2576000848401525b50505050565b600060028204905060018216806147e057607f821691505b602082108114156147f4576147f3614931565b5b50919050565b614803826149dc565b810181811067ffffffffffffffff821117156148225761482161498f565b5b80604052505050565b60006148368261477c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614869576148686148d3565b5b600182019050919050565b600061487f82614886565b9050919050565b6000614891826149ed565b9050919050565b6000819050919050565b60006148ad8261477c565b91506148b88361477c565b9250826148c8576148c7614902565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f535550504c593a2056616c75652065786365656473205469657220332053757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f7520616c726561647920636c61696d656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f535550504c593a2056616c75652065786365656473205469657220482053757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f535550504c593a2056616c75652065786365656473205469657220322053757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b6150b081614708565b81146150bb57600080fd5b50565b6150c78161471a565b81146150d257600080fd5b50565b6150de81614726565b81146150e957600080fd5b50565b6150f581614730565b811461510057600080fd5b50565b61510c8161477c565b811461511757600080fd5b5056fea2646970667358221220be966ebe55483a08f3b1bcd74ee2f7c7a6ec75433f761723bc2033f22dc60bda64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102935760003560e01c80637c0b25571161015a578063b88d4fde116100c1578063cd2fa6391161007a578063cd2fa639146109d2578063de1aa7da146109fd578063e8cc00ad14610a28578063e985e9c514610a3f578063f2fde38b14610a7c578063f7ea7a3d14610aa557610293565b8063b88d4fde146108b0578063bc337182146108d9578063bc7b175b14610902578063c39439881461092d578063c87b56dd14610958578063c884ef831461099557610293565b806395d89b411161011357806395d89b41146107a057806398a86f79146107cb5780639e393ae0146107f6578063a22cb46514610821578063a3a5d3141461084a578063b59101b41461087357610293565b80637c0b25571461067e5780637cb64759146106bb5780637da4c746146106e45780638da5cb5b1461070f5780638e75ae031461073a57806393b4747c1461077757610293565b806342842e0e116101fe5780636034caf7116101b75780636034caf71461056c5780636352211e1461059757806368428a1b146105d457806370a08231146105ff578063715018a61461063c5780637437681e1461065357610293565b806342842e0e14610495578063503181bd146104be578063567dadec146104e757806357d9caa5146105105780635aa3db69146105395780635f030c1d1461055557610293565b806318160ddd1161025057806318160ddd146103ba57806323b872dd146103e55780632eb4a7ab1461040e57806330176e13146104395780633100a535146104625780633a2f513c1461047957610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630e630cc81461036657806314424e1514610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613a41565b610ace565b6040516102cc9190614162565b60405180910390f35b3480156102e157600080fd5b506102ea610bb0565b6040516102f79190614198565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613ae8565b610c42565b60405161033491906140d9565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906139d4565b610cc7565b005b34801561037257600080fd5b5061037b610ddf565b60405161038891906144da565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613b15565b610de5565b005b3480156103c657600080fd5b506103cf611177565b6040516103dc91906144da565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906138be565b61117d565b005b34801561041a57600080fd5b506104236111dd565b604051610430919061417d565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613a9b565b6111e3565b005b34801561046e57600080fd5b50610477611275565b005b610493600480360381019061048e9190613ae8565b61131d565b005b3480156104a157600080fd5b506104bc60048036038101906104b791906138be565b611525565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613ae8565b611545565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613ae8565b6115cb565b005b34801561051c57600080fd5b50610537600480360381019061053291906139d4565b611651565b005b610553600480360381019061054e9190613ae8565b61176c565b005b34801561056157600080fd5b5061056a611981565b005b34801561057857600080fd5b50610581611a29565b60405161058e91906144da565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613ae8565b611a2f565b6040516105cb91906140d9565b60405180910390f35b3480156105e057600080fd5b506105e9611ae1565b6040516105f69190614162565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613851565b611af4565b60405161063391906144da565b60405180910390f35b34801561064857600080fd5b50610651611bac565b005b34801561065f57600080fd5b50610668611c34565b60405161067591906144da565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613851565b611c3a565b6040516106b29190614140565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613a14565b611d28565b005b3480156106f057600080fd5b506106f9611dae565b60405161070691906144da565b60405180910390f35b34801561071b57600080fd5b50610724611db4565b60405161073191906140d9565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613851565b611dde565b60405161076e9190614140565b60405180910390f35b34801561078357600080fd5b5061079e600480360381019061079991906139d4565b611ef8565b005b3480156107ac57600080fd5b506107b5612020565b6040516107c29190614198565b60405180910390f35b3480156107d757600080fd5b506107e06120b2565b6040516107ed91906144da565b60405180910390f35b34801561080257600080fd5b5061080b6120b8565b60405161081891906144da565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613994565b6120be565b005b34801561085657600080fd5b50610871600480360381019061086c91906139d4565b6120d4565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613851565b612209565b6040516108a79190614140565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613911565b612309565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613ae8565b61236b565b005b34801561090e57600080fd5b506109176123f1565b60405161092491906144da565b60405180910390f35b34801561093957600080fd5b506109426123f7565b60405161094f91906144da565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a9190613ae8565b6123fd565b60405161098c9190614198565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190613851565b6124a4565b6040516109c99190614162565b60405180910390f35b3480156109de57600080fd5b506109e76124c4565b6040516109f491906144da565b60405180910390f35b348015610a0957600080fd5b50610a126124ca565b604051610a1f9190614162565b60405180910390f35b348015610a3457600080fd5b50610a3d6124dd565b005b348015610a4b57600080fd5b50610a666004803603810190610a61919061387e565b6125a2565b604051610a739190614162565b60405180910390f35b348015610a8857600080fd5b50610aa36004803603810190610a9e9190613851565b612636565b005b348015610ab157600080fd5b50610acc6004803603810190610ac79190613ae8565b61272e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba95750610ba8826127b4565b5b9050919050565b606060008054610bbf906147c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610beb906147c8565b8015610c385780601f10610c0d57610100808354040283529160200191610c38565b820191906000526020600020905b815481529060010190602001808311610c1b57829003601f168201915b5050505050905090565b6000610c4d8261281e565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906143da565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd282611a2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061443a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6261288a565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b61288a565b6125a2565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc79061431a565b60405180910390fd5b610dda8383612892565b505050565b60115481565b81600954600e54600d54600c54610dfc91906145f3565b610e0691906145f3565b82610e1191906145f3565b1115610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e499061445a565b60405180910390fd5b600660159054906101000a900460ff1615610f2e57610e9a8260085433604051602001610e7f919061406e565b6040516020818303038152906040528051906020012061294b565b610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed09061449a565b60405180910390fd5b60125483111580610eea5750600183105b610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f209061425a565b60405180910390fd5b611030565b610f63826008543386604051602001610f48929190614089565b6040516020818303038152906040528051906020012061294b565b610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f999061449a565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906142fa565b60405180910390fd5b5b600660149054906101000a900460ff1661107f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611076906143ba565b60405180910390fd5b600f54600c548461109091906145f3565b11156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c89061445a565b60405180910390fd5b60005b83811015611119576000600c5490506110ed3382612962565b600c60008154809291906111009061482b565b91905055505080806111119061482b565b9150506110d4565b506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60095481565b61118e61118861288a565b82612980565b6111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c49061447a565b60405180910390fd5b6111d8838383612a5e565b505050565b60085481565b6111eb61288a565b73ffffffffffffffffffffffffffffffffffffffff16611209611db4565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906143fa565b60405180910390fd5b8181600791906112709291906135cc565b505050565b61127d61288a565b73ffffffffffffffffffffffffffffffffffffffff1661129b611db4565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906143fa565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b80600954600e54600d54600c5461133491906145f3565b61133e91906145f3565b8261134991906145f3565b111561138a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113819061445a565b60405180910390fd5b600660149054906101000a900460ff166113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d0906143ba565b60405180910390fd5b601254821115806113ea5750600182105b611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061425a565b60405180910390fd5b601054600d548361143a91906145f3565b111561147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906144ba565b60405180910390fd5b81600a54611489919061467a565b3410156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061427a565b60405180910390fd5b60005b82811015611520576000600d54600f546114e891906145f3565b90506114f43382612962565b600d60008154809291906115079061482b565b91905055505080806115189061482b565b9150506114ce565b505050565b61154083838360405180602001604052806000815250612309565b505050565b61154d61288a565b73ffffffffffffffffffffffffffffffffffffffff1661156b611db4565b73ffffffffffffffffffffffffffffffffffffffff16146115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906143fa565b60405180910390fd5b80600a8190555050565b6115d361288a565b73ffffffffffffffffffffffffffffffffffffffff166115f1611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e906143fa565b60405180910390fd5b80600b8190555050565b61165961288a565b73ffffffffffffffffffffffffffffffffffffffff16611677611db4565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906143fa565b60405180910390fd5b600f54600c54826116de91906145f3565b111561171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169061433a565b60405180910390fd5b60005b81811015611767576000600c54905061173b8482612962565b600c600081548092919061174e9061482b565b919050555050808061175f9061482b565b915050611722565b505050565b80600954600e54600d54600c5461178391906145f3565b61178d91906145f3565b8261179891906145f3565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061445a565b60405180910390fd5b600660149054906101000a900460ff16611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906143ba565b60405180910390fd5b601254821115806118395750600182105b611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f9061425a565b60405180910390fd5b601154600e548361188991906145f3565b11156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906141da565b60405180910390fd5b81600b546118d8919061467a565b34101561191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119119061427a565b60405180910390fd5b60005b8281101561197c576000600e54601054600f5461193a91906145f3565b61194491906145f3565b90506119503382612962565b600e60008154809291906119639061482b565b91905055505080806119749061482b565b91505061191d565b505050565b61198961288a565b73ffffffffffffffffffffffffffffffffffffffff166119a7611db4565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906143fa565b60405180910390fd5b600660159054906101000a900460ff1615600660156101000a81548160ff021916908315150217905550565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf9061437a565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9061435a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bb461288a565b73ffffffffffffffffffffffffffffffffffffffff16611bd2611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906143fa565b60405180910390fd5b611c326000612cc5565b565b60125481565b60606000611c4783611af4565b67ffffffffffffffff811115611c6057611c5f61498f565b5b604051908082528060200260200182016040528015611c8e5781602001602082028036833780820191505090505b5090506000805b600c54811015611d1d578473ffffffffffffffffffffffffffffffffffffffff16611cbf82611a2f565b73ffffffffffffffffffffffffffffffffffffffff161415611d0a5780838381518110611cef57611cee614960565b5b6020026020010181815250508180611d069061482b565b9250505b8080611d159061482b565b915050611c95565b508192505050919050565b611d3061288a565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b906143fa565b60405180910390fd5b8060088190555050565b600e5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000611deb83611af4565b67ffffffffffffffff811115611e0457611e0361498f565b5b604051908082528060200260200182016040528015611e325781602001602082028036833780820191505090505b509050600080601054600f54611e4891906145f3565b90505b600e54601054600f54611e5e91906145f3565b611e6891906145f3565b811015611eed578473ffffffffffffffffffffffffffffffffffffffff16611e8f82611a2f565b73ffffffffffffffffffffffffffffffffffffffff161415611eda5780838381518110611ebf57611ebe614960565b5b6020026020010181815250508180611ed69061482b565b9250505b8080611ee59061482b565b915050611e4b565b508192505050919050565b611f0061288a565b73ffffffffffffffffffffffffffffffffffffffff16611f1e611db4565b73ffffffffffffffffffffffffffffffffffffffff1614611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b906143fa565b60405180910390fd5b601054600d5482611f8591906145f3565b1115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906144ba565b60405180910390fd5b60005b8181101561201b576000600d54600f54611fe391906145f3565b9050611fef8482612962565b600d60008154809291906120029061482b565b91905055505080806120139061482b565b915050611fc9565b505050565b60606001805461202f906147c8565b80601f016020809104026020016040519081016040528092919081815260200182805461205b906147c8565b80156120a85780601f1061207d576101008083540402835291602001916120a8565b820191906000526020600020905b81548152906001019060200180831161208b57829003601f168201915b5050505050905090565b60105481565b600c5481565b6120d06120c961288a565b8383612d8b565b5050565b6120dc61288a565b73ffffffffffffffffffffffffffffffffffffffff166120fa611db4565b73ffffffffffffffffffffffffffffffffffffffff1614612150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612147906143fa565b60405180910390fd5b601154600e548261216191906145f3565b11156121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612199906141da565b60405180910390fd5b60005b81811015612204576000600e54601054600f546121c291906145f3565b6121cc91906145f3565b90506121d88482612962565b600e60008154809291906121eb9061482b565b91905055505080806121fc9061482b565b9150506121a5565b505050565b6060600061221683611af4565b67ffffffffffffffff81111561222f5761222e61498f565b5b60405190808252806020026020018201604052801561225d5781602001602082028036833780820191505090505b509050600080600f5490505b600d54600f5461227991906145f3565b8110156122fe578473ffffffffffffffffffffffffffffffffffffffff166122a082611a2f565b73ffffffffffffffffffffffffffffffffffffffff1614156122eb57808383815181106122d0576122cf614960565b5b60200260200101818152505081806122e79061482b565b9250505b80806122f69061482b565b915050612269565b508192505050919050565b61231a61231461288a565b83612980565b612359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123509061447a565b60405180910390fd5b61236584848484612ef8565b50505050565b61237361288a565b73ffffffffffffffffffffffffffffffffffffffff16612391611db4565b73ffffffffffffffffffffffffffffffffffffffff16146123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de906143fa565b60405180910390fd5b8060128190555050565b600f5481565b600b5481565b60606124088261281e565b612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e9061441a565b60405180910390fd5b6000612451612f54565b90506000815111612471576040518060200160405280600081525061249c565b8061247b84612fe6565b60405160200161248c9291906140b5565b6040516020818303038152906040525b915050919050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481565b600660159054906101000a900460ff1681565b6124e561288a565b73ffffffffffffffffffffffffffffffffffffffff16612503611db4565b73ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612550906143fa565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561259f573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61263e61288a565b73ffffffffffffffffffffffffffffffffffffffff1661265c611db4565b73ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a9906143fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906141fa565b60405180910390fd5b61272b81612cc5565b50565b61273661288a565b73ffffffffffffffffffffffffffffffffffffffff16612754611db4565b73ffffffffffffffffffffffffffffffffffffffff16146127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a1906143fa565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661290583611a2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826129588584613147565b1490509392505050565b61297c8282604051806020016040528060008152506131bc565b5050565b600061298b8261281e565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c1906142da565b60405180910390fd5b60006129d583611a2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a175750612a1681856125a2565b5b80612a5557508373ffffffffffffffffffffffffffffffffffffffff16612a3d84610c42565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a7e82611a2f565b73ffffffffffffffffffffffffffffffffffffffff1614612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb9061421a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b9061429a565b60405180910390fd5b612b4f838383613217565b612b5a600082612892565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa91906146d4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0191906145f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cc083838361321c565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df1906142ba565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612eeb9190614162565b60405180910390a3505050565b612f03848484612a5e565b612f0f84848484613221565b612f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f45906141ba565b60405180910390fd5b50505050565b606060078054612f63906147c8565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8f906147c8565b8015612fdc5780601f10612fb157610100808354040283529160200191612fdc565b820191906000526020600020905b815481529060010190602001808311612fbf57829003601f168201915b5050505050905090565b6060600082141561302e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613142565b600082905060005b600082146130605780806130499061482b565b915050600a826130599190614649565b9150613036565b60008167ffffffffffffffff81111561307c5761307b61498f565b5b6040519080825280601f01601f1916602001820160405280156130ae5781602001600182028036833780820191505090505b5090505b6000851461313b576001826130c791906146d4565b9150600a856130d691906148a2565b60306130e291906145f3565b60f81b8183815181106130f8576130f7614960565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131349190614649565b94506130b2565b8093505050505b919050565b60008082905060005b84518110156131b157600085828151811061316e5761316d614960565b5b602002602001015190508083116131905761318983826133b8565b925061319d565b61319a81846133b8565b92505b5080806131a99061482b565b915050613150565b508091505092915050565b6131c683836133cf565b6131d36000848484613221565b613212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613209906141ba565b60405180910390fd5b505050565b505050565b505050565b60006132428473ffffffffffffffffffffffffffffffffffffffff166135a9565b156133ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261326b61288a565b8786866040518563ffffffff1660e01b815260040161328d94939291906140f4565b602060405180830381600087803b1580156132a757600080fd5b505af19250505080156132d857506040513d601f19601f820116820180604052508101906132d59190613a6e565b60015b61335b573d8060008114613308576040519150601f19603f3d011682016040523d82523d6000602084013e61330d565b606091505b50600081511415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a906141ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133b0565b600190505b949350505050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134369061439a565b60405180910390fd5b6134488161281e565b15613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f9061423a565b60405180910390fd5b61349460008383613217565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134e491906145f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135a56000838361321c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546135d8906147c8565b90600052602060002090601f0160209004810192826135fa5760008555613641565b82601f1061361357803560ff1916838001178555613641565b82800160010185558215613641579182015b82811115613640578235825591602001919060010190613625565b5b50905061364e9190613652565b5090565b5b8082111561366b576000816000905550600101613653565b5090565b600061368261367d8461451a565b6144f5565b905080838252602082019050828560208602820111156136a5576136a46149c8565b5b60005b858110156136d557816136bb8882613779565b8452602084019350602083019250506001810190506136a8565b5050509392505050565b60006136f26136ed84614546565b6144f5565b90508281526020810184848401111561370e5761370d6149cd565b5b613719848285614786565b509392505050565b600081359050613730816150a7565b92915050565b600082601f83011261374b5761374a6149c3565b5b813561375b84826020860161366f565b91505092915050565b600081359050613773816150be565b92915050565b600081359050613788816150d5565b92915050565b60008135905061379d816150ec565b92915050565b6000815190506137b2816150ec565b92915050565b600082601f8301126137cd576137cc6149c3565b5b81356137dd8482602086016136df565b91505092915050565b60008083601f8401126137fc576137fb6149c3565b5b8235905067ffffffffffffffff811115613819576138186149be565b5b602083019150836001820283011115613835576138346149c8565b5b9250929050565b60008135905061384b81615103565b92915050565b600060208284031215613867576138666149d7565b5b600061387584828501613721565b91505092915050565b60008060408385031215613895576138946149d7565b5b60006138a385828601613721565b92505060206138b485828601613721565b9150509250929050565b6000806000606084860312156138d7576138d66149d7565b5b60006138e586828701613721565b93505060206138f686828701613721565b92505060406139078682870161383c565b9150509250925092565b6000806000806080858703121561392b5761392a6149d7565b5b600061393987828801613721565b945050602061394a87828801613721565b935050604061395b8782880161383c565b925050606085013567ffffffffffffffff81111561397c5761397b6149d2565b5b613988878288016137b8565b91505092959194509250565b600080604083850312156139ab576139aa6149d7565b5b60006139b985828601613721565b92505060206139ca85828601613764565b9150509250929050565b600080604083850312156139eb576139ea6149d7565b5b60006139f985828601613721565b9250506020613a0a8582860161383c565b9150509250929050565b600060208284031215613a2a57613a296149d7565b5b6000613a3884828501613779565b91505092915050565b600060208284031215613a5757613a566149d7565b5b6000613a658482850161378e565b91505092915050565b600060208284031215613a8457613a836149d7565b5b6000613a92848285016137a3565b91505092915050565b60008060208385031215613ab257613ab16149d7565b5b600083013567ffffffffffffffff811115613ad057613acf6149d2565b5b613adc858286016137e6565b92509250509250929050565b600060208284031215613afe57613afd6149d7565b5b6000613b0c8482850161383c565b91505092915050565b60008060408385031215613b2c57613b2b6149d7565b5b6000613b3a8582860161383c565b925050602083013567ffffffffffffffff811115613b5b57613b5a6149d2565b5b613b6785828601613736565b9150509250929050565b6000613b7d8383614039565b60208301905092915050565b613b9281614708565b82525050565b613ba9613ba482614708565b614874565b82525050565b6000613bba82614587565b613bc481856145b5565b9350613bcf83614577565b8060005b83811015613c00578151613be78882613b71565b9750613bf2836145a8565b925050600181019050613bd3565b5085935050505092915050565b613c168161471a565b82525050565b613c2581614726565b82525050565b6000613c3682614592565b613c4081856145c6565b9350613c50818560208601614795565b613c59816149dc565b840191505092915050565b6000613c6f8261459d565b613c7981856145d7565b9350613c89818560208601614795565b613c92816149dc565b840191505092915050565b6000613ca88261459d565b613cb281856145e8565b9350613cc2818560208601614795565b80840191505092915050565b6000613cdb6032836145d7565b9150613ce6826149fa565b604082019050919050565b6000613cfe6023836145d7565b9150613d0982614a49565b604082019050919050565b6000613d216026836145d7565b9150613d2c82614a98565b604082019050919050565b6000613d446025836145d7565b9150613d4f82614ae7565b604082019050919050565b6000613d67601c836145d7565b9150613d7282614b36565b602082019050919050565b6000613d8a6024836145d7565b9150613d9582614b5f565b604082019050919050565b6000613dad6016836145d7565b9150613db882614bae565b602082019050919050565b6000613dd06024836145d7565b9150613ddb82614bd7565b604082019050919050565b6000613df36019836145d7565b9150613dfe82614c26565b602082019050919050565b6000613e16602c836145d7565b9150613e2182614c4f565b604082019050919050565b6000613e396021836145d7565b9150613e4482614c9e565b604082019050919050565b6000613e5c6038836145d7565b9150613e6782614ced565b604082019050919050565b6000613e7f6023836145d7565b9150613e8a82614d3c565b604082019050919050565b6000613ea2602a836145d7565b9150613ead82614d8b565b604082019050919050565b6000613ec56029836145d7565b9150613ed082614dda565b604082019050919050565b6000613ee86020836145d7565b9150613ef382614e29565b602082019050919050565b6000613f0b601f836145d7565b9150613f1682614e52565b602082019050919050565b6000613f2e602c836145d7565b9150613f3982614e7b565b604082019050919050565b6000613f516020836145d7565b9150613f5c82614eca565b602082019050919050565b6000613f74602f836145d7565b9150613f7f82614ef3565b604082019050919050565b6000613f976021836145d7565b9150613fa282614f42565b604082019050919050565b6000613fba6021836145d7565b9150613fc582614f91565b604082019050919050565b6000613fdd6031836145d7565b9150613fe882614fe0565b604082019050919050565b6000614000600d836145d7565b915061400b8261502f565b602082019050919050565b60006140236023836145d7565b915061402e82615058565b604082019050919050565b6140428161477c565b82525050565b6140518161477c565b82525050565b6140686140638261477c565b614898565b82525050565b600061407a8284613b98565b60148201915081905092915050565b60006140958285613b98565b6014820191506140a58284614057565b6020820191508190509392505050565b60006140c18285613c9d565b91506140cd8284613c9d565b91508190509392505050565b60006020820190506140ee6000830184613b89565b92915050565b60006080820190506141096000830187613b89565b6141166020830186613b89565b6141236040830185614048565b81810360608301526141358184613c2b565b905095945050505050565b6000602082019050818103600083015261415a8184613baf565b905092915050565b60006020820190506141776000830184613c0d565b92915050565b60006020820190506141926000830184613c1c565b92915050565b600060208201905081810360008301526141b28184613c64565b905092915050565b600060208201905081810360008301526141d381613cce565b9050919050565b600060208201905081810360008301526141f381613cf1565b9050919050565b6000602082019050818103600083015261421381613d14565b9050919050565b6000602082019050818103600083015261423381613d37565b9050919050565b6000602082019050818103600083015261425381613d5a565b9050919050565b6000602082019050818103600083015261427381613d7d565b9050919050565b6000602082019050818103600083015261429381613da0565b9050919050565b600060208201905081810360008301526142b381613dc3565b9050919050565b600060208201905081810360008301526142d381613de6565b9050919050565b600060208201905081810360008301526142f381613e09565b9050919050565b6000602082019050818103600083015261431381613e2c565b9050919050565b6000602082019050818103600083015261433381613e4f565b9050919050565b6000602082019050818103600083015261435381613e72565b9050919050565b6000602082019050818103600083015261437381613e95565b9050919050565b6000602082019050818103600083015261439381613eb8565b9050919050565b600060208201905081810360008301526143b381613edb565b9050919050565b600060208201905081810360008301526143d381613efe565b9050919050565b600060208201905081810360008301526143f381613f21565b9050919050565b6000602082019050818103600083015261441381613f44565b9050919050565b6000602082019050818103600083015261443381613f67565b9050919050565b6000602082019050818103600083015261445381613f8a565b9050919050565b6000602082019050818103600083015261447381613fad565b9050919050565b6000602082019050818103600083015261449381613fd0565b9050919050565b600060208201905081810360008301526144b381613ff3565b9050919050565b600060208201905081810360008301526144d381614016565b9050919050565b60006020820190506144ef6000830184614048565b92915050565b60006144ff614510565b905061450b82826147fa565b919050565b6000604051905090565b600067ffffffffffffffff8211156145355761453461498f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145615761456061498f565b5b61456a826149dc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145fe8261477c565b91506146098361477c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561463e5761463d6148d3565b5b828201905092915050565b60006146548261477c565b915061465f8361477c565b92508261466f5761466e614902565b5b828204905092915050565b60006146858261477c565b91506146908361477c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c9576146c86148d3565b5b828202905092915050565b60006146df8261477c565b91506146ea8361477c565b9250828210156146fd576146fc6148d3565b5b828203905092915050565b60006147138261475c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147b3578082015181840152602081019050614798565b838111156147c2576000848401525b50505050565b600060028204905060018216806147e057607f821691505b602082108114156147f4576147f3614931565b5b50919050565b614803826149dc565b810181811067ffffffffffffffff821117156148225761482161498f565b5b80604052505050565b60006148368261477c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614869576148686148d3565b5b600182019050919050565b600061487f82614886565b9050919050565b6000614891826149ed565b9050919050565b6000819050919050565b60006148ad8261477c565b91506148b88361477c565b9250826148c8576148c7614902565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f535550504c593a2056616c75652065786365656473205469657220332053757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f7520616c726561647920636c61696d656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f535550504c593a2056616c75652065786365656473205469657220482053757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f535550504c593a2056616c75652065786365656473205469657220322053757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b6150b081614708565b81146150bb57600080fd5b50565b6150c78161471a565b81146150d257600080fd5b50565b6150de81614726565b81146150e957600080fd5b50565b6150f581614730565b811461510057600080fd5b50565b61510c8161477c565b811461511757600080fd5b5056fea2646970667358221220be966ebe55483a08f3b1bcd74ee2f7c7a6ec75433f761723bc2033f22dc60bda64736f6c63430008070033

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.