ETH Price: $2,873.53 (-9.63%)
Gas: 14 Gwei

Token

AquaHQ ()
 

Overview

Max Total Supply

0

Holders

794

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
livethisday.eth
0x941b6117f7059c484d66e8f24ed38cb40a1667cd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AquaTools Lifetime Membership includes: • Unlimited lifetime access to AquaTools. • Exclusive access to the AquaHQ alpha discord. • Early Beta access to all new features, tools, and ventures. • WL access to other NFT projects. • Insights, market analysis, and exclusive alpha...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AquaTools

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : AquaTools.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract AquaTools is ERC1155, Ownable, ERC1155Supply {
    uint256 public price = 0.1 ether;
    uint16 public maxSupply = 3000;
    uint16 public supplyLeft = maxSupply;
    uint8 public reservedSupply = 200;
    bool public presaleActive;
    bool public saleActive;
    uint8 public presaleMaxMintsPerTrans = 1;
    uint8 public publicMaxMintsPerTrans = 3;
    uint8 public passIndex = 0;
    bytes32 public merkleRoot =
        0x9492a15aa69d55a18e1181ac3b84b971ef9799e23b284f144961474af08621d9;

    mapping(address => bool) public whitelistClaimed;

    constructor()
        ERC1155("ipfs://QmTF8cSSv5Ewexo4TMU8Wg1MqEwXHfLVxYkuhy7GzwSU6U")
    {
        _mint(msg.sender, passIndex, reservedSupply, "");

        supplyLeft -= reservedSupply;
    }

    // Write functions

    function setPresaleStatus(bool _presaleActive) public onlyOwner {
        presaleActive = _presaleActive;
    }

    function setSaleStatus(bool _saleActive) public onlyOwner {
        saleActive = _saleActive;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // Read functions

    function hasToken(address account) public view returns (bool) {
        return balanceOf(account, passIndex) > 0;
    }

    function getPrice() public view returns (uint256) {
        return price;
    }

    function getSupplyLeft() public view returns (uint16) {
        return supplyLeft;
    }

    function getMaxSupply() public view returns (uint16) {
        return maxSupply;
    }

    function getMerkleRoot() public view returns (bytes32) {
        return merkleRoot;
    }

    function getBalance() external view returns (uint256) {
        return address(this).balance;
    }

    // Mint

    function mintPresale(
        address account,
        uint8 amount,
        bytes32[] calldata _merkleProof
    ) public payable {
        require(msg.value >= amount * price, "Wrong amount sent");
        require(presaleActive, "Sale is not active");
        require(amount > 0, "Amount must be positive integer");
        require(
            totalSupply(passIndex) + amount <= maxSupply,
            "Purchase would exceed max supply"
        );
        require(!whitelistClaimed[msg.sender], "Address has already claimed");
        require(amount <= presaleMaxMintsPerTrans, "Only 1 mint allowed");

        bytes32 leaf = keccak256(abi.encodePacked(account));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof"
        );

        _mint(account, passIndex, amount, "");
        whitelistClaimed[msg.sender] = true;

        supplyLeft -= amount;
    }

    function mint(address account, uint8 amount) public payable {
        require(msg.value >= amount * price, "Wrong amount sent");
        require(saleActive, "Sale is not active");
        require(amount > 0, "Amount must be positive integer");
        require(
            totalSupply(passIndex) + amount <= maxSupply,
            "Purchase would exceed max supply"
        );
        require(amount <= publicMaxMintsPerTrans, "Only 3 mints allowed");

        _mint(account, passIndex, amount, "");

        supplyLeft -= amount;
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes memory
    ) public virtual returns (bytes4) {
        return this.onERC1155Received.selector;
    }
}

File 2 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

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

File 4 of 12 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

File 5 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _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 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 9 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 10 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 11 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 12 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passIndex","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMintsPerTrans","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxMintsPerTrans","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presaleActive","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleActive","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600555610bb8600660006101000a81548161ffff021916908361ffff160217905550600660009054906101000a900461ffff16600660026101000a81548161ffff021916908361ffff16021790555060c8600660046101000a81548160ff021916908360ff1602179055506001600660076101000a81548160ff021916908360ff1602179055506003600660086101000a81548160ff021916908360ff1602179055506000600660096101000a81548160ff021916908360ff1602179055507f9492a15aa69d55a18e1181ac3b84b971ef9799e23b284f144961474af08621d960001b6007553480156200010057600080fd5b5060405180606001604052806035815260200162005c0d603591396200012c81620001e760201b60201c565b506200014d620001416200020360201b60201c565b6200020b60201b60201c565b6200019433600660099054906101000a900460ff1660ff16600660049054906101000a900460ff1660ff1660405180602001604052806000815250620002d160201b60201c565b600660049054906101000a900460ff1660ff16600660028282829054906101000a900461ffff16620001c7919062000dae565b92506101000a81548161ffff021916908361ffff16021790555062001205565b8060029080519060200190620001ff929190620009e8565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000344576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033b9062000cc0565b60405180910390fd5b6000620003566200020360201b60201c565b90506200038f8160008762000371886200049660201b60201c565b62000382886200049660201b60201c565b876200055f60201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003f0919062000d51565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200047092919062000ce2565b60405180910390a46200048f816000878787876200058260201b60201c565b5050505050565b60606000600167ffffffffffffffff811115620004dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156200050b5781602001602082028036833780820191505090505b50905082816000815181106200054a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6200057a8686868686866200078c60201b62001bac1760201c565b505050505050565b620005ae8473ffffffffffffffffffffffffffffffffffffffff16620009bd60201b62001dbe1760201c565b1562000784578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620005f795949392919062000bf4565b602060405180830381600087803b1580156200061257600080fd5b505af19250505080156200064657506040513d601f19601f8201168201806040525081019062000643919062000aaf565b60015b620006f8576200065562001019565b806308c379a01415620006b957506200066d62001149565b806200067a5750620006bb565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b0919062000c58565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ef9062000c7c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007799062000c9e565b60405180910390fd5b505b505050505050565b620007a7868686868686620009e060201b62001de11760201c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620008ae5760005b8351811015620008ac5782818151811062000824577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008684815181106200086a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825462000891919062000d51565b9250508190555080620008a49062000f3e565b9050620007e0565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620009b55760005b8351811015620009b3578281815181106200092b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516004600086848151811062000971577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825462000998919062000de9565b9250508190555080620009ab9062000f3e565b9050620008e7565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054620009f69062000ed2565b90600052602060002090601f01602090048101928262000a1a576000855562000a66565b82601f1062000a3557805160ff191683800117855562000a66565b8280016001018555821562000a66579182015b8281111562000a6557825182559160200191906001019062000a48565b5b50905062000a75919062000a79565b5090565b5b8082111562000a9457600081600090555060010162000a7a565b5090565b60008151905062000aa981620011eb565b92915050565b60006020828403121562000ac257600080fd5b600062000ad28482850162000a98565b91505092915050565b62000ae68162000e24565b82525050565b600062000af98262000d19565b62000b05818562000d2f565b935062000b1781856020860162000e9c565b62000b22816200103e565b840191505092915050565b600062000b3a8262000d24565b62000b46818562000d40565b935062000b5881856020860162000e9c565b62000b63816200103e565b840191505092915050565b600062000b7d60348362000d40565b915062000b8a826200105c565b604082019050919050565b600062000ba460288362000d40565b915062000bb182620010ab565b604082019050919050565b600062000bcb60218362000d40565b915062000bd882620010fa565b604082019050919050565b62000bee8162000e92565b82525050565b600060a08201905062000c0b600083018862000adb565b62000c1a602083018762000adb565b62000c29604083018662000be3565b62000c38606083018562000be3565b818103608083015262000c4c818462000aec565b90509695505050505050565b6000602082019050818103600083015262000c74818462000b2d565b905092915050565b6000602082019050818103600083015262000c978162000b6e565b9050919050565b6000602082019050818103600083015262000cb98162000b95565b9050919050565b6000602082019050818103600083015262000cdb8162000bbc565b9050919050565b600060408201905062000cf9600083018562000be3565b62000d08602083018462000be3565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000d5e8262000e92565b915062000d6b8362000e92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000da35762000da262000f8c565b5b828201905092915050565b600062000dbb8262000e64565b915062000dc88362000e64565b92508282101562000dde5762000ddd62000f8c565b5b828203905092915050565b600062000df68262000e92565b915062000e038362000e92565b92508282101562000e195762000e1862000f8c565b5b828203905092915050565b600062000e318262000e72565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ebc57808201518184015260208101905062000e9f565b8381111562000ecc576000848401525b50505050565b6000600282049050600182168062000eeb57607f821691505b6020821081141562000f025762000f0162000fbb565b5b50919050565b62000f13826200103e565b810181811067ffffffffffffffff8211171562000f355762000f3462000fea565b5b80604052505050565b600062000f4b8262000e92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000f815762000f8062000f8c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156200103b5760046000803e620010386000516200104f565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156200115b57620011e8565b6200116562000d0f565b60043d036004823e80513d602482011167ffffffffffffffff821117156200118f575050620011e8565b808201805167ffffffffffffffff811115620011af5750505050620011e8565b80602083010160043d038501811115620011ce575050505050620011e8565b620011df8260200185018662000f08565b82955050505050505b90565b620011f68162000e38565b81146200120257600080fd5b50565b6149f880620012156000396000f3fe60806040526004361061022f5760003560e01c80637cb647591161012e578063b51619d6116100ab578063e985e9c51161006f578063e985e9c514610826578063f23a6e6114610863578063f242432a146108a0578063f2fde38b146108c9578063fdcf9d07146108f25761022f565b8063b51619d61461073c578063bd85b03914610758578063d5abeb0114610795578063d897833e146107c0578063db4bec44146107e95761022f565b80639b7dc179116100f25780639b7dc179146106555780639bb0f59914610680578063a035b1fe146106bd578063a22cb465146106e8578063b14a73cb146107115761022f565b80637cb64759146105845780638895283f146105ad5780638da5cb5b146105d657806391b7f5ed1461060157806398d5fdca1461062a5761022f565b80633ccfd60b116101bc5780634f558e79116101805780634f558e79146104be57806353135ca0146104fb57806368428a1b14610526578063691562a014610551578063715018a61461056d5761022f565b80633ccfd60b146103e957806344d19d2b14610400578063495906571461042b5780634c0f38c2146104565780634e1273f4146104815761022f565b80630e89341c116102035780630e89341c1461030257806312065fe01461033f5780632eb2c2d61461036a5780632eb4a7ab1461039357806337084847146103be5761022f565b8062fdd58e1461023457806301ffc9a71461027157806302fe5305146102ae5780630794dcac146102d7575b600080fd5b34801561024057600080fd5b5061025b600480360381019061025691906132fe565b61091d565b6040516102689190613e31565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906134a0565b6109e6565b6040516102a59190613b03565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906134f2565b610ac8565b005b3480156102e357600080fd5b506102ec610b50565b6040516102f99190613e75565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613533565b610b63565b6040516103369190613b54565b60405180910390f35b34801561034b57600080fd5b50610354610bf7565b6040516103619190613e31565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613174565b610bff565b005b34801561039f57600080fd5b506103a8610ca0565b6040516103b59190613b1e565b60405180910390f35b3480156103ca57600080fd5b506103d3610ca6565b6040516103e09190613e75565b60405180910390f35b3480156103f557600080fd5b506103fe610cb9565b005b34801561040c57600080fd5b50610415610d84565b6040516104229190613e75565b60405180910390f35b34801561043757600080fd5b50610440610d97565b60405161044d9190613b1e565b60405180910390f35b34801561046257600080fd5b5061046b610da1565b6040516104789190613e16565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906133e2565b610db9565b6040516104b59190613aaa565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613533565b610f6a565b6040516104f29190613b03565b60405180910390f35b34801561050757600080fd5b50610510610f7e565b60405161051d9190613b03565b60405180910390f35b34801561053257600080fd5b5061053b610f91565b6040516105489190613b03565b60405180910390f35b61056b6004803603810190610566919061333a565b610fa2565b005b34801561057957600080fd5b506105826111cf565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613477565b611257565b005b3480156105b957600080fd5b506105d460048036038101906105cf919061344e565b6112dd565b005b3480156105e257600080fd5b506105eb611376565b6040516105f891906139cd565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613533565b6113a0565b005b34801561063657600080fd5b5061063f611426565b60405161064c9190613e31565b60405180910390f35b34801561066157600080fd5b5061066a611430565b6040516106779190613e75565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a2919061310f565b611443565b6040516106b49190613b03565b60405180910390f35b3480156106c957600080fd5b506106d261146a565b6040516106df9190613e31565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906132c2565b611470565b005b34801561071d57600080fd5b50610726611486565b6040516107339190613e16565b60405180910390f35b61075660048036038101906107519190613376565b61149e565b005b34801561076457600080fd5b5061077f600480360381019061077a9190613533565b61186d565b60405161078c9190613e31565b60405180910390f35b3480156107a157600080fd5b506107aa61188a565b6040516107b79190613e16565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061344e565b61189e565b005b3480156107f557600080fd5b50610810600480360381019061080b919061310f565b611936565b60405161081d9190613b03565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613138565b611956565b60405161085a9190613b03565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613233565b6119ea565b6040516108979190613b39565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613233565b6119ff565b005b3480156108d557600080fd5b506108f060048036038101906108eb919061310f565b611aa0565b005b3480156108fe57600080fd5b50610907611b98565b6040516109149190613e16565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590613bb6565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac082611de9565b5b9050919050565b610ad0611e53565b73ffffffffffffffffffffffffffffffffffffffff16610aee611376565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613cf6565b60405180910390fd5b610b4d81611e5b565b50565b600660089054906101000a900460ff1681565b606060028054610b72906141d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e906141d3565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b50505050509050919050565b600047905090565b610c07611e53565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c4d5750610c4c85610c47611e53565b611956565b5b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613c96565b60405180910390fd5b610c998585858585611e75565b5050505050565b60075481565b600660079054906101000a900460ff1681565b610cc1611e53565b73ffffffffffffffffffffffffffffffffffffffff16610cdf611376565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90613cf6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d80573d6000803e3d6000fd5b5050565b600660049054906101000a900460ff1681565b6000600754905090565b6000600660009054906101000a900461ffff16905090565b60608151835114610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690613db6565b60405180910390fd5b6000835167ffffffffffffffff811115610e42577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e705781602001602082028036833780820191505090505b50905060005b8451811015610f5f57610f09858281518110610ebb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610efc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161091d565b828281518110610f42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610f5890614236565b9050610e76565b508091505092915050565b600080610f768361186d565b119050919050565b600660059054906101000a900460ff1681565b60068054906101000a900460ff1681565b6005548160ff16610fb39190614036565b341015610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613d56565b60405180910390fd5b60068054906101000a900460ff16611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990613c16565b60405180910390fd5b60008160ff1611611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613c56565b60405180910390fd5b600660009054906101000a900461ffff1661ffff168160ff166110bc600660099054906101000a900460ff1660ff1661186d565b6110c69190613fe0565b1115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613cb6565b60405180910390fd5b600660089054906101000a900460ff1660ff168160ff16111561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613d16565b60405180910390fd5b61118f82600660099054906101000a900460ff1660ff168360ff16604051806020016040528060008152506121d5565b8060ff16600660028282829054906101000a900461ffff166111b19190614090565b92506101000a81548161ffff021916908361ffff1602179055505050565b6111d7611e53565b73ffffffffffffffffffffffffffffffffffffffff166111f5611376565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613cf6565b60405180910390fd5b611255600061236b565b565b61125f611e53565b73ffffffffffffffffffffffffffffffffffffffff1661127d611376565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613cf6565b60405180910390fd5b8060078190555050565b6112e5611e53565b73ffffffffffffffffffffffffffffffffffffffff16611303611376565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613cf6565b60405180910390fd5b80600660056101000a81548160ff02191690831515021790555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113a8611e53565b73ffffffffffffffffffffffffffffffffffffffff166113c6611376565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613cf6565b60405180910390fd5b8060058190555050565b6000600554905090565b600660099054906101000a900460ff1681565b60008061146283600660099054906101000a900460ff1660ff1661091d565b119050919050565b60055481565b61148261147b611e53565b8383612431565b5050565b6000600660029054906101000a900461ffff16905090565b6005548360ff166114af9190614036565b3410156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613d56565b60405180910390fd5b600660059054906101000a900460ff16611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613c16565b60405180910390fd5b60008360ff1611611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613c56565b60405180910390fd5b600660009054906101000a900461ffff1661ffff168360ff166115ba600660099054906101000a900460ff1660ff1661186d565b6115c49190613fe0565b1115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613cb6565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613c36565b60405180910390fd5b600660079054906101000a900460ff1660ff168360ff1611156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190613d36565b60405180910390fd5b6000846040516020016116fd91906139b2565b604051602081830303815290604052805190602001209050611763838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361259e565b6117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613d76565b60405180910390fd5b6117d285600660099054906101000a900460ff1660ff168660ff16604051806020016040528060008152506121d5565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508360ff16600660028282829054906101000a900461ffff1661184c9190614090565b92506101000a81548161ffff021916908361ffff1602179055505050505050565b600060046000838152602001908152602001600020549050919050565b600660009054906101000a900461ffff1681565b6118a6611e53565b73ffffffffffffffffffffffffffffffffffffffff166118c4611376565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613cf6565b60405180910390fd5b806006806101000a81548160ff02191690831515021790555050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b611a07611e53565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a4d5750611a4c85611a47611e53565b611956565b5b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613bf6565b60405180910390fd5b611a9985858585856125b5565b5050505050565b611aa8611e53565b73ffffffffffffffffffffffffffffffffffffffff16611ac6611376565b73ffffffffffffffffffffffffffffffffffffffff1614611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613cf6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613bd6565b60405180910390fd5b611b958161236b565b50565b600660029054906101000a900461ffff1681565b611bba868686868686611de1565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611cb85760005b8351811015611cb657828181518110611c34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110611c79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611c9e9190613fe0565b9250508190555080611caf90614236565b9050611bf2565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db65760005b8351811015611db457828181518110611d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110611d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611d9c91906140c4565b9250508190555080611dad90614236565b9050611cf0565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611e71929190612d93565b5050565b8151835114611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb090613dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090613c76565b60405180910390fd5b6000611f33611e53565b9050611f43818787878787612837565b60005b8451811015612140576000858281518110611f8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611fcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790613cd6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121259190613fe0565b925050819055505050508061213990614236565b9050611f46565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121b7929190613acc565b60405180910390a46121cd81878787878761284d565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613df6565b60405180910390fd5b600061224f611e53565b90506122708160008761226188612a34565b61226a88612a34565b87612837565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122cf9190613fe0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161234d929190613e4c565b60405180910390a461236481600087878787612afa565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249790613d96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125919190613b03565b60405180910390a3505050565b6000826125ab8584612ce1565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90613c76565b60405180910390fd5b600061262f611e53565b905061264f81878761264088612a34565b61264988612a34565b87612837565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90613cd6565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279b9190613fe0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612818929190613e4c565b60405180910390a461282e828888888888612afa565b50505050505050565b612845868686868686611bac565b505050505050565b61286c8473ffffffffffffffffffffffffffffffffffffffff16611dbe565b15612a2c578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128b29594939291906139e8565b602060405180830381600087803b1580156128cc57600080fd5b505af19250505080156128fd57506040513d601f19601f820116820180604052508101906128fa91906134c9565b60015b6129a357612909614330565b806308c379a01415612966575061291e6148a2565b806129295750612968565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d9190613b54565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90613b76565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190613b96565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612a79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612aa75781602001602082028036833780820191505090505b5090508281600081518110612ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612b198473ffffffffffffffffffffffffffffffffffffffff16611dbe565b15612cd9578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612b5f959493929190613a50565b602060405180830381600087803b158015612b7957600080fd5b505af1925050508015612baa57506040513d601f19601f82011682018060405250810190612ba791906134c9565b60015b612c5057612bb6614330565b806308c379a01415612c135750612bcb6148a2565b80612bd65750612c15565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a9190613b54565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4790613b76565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce90613b96565b60405180910390fd5b505b505050505050565b60008082905060005b8451811015612d71576000858281518110612d2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612d5057612d498382612d7c565b9250612d5d565b612d5a8184612d7c565b92505b508080612d6990614236565b915050612cea565b508091505092915050565b600082600052816020526040600020905092915050565b828054612d9f906141d3565b90600052602060002090601f016020900481019282612dc15760008555612e08565b82601f10612dda57805160ff1916838001178555612e08565b82800160010185558215612e08579182015b82811115612e07578251825591602001919060010190612dec565b5b509050612e159190612e19565b5090565b5b80821115612e32576000816000905550600101612e1a565b5090565b6000612e49612e4484613eb5565b613e90565b90508083825260208201905082856020860282011115612e6857600080fd5b60005b85811015612e985781612e7e8882612f8a565b845260208401935060208301925050600181019050612e6b565b5050509392505050565b6000612eb5612eb084613ee1565b613e90565b90508083825260208201905082856020860282011115612ed457600080fd5b60005b85811015612f045781612eea88826130e5565b845260208401935060208301925050600181019050612ed7565b5050509392505050565b6000612f21612f1c84613f0d565b613e90565b905082815260208101848484011115612f3957600080fd5b612f44848285614191565b509392505050565b6000612f5f612f5a84613f3e565b613e90565b905082815260208101848484011115612f7757600080fd5b612f82848285614191565b509392505050565b600081359050612f9981614938565b92915050565b600082601f830112612fb057600080fd5b8135612fc0848260208601612e36565b91505092915050565b60008083601f840112612fdb57600080fd5b8235905067ffffffffffffffff811115612ff457600080fd5b60208301915083602082028301111561300c57600080fd5b9250929050565b600082601f83011261302457600080fd5b8135613034848260208601612ea2565b91505092915050565b60008135905061304c8161494f565b92915050565b60008135905061306181614966565b92915050565b6000813590506130768161497d565b92915050565b60008151905061308b8161497d565b92915050565b600082601f8301126130a257600080fd5b81356130b2848260208601612f0e565b91505092915050565b600082601f8301126130cc57600080fd5b81356130dc848260208601612f4c565b91505092915050565b6000813590506130f481614994565b92915050565b600081359050613109816149ab565b92915050565b60006020828403121561312157600080fd5b600061312f84828501612f8a565b91505092915050565b6000806040838503121561314b57600080fd5b600061315985828601612f8a565b925050602061316a85828601612f8a565b9150509250929050565b600080600080600060a0868803121561318c57600080fd5b600061319a88828901612f8a565b95505060206131ab88828901612f8a565b945050604086013567ffffffffffffffff8111156131c857600080fd5b6131d488828901613013565b935050606086013567ffffffffffffffff8111156131f157600080fd5b6131fd88828901613013565b925050608086013567ffffffffffffffff81111561321a57600080fd5b61322688828901613091565b9150509295509295909350565b600080600080600060a0868803121561324b57600080fd5b600061325988828901612f8a565b955050602061326a88828901612f8a565b945050604061327b888289016130e5565b935050606061328c888289016130e5565b925050608086013567ffffffffffffffff8111156132a957600080fd5b6132b588828901613091565b9150509295509295909350565b600080604083850312156132d557600080fd5b60006132e385828601612f8a565b92505060206132f48582860161303d565b9150509250929050565b6000806040838503121561331157600080fd5b600061331f85828601612f8a565b9250506020613330858286016130e5565b9150509250929050565b6000806040838503121561334d57600080fd5b600061335b85828601612f8a565b925050602061336c858286016130fa565b9150509250929050565b6000806000806060858703121561338c57600080fd5b600061339a87828801612f8a565b94505060206133ab878288016130fa565b935050604085013567ffffffffffffffff8111156133c857600080fd5b6133d487828801612fc9565b925092505092959194509250565b600080604083850312156133f557600080fd5b600083013567ffffffffffffffff81111561340f57600080fd5b61341b85828601612f9f565b925050602083013567ffffffffffffffff81111561343857600080fd5b61344485828601613013565b9150509250929050565b60006020828403121561346057600080fd5b600061346e8482850161303d565b91505092915050565b60006020828403121561348957600080fd5b600061349784828501613052565b91505092915050565b6000602082840312156134b257600080fd5b60006134c084828501613067565b91505092915050565b6000602082840312156134db57600080fd5b60006134e98482850161307c565b91505092915050565b60006020828403121561350457600080fd5b600082013567ffffffffffffffff81111561351e57600080fd5b61352a848285016130bb565b91505092915050565b60006020828403121561354557600080fd5b6000613553848285016130e5565b91505092915050565b60006135688383613985565b60208301905092915050565b61357d816140f8565b82525050565b61359461358f826140f8565b61427f565b82525050565b60006135a582613f7f565b6135af8185613fad565b93506135ba83613f6f565b8060005b838110156135eb5781516135d2888261355c565b97506135dd83613fa0565b9250506001810190506135be565b5085935050505092915050565b6136018161410a565b82525050565b61361081614116565b82525050565b61361f81614120565b82525050565b600061363082613f8a565b61363a8185613fbe565b935061364a8185602086016141a0565b61365381614352565b840191505092915050565b600061366982613f95565b6136738185613fcf565b93506136838185602086016141a0565b61368c81614352565b840191505092915050565b60006136a4603483613fcf565b91506136af8261437d565b604082019050919050565b60006136c7602883613fcf565b91506136d2826143cc565b604082019050919050565b60006136ea602b83613fcf565b91506136f58261441b565b604082019050919050565b600061370d602683613fcf565b91506137188261446a565b604082019050919050565b6000613730602983613fcf565b915061373b826144b9565b604082019050919050565b6000613753601283613fcf565b915061375e82614508565b602082019050919050565b6000613776601b83613fcf565b915061378182614531565b602082019050919050565b6000613799601f83613fcf565b91506137a48261455a565b602082019050919050565b60006137bc602583613fcf565b91506137c782614583565b604082019050919050565b60006137df603283613fcf565b91506137ea826145d2565b604082019050919050565b6000613802602083613fcf565b915061380d82614621565b602082019050919050565b6000613825602a83613fcf565b91506138308261464a565b604082019050919050565b6000613848602083613fcf565b915061385382614699565b602082019050919050565b600061386b601483613fcf565b9150613876826146c2565b602082019050919050565b600061388e601383613fcf565b9150613899826146eb565b602082019050919050565b60006138b1601183613fcf565b91506138bc82614714565b602082019050919050565b60006138d4600d83613fcf565b91506138df8261473d565b602082019050919050565b60006138f7602983613fcf565b915061390282614766565b604082019050919050565b600061391a602983613fcf565b9150613925826147b5565b604082019050919050565b600061393d602883613fcf565b915061394882614804565b604082019050919050565b6000613960602183613fcf565b915061396b82614853565b604082019050919050565b61397f8161414c565b82525050565b61398e8161417a565b82525050565b61399d8161417a565b82525050565b6139ac81614184565b82525050565b60006139be8284613583565b60148201915081905092915050565b60006020820190506139e26000830184613574565b92915050565b600060a0820190506139fd6000830188613574565b613a0a6020830187613574565b8181036040830152613a1c818661359a565b90508181036060830152613a30818561359a565b90508181036080830152613a448184613625565b90509695505050505050565b600060a082019050613a656000830188613574565b613a726020830187613574565b613a7f6040830186613994565b613a8c6060830185613994565b8181036080830152613a9e8184613625565b90509695505050505050565b60006020820190508181036000830152613ac4818461359a565b905092915050565b60006040820190508181036000830152613ae6818561359a565b90508181036020830152613afa818461359a565b90509392505050565b6000602082019050613b1860008301846135f8565b92915050565b6000602082019050613b336000830184613607565b92915050565b6000602082019050613b4e6000830184613616565b92915050565b60006020820190508181036000830152613b6e818461365e565b905092915050565b60006020820190508181036000830152613b8f81613697565b9050919050565b60006020820190508181036000830152613baf816136ba565b9050919050565b60006020820190508181036000830152613bcf816136dd565b9050919050565b60006020820190508181036000830152613bef81613700565b9050919050565b60006020820190508181036000830152613c0f81613723565b9050919050565b60006020820190508181036000830152613c2f81613746565b9050919050565b60006020820190508181036000830152613c4f81613769565b9050919050565b60006020820190508181036000830152613c6f8161378c565b9050919050565b60006020820190508181036000830152613c8f816137af565b9050919050565b60006020820190508181036000830152613caf816137d2565b9050919050565b60006020820190508181036000830152613ccf816137f5565b9050919050565b60006020820190508181036000830152613cef81613818565b9050919050565b60006020820190508181036000830152613d0f8161383b565b9050919050565b60006020820190508181036000830152613d2f8161385e565b9050919050565b60006020820190508181036000830152613d4f81613881565b9050919050565b60006020820190508181036000830152613d6f816138a4565b9050919050565b60006020820190508181036000830152613d8f816138c7565b9050919050565b60006020820190508181036000830152613daf816138ea565b9050919050565b60006020820190508181036000830152613dcf8161390d565b9050919050565b60006020820190508181036000830152613def81613930565b9050919050565b60006020820190508181036000830152613e0f81613953565b9050919050565b6000602082019050613e2b6000830184613976565b92915050565b6000602082019050613e466000830184613994565b92915050565b6000604082019050613e616000830185613994565b613e6e6020830184613994565b9392505050565b6000602082019050613e8a60008301846139a3565b92915050565b6000613e9a613eab565b9050613ea68282614205565b919050565b6000604051905090565b600067ffffffffffffffff821115613ed057613ecf614301565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613efc57613efb614301565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f2857613f27614301565b5b613f3182614352565b9050602081019050919050565b600067ffffffffffffffff821115613f5957613f58614301565b5b613f6282614352565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613feb8261417a565b9150613ff68361417a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402b5761402a6142a3565b5b828201905092915050565b60006140418261417a565b915061404c8361417a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614085576140846142a3565b5b828202905092915050565b600061409b8261414c565b91506140a68361414c565b9250828210156140b9576140b86142a3565b5b828203905092915050565b60006140cf8261417a565b91506140da8361417a565b9250828210156140ed576140ec6142a3565b5b828203905092915050565b60006141038261415a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141be5780820151818401526020810190506141a3565b838111156141cd576000848401525b50505050565b600060028204905060018216806141eb57607f821691505b602082108114156141ff576141fe6142d2565b5b50919050565b61420e82614352565b810181811067ffffffffffffffff8211171561422d5761422c614301565b5b80604052505050565b60006142418261417a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614274576142736142a3565b5b600182019050919050565b600061428a82614291565b9050919050565b600061429c82614363565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561434f5760046000803e61434c600051614370565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b7f416d6f756e74206d75737420626520706f73697469766520696e746567657200600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c792033206d696e747320616c6c6f776564000000000000000000000000600082015250565b7f4f6e6c792031206d696e7420616c6c6f77656400000000000000000000000000600082015250565b7f57726f6e6720616d6f756e742073656e74000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156148b257614935565b6148ba613eab565b60043d036004823e80513d602482011167ffffffffffffffff821117156148e2575050614935565b808201805167ffffffffffffffff8111156149005750505050614935565b80602083010160043d03850181111561491d575050505050614935565b61492c82602001850186614205565b82955050505050505b90565b614941816140f8565b811461494c57600080fd5b50565b6149588161410a565b811461496357600080fd5b50565b61496f81614116565b811461497a57600080fd5b50565b61498681614120565b811461499157600080fd5b50565b61499d8161417a565b81146149a857600080fd5b50565b6149b481614184565b81146149bf57600080fd5b5056fea264697066735822122047248855b7857b5e07747e7f66e1c2b482baa2d329b4bbe1de89d609bc41eca864736f6c63430008040033697066733a2f2f516d5446386353537635457765786f34544d55385767314d7145775848664c5678596b75687937477a7753553655

Deployed Bytecode

0x60806040526004361061022f5760003560e01c80637cb647591161012e578063b51619d6116100ab578063e985e9c51161006f578063e985e9c514610826578063f23a6e6114610863578063f242432a146108a0578063f2fde38b146108c9578063fdcf9d07146108f25761022f565b8063b51619d61461073c578063bd85b03914610758578063d5abeb0114610795578063d897833e146107c0578063db4bec44146107e95761022f565b80639b7dc179116100f25780639b7dc179146106555780639bb0f59914610680578063a035b1fe146106bd578063a22cb465146106e8578063b14a73cb146107115761022f565b80637cb64759146105845780638895283f146105ad5780638da5cb5b146105d657806391b7f5ed1461060157806398d5fdca1461062a5761022f565b80633ccfd60b116101bc5780634f558e79116101805780634f558e79146104be57806353135ca0146104fb57806368428a1b14610526578063691562a014610551578063715018a61461056d5761022f565b80633ccfd60b146103e957806344d19d2b14610400578063495906571461042b5780634c0f38c2146104565780634e1273f4146104815761022f565b80630e89341c116102035780630e89341c1461030257806312065fe01461033f5780632eb2c2d61461036a5780632eb4a7ab1461039357806337084847146103be5761022f565b8062fdd58e1461023457806301ffc9a71461027157806302fe5305146102ae5780630794dcac146102d7575b600080fd5b34801561024057600080fd5b5061025b600480360381019061025691906132fe565b61091d565b6040516102689190613e31565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906134a0565b6109e6565b6040516102a59190613b03565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906134f2565b610ac8565b005b3480156102e357600080fd5b506102ec610b50565b6040516102f99190613e75565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613533565b610b63565b6040516103369190613b54565b60405180910390f35b34801561034b57600080fd5b50610354610bf7565b6040516103619190613e31565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613174565b610bff565b005b34801561039f57600080fd5b506103a8610ca0565b6040516103b59190613b1e565b60405180910390f35b3480156103ca57600080fd5b506103d3610ca6565b6040516103e09190613e75565b60405180910390f35b3480156103f557600080fd5b506103fe610cb9565b005b34801561040c57600080fd5b50610415610d84565b6040516104229190613e75565b60405180910390f35b34801561043757600080fd5b50610440610d97565b60405161044d9190613b1e565b60405180910390f35b34801561046257600080fd5b5061046b610da1565b6040516104789190613e16565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906133e2565b610db9565b6040516104b59190613aaa565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613533565b610f6a565b6040516104f29190613b03565b60405180910390f35b34801561050757600080fd5b50610510610f7e565b60405161051d9190613b03565b60405180910390f35b34801561053257600080fd5b5061053b610f91565b6040516105489190613b03565b60405180910390f35b61056b6004803603810190610566919061333a565b610fa2565b005b34801561057957600080fd5b506105826111cf565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613477565b611257565b005b3480156105b957600080fd5b506105d460048036038101906105cf919061344e565b6112dd565b005b3480156105e257600080fd5b506105eb611376565b6040516105f891906139cd565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613533565b6113a0565b005b34801561063657600080fd5b5061063f611426565b60405161064c9190613e31565b60405180910390f35b34801561066157600080fd5b5061066a611430565b6040516106779190613e75565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a2919061310f565b611443565b6040516106b49190613b03565b60405180910390f35b3480156106c957600080fd5b506106d261146a565b6040516106df9190613e31565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906132c2565b611470565b005b34801561071d57600080fd5b50610726611486565b6040516107339190613e16565b60405180910390f35b61075660048036038101906107519190613376565b61149e565b005b34801561076457600080fd5b5061077f600480360381019061077a9190613533565b61186d565b60405161078c9190613e31565b60405180910390f35b3480156107a157600080fd5b506107aa61188a565b6040516107b79190613e16565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061344e565b61189e565b005b3480156107f557600080fd5b50610810600480360381019061080b919061310f565b611936565b60405161081d9190613b03565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613138565b611956565b60405161085a9190613b03565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613233565b6119ea565b6040516108979190613b39565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613233565b6119ff565b005b3480156108d557600080fd5b506108f060048036038101906108eb919061310f565b611aa0565b005b3480156108fe57600080fd5b50610907611b98565b6040516109149190613e16565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590613bb6565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac082611de9565b5b9050919050565b610ad0611e53565b73ffffffffffffffffffffffffffffffffffffffff16610aee611376565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613cf6565b60405180910390fd5b610b4d81611e5b565b50565b600660089054906101000a900460ff1681565b606060028054610b72906141d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e906141d3565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b50505050509050919050565b600047905090565b610c07611e53565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c4d5750610c4c85610c47611e53565b611956565b5b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613c96565b60405180910390fd5b610c998585858585611e75565b5050505050565b60075481565b600660079054906101000a900460ff1681565b610cc1611e53565b73ffffffffffffffffffffffffffffffffffffffff16610cdf611376565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90613cf6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d80573d6000803e3d6000fd5b5050565b600660049054906101000a900460ff1681565b6000600754905090565b6000600660009054906101000a900461ffff16905090565b60608151835114610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690613db6565b60405180910390fd5b6000835167ffffffffffffffff811115610e42577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e705781602001602082028036833780820191505090505b50905060005b8451811015610f5f57610f09858281518110610ebb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610efc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161091d565b828281518110610f42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610f5890614236565b9050610e76565b508091505092915050565b600080610f768361186d565b119050919050565b600660059054906101000a900460ff1681565b60068054906101000a900460ff1681565b6005548160ff16610fb39190614036565b341015610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613d56565b60405180910390fd5b60068054906101000a900460ff16611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990613c16565b60405180910390fd5b60008160ff1611611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613c56565b60405180910390fd5b600660009054906101000a900461ffff1661ffff168160ff166110bc600660099054906101000a900460ff1660ff1661186d565b6110c69190613fe0565b1115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613cb6565b60405180910390fd5b600660089054906101000a900460ff1660ff168160ff16111561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613d16565b60405180910390fd5b61118f82600660099054906101000a900460ff1660ff168360ff16604051806020016040528060008152506121d5565b8060ff16600660028282829054906101000a900461ffff166111b19190614090565b92506101000a81548161ffff021916908361ffff1602179055505050565b6111d7611e53565b73ffffffffffffffffffffffffffffffffffffffff166111f5611376565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613cf6565b60405180910390fd5b611255600061236b565b565b61125f611e53565b73ffffffffffffffffffffffffffffffffffffffff1661127d611376565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613cf6565b60405180910390fd5b8060078190555050565b6112e5611e53565b73ffffffffffffffffffffffffffffffffffffffff16611303611376565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613cf6565b60405180910390fd5b80600660056101000a81548160ff02191690831515021790555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113a8611e53565b73ffffffffffffffffffffffffffffffffffffffff166113c6611376565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613cf6565b60405180910390fd5b8060058190555050565b6000600554905090565b600660099054906101000a900460ff1681565b60008061146283600660099054906101000a900460ff1660ff1661091d565b119050919050565b60055481565b61148261147b611e53565b8383612431565b5050565b6000600660029054906101000a900461ffff16905090565b6005548360ff166114af9190614036565b3410156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613d56565b60405180910390fd5b600660059054906101000a900460ff16611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613c16565b60405180910390fd5b60008360ff1611611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613c56565b60405180910390fd5b600660009054906101000a900461ffff1661ffff168360ff166115ba600660099054906101000a900460ff1660ff1661186d565b6115c49190613fe0565b1115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613cb6565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613c36565b60405180910390fd5b600660079054906101000a900460ff1660ff168360ff1611156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190613d36565b60405180910390fd5b6000846040516020016116fd91906139b2565b604051602081830303815290604052805190602001209050611763838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361259e565b6117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613d76565b60405180910390fd5b6117d285600660099054906101000a900460ff1660ff168660ff16604051806020016040528060008152506121d5565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508360ff16600660028282829054906101000a900461ffff1661184c9190614090565b92506101000a81548161ffff021916908361ffff1602179055505050505050565b600060046000838152602001908152602001600020549050919050565b600660009054906101000a900461ffff1681565b6118a6611e53565b73ffffffffffffffffffffffffffffffffffffffff166118c4611376565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613cf6565b60405180910390fd5b806006806101000a81548160ff02191690831515021790555050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b611a07611e53565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a4d5750611a4c85611a47611e53565b611956565b5b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613bf6565b60405180910390fd5b611a9985858585856125b5565b5050505050565b611aa8611e53565b73ffffffffffffffffffffffffffffffffffffffff16611ac6611376565b73ffffffffffffffffffffffffffffffffffffffff1614611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613cf6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613bd6565b60405180910390fd5b611b958161236b565b50565b600660029054906101000a900461ffff1681565b611bba868686868686611de1565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611cb85760005b8351811015611cb657828181518110611c34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110611c79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611c9e9190613fe0565b9250508190555080611caf90614236565b9050611bf2565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db65760005b8351811015611db457828181518110611d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110611d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611d9c91906140c4565b9250508190555080611dad90614236565b9050611cf0565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611e71929190612d93565b5050565b8151835114611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb090613dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090613c76565b60405180910390fd5b6000611f33611e53565b9050611f43818787878787612837565b60005b8451811015612140576000858281518110611f8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611fcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790613cd6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121259190613fe0565b925050819055505050508061213990614236565b9050611f46565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121b7929190613acc565b60405180910390a46121cd81878787878761284d565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613df6565b60405180910390fd5b600061224f611e53565b90506122708160008761226188612a34565b61226a88612a34565b87612837565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122cf9190613fe0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161234d929190613e4c565b60405180910390a461236481600087878787612afa565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249790613d96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125919190613b03565b60405180910390a3505050565b6000826125ab8584612ce1565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90613c76565b60405180910390fd5b600061262f611e53565b905061264f81878761264088612a34565b61264988612a34565b87612837565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90613cd6565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279b9190613fe0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612818929190613e4c565b60405180910390a461282e828888888888612afa565b50505050505050565b612845868686868686611bac565b505050505050565b61286c8473ffffffffffffffffffffffffffffffffffffffff16611dbe565b15612a2c578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128b29594939291906139e8565b602060405180830381600087803b1580156128cc57600080fd5b505af19250505080156128fd57506040513d601f19601f820116820180604052508101906128fa91906134c9565b60015b6129a357612909614330565b806308c379a01415612966575061291e6148a2565b806129295750612968565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d9190613b54565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90613b76565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190613b96565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612a79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612aa75781602001602082028036833780820191505090505b5090508281600081518110612ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612b198473ffffffffffffffffffffffffffffffffffffffff16611dbe565b15612cd9578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612b5f959493929190613a50565b602060405180830381600087803b158015612b7957600080fd5b505af1925050508015612baa57506040513d601f19601f82011682018060405250810190612ba791906134c9565b60015b612c5057612bb6614330565b806308c379a01415612c135750612bcb6148a2565b80612bd65750612c15565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a9190613b54565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4790613b76565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce90613b96565b60405180910390fd5b505b505050505050565b60008082905060005b8451811015612d71576000858281518110612d2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612d5057612d498382612d7c565b9250612d5d565b612d5a8184612d7c565b92505b508080612d6990614236565b915050612cea565b508091505092915050565b600082600052816020526040600020905092915050565b828054612d9f906141d3565b90600052602060002090601f016020900481019282612dc15760008555612e08565b82601f10612dda57805160ff1916838001178555612e08565b82800160010185558215612e08579182015b82811115612e07578251825591602001919060010190612dec565b5b509050612e159190612e19565b5090565b5b80821115612e32576000816000905550600101612e1a565b5090565b6000612e49612e4484613eb5565b613e90565b90508083825260208201905082856020860282011115612e6857600080fd5b60005b85811015612e985781612e7e8882612f8a565b845260208401935060208301925050600181019050612e6b565b5050509392505050565b6000612eb5612eb084613ee1565b613e90565b90508083825260208201905082856020860282011115612ed457600080fd5b60005b85811015612f045781612eea88826130e5565b845260208401935060208301925050600181019050612ed7565b5050509392505050565b6000612f21612f1c84613f0d565b613e90565b905082815260208101848484011115612f3957600080fd5b612f44848285614191565b509392505050565b6000612f5f612f5a84613f3e565b613e90565b905082815260208101848484011115612f7757600080fd5b612f82848285614191565b509392505050565b600081359050612f9981614938565b92915050565b600082601f830112612fb057600080fd5b8135612fc0848260208601612e36565b91505092915050565b60008083601f840112612fdb57600080fd5b8235905067ffffffffffffffff811115612ff457600080fd5b60208301915083602082028301111561300c57600080fd5b9250929050565b600082601f83011261302457600080fd5b8135613034848260208601612ea2565b91505092915050565b60008135905061304c8161494f565b92915050565b60008135905061306181614966565b92915050565b6000813590506130768161497d565b92915050565b60008151905061308b8161497d565b92915050565b600082601f8301126130a257600080fd5b81356130b2848260208601612f0e565b91505092915050565b600082601f8301126130cc57600080fd5b81356130dc848260208601612f4c565b91505092915050565b6000813590506130f481614994565b92915050565b600081359050613109816149ab565b92915050565b60006020828403121561312157600080fd5b600061312f84828501612f8a565b91505092915050565b6000806040838503121561314b57600080fd5b600061315985828601612f8a565b925050602061316a85828601612f8a565b9150509250929050565b600080600080600060a0868803121561318c57600080fd5b600061319a88828901612f8a565b95505060206131ab88828901612f8a565b945050604086013567ffffffffffffffff8111156131c857600080fd5b6131d488828901613013565b935050606086013567ffffffffffffffff8111156131f157600080fd5b6131fd88828901613013565b925050608086013567ffffffffffffffff81111561321a57600080fd5b61322688828901613091565b9150509295509295909350565b600080600080600060a0868803121561324b57600080fd5b600061325988828901612f8a565b955050602061326a88828901612f8a565b945050604061327b888289016130e5565b935050606061328c888289016130e5565b925050608086013567ffffffffffffffff8111156132a957600080fd5b6132b588828901613091565b9150509295509295909350565b600080604083850312156132d557600080fd5b60006132e385828601612f8a565b92505060206132f48582860161303d565b9150509250929050565b6000806040838503121561331157600080fd5b600061331f85828601612f8a565b9250506020613330858286016130e5565b9150509250929050565b6000806040838503121561334d57600080fd5b600061335b85828601612f8a565b925050602061336c858286016130fa565b9150509250929050565b6000806000806060858703121561338c57600080fd5b600061339a87828801612f8a565b94505060206133ab878288016130fa565b935050604085013567ffffffffffffffff8111156133c857600080fd5b6133d487828801612fc9565b925092505092959194509250565b600080604083850312156133f557600080fd5b600083013567ffffffffffffffff81111561340f57600080fd5b61341b85828601612f9f565b925050602083013567ffffffffffffffff81111561343857600080fd5b61344485828601613013565b9150509250929050565b60006020828403121561346057600080fd5b600061346e8482850161303d565b91505092915050565b60006020828403121561348957600080fd5b600061349784828501613052565b91505092915050565b6000602082840312156134b257600080fd5b60006134c084828501613067565b91505092915050565b6000602082840312156134db57600080fd5b60006134e98482850161307c565b91505092915050565b60006020828403121561350457600080fd5b600082013567ffffffffffffffff81111561351e57600080fd5b61352a848285016130bb565b91505092915050565b60006020828403121561354557600080fd5b6000613553848285016130e5565b91505092915050565b60006135688383613985565b60208301905092915050565b61357d816140f8565b82525050565b61359461358f826140f8565b61427f565b82525050565b60006135a582613f7f565b6135af8185613fad565b93506135ba83613f6f565b8060005b838110156135eb5781516135d2888261355c565b97506135dd83613fa0565b9250506001810190506135be565b5085935050505092915050565b6136018161410a565b82525050565b61361081614116565b82525050565b61361f81614120565b82525050565b600061363082613f8a565b61363a8185613fbe565b935061364a8185602086016141a0565b61365381614352565b840191505092915050565b600061366982613f95565b6136738185613fcf565b93506136838185602086016141a0565b61368c81614352565b840191505092915050565b60006136a4603483613fcf565b91506136af8261437d565b604082019050919050565b60006136c7602883613fcf565b91506136d2826143cc565b604082019050919050565b60006136ea602b83613fcf565b91506136f58261441b565b604082019050919050565b600061370d602683613fcf565b91506137188261446a565b604082019050919050565b6000613730602983613fcf565b915061373b826144b9565b604082019050919050565b6000613753601283613fcf565b915061375e82614508565b602082019050919050565b6000613776601b83613fcf565b915061378182614531565b602082019050919050565b6000613799601f83613fcf565b91506137a48261455a565b602082019050919050565b60006137bc602583613fcf565b91506137c782614583565b604082019050919050565b60006137df603283613fcf565b91506137ea826145d2565b604082019050919050565b6000613802602083613fcf565b915061380d82614621565b602082019050919050565b6000613825602a83613fcf565b91506138308261464a565b604082019050919050565b6000613848602083613fcf565b915061385382614699565b602082019050919050565b600061386b601483613fcf565b9150613876826146c2565b602082019050919050565b600061388e601383613fcf565b9150613899826146eb565b602082019050919050565b60006138b1601183613fcf565b91506138bc82614714565b602082019050919050565b60006138d4600d83613fcf565b91506138df8261473d565b602082019050919050565b60006138f7602983613fcf565b915061390282614766565b604082019050919050565b600061391a602983613fcf565b9150613925826147b5565b604082019050919050565b600061393d602883613fcf565b915061394882614804565b604082019050919050565b6000613960602183613fcf565b915061396b82614853565b604082019050919050565b61397f8161414c565b82525050565b61398e8161417a565b82525050565b61399d8161417a565b82525050565b6139ac81614184565b82525050565b60006139be8284613583565b60148201915081905092915050565b60006020820190506139e26000830184613574565b92915050565b600060a0820190506139fd6000830188613574565b613a0a6020830187613574565b8181036040830152613a1c818661359a565b90508181036060830152613a30818561359a565b90508181036080830152613a448184613625565b90509695505050505050565b600060a082019050613a656000830188613574565b613a726020830187613574565b613a7f6040830186613994565b613a8c6060830185613994565b8181036080830152613a9e8184613625565b90509695505050505050565b60006020820190508181036000830152613ac4818461359a565b905092915050565b60006040820190508181036000830152613ae6818561359a565b90508181036020830152613afa818461359a565b90509392505050565b6000602082019050613b1860008301846135f8565b92915050565b6000602082019050613b336000830184613607565b92915050565b6000602082019050613b4e6000830184613616565b92915050565b60006020820190508181036000830152613b6e818461365e565b905092915050565b60006020820190508181036000830152613b8f81613697565b9050919050565b60006020820190508181036000830152613baf816136ba565b9050919050565b60006020820190508181036000830152613bcf816136dd565b9050919050565b60006020820190508181036000830152613bef81613700565b9050919050565b60006020820190508181036000830152613c0f81613723565b9050919050565b60006020820190508181036000830152613c2f81613746565b9050919050565b60006020820190508181036000830152613c4f81613769565b9050919050565b60006020820190508181036000830152613c6f8161378c565b9050919050565b60006020820190508181036000830152613c8f816137af565b9050919050565b60006020820190508181036000830152613caf816137d2565b9050919050565b60006020820190508181036000830152613ccf816137f5565b9050919050565b60006020820190508181036000830152613cef81613818565b9050919050565b60006020820190508181036000830152613d0f8161383b565b9050919050565b60006020820190508181036000830152613d2f8161385e565b9050919050565b60006020820190508181036000830152613d4f81613881565b9050919050565b60006020820190508181036000830152613d6f816138a4565b9050919050565b60006020820190508181036000830152613d8f816138c7565b9050919050565b60006020820190508181036000830152613daf816138ea565b9050919050565b60006020820190508181036000830152613dcf8161390d565b9050919050565b60006020820190508181036000830152613def81613930565b9050919050565b60006020820190508181036000830152613e0f81613953565b9050919050565b6000602082019050613e2b6000830184613976565b92915050565b6000602082019050613e466000830184613994565b92915050565b6000604082019050613e616000830185613994565b613e6e6020830184613994565b9392505050565b6000602082019050613e8a60008301846139a3565b92915050565b6000613e9a613eab565b9050613ea68282614205565b919050565b6000604051905090565b600067ffffffffffffffff821115613ed057613ecf614301565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613efc57613efb614301565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f2857613f27614301565b5b613f3182614352565b9050602081019050919050565b600067ffffffffffffffff821115613f5957613f58614301565b5b613f6282614352565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613feb8261417a565b9150613ff68361417a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402b5761402a6142a3565b5b828201905092915050565b60006140418261417a565b915061404c8361417a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614085576140846142a3565b5b828202905092915050565b600061409b8261414c565b91506140a68361414c565b9250828210156140b9576140b86142a3565b5b828203905092915050565b60006140cf8261417a565b91506140da8361417a565b9250828210156140ed576140ec6142a3565b5b828203905092915050565b60006141038261415a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141be5780820151818401526020810190506141a3565b838111156141cd576000848401525b50505050565b600060028204905060018216806141eb57607f821691505b602082108114156141ff576141fe6142d2565b5b50919050565b61420e82614352565b810181811067ffffffffffffffff8211171561422d5761422c614301565b5b80604052505050565b60006142418261417a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614274576142736142a3565b5b600182019050919050565b600061428a82614291565b9050919050565b600061429c82614363565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561434f5760046000803e61434c600051614370565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b7f416d6f756e74206d75737420626520706f73697469766520696e746567657200600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c792033206d696e747320616c6c6f776564000000000000000000000000600082015250565b7f4f6e6c792031206d696e7420616c6c6f77656400000000000000000000000000600082015250565b7f57726f6e6720616d6f756e742073656e74000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156148b257614935565b6148ba613eab565b60043d036004823e80513d602482011167ffffffffffffffff821117156148e2575050614935565b808201805167ffffffffffffffff8111156149005750505050614935565b80602083010160043d03850181111561491d575050505050614935565b61492c82602001850186614205565b82955050505050505b90565b614941816140f8565b811461494c57600080fd5b50565b6149588161410a565b811461496357600080fd5b50565b61496f81614116565b811461497a57600080fd5b50565b61498681614120565b811461499157600080fd5b50565b61499d8161417a565b81146149a857600080fd5b50565b6149b481614184565b81146149bf57600080fd5b5056fea264697066735822122047248855b7857b5e07747e7f66e1c2b482baa2d329b4bbe1de89d609bc41eca864736f6c63430008040033

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.