ETH Price: $3,326.76 (-4.06%)

Token

Moonfrost ()
 

Overview

Max Total Supply

500

Holders

434

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x86c54730b9a202dfc4b79a8704e0024a7c4a7b64
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:
FrostHunterLicence

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : FrostHunterLicence.sol
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;

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

contract FrostHunterLicence is ERC1155, Ownable, ERC1155Supply {

    string public name = "Moonfrost";
    
    uint256 private _maxSupply = 500;
    bytes32 private _root = 0xd5936f2f97fc27633e3b08e775c06209914a8700159bebeeb3bfcdefac62a17f;

    constructor(address initialOwner)
        ERC1155("https://bafybeic3zt4m6lkkjzxtqf5d5tnyyvynlddtzawot77cjg4rcgog7hekpy.ipfs.w3s.link/0.json")
        Ownable(initialOwner)
    {}

    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }
 
    function root() public view returns (bytes32) {
        return _root;
    }

    function setRoot(bytes32 r) external onlyOwner {
        _root = r;
    }

    function openToPublic() public view returns (bool) {
        return _root == 0;
    }

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

    function mint(bytes32[] calldata proof, bytes32 leaf) public {
        require(totalSupply(0) + 1 <= _maxSupply, "Mint sold out");
        require(balanceOf(msg.sender, 0) == 0, "Already minted");
        if (_root != 0) {
            require(MerkleProof.verify(proof, _root, leaf), "Invalid proof, not on whitelist");
        }
        
        bytes32 addressToLeaf = keccak256(abi.encodePacked(msg.sender));
        require(leaf == addressToLeaf, "Leaf doesn't match sender address");

        _mint(msg.sender, 0, 1, "");
    }

    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public onlyOwner {
        _mintBatch(to, ids, amounts, data);
    }

    function _update(address from, address to, uint256[] memory ids, uint256[] memory values)
        internal
        override(ERC1155, ERC1155Supply)
    {
        super._update(from, to, ids, values);
    }
}

File 2 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @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 Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(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.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 15 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.20;

import {ERC1155} from "../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.
 *
 * NOTE: This contract implies a global limit of 2**256 - 1 to the number of tokens
 * that can be minted.
 *
 * CAUTION: This extension should not be added in an upgrade to an already deployed contract.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 id => uint256) private _totalSupply;
    uint256 private _totalSupplyAll;

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

    /**
     * @dev Total value of tokens.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupplyAll;
    }

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

    /**
     * @dev See {ERC1155-_update}.
     */
    function _update(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values
    ) internal virtual override {
        super._update(from, to, ids, values);

        if (from == address(0)) {
            uint256 totalMintValue = 0;
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 value = values[i];
                // Overflow check required: The rest of the code assumes that totalSupply never overflows
                _totalSupply[ids[i]] += value;
                totalMintValue += value;
            }
            // Overflow check required: The rest of the code assumes that totalSupplyAll never overflows
            _totalSupplyAll += totalMintValue;
        }

        if (to == address(0)) {
            uint256 totalBurnValue = 0;
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 value = values[i];

                unchecked {
                    // Overflow not possible: values[i] <= balanceOf(from, ids[i]) <= totalSupply(ids[i])
                    _totalSupply[ids[i]] -= value;
                    // Overflow not possible: sum_i(values[i]) <= sum_i(totalSupply(ids[i])) <= totalSupplyAll
                    totalBurnValue += value;
                }
            }
            unchecked {
                // Overflow not possible: totalBurnValue = sum_i(values[i]) <= sum_i(totalSupply(ids[i])) <= totalSupplyAll
                _totalSupplyAll -= totalBurnValue;
            }
        }
    }
}

File 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 5 of 15 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.20;

import {IERC1155} from "./IERC1155.sol";
import {IERC1155Receiver} from "./IERC1155Receiver.sol";
import {IERC1155MetadataURI} from "./extensions/IERC1155MetadataURI.sol";
import {Context} from "../../utils/Context.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {Arrays} from "../../utils/Arrays.sol";
import {IERC1155Errors} from "../../interfaces/draft-IERC6093.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
 */
abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC1155Errors {
    using Arrays for uint256[];
    using Arrays for address[];

    mapping(uint256 id => mapping(address account => uint256)) private _balances;

    mapping(address account => mapping(address operator => 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 /* id */) public view virtual returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     */
    function balanceOf(address account, uint256 id) public view virtual returns (uint256) {
        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 returns (uint256[] memory) {
        if (accounts.length != ids.length) {
            revert ERC1155InvalidArrayLength(ids.length, accounts.length);
        }

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) public virtual {
        address sender = _msgSender();
        if (from != sender && !isApprovedForAll(from, sender)) {
            revert ERC1155MissingApprovalForAll(sender, from);
        }
        _safeTransferFrom(from, to, id, value, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) public virtual {
        address sender = _msgSender();
        if (from != sender && !isApprovedForAll(from, sender)) {
            revert ERC1155MissingApprovalForAll(sender, from);
        }
        _safeBatchTransferFrom(from, to, ids, values, data);
    }

    /**
     * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from`
     * (or `to`) is the zero address.
     *
     * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement either {IERC1155Receiver-onERC1155Received}
     *   or {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value.
     * - `ids` and `values` must have the same length.
     *
     * NOTE: The ERC-1155 acceptance check is not performed in this function. See {_updateWithAcceptanceCheck} instead.
     */
    function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual {
        if (ids.length != values.length) {
            revert ERC1155InvalidArrayLength(ids.length, values.length);
        }

        address operator = _msgSender();

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids.unsafeMemoryAccess(i);
            uint256 value = values.unsafeMemoryAccess(i);

            if (from != address(0)) {
                uint256 fromBalance = _balances[id][from];
                if (fromBalance < value) {
                    revert ERC1155InsufficientBalance(from, fromBalance, value, id);
                }
                unchecked {
                    // Overflow not possible: value <= fromBalance
                    _balances[id][from] = fromBalance - value;
                }
            }

            if (to != address(0)) {
                _balances[id][to] += value;
            }
        }

        if (ids.length == 1) {
            uint256 id = ids.unsafeMemoryAccess(0);
            uint256 value = values.unsafeMemoryAccess(0);
            emit TransferSingle(operator, from, to, id, value);
        } else {
            emit TransferBatch(operator, from, to, ids, values);
        }
    }

    /**
     * @dev Version of {_update} that performs the token acceptance check by calling
     * {IERC1155Receiver-onERC1155Received} or {IERC1155Receiver-onERC1155BatchReceived} on the receiver address if it
     * contains code (eg. is a smart contract at the moment of execution).
     *
     * IMPORTANT: Overriding this function is discouraged because it poses a reentrancy risk from the receiver. So any
     * update to the contract state after this function would break the check-effect-interaction pattern. Consider
     * overriding {_update} instead.
     */
    function _updateWithAcceptanceCheck(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) internal virtual {
        _update(from, to, ids, values);
        if (to != address(0)) {
            address operator = _msgSender();
            if (ids.length == 1) {
                uint256 id = ids.unsafeMemoryAccess(0);
                uint256 value = values.unsafeMemoryAccess(0);
                _doSafeTransferAcceptanceCheck(operator, from, to, id, value, data);
            } else {
                _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, values, data);
            }
        }
    }

    /**
     * @dev Transfers a `value` 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 `value` 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 value, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(from, to, ids, values, 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.
     * - `ids` and `values` must have the same length.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        _updateWithAcceptanceCheck(from, to, ids, values, 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 values 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 a `value` amount of tokens of 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 value, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(address(0), to, ids, values, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     * - `to` cannot be the zero address.
     * - 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 values, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        _updateWithAcceptanceCheck(address(0), to, ids, values, data);
    }

    /**
     * @dev Destroys a `value` amount of tokens of type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     */
    function _burn(address from, uint256 id, uint256 value) internal {
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(from, address(0), ids, values, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     * - `ids` and `values` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal {
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        _updateWithAcceptanceCheck(from, address(0), ids, values, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the zero address.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC1155InvalidOperator(address(0));
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Performs an acceptance check by calling {IERC1155-onERC1155Received} on the `to` address
     * if it contains code at the moment of execution.
     */
    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 value,
        bytes memory data
    ) private {
        if (to.code.length > 0) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    // Tokens rejected
                    revert ERC1155InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-ERC1155Receiver implementer
                    revert ERC1155InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /**
     * @dev Performs a batch acceptance check by calling {IERC1155-onERC1155BatchReceived} on the `to` address
     * if it contains code at the moment of execution.
     */
    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) private {
        if (to.code.length > 0) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    // Tokens rejected
                    revert ERC1155InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-ERC1155Receiver implementer
                    revert ERC1155InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /**
     * @dev Creates an array in memory with only one value for each of the elements provided.
     */
    function _asSingletonArrays(
        uint256 element1,
        uint256 element2
    ) private pure returns (uint256[] memory array1, uint256[] memory array2) {
        /// @solidity memory-safe-assembly
        assembly {
            // Load the free memory pointer
            array1 := mload(0x40)
            // Set array length to 1
            mstore(array1, 1)
            // Store the single element at the next word after the length (where content starts)
            mstore(add(array1, 0x20), element1)

            // Repeat for next array locating it right after the first array
            array2 := add(array1, 0x40)
            mstore(array2, 1)
            mstore(add(array2, 0x20), element2)

            // Update the free memory pointer by pointing after the second array
            mstore(0x40, add(array2, 0x40))
        }
    }
}

File 6 of 15 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 7 of 15 : Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Arrays.sol)

pragma solidity ^0.8.20;

import {StorageSlot} from "./StorageSlot.sol";
import {Math} from "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        uint256 low = 0;
        uint256 high = array.length;

        if (high == 0) {
            return 0;
        }

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds towards zero (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }
}

File 8 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 9 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 10 of 15 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.20;

import {IERC1155} from "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 */
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 11 of 15 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Interface that must be implemented by smart contracts in order to receive
 * ERC-1155 token transfers.
 */
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 12 of 15 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` amount of tokens of 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 value 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 a `value` amount of tokens of type `id` from `from` to `to`.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155Received} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `value` 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 value, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits either a {TransferSingle} or a {TransferBatch} event, depending on the length of the array arguments.
     *
     * Requirements:
     *
     * - `ids` and `values` 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 values,
        bytes calldata data
    ) external;
}

File 13 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

File 14 of 15 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 15 of 15 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openToPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"values","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":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"r","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":"totalSupply","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"}]

60806040526040518060400160405280600981526020017f4d6f6f6e66726f73740000000000000000000000000000000000000000000000815250600690816100489190610462565b506101f46007557fd5936f2f97fc27633e3b08e775c06209914a8700159bebeeb3bfcdefac62a17f5f1b600855348015610080575f80fd5b506040516136d03803806136d083398181016040528101906100a2919061058f565b80604051806080016040528060588152602001613678605891396100cb8161015260201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361013c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161013391906105c9565b60405180910390fd5b61014b8161016560201b60201c565b50506105e2565b80600290816101619190610462565b5050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102a357607f821691505b6020821081036102b6576102b561025f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826102dd565b61032286836102dd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61036661036161035c8461033a565b610343565b61033a565b9050919050565b5f819050919050565b61037f8361034c565b61039361038b8261036d565b8484546102e9565b825550505050565b5f90565b6103a761039b565b6103b2818484610376565b505050565b5b818110156103d5576103ca5f8261039f565b6001810190506103b8565b5050565b601f82111561041a576103eb816102bc565b6103f4846102ce565b81016020851015610403578190505b61041761040f856102ce565b8301826103b7565b50505b505050565b5f82821c905092915050565b5f61043a5f198460080261041f565b1980831691505092915050565b5f610452838361042b565b9150826002028217905092915050565b61046b82610228565b67ffffffffffffffff81111561048457610483610232565b5b61048e825461028c565b6104998282856103d9565b5f60209050601f8311600181146104ca575f84156104b8578287015190505b6104c28582610447565b865550610529565b601f1984166104d8866102bc565b5f5b828110156104ff578489015182556001820191506020850194506020810190506104da565b8683101561051c5784890151610518601f89168261042b565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61055e82610535565b9050919050565b61056e81610554565b8114610578575f80fd5b50565b5f8151905061058981610565565b92915050565b5f602082840312156105a4576105a3610531565b5b5f6105b18482850161057b565b91505092915050565b6105c381610554565b82525050565b5f6020820190506105dc5f8301846105ba565b92915050565b613089806105ef5f395ff3fe608060405234801561000f575f80fd5b506004361061013f575f3560e01c80634f558e79116100b6578063d5abeb011161007a578063d5abeb0114610371578063dab5f3401461038f578063e985e9c5146103ab578063ebf0c717146103db578063f242432a146103f9578063f2fde38b146104155761013f565b80634f558e79146102cd578063715018a6146102fd5780638da5cb5b14610307578063a22cb46514610325578063bd85b039146103415761013f565b80630e89341c116101085780630e89341c146101f957806318160ddd146102295780631831ccf2146102475780631f7fdffa146102655780632eb2c2d6146102815780634e1273f41461029d5761013f565b8062fdd58e1461014357806301ffc9a71461017357806302fe5305146101a357806306fdde03146101bf5780630c9536f2146101dd575b5f80fd5b61015d60048036038101906101589190611dc2565b610431565b60405161016a9190611e0f565b60405180910390f35b61018d60048036038101906101889190611e7d565b610486565b60405161019a9190611ec2565b60405180910390f35b6101bd60048036038101906101b89190612017565b610567565b005b6101c761057b565b6040516101d491906120be565b60405180910390f35b6101f760048036038101906101f2919061216e565b610607565b005b610213600480360381019061020e91906121cb565b6107d0565b60405161022091906120be565b60405180910390f35b610231610862565b60405161023e9190611e0f565b60405180910390f35b61024f61086b565b60405161025c9190611ec2565b60405180910390f35b61027f600480360381019061027a9190612354565b610878565b005b61029b6004803603810190610296919061240c565b610892565b005b6102b760048036038101906102b29190612597565b610939565b6040516102c491906126c4565b60405180910390f35b6102e760048036038101906102e291906121cb565b610a40565b6040516102f49190611ec2565b60405180910390f35b610305610a53565b005b61030f610a66565b60405161031c91906126f3565b60405180910390f35b61033f600480360381019061033a9190612736565b610a8e565b005b61035b600480360381019061035691906121cb565b610aa4565b6040516103689190611e0f565b60405180910390f35b610379610abe565b6040516103869190611e0f565b60405180910390f35b6103a960048036038101906103a49190612774565b610ac7565b005b6103c560048036038101906103c0919061279f565b610ad9565b6040516103d29190611ec2565b60405180910390f35b6103e3610b67565b6040516103f091906127ec565b60405180910390f35b610413600480360381019061040e9190612805565b610b70565b005b61042f600480360381019061042a9190612898565b610c17565b005b5f805f8381526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610560575061055f82610c9b565b5b9050919050565b61056f610d04565b61057881610d8b565b50565b60068054610588906128f0565b80601f01602080910402602001604051908101604052809291908181526020018280546105b4906128f0565b80156105ff5780601f106105d6576101008083540402835291602001916105ff565b820191905f5260205f20905b8154815290600101906020018083116105e257829003601f168201915b505050505081565b60075460016106155f610aa4565b61061f919061294d565b1115610660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610657906129ca565b60405180910390fd5b5f61066b335f610431565b146106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290612a32565b60405180910390fd5b5f801b60085414610743576107038383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060085483610d9e565b610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990612a9a565b60405180910390fd5b5b5f336040516020016107559190612afd565b6040516020818303038152906040528051906020012090508082146107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a690612b87565b60405180910390fd5b6107ca335f600160405180602001604052805f815250610db4565b50505050565b6060600280546107df906128f0565b80601f016020809104026020016040519081016040528092919081815260200182805461080b906128f0565b80156108565780601f1061082d57610100808354040283529160200191610856565b820191905f5260205f20905b81548152906001019060200180831161083957829003601f168201915b50505050509050919050565b5f600554905090565b5f805f1b60085414905090565b610880610d04565b61088c84848484610e49565b50505050565b5f61089b610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156108e057506108de8682610ad9565b155b156109245780866040517fe237d92200000000000000000000000000000000000000000000000000000000815260040161091b929190612ba5565b60405180910390fd5b6109318686868686610ed3565b505050505050565b6060815183511461098557815183516040517f5b05999100000000000000000000000000000000000000000000000000000000815260040161097c929190612bcc565b60405180910390fd5b5f835167ffffffffffffffff8111156109a1576109a0611ef3565b5b6040519080825280602002602001820160405280156109cf5781602001602082028036833780820191505090505b5090505f5b8451811015610a3557610a0b6109f38287610fc790919063ffffffff16565b610a068387610fda90919063ffffffff16565b610431565b828281518110610a1e57610a1d612bf3565b5b6020026020010181815250508060010190506109d4565b508091505092915050565b5f80610a4b83610aa4565b119050919050565b610a5b610d04565b610a645f610fed565b565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610aa0610a99610ecc565b83836110b0565b5050565b5f60045f8381526020019081526020015f20549050919050565b5f600754905090565b610acf610d04565b8060088190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f600854905090565b5f610b79610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610bbe5750610bbc8682610ad9565b155b15610c025780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610bf9929190612ba5565b60405180910390fd5b610c0f8686868686611219565b505050505050565b610c1f610d04565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c8f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c8691906126f3565b60405180910390fd5b610c9881610fed565b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d0c610ecc565b73ffffffffffffffffffffffffffffffffffffffff16610d2a610a66565b73ffffffffffffffffffffffffffffffffffffffff1614610d8957610d4d610ecc565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d8091906126f3565b60405180910390fd5b565b8060029081610d9a9190612dbd565b5050565b5f82610daa858461131f565b1490509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e24575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610e1b91906126f3565b60405180910390fd5b5f80610e30858561136d565b91509150610e415f8784848761139d565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eb9575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610eb091906126f3565b60405180910390fd5b610ec65f8585858561139d565b50505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f43575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610f3a91906126f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fb3575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401610faa91906126f3565b60405180910390fd5b610fc0858585858561139d565b5050505050565b5f60208202602084010151905092915050565b5f60208202602084010151905092915050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611120575f6040517fced3e10000000000000000000000000000000000000000000000000000000000815260040161111791906126f3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120c9190611ec2565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611289575f6040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161128091906126f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036112f9575f6040517f01a835140000000000000000000000000000000000000000000000000000000081526004016112f091906126f3565b60405180910390fd5b5f80611305858561136d565b91509150611316878784848761139d565b50505050505050565b5f808290505f5b8451811015611362576113538286838151811061134657611345612bf3565b5b6020026020010151611449565b91508080600101915050611326565b508091505092915050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b6113a985858585611473565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611442575f6113e5610ecc565b90506001845103611431575f6114045f86610fda90919063ffffffff16565b90505f61141a5f86610fda90919063ffffffff16565b905061142a838989858589611485565b5050611440565b61143f818787878787611634565b5b505b5050505050565b5f8183106114605761145b82846117e3565b61146b565b61146a83836117e3565b5b905092915050565b61147f848484846117f7565b50505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b111561162c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016114e5959493929190612ede565b6020604051808303815f875af192505050801561152057506040513d601f19601f8201168201806040525081019061151d9190612f4a565b60015b6115a1573d805f811461154e576040519150601f19603f3d011682016040523d82523d5f602084013e611553565b606091505b505f81510361159957846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161159091906126f3565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461162a57846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161162191906126f3565b60405180910390fd5b505b505050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b11156117db578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611694959493929190612f75565b6020604051808303815f875af19250505080156116cf57506040513d601f19601f820116820180604052508101906116cc9190612f4a565b60015b611750573d805f81146116fd576040519150601f19603f3d011682016040523d82523d5f602084013e611702565b606091505b505f81510361174857846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161173f91906126f3565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146117d957846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016117d091906126f3565b60405180910390fd5b505b505050505050565b5f825f528160205260405f20905092915050565b61180384848484611994565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118d6575f805b83518110156118bb575f83828151811061185657611855612bf3565b5b602002602001015190508060045f87858151811061187757611876612bf3565b5b602002602001015181526020019081526020015f205f82825461189a919061294d565b9250508190555080836118ad919061294d565b925050806001019050611839565b508060055f8282546118cd919061294d565b92505081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361198e575f805b835181101561197c575f83828151811061192957611928612bf3565b5b602002602001015190508060045f87858151811061194a57611949612bf3565b5b602002602001015181526020019081526020015f205f828254039250508190555080830192505080600101905061190c565b508060055f8282540392505081905550505b50505050565b80518251146119de57815181516040517f5b0599910000000000000000000000000000000000000000000000000000000081526004016119d5929190612bcc565b60405180910390fd5b5f6119e7610ecc565b90505f5b8351811015611be3575f611a088286610fda90919063ffffffff16565b90505f611a1e8386610fda90919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614611b41575f805f8481526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611aed57888183856040517f03dee4c5000000000000000000000000000000000000000000000000000000008152600401611ae49493929190612fdb565b60405180910390fd5b8181035f808581526020019081526020015f205f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611bd657805f808481526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611bce919061294d565b925050819055505b50508060010190506119eb565b506001835103611c9e575f611c015f85610fda90919063ffffffff16565b90505f611c175f85610fda90919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051611c8f929190612bcc565b60405180910390a45050611d1d565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611d1492919061301e565b60405180910390a45b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d5e82611d35565b9050919050565b611d6e81611d54565b8114611d78575f80fd5b50565b5f81359050611d8981611d65565b92915050565b5f819050919050565b611da181611d8f565b8114611dab575f80fd5b50565b5f81359050611dbc81611d98565b92915050565b5f8060408385031215611dd857611dd7611d2d565b5b5f611de585828601611d7b565b9250506020611df685828601611dae565b9150509250929050565b611e0981611d8f565b82525050565b5f602082019050611e225f830184611e00565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e5c81611e28565b8114611e66575f80fd5b50565b5f81359050611e7781611e53565b92915050565b5f60208284031215611e9257611e91611d2d565b5b5f611e9f84828501611e69565b91505092915050565b5f8115159050919050565b611ebc81611ea8565b82525050565b5f602082019050611ed55f830184611eb3565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f2982611ee3565b810181811067ffffffffffffffff82111715611f4857611f47611ef3565b5b80604052505050565b5f611f5a611d24565b9050611f668282611f20565b919050565b5f67ffffffffffffffff821115611f8557611f84611ef3565b5b611f8e82611ee3565b9050602081019050919050565b828183375f83830152505050565b5f611fbb611fb684611f6b565b611f51565b905082815260208101848484011115611fd757611fd6611edf565b5b611fe2848285611f9b565b509392505050565b5f82601f830112611ffe57611ffd611edb565b5b813561200e848260208601611fa9565b91505092915050565b5f6020828403121561202c5761202b611d2d565b5b5f82013567ffffffffffffffff81111561204957612048611d31565b5b61205584828501611fea565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f6120908261205e565b61209a8185612068565b93506120aa818560208601612078565b6120b381611ee3565b840191505092915050565b5f6020820190508181035f8301526120d68184612086565b905092915050565b5f80fd5b5f80fd5b5f8083601f8401126120fb576120fa611edb565b5b8235905067ffffffffffffffff811115612118576121176120de565b5b602083019150836020820283011115612134576121336120e2565b5b9250929050565b5f819050919050565b61214d8161213b565b8114612157575f80fd5b50565b5f8135905061216881612144565b92915050565b5f805f6040848603121561218557612184611d2d565b5b5f84013567ffffffffffffffff8111156121a2576121a1611d31565b5b6121ae868287016120e6565b935093505060206121c18682870161215a565b9150509250925092565b5f602082840312156121e0576121df611d2d565b5b5f6121ed84828501611dae565b91505092915050565b5f67ffffffffffffffff8211156122105761220f611ef3565b5b602082029050602081019050919050565b5f61223361222e846121f6565b611f51565b90508083825260208201905060208402830185811115612256576122556120e2565b5b835b8181101561227f578061226b8882611dae565b845260208401935050602081019050612258565b5050509392505050565b5f82601f83011261229d5761229c611edb565b5b81356122ad848260208601612221565b91505092915050565b5f67ffffffffffffffff8211156122d0576122cf611ef3565b5b6122d982611ee3565b9050602081019050919050565b5f6122f86122f3846122b6565b611f51565b90508281526020810184848401111561231457612313611edf565b5b61231f848285611f9b565b509392505050565b5f82601f83011261233b5761233a611edb565b5b813561234b8482602086016122e6565b91505092915050565b5f805f806080858703121561236c5761236b611d2d565b5b5f61237987828801611d7b565b945050602085013567ffffffffffffffff81111561239a57612399611d31565b5b6123a687828801612289565b935050604085013567ffffffffffffffff8111156123c7576123c6611d31565b5b6123d387828801612289565b925050606085013567ffffffffffffffff8111156123f4576123f3611d31565b5b61240087828801612327565b91505092959194509250565b5f805f805f60a0868803121561242557612424611d2d565b5b5f61243288828901611d7b565b955050602061244388828901611d7b565b945050604086013567ffffffffffffffff81111561246457612463611d31565b5b61247088828901612289565b935050606086013567ffffffffffffffff81111561249157612490611d31565b5b61249d88828901612289565b925050608086013567ffffffffffffffff8111156124be576124bd611d31565b5b6124ca88828901612327565b9150509295509295909350565b5f67ffffffffffffffff8211156124f1576124f0611ef3565b5b602082029050602081019050919050565b5f61251461250f846124d7565b611f51565b90508083825260208201905060208402830185811115612537576125366120e2565b5b835b81811015612560578061254c8882611d7b565b845260208401935050602081019050612539565b5050509392505050565b5f82601f83011261257e5761257d611edb565b5b813561258e848260208601612502565b91505092915050565b5f80604083850312156125ad576125ac611d2d565b5b5f83013567ffffffffffffffff8111156125ca576125c9611d31565b5b6125d68582860161256a565b925050602083013567ffffffffffffffff8111156125f7576125f6611d31565b5b61260385828601612289565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61263f81611d8f565b82525050565b5f6126508383612636565b60208301905092915050565b5f602082019050919050565b5f6126728261260d565b61267c8185612617565b935061268783612627565b805f5b838110156126b757815161269e8882612645565b97506126a98361265c565b92505060018101905061268a565b5085935050505092915050565b5f6020820190508181035f8301526126dc8184612668565b905092915050565b6126ed81611d54565b82525050565b5f6020820190506127065f8301846126e4565b92915050565b61271581611ea8565b811461271f575f80fd5b50565b5f813590506127308161270c565b92915050565b5f806040838503121561274c5761274b611d2d565b5b5f61275985828601611d7b565b925050602061276a85828601612722565b9150509250929050565b5f6020828403121561278957612788611d2d565b5b5f6127968482850161215a565b91505092915050565b5f80604083850312156127b5576127b4611d2d565b5b5f6127c285828601611d7b565b92505060206127d385828601611d7b565b9150509250929050565b6127e68161213b565b82525050565b5f6020820190506127ff5f8301846127dd565b92915050565b5f805f805f60a0868803121561281e5761281d611d2d565b5b5f61282b88828901611d7b565b955050602061283c88828901611d7b565b945050604061284d88828901611dae565b935050606061285e88828901611dae565b925050608086013567ffffffffffffffff81111561287f5761287e611d31565b5b61288b88828901612327565b9150509295509295909350565b5f602082840312156128ad576128ac611d2d565b5b5f6128ba84828501611d7b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061290757607f821691505b60208210810361291a576129196128c3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61295782611d8f565b915061296283611d8f565b925082820190508082111561297a57612979612920565b5b92915050565b7f4d696e7420736f6c64206f7574000000000000000000000000000000000000005f82015250565b5f6129b4600d83612068565b91506129bf82612980565b602082019050919050565b5f6020820190508181035f8301526129e1816129a8565b9050919050565b7f416c7265616479206d696e7465640000000000000000000000000000000000005f82015250565b5f612a1c600e83612068565b9150612a27826129e8565b602082019050919050565b5f6020820190508181035f830152612a4981612a10565b9050919050565b7f496e76616c69642070726f6f662c206e6f74206f6e2077686974656c697374005f82015250565b5f612a84601f83612068565b9150612a8f82612a50565b602082019050919050565b5f6020820190508181035f830152612ab181612a78565b9050919050565b5f8160601b9050919050565b5f612ace82612ab8565b9050919050565b5f612adf82612ac4565b9050919050565b612af7612af282611d54565b612ad5565b82525050565b5f612b088284612ae6565b60148201915081905092915050565b7f4c65616620646f65736e2774206d617463682073656e646572206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b71602183612068565b9150612b7c82612b17565b604082019050919050565b5f6020820190508181035f830152612b9e81612b65565b9050919050565b5f604082019050612bb85f8301856126e4565b612bc560208301846126e4565b9392505050565b5f604082019050612bdf5f830185611e00565b612bec6020830184611e00565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c41565b612c868683612c41565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612cc1612cbc612cb784611d8f565b612c9e565b611d8f565b9050919050565b5f819050919050565b612cda83612ca7565b612cee612ce682612cc8565b848454612c4d565b825550505050565b5f90565b612d02612cf6565b612d0d818484612cd1565b505050565b5b81811015612d3057612d255f82612cfa565b600181019050612d13565b5050565b601f821115612d7557612d4681612c20565b612d4f84612c32565b81016020851015612d5e578190505b612d72612d6a85612c32565b830182612d12565b50505b505050565b5f82821c905092915050565b5f612d955f1984600802612d7a565b1980831691505092915050565b5f612dad8383612d86565b9150826002028217905092915050565b612dc68261205e565b67ffffffffffffffff811115612ddf57612dde611ef3565b5b612de982546128f0565b612df4828285612d34565b5f60209050601f831160018114612e25575f8415612e13578287015190505b612e1d8582612da2565b865550612e84565b601f198416612e3386612c20565b5f5b82811015612e5a57848901518255600182019150602085019450602081019050612e35565b86831015612e775784890151612e73601f891682612d86565b8355505b6001600288020188555050505b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f612eb082612e8c565b612eba8185612e96565b9350612eca818560208601612078565b612ed381611ee3565b840191505092915050565b5f60a082019050612ef15f8301886126e4565b612efe60208301876126e4565b612f0b6040830186611e00565b612f186060830185611e00565b8181036080830152612f2a8184612ea6565b90509695505050505050565b5f81519050612f4481611e53565b92915050565b5f60208284031215612f5f57612f5e611d2d565b5b5f612f6c84828501612f36565b91505092915050565b5f60a082019050612f885f8301886126e4565b612f9560208301876126e4565b8181036040830152612fa78186612668565b90508181036060830152612fbb8185612668565b90508181036080830152612fcf8184612ea6565b90509695505050505050565b5f608082019050612fee5f8301876126e4565b612ffb6020830186611e00565b6130086040830185611e00565b6130156060830184611e00565b95945050505050565b5f6040820190508181035f8301526130368185612668565b9050818103602083015261304a8184612668565b9050939250505056fea264697066735822122055cbbf8c9c0a06a8a33e2def17214d38438b04eb6dee749b21acc6ab2ec1e44f64736f6c634300081a003368747470733a2f2f6261667962656963337a74346d366c6b6b6a7a78747166356435746e797976796e6c6464747a61776f743737636a67347263676f673768656b70792e697066732e7733732e6c696e6b2f302e6a736f6e00000000000000000000000097090528e131bd13cbce40e7fa5afdbd9cc3bd1b

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061013f575f3560e01c80634f558e79116100b6578063d5abeb011161007a578063d5abeb0114610371578063dab5f3401461038f578063e985e9c5146103ab578063ebf0c717146103db578063f242432a146103f9578063f2fde38b146104155761013f565b80634f558e79146102cd578063715018a6146102fd5780638da5cb5b14610307578063a22cb46514610325578063bd85b039146103415761013f565b80630e89341c116101085780630e89341c146101f957806318160ddd146102295780631831ccf2146102475780631f7fdffa146102655780632eb2c2d6146102815780634e1273f41461029d5761013f565b8062fdd58e1461014357806301ffc9a71461017357806302fe5305146101a357806306fdde03146101bf5780630c9536f2146101dd575b5f80fd5b61015d60048036038101906101589190611dc2565b610431565b60405161016a9190611e0f565b60405180910390f35b61018d60048036038101906101889190611e7d565b610486565b60405161019a9190611ec2565b60405180910390f35b6101bd60048036038101906101b89190612017565b610567565b005b6101c761057b565b6040516101d491906120be565b60405180910390f35b6101f760048036038101906101f2919061216e565b610607565b005b610213600480360381019061020e91906121cb565b6107d0565b60405161022091906120be565b60405180910390f35b610231610862565b60405161023e9190611e0f565b60405180910390f35b61024f61086b565b60405161025c9190611ec2565b60405180910390f35b61027f600480360381019061027a9190612354565b610878565b005b61029b6004803603810190610296919061240c565b610892565b005b6102b760048036038101906102b29190612597565b610939565b6040516102c491906126c4565b60405180910390f35b6102e760048036038101906102e291906121cb565b610a40565b6040516102f49190611ec2565b60405180910390f35b610305610a53565b005b61030f610a66565b60405161031c91906126f3565b60405180910390f35b61033f600480360381019061033a9190612736565b610a8e565b005b61035b600480360381019061035691906121cb565b610aa4565b6040516103689190611e0f565b60405180910390f35b610379610abe565b6040516103869190611e0f565b60405180910390f35b6103a960048036038101906103a49190612774565b610ac7565b005b6103c560048036038101906103c0919061279f565b610ad9565b6040516103d29190611ec2565b60405180910390f35b6103e3610b67565b6040516103f091906127ec565b60405180910390f35b610413600480360381019061040e9190612805565b610b70565b005b61042f600480360381019061042a9190612898565b610c17565b005b5f805f8381526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610560575061055f82610c9b565b5b9050919050565b61056f610d04565b61057881610d8b565b50565b60068054610588906128f0565b80601f01602080910402602001604051908101604052809291908181526020018280546105b4906128f0565b80156105ff5780601f106105d6576101008083540402835291602001916105ff565b820191905f5260205f20905b8154815290600101906020018083116105e257829003601f168201915b505050505081565b60075460016106155f610aa4565b61061f919061294d565b1115610660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610657906129ca565b60405180910390fd5b5f61066b335f610431565b146106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290612a32565b60405180910390fd5b5f801b60085414610743576107038383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060085483610d9e565b610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990612a9a565b60405180910390fd5b5b5f336040516020016107559190612afd565b6040516020818303038152906040528051906020012090508082146107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a690612b87565b60405180910390fd5b6107ca335f600160405180602001604052805f815250610db4565b50505050565b6060600280546107df906128f0565b80601f016020809104026020016040519081016040528092919081815260200182805461080b906128f0565b80156108565780601f1061082d57610100808354040283529160200191610856565b820191905f5260205f20905b81548152906001019060200180831161083957829003601f168201915b50505050509050919050565b5f600554905090565b5f805f1b60085414905090565b610880610d04565b61088c84848484610e49565b50505050565b5f61089b610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156108e057506108de8682610ad9565b155b156109245780866040517fe237d92200000000000000000000000000000000000000000000000000000000815260040161091b929190612ba5565b60405180910390fd5b6109318686868686610ed3565b505050505050565b6060815183511461098557815183516040517f5b05999100000000000000000000000000000000000000000000000000000000815260040161097c929190612bcc565b60405180910390fd5b5f835167ffffffffffffffff8111156109a1576109a0611ef3565b5b6040519080825280602002602001820160405280156109cf5781602001602082028036833780820191505090505b5090505f5b8451811015610a3557610a0b6109f38287610fc790919063ffffffff16565b610a068387610fda90919063ffffffff16565b610431565b828281518110610a1e57610a1d612bf3565b5b6020026020010181815250508060010190506109d4565b508091505092915050565b5f80610a4b83610aa4565b119050919050565b610a5b610d04565b610a645f610fed565b565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610aa0610a99610ecc565b83836110b0565b5050565b5f60045f8381526020019081526020015f20549050919050565b5f600754905090565b610acf610d04565b8060088190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f600854905090565b5f610b79610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610bbe5750610bbc8682610ad9565b155b15610c025780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610bf9929190612ba5565b60405180910390fd5b610c0f8686868686611219565b505050505050565b610c1f610d04565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c8f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c8691906126f3565b60405180910390fd5b610c9881610fed565b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d0c610ecc565b73ffffffffffffffffffffffffffffffffffffffff16610d2a610a66565b73ffffffffffffffffffffffffffffffffffffffff1614610d8957610d4d610ecc565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d8091906126f3565b60405180910390fd5b565b8060029081610d9a9190612dbd565b5050565b5f82610daa858461131f565b1490509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e24575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610e1b91906126f3565b60405180910390fd5b5f80610e30858561136d565b91509150610e415f8784848761139d565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eb9575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610eb091906126f3565b60405180910390fd5b610ec65f8585858561139d565b50505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f43575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610f3a91906126f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fb3575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401610faa91906126f3565b60405180910390fd5b610fc0858585858561139d565b5050505050565b5f60208202602084010151905092915050565b5f60208202602084010151905092915050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611120575f6040517fced3e10000000000000000000000000000000000000000000000000000000000815260040161111791906126f3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120c9190611ec2565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611289575f6040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161128091906126f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036112f9575f6040517f01a835140000000000000000000000000000000000000000000000000000000081526004016112f091906126f3565b60405180910390fd5b5f80611305858561136d565b91509150611316878784848761139d565b50505050505050565b5f808290505f5b8451811015611362576113538286838151811061134657611345612bf3565b5b6020026020010151611449565b91508080600101915050611326565b508091505092915050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b6113a985858585611473565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611442575f6113e5610ecc565b90506001845103611431575f6114045f86610fda90919063ffffffff16565b90505f61141a5f86610fda90919063ffffffff16565b905061142a838989858589611485565b5050611440565b61143f818787878787611634565b5b505b5050505050565b5f8183106114605761145b82846117e3565b61146b565b61146a83836117e3565b5b905092915050565b61147f848484846117f7565b50505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b111561162c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016114e5959493929190612ede565b6020604051808303815f875af192505050801561152057506040513d601f19601f8201168201806040525081019061151d9190612f4a565b60015b6115a1573d805f811461154e576040519150601f19603f3d011682016040523d82523d5f602084013e611553565b606091505b505f81510361159957846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161159091906126f3565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461162a57846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161162191906126f3565b60405180910390fd5b505b505050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b11156117db578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611694959493929190612f75565b6020604051808303815f875af19250505080156116cf57506040513d601f19601f820116820180604052508101906116cc9190612f4a565b60015b611750573d805f81146116fd576040519150601f19603f3d011682016040523d82523d5f602084013e611702565b606091505b505f81510361174857846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161173f91906126f3565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146117d957846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016117d091906126f3565b60405180910390fd5b505b505050505050565b5f825f528160205260405f20905092915050565b61180384848484611994565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118d6575f805b83518110156118bb575f83828151811061185657611855612bf3565b5b602002602001015190508060045f87858151811061187757611876612bf3565b5b602002602001015181526020019081526020015f205f82825461189a919061294d565b9250508190555080836118ad919061294d565b925050806001019050611839565b508060055f8282546118cd919061294d565b92505081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361198e575f805b835181101561197c575f83828151811061192957611928612bf3565b5b602002602001015190508060045f87858151811061194a57611949612bf3565b5b602002602001015181526020019081526020015f205f828254039250508190555080830192505080600101905061190c565b508060055f8282540392505081905550505b50505050565b80518251146119de57815181516040517f5b0599910000000000000000000000000000000000000000000000000000000081526004016119d5929190612bcc565b60405180910390fd5b5f6119e7610ecc565b90505f5b8351811015611be3575f611a088286610fda90919063ffffffff16565b90505f611a1e8386610fda90919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614611b41575f805f8481526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611aed57888183856040517f03dee4c5000000000000000000000000000000000000000000000000000000008152600401611ae49493929190612fdb565b60405180910390fd5b8181035f808581526020019081526020015f205f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611bd657805f808481526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611bce919061294d565b925050819055505b50508060010190506119eb565b506001835103611c9e575f611c015f85610fda90919063ffffffff16565b90505f611c175f85610fda90919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051611c8f929190612bcc565b60405180910390a45050611d1d565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611d1492919061301e565b60405180910390a45b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d5e82611d35565b9050919050565b611d6e81611d54565b8114611d78575f80fd5b50565b5f81359050611d8981611d65565b92915050565b5f819050919050565b611da181611d8f565b8114611dab575f80fd5b50565b5f81359050611dbc81611d98565b92915050565b5f8060408385031215611dd857611dd7611d2d565b5b5f611de585828601611d7b565b9250506020611df685828601611dae565b9150509250929050565b611e0981611d8f565b82525050565b5f602082019050611e225f830184611e00565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e5c81611e28565b8114611e66575f80fd5b50565b5f81359050611e7781611e53565b92915050565b5f60208284031215611e9257611e91611d2d565b5b5f611e9f84828501611e69565b91505092915050565b5f8115159050919050565b611ebc81611ea8565b82525050565b5f602082019050611ed55f830184611eb3565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f2982611ee3565b810181811067ffffffffffffffff82111715611f4857611f47611ef3565b5b80604052505050565b5f611f5a611d24565b9050611f668282611f20565b919050565b5f67ffffffffffffffff821115611f8557611f84611ef3565b5b611f8e82611ee3565b9050602081019050919050565b828183375f83830152505050565b5f611fbb611fb684611f6b565b611f51565b905082815260208101848484011115611fd757611fd6611edf565b5b611fe2848285611f9b565b509392505050565b5f82601f830112611ffe57611ffd611edb565b5b813561200e848260208601611fa9565b91505092915050565b5f6020828403121561202c5761202b611d2d565b5b5f82013567ffffffffffffffff81111561204957612048611d31565b5b61205584828501611fea565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f6120908261205e565b61209a8185612068565b93506120aa818560208601612078565b6120b381611ee3565b840191505092915050565b5f6020820190508181035f8301526120d68184612086565b905092915050565b5f80fd5b5f80fd5b5f8083601f8401126120fb576120fa611edb565b5b8235905067ffffffffffffffff811115612118576121176120de565b5b602083019150836020820283011115612134576121336120e2565b5b9250929050565b5f819050919050565b61214d8161213b565b8114612157575f80fd5b50565b5f8135905061216881612144565b92915050565b5f805f6040848603121561218557612184611d2d565b5b5f84013567ffffffffffffffff8111156121a2576121a1611d31565b5b6121ae868287016120e6565b935093505060206121c18682870161215a565b9150509250925092565b5f602082840312156121e0576121df611d2d565b5b5f6121ed84828501611dae565b91505092915050565b5f67ffffffffffffffff8211156122105761220f611ef3565b5b602082029050602081019050919050565b5f61223361222e846121f6565b611f51565b90508083825260208201905060208402830185811115612256576122556120e2565b5b835b8181101561227f578061226b8882611dae565b845260208401935050602081019050612258565b5050509392505050565b5f82601f83011261229d5761229c611edb565b5b81356122ad848260208601612221565b91505092915050565b5f67ffffffffffffffff8211156122d0576122cf611ef3565b5b6122d982611ee3565b9050602081019050919050565b5f6122f86122f3846122b6565b611f51565b90508281526020810184848401111561231457612313611edf565b5b61231f848285611f9b565b509392505050565b5f82601f83011261233b5761233a611edb565b5b813561234b8482602086016122e6565b91505092915050565b5f805f806080858703121561236c5761236b611d2d565b5b5f61237987828801611d7b565b945050602085013567ffffffffffffffff81111561239a57612399611d31565b5b6123a687828801612289565b935050604085013567ffffffffffffffff8111156123c7576123c6611d31565b5b6123d387828801612289565b925050606085013567ffffffffffffffff8111156123f4576123f3611d31565b5b61240087828801612327565b91505092959194509250565b5f805f805f60a0868803121561242557612424611d2d565b5b5f61243288828901611d7b565b955050602061244388828901611d7b565b945050604086013567ffffffffffffffff81111561246457612463611d31565b5b61247088828901612289565b935050606086013567ffffffffffffffff81111561249157612490611d31565b5b61249d88828901612289565b925050608086013567ffffffffffffffff8111156124be576124bd611d31565b5b6124ca88828901612327565b9150509295509295909350565b5f67ffffffffffffffff8211156124f1576124f0611ef3565b5b602082029050602081019050919050565b5f61251461250f846124d7565b611f51565b90508083825260208201905060208402830185811115612537576125366120e2565b5b835b81811015612560578061254c8882611d7b565b845260208401935050602081019050612539565b5050509392505050565b5f82601f83011261257e5761257d611edb565b5b813561258e848260208601612502565b91505092915050565b5f80604083850312156125ad576125ac611d2d565b5b5f83013567ffffffffffffffff8111156125ca576125c9611d31565b5b6125d68582860161256a565b925050602083013567ffffffffffffffff8111156125f7576125f6611d31565b5b61260385828601612289565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61263f81611d8f565b82525050565b5f6126508383612636565b60208301905092915050565b5f602082019050919050565b5f6126728261260d565b61267c8185612617565b935061268783612627565b805f5b838110156126b757815161269e8882612645565b97506126a98361265c565b92505060018101905061268a565b5085935050505092915050565b5f6020820190508181035f8301526126dc8184612668565b905092915050565b6126ed81611d54565b82525050565b5f6020820190506127065f8301846126e4565b92915050565b61271581611ea8565b811461271f575f80fd5b50565b5f813590506127308161270c565b92915050565b5f806040838503121561274c5761274b611d2d565b5b5f61275985828601611d7b565b925050602061276a85828601612722565b9150509250929050565b5f6020828403121561278957612788611d2d565b5b5f6127968482850161215a565b91505092915050565b5f80604083850312156127b5576127b4611d2d565b5b5f6127c285828601611d7b565b92505060206127d385828601611d7b565b9150509250929050565b6127e68161213b565b82525050565b5f6020820190506127ff5f8301846127dd565b92915050565b5f805f805f60a0868803121561281e5761281d611d2d565b5b5f61282b88828901611d7b565b955050602061283c88828901611d7b565b945050604061284d88828901611dae565b935050606061285e88828901611dae565b925050608086013567ffffffffffffffff81111561287f5761287e611d31565b5b61288b88828901612327565b9150509295509295909350565b5f602082840312156128ad576128ac611d2d565b5b5f6128ba84828501611d7b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061290757607f821691505b60208210810361291a576129196128c3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61295782611d8f565b915061296283611d8f565b925082820190508082111561297a57612979612920565b5b92915050565b7f4d696e7420736f6c64206f7574000000000000000000000000000000000000005f82015250565b5f6129b4600d83612068565b91506129bf82612980565b602082019050919050565b5f6020820190508181035f8301526129e1816129a8565b9050919050565b7f416c7265616479206d696e7465640000000000000000000000000000000000005f82015250565b5f612a1c600e83612068565b9150612a27826129e8565b602082019050919050565b5f6020820190508181035f830152612a4981612a10565b9050919050565b7f496e76616c69642070726f6f662c206e6f74206f6e2077686974656c697374005f82015250565b5f612a84601f83612068565b9150612a8f82612a50565b602082019050919050565b5f6020820190508181035f830152612ab181612a78565b9050919050565b5f8160601b9050919050565b5f612ace82612ab8565b9050919050565b5f612adf82612ac4565b9050919050565b612af7612af282611d54565b612ad5565b82525050565b5f612b088284612ae6565b60148201915081905092915050565b7f4c65616620646f65736e2774206d617463682073656e646572206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b71602183612068565b9150612b7c82612b17565b604082019050919050565b5f6020820190508181035f830152612b9e81612b65565b9050919050565b5f604082019050612bb85f8301856126e4565b612bc560208301846126e4565b9392505050565b5f604082019050612bdf5f830185611e00565b612bec6020830184611e00565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c41565b612c868683612c41565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612cc1612cbc612cb784611d8f565b612c9e565b611d8f565b9050919050565b5f819050919050565b612cda83612ca7565b612cee612ce682612cc8565b848454612c4d565b825550505050565b5f90565b612d02612cf6565b612d0d818484612cd1565b505050565b5b81811015612d3057612d255f82612cfa565b600181019050612d13565b5050565b601f821115612d7557612d4681612c20565b612d4f84612c32565b81016020851015612d5e578190505b612d72612d6a85612c32565b830182612d12565b50505b505050565b5f82821c905092915050565b5f612d955f1984600802612d7a565b1980831691505092915050565b5f612dad8383612d86565b9150826002028217905092915050565b612dc68261205e565b67ffffffffffffffff811115612ddf57612dde611ef3565b5b612de982546128f0565b612df4828285612d34565b5f60209050601f831160018114612e25575f8415612e13578287015190505b612e1d8582612da2565b865550612e84565b601f198416612e3386612c20565b5f5b82811015612e5a57848901518255600182019150602085019450602081019050612e35565b86831015612e775784890151612e73601f891682612d86565b8355505b6001600288020188555050505b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f612eb082612e8c565b612eba8185612e96565b9350612eca818560208601612078565b612ed381611ee3565b840191505092915050565b5f60a082019050612ef15f8301886126e4565b612efe60208301876126e4565b612f0b6040830186611e00565b612f186060830185611e00565b8181036080830152612f2a8184612ea6565b90509695505050505050565b5f81519050612f4481611e53565b92915050565b5f60208284031215612f5f57612f5e611d2d565b5b5f612f6c84828501612f36565b91505092915050565b5f60a082019050612f885f8301886126e4565b612f9560208301876126e4565b8181036040830152612fa78186612668565b90508181036060830152612fbb8185612668565b90508181036080830152612fcf8184612ea6565b90509695505050505050565b5f608082019050612fee5f8301876126e4565b612ffb6020830186611e00565b6130086040830185611e00565b6130156060830184611e00565b95945050505050565b5f6040820190508181035f8301526130368185612668565b9050818103602083015261304a8184612668565b9050939250505056fea264697066735822122055cbbf8c9c0a06a8a33e2def17214d38438b04eb6dee749b21acc6ab2ec1e44f64736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000097090528e131bd13cbce40e7fa5afdbd9cc3bd1b

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x97090528E131Bd13cBce40E7fa5AfDbd9CC3BD1B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000097090528e131bd13cbce40e7fa5afdbd9cc3bd1b


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.