ETH Price: $3,459.28 (+2.10%)
Gas: 9 Gwei

Token

doh doh candy shop (CANDY)
 

Overview

Max Total Supply

1,594 CANDY

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x4b6a535dfbbd7bc4618f002cd5441602f6004896
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:
dohdohcandyshop

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : candy.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.9;

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

contract dohdohcandyshop is ERC1155Supply, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public name;
    string public symbol;

    uint256 public maxSupply;
    uint256 public maxPaidPerAddr;
    uint256 public price;

    bool public claimOpen;
    bool public saleOpen;
    bytes32 private merkleRoot;

    mapping(address => uint256) public claimedCounter;
    mapping(address => uint256) public paidCounter;

    constructor(string memory _name, string memory _symbol) ERC1155("ipfs://") {
        name = _name;
        symbol = _symbol;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    //paid accessors
    function setCandyPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setSaleStatus() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function setMaxPaidPerAddr(uint256 _maxPaidPerAddr) external onlyOwner {
        maxPaidPerAddr = _maxPaidPerAddr;
    }

    function setMaxSupplyCandy(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    //claim accessors
    function setClaimStatus() external onlyOwner {
        claimOpen = !claimOpen;
    }

    //merkleroot
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    // metadata
    function setTokenURI(string calldata _uri) external onlyOwner {
        _setURI(_uri);
    }

    function uri(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return
            string(
                abi.encodePacked(
                    super.uri(_tokenId),
                    Strings.toString(_tokenId),
                    ".json"
                )
            );
    }

    //dev mint
    function ownerMint(
        address _to,
        uint256 _id,
        uint256 _amount
    ) external onlyOwner {
        _mint(_to, _id, _amount, "");
    }

    //doh doh holder claim
    function claimCandy(
        uint256 _amount,
        bytes32[] calldata _merkleProof,
        uint256 _maxAmount
    ) public callerIsUser nonReentrant {
        address sender = _msgSender();

        require(claimOpen, "Claim is closed");
        require(
            _amount <= _maxAmount - claimedCounter[sender],
            "You have insufficient candy to claim"
        );
        require(_amount > 0, "Must claim more than 0 tokens");
        require(_verify(_merkleProof, sender, _maxAmount), "Invalid proof");

        claimedCounter[sender] += _amount;
        _mint(sender, 0, _amount, "");
    }

    function _verify(
        bytes32[] calldata _merkleProof,
        address _sender,
        uint256 _maxAmount
    ) private view returns (bool) {
        bytes32 leaf = keccak256(
            abi.encodePacked(_sender, _maxAmount.toString())
        );
        return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    //buy candy
    function buyCandy(uint256 _amount)
        external
        payable
        callerIsUser
        nonReentrant
    {
        require(_amount > 0, "Must mint more than 0 tokens");
        require(saleOpen, "Paid public mint is closed");
        require(
            paidCounter[msg.sender] + _amount <= maxPaidPerAddr,
            "Exceeds max per address"
        );
        require(price * _amount == msg.value, "Incorrect funds");
        require(totalSupply(0) + _amount <= maxSupply, "Reached max supply");

        paidCounter[msg.sender] = paidCounter[msg.sender] + _amount;
        _mint(msg.sender, 0, _amount, "");
    }

    //burn candy
    function burnCandy(uint256[] calldata _ids, uint256[] calldata _amounts)
        external
        onlyOwner
    {
        _burnBatch(msg.sender, _ids, _amounts);
    }

    //create and edit shop items
    mapping(uint256 => ShopItem) public ShopItems;

    struct ShopItem {
        uint256 currentSupply;
        uint256 maxSupply;
        uint256 maxPerAddr;
        uint256 candyPrice;
        bool saleActive;
    }

    /**
     * @notice Create a ShopItem.
     * @param _id The token id to set this item to. IDs start at 1 to avoid metadata conflicts with candy.
     * @param _shopItem ["currentSupply", "maxSupply", "maxPerAddr", "candyPrice", "saleActive"]
     */

    function createShopItem(uint256 _id, ShopItem calldata _shopItem)
        external
        onlyOwner
    {
        require(_id != 0, "ID of 0 is reserved for candy");
        require(
            ShopItems[_id].maxSupply == 0,
            "Shop item with that id already exists"
        );
        ShopItems[_id] = _shopItem;
    }

    //update max supply of item
    function updateMaxSupplyItem(uint256 _id, uint256 _maxSupply)
        external
        onlyOwner
    {
        require(ShopItems[_id].maxSupply > 0, "Shop item does not exist");
        ShopItems[_id].maxSupply = _maxSupply;
    }

    //update price (in candy) of item
    function updatePriceItem(uint256 _id, uint256 _newPrice)
        external
        onlyOwner
    {
        require(ShopItems[_id].maxSupply > 0, "Shop item does not exist");
        ShopItems[_id].candyPrice = _newPrice;
    }

    //update max per address
    function updateMaxPerAddrItem(uint256 _id, uint256 _newMaxPerAddr)
        external
        onlyOwner
    {
        require(ShopItems[_id].maxSupply > 0, "Shop item does not exist");
        ShopItems[_id].maxPerAddr = _newMaxPerAddr;
    }

    //toggle item sale status
    function updateSaleStatusItem(uint256 _id) external onlyOwner {
        require(ShopItems[_id].maxSupply > 0, "Shop item does not exist");
        ShopItems[_id].saleActive = !ShopItems[_id].saleActive;
    }

    //address=>id=>amount address has bought
    mapping(address => mapping(uint256 => uint256)) public numAlreadyBought;

    //buy shop items with candy
    function buyShopItems(
        uint256 _candyTotal,
        uint256[] calldata _ids,
        uint256[] calldata _amounts
    ) external nonReentrant {
        require(
            _ids.length == _amounts.length,
            "The length of ids and amounts is not the same"
        );

        uint256 totalPrice = 0;
        for (uint256 i = 0; i < _ids.length; i++) {
            require(
                ShopItems[_ids[i]].maxSupply > 0,
                "This item doesn't exist"
            );
            require(
                numAlreadyBought[msg.sender][_ids[i]] + _amounts[i] <=
                    ShopItems[_ids[i]].maxPerAddr,
                "Exceeds max per address for this item"
            );
            require(
                ShopItems[_ids[i]].saleActive == true,
                "This item is not currently for sale"
            );
            require(
                totalSupply(_ids[i]) + _amounts[i] <=
                    ShopItems[_ids[i]].maxSupply,
                "Exceeds max supply for this item"
            );
            //calculate total price here
            totalPrice += ShopItems[_ids[i]].candyPrice * _amounts[i];
        }
        require(totalPrice == _candyTotal, "Wrong amount of candy sent");

        //transfer candy to owner wallet and mint shop items
        safeTransferFrom(msg.sender, owner(), 0, _candyTotal, "");
        _mintBatch(msg.sender, _ids, _amounts, "");

        //update number address has bought and update supply of item
        for (uint256 j = 0; j < _ids.length; j++) {
            numAlreadyBought[msg.sender][_ids[j]] += _amounts[j];
            ShopItems[_ids[j]].currentSupply = totalSupply(_ids[j]);
        }
    }

    //admin
    function withdrawAll(address payable _to) external onlyOwner {
        _to.transfer(address(this).balance);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : 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 5 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

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

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

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

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

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 7 of 14 : 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 8 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 9 of 14 : 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 10 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

File 11 of 14 : 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 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 14 : 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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ShopItems","outputs":[{"internalType":"uint256","name":"currentSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxPerAddr","type":"uint256"},{"internalType":"uint256","name":"candyPrice","type":"uint256"},{"internalType":"bool","name":"saleActive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnCandy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyCandy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_candyTotal","type":"uint256"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"buyShopItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"}],"name":"claimCandy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"components":[{"internalType":"uint256","name":"currentSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxPerAddr","type":"uint256"},{"internalType":"uint256","name":"candyPrice","type":"uint256"},{"internalType":"bool","name":"saleActive","type":"bool"}],"internalType":"struct dohdohcandyshop.ShopItem","name":"_shopItem","type":"tuple"}],"name":"createShopItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPaidPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"numAlreadyBought","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"paidCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setCandyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPaidPerAddr","type":"uint256"}],"name":"setMaxPaidPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupplyCandy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_newMaxPerAddr","type":"uint256"}],"name":"updateMaxPerAddrItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"updateMaxSupplyItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePriceItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"updateSaleStatusItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003d5238038062003d52833981016040819052620000349162000280565b604080518082019091526007815266697066733a2f2f60c81b60208201526200005d81620000a2565b506200006933620000bb565b60016005558151620000839060069060208501906200010d565b508051620000999060079060208401906200010d565b50505062000327565b8051620000b79060029060208401906200010d565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011b90620002ea565b90600052602060002090601f0160209004810192826200013f57600085556200018a565b82601f106200015a57805160ff19168380011785556200018a565b828001600101855582156200018a579182015b828111156200018a5782518255916020019190600101906200016d565b50620001989291506200019c565b5090565b5b808211156200019857600081556001016200019d565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001db57600080fd5b81516001600160401b0380821115620001f857620001f8620001b3565b604051601f8301601f19908116603f01168101908282118183101715620002235762000223620001b3565b816040528381526020925086838588010111156200024057600080fd5b600091505b8382101562000264578582018301518183018401529082019062000245565b83821115620002765760008385830101525b9695505050505050565b600080604083850312156200029457600080fd5b82516001600160401b0380821115620002ac57600080fd5b620002ba86838701620001c9565b93506020850151915080821115620002d157600080fd5b50620002e085828601620001c9565b9150509250929050565b600181811c90821680620002ff57607f821691505b602082108114156200032157634e487b7160e01b600052602260045260246000fd5b50919050565b613a1b80620003376000396000f3fe6080604052600436106102505760003560e01c80639371c44211610139578063c232cc85116100b6578063eb9aa0bd1161007a578063eb9aa0bd14610774578063eddf865b14610794578063f242432a146107b4578063f2fde38b146107d4578063fa09e630146107f4578063ff986a831461081457600080fd5b8063c232cc851461065e578063d5abeb01146106d5578063e0df5b6f146106eb578063e0e5dcf01461070b578063e985e9c51461072b57600080fd5b8063a22cb465116100fd578063a22cb465146105bb578063ad795388146105db578063b602c15b146105fb578063bd85b03914610611578063c1e110ca1461063e57600080fd5b80639371c4421461053c57806395d89b411461055c578063972c2c041461057157806399288dbb14610586578063a035b1fe146105a557600080fd5b80634e1273f4116101d2578063715018a611610196578063715018a6146104725780637487bd08146104875780637cb64759146104a7578063827900e6146104c75780638da5cb5b146104e757806391c047281461050f57600080fd5b80634e1273f4146103a95780634f558e79146103d6578063502b33af146104055780635b67d5a91461041a5780636544cab91461043a57600080fd5b80631187640d116102195780631187640d1461031c578063211b79b61461033c5780632eb2c2d61461034f578063388b9fe01461036f5780634b8bcb581461038f57600080fd5b8062fdd58e1461025557806301ffc9a71461028857806306fdde03146102b85780630cf7419a146102da5780630e89341c146102fc575b600080fd5b34801561026157600080fd5b50610275610270366004612d0b565b610841565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004612d4d565b6108d8565b604051901515815260200161027f565b3480156102c457600080fd5b506102cd61092a565b60405161027f9190612dc9565b3480156102e657600080fd5b506102fa6102f5366004612ddc565b6109b8565b005b34801561030857600080fd5b506102cd610317366004612ddc565b6109e7565b34801561032857600080fd5b506102fa610337366004612df5565b610a22565b6102fa61034a366004612ddc565b610a8f565b34801561035b57600080fd5b506102fa61036a366004612f60565b610d2f565b34801561037b57600080fd5b506102fa61038a36600461300d565b610dc6565b34801561039b57600080fd5b50600b546102a89060ff1681565b3480156103b557600080fd5b506103c96103c4366004613042565b610e10565b60405161027f9190613149565b3480156103e257600080fd5b506102a86103f1366004612ddc565b600090815260036020526040902054151590565b34801561041157600080fd5b506102fa610f39565b34801561042657600080fd5b506102fa610435366004612ddc565b610f80565b34801561044657600080fd5b50610275610455366004612d0b565b601060209081526000928352604080842090915290825290205481565b34801561047e57600080fd5b506102fa610ffb565b34801561049357600080fd5b506102fa6104a2366004612ddc565b611031565b3480156104b357600080fd5b506102fa6104c2366004612ddc565b611060565b3480156104d357600080fd5b506102fa6104e236600461315c565b61108f565b3480156104f357600080fd5b506004546040516001600160a01b03909116815260200161027f565b34801561051b57600080fd5b5061027561052a366004613194565b600d6020526000908152604090205481565b34801561054857600080fd5b506102fa6105573660046131fc565b611193565b34801561056857600080fd5b506102cd61122b565b34801561057d57600080fd5b506102fa611238565b34801561059257600080fd5b50600b546102a890610100900460ff1681565b3480156105b157600080fd5b50610275600a5481565b3480156105c757600080fd5b506102fa6105d6366004613275565b611276565b3480156105e757600080fd5b506102fa6105f6366004612df5565b611285565b34801561060757600080fd5b5061027560095481565b34801561061d57600080fd5b5061027561062c366004612ddc565b60009081526003602052604090205490565b34801561064a57600080fd5b506102fa610659366004612ddc565b6112f2565b34801561066a57600080fd5b506106ab610679366004612ddc565b600f60205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a00161027f565b3480156106e157600080fd5b5061027560085481565b3480156106f757600080fd5b506102fa6107063660046132ae565b611321565b34801561071757600080fd5b506102fa61072636600461331f565b61138a565b34801561073757600080fd5b506102a8610746366004613398565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b506102fa61078f3660046133c6565b611931565b3480156107a057600080fd5b506102fa6107af366004612df5565b611b5b565b3480156107c057600080fd5b506102fa6107cf366004613418565b611bc8565b3480156107e057600080fd5b506102fa6107ef366004613194565b611c4f565b34801561080057600080fd5b506102fa61080f366004613194565b611cea565b34801561082057600080fd5b5061027561082f366004613194565b600e6020526000908152604090205481565b60006001600160a01b0383166108b25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061090957506001600160e01b031982166303a24d0760e21b145b8061092457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006805461093790613480565b80601f016020809104026020016040519081016040528092919081815260200182805461096390613480565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b505050505081565b6004546001600160a01b031633146109e25760405162461bcd60e51b81526004016108a9906134bb565b600855565b60606109f282611d49565b6109fb83611ddd565b604051602001610a0c9291906134f0565b6040516020818303038152906040529050919050565b6004546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016108a9906134bb565b6000828152600f6020526040902060010154610a7a5760405162461bcd60e51b81526004016108a99061352f565b6000918252600f602052604090912060030155565b323314610ade5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108a9565b60026005541415610b015760405162461bcd60e51b81526004016108a990613566565b600260055580610b535760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e730000000060448201526064016108a9565b600b54610100900460ff16610baa5760405162461bcd60e51b815260206004820152601a60248201527f50616964207075626c6963206d696e7420697320636c6f73656400000000000060448201526064016108a9565b600954336000908152600e6020526040902054610bc89083906135b3565b1115610c165760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d617820706572206164647265737300000000000000000060448201526064016108a9565b3481600a54610c2591906135cb565b14610c645760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b60448201526064016108a9565b6008546000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff54610c9d9083906135b3565b1115610ce05760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b60448201526064016108a9565b336000908152600e6020526040902054610cfb9082906135b3565b336000818152600e60209081526040808320949094558351908101909352808352610d27928490611ee2565b506001600555565b6001600160a01b038516331480610d4b5750610d4b8533610746565b610db25760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a9565b610dbf8585858585611fcb565b5050505050565b6004546001600160a01b03163314610df05760405162461bcd60e51b81526004016108a9906134bb565b610e0b83838360405180602001604052806000815250611ee2565b505050565b60608151835114610e755760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108a9565b600083516001600160401b03811115610e9057610e90612e17565b604051908082528060200260200182016040528015610eb9578160200160208202803683370190505b50905060005b8451811015610f3157610f04858281518110610edd57610edd6135ea565b6020026020010151858381518110610ef757610ef76135ea565b6020026020010151610841565b828281518110610f1657610f166135ea565b6020908102919091010152610f2a81613600565b9050610ebf565b509392505050565b6004546001600160a01b03163314610f635760405162461bcd60e51b81526004016108a9906134bb565b600b805461ff001981166101009182900460ff1615909102179055565b6004546001600160a01b03163314610faa5760405162461bcd60e51b81526004016108a9906134bb565b6000818152600f6020526040902060010154610fd85760405162461bcd60e51b81526004016108a99061352f565b6000908152600f60205260409020600401805460ff19811660ff90911615179055565b6004546001600160a01b031633146110255760405162461bcd60e51b81526004016108a9906134bb565b61102f6000612175565b565b6004546001600160a01b0316331461105b5760405162461bcd60e51b81526004016108a9906134bb565b600955565b6004546001600160a01b0316331461108a5760405162461bcd60e51b81526004016108a9906134bb565b600c55565b6004546001600160a01b031633146110b95760405162461bcd60e51b81526004016108a9906134bb565b816111065760405162461bcd60e51b815260206004820152601d60248201527f4944206f66203020697320726573657276656420666f722063616e647900000060448201526064016108a9565b6000828152600f6020526040902060010154156111735760405162461bcd60e51b815260206004820152602560248201527f53686f70206974656d2077697468207468617420696420616c72656164792065604482015264786973747360d81b60648201526084016108a9565b6000828152600f60205260409020819061118d828261361b565b50505050565b6004546001600160a01b031633146111bd5760405162461bcd60e51b81526004016108a9906134bb565b61118d33858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920191909152506121c792505050565b6007805461093790613480565b6004546001600160a01b031633146112625760405162461bcd60e51b81526004016108a9906134bb565b600b805460ff19811660ff90911615179055565b6112813383836123db565b5050565b6004546001600160a01b031633146112af5760405162461bcd60e51b81526004016108a9906134bb565b6000828152600f60205260409020600101546112dd5760405162461bcd60e51b81526004016108a99061352f565b6000918252600f602052604090912060020155565b6004546001600160a01b0316331461131c5760405162461bcd60e51b81526004016108a9906134bb565b600a55565b6004546001600160a01b0316331461134b5760405162461bcd60e51b81526004016108a9906134bb565b61128182828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124bc92505050565b600260055414156113ad5760405162461bcd60e51b81526004016108a990613566565b60026005558281146114175760405162461bcd60e51b815260206004820152602d60248201527f546865206c656e677468206f662069647320616e6420616d6f756e747320697360448201526c206e6f74207468652073616d6560981b60648201526084016108a9565b6000805b8481101561175d576000600f600088888581811061143b5761143b6135ea565b90506020020135815260200190815260200160002060010154116114a15760405162461bcd60e51b815260206004820152601760248201527f54686973206974656d20646f65736e277420657869737400000000000000000060448201526064016108a9565b600f60008787848181106114b7576114b76135ea565b905060200201358152602001908152602001600020600201548484838181106114e2576114e26135ea565b33600090815260106020908152604082209202939093013592909150898986818110611510576115106135ea565b9050602002013581526020019081526020016000205461153091906135b3565b111561158c5760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d617820706572206164647265737320666f722074686973604482015264206974656d60d81b60648201526084016108a9565b600f60008787848181106115a2576115a26135ea565b602090810292909201358352508101919091526040016000206004015460ff16151560011461161f5760405162461bcd60e51b815260206004820152602360248201527f54686973206974656d206973206e6f742063757272656e746c7920666f722073604482015262616c6560e81b60648201526084016108a9565b600f6000878784818110611635576116356135ea565b90506020020135815260200190815260200160002060010154848483818110611660576116606135ea565b9050602002013561169588888581811061167c5761167c6135ea565b9050602002013560009081526003602052604090205490565b61169f91906135b3565b11156116ed5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d617820737570706c7920666f722074686973206974656d60448201526064016108a9565b8383828181106116ff576116ff6135ea565b90506020020135600f600088888581811061171c5761171c6135ea565b9050602002013581526020019081526020016000206003015461173f91906135cb565b61174990836135b3565b91508061175581613600565b91505061141b565b508581146117ad5760405162461bcd60e51b815260206004820152601a60248201527f57726f6e6720616d6f756e74206f662063616e64792073656e7400000000000060448201526064016108a9565b6117db336117c36004546001600160a01b031690565b60008960405180602001604052806000815250611bc8565b6118573386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284376000920182905250604080516020810190915290815292506124cf915050565b60005b8481101561192357838382818110611874576118746135ea565b336000908152601060209081526040822092029390930135929091508888858181106118a2576118a26135ea565b90506020020135815260200190815260200160002060008282546118c691906135b3565b909155506118e1905086868381811061167c5761167c6135ea565b600f60008888858181106118f7576118f76135ea565b60209081029290920135835250810191909152604001600020558061191b81613600565b91505061185a565b505060016005555050505050565b3233146119805760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108a9565b600260055414156119a35760405162461bcd60e51b81526004016108a990613566565b6002600555600b54339060ff166119ee5760405162461bcd60e51b815260206004820152600f60248201526e10db185a5b481a5cc818db1bdcd959608a1b60448201526064016108a9565b6001600160a01b0381166000908152600d6020526040902054611a119083613665565b851115611a6c5760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520696e73756666696369656e742063616e647920746f20636044820152636c61696d60e01b60648201526084016108a9565b60008511611abc5760405162461bcd60e51b815260206004820152601d60248201527f4d75737420636c61696d206d6f7265207468616e203020746f6b656e7300000060448201526064016108a9565b611ac884848385612629565b611b045760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108a9565b6001600160a01b0381166000908152600d602052604081208054879290611b2c9084906135b3565b92505081905550611b4f8160008760405180602001604052806000815250611ee2565b50506001600555505050565b6004546001600160a01b03163314611b855760405162461bcd60e51b81526004016108a9906134bb565b6000828152600f6020526040902060010154611bb35760405162461bcd60e51b81526004016108a99061352f565b6000918252600f602052604090912060010155565b6001600160a01b038516331480611be45750611be48533610746565b611c425760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016108a9565b610dbf85858585856126aa565b6004546001600160a01b03163314611c795760405162461bcd60e51b81526004016108a9906134bb565b6001600160a01b038116611cde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b611ce781612175565b50565b6004546001600160a01b03163314611d145760405162461bcd60e51b81526004016108a9906134bb565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611281573d6000803e3d6000fd5b606060028054611d5890613480565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490613480565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b50505050509050919050565b606081611e015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e2b5780611e1581613600565b9150611e249050600a83613692565b9150611e05565b6000816001600160401b03811115611e4557611e45612e17565b6040519080825280601f01601f191660200182016040528015611e6f576020820181803683370190505b5090505b8415611eda57611e84600183613665565b9150611e91600a866136a6565b611e9c9060306135b3565b60f81b818381518110611eb157611eb16135ea565b60200101906001600160f81b031916908160001a905350611ed3600a86613692565b9450611e73565b949350505050565b6001600160a01b038416611f085760405162461bcd60e51b81526004016108a9906136ba565b336000611f14856127e2565b90506000611f21856127e2565b9050611f328360008985858961282d565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611f629084906135b3565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611fc2836000898989896129a6565b50505050505050565b8151835114611fec5760405162461bcd60e51b81526004016108a9906136fb565b6001600160a01b0384166120125760405162461bcd60e51b81526004016108a990613743565b3361202181878787878761282d565b60005b8451811015612107576000858281518110612041576120416135ea565b60200260200101519050600085838151811061205f5761205f6135ea565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156120af5760405162461bcd60e51b81526004016108a990613788565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906120ec9084906135b3565b925050819055505050508061210090613600565b9050612024565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121579291906137d2565b60405180910390a461216d818787878787612b11565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166122295760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016108a9565b805182511461224a5760405162461bcd60e51b81526004016108a9906136fb565b600033905061226d8185600086866040518060200160405280600081525061282d565b60005b835181101561236e57600084828151811061228d5761228d6135ea565b6020026020010151905060008483815181106122ab576122ab6135ea565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156123375760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016108a9565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061236681613600565b915050612270565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516123bf9291906137d2565b60405180910390a460408051602081019091526000905261118d565b816001600160a01b0316836001600160a01b0316141561244f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108a9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b8051611281906002906020840190612c5d565b6001600160a01b0384166124f55760405162461bcd60e51b81526004016108a9906136ba565b81518351146125165760405162461bcd60e51b81526004016108a9906136fb565b336125268160008787878761282d565b60005b84518110156125c157838181518110612544576125446135ea565b6020026020010151600080878481518110612561576125616135ea565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546125a991906135b3565b909155508190506125b981613600565b915050612529565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516126129291906137d2565b60405180910390a4610dbf81600087878787612b11565b6000808361263684611ddd565b604051602001612647929190613800565b6040516020818303038152906040528051906020012090506126a086868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050612bdb565b9695505050505050565b6001600160a01b0384166126d05760405162461bcd60e51b81526004016108a990613743565b3360006126dc856127e2565b905060006126e9856127e2565b90506126f983898985858961282d565b6000868152602081815260408083206001600160a01b038c1684529091529020548581101561273a5760405162461bcd60e51b81526004016108a990613788565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906127779084906135b3565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46127d7848a8a8a8a8a6129a6565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061281c5761281c6135ea565b602090810291909101015292915050565b6001600160a01b0385166128b45760005b83518110156128b257828181518110612859576128596135ea565b602002602001015160036000868481518110612877576128776135ea565b60200260200101518152602001908152602001600020600082825461289c91906135b3565b909155506128ab905081613600565b905061283e565b505b6001600160a01b03841661216d5760005b8351811015611fc25760008482815181106128e2576128e26135ea565b602002602001015190506000848381518110612900576129006135ea565b60200260200101519050600060036000848152602001908152602001600020549050818110156129835760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016108a9565b6000928352600360205260409092209103905561299f81613600565b90506128c5565b6001600160a01b0384163b1561216d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906129ea9089908990889088908890600401613838565b602060405180830381600087803b158015612a0457600080fd5b505af1925050508015612a34575060408051601f3d908101601f19168201909252612a319181019061387d565b60015b612ae157612a4061389a565b806308c379a01415612a7a5750612a556138b6565b80612a605750612a7c565b8060405162461bcd60e51b81526004016108a99190612dc9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108a9565b6001600160e01b0319811663f23a6e6160e01b14611fc25760405162461bcd60e51b81526004016108a99061393f565b6001600160a01b0384163b1561216d5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612b559089908990889088908890600401613987565b602060405180830381600087803b158015612b6f57600080fd5b505af1925050508015612b9f575060408051601f3d908101601f19168201909252612b9c9181019061387d565b60015b612bab57612a4061389a565b6001600160e01b0319811663bc197c8160e01b14611fc25760405162461bcd60e51b81526004016108a99061393f565b600082612be88584612bf1565b14949350505050565b600081815b8451811015610f31576000858281518110612c1357612c136135ea565b60200260200101519050808311612c395760008381526020829052604090209250612c4a565b600081815260208490526040902092505b5080612c5581613600565b915050612bf6565b828054612c6990613480565b90600052602060002090601f016020900481019282612c8b5760008555612cd1565b82601f10612ca457805160ff1916838001178555612cd1565b82800160010185558215612cd1579182015b82811115612cd1578251825591602001919060010190612cb6565b50612cdd929150612ce1565b5090565b5b80821115612cdd5760008155600101612ce2565b6001600160a01b0381168114611ce757600080fd5b60008060408385031215612d1e57600080fd5b8235612d2981612cf6565b946020939093013593505050565b6001600160e01b031981168114611ce757600080fd5b600060208284031215612d5f57600080fd5b8135612d6a81612d37565b9392505050565b60005b83811015612d8c578181015183820152602001612d74565b8381111561118d5750506000910152565b60008151808452612db5816020860160208601612d71565b601f01601f19169290920160200192915050565b602081526000612d6a6020830184612d9d565b600060208284031215612dee57600080fd5b5035919050565b60008060408385031215612e0857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612e5257612e52612e17565b6040525050565b60006001600160401b03821115612e7257612e72612e17565b5060051b60200190565b600082601f830112612e8d57600080fd5b81356020612e9a82612e59565b604051612ea78282612e2d565b83815260059390931b8501820192828101915086841115612ec757600080fd5b8286015b84811015612ee25780358352918301918301612ecb565b509695505050505050565b600082601f830112612efe57600080fd5b81356001600160401b03811115612f1757612f17612e17565b604051612f2e601f8301601f191660200182612e2d565b818152846020838601011115612f4357600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612f7857600080fd5b8535612f8381612cf6565b94506020860135612f9381612cf6565b935060408601356001600160401b0380821115612faf57600080fd5b612fbb89838a01612e7c565b94506060880135915080821115612fd157600080fd5b612fdd89838a01612e7c565b93506080880135915080821115612ff357600080fd5b5061300088828901612eed565b9150509295509295909350565b60008060006060848603121561302257600080fd5b833561302d81612cf6565b95602085013595506040909401359392505050565b6000806040838503121561305557600080fd5b82356001600160401b038082111561306c57600080fd5b818501915085601f83011261308057600080fd5b8135602061308d82612e59565b60405161309a8282612e2d565b83815260059390931b85018201928281019150898411156130ba57600080fd5b948201945b838610156130e15785356130d281612cf6565b825294820194908201906130bf565b965050860135925050808211156130f757600080fd5b5061310485828601612e7c565b9150509250929050565b600081518084526020808501945080840160005b8381101561313e57815187529582019590820190600101613122565b509495945050505050565b602081526000612d6a602083018461310e565b60008082840360c081121561317057600080fd5b8335925060a0601f198201121561318657600080fd5b506020830190509250929050565b6000602082840312156131a657600080fd5b8135612d6a81612cf6565b60008083601f8401126131c357600080fd5b5081356001600160401b038111156131da57600080fd5b6020830191508360208260051b85010111156131f557600080fd5b9250929050565b6000806000806040858703121561321257600080fd5b84356001600160401b038082111561322957600080fd5b613235888389016131b1565b9096509450602087013591508082111561324e57600080fd5b5061325b878288016131b1565b95989497509550505050565b8015158114611ce757600080fd5b6000806040838503121561328857600080fd5b823561329381612cf6565b915060208301356132a381613267565b809150509250929050565b600080602083850312156132c157600080fd5b82356001600160401b03808211156132d857600080fd5b818501915085601f8301126132ec57600080fd5b8135818111156132fb57600080fd5b86602082850101111561330d57600080fd5b60209290920196919550909350505050565b60008060008060006060868803121561333757600080fd5b8535945060208601356001600160401b038082111561335557600080fd5b61336189838a016131b1565b9096509450604088013591508082111561337a57600080fd5b50613387888289016131b1565b969995985093965092949392505050565b600080604083850312156133ab57600080fd5b82356133b681612cf6565b915060208301356132a381612cf6565b600080600080606085870312156133dc57600080fd5b8435935060208501356001600160401b038111156133f957600080fd5b613405878288016131b1565b9598909750949560400135949350505050565b600080600080600060a0868803121561343057600080fd5b853561343b81612cf6565b9450602086013561344b81612cf6565b9350604086013592506060860135915060808601356001600160401b0381111561347457600080fd5b61300088828901612eed565b600181811c9082168061349457607f821691505b602082108114156134b557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351613502818460208801612d71565b835190830190613516818360208801612d71565b64173539b7b760d91b9101908152600501949350505050565b60208082526018908201527f53686f70206974656d20646f6573206e6f742065786973740000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156135c6576135c661359d565b500190565b60008160001904831182151516156135e5576135e561359d565b500290565b634e487b7160e01b600052603260045260246000fd5b60006000198214156136145761361461359d565b5060010190565b8135815560208201356001820155604082013560028201556060820135600382015560048101608083013561364f81613267565b815490151560ff1660ff19919091161790555050565b6000828210156136775761367761359d565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826136a1576136a161367c565b500490565b6000826136b5576136b561367c565b500690565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006137e5604083018561310e565b82810360208401526137f7818561310e565b95945050505050565b6bffffffffffffffffffffffff198360601b1681526000825161382a816014850160208701612d71565b919091016014019392505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061387290830184612d9d565b979650505050505050565b60006020828403121561388f57600080fd5b8151612d6a81612d37565b600060033d11156138b35760046000803e5060005160e01c5b90565b600060443d10156138c45790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156138f357505050505090565b828501915081518181111561390b5750505050505090565b843d87010160208285010111156139255750505050505090565b61393460208286010187612e2d565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906139b39083018661310e565b82810360608401526139c5818661310e565b905082810360808401526139d98185612d9d565b9897505050505050505056fea264697066735822122012dd9bb433a6e920d265a3391b88d7b48adea415fdafab21e8ad212ff04e9f7864736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012646f6820646f682063616e64792073686f700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543414e4459000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c80639371c44211610139578063c232cc85116100b6578063eb9aa0bd1161007a578063eb9aa0bd14610774578063eddf865b14610794578063f242432a146107b4578063f2fde38b146107d4578063fa09e630146107f4578063ff986a831461081457600080fd5b8063c232cc851461065e578063d5abeb01146106d5578063e0df5b6f146106eb578063e0e5dcf01461070b578063e985e9c51461072b57600080fd5b8063a22cb465116100fd578063a22cb465146105bb578063ad795388146105db578063b602c15b146105fb578063bd85b03914610611578063c1e110ca1461063e57600080fd5b80639371c4421461053c57806395d89b411461055c578063972c2c041461057157806399288dbb14610586578063a035b1fe146105a557600080fd5b80634e1273f4116101d2578063715018a611610196578063715018a6146104725780637487bd08146104875780637cb64759146104a7578063827900e6146104c75780638da5cb5b146104e757806391c047281461050f57600080fd5b80634e1273f4146103a95780634f558e79146103d6578063502b33af146104055780635b67d5a91461041a5780636544cab91461043a57600080fd5b80631187640d116102195780631187640d1461031c578063211b79b61461033c5780632eb2c2d61461034f578063388b9fe01461036f5780634b8bcb581461038f57600080fd5b8062fdd58e1461025557806301ffc9a71461028857806306fdde03146102b85780630cf7419a146102da5780630e89341c146102fc575b600080fd5b34801561026157600080fd5b50610275610270366004612d0b565b610841565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004612d4d565b6108d8565b604051901515815260200161027f565b3480156102c457600080fd5b506102cd61092a565b60405161027f9190612dc9565b3480156102e657600080fd5b506102fa6102f5366004612ddc565b6109b8565b005b34801561030857600080fd5b506102cd610317366004612ddc565b6109e7565b34801561032857600080fd5b506102fa610337366004612df5565b610a22565b6102fa61034a366004612ddc565b610a8f565b34801561035b57600080fd5b506102fa61036a366004612f60565b610d2f565b34801561037b57600080fd5b506102fa61038a36600461300d565b610dc6565b34801561039b57600080fd5b50600b546102a89060ff1681565b3480156103b557600080fd5b506103c96103c4366004613042565b610e10565b60405161027f9190613149565b3480156103e257600080fd5b506102a86103f1366004612ddc565b600090815260036020526040902054151590565b34801561041157600080fd5b506102fa610f39565b34801561042657600080fd5b506102fa610435366004612ddc565b610f80565b34801561044657600080fd5b50610275610455366004612d0b565b601060209081526000928352604080842090915290825290205481565b34801561047e57600080fd5b506102fa610ffb565b34801561049357600080fd5b506102fa6104a2366004612ddc565b611031565b3480156104b357600080fd5b506102fa6104c2366004612ddc565b611060565b3480156104d357600080fd5b506102fa6104e236600461315c565b61108f565b3480156104f357600080fd5b506004546040516001600160a01b03909116815260200161027f565b34801561051b57600080fd5b5061027561052a366004613194565b600d6020526000908152604090205481565b34801561054857600080fd5b506102fa6105573660046131fc565b611193565b34801561056857600080fd5b506102cd61122b565b34801561057d57600080fd5b506102fa611238565b34801561059257600080fd5b50600b546102a890610100900460ff1681565b3480156105b157600080fd5b50610275600a5481565b3480156105c757600080fd5b506102fa6105d6366004613275565b611276565b3480156105e757600080fd5b506102fa6105f6366004612df5565b611285565b34801561060757600080fd5b5061027560095481565b34801561061d57600080fd5b5061027561062c366004612ddc565b60009081526003602052604090205490565b34801561064a57600080fd5b506102fa610659366004612ddc565b6112f2565b34801561066a57600080fd5b506106ab610679366004612ddc565b600f60205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a00161027f565b3480156106e157600080fd5b5061027560085481565b3480156106f757600080fd5b506102fa6107063660046132ae565b611321565b34801561071757600080fd5b506102fa61072636600461331f565b61138a565b34801561073757600080fd5b506102a8610746366004613398565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b506102fa61078f3660046133c6565b611931565b3480156107a057600080fd5b506102fa6107af366004612df5565b611b5b565b3480156107c057600080fd5b506102fa6107cf366004613418565b611bc8565b3480156107e057600080fd5b506102fa6107ef366004613194565b611c4f565b34801561080057600080fd5b506102fa61080f366004613194565b611cea565b34801561082057600080fd5b5061027561082f366004613194565b600e6020526000908152604090205481565b60006001600160a01b0383166108b25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061090957506001600160e01b031982166303a24d0760e21b145b8061092457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006805461093790613480565b80601f016020809104026020016040519081016040528092919081815260200182805461096390613480565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b505050505081565b6004546001600160a01b031633146109e25760405162461bcd60e51b81526004016108a9906134bb565b600855565b60606109f282611d49565b6109fb83611ddd565b604051602001610a0c9291906134f0565b6040516020818303038152906040529050919050565b6004546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016108a9906134bb565b6000828152600f6020526040902060010154610a7a5760405162461bcd60e51b81526004016108a99061352f565b6000918252600f602052604090912060030155565b323314610ade5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108a9565b60026005541415610b015760405162461bcd60e51b81526004016108a990613566565b600260055580610b535760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e730000000060448201526064016108a9565b600b54610100900460ff16610baa5760405162461bcd60e51b815260206004820152601a60248201527f50616964207075626c6963206d696e7420697320636c6f73656400000000000060448201526064016108a9565b600954336000908152600e6020526040902054610bc89083906135b3565b1115610c165760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d617820706572206164647265737300000000000000000060448201526064016108a9565b3481600a54610c2591906135cb565b14610c645760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b60448201526064016108a9565b6008546000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff54610c9d9083906135b3565b1115610ce05760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b60448201526064016108a9565b336000908152600e6020526040902054610cfb9082906135b3565b336000818152600e60209081526040808320949094558351908101909352808352610d27928490611ee2565b506001600555565b6001600160a01b038516331480610d4b5750610d4b8533610746565b610db25760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a9565b610dbf8585858585611fcb565b5050505050565b6004546001600160a01b03163314610df05760405162461bcd60e51b81526004016108a9906134bb565b610e0b83838360405180602001604052806000815250611ee2565b505050565b60608151835114610e755760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108a9565b600083516001600160401b03811115610e9057610e90612e17565b604051908082528060200260200182016040528015610eb9578160200160208202803683370190505b50905060005b8451811015610f3157610f04858281518110610edd57610edd6135ea565b6020026020010151858381518110610ef757610ef76135ea565b6020026020010151610841565b828281518110610f1657610f166135ea565b6020908102919091010152610f2a81613600565b9050610ebf565b509392505050565b6004546001600160a01b03163314610f635760405162461bcd60e51b81526004016108a9906134bb565b600b805461ff001981166101009182900460ff1615909102179055565b6004546001600160a01b03163314610faa5760405162461bcd60e51b81526004016108a9906134bb565b6000818152600f6020526040902060010154610fd85760405162461bcd60e51b81526004016108a99061352f565b6000908152600f60205260409020600401805460ff19811660ff90911615179055565b6004546001600160a01b031633146110255760405162461bcd60e51b81526004016108a9906134bb565b61102f6000612175565b565b6004546001600160a01b0316331461105b5760405162461bcd60e51b81526004016108a9906134bb565b600955565b6004546001600160a01b0316331461108a5760405162461bcd60e51b81526004016108a9906134bb565b600c55565b6004546001600160a01b031633146110b95760405162461bcd60e51b81526004016108a9906134bb565b816111065760405162461bcd60e51b815260206004820152601d60248201527f4944206f66203020697320726573657276656420666f722063616e647900000060448201526064016108a9565b6000828152600f6020526040902060010154156111735760405162461bcd60e51b815260206004820152602560248201527f53686f70206974656d2077697468207468617420696420616c72656164792065604482015264786973747360d81b60648201526084016108a9565b6000828152600f60205260409020819061118d828261361b565b50505050565b6004546001600160a01b031633146111bd5760405162461bcd60e51b81526004016108a9906134bb565b61118d33858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920191909152506121c792505050565b6007805461093790613480565b6004546001600160a01b031633146112625760405162461bcd60e51b81526004016108a9906134bb565b600b805460ff19811660ff90911615179055565b6112813383836123db565b5050565b6004546001600160a01b031633146112af5760405162461bcd60e51b81526004016108a9906134bb565b6000828152600f60205260409020600101546112dd5760405162461bcd60e51b81526004016108a99061352f565b6000918252600f602052604090912060020155565b6004546001600160a01b0316331461131c5760405162461bcd60e51b81526004016108a9906134bb565b600a55565b6004546001600160a01b0316331461134b5760405162461bcd60e51b81526004016108a9906134bb565b61128182828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124bc92505050565b600260055414156113ad5760405162461bcd60e51b81526004016108a990613566565b60026005558281146114175760405162461bcd60e51b815260206004820152602d60248201527f546865206c656e677468206f662069647320616e6420616d6f756e747320697360448201526c206e6f74207468652073616d6560981b60648201526084016108a9565b6000805b8481101561175d576000600f600088888581811061143b5761143b6135ea565b90506020020135815260200190815260200160002060010154116114a15760405162461bcd60e51b815260206004820152601760248201527f54686973206974656d20646f65736e277420657869737400000000000000000060448201526064016108a9565b600f60008787848181106114b7576114b76135ea565b905060200201358152602001908152602001600020600201548484838181106114e2576114e26135ea565b33600090815260106020908152604082209202939093013592909150898986818110611510576115106135ea565b9050602002013581526020019081526020016000205461153091906135b3565b111561158c5760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d617820706572206164647265737320666f722074686973604482015264206974656d60d81b60648201526084016108a9565b600f60008787848181106115a2576115a26135ea565b602090810292909201358352508101919091526040016000206004015460ff16151560011461161f5760405162461bcd60e51b815260206004820152602360248201527f54686973206974656d206973206e6f742063757272656e746c7920666f722073604482015262616c6560e81b60648201526084016108a9565b600f6000878784818110611635576116356135ea565b90506020020135815260200190815260200160002060010154848483818110611660576116606135ea565b9050602002013561169588888581811061167c5761167c6135ea565b9050602002013560009081526003602052604090205490565b61169f91906135b3565b11156116ed5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d617820737570706c7920666f722074686973206974656d60448201526064016108a9565b8383828181106116ff576116ff6135ea565b90506020020135600f600088888581811061171c5761171c6135ea565b9050602002013581526020019081526020016000206003015461173f91906135cb565b61174990836135b3565b91508061175581613600565b91505061141b565b508581146117ad5760405162461bcd60e51b815260206004820152601a60248201527f57726f6e6720616d6f756e74206f662063616e64792073656e7400000000000060448201526064016108a9565b6117db336117c36004546001600160a01b031690565b60008960405180602001604052806000815250611bc8565b6118573386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284376000920182905250604080516020810190915290815292506124cf915050565b60005b8481101561192357838382818110611874576118746135ea565b336000908152601060209081526040822092029390930135929091508888858181106118a2576118a26135ea565b90506020020135815260200190815260200160002060008282546118c691906135b3565b909155506118e1905086868381811061167c5761167c6135ea565b600f60008888858181106118f7576118f76135ea565b60209081029290920135835250810191909152604001600020558061191b81613600565b91505061185a565b505060016005555050505050565b3233146119805760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108a9565b600260055414156119a35760405162461bcd60e51b81526004016108a990613566565b6002600555600b54339060ff166119ee5760405162461bcd60e51b815260206004820152600f60248201526e10db185a5b481a5cc818db1bdcd959608a1b60448201526064016108a9565b6001600160a01b0381166000908152600d6020526040902054611a119083613665565b851115611a6c5760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520696e73756666696369656e742063616e647920746f20636044820152636c61696d60e01b60648201526084016108a9565b60008511611abc5760405162461bcd60e51b815260206004820152601d60248201527f4d75737420636c61696d206d6f7265207468616e203020746f6b656e7300000060448201526064016108a9565b611ac884848385612629565b611b045760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108a9565b6001600160a01b0381166000908152600d602052604081208054879290611b2c9084906135b3565b92505081905550611b4f8160008760405180602001604052806000815250611ee2565b50506001600555505050565b6004546001600160a01b03163314611b855760405162461bcd60e51b81526004016108a9906134bb565b6000828152600f6020526040902060010154611bb35760405162461bcd60e51b81526004016108a99061352f565b6000918252600f602052604090912060010155565b6001600160a01b038516331480611be45750611be48533610746565b611c425760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016108a9565b610dbf85858585856126aa565b6004546001600160a01b03163314611c795760405162461bcd60e51b81526004016108a9906134bb565b6001600160a01b038116611cde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b611ce781612175565b50565b6004546001600160a01b03163314611d145760405162461bcd60e51b81526004016108a9906134bb565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611281573d6000803e3d6000fd5b606060028054611d5890613480565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490613480565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b50505050509050919050565b606081611e015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e2b5780611e1581613600565b9150611e249050600a83613692565b9150611e05565b6000816001600160401b03811115611e4557611e45612e17565b6040519080825280601f01601f191660200182016040528015611e6f576020820181803683370190505b5090505b8415611eda57611e84600183613665565b9150611e91600a866136a6565b611e9c9060306135b3565b60f81b818381518110611eb157611eb16135ea565b60200101906001600160f81b031916908160001a905350611ed3600a86613692565b9450611e73565b949350505050565b6001600160a01b038416611f085760405162461bcd60e51b81526004016108a9906136ba565b336000611f14856127e2565b90506000611f21856127e2565b9050611f328360008985858961282d565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611f629084906135b3565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611fc2836000898989896129a6565b50505050505050565b8151835114611fec5760405162461bcd60e51b81526004016108a9906136fb565b6001600160a01b0384166120125760405162461bcd60e51b81526004016108a990613743565b3361202181878787878761282d565b60005b8451811015612107576000858281518110612041576120416135ea565b60200260200101519050600085838151811061205f5761205f6135ea565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156120af5760405162461bcd60e51b81526004016108a990613788565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906120ec9084906135b3565b925050819055505050508061210090613600565b9050612024565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121579291906137d2565b60405180910390a461216d818787878787612b11565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166122295760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016108a9565b805182511461224a5760405162461bcd60e51b81526004016108a9906136fb565b600033905061226d8185600086866040518060200160405280600081525061282d565b60005b835181101561236e57600084828151811061228d5761228d6135ea565b6020026020010151905060008483815181106122ab576122ab6135ea565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156123375760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016108a9565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061236681613600565b915050612270565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516123bf9291906137d2565b60405180910390a460408051602081019091526000905261118d565b816001600160a01b0316836001600160a01b0316141561244f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108a9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b8051611281906002906020840190612c5d565b6001600160a01b0384166124f55760405162461bcd60e51b81526004016108a9906136ba565b81518351146125165760405162461bcd60e51b81526004016108a9906136fb565b336125268160008787878761282d565b60005b84518110156125c157838181518110612544576125446135ea565b6020026020010151600080878481518110612561576125616135ea565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546125a991906135b3565b909155508190506125b981613600565b915050612529565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516126129291906137d2565b60405180910390a4610dbf81600087878787612b11565b6000808361263684611ddd565b604051602001612647929190613800565b6040516020818303038152906040528051906020012090506126a086868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050612bdb565b9695505050505050565b6001600160a01b0384166126d05760405162461bcd60e51b81526004016108a990613743565b3360006126dc856127e2565b905060006126e9856127e2565b90506126f983898985858961282d565b6000868152602081815260408083206001600160a01b038c1684529091529020548581101561273a5760405162461bcd60e51b81526004016108a990613788565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906127779084906135b3565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46127d7848a8a8a8a8a6129a6565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061281c5761281c6135ea565b602090810291909101015292915050565b6001600160a01b0385166128b45760005b83518110156128b257828181518110612859576128596135ea565b602002602001015160036000868481518110612877576128776135ea565b60200260200101518152602001908152602001600020600082825461289c91906135b3565b909155506128ab905081613600565b905061283e565b505b6001600160a01b03841661216d5760005b8351811015611fc25760008482815181106128e2576128e26135ea565b602002602001015190506000848381518110612900576129006135ea565b60200260200101519050600060036000848152602001908152602001600020549050818110156129835760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016108a9565b6000928352600360205260409092209103905561299f81613600565b90506128c5565b6001600160a01b0384163b1561216d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906129ea9089908990889088908890600401613838565b602060405180830381600087803b158015612a0457600080fd5b505af1925050508015612a34575060408051601f3d908101601f19168201909252612a319181019061387d565b60015b612ae157612a4061389a565b806308c379a01415612a7a5750612a556138b6565b80612a605750612a7c565b8060405162461bcd60e51b81526004016108a99190612dc9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108a9565b6001600160e01b0319811663f23a6e6160e01b14611fc25760405162461bcd60e51b81526004016108a99061393f565b6001600160a01b0384163b1561216d5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612b559089908990889088908890600401613987565b602060405180830381600087803b158015612b6f57600080fd5b505af1925050508015612b9f575060408051601f3d908101601f19168201909252612b9c9181019061387d565b60015b612bab57612a4061389a565b6001600160e01b0319811663bc197c8160e01b14611fc25760405162461bcd60e51b81526004016108a99061393f565b600082612be88584612bf1565b14949350505050565b600081815b8451811015610f31576000858281518110612c1357612c136135ea565b60200260200101519050808311612c395760008381526020829052604090209250612c4a565b600081815260208490526040902092505b5080612c5581613600565b915050612bf6565b828054612c6990613480565b90600052602060002090601f016020900481019282612c8b5760008555612cd1565b82601f10612ca457805160ff1916838001178555612cd1565b82800160010185558215612cd1579182015b82811115612cd1578251825591602001919060010190612cb6565b50612cdd929150612ce1565b5090565b5b80821115612cdd5760008155600101612ce2565b6001600160a01b0381168114611ce757600080fd5b60008060408385031215612d1e57600080fd5b8235612d2981612cf6565b946020939093013593505050565b6001600160e01b031981168114611ce757600080fd5b600060208284031215612d5f57600080fd5b8135612d6a81612d37565b9392505050565b60005b83811015612d8c578181015183820152602001612d74565b8381111561118d5750506000910152565b60008151808452612db5816020860160208601612d71565b601f01601f19169290920160200192915050565b602081526000612d6a6020830184612d9d565b600060208284031215612dee57600080fd5b5035919050565b60008060408385031215612e0857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612e5257612e52612e17565b6040525050565b60006001600160401b03821115612e7257612e72612e17565b5060051b60200190565b600082601f830112612e8d57600080fd5b81356020612e9a82612e59565b604051612ea78282612e2d565b83815260059390931b8501820192828101915086841115612ec757600080fd5b8286015b84811015612ee25780358352918301918301612ecb565b509695505050505050565b600082601f830112612efe57600080fd5b81356001600160401b03811115612f1757612f17612e17565b604051612f2e601f8301601f191660200182612e2d565b818152846020838601011115612f4357600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612f7857600080fd5b8535612f8381612cf6565b94506020860135612f9381612cf6565b935060408601356001600160401b0380821115612faf57600080fd5b612fbb89838a01612e7c565b94506060880135915080821115612fd157600080fd5b612fdd89838a01612e7c565b93506080880135915080821115612ff357600080fd5b5061300088828901612eed565b9150509295509295909350565b60008060006060848603121561302257600080fd5b833561302d81612cf6565b95602085013595506040909401359392505050565b6000806040838503121561305557600080fd5b82356001600160401b038082111561306c57600080fd5b818501915085601f83011261308057600080fd5b8135602061308d82612e59565b60405161309a8282612e2d565b83815260059390931b85018201928281019150898411156130ba57600080fd5b948201945b838610156130e15785356130d281612cf6565b825294820194908201906130bf565b965050860135925050808211156130f757600080fd5b5061310485828601612e7c565b9150509250929050565b600081518084526020808501945080840160005b8381101561313e57815187529582019590820190600101613122565b509495945050505050565b602081526000612d6a602083018461310e565b60008082840360c081121561317057600080fd5b8335925060a0601f198201121561318657600080fd5b506020830190509250929050565b6000602082840312156131a657600080fd5b8135612d6a81612cf6565b60008083601f8401126131c357600080fd5b5081356001600160401b038111156131da57600080fd5b6020830191508360208260051b85010111156131f557600080fd5b9250929050565b6000806000806040858703121561321257600080fd5b84356001600160401b038082111561322957600080fd5b613235888389016131b1565b9096509450602087013591508082111561324e57600080fd5b5061325b878288016131b1565b95989497509550505050565b8015158114611ce757600080fd5b6000806040838503121561328857600080fd5b823561329381612cf6565b915060208301356132a381613267565b809150509250929050565b600080602083850312156132c157600080fd5b82356001600160401b03808211156132d857600080fd5b818501915085601f8301126132ec57600080fd5b8135818111156132fb57600080fd5b86602082850101111561330d57600080fd5b60209290920196919550909350505050565b60008060008060006060868803121561333757600080fd5b8535945060208601356001600160401b038082111561335557600080fd5b61336189838a016131b1565b9096509450604088013591508082111561337a57600080fd5b50613387888289016131b1565b969995985093965092949392505050565b600080604083850312156133ab57600080fd5b82356133b681612cf6565b915060208301356132a381612cf6565b600080600080606085870312156133dc57600080fd5b8435935060208501356001600160401b038111156133f957600080fd5b613405878288016131b1565b9598909750949560400135949350505050565b600080600080600060a0868803121561343057600080fd5b853561343b81612cf6565b9450602086013561344b81612cf6565b9350604086013592506060860135915060808601356001600160401b0381111561347457600080fd5b61300088828901612eed565b600181811c9082168061349457607f821691505b602082108114156134b557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351613502818460208801612d71565b835190830190613516818360208801612d71565b64173539b7b760d91b9101908152600501949350505050565b60208082526018908201527f53686f70206974656d20646f6573206e6f742065786973740000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156135c6576135c661359d565b500190565b60008160001904831182151516156135e5576135e561359d565b500290565b634e487b7160e01b600052603260045260246000fd5b60006000198214156136145761361461359d565b5060010190565b8135815560208201356001820155604082013560028201556060820135600382015560048101608083013561364f81613267565b815490151560ff1660ff19919091161790555050565b6000828210156136775761367761359d565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826136a1576136a161367c565b500490565b6000826136b5576136b561367c565b500690565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006137e5604083018561310e565b82810360208401526137f7818561310e565b95945050505050565b6bffffffffffffffffffffffff198360601b1681526000825161382a816014850160208701612d71565b919091016014019392505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061387290830184612d9d565b979650505050505050565b60006020828403121561388f57600080fd5b8151612d6a81612d37565b600060033d11156138b35760046000803e5060005160e01c5b90565b600060443d10156138c45790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156138f357505050505090565b828501915081518181111561390b5750505050505090565b843d87010160208285010111156139255750505050505090565b61393460208286010187612e2d565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906139b39083018661310e565b82810360608401526139c5818661310e565b905082810360808401526139d98185612d9d565b9897505050505050505056fea264697066735822122012dd9bb433a6e920d265a3391b88d7b48adea415fdafab21e8ad212ff04e9f7864736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012646f6820646f682063616e64792073686f700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543414e4459000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): doh doh candy shop
Arg [1] : _symbol (string): CANDY

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 646f6820646f682063616e64792073686f700000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 43414e4459000000000000000000000000000000000000000000000000000000


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.