ETH Price: $3,254.84 (+3.19%)
Gas: 4 Gwei

Token

James NFT Club ()
 

Overview

Max Total Supply

200

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x2158a4575492b5625a528929ea0048cf3227317f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
JamesNFTClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

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

contract JamesNFTClub is ERC1155Supply, Ownable
{
  uint8 public saleState;
  uint256 public totalMinted;
  uint256 public MAX_SUPPLY = 569;
  uint256 public AIRDROP_AMOUNT = 69;
  bytes32 public root = 0x1ce2e6009842f6535f7fd932f8a2a596843af312357d0c45ad607acff4c86434;
  uint256 public PRESALE_PRICE = 0.1 ether;
  uint256 public PUBSALE_PRICE = 0.169 ether;
  bool public airdropped;
  string public name = "James NFT Club";
  string public contractURIstr = "";
  mapping(address => uint256) public minted;

  constructor() ERC1155("https://ipfs.io/ipfs/QmZ5im37Mkz8k1F6ayM3WN25rcReCakXn8Wwur15rnTeN9/{id}.json") {}

  function contractURI() public view returns (string memory)
  {
      return contractURIstr;
  }

  function setContractURI(string memory newuri) external onlyOwner
  {
      contractURIstr = newuri;
  }

  function setName(string memory _name) public onlyOwner 
  {
      name = _name;
  }

  function getName() public view returns (string memory) 
  {
      return name;
  }

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

  function setRoot(bytes32 _newRoot) external onlyOwner {
    root = _newRoot;
  }

  function startPresale() external onlyOwner {
    require(saleState == 0, "Sale is already active");
    saleState = 1;
  }

  function endPresale() external onlyOwner {
    require(saleState == 1, "Presale is not active");
    saleState = 0;
  }

  function startPublicSale() external onlyOwner {
    require(saleState == 0, "Sale is already active");
    saleState = 2;
  }

  function endPublicSale() external onlyOwner {
    require(saleState == 2, "Presale is not active");
    saleState = 0;
  }

  function giveAway() external onlyOwner {
    require(airdropped == false, "Already airdropped");
    require(totalMinted + AIRDROP_AMOUNT <= MAX_SUPPLY, "Exceeds max amount");
    _mint(owner(), 1, AIRDROP_AMOUNT, "");
    airdropped = true;
    totalMinted += AIRDROP_AMOUNT;
  }

  function mint(bytes32[] memory _proof, uint256 amount) external payable
  {
    require(saleState > 0, "Sale is not active");
    require(amount <= 2, "Exceeds max per transaction");
    require(totalMinted + amount <= MAX_SUPPLY, "Exceeds max amount");
    if (saleState == 1) {
      require(MerkleProof.verify(_proof, root, keccak256(abi.encodePacked(msg.sender))) == true, "Not on whitelist");
      require(minted[msg.sender] + amount <= 2, "Exceeds max amount in presale");
      require(msg.value >= PRESALE_PRICE * amount, "Insufficient Fund");
    } else {
      require(msg.value >= PUBSALE_PRICE * amount, "Insufficient Fund");
    }
    totalMinted += amount;
    minted[msg.sender] += amount;
    _mint(msg.sender, 1, amount, "");
  }

  function withdraw() external onlyOwner
  {
    require(msg.sender == owner(), "Invalid sender");
    payable(msg.sender).transfer(address(this).balance);
  }
}

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

File 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 (last updated v4.6.0) (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) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 5 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

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

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 12 : 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 8 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 9 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 10 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 11 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 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"
      ]
    }
  }
}

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":[],"name":"AIRDROP_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBSALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIstr","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"saleState","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261023960065560456007557f1ce2e6009842f6535f7fd932f8a2a596843af312357d0c45ad607acff4c8643460001b60085567016345785d8a0000600955670258689ac70a8000600a556040518060400160405280600e81526020017f4a616d6573204e465420436c7562000000000000000000000000000000000000815250600c90805190602001906200009b9291906200020e565b5060405180602001604052806000815250600d9080519060200190620000c39291906200020e565b50348015620000d157600080fd5b506040518060800160405280604d815260200162004fa6604d9139620000fd816200012460201b60201c565b506200011e620001126200014060201b60201c565b6200014860201b60201c565b62000323565b80600290805190602001906200013c9291906200020e565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021c90620002ed565b90600052602060002090601f0160209004810192826200024057600085556200028c565b82601f106200025b57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028b5782518255916020019190600101906200026e565b5b5090506200029b91906200029f565b5090565b5b80821115620002ba576000816000905550600101620002a0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030657607f821691505b602082108114156200031d576200031c620002be565b5b50919050565b614c7380620003336000396000f3fe6080604052600436106102195760003560e01c8063603f4d5211610123578063bf4a0475116100ab578063e8a3d4851161006f578063e8a3d48514610755578063e985e9c514610780578063ebf0c717146107bd578063f242432a146107e8578063f2fde38b1461081157610219565b8063bf4a0475146106aa578063c47f0027146106d5578063c7d17fd1146106fe578063d0c433d314610715578063dab5f3401461072c57610219565b8063938e3d7b116100f2578063938e3d7b146105d9578063a22cb46514610602578063a2309ff81461062b578063a43be57b14610656578063bd85b0391461066d57610219565b8063603f4d521461054157806362dc6e211461056c578063715018a6146105975780638da5cb5b146105ae57610219565b806319cc02aa116101a657806332cb6b0c1161017557806332cb6b0c146104695780633ccfd60b1461049457806345de0d9b146104ab5780634e1273f4146104c75780634f558e791461050457610219565b806319cc02aa146103ad5780631e7269c5146103d85780632b5b6872146104155780632eb2c2d61461044057610219565b80630612d364116101ed5780630612d364146102d857806306fdde03146103035780630c1c972a1461032e5780630e89341c1461034557806317d7de7c1461038257610219565b8062fdd58e1461021e57806301ffc9a71461025b57806302fe53051461029857806304c98b2b146102c1575b600080fd5b34801561022a57600080fd5b506102456004803603810190610240919061303b565b61083a565b604051610252919061308a565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130fd565b610903565b60405161028f9190613145565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906132a6565b6109e5565b005b3480156102cd57600080fd5b506102d6610a6d565b005b3480156102e457600080fd5b506102ed610b5c565b6040516102fa9190613377565b60405180910390f35b34801561030f57600080fd5b50610318610bea565b6040516103259190613377565b60405180910390f35b34801561033a57600080fd5b50610343610c78565b005b34801561035157600080fd5b5061036c60048036038101906103679190613399565b610d67565b6040516103799190613377565b60405180910390f35b34801561038e57600080fd5b50610397610dfb565b6040516103a49190613377565b60405180910390f35b3480156103b957600080fd5b506103c2610e8d565b6040516103cf9190613145565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906133c6565b610ea0565b60405161040c919061308a565b60405180910390f35b34801561042157600080fd5b5061042a610eb8565b604051610437919061308a565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061355c565b610ebe565b005b34801561047557600080fd5b5061047e610f5f565b60405161048b919061308a565b60405180910390f35b3480156104a057600080fd5b506104a9610f65565b005b6104c560048036038101906104c09190613724565b61109f565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613843565b6113e1565b6040516104fb9190613979565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613399565b6114fa565b6040516105389190613145565b60405180910390f35b34801561054d57600080fd5b5061055661150e565b60405161056391906139b7565b60405180910390f35b34801561057857600080fd5b50610581611521565b60405161058e919061308a565b60405180910390f35b3480156105a357600080fd5b506105ac611527565b005b3480156105ba57600080fd5b506105c36115af565b6040516105d091906139e1565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906132a6565b6115d9565b005b34801561060e57600080fd5b5061062960048036038101906106249190613a28565b61166f565b005b34801561063757600080fd5b50610640611685565b60405161064d919061308a565b60405180910390f35b34801561066257600080fd5b5061066b61168b565b005b34801561067957600080fd5b50610694600480360381019061068f9190613399565b61177a565b6040516106a1919061308a565b60405180910390f35b3480156106b657600080fd5b506106bf611797565b6040516106cc919061308a565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906132a6565b61179d565b005b34801561070a57600080fd5b50610713611833565b005b34801561072157600080fd5b5061072a611922565b005b34801561073857600080fd5b50610753600480360381019061074e9190613a68565b611aa5565b005b34801561076157600080fd5b5061076a611b2b565b6040516107779190613377565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613a95565b611bbd565b6040516107b49190613145565b60405180910390f35b3480156107c957600080fd5b506107d2611c51565b6040516107df9190613ae4565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613aff565b611c57565b005b34801561081d57600080fd5b50610838600480360381019061083391906133c6565b611cf8565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290613c08565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ce57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109de57506109dd82611df0565b5b9050919050565b6109ed611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610a0b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890613c74565b60405180910390fd5b610a6a81611e62565b50565b610a75611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610a936115af565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090613c74565b60405180910390fd5b6000600460149054906101000a900460ff1660ff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590613ce0565b60405180910390fd5b6001600460146101000a81548160ff021916908360ff160217905550565b600d8054610b6990613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9590613d2f565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b505050505081565b600c8054610bf790613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390613d2f565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b505050505081565b610c80611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610c9e6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90613c74565b60405180910390fd5b6000600460149054906101000a900460ff1660ff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613ce0565b60405180910390fd5b6002600460146101000a81548160ff021916908360ff160217905550565b606060028054610d7690613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613d2f565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b50505050509050919050565b6060600c8054610e0a90613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3690613d2f565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600e6020528060005260406000206000915090505481565b60075481565b610ec6611e5a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f0c5750610f0b85610f06611e5a565b611bbd565b5b610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613dd3565b60405180910390fd5b610f588585858585611e7c565b5050505050565b60065481565b610f6d611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610f8b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890613c74565b60405180910390fd5b610fe96115af565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613e3f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561109c573d6000803e3d6000fd5b50565b6000600460149054906101000a900460ff1660ff16116110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613eab565b60405180910390fd5b6002811115611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613f17565b60405180910390fd5b600654816005546111499190613f66565b111561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614008565b60405180910390fd5b6001600460149054906101000a900460ff1660ff16141561130157600115156111dc83600854336040516020016111c19190614070565b6040516020818303038152906040528051906020012061219e565b15151461121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906140d7565b60405180910390fd5b600281600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126b9190613f66565b11156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614143565b60405180910390fd5b806009546112ba9190614163565b3410156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390614209565b60405180910390fd5b611352565b80600a5461130f9190614163565b341015611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890614209565b60405180910390fd5b5b80600560008282546113649190613f66565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ba9190613f66565b925050819055506113dd33600183604051806020016040528060008152506121b5565b5050565b60608151835114611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061429b565b60405180910390fd5b6000835167ffffffffffffffff8111156114445761144361317b565b5b6040519080825280602002602001820160405280156114725781602001602082028036833780820191505090505b50905060005b84518110156114ef576114bf858281518110611497576114966142bb565b5b60200260200101518583815181106114b2576114b16142bb565b5b602002602001015161083a565b8282815181106114d2576114d16142bb565b5b602002602001018181525050806114e8906142ea565b9050611478565b508091505092915050565b6000806115068361177a565b119050919050565b600460149054906101000a900460ff1681565b60095481565b61152f611e5a565b73ffffffffffffffffffffffffffffffffffffffff1661154d6115af565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90613c74565b60405180910390fd5b6115ad6000612366565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e1611e5a565b73ffffffffffffffffffffffffffffffffffffffff166115ff6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90613c74565b60405180910390fd5b80600d908051906020019061166b929190612ef0565b5050565b61168161167a611e5a565b838361242c565b5050565b60055481565b611693611e5a565b73ffffffffffffffffffffffffffffffffffffffff166116b16115af565b73ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613c74565b60405180910390fd5b6001600460149054906101000a900460ff1660ff161461175c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117539061437f565b60405180910390fd5b6000600460146101000a81548160ff021916908360ff160217905550565b600060036000838152602001908152602001600020549050919050565b600a5481565b6117a5611e5a565b73ffffffffffffffffffffffffffffffffffffffff166117c36115af565b73ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613c74565b60405180910390fd5b80600c908051906020019061182f929190612ef0565b5050565b61183b611e5a565b73ffffffffffffffffffffffffffffffffffffffff166118596115af565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690613c74565b60405180910390fd5b6002600460149054906101000a900460ff1660ff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb9061437f565b60405180910390fd5b6000600460146101000a81548160ff021916908360ff160217905550565b61192a611e5a565b73ffffffffffffffffffffffffffffffffffffffff166119486115af565b73ffffffffffffffffffffffffffffffffffffffff161461199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590613c74565b60405180910390fd5b60001515600b60009054906101000a900460ff161515146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906143eb565b60405180910390fd5b600654600754600554611a079190613f66565b1115611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90614008565b60405180910390fd5b611a6d611a536115af565b6001600754604051806020016040528060008152506121b5565b6001600b60006101000a81548160ff02191690831515021790555060075460056000828254611a9c9190613f66565b92505081905550565b611aad611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611acb6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1890613c74565b60405180910390fd5b8060088190555050565b6060600d8054611b3a90613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6690613d2f565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60085481565b611c5f611e5a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ca55750611ca485611c9f611e5a565b611bbd565b5b611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb9061447d565b60405180910390fd5b611cf18585858585612599565b5050505050565b611d00611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611d1e6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613c74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb9061450f565b60405180910390fd5b611ded81612366565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611e78929190612ef0565b5050565b8151835114611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906145a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790614633565b60405180910390fd5b6000611f3a611e5a565b9050611f4a818787878787612835565b60005b84518110156120fb576000858281518110611f6b57611f6a6142bb565b5b602002602001015190506000858381518110611f8a57611f896142bb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561202b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612022906146c5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e09190613f66565b92505081905550505050806120f4906142ea565b9050611f4d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121729291906146e5565b60405180910390a4612188818787878787612a07565b612196818787878787612a0f565b505050505050565b6000826121ab8584612be7565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c9061478e565b60405180910390fd5b600061222f611e5a565b9050600061223c85612c5c565b9050600061224985612c5c565b905061225a83600089858589612835565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b99190613f66565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516123379291906147ae565b60405180910390a461234e83600089858589612a07565b61235d83600089898989612cd6565b50505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561249b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249290614849565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161258c9190613145565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614633565b60405180910390fd5b6000612613611e5a565b9050600061262085612c5c565b9050600061262d85612c5c565b905061263d838989858589612835565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb906146c5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127899190613f66565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516128069291906147ae565b60405180910390a461281c848a8a86868a612a07565b61282a848a8a8a8a8a612cd6565b505050505050505050565b612843868686868686612eae565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128f55760005b83518110156128f357828181518110612897576128966142bb565b5b6020026020010151600360008684815181106128b6576128b56142bb565b5b6020026020010151815260200190815260200160002060008282546128db9190613f66565b92505081905550806128ec906142ea565b905061287b565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ff5760005b83518110156129fd57600084828151811061294b5761294a6142bb565b5b60200260200101519050600084838151811061296a576129696142bb565b5b60200260200101519050600060036000848152602001908152602001600020549050818110156129cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c6906148db565b60405180910390fd5b8181036003600085815260200190815260200160002081905550505050806129f6906142ea565b905061292d565b505b505050505050565b505050505050565b612a2e8473ffffffffffffffffffffffffffffffffffffffff16612eb6565b15612bdf578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612a74959493929190614950565b6020604051808303816000875af1925050508015612ab057506040513d601f19601f82011682018060405250810190612aad91906149cd565b60015b612b5657612abc614a07565b806308c379a01415612b195750612ad1614a29565b80612adc5750612b1b565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b109190613377565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d90614b31565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd490614bc3565b60405180910390fd5b505b505050505050565b60008082905060005b8451811015612c51576000858281518110612c0e57612c0d6142bb565b5b60200260200101519050808311612c3057612c298382612ed9565b9250612c3d565b612c3a8184612ed9565b92505b508080612c49906142ea565b915050612bf0565b508091505092915050565b60606000600167ffffffffffffffff811115612c7b57612c7a61317b565b5b604051908082528060200260200182016040528015612ca95781602001602082028036833780820191505090505b5090508281600081518110612cc157612cc06142bb565b5b60200260200101818152505080915050919050565b612cf58473ffffffffffffffffffffffffffffffffffffffff16612eb6565b15612ea6578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d3b959493929190614be3565b6020604051808303816000875af1925050508015612d7757506040513d601f19601f82011682018060405250810190612d7491906149cd565b60015b612e1d57612d83614a07565b806308c379a01415612de05750612d98614a29565b80612da35750612de2565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd79190613377565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1490614b31565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9b90614bc3565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612efc90613d2f565b90600052602060002090601f016020900481019282612f1e5760008555612f65565b82601f10612f3757805160ff1916838001178555612f65565b82800160010185558215612f65579182015b82811115612f64578251825591602001919060010190612f49565b5b509050612f729190612f76565b5090565b5b80821115612f8f576000816000905550600101612f77565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fd282612fa7565b9050919050565b612fe281612fc7565b8114612fed57600080fd5b50565b600081359050612fff81612fd9565b92915050565b6000819050919050565b61301881613005565b811461302357600080fd5b50565b6000813590506130358161300f565b92915050565b6000806040838503121561305257613051612f9d565b5b600061306085828601612ff0565b925050602061307185828601613026565b9150509250929050565b61308481613005565b82525050565b600060208201905061309f600083018461307b565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130da816130a5565b81146130e557600080fd5b50565b6000813590506130f7816130d1565b92915050565b60006020828403121561311357613112612f9d565b5b6000613121848285016130e8565b91505092915050565b60008115159050919050565b61313f8161312a565b82525050565b600060208201905061315a6000830184613136565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131b38261316a565b810181811067ffffffffffffffff821117156131d2576131d161317b565b5b80604052505050565b60006131e5612f93565b90506131f182826131aa565b919050565b600067ffffffffffffffff8211156132115761321061317b565b5b61321a8261316a565b9050602081019050919050565b82818337600083830152505050565b6000613249613244846131f6565b6131db565b90508281526020810184848401111561326557613264613165565b5b613270848285613227565b509392505050565b600082601f83011261328d5761328c613160565b5b813561329d848260208601613236565b91505092915050565b6000602082840312156132bc576132bb612f9d565b5b600082013567ffffffffffffffff8111156132da576132d9612fa2565b5b6132e684828501613278565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332957808201518184015260208101905061330e565b83811115613338576000848401525b50505050565b6000613349826132ef565b61335381856132fa565b935061336381856020860161330b565b61336c8161316a565b840191505092915050565b60006020820190508181036000830152613391818461333e565b905092915050565b6000602082840312156133af576133ae612f9d565b5b60006133bd84828501613026565b91505092915050565b6000602082840312156133dc576133db612f9d565b5b60006133ea84828501612ff0565b91505092915050565b600067ffffffffffffffff82111561340e5761340d61317b565b5b602082029050602081019050919050565b600080fd5b6000613437613432846133f3565b6131db565b9050808382526020820190506020840283018581111561345a5761345961341f565b5b835b81811015613483578061346f8882613026565b84526020840193505060208101905061345c565b5050509392505050565b600082601f8301126134a2576134a1613160565b5b81356134b2848260208601613424565b91505092915050565b600067ffffffffffffffff8211156134d6576134d561317b565b5b6134df8261316a565b9050602081019050919050565b60006134ff6134fa846134bb565b6131db565b90508281526020810184848401111561351b5761351a613165565b5b613526848285613227565b509392505050565b600082601f83011261354357613542613160565b5b81356135538482602086016134ec565b91505092915050565b600080600080600060a0868803121561357857613577612f9d565b5b600061358688828901612ff0565b955050602061359788828901612ff0565b945050604086013567ffffffffffffffff8111156135b8576135b7612fa2565b5b6135c48882890161348d565b935050606086013567ffffffffffffffff8111156135e5576135e4612fa2565b5b6135f18882890161348d565b925050608086013567ffffffffffffffff81111561361257613611612fa2565b5b61361e8882890161352e565b9150509295509295909350565b600067ffffffffffffffff8211156136465761364561317b565b5b602082029050602081019050919050565b6000819050919050565b61366a81613657565b811461367557600080fd5b50565b60008135905061368781613661565b92915050565b60006136a061369b8461362b565b6131db565b905080838252602082019050602084028301858111156136c3576136c261341f565b5b835b818110156136ec57806136d88882613678565b8452602084019350506020810190506136c5565b5050509392505050565b600082601f83011261370b5761370a613160565b5b813561371b84826020860161368d565b91505092915050565b6000806040838503121561373b5761373a612f9d565b5b600083013567ffffffffffffffff81111561375957613758612fa2565b5b613765858286016136f6565b925050602061377685828601613026565b9150509250929050565b600067ffffffffffffffff82111561379b5761379a61317b565b5b602082029050602081019050919050565b60006137bf6137ba84613780565b6131db565b905080838252602082019050602084028301858111156137e2576137e161341f565b5b835b8181101561380b57806137f78882612ff0565b8452602084019350506020810190506137e4565b5050509392505050565b600082601f83011261382a57613829613160565b5b813561383a8482602086016137ac565b91505092915050565b6000806040838503121561385a57613859612f9d565b5b600083013567ffffffffffffffff81111561387857613877612fa2565b5b61388485828601613815565b925050602083013567ffffffffffffffff8111156138a5576138a4612fa2565b5b6138b18582860161348d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138f081613005565b82525050565b600061390283836138e7565b60208301905092915050565b6000602082019050919050565b6000613926826138bb565b61393081856138c6565b935061393b836138d7565b8060005b8381101561396c57815161395388826138f6565b975061395e8361390e565b92505060018101905061393f565b5085935050505092915050565b60006020820190508181036000830152613993818461391b565b905092915050565b600060ff82169050919050565b6139b18161399b565b82525050565b60006020820190506139cc60008301846139a8565b92915050565b6139db81612fc7565b82525050565b60006020820190506139f660008301846139d2565b92915050565b613a058161312a565b8114613a1057600080fd5b50565b600081359050613a22816139fc565b92915050565b60008060408385031215613a3f57613a3e612f9d565b5b6000613a4d85828601612ff0565b9250506020613a5e85828601613a13565b9150509250929050565b600060208284031215613a7e57613a7d612f9d565b5b6000613a8c84828501613678565b91505092915050565b60008060408385031215613aac57613aab612f9d565b5b6000613aba85828601612ff0565b9250506020613acb85828601612ff0565b9150509250929050565b613ade81613657565b82525050565b6000602082019050613af96000830184613ad5565b92915050565b600080600080600060a08688031215613b1b57613b1a612f9d565b5b6000613b2988828901612ff0565b9550506020613b3a88828901612ff0565b9450506040613b4b88828901613026565b9350506060613b5c88828901613026565b925050608086013567ffffffffffffffff811115613b7d57613b7c612fa2565b5b613b898882890161352e565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613bf2602b836132fa565b9150613bfd82613b96565b604082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c5e6020836132fa565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b7f53616c6520697320616c72656164792061637469766500000000000000000000600082015250565b6000613cca6016836132fa565b9150613cd582613c94565b602082019050919050565b60006020820190508181036000830152613cf981613cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4757607f821691505b60208210811415613d5b57613d5a613d00565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613dbd6032836132fa565b9150613dc882613d61565b604082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b6000613e29600e836132fa565b9150613e3482613df3565b602082019050919050565b60006020820190508181036000830152613e5881613e1c565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613e956012836132fa565b9150613ea082613e5f565b602082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b6000613f01601b836132fa565b9150613f0c82613ecb565b602082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f7182613005565b9150613f7c83613005565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb157613fb0613f37565b5b828201905092915050565b7f45786365656473206d617820616d6f756e740000000000000000000000000000600082015250565b6000613ff26012836132fa565b9150613ffd82613fbc565b602082019050919050565b6000602082019050818103600083015261402181613fe5565b9050919050565b60008160601b9050919050565b600061404082614028565b9050919050565b600061405282614035565b9050919050565b61406a61406582612fc7565b614047565b82525050565b600061407c8284614059565b60148201915081905092915050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b60006140c16010836132fa565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f45786365656473206d617820616d6f756e7420696e2070726573616c65000000600082015250565b600061412d601d836132fa565b9150614138826140f7565b602082019050919050565b6000602082019050818103600083015261415c81614120565b9050919050565b600061416e82613005565b915061417983613005565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141b2576141b1613f37565b5b828202905092915050565b7f496e73756666696369656e742046756e64000000000000000000000000000000600082015250565b60006141f36011836132fa565b91506141fe826141bd565b602082019050919050565b60006020820190508181036000830152614222816141e6565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006142856029836132fa565b915061429082614229565b604082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006142f582613005565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561432857614327613f37565b5b600182019050919050565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b60006143696015836132fa565b915061437482614333565b602082019050919050565b600060208201905081810360008301526143988161435c565b9050919050565b7f416c72656164792061697264726f707065640000000000000000000000000000600082015250565b60006143d56012836132fa565b91506143e08261439f565b602082019050919050565b60006020820190508181036000830152614404816143c8565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006144676029836132fa565b91506144728261440b565b604082019050919050565b600060208201905081810360008301526144968161445a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f96026836132fa565b91506145048261449d565b604082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061458b6028836132fa565b91506145968261452f565b604082019050919050565b600060208201905081810360008301526145ba8161457e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061461d6025836132fa565b9150614628826145c1565b604082019050919050565b6000602082019050818103600083015261464c81614610565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006146af602a836132fa565b91506146ba82614653565b604082019050919050565b600060208201905081810360008301526146de816146a2565b9050919050565b600060408201905081810360008301526146ff818561391b565b90508181036020830152614713818461391b565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006147786021836132fa565b91506147838261471c565b604082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b60006040820190506147c3600083018561307b565b6147d0602083018461307b565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006148336029836132fa565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006148c56028836132fa565b91506148d082614869565b604082019050919050565b600060208201905081810360008301526148f4816148b8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614922826148fb565b61492c8185614906565b935061493c81856020860161330b565b6149458161316a565b840191505092915050565b600060a08201905061496560008301886139d2565b61497260208301876139d2565b8181036040830152614984818661391b565b90508181036060830152614998818561391b565b905081810360808301526149ac8184614917565b90509695505050505050565b6000815190506149c7816130d1565b92915050565b6000602082840312156149e3576149e2612f9d565b5b60006149f1848285016149b8565b91505092915050565b60008160e01c9050919050565b600060033d1115614a265760046000803e614a236000516149fa565b90505b90565b600060443d1015614a3957614abc565b614a41612f93565b60043d036004823e80513d602482011167ffffffffffffffff82111715614a69575050614abc565b808201805167ffffffffffffffff811115614a875750505050614abc565b80602083010160043d038501811115614aa4575050505050614abc565b614ab3826020018501866131aa565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614b1b6034836132fa565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614bad6028836132fa565b9150614bb882614b51565b604082019050919050565b60006020820190508181036000830152614bdc81614ba0565b9050919050565b600060a082019050614bf860008301886139d2565b614c0560208301876139d2565b614c12604083018661307b565b614c1f606083018561307b565b8181036080830152614c318184614917565b9050969550505050505056fea2646970667358221220b121e107272f277ec5897c6afd37a14e0a9eb3b501947116c76246d49a135b5764736f6c634300080b003368747470733a2f2f697066732e696f2f697066732f516d5a35696d33374d6b7a386b31463661794d33574e32357263526543616b586e38577775723135726e54654e392f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106102195760003560e01c8063603f4d5211610123578063bf4a0475116100ab578063e8a3d4851161006f578063e8a3d48514610755578063e985e9c514610780578063ebf0c717146107bd578063f242432a146107e8578063f2fde38b1461081157610219565b8063bf4a0475146106aa578063c47f0027146106d5578063c7d17fd1146106fe578063d0c433d314610715578063dab5f3401461072c57610219565b8063938e3d7b116100f2578063938e3d7b146105d9578063a22cb46514610602578063a2309ff81461062b578063a43be57b14610656578063bd85b0391461066d57610219565b8063603f4d521461054157806362dc6e211461056c578063715018a6146105975780638da5cb5b146105ae57610219565b806319cc02aa116101a657806332cb6b0c1161017557806332cb6b0c146104695780633ccfd60b1461049457806345de0d9b146104ab5780634e1273f4146104c75780634f558e791461050457610219565b806319cc02aa146103ad5780631e7269c5146103d85780632b5b6872146104155780632eb2c2d61461044057610219565b80630612d364116101ed5780630612d364146102d857806306fdde03146103035780630c1c972a1461032e5780630e89341c1461034557806317d7de7c1461038257610219565b8062fdd58e1461021e57806301ffc9a71461025b57806302fe53051461029857806304c98b2b146102c1575b600080fd5b34801561022a57600080fd5b506102456004803603810190610240919061303b565b61083a565b604051610252919061308a565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130fd565b610903565b60405161028f9190613145565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906132a6565b6109e5565b005b3480156102cd57600080fd5b506102d6610a6d565b005b3480156102e457600080fd5b506102ed610b5c565b6040516102fa9190613377565b60405180910390f35b34801561030f57600080fd5b50610318610bea565b6040516103259190613377565b60405180910390f35b34801561033a57600080fd5b50610343610c78565b005b34801561035157600080fd5b5061036c60048036038101906103679190613399565b610d67565b6040516103799190613377565b60405180910390f35b34801561038e57600080fd5b50610397610dfb565b6040516103a49190613377565b60405180910390f35b3480156103b957600080fd5b506103c2610e8d565b6040516103cf9190613145565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906133c6565b610ea0565b60405161040c919061308a565b60405180910390f35b34801561042157600080fd5b5061042a610eb8565b604051610437919061308a565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061355c565b610ebe565b005b34801561047557600080fd5b5061047e610f5f565b60405161048b919061308a565b60405180910390f35b3480156104a057600080fd5b506104a9610f65565b005b6104c560048036038101906104c09190613724565b61109f565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613843565b6113e1565b6040516104fb9190613979565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613399565b6114fa565b6040516105389190613145565b60405180910390f35b34801561054d57600080fd5b5061055661150e565b60405161056391906139b7565b60405180910390f35b34801561057857600080fd5b50610581611521565b60405161058e919061308a565b60405180910390f35b3480156105a357600080fd5b506105ac611527565b005b3480156105ba57600080fd5b506105c36115af565b6040516105d091906139e1565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906132a6565b6115d9565b005b34801561060e57600080fd5b5061062960048036038101906106249190613a28565b61166f565b005b34801561063757600080fd5b50610640611685565b60405161064d919061308a565b60405180910390f35b34801561066257600080fd5b5061066b61168b565b005b34801561067957600080fd5b50610694600480360381019061068f9190613399565b61177a565b6040516106a1919061308a565b60405180910390f35b3480156106b657600080fd5b506106bf611797565b6040516106cc919061308a565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906132a6565b61179d565b005b34801561070a57600080fd5b50610713611833565b005b34801561072157600080fd5b5061072a611922565b005b34801561073857600080fd5b50610753600480360381019061074e9190613a68565b611aa5565b005b34801561076157600080fd5b5061076a611b2b565b6040516107779190613377565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613a95565b611bbd565b6040516107b49190613145565b60405180910390f35b3480156107c957600080fd5b506107d2611c51565b6040516107df9190613ae4565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613aff565b611c57565b005b34801561081d57600080fd5b50610838600480360381019061083391906133c6565b611cf8565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290613c08565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ce57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109de57506109dd82611df0565b5b9050919050565b6109ed611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610a0b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890613c74565b60405180910390fd5b610a6a81611e62565b50565b610a75611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610a936115af565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090613c74565b60405180910390fd5b6000600460149054906101000a900460ff1660ff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590613ce0565b60405180910390fd5b6001600460146101000a81548160ff021916908360ff160217905550565b600d8054610b6990613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9590613d2f565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b505050505081565b600c8054610bf790613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390613d2f565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b505050505081565b610c80611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610c9e6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90613c74565b60405180910390fd5b6000600460149054906101000a900460ff1660ff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613ce0565b60405180910390fd5b6002600460146101000a81548160ff021916908360ff160217905550565b606060028054610d7690613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613d2f565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b50505050509050919050565b6060600c8054610e0a90613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3690613d2f565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600e6020528060005260406000206000915090505481565b60075481565b610ec6611e5a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f0c5750610f0b85610f06611e5a565b611bbd565b5b610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613dd3565b60405180910390fd5b610f588585858585611e7c565b5050505050565b60065481565b610f6d611e5a565b73ffffffffffffffffffffffffffffffffffffffff16610f8b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890613c74565b60405180910390fd5b610fe96115af565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613e3f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561109c573d6000803e3d6000fd5b50565b6000600460149054906101000a900460ff1660ff16116110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613eab565b60405180910390fd5b6002811115611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613f17565b60405180910390fd5b600654816005546111499190613f66565b111561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614008565b60405180910390fd5b6001600460149054906101000a900460ff1660ff16141561130157600115156111dc83600854336040516020016111c19190614070565b6040516020818303038152906040528051906020012061219e565b15151461121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906140d7565b60405180910390fd5b600281600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126b9190613f66565b11156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614143565b60405180910390fd5b806009546112ba9190614163565b3410156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390614209565b60405180910390fd5b611352565b80600a5461130f9190614163565b341015611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890614209565b60405180910390fd5b5b80600560008282546113649190613f66565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ba9190613f66565b925050819055506113dd33600183604051806020016040528060008152506121b5565b5050565b60608151835114611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061429b565b60405180910390fd5b6000835167ffffffffffffffff8111156114445761144361317b565b5b6040519080825280602002602001820160405280156114725781602001602082028036833780820191505090505b50905060005b84518110156114ef576114bf858281518110611497576114966142bb565b5b60200260200101518583815181106114b2576114b16142bb565b5b602002602001015161083a565b8282815181106114d2576114d16142bb565b5b602002602001018181525050806114e8906142ea565b9050611478565b508091505092915050565b6000806115068361177a565b119050919050565b600460149054906101000a900460ff1681565b60095481565b61152f611e5a565b73ffffffffffffffffffffffffffffffffffffffff1661154d6115af565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90613c74565b60405180910390fd5b6115ad6000612366565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e1611e5a565b73ffffffffffffffffffffffffffffffffffffffff166115ff6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90613c74565b60405180910390fd5b80600d908051906020019061166b929190612ef0565b5050565b61168161167a611e5a565b838361242c565b5050565b60055481565b611693611e5a565b73ffffffffffffffffffffffffffffffffffffffff166116b16115af565b73ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613c74565b60405180910390fd5b6001600460149054906101000a900460ff1660ff161461175c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117539061437f565b60405180910390fd5b6000600460146101000a81548160ff021916908360ff160217905550565b600060036000838152602001908152602001600020549050919050565b600a5481565b6117a5611e5a565b73ffffffffffffffffffffffffffffffffffffffff166117c36115af565b73ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613c74565b60405180910390fd5b80600c908051906020019061182f929190612ef0565b5050565b61183b611e5a565b73ffffffffffffffffffffffffffffffffffffffff166118596115af565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690613c74565b60405180910390fd5b6002600460149054906101000a900460ff1660ff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb9061437f565b60405180910390fd5b6000600460146101000a81548160ff021916908360ff160217905550565b61192a611e5a565b73ffffffffffffffffffffffffffffffffffffffff166119486115af565b73ffffffffffffffffffffffffffffffffffffffff161461199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590613c74565b60405180910390fd5b60001515600b60009054906101000a900460ff161515146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906143eb565b60405180910390fd5b600654600754600554611a079190613f66565b1115611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90614008565b60405180910390fd5b611a6d611a536115af565b6001600754604051806020016040528060008152506121b5565b6001600b60006101000a81548160ff02191690831515021790555060075460056000828254611a9c9190613f66565b92505081905550565b611aad611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611acb6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1890613c74565b60405180910390fd5b8060088190555050565b6060600d8054611b3a90613d2f565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6690613d2f565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60085481565b611c5f611e5a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ca55750611ca485611c9f611e5a565b611bbd565b5b611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb9061447d565b60405180910390fd5b611cf18585858585612599565b5050505050565b611d00611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611d1e6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613c74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb9061450f565b60405180910390fd5b611ded81612366565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611e78929190612ef0565b5050565b8151835114611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906145a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790614633565b60405180910390fd5b6000611f3a611e5a565b9050611f4a818787878787612835565b60005b84518110156120fb576000858281518110611f6b57611f6a6142bb565b5b602002602001015190506000858381518110611f8a57611f896142bb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561202b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612022906146c5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e09190613f66565b92505081905550505050806120f4906142ea565b9050611f4d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121729291906146e5565b60405180910390a4612188818787878787612a07565b612196818787878787612a0f565b505050505050565b6000826121ab8584612be7565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c9061478e565b60405180910390fd5b600061222f611e5a565b9050600061223c85612c5c565b9050600061224985612c5c565b905061225a83600089858589612835565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b99190613f66565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516123379291906147ae565b60405180910390a461234e83600089858589612a07565b61235d83600089898989612cd6565b50505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561249b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249290614849565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161258c9190613145565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614633565b60405180910390fd5b6000612613611e5a565b9050600061262085612c5c565b9050600061262d85612c5c565b905061263d838989858589612835565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb906146c5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127899190613f66565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516128069291906147ae565b60405180910390a461281c848a8a86868a612a07565b61282a848a8a8a8a8a612cd6565b505050505050505050565b612843868686868686612eae565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128f55760005b83518110156128f357828181518110612897576128966142bb565b5b6020026020010151600360008684815181106128b6576128b56142bb565b5b6020026020010151815260200190815260200160002060008282546128db9190613f66565b92505081905550806128ec906142ea565b905061287b565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ff5760005b83518110156129fd57600084828151811061294b5761294a6142bb565b5b60200260200101519050600084838151811061296a576129696142bb565b5b60200260200101519050600060036000848152602001908152602001600020549050818110156129cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c6906148db565b60405180910390fd5b8181036003600085815260200190815260200160002081905550505050806129f6906142ea565b905061292d565b505b505050505050565b505050505050565b612a2e8473ffffffffffffffffffffffffffffffffffffffff16612eb6565b15612bdf578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612a74959493929190614950565b6020604051808303816000875af1925050508015612ab057506040513d601f19601f82011682018060405250810190612aad91906149cd565b60015b612b5657612abc614a07565b806308c379a01415612b195750612ad1614a29565b80612adc5750612b1b565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b109190613377565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d90614b31565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd490614bc3565b60405180910390fd5b505b505050505050565b60008082905060005b8451811015612c51576000858281518110612c0e57612c0d6142bb565b5b60200260200101519050808311612c3057612c298382612ed9565b9250612c3d565b612c3a8184612ed9565b92505b508080612c49906142ea565b915050612bf0565b508091505092915050565b60606000600167ffffffffffffffff811115612c7b57612c7a61317b565b5b604051908082528060200260200182016040528015612ca95781602001602082028036833780820191505090505b5090508281600081518110612cc157612cc06142bb565b5b60200260200101818152505080915050919050565b612cf58473ffffffffffffffffffffffffffffffffffffffff16612eb6565b15612ea6578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d3b959493929190614be3565b6020604051808303816000875af1925050508015612d7757506040513d601f19601f82011682018060405250810190612d7491906149cd565b60015b612e1d57612d83614a07565b806308c379a01415612de05750612d98614a29565b80612da35750612de2565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd79190613377565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1490614b31565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9b90614bc3565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612efc90613d2f565b90600052602060002090601f016020900481019282612f1e5760008555612f65565b82601f10612f3757805160ff1916838001178555612f65565b82800160010185558215612f65579182015b82811115612f64578251825591602001919060010190612f49565b5b509050612f729190612f76565b5090565b5b80821115612f8f576000816000905550600101612f77565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fd282612fa7565b9050919050565b612fe281612fc7565b8114612fed57600080fd5b50565b600081359050612fff81612fd9565b92915050565b6000819050919050565b61301881613005565b811461302357600080fd5b50565b6000813590506130358161300f565b92915050565b6000806040838503121561305257613051612f9d565b5b600061306085828601612ff0565b925050602061307185828601613026565b9150509250929050565b61308481613005565b82525050565b600060208201905061309f600083018461307b565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130da816130a5565b81146130e557600080fd5b50565b6000813590506130f7816130d1565b92915050565b60006020828403121561311357613112612f9d565b5b6000613121848285016130e8565b91505092915050565b60008115159050919050565b61313f8161312a565b82525050565b600060208201905061315a6000830184613136565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131b38261316a565b810181811067ffffffffffffffff821117156131d2576131d161317b565b5b80604052505050565b60006131e5612f93565b90506131f182826131aa565b919050565b600067ffffffffffffffff8211156132115761321061317b565b5b61321a8261316a565b9050602081019050919050565b82818337600083830152505050565b6000613249613244846131f6565b6131db565b90508281526020810184848401111561326557613264613165565b5b613270848285613227565b509392505050565b600082601f83011261328d5761328c613160565b5b813561329d848260208601613236565b91505092915050565b6000602082840312156132bc576132bb612f9d565b5b600082013567ffffffffffffffff8111156132da576132d9612fa2565b5b6132e684828501613278565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332957808201518184015260208101905061330e565b83811115613338576000848401525b50505050565b6000613349826132ef565b61335381856132fa565b935061336381856020860161330b565b61336c8161316a565b840191505092915050565b60006020820190508181036000830152613391818461333e565b905092915050565b6000602082840312156133af576133ae612f9d565b5b60006133bd84828501613026565b91505092915050565b6000602082840312156133dc576133db612f9d565b5b60006133ea84828501612ff0565b91505092915050565b600067ffffffffffffffff82111561340e5761340d61317b565b5b602082029050602081019050919050565b600080fd5b6000613437613432846133f3565b6131db565b9050808382526020820190506020840283018581111561345a5761345961341f565b5b835b81811015613483578061346f8882613026565b84526020840193505060208101905061345c565b5050509392505050565b600082601f8301126134a2576134a1613160565b5b81356134b2848260208601613424565b91505092915050565b600067ffffffffffffffff8211156134d6576134d561317b565b5b6134df8261316a565b9050602081019050919050565b60006134ff6134fa846134bb565b6131db565b90508281526020810184848401111561351b5761351a613165565b5b613526848285613227565b509392505050565b600082601f83011261354357613542613160565b5b81356135538482602086016134ec565b91505092915050565b600080600080600060a0868803121561357857613577612f9d565b5b600061358688828901612ff0565b955050602061359788828901612ff0565b945050604086013567ffffffffffffffff8111156135b8576135b7612fa2565b5b6135c48882890161348d565b935050606086013567ffffffffffffffff8111156135e5576135e4612fa2565b5b6135f18882890161348d565b925050608086013567ffffffffffffffff81111561361257613611612fa2565b5b61361e8882890161352e565b9150509295509295909350565b600067ffffffffffffffff8211156136465761364561317b565b5b602082029050602081019050919050565b6000819050919050565b61366a81613657565b811461367557600080fd5b50565b60008135905061368781613661565b92915050565b60006136a061369b8461362b565b6131db565b905080838252602082019050602084028301858111156136c3576136c261341f565b5b835b818110156136ec57806136d88882613678565b8452602084019350506020810190506136c5565b5050509392505050565b600082601f83011261370b5761370a613160565b5b813561371b84826020860161368d565b91505092915050565b6000806040838503121561373b5761373a612f9d565b5b600083013567ffffffffffffffff81111561375957613758612fa2565b5b613765858286016136f6565b925050602061377685828601613026565b9150509250929050565b600067ffffffffffffffff82111561379b5761379a61317b565b5b602082029050602081019050919050565b60006137bf6137ba84613780565b6131db565b905080838252602082019050602084028301858111156137e2576137e161341f565b5b835b8181101561380b57806137f78882612ff0565b8452602084019350506020810190506137e4565b5050509392505050565b600082601f83011261382a57613829613160565b5b813561383a8482602086016137ac565b91505092915050565b6000806040838503121561385a57613859612f9d565b5b600083013567ffffffffffffffff81111561387857613877612fa2565b5b61388485828601613815565b925050602083013567ffffffffffffffff8111156138a5576138a4612fa2565b5b6138b18582860161348d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138f081613005565b82525050565b600061390283836138e7565b60208301905092915050565b6000602082019050919050565b6000613926826138bb565b61393081856138c6565b935061393b836138d7565b8060005b8381101561396c57815161395388826138f6565b975061395e8361390e565b92505060018101905061393f565b5085935050505092915050565b60006020820190508181036000830152613993818461391b565b905092915050565b600060ff82169050919050565b6139b18161399b565b82525050565b60006020820190506139cc60008301846139a8565b92915050565b6139db81612fc7565b82525050565b60006020820190506139f660008301846139d2565b92915050565b613a058161312a565b8114613a1057600080fd5b50565b600081359050613a22816139fc565b92915050565b60008060408385031215613a3f57613a3e612f9d565b5b6000613a4d85828601612ff0565b9250506020613a5e85828601613a13565b9150509250929050565b600060208284031215613a7e57613a7d612f9d565b5b6000613a8c84828501613678565b91505092915050565b60008060408385031215613aac57613aab612f9d565b5b6000613aba85828601612ff0565b9250506020613acb85828601612ff0565b9150509250929050565b613ade81613657565b82525050565b6000602082019050613af96000830184613ad5565b92915050565b600080600080600060a08688031215613b1b57613b1a612f9d565b5b6000613b2988828901612ff0565b9550506020613b3a88828901612ff0565b9450506040613b4b88828901613026565b9350506060613b5c88828901613026565b925050608086013567ffffffffffffffff811115613b7d57613b7c612fa2565b5b613b898882890161352e565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613bf2602b836132fa565b9150613bfd82613b96565b604082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c5e6020836132fa565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b7f53616c6520697320616c72656164792061637469766500000000000000000000600082015250565b6000613cca6016836132fa565b9150613cd582613c94565b602082019050919050565b60006020820190508181036000830152613cf981613cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4757607f821691505b60208210811415613d5b57613d5a613d00565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613dbd6032836132fa565b9150613dc882613d61565b604082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b6000613e29600e836132fa565b9150613e3482613df3565b602082019050919050565b60006020820190508181036000830152613e5881613e1c565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613e956012836132fa565b9150613ea082613e5f565b602082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b6000613f01601b836132fa565b9150613f0c82613ecb565b602082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f7182613005565b9150613f7c83613005565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb157613fb0613f37565b5b828201905092915050565b7f45786365656473206d617820616d6f756e740000000000000000000000000000600082015250565b6000613ff26012836132fa565b9150613ffd82613fbc565b602082019050919050565b6000602082019050818103600083015261402181613fe5565b9050919050565b60008160601b9050919050565b600061404082614028565b9050919050565b600061405282614035565b9050919050565b61406a61406582612fc7565b614047565b82525050565b600061407c8284614059565b60148201915081905092915050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b60006140c16010836132fa565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f45786365656473206d617820616d6f756e7420696e2070726573616c65000000600082015250565b600061412d601d836132fa565b9150614138826140f7565b602082019050919050565b6000602082019050818103600083015261415c81614120565b9050919050565b600061416e82613005565b915061417983613005565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141b2576141b1613f37565b5b828202905092915050565b7f496e73756666696369656e742046756e64000000000000000000000000000000600082015250565b60006141f36011836132fa565b91506141fe826141bd565b602082019050919050565b60006020820190508181036000830152614222816141e6565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006142856029836132fa565b915061429082614229565b604082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006142f582613005565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561432857614327613f37565b5b600182019050919050565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b60006143696015836132fa565b915061437482614333565b602082019050919050565b600060208201905081810360008301526143988161435c565b9050919050565b7f416c72656164792061697264726f707065640000000000000000000000000000600082015250565b60006143d56012836132fa565b91506143e08261439f565b602082019050919050565b60006020820190508181036000830152614404816143c8565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006144676029836132fa565b91506144728261440b565b604082019050919050565b600060208201905081810360008301526144968161445a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f96026836132fa565b91506145048261449d565b604082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061458b6028836132fa565b91506145968261452f565b604082019050919050565b600060208201905081810360008301526145ba8161457e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061461d6025836132fa565b9150614628826145c1565b604082019050919050565b6000602082019050818103600083015261464c81614610565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006146af602a836132fa565b91506146ba82614653565b604082019050919050565b600060208201905081810360008301526146de816146a2565b9050919050565b600060408201905081810360008301526146ff818561391b565b90508181036020830152614713818461391b565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006147786021836132fa565b91506147838261471c565b604082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b60006040820190506147c3600083018561307b565b6147d0602083018461307b565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006148336029836132fa565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006148c56028836132fa565b91506148d082614869565b604082019050919050565b600060208201905081810360008301526148f4816148b8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614922826148fb565b61492c8185614906565b935061493c81856020860161330b565b6149458161316a565b840191505092915050565b600060a08201905061496560008301886139d2565b61497260208301876139d2565b8181036040830152614984818661391b565b90508181036060830152614998818561391b565b905081810360808301526149ac8184614917565b90509695505050505050565b6000815190506149c7816130d1565b92915050565b6000602082840312156149e3576149e2612f9d565b5b60006149f1848285016149b8565b91505092915050565b60008160e01c9050919050565b600060033d1115614a265760046000803e614a236000516149fa565b90505b90565b600060443d1015614a3957614abc565b614a41612f93565b60043d036004823e80513d602482011167ffffffffffffffff82111715614a69575050614abc565b808201805167ffffffffffffffff811115614a875750505050614abc565b80602083010160043d038501811115614aa4575050505050614abc565b614ab3826020018501866131aa565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614b1b6034836132fa565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614bad6028836132fa565b9150614bb882614b51565b604082019050919050565b60006020820190508181036000830152614bdc81614ba0565b9050919050565b600060a082019050614bf860008301886139d2565b614c0560208301876139d2565b614c12604083018661307b565b614c1f606083018561307b565b8181036080830152614c318184614917565b9050969550505050505056fea2646970667358221220b121e107272f277ec5897c6afd37a14e0a9eb3b501947116c76246d49a135b5764736f6c634300080b0033

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.