ETH Price: $3,461.17 (+1.56%)
Gas: 7 Gwei

Token

 

Overview

Max Total Supply

0

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
magiceth.eth
0x32b21910f7bde24ee9dd345e17b679f433773fd4
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:
CandyShop

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 2000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 2 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 5 of 15 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 6 of 15 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        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. 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 7 of 15 : ERC1155Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 9 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 14 of 15 : CandyShop.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "../interfaces/ICandyShop.sol";

contract CandyShop is ERC1155Pausable, Ownable, ReentrancyGuard, ICandyShop {
    struct SKU {
        uint256 id;
        uint256 price;
        string name;
    }

    struct SKUInput {
        uint256 price;
        string name;
    }

    mapping(uint256 => SKU) public inventory;
    mapping(string => uint256) public skuIds;
    bytes32[] names;
    address public chainDreamersAddress;

    function addSku(SKUInput[] memory _skus) external onlyOwner {
        for (uint256 i = 0; i < _skus.length; i++) {
            if (names.length > 0) {
                require(
                    names[skuIds[_skus[i].name]] !=
                        keccak256(bytes(_skus[i].name)),
                    "Sku already exists"
                );
            }
            uint256 tokenId = names.length;
            skuIds[_skus[i].name] = tokenId;
            names.push(keccak256(bytes(_skus[i].name)));
            inventory[tokenId] = SKU(tokenId, _skus[i].price, _skus[i].name);
        }
    }

    function setChainDreamersAddress(address _chainDreamersAddress)
        external
        onlyOwner
    {
        chainDreamersAddress = _chainDreamersAddress;
    }

    function mint(uint256 tokenId, uint256 amount)
        external
        payable
        nonReentrant
    {
        require(tokenId < names.length, "This candy does not exist yet");
        require(
            msg.value == inventory[tokenId].price * amount,
            "You have to pay the price to eat candies"
        );
        _mint(_msgSender(), tokenId, amount, "");
        setApprovalForAll(chainDreamersAddress, true);
    }

    function mintBatch(uint256[] calldata tokenIds, uint256[] calldata amounts)
        external
        payable
        nonReentrant
    {
        uint256 price;
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIds[i] < names.length,
                "This candy does not exist yet"
            );
            price += inventory[tokenIds[i]].price * amounts[i];
        }

        require(msg.value == price, "You have to pay the price to eat candies");

        _mintBatch(_msgSender(), tokenIds, amounts, "");
        setApprovalForAll(chainDreamersAddress, true);
    }

    function burn(
        address from,
        uint256 tokenId,
        uint256 amount
    ) external override nonReentrant {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _burn(from, tokenId, amount);
    }

    function burnBatch(
        address from,
        uint256[] calldata tokenIds,
        uint256[] calldata amounts
    ) external override nonReentrant {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _burnBatch(from, tokenIds, amounts);
    }

    constructor(string memory uri_) ERC1155(uri_) {}

    receive() external payable {}

    function withdraw() public onlyOwner {
        (bool success, ) = _msgSender().call{value: address(this).balance}("");
        require(success, "Withdrawal failed");
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }
}

File 15 of 15 : ICandyShop.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface ICandyShop {
    function burnBatch(
        address from,
        uint256[] calldata tokenIds,
        uint256[] calldata amounts
    ) external;

    function burn(
        address from,
        uint256 tokenId,
        uint256 amount
    ) external;
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "details": {
      "constantOptimizer": true,
      "cse": true,
      "deduplicate": true,
      "inliner": true,
      "jumpdestRemover": true,
      "orderLiterals": true,
      "peephole": true,
      "yul": true,
      "yulDetails": {
        "optimizerSteps": "dhfoDgvulfnTUtnIf",
        "stackAllocation": true
      }
    },
    "runs": 2000
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"internalType":"struct CandyShop.SKUInput[]","name":"_skus","type":"tuple[]"}],"name":"addSku","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainDreamersAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"inventory","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_chainDreamersAddress","type":"address"}],"name":"setChainDreamersAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"skuIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620035de380380620035de8339810160408190526200003491620002b8565b80620000408162000062565b506003805460ff1916905562000056336200007b565b5060016004556200033f565b805162000077906002906020840190620000d5565b5050565b600380546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000e3906200030e565b90600052602060002090601f01602090048101928262000107576000855562000152565b82601f106200012257805160ff191683800117855562000152565b8280016001018555821562000152579182015b828111156200015257825182559160200191906001019062000135565b506200016092915062000164565b5090565b5b8082111562000160576000815560010162000165565b634e487b7160e01b600052604160045260246000fd5b601f19601f83011681016001600160401b0381118282101715620001b957620001b96200017b565b6040525050565b6000620001cc60405190565b9050620001da828262000191565b919050565b60006001600160401b03821115620001fb57620001fb6200017b565b601f19601f83011660200192915050565b60005b83811015620002295781810151838201526020016200020f565b8381111562000239576000848401525b50505050565b6000620002566200025084620001df565b620001c0565b905082815260208101848484011115620002735762000273600080fd5b620002808482856200020c565b509392505050565b600082601f8301126200029e576200029e600080fd5b8151620002b08482602086016200023f565b949350505050565b600060208284031215620002cf57620002cf600080fd5b81516001600160401b03811115620002ea57620002ea600080fd5b620002b08482850162000288565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806200032357607f821691505b60208210811415620003395762000339620002f8565b50919050565b61328f806200034f6000396000f3fe60806040526004361061018e5760003560e01c80636b20c454116100d6578063d351cfdc1161007f578063f2fde38b11610059578063f2fde38b1461048b578063f5298aca146104ab578063fbc7571f146104cb57600080fd5b8063d351cfdc1461040f578063e985e9c514610422578063f242432a1461046b57600080fd5b80638da5cb5b116100b05780638da5cb5b146103ac578063a22cb465146103cf578063a4fd6a04146103ef57600080fd5b80636b20c45414610362578063715018a6146103825780638456cb591461039757600080fd5b80633f4ba83a11610138578063545a149911610112578063545a1499146102e55780635952c55d146103125780635c975abb1461034a57600080fd5b80633f4ba83a146102745780634272ee18146102895780634e1273f4146102b857600080fd5b80631b2ef1ca116101695780631b2ef1ca1461022a5780632eb2c2d61461023f5780633ccfd60b1461025f57600080fd5b8062fdd58e1461019a57806301ffc9a7146101d05780630e89341c146101fd57600080fd5b3661019557005b600080fd5b3480156101a657600080fd5b506101ba6101b5366004611df0565b6104eb565b6040516101c79190611e35565b60405180910390f35b3480156101dc57600080fd5b506101f06101eb366004611e76565b610545565b6040516101c79190611ea7565b34801561020957600080fd5b5061021d610218366004611eb5565b610628565b6040516101c79190611f38565b61023d610238366004611f50565b6106bc565b005b34801561024b57600080fd5b5061023d61025a366004612106565b61077b565b34801561026b57600080fd5b5061023d6107c7565b34801561028057600080fd5b5061023d610862565b34801561029557600080fd5b506102a96102a4366004611eb5565b61089c565b6040516101c7939291906121cf565b3480156102c457600080fd5b506102d86102d3366004612278565b610947565b6040516101c7919061233e565b3480156102f157600080fd5b50600854610305906001600160a01b031681565b6040516101c79190612358565b34801561031e57600080fd5b506101ba61032d366004612366565b805160208183018101805160068252928201919093012091525481565b34801561035657600080fd5b5060035460ff166101f0565b34801561036e57600080fd5b5061023d61037d3660046123f3565b610a2f565b34801561038e57600080fd5b5061023d610b09565b3480156103a357600080fd5b5061023d610b43565b3480156103b857600080fd5b5060035461010090046001600160a01b0316610305565b3480156103db57600080fd5b5061023d6103ea366004612496565b610b7b565b3480156103fb57600080fd5b5061023d61040a3660046125bf565b610b8a565b61023d61041d3660046125fa565b610da4565b34801561042e57600080fd5b506101f061043d366004612673565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561047757600080fd5b5061023d6104863660046126a6565b610f34565b34801561049757600080fd5b5061023d6104a6366004612700565b610f79565b3480156104b757600080fd5b5061023d6104c6366004612721565b610fd8565b3480156104d757600080fd5b5061023d6104e6366004612700565b61104d565b60006001600160a01b03831661051c5760405162461bcd60e51b8152600401610513906127cb565b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806105d857507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061053f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461053f565b606060028054610637906127f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610663906127f1565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b50505050509050919050565b600260045414156106df5760405162461bcd60e51b815260040161051390612850565b600260045560075482106107055760405162461bcd60e51b815260040161051390612892565b6000828152600560205260409020600101546107229082906128b8565b34146107405760405162461bcd60e51b81526004016105139061292f565b61075b338383604051806020016040528060008152506110b7565b600854610772906001600160a01b03166001610b7b565b50506001600455565b6001600160a01b0385163314806107975750610797853361043d565b6107b35760405162461bcd60e51b815260040161051390612997565b6107c0858585858561119b565b5050505050565b6003546001600160a01b036101009091041633146107f75760405162461bcd60e51b8152600401610513906129d7565b604051600090339047908381818185875af1925050503d8060008114610839576040519150601f19603f3d011682016040523d82523d6000602084013e61083e565b606091505b505090508061085f5760405162461bcd60e51b815260040161051390612a19565b50565b6003546001600160a01b036101009091041633146108925760405162461bcd60e51b8152600401610513906129d7565b61089a611345565b565b600560205260009081526040902080546001820154600283018054929391926108c4906127f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108f0906127f1565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905083565b6060815183511461096a5760405162461bcd60e51b815260040161051390612a81565b6000835167ffffffffffffffff81111561098657610986611f72565b6040519080825280602002602001820160405280156109af578160200160208202803683370190505b50905060005b8451811015610a27576109fa8582815181106109d3576109d3612a91565b60200260200101518583815181106109ed576109ed612a91565b60200260200101516104eb565b828281518110610a0c57610a0c612a91565b6020908102919091010152610a2081612aa7565b90506109b5565b509392505050565b60026004541415610a525760405162461bcd60e51b815260040161051390612850565b60026004556001600160a01b038516331480610a735750610a73853361043d565b610a8f5760405162461bcd60e51b815260040161051390612997565b610afd85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920191909152506113ab92505050565b50506001600455505050565b6003546001600160a01b03610100909104163314610b395760405162461bcd60e51b8152600401610513906129d7565b61089a6000611539565b6003546001600160a01b03610100909104163314610b735760405162461bcd60e51b8152600401610513906129d7565b61089a6115aa565b610b86338383611602565b5050565b6003546001600160a01b03610100909104163314610bba5760405162461bcd60e51b8152600401610513906129d7565b60005b8151811015610b865760075415610c6a57818181518110610be057610be0612a91565b6020026020010151602001518051906020012060076006848481518110610c0957610c09612a91565b602002602001015160200151604051610c229190612ae4565b90815260200160405180910390205481548110610c4157610c41612a91565b90600052602060002001541415610c6a5760405162461bcd60e51b815260040161051390612b20565b60075482518190600690859085908110610c8657610c86612a91565b602002602001015160200151604051610c9f9190612ae4565b9081526020016040518091039020819055506007838381518110610cc557610cc5612a91565b6020026020010151602001518051906020012090806001815401808255809150506001900390600052602060002001600090919091909150556040518060600160405280828152602001848481518110610d2157610d21612a91565b6020026020010151600001518152602001848481518110610d4457610d44612a91565b602090810291909101810151810151909152600083815260058252604090819020835181558383015160018201559083015180519192610d8c92600285019290910190611d16565b50905050508080610d9c90612aa7565b915050610bbd565b60026004541415610dc75760405162461bcd60e51b815260040161051390612850565b60026004556000805b84811015610e8157600754868683818110610ded57610ded612a91565b9050602002013510610e115760405162461bcd60e51b815260040161051390612892565b838382818110610e2357610e23612a91565b9050602002013560056000888885818110610e4057610e40612a91565b90506020020135815260200190815260200160002060010154610e6391906128b8565b610e6d9083612b30565b915080610e7981612aa7565b915050610dd0565b50803414610ea15760405162461bcd60e51b81526004016105139061292f565b610f1d3386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284376000920182905250604080516020810190915290815292506116a5915050565b600854610afd906001600160a01b03166001610b7b565b6001600160a01b038516331480610f505750610f50853361043d565b610f6c5760405162461bcd60e51b815260040161051390612ba0565b6107c085858585856117ff565b6003546001600160a01b03610100909104163314610fa95760405162461bcd60e51b8152600401610513906129d7565b6001600160a01b038116610fcf5760405162461bcd60e51b815260040161051390612c08565b61085f81611539565b60026004541415610ffb5760405162461bcd60e51b815260040161051390612850565b60026004556001600160a01b03831633148061101c575061101c833361043d565b6110385760405162461bcd60e51b815260040161051390612997565b611043838383611928565b5050600160045550565b6003546001600160a01b0361010090910416331461107d5760405162461bcd60e51b8152600401610513906129d7565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b0384166110dd5760405162461bcd60e51b815260040161051390612c70565b336110fd816000876110ee88611a2c565b6110f788611a2c565b87611a77565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061112d908490612b30565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611184929190612c80565b60405180910390a46107c081600087878787611a9a565b81518351146111bc5760405162461bcd60e51b815260040161051390612cf3565b6001600160a01b0384166111e25760405162461bcd60e51b815260040161051390612d5b565b336111f1818787878787611a77565b60005b84518110156112d757600085828151811061121157611211612a91565b60200260200101519050600085838151811061122f5761122f612a91565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561127f5760405162461bcd60e51b815260040161051390612dc3565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112bc908490612b30565b92505081905550505050806112d090612aa7565b90506111f4565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611327929190612dd3565b60405180910390a461133d818787878787611c02565b505050505050565b60035460ff166113675760405162461bcd60e51b815260040161051390612e2a565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516113a19190612358565b60405180910390a1565b6001600160a01b0383166113d15760405162461bcd60e51b815260040161051390612e92565b80518251146113f25760405162461bcd60e51b815260040161051390612cf3565b600033905061141581856000868660405180602001604052806000815250611a77565b60005b83518110156114da57600084828151811061143557611435612a91565b60200260200101519050600084838151811061145357611453612a91565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156114a35760405162461bcd60e51b815260040161051390612efa565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806114d281612aa7565b915050611418565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161152b929190612dd3565b60405180910390a450505050565b600380546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156115cd5760405162461bcd60e51b815260040161051390612f3c565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113943390565b816001600160a01b0316836001600160a01b031614156116345760405162461bcd60e51b815260040161051390612fa4565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611698908590611ea7565b60405180910390a3505050565b6001600160a01b0384166116cb5760405162461bcd60e51b815260040161051390612c70565b81518351146116ec5760405162461bcd60e51b815260040161051390612cf3565b336116fc81600087878787611a77565b60005b84518110156117975783818151811061171a5761171a612a91565b602002602001015160008087848151811061173757611737612a91565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461177f9190612b30565b9091555081905061178f81612aa7565b9150506116ff565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117e8929190612dd3565b60405180910390a46107c081600087878787611c02565b6001600160a01b0384166118255760405162461bcd60e51b815260040161051390612d5b565b336118358187876110ee88611a2c565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156118765760405162461bcd60e51b815260040161051390612dc3565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906118b3908490612b30565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611909929190612c80565b60405180910390a461191f828888888888611a9a565b50505050505050565b6001600160a01b03831661194e5760405162461bcd60e51b815260040161051390612e92565b3361197d8185600061195f87611a2c565b61196887611a2c565b60405180602001604052806000815250611a77565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156119be5760405162461bcd60e51b815260040161051390612efa565b6000848152602081815260408083206001600160a01b03808a16808652919093528184208786039055905190918516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6290611a1d9089908990612c80565b60405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611a6657611a66612a91565b602090810291909101015292915050565b60035460ff161561133d5760405162461bcd60e51b81526004016105139061300c565b6001600160a01b0384163b1561133d576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190611af7908990899088908890889060040161301c565b602060405180830381600087803b158015611b1157600080fd5b505af1925050508015611b41575060408051601f3d908101601f19168201909252611b3e91810190613079565b60015b611ba157611b4d61309a565b806308c379a01415611b875750611b626130b6565b80611b6d5750611b89565b8060405162461bcd60e51b81526004016105139190611f38565b505b60405162461bcd60e51b81526004016105139061318c565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e61000000000000000000000000000000000000000000000000000000001461191f5760405162461bcd60e51b8152600401610513906131f4565b6001600160a01b0384163b1561133d576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c8190611c5f9089908990889088908890600401613204565b602060405180830381600087803b158015611c7957600080fd5b505af1925050508015611ca9575060408051601f3d908101601f19168201909252611ca691810190613079565b60015b611cb557611b4d61309a565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c81000000000000000000000000000000000000000000000000000000001461191f5760405162461bcd60e51b8152600401610513906131f4565b828054611d22906127f1565b90600052602060002090601f016020900481019282611d445760008555611d8a565b82601f10611d5d57805160ff1916838001178555611d8a565b82800160010185558215611d8a579182015b82811115611d8a578251825591602001919060010190611d6f565b50611d96929150611d9a565b5090565b5b80821115611d965760008155600101611d9b565b60006001600160a01b03821661053f565b611dc981611daf565b811461085f57600080fd5b803561053f81611dc0565b80611dc9565b803561053f81611ddf565b60008060408385031215611e0657611e06600080fd5b6000611e128585611dd4565b9250506020611e2385828601611de5565b9150509250929050565b805b82525050565b6020810161053f8284611e2d565b7fffffffff000000000000000000000000000000000000000000000000000000008116611dc9565b803561053f81611e43565b600060208284031215611e8b57611e8b600080fd5b6000611e978484611e6b565b949350505050565b801515611e2f565b6020810161053f8284611e9f565b600060208284031215611eca57611eca600080fd5b6000611e978484611de5565b60005b83811015611ef1578181015183820152602001611ed9565b83811115611f00576000848401525b50505050565b6000611f10825190565b808452602084019350611f27818560208601611ed6565b601f01601f19169290920192915050565b60208082528101611f498184611f06565b9392505050565b60008060408385031215611f6657611f66600080fd5b6000611e128585611de5565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611fae57611fae611f72565b6040525050565b6000611fc060405190565b9050611fcc8282611f88565b919050565b600067ffffffffffffffff821115611feb57611feb611f72565b5060209081020190565b600061200861200384611fd1565b611fb5565b8381529050602080820190840283018581111561202757612027600080fd5b835b818110156120495761203b8782611de5565b835260209283019201612029565b5050509392505050565b600082601f83011261206757612067600080fd5b8135611e97848260208601611ff5565b600067ffffffffffffffff82111561209157612091611f72565b601f19601f83011660200192915050565b82818337506000910152565b60006120bc61200384612077565b9050828152602081018484840111156120d7576120d7600080fd5b610a278482856120a2565b600082601f8301126120f6576120f6600080fd5b8135611e978482602086016120ae565b600080600080600060a0868803121561212157612121600080fd5b600061212d8888611dd4565b955050602061213e88828901611dd4565b945050604086013567ffffffffffffffff81111561215e5761215e600080fd5b61216a88828901612053565b935050606086013567ffffffffffffffff81111561218a5761218a600080fd5b61219688828901612053565b925050608086013567ffffffffffffffff8111156121b6576121b6600080fd5b6121c2888289016120e2565b9150509295509295909350565b606081016121dd8286611e2d565b6121ea6020830185611e2d565b81810360408301526121fc8184611f06565b95945050505050565b600061221361200384611fd1565b8381529050602080820190840283018581111561223257612232600080fd5b835b81811015612049576122468782611dd4565b835260209283019201612234565b600082601f83011261226857612268600080fd5b8135611e97848260208601612205565b6000806040838503121561228e5761228e600080fd5b823567ffffffffffffffff8111156122a8576122a8600080fd5b6122b485828601612254565b925050602083013567ffffffffffffffff8111156122d4576122d4600080fd5b611e2385828601612053565b6122ea8282611e2d565b5060200190565b60200190565b6000612301825190565b808452602093840193830160005b8281101561233457815161232387826122e0565b96505060208201915060010161230f565b5093949350505050565b60208082528101611f4981846122f7565b611e2f81611daf565b6020810161053f828461234f565b60006020828403121561237b5761237b600080fd5b813567ffffffffffffffff81111561239557612395600080fd5b611e97848285016120e2565b60008083601f8401126123b6576123b6600080fd5b50813567ffffffffffffffff8111156123d1576123d1600080fd5b6020830191508360208202830111156123ec576123ec600080fd5b9250929050565b60008060008060006060868803121561240e5761240e600080fd5b600061241a8888611dd4565b955050602086013567ffffffffffffffff81111561243a5761243a600080fd5b612446888289016123a1565b9450945050604086013567ffffffffffffffff81111561246857612468600080fd5b612474888289016123a1565b92509250509295509295909350565b801515611dc9565b803561053f81612483565b600080604083850312156124ac576124ac600080fd5b60006124b88585611dd4565b9250506020611e238582860161248b565b6000604082840312156124de576124de600080fd5b6124e86040611fb5565b905060006124f68484611de5565b90820152602082013567ffffffffffffffff81111561251757612517600080fd5b612523848285016120e2565b60208301525092915050565b600061253d61200384611fd1565b8381529050602080820190840283018581111561255c5761255c600080fd5b835b8181101561204957803567ffffffffffffffff81111561258057612580600080fd5b850161258c88826124c9565b8452506020928301920161255e565b600082601f8301126125af576125af600080fd5b8135611e9784826020860161252f565b6000602082840312156125d4576125d4600080fd5b813567ffffffffffffffff8111156125ee576125ee600080fd5b611e978482850161259b565b6000806000806040858703121561261357612613600080fd5b843567ffffffffffffffff81111561262d5761262d600080fd5b612639878288016123a1565b9450945050602085013567ffffffffffffffff81111561265b5761265b600080fd5b612667878288016123a1565b95989497509550505050565b6000806040838503121561268957612689600080fd5b60006126958585611dd4565b9250506020611e2385828601611dd4565b600080600080600060a086880312156126c1576126c1600080fd5b60006126cd8888611dd4565b95505060206126de88828901611dd4565b94505060406126ef88828901611de5565b935050606061219688828901611de5565b60006020828403121561271557612715600080fd5b6000611e978484611dd4565b60008060006060848603121561273957612739600080fd5b60006127458686611dd4565b935050602061275686828701611de5565b925050604061276786828701611de5565b9150509250925092565b602b8152602081017f455243313135353a2062616c616e636520717565727920666f7220746865207a81527f65726f2061646472657373000000000000000000000000000000000000000000602082015290505b60400190565b6020808252810161053f81612771565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061280557607f821691505b60208210811415612818576128186127db565b50919050565b601f8152602081017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815290506122f1565b6020808252810161053f8161281e565b601d8152602081017f546869732063616e647920646f6573206e6f7420657869737420796574000000815290506122f1565b6020808252810161053f81612860565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128d2576128d26128a2565b500290565b60288152602081017f596f75206861766520746f207061792074686520707269636520746f2065617481527f2063616e64696573000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f816128d7565b60328152602081017f455243313135353a207472616e736665722063616c6c6572206973206e6f742081527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015290506127c5565b6020808252810161053f8161293f565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526122f1565b6020808252810161053f816129a7565b60118152602081017f5769746864726177616c206661696c6564000000000000000000000000000000815290506122f1565b6020808252810161053f816129e7565b60298152602081017f455243313135353a206163636f756e747320616e6420696473206c656e67746881527f206d69736d617463680000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612a29565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612abb57612abb6128a2565b5060010190565b6000612acc825190565b612ada818560208601611ed6565b9290920192915050565b61053f8183612ac2565b60128152602081017f536b7520616c7265616479206578697374730000000000000000000000000000815290506122f1565b6020808252810161053f81612aee565b60008219821115612b4357612b436128a2565b500190565b60298152602081017f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7281527f20617070726f7665640000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612b48565b60268152602081017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f6464726573730000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612bb0565b60218152602081017f455243313135353a206d696e7420746f20746865207a65726f2061646472657381527f7300000000000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612c18565b60408101612c8e8285611e2d565b611f496020830184611e2d565b60288152602081017f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682081527f6d69736d61746368000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612c9b565b60258152602081017f455243313135353a207472616e7366657220746f20746865207a65726f20616481527f6472657373000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612d03565b602a8152602081017f455243313135353a20696e73756666696369656e742062616c616e636520666f81527f72207472616e7366657200000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612d6b565b60408082528101612de481856122f7565b90508181036020830152611e9781846122f7565b60148152602081017f5061757361626c653a206e6f7420706175736564000000000000000000000000815290506122f1565b6020808252810161053f81612df8565b60238152602081017f455243313135353a206275726e2066726f6d20746865207a65726f206164647281527f6573730000000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612e3a565b60248152602081017f455243313135353a206275726e20616d6f756e7420657863656564732062616c81527f616e636500000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612ea2565b60108152602081017f5061757361626c653a2070617573656400000000000000000000000000000000815290506122f1565b6020808252810161053f81612f0a565b60298152602081017f455243313135353a2073657474696e6720617070726f76616c2073746174757381527f20666f722073656c660000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612f4c565b602c8152602081017f455243313135355061757361626c653a20746f6b656e207472616e736665722081527f7768696c65207061757365640000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612fb4565b60a0810161302a828861234f565b613037602083018761234f565b6130446040830186611e2d565b6130516060830185611e2d565b81810360808301526130638184611f06565b979650505050505050565b805161053f81611e43565b60006020828403121561308e5761308e600080fd5b6000611e97848461306e565b600060033d11156130b35760046000803e5060005160e01c5b90565b600060443d10156130c45790565b60405160043d036004823e80513d602482011167ffffffffffffffff821117156130ed57505090565b808201805167ffffffffffffffff811115613109575050505090565b80602083010160043d03850181111561312457505050505090565b50610a2781602001840185611f88565b60348152602081017f455243313135353a207472616e7366657220746f206e6f6e204552433131353581527f526563656976657220696d706c656d656e746572000000000000000000000000602082015290506127c5565b6020808252810161053f81613134565b60288152602081017f455243313135353a204552433131353552656365697665722072656a6563746581527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f8161319c565b60a08101613212828861234f565b61321f602083018761234f565b818103604083015261323181866122f7565b9050818103606083015261324581856122f7565b905081810360808301526130638184611f0656fea2646970667358221220fad9da03b4dc92796ab4e22f0845b21e9f268b7cfd2942a17bf7732e98693c4764736f6c634300080800330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f6170692e636861696e647265616d6572732e78797a2f746573742f63616e64792f746f6b656e732f7b69647d2f6d65746164617461000000

Deployed Bytecode

0x60806040526004361061018e5760003560e01c80636b20c454116100d6578063d351cfdc1161007f578063f2fde38b11610059578063f2fde38b1461048b578063f5298aca146104ab578063fbc7571f146104cb57600080fd5b8063d351cfdc1461040f578063e985e9c514610422578063f242432a1461046b57600080fd5b80638da5cb5b116100b05780638da5cb5b146103ac578063a22cb465146103cf578063a4fd6a04146103ef57600080fd5b80636b20c45414610362578063715018a6146103825780638456cb591461039757600080fd5b80633f4ba83a11610138578063545a149911610112578063545a1499146102e55780635952c55d146103125780635c975abb1461034a57600080fd5b80633f4ba83a146102745780634272ee18146102895780634e1273f4146102b857600080fd5b80631b2ef1ca116101695780631b2ef1ca1461022a5780632eb2c2d61461023f5780633ccfd60b1461025f57600080fd5b8062fdd58e1461019a57806301ffc9a7146101d05780630e89341c146101fd57600080fd5b3661019557005b600080fd5b3480156101a657600080fd5b506101ba6101b5366004611df0565b6104eb565b6040516101c79190611e35565b60405180910390f35b3480156101dc57600080fd5b506101f06101eb366004611e76565b610545565b6040516101c79190611ea7565b34801561020957600080fd5b5061021d610218366004611eb5565b610628565b6040516101c79190611f38565b61023d610238366004611f50565b6106bc565b005b34801561024b57600080fd5b5061023d61025a366004612106565b61077b565b34801561026b57600080fd5b5061023d6107c7565b34801561028057600080fd5b5061023d610862565b34801561029557600080fd5b506102a96102a4366004611eb5565b61089c565b6040516101c7939291906121cf565b3480156102c457600080fd5b506102d86102d3366004612278565b610947565b6040516101c7919061233e565b3480156102f157600080fd5b50600854610305906001600160a01b031681565b6040516101c79190612358565b34801561031e57600080fd5b506101ba61032d366004612366565b805160208183018101805160068252928201919093012091525481565b34801561035657600080fd5b5060035460ff166101f0565b34801561036e57600080fd5b5061023d61037d3660046123f3565b610a2f565b34801561038e57600080fd5b5061023d610b09565b3480156103a357600080fd5b5061023d610b43565b3480156103b857600080fd5b5060035461010090046001600160a01b0316610305565b3480156103db57600080fd5b5061023d6103ea366004612496565b610b7b565b3480156103fb57600080fd5b5061023d61040a3660046125bf565b610b8a565b61023d61041d3660046125fa565b610da4565b34801561042e57600080fd5b506101f061043d366004612673565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561047757600080fd5b5061023d6104863660046126a6565b610f34565b34801561049757600080fd5b5061023d6104a6366004612700565b610f79565b3480156104b757600080fd5b5061023d6104c6366004612721565b610fd8565b3480156104d757600080fd5b5061023d6104e6366004612700565b61104d565b60006001600160a01b03831661051c5760405162461bcd60e51b8152600401610513906127cb565b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806105d857507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061053f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461053f565b606060028054610637906127f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610663906127f1565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b50505050509050919050565b600260045414156106df5760405162461bcd60e51b815260040161051390612850565b600260045560075482106107055760405162461bcd60e51b815260040161051390612892565b6000828152600560205260409020600101546107229082906128b8565b34146107405760405162461bcd60e51b81526004016105139061292f565b61075b338383604051806020016040528060008152506110b7565b600854610772906001600160a01b03166001610b7b565b50506001600455565b6001600160a01b0385163314806107975750610797853361043d565b6107b35760405162461bcd60e51b815260040161051390612997565b6107c0858585858561119b565b5050505050565b6003546001600160a01b036101009091041633146107f75760405162461bcd60e51b8152600401610513906129d7565b604051600090339047908381818185875af1925050503d8060008114610839576040519150601f19603f3d011682016040523d82523d6000602084013e61083e565b606091505b505090508061085f5760405162461bcd60e51b815260040161051390612a19565b50565b6003546001600160a01b036101009091041633146108925760405162461bcd60e51b8152600401610513906129d7565b61089a611345565b565b600560205260009081526040902080546001820154600283018054929391926108c4906127f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108f0906127f1565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905083565b6060815183511461096a5760405162461bcd60e51b815260040161051390612a81565b6000835167ffffffffffffffff81111561098657610986611f72565b6040519080825280602002602001820160405280156109af578160200160208202803683370190505b50905060005b8451811015610a27576109fa8582815181106109d3576109d3612a91565b60200260200101518583815181106109ed576109ed612a91565b60200260200101516104eb565b828281518110610a0c57610a0c612a91565b6020908102919091010152610a2081612aa7565b90506109b5565b509392505050565b60026004541415610a525760405162461bcd60e51b815260040161051390612850565b60026004556001600160a01b038516331480610a735750610a73853361043d565b610a8f5760405162461bcd60e51b815260040161051390612997565b610afd85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920191909152506113ab92505050565b50506001600455505050565b6003546001600160a01b03610100909104163314610b395760405162461bcd60e51b8152600401610513906129d7565b61089a6000611539565b6003546001600160a01b03610100909104163314610b735760405162461bcd60e51b8152600401610513906129d7565b61089a6115aa565b610b86338383611602565b5050565b6003546001600160a01b03610100909104163314610bba5760405162461bcd60e51b8152600401610513906129d7565b60005b8151811015610b865760075415610c6a57818181518110610be057610be0612a91565b6020026020010151602001518051906020012060076006848481518110610c0957610c09612a91565b602002602001015160200151604051610c229190612ae4565b90815260200160405180910390205481548110610c4157610c41612a91565b90600052602060002001541415610c6a5760405162461bcd60e51b815260040161051390612b20565b60075482518190600690859085908110610c8657610c86612a91565b602002602001015160200151604051610c9f9190612ae4565b9081526020016040518091039020819055506007838381518110610cc557610cc5612a91565b6020026020010151602001518051906020012090806001815401808255809150506001900390600052602060002001600090919091909150556040518060600160405280828152602001848481518110610d2157610d21612a91565b6020026020010151600001518152602001848481518110610d4457610d44612a91565b602090810291909101810151810151909152600083815260058252604090819020835181558383015160018201559083015180519192610d8c92600285019290910190611d16565b50905050508080610d9c90612aa7565b915050610bbd565b60026004541415610dc75760405162461bcd60e51b815260040161051390612850565b60026004556000805b84811015610e8157600754868683818110610ded57610ded612a91565b9050602002013510610e115760405162461bcd60e51b815260040161051390612892565b838382818110610e2357610e23612a91565b9050602002013560056000888885818110610e4057610e40612a91565b90506020020135815260200190815260200160002060010154610e6391906128b8565b610e6d9083612b30565b915080610e7981612aa7565b915050610dd0565b50803414610ea15760405162461bcd60e51b81526004016105139061292f565b610f1d3386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284376000920182905250604080516020810190915290815292506116a5915050565b600854610afd906001600160a01b03166001610b7b565b6001600160a01b038516331480610f505750610f50853361043d565b610f6c5760405162461bcd60e51b815260040161051390612ba0565b6107c085858585856117ff565b6003546001600160a01b03610100909104163314610fa95760405162461bcd60e51b8152600401610513906129d7565b6001600160a01b038116610fcf5760405162461bcd60e51b815260040161051390612c08565b61085f81611539565b60026004541415610ffb5760405162461bcd60e51b815260040161051390612850565b60026004556001600160a01b03831633148061101c575061101c833361043d565b6110385760405162461bcd60e51b815260040161051390612997565b611043838383611928565b5050600160045550565b6003546001600160a01b0361010090910416331461107d5760405162461bcd60e51b8152600401610513906129d7565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b0384166110dd5760405162461bcd60e51b815260040161051390612c70565b336110fd816000876110ee88611a2c565b6110f788611a2c565b87611a77565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061112d908490612b30565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611184929190612c80565b60405180910390a46107c081600087878787611a9a565b81518351146111bc5760405162461bcd60e51b815260040161051390612cf3565b6001600160a01b0384166111e25760405162461bcd60e51b815260040161051390612d5b565b336111f1818787878787611a77565b60005b84518110156112d757600085828151811061121157611211612a91565b60200260200101519050600085838151811061122f5761122f612a91565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561127f5760405162461bcd60e51b815260040161051390612dc3565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112bc908490612b30565b92505081905550505050806112d090612aa7565b90506111f4565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611327929190612dd3565b60405180910390a461133d818787878787611c02565b505050505050565b60035460ff166113675760405162461bcd60e51b815260040161051390612e2a565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516113a19190612358565b60405180910390a1565b6001600160a01b0383166113d15760405162461bcd60e51b815260040161051390612e92565b80518251146113f25760405162461bcd60e51b815260040161051390612cf3565b600033905061141581856000868660405180602001604052806000815250611a77565b60005b83518110156114da57600084828151811061143557611435612a91565b60200260200101519050600084838151811061145357611453612a91565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156114a35760405162461bcd60e51b815260040161051390612efa565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806114d281612aa7565b915050611418565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161152b929190612dd3565b60405180910390a450505050565b600380546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156115cd5760405162461bcd60e51b815260040161051390612f3c565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113943390565b816001600160a01b0316836001600160a01b031614156116345760405162461bcd60e51b815260040161051390612fa4565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611698908590611ea7565b60405180910390a3505050565b6001600160a01b0384166116cb5760405162461bcd60e51b815260040161051390612c70565b81518351146116ec5760405162461bcd60e51b815260040161051390612cf3565b336116fc81600087878787611a77565b60005b84518110156117975783818151811061171a5761171a612a91565b602002602001015160008087848151811061173757611737612a91565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461177f9190612b30565b9091555081905061178f81612aa7565b9150506116ff565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117e8929190612dd3565b60405180910390a46107c081600087878787611c02565b6001600160a01b0384166118255760405162461bcd60e51b815260040161051390612d5b565b336118358187876110ee88611a2c565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156118765760405162461bcd60e51b815260040161051390612dc3565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906118b3908490612b30565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611909929190612c80565b60405180910390a461191f828888888888611a9a565b50505050505050565b6001600160a01b03831661194e5760405162461bcd60e51b815260040161051390612e92565b3361197d8185600061195f87611a2c565b61196887611a2c565b60405180602001604052806000815250611a77565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156119be5760405162461bcd60e51b815260040161051390612efa565b6000848152602081815260408083206001600160a01b03808a16808652919093528184208786039055905190918516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6290611a1d9089908990612c80565b60405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611a6657611a66612a91565b602090810291909101015292915050565b60035460ff161561133d5760405162461bcd60e51b81526004016105139061300c565b6001600160a01b0384163b1561133d576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190611af7908990899088908890889060040161301c565b602060405180830381600087803b158015611b1157600080fd5b505af1925050508015611b41575060408051601f3d908101601f19168201909252611b3e91810190613079565b60015b611ba157611b4d61309a565b806308c379a01415611b875750611b626130b6565b80611b6d5750611b89565b8060405162461bcd60e51b81526004016105139190611f38565b505b60405162461bcd60e51b81526004016105139061318c565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e61000000000000000000000000000000000000000000000000000000001461191f5760405162461bcd60e51b8152600401610513906131f4565b6001600160a01b0384163b1561133d576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c8190611c5f9089908990889088908890600401613204565b602060405180830381600087803b158015611c7957600080fd5b505af1925050508015611ca9575060408051601f3d908101601f19168201909252611ca691810190613079565b60015b611cb557611b4d61309a565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c81000000000000000000000000000000000000000000000000000000001461191f5760405162461bcd60e51b8152600401610513906131f4565b828054611d22906127f1565b90600052602060002090601f016020900481019282611d445760008555611d8a565b82601f10611d5d57805160ff1916838001178555611d8a565b82800160010185558215611d8a579182015b82811115611d8a578251825591602001919060010190611d6f565b50611d96929150611d9a565b5090565b5b80821115611d965760008155600101611d9b565b60006001600160a01b03821661053f565b611dc981611daf565b811461085f57600080fd5b803561053f81611dc0565b80611dc9565b803561053f81611ddf565b60008060408385031215611e0657611e06600080fd5b6000611e128585611dd4565b9250506020611e2385828601611de5565b9150509250929050565b805b82525050565b6020810161053f8284611e2d565b7fffffffff000000000000000000000000000000000000000000000000000000008116611dc9565b803561053f81611e43565b600060208284031215611e8b57611e8b600080fd5b6000611e978484611e6b565b949350505050565b801515611e2f565b6020810161053f8284611e9f565b600060208284031215611eca57611eca600080fd5b6000611e978484611de5565b60005b83811015611ef1578181015183820152602001611ed9565b83811115611f00576000848401525b50505050565b6000611f10825190565b808452602084019350611f27818560208601611ed6565b601f01601f19169290920192915050565b60208082528101611f498184611f06565b9392505050565b60008060408385031215611f6657611f66600080fd5b6000611e128585611de5565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611fae57611fae611f72565b6040525050565b6000611fc060405190565b9050611fcc8282611f88565b919050565b600067ffffffffffffffff821115611feb57611feb611f72565b5060209081020190565b600061200861200384611fd1565b611fb5565b8381529050602080820190840283018581111561202757612027600080fd5b835b818110156120495761203b8782611de5565b835260209283019201612029565b5050509392505050565b600082601f83011261206757612067600080fd5b8135611e97848260208601611ff5565b600067ffffffffffffffff82111561209157612091611f72565b601f19601f83011660200192915050565b82818337506000910152565b60006120bc61200384612077565b9050828152602081018484840111156120d7576120d7600080fd5b610a278482856120a2565b600082601f8301126120f6576120f6600080fd5b8135611e978482602086016120ae565b600080600080600060a0868803121561212157612121600080fd5b600061212d8888611dd4565b955050602061213e88828901611dd4565b945050604086013567ffffffffffffffff81111561215e5761215e600080fd5b61216a88828901612053565b935050606086013567ffffffffffffffff81111561218a5761218a600080fd5b61219688828901612053565b925050608086013567ffffffffffffffff8111156121b6576121b6600080fd5b6121c2888289016120e2565b9150509295509295909350565b606081016121dd8286611e2d565b6121ea6020830185611e2d565b81810360408301526121fc8184611f06565b95945050505050565b600061221361200384611fd1565b8381529050602080820190840283018581111561223257612232600080fd5b835b81811015612049576122468782611dd4565b835260209283019201612234565b600082601f83011261226857612268600080fd5b8135611e97848260208601612205565b6000806040838503121561228e5761228e600080fd5b823567ffffffffffffffff8111156122a8576122a8600080fd5b6122b485828601612254565b925050602083013567ffffffffffffffff8111156122d4576122d4600080fd5b611e2385828601612053565b6122ea8282611e2d565b5060200190565b60200190565b6000612301825190565b808452602093840193830160005b8281101561233457815161232387826122e0565b96505060208201915060010161230f565b5093949350505050565b60208082528101611f4981846122f7565b611e2f81611daf565b6020810161053f828461234f565b60006020828403121561237b5761237b600080fd5b813567ffffffffffffffff81111561239557612395600080fd5b611e97848285016120e2565b60008083601f8401126123b6576123b6600080fd5b50813567ffffffffffffffff8111156123d1576123d1600080fd5b6020830191508360208202830111156123ec576123ec600080fd5b9250929050565b60008060008060006060868803121561240e5761240e600080fd5b600061241a8888611dd4565b955050602086013567ffffffffffffffff81111561243a5761243a600080fd5b612446888289016123a1565b9450945050604086013567ffffffffffffffff81111561246857612468600080fd5b612474888289016123a1565b92509250509295509295909350565b801515611dc9565b803561053f81612483565b600080604083850312156124ac576124ac600080fd5b60006124b88585611dd4565b9250506020611e238582860161248b565b6000604082840312156124de576124de600080fd5b6124e86040611fb5565b905060006124f68484611de5565b90820152602082013567ffffffffffffffff81111561251757612517600080fd5b612523848285016120e2565b60208301525092915050565b600061253d61200384611fd1565b8381529050602080820190840283018581111561255c5761255c600080fd5b835b8181101561204957803567ffffffffffffffff81111561258057612580600080fd5b850161258c88826124c9565b8452506020928301920161255e565b600082601f8301126125af576125af600080fd5b8135611e9784826020860161252f565b6000602082840312156125d4576125d4600080fd5b813567ffffffffffffffff8111156125ee576125ee600080fd5b611e978482850161259b565b6000806000806040858703121561261357612613600080fd5b843567ffffffffffffffff81111561262d5761262d600080fd5b612639878288016123a1565b9450945050602085013567ffffffffffffffff81111561265b5761265b600080fd5b612667878288016123a1565b95989497509550505050565b6000806040838503121561268957612689600080fd5b60006126958585611dd4565b9250506020611e2385828601611dd4565b600080600080600060a086880312156126c1576126c1600080fd5b60006126cd8888611dd4565b95505060206126de88828901611dd4565b94505060406126ef88828901611de5565b935050606061219688828901611de5565b60006020828403121561271557612715600080fd5b6000611e978484611dd4565b60008060006060848603121561273957612739600080fd5b60006127458686611dd4565b935050602061275686828701611de5565b925050604061276786828701611de5565b9150509250925092565b602b8152602081017f455243313135353a2062616c616e636520717565727920666f7220746865207a81527f65726f2061646472657373000000000000000000000000000000000000000000602082015290505b60400190565b6020808252810161053f81612771565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061280557607f821691505b60208210811415612818576128186127db565b50919050565b601f8152602081017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815290506122f1565b6020808252810161053f8161281e565b601d8152602081017f546869732063616e647920646f6573206e6f7420657869737420796574000000815290506122f1565b6020808252810161053f81612860565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128d2576128d26128a2565b500290565b60288152602081017f596f75206861766520746f207061792074686520707269636520746f2065617481527f2063616e64696573000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f816128d7565b60328152602081017f455243313135353a207472616e736665722063616c6c6572206973206e6f742081527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015290506127c5565b6020808252810161053f8161293f565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526122f1565b6020808252810161053f816129a7565b60118152602081017f5769746864726177616c206661696c6564000000000000000000000000000000815290506122f1565b6020808252810161053f816129e7565b60298152602081017f455243313135353a206163636f756e747320616e6420696473206c656e67746881527f206d69736d617463680000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612a29565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612abb57612abb6128a2565b5060010190565b6000612acc825190565b612ada818560208601611ed6565b9290920192915050565b61053f8183612ac2565b60128152602081017f536b7520616c7265616479206578697374730000000000000000000000000000815290506122f1565b6020808252810161053f81612aee565b60008219821115612b4357612b436128a2565b500190565b60298152602081017f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7281527f20617070726f7665640000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612b48565b60268152602081017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f6464726573730000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612bb0565b60218152602081017f455243313135353a206d696e7420746f20746865207a65726f2061646472657381527f7300000000000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612c18565b60408101612c8e8285611e2d565b611f496020830184611e2d565b60288152602081017f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682081527f6d69736d61746368000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612c9b565b60258152602081017f455243313135353a207472616e7366657220746f20746865207a65726f20616481527f6472657373000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612d03565b602a8152602081017f455243313135353a20696e73756666696369656e742062616c616e636520666f81527f72207472616e7366657200000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612d6b565b60408082528101612de481856122f7565b90508181036020830152611e9781846122f7565b60148152602081017f5061757361626c653a206e6f7420706175736564000000000000000000000000815290506122f1565b6020808252810161053f81612df8565b60238152602081017f455243313135353a206275726e2066726f6d20746865207a65726f206164647281527f6573730000000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612e3a565b60248152602081017f455243313135353a206275726e20616d6f756e7420657863656564732062616c81527f616e636500000000000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612ea2565b60108152602081017f5061757361626c653a2070617573656400000000000000000000000000000000815290506122f1565b6020808252810161053f81612f0a565b60298152602081017f455243313135353a2073657474696e6720617070726f76616c2073746174757381527f20666f722073656c660000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612f4c565b602c8152602081017f455243313135355061757361626c653a20746f6b656e207472616e736665722081527f7768696c65207061757365640000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f81612fb4565b60a0810161302a828861234f565b613037602083018761234f565b6130446040830186611e2d565b6130516060830185611e2d565b81810360808301526130638184611f06565b979650505050505050565b805161053f81611e43565b60006020828403121561308e5761308e600080fd5b6000611e97848461306e565b600060033d11156130b35760046000803e5060005160e01c5b90565b600060443d10156130c45790565b60405160043d036004823e80513d602482011167ffffffffffffffff821117156130ed57505090565b808201805167ffffffffffffffff811115613109575050505090565b80602083010160043d03850181111561312457505050505090565b50610a2781602001840185611f88565b60348152602081017f455243313135353a207472616e7366657220746f206e6f6e204552433131353581527f526563656976657220696d706c656d656e746572000000000000000000000000602082015290506127c5565b6020808252810161053f81613134565b60288152602081017f455243313135353a204552433131353552656365697665722072656a6563746581527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015290506127c5565b6020808252810161053f8161319c565b60a08101613212828861234f565b61321f602083018761234f565b818103604083015261323181866122f7565b9050818103606083015261324581856122f7565b905081810360808301526130638184611f0656fea2646970667358221220fad9da03b4dc92796ab4e22f0845b21e9f268b7cfd2942a17bf7732e98693c4764736f6c63430008080033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f6170692e636861696e647265616d6572732e78797a2f746573742f63616e64792f746f6b656e732f7b69647d2f6d65746164617461000000

-----Decoded View---------------
Arg [0] : uri_ (string): https://api.chaindreamers.xyz/test/candy/tokens/{id}/metadata

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000003d
Arg [2] : 68747470733a2f2f6170692e636861696e647265616d6572732e78797a2f7465
Arg [3] : 73742f63616e64792f746f6b656e732f7b69647d2f6d65746164617461000000


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.