ETH Price: $3,400.35 (-1.29%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

827

Holders

352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x3654a4692786b915cacc53fc41c2660378f0c46e
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:
ERC1155NFTContract

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : ERC1155NFTContract.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;

import "./ERC1155NFTBase.sol";
import "../ChainLinkRandom.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract ERC1155NFTContract is
    ERC1155NFTBase,
    ChainLinkRandom,
    ReentrancyGuard
{
    using Strings for uint256;

    bool internal revealed;

    constructor(
        address _VRFCoordinator,
        address _LINKToken,
        bytes32 _keyHash,
        string memory _blankURI,
        uint256 _supply,
        uint256 _price,
        uint256 _maxMint
    )
        public
        ERC1155NFTBase(_blankURI, _supply, _price, _maxMint)
        ChainLinkRandom(_VRFCoordinator, _LINKToken, _keyHash)
    {}

    /**
     * @dev reveal metadata of tokens.
     * @dev only can call one time, and only owner can call it.
     * @dev function will request to chainlink oracle and receive random number.
     * @dev contract will get this number by fulfillRandomness function.
     * @dev You should transfer 2 LINK token to contract, before call this function
     */
    function reveal() public onlyOwner {
        require(!revealed, "You have already generated a random seed");
        require(
            bytes(baseMetadataURI).length > 0,
            "You should set baseURI first"
        );
        revealed = true;
        _generateRandomSeed();
    }

    /**
     * @dev query metadata id of token
     * @notice only know after owner owner create `seed`
     * @param tokenId The id of token you want to query
     */
    function deterministic(uint256 tokenId)
        internal
        view
        returns (string memory)
    {
        uint256[] memory metaIds = new uint256[](TOTAL_SUPPLY);
        uint256[] memory randomArray = new uint256[](8);

        for (uint256 i = 0; i < TOTAL_SUPPLY; i++) {
            metaIds[i] = i;
        }

        // shuffle meta id
        for (uint256 i = 0; i < TOTAL_SUPPLY; i++) {
            /**
             * Get 256 bit random number
             * Split it into 8 parts (32 bit random number)
             */
            if (i % 8 == 0) {
                uint256 randomNumber = generateRandomNumber(i);
                randomArray[0] =
                    uint256(
                        randomNumber &
                            0xffffffff00000000000000000000000000000000000000000000000000000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[1] =
                    uint256(
                        randomNumber &
                            0x00000000ffffffff000000000000000000000000000000000000000000000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[2] =
                    uint256(
                        randomNumber &
                            0x0000000000000000ffffffff0000000000000000000000000000000000000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[3] =
                    uint256(
                        randomNumber &
                            0x000000000000000000000000ffffffff00000000000000000000000000000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[4] =
                    uint256(
                        randomNumber &
                            0x00000000000000000000000000000000ffffffff000000000000000000000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[5] =
                    uint256(
                        randomNumber &
                            0x0000000000000000000000000000000000000000ffffffff0000000000000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[6] =
                    uint256(
                        randomNumber &
                            0x000000000000000000000000000000000000000000000000ffffffff00000000
                    ) %
                    (TOTAL_SUPPLY);
                randomArray[7] =
                    uint256(
                        randomNumber &
                            0x00000000000000000000000000000000000000000000000000000000ffffffff
                    ) %
                    (TOTAL_SUPPLY);
            }

            uint256 j = randomArray[i % 8];
            (metaIds[i], metaIds[j]) = (metaIds[j], metaIds[i]);
        }

        return metaIds[tokenId].toString();
    }

    /**
     * @dev query tokenURI of token Id
     * @dev before reveal will return default URI
     * @dev after reveal return token URI of this token on IPFS
     * @param tokenId The id of token you want to query
     */

    function uri(uint256 tokenId)
        external
        view
        virtual
        override
        returns (string memory)
    {
        require(tokenId < nextIndex(), "URI query for nonexistant token");

        // before reveal, nobody know what happened. Return _blankURI
        if (seed == 0) {
            return blankURI;
        }

        // after reveal, you can know your know.
        return
            string(abi.encodePacked(baseMetadataURI, deterministic(tokenId)));
    }

    /**
     * @dev mint token in sale period
     */
    function mintTokenOnSale(uint256 numberToken)
        external
        payable
        nonReentrant
        mintable(numberToken)
    {
        _mintOnSale(_msgSender(), numberToken);
    }

    /**
     * @dev mint token in pre sale period
     */
    function mintTokenOnPreSale(uint256 numberToken)
        external
        payable
        nonReentrant
        mintable(numberToken)
    {
        _mintPreSale(_msgSender(), numberToken);
    }

    /**
     * @dev Airdrop ether to a list of address
     * @param _to List of address
     * @param _value List of value
     */
    function multiAirdrop(address[] calldata _to, uint256[] calldata _value)
        public
        onlyOwner
        returns (bool _success)
    {
        // input validation
        assert(_to.length == _value.length);
        assert(_to.length <= 255);

        // loop through to addresses and send value
        for (uint8 i = 0; i < _to.length; i++) {
            payable(_to[i]).transfer(_value[i]);
        }

        return true;
    }
}

File 2 of 19 : ERC1155NFTBase.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";

/**
 * @dev ERC1155NFTBase contract.
 * @notice Setup admin control functional, include price,
 */
contract ERC1155NFTBase is Ownable, ERC1155 {
    // status of contract
    enum STATUS {
        OFF_SALE,
        PRE_SALE,
        ON_SALE
    }

    enum STAGE {
        STAGE_1,
        STAGE_2,
        STAGE_3,
        SOLD_ALL
    }

    // index of next token aka number of token was minted
    uint256 private _nextIndex;

    // maximum token can be minted
    uint256 public TOTAL_SUPPLY;

    // maximum token can be minted per wallet
    uint256 public maxMint;
    uint256 public price;

    // URI of token before reveal
    string internal blankURI;

    string internal baseMetadataURI;

    STATUS public status;
    STAGE public stage;
    mapping(address => bool) public whitelist;
    mapping(address => uint256) public counter;

    constructor(
        string memory _blankURI,
        uint256 _supply,
        uint256 _price,
        uint256 _maxMint
    ) public ERC1155(_blankURI) {
        _nextIndex = 0;
        TOTAL_SUPPLY = _supply;
        price = _price;
        maxMint = _maxMint;
        blankURI = _blankURI;
        stage = STAGE.STAGE_1;
    }

    /**
     * @dev ensure collector pays for mint token
     */
    modifier mintable(uint256 _number) {
        require(
            _number.add(nextIndex()) <= TOTAL_SUPPLY,
            "Bound limit of maximum supply limit"
        );
        _;
    }

    /**
     * @dev next token index.
     */
    function nextIndex() public view virtual returns (uint256) {
        return _nextIndex;
    }

    /**
     * @dev change status from online to offline and vice versa
     */
    function setStatus(STATUS _status) public onlyOwner returns (bool) {
        status = _status;
        return true;
    }

    function setStatusWithPriceAndMaxMint(
        STATUS _status,
        uint256 _price,
        uint256 _maxMint
    ) public onlyOwner returns (bool) {
        status = _status;
        price = _price;
        maxMint = _maxMint;
        return true;
    }

    function setStage(STAGE _stage) public onlyOwner returns (bool) {
        stage = _stage;
        return true;
    }

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

    function setMaxMint(uint256 _maxMint) external onlyOwner {
        maxMint = _maxMint;
    }

    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseMetadataURI = _baseURI;
    }

    function setBlankURI(string memory _blankURI) public onlyOwner {
        blankURI = _blankURI;
    }

    function addToWhitelist(address[] memory _wallets) public onlyOwner {
        for (uint256 i = 0; i < _wallets.length; ++i) {
            whitelist[_wallets[i]] = true;
        }
    }

    function removeFromWhitelist(address[] memory _wallets) public onlyOwner {
        for (uint256 i = 0; i < _wallets.length; ++i) {
            whitelist[_wallets[i]] = false;
        }
    }

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

    function _mintToken(address _receiver, uint256 _number) internal {
        if (stage == STAGE.STAGE_1) {
            require(
                _number.add(nextIndex()) <= 2000,
                "Bound limit of maximum supply of Stage 1"
            );
        }
        if (stage == STAGE.STAGE_2) {
            require(
                _number.add(nextIndex()) <= 6000,
                "Bound limit of maximum supply of Stage 2"
            );
        }
        uint256[] memory ids = new uint256[](_number);
        uint256[] memory amounts = new uint256[](_number);

        for (uint256 i = 0; i < _number; i++) {
            ids[i] = nextIndex();
            amounts[i] = 1;
            _nextIndex = _nextIndex.add(1);
        }

        _mintBatch(_receiver, ids, amounts, "");

        counter[_receiver] = counter[_receiver].add(_number);
    }

    function _mintOnSale(address _receiver, uint256 _numTokensToMint) internal {
        require(status == STATUS.ON_SALE, "Status is not on sale");
        require(msg.value >= _numTokensToMint.mul(price), "Payment error");
        require(
            _numTokensToMint.add(counter[_receiver]) <= maxMint,
            "Over max token can mint per wallet"
        );

        _mintToken(_receiver, _numTokensToMint);
    }

    function _mintPreSale(address _receiver, uint256 _numTokensToMint)
        internal
    {
        require(status == STATUS.PRE_SALE, "Status is not preSale");
        require(whitelist[_receiver], "You are not in whitelist");
        require(msg.value >= _numTokensToMint.mul(price), "Payment error");
        require(
            _numTokensToMint.add(counter[_receiver]) <= maxMint,
            "Over max token can mint per wallet"
        );

        _mintToken(_receiver, _numTokensToMint);
    }
}

File 3 of 19 : ChainLinkRandom.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

import "@chainlink/contracts/src/v0.6/VRFConsumerBase.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ChainLinkRandom is Ownable, VRFConsumerBase {
    event TokenSeed(uint256 seed);

    uint256 public seed;

    uint256 internal fee;
    bytes32 internal keyHash;

    bytes32 private _requestId;
    bool private _requesting;

    constructor(
        address _VRFCoordinator,
        address _LINKToken,
        bytes32 _keyHash
    ) public VRFConsumerBase(_VRFCoordinator, _LINKToken) {
        keyHash = _keyHash;
        fee = 2 * 10**18; // 2 LINK token
        _requesting = false;
        seed = 0;
    }

    /**
     * @dev backup seed generator if the ChainLink is experiencing difficulties
     */
    function feedSeed() external onlyOwner {
        require(_requesting == true, "not requesting");
        require(seed == 0, "received random number");
        _requesting = false;
        seed = uint256(blockhash(block.number - 1));
        emit TokenSeed(seed);
    }

    /**
     * @dev receive random number from chainlink
     * @notice random number will greater than zero
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomNumber)
        internal
        override
    {
        require(_requesting == true, "not requesting");
        require(requestId == _requestId, "not my request");
        _requesting = false;
        if (randomNumber > 0) seed = randomNumber;
        else seed = 1;
        emit TokenSeed(seed);
    }

    function _generateRandomSeed() internal {
        require(LINK.balanceOf(address(this)) >= fee, "not enought LINK token");
        _requestId = requestRandomness(keyHash, fee);
        _requesting = true;
    }

    /**
     * @dev compute element with shuffle with id
     */
    function shuffleId(
        uint256 _TOTAL_SUPPLY,
        uint256 _id,
        uint256 _start
    ) internal view returns (uint256) {
        uint256 random = generateRandomNumber(_id);
        return random.mod(_TOTAL_SUPPLY.sub(_start)).add(_start);
    }

    /**
     * @dev return random number from seed and _id
     */
    function generateRandomNumber(uint256 _id) internal view returns (uint256) {
        return uint256(keccak256(abi.encode(seed, _id)));
    }

    function withdrawLink() external onlyOwner {
        LINK.transfer(owner(), LINK.balanceOf(address(this)));
    }
}

File 4 of 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        _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 make 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 19 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

File 6 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 7 of 19 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC1155.sol";
import "./IERC1155MetadataURI.sol";
import "./IERC1155Receiver.sol";
import "../../utils/Context.sol";
import "../../introspection/ERC165.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.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 SafeMath for uint256;
    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;

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

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

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @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) external 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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

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

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

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

        _doSafeTransferAcceptanceCheck(operator, 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(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

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

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

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

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

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

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

        address operator = _msgSender();

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

        _balances[id][account] = _balances[id][account].add(amount);
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
        }

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

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

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

        address operator = _msgSender();

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

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

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

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

        address operator = _msgSender();

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

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

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

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

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).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(to).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 8 of 19 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 of 19 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "../../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 19 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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 11 of 19 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

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

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

File 12 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

File 13 of 19 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 14 of 19 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 15 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

File 16 of 19 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

import "./vendor/SafeMathChainlink.sol";

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  using SafeMathChainlink for uint256;

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness)
    internal virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee)
    internal returns (bytes32 requestId)
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash].add(1);
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) public {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 17 of 19 : SafeMathChainlink.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathChainlink {
  /**
    * @dev Returns the addition of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `+` operator.
    *
    * Requirements:
    * - Addition cannot overflow.
    */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
    * @dev Returns the subtraction of two unsigned integers, reverting on
    * overflow (when the result is negative).
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    * - Subtraction cannot overflow.
    */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath: subtraction overflow");
    uint256 c = a - b;

    return c;
  }

  /**
    * @dev Returns the multiplication of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `*` operator.
    *
    * Requirements:
    * - Multiplication cannot overflow.
    */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
    * @dev Returns the integer division of two unsigned integers. Reverts on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator. Note: this function uses a
    * `revert` opcode (which leaves remaining gas untouched) while Solidity
    * uses an invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    * - The divisor cannot be zero.
    */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath: division by zero");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts when dividing by zero.
    *
    * Counterpart to Solidity's `%` operator. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    * - The divisor cannot be zero.
    */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0, "SafeMath: modulo by zero");
    return a % b;
  }
}

File 18 of 19 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);
  function approve(address spender, uint256 value) external returns (bool success);
  function balanceOf(address owner) external view returns (uint256 balance);
  function decimals() external view returns (uint8 decimalPlaces);
  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);
  function increaseApproval(address spender, uint256 subtractedValue) external;
  function name() external view returns (string memory tokenName);
  function symbol() external view returns (string memory tokenSymbol);
  function totalSupply() external view returns (uint256 totalTokensIssued);
  function transfer(address to, uint256 value) external returns (bool success);
  function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool success);
  function transferFrom(address from, address to, uint256 value) external returns (bool success);
}

File 19 of 19 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(bytes32 _keyHash, uint256 _userSeed,
    address _requester, uint256 _nonce)
    internal pure returns (uint256)
  {
    return  uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

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":"address","name":"_VRFCoordinator","type":"address"},{"internalType":"address","name":"_LINKToken","type":"address"},{"internalType":"bytes32","name":"_keyHash","type":"bytes32"},{"internalType":"string","name":"_blankURI","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"TokenSeed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feedSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberToken","type":"uint256"}],"name":"mintTokenOnPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberToken","type":"uint256"}],"name":"mintTokenOnSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_value","type":"uint256[]"}],"name":"multiAirdrop","outputs":[{"internalType":"bool","name":"_success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nextIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blankURI","type":"string"}],"name":"setBlankURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ERC1155NFTBase.STAGE","name":"_stage","type":"uint8"}],"name":"setStage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ERC1155NFTBase.STATUS","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ERC1155NFTBase.STATUS","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setStatusWithPriceAndMaxMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"enum ERC1155NFTBase.STAGE","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum ERC1155NFTBase.STATUS","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawLink","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b506040516200427538038062004275833981810160405260e08110156200003757600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b5060409081526020820151908201516060909201519093509091508686868282888888888360006200012a6200023a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001866301ffc9a760e01b6200023e565b6200019181620002c6565b620001a3636cdb3d1360e11b6200023e565b620001b56303a24d0760e21b6200023e565b5060006005556006839055600882905560078190558351620001df906009906020870190620002df565b5050600b805461ff00191690555050506001600160601b0319606092831b811660a052911b166080526011555050671bc16d674ec8000060105550506013805460ff1916905550506000600f5550506001601455506200037b565b3390565b6001600160e01b031980821614156200029e576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b8051620002db906004906020840190620002df565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032257805160ff191683800117855562000352565b8280016001018555821562000352579182015b828111156200035257825182559160200191906001019062000335565b506200036092915062000364565b5090565b5b8082111562000360576000815560010162000365565b60805160601c60a05160601c613ebc620003b960003980611db152806133a3525080611bf95280611c4e5280612de652806133745250613ebc6000f3fe6080604052600436106102195760003560e01c80638da5cb5b11610123578063c040e6b8116100ab578063e36c2ed81161006f578063e36c2ed814610d47578063e985e9c514610d64578063f242432a14610d9f578063f2fde38b14610e75578063fc7e9c6f14610ea857610219565b8063c040e6b814610bda578063c12327b814610bff578063ce3cd99714610c32578063d735dc9214610c5f578063dcabe3aa14610d2a57610219565b806394985ddd116100f257806394985ddd14610b125780639b19251a14610b42578063a035b1fe14610b75578063a22cb46514610b8a578063a475b5dd14610bc557610219565b80638da5cb5b14610a8d5780638dc654a214610abe578063902d55a514610ad357806391b7f5ed14610ae857610219565b8063548db174116101a65780637501f741116101755780637501f741146108ef5780637a42c6a5146109045780637d94792a146109195780637f6497831461092e5780638cdacdf2146109dc57610219565b8063548db1741461074257806355f804b3146107f05780635dd5c378146108a1578063715018a6146108da57610219565b80632e49d78b116101ed5780632e49d78b146103865780632eb2c2d6146103b35780633ccfd60b146105835780634e1273f414610598578063547520fe1461071857610219565b8062fdd58e1461021e57806301ffc9a7146102695780630e89341c146102b1578063200d2ed214610350575b600080fd5b34801561022a57600080fd5b506102576004803603604081101561024157600080fd5b506001600160a01b038135169060200135610ebd565b60408051918252519081900360200190f35b34801561027557600080fd5b5061029d6004803603602081101561028c57600080fd5b50356001600160e01b031916610f2f565b604080519115158252519081900360200190f35b3480156102bd57600080fd5b506102db600480360360208110156102d457600080fd5b5035610f52565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103155781810151838201526020016102fd565b50505050905090810190601f1680156103425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035c57600080fd5b50610365611119565b6040518082600281111561037557fe5b815260200191505060405180910390f35b34801561039257600080fd5b5061029d600480360360208110156103a957600080fd5b503560ff16611122565b3480156103bf57600080fd5b50610581600480360360a08110156103d657600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561040957600080fd5b82018360208201111561041b57600080fd5b803590602001918460208302840111600160201b8311171561043c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561048b57600080fd5b82018360208201111561049d57600080fd5b803590602001918460208302840111600160201b831117156104be57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561050d57600080fd5b82018360208201111561051f57600080fd5b803590602001918460018302840111600160201b8311171561054057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111ac945050505050565b005b34801561058f57600080fd5b506105816114af565b3480156105a457600080fd5b506106c8600480360360408110156105bb57600080fd5b810190602081018135600160201b8111156105d557600080fd5b8201836020820111156105e757600080fd5b803590602001918460208302840111600160201b8311171561060857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561065757600080fd5b82018360208201111561066957600080fd5b803590602001918460208302840111600160201b8311171561068a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611544945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156107045781810151838201526020016106ec565b505050509050019250505060405180910390f35b34801561072457600080fd5b506105816004803603602081101561073b57600080fd5b5035611630565b34801561074e57600080fd5b506105816004803603602081101561076557600080fd5b810190602081018135600160201b81111561077f57600080fd5b82018360208201111561079157600080fd5b803590602001918460208302840111600160201b831117156107b257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611697945050505050565b3480156107fc57600080fd5b506105816004803603602081101561081357600080fd5b810190602081018135600160201b81111561082d57600080fd5b82018360208201111561083f57600080fd5b803590602001918460018302840111600160201b8311171561086057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611751945050505050565b3480156108ad57600080fd5b5061029d600480360360608110156108c457600080fd5b5060ff81351690602081013590604001356117c6565b3480156108e657600080fd5b50610581611858565b3480156108fb57600080fd5b50610257611904565b34801561091057600080fd5b5061058161190a565b34801561092557600080fd5b50610257611a50565b34801561093a57600080fd5b506105816004803603602081101561095157600080fd5b810190602081018135600160201b81111561096b57600080fd5b82018360208201111561097d57600080fd5b803590602001918460208302840111600160201b8311171561099e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611a56945050505050565b3480156109e857600080fd5b50610581600480360360208110156109ff57600080fd5b810190602081018135600160201b811115610a1957600080fd5b820183602082011115610a2b57600080fd5b803590602001918460018302840111600160201b83111715610a4c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b10945050505050565b348015610a9957600080fd5b50610aa2611b85565b604080516001600160a01b039092168252519081900360200190f35b348015610aca57600080fd5b50610581611b95565b348015610adf57600080fd5b50610257611d39565b348015610af457600080fd5b5061058160048036036020811015610b0b57600080fd5b5035611d3f565b348015610b1e57600080fd5b5061058160048036036040811015610b3557600080fd5b5080359060200135611da6565b348015610b4e57600080fd5b5061029d60048036036020811015610b6557600080fd5b50356001600160a01b0316611e2d565b348015610b8157600080fd5b50610257611e42565b348015610b9657600080fd5b5061058160048036036040811015610bad57600080fd5b506001600160a01b0381351690602001351515611e48565b348015610bd157600080fd5b50610581611f37565b348015610be657600080fd5b50610bef612059565b6040518082600381111561037557fe5b348015610c0b57600080fd5b5061025760048036036020811015610c2257600080fd5b50356001600160a01b0316612067565b348015610c3e57600080fd5b5061029d60048036036020811015610c5557600080fd5b503560ff16612079565b348015610c6b57600080fd5b5061029d60048036036040811015610c8257600080fd5b810190602081018135600160201b811115610c9c57600080fd5b820183602082011115610cae57600080fd5b803590602001918460208302840111600160201b83111715610ccf57600080fd5b919390929091602081019035600160201b811115610cec57600080fd5b820183602082011115610cfe57600080fd5b803590602001918460208302840111600160201b83111715610d1f57600080fd5b5090925090506120f8565b61058160048036036020811015610d4057600080fd5b50356121ff565b61058160048036036020811015610d5d57600080fd5b50356122ca565b348015610d7057600080fd5b5061029d60048036036040811015610d8757600080fd5b506001600160a01b0381358116916020013516612385565b348015610dab57600080fd5b50610581600480360360a0811015610dc257600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610e0157600080fd5b820183602082011115610e1357600080fd5b803590602001918460018302840111600160201b83111715610e3457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506123b3945050505050565b348015610e8157600080fd5b5061058160048036036020811015610e9857600080fd5b50356001600160a01b031661257e565b348015610eb457600080fd5b50610257612680565b60006001600160a01b038316610f045760405162461bcd60e51b815260040180806020018281038252602b815260200180613c1b602b913960400191505060405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b6060610f5c612680565b8210610faf576040805162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374616e7420746f6b656e00604482015290519081900360640190fd5b600f54611048576009805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b50505050509050610f4d565b600a61105383612686565b60405160200180838054600181600116156101000203166002900480156110b15780601f1061108f5761010080835404028352918201916110b1565b820191906000526020600020905b81548152906001019060200180831161109d575b5050825160208401908083835b602083106110dd5780518252601f1990920191602091820191016110be565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600b5460ff1681565b600061112c61295b565b6001600160a01b031661113d611b85565b6001600160a01b031614611186576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600b805483919060ff1916600183600281111561119f57fe5b0217905550600192915050565b81518351146111ec5760405162461bcd60e51b8152600401808060200182810382526028815260200180613e166028913960400191505060405180910390fd5b6001600160a01b0384166112315760405162461bcd60e51b8152600401808060200182810382526025815260200180613cda6025913960400191505060405180910390fd5b61123961295b565b6001600160a01b0316856001600160a01b0316148061126457506112648561125f61295b565b612385565b61129f5760405162461bcd60e51b8152600401808060200182810382526032815260200180613cff6032913960400191505060405180910390fd5b60006112a961295b565b90506112b98187878787876114a7565b60005b84518110156113bf5760008582815181106112d357fe5b6020026020010151905060008583815181106112eb57fe5b60200260200101519050611358816040518060600160405280602a8152602001613d59602a91396002600086815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000205461295f9092919063ffffffff16565b60008381526002602090815260408083206001600160a01b038e811685529252808320939093558a168152205461138f90826129f6565b60009283526002602090815260408085206001600160a01b038c16865290915290922091909155506001016112bc565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561144557818101518382015260200161142d565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561148457818101518382015260200161146c565b5050505090500194505050505060405180910390a46114a7818787878787612a57565b505050505050565b6114b761295b565b6001600160a01b03166114c8611b85565b6001600160a01b031614611511576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015611540573d6000803e3d6000fd5b5050565b606081518351146115865760405162461bcd60e51b8152600401808060200182810382526029815260200180613ded6029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156115a057600080fd5b506040519080825280602002602001820160405280156115ca578160200160208202803683370190505b50905060005b8451811015611628576116098582815181106115e857fe5b60200260200101518583815181106115fc57fe5b6020026020010151610ebd565b82828151811061161557fe5b60209081029190910101526001016115d0565b509392505050565b61163861295b565b6001600160a01b0316611649611b85565b6001600160a01b031614611692576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600755565b61169f61295b565b6001600160a01b03166116b0611b85565b6001600160a01b0316146116f9576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60005b8151811015611540576000600c600084848151811061171757fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016116fc565b61175961295b565b6001600160a01b031661176a611b85565b6001600160a01b0316146117b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b805161154090600a906020840190613a58565b60006117d061295b565b6001600160a01b03166117e1611b85565b6001600160a01b03161461182a576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600b805485919060ff1916600183600281111561184357fe5b02179055505060089190915560075550600190565b61186061295b565b6001600160a01b0316611871611b85565b6001600160a01b0316146118ba576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60075481565b61191261295b565b6001600160a01b0316611923611b85565b6001600160a01b03161461196c576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60135460ff1615156001146119b9576040805162461bcd60e51b815260206004820152600e60248201526d6e6f742072657175657374696e6760901b604482015290519081900360640190fd5b600f5415611a07576040805162461bcd60e51b81526020600482015260166024820152753932b1b2b4bb32b2103930b73237b690373ab6b132b960511b604482015290519081900360640190fd5b6013805460ff19169055600019430140600f81905560408051918252517ff8bdf5d1cc0e940f8f774dbbf0c0697df3fb08aedf9835de3c7d9c6dfaff8d8e9181900360200190a1565b600f5481565b611a5e61295b565b6001600160a01b0316611a6f611b85565b6001600160a01b031614611ab8576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60005b8151811015611540576001600c6000848481518110611ad657fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611abb565b611b1861295b565b6001600160a01b0316611b29611b85565b6001600160a01b031614611b72576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b8051611540906009906020840190613a58565b6000546001600160a01b03165b90565b611b9d61295b565b6001600160a01b0316611bae611b85565b6001600160a01b031614611bf7576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb611c2e611b85565b604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a08231916024808301926020929190829003018186803b158015611c9457600080fd5b505afa158015611ca8573d6000803e3d6000fd5b505050506040513d6020811015611cbe57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015611d0f57600080fd5b505af1158015611d23573d6000803e3d6000fd5b505050506040513d602081101561154057600080fd5b60065481565b611d4761295b565b6001600160a01b0316611d58611b85565b6001600160a01b031614611da1576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600855565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611e23576040805162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015290519081900360640190fd5b6115408282612cd6565b600c6020526000908152604090205460ff1681565b60085481565b816001600160a01b0316611e5a61295b565b6001600160a01b03161415611ea05760405162461bcd60e51b8152600401808060200182810382526029815260200180613dc46029913960400191505060405180910390fd5b8060036000611ead61295b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611ef161295b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611f3f61295b565b6001600160a01b0316611f50611b85565b6001600160a01b031614611f99576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60155460ff1615611fdb5760405162461bcd60e51b8152600401808060200182810382526028815260200180613bf36028913960400191505060405180910390fd5b600a5460026000196101006001841615020190911604612042576040805162461bcd60e51b815260206004820152601c60248201527f596f752073686f756c6420736574206261736555524920666972737400000000604482015290519081900360640190fd5b6015805460ff19166001179055612057612dc3565b565b600b54610100900460ff1681565b600d6020526000908152604090205481565b600061208361295b565b6001600160a01b0316612094611b85565b6001600160a01b0316146120dd576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600b805483919061ff00191661010083600381111561119f57fe5b600061210261295b565b6001600160a01b0316612113611b85565b6001600160a01b03161461215c576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b83821461216557fe5b60ff84111561217057fe5b60005b60ff81168511156121f35785858260ff1681811061218d57fe5b905060200201356001600160a01b03166001600160a01b03166108fc85858460ff168181106121b857fe5b905060200201359081150290604051600060405180830381858888f193505050501580156121ea573d6000803e3d6000fd5b50600101612173565b50600195945050505050565b60026014541415612257576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002601455600654819061227361226c612680565b83906129f6565b11156122b05760405162461bcd60e51b8152600401808060200182810382526023815260200180613c956023913960400191505060405180910390fd5b6122c16122bb61295b565b83612ec4565b50506001601455565b60026014541415612322576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002601455600654819061233761226c612680565b11156123745760405162461bcd60e51b8152600401808060200182810382526023815260200180613c956023913960400191505060405180910390fd5b6122c161237f61295b565b83612fe1565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166123f85760405162461bcd60e51b8152600401808060200182810382526025815260200180613cda6025913960400191505060405180910390fd5b61240061295b565b6001600160a01b0316856001600160a01b0316148061242657506124268561125f61295b565b6124615760405162461bcd60e51b8152600401808060200182810382526029815260200180613c6c6029913960400191505060405180910390fd5b600061246b61295b565b905061248b81878761247c886130ab565b612485886130ab565b876114a7565b6124d2836040518060600160405280602a8152602001613d59602a913960008781526002602090815260408083206001600160a01b038d168452909152902054919061295f565b60008581526002602090815260408083206001600160a01b038b8116855292528083209390935587168152205461250990846129f6565b60008581526002602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46114a78187878787876130ef565b61258661295b565b6001600160a01b0316612597611b85565b6001600160a01b0316146125e0576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b6001600160a01b0381166126255760405162461bcd60e51b8152600401808060200182810382526026815260200180613c466026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60055490565b60608060065467ffffffffffffffff811180156126a257600080fd5b506040519080825280602002602001820160405280156126cc578160200160208202803683370190505b50604080516008808252610120820190925291925060609190602082016101008036833701905050905060005b600654811015612723578083828151811061271057fe5b60209081029190910101526001016126f9565b5060005b60065481101561293657600881066128bc57600061274482613260565b9050600654816001600160e01b0319168161275b57fe5b068360008151811061276957fe5b6020026020010181815250506006548163ffffffff60c01b168161278957fe5b068360018151811061279757fe5b6020026020010181815250506006548163ffffffff60a01b16816127b757fe5b06836002815181106127c557fe5b6020026020010181815250506006548163ffffffff60801b16816127e557fe5b06836003815181106127f357fe5b6020026020010181815250506006548163ffffffff60601b168161281357fe5b068360048151811061282157fe5b602002602001018181525050600654816bffffffff0000000000000000168161284657fe5b068360058151811061285457fe5b6020026020010181815250506006548167ffffffff00000000168161287557fe5b068360068151811061288357fe5b6020026020010181815250506006548163ffffffff16816128a057fe5b06836007815181106128ae57fe5b602002602001018181525050505b60008260088306815181106128cd57fe5b602002602001015190508381815181106128e357fe5b60200260200101518483815181106128f757fe5b602002602001015185848151811061290b57fe5b6020026020010186848151811061291e57fe5b60209081029190910101919091525250600101612727565b5061295382858151811061294657fe5b602002602001015161328f565b949350505050565b3390565b600081848411156129ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b357818101518382015260200161299b565b50505050905090810190601f1680156129e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612a50576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b612a69846001600160a01b031661336a565b156114a757836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612af7578181015183820152602001612adf565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612b36578181015183820152602001612b1e565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612b72578181015183820152602001612b5a565b50505050905090810190601f168015612b9f5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612bc457600080fd5b505af1925050508015612be957506040513d6020811015612be457600080fd5b505160015b612c7e57612bf5613af1565b80612c005750612c47565b60405162461bcd60e51b81526020600482018181528351602484015283518493919283926044019190850190808383600083156129b357818101518382015260200161299b565b60405162461bcd60e51b8152600401808060200182810382526034815260200180613b976034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b14612ccd5760405162461bcd60e51b8152600401808060200182810382526028815260200180613bcb6028913960400191505060405180910390fd5b50505050505050565b60135460ff161515600114612d23576040805162461bcd60e51b815260206004820152600e60248201526d6e6f742072657175657374696e6760901b604482015290519081900360640190fd5b6012548214612d6a576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081b5e481c995c5d595cdd60921b604482015290519081900360640190fd5b6013805460ff191690558015612d8457600f819055612d8a565b6001600f555b600f5460408051918252517ff8bdf5d1cc0e940f8f774dbbf0c0697df3fb08aedf9835de3c7d9c6dfaff8d8e9181900360200190a15050565b601054604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a08231916024808301926020929190829003018186803b158015612e2c57600080fd5b505afa158015612e40573d6000803e3d6000fd5b505050506040513d6020811015612e5657600080fd5b50511015612ea4576040805162461bcd60e51b81526020600482015260166024820152753737ba1032b737bab3b43a102624a725903a37b5b2b760511b604482015290519081900360640190fd5b612eb2601154601054613370565b6012556013805460ff19166001179055565b6002600b5460ff166002811115612ed757fe5b14612f21576040805162461bcd60e51b8152602060048201526015602482015274537461747573206973206e6f74206f6e2073616c6560581b604482015290519081900360640190fd5b600854612f2f90829061351b565b341015612f73576040805162461bcd60e51b815260206004820152600d60248201526c2830bcb6b2b73a1032b93937b960991b604482015290519081900360640190fd5b6007546001600160a01b0383166000908152600d6020526040902054612f9a9083906129f6565b1115612fd75760405162461bcd60e51b8152600401808060200182810382526022815260200180613cb86022913960400191505060405180910390fd5b6115408282613574565b6001600b5460ff166002811115612ff457fe5b1461303e576040805162461bcd60e51b8152602060048201526015602482015274537461747573206973206e6f742070726553616c6560581b604482015290519081900360640190fd5b6001600160a01b0382166000908152600c602052604090205460ff16612f21576040805162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f7420696e2077686974656c6973740000000000000000604482015290519081900360640190fd5b6040805160018082528183019092526060918291906020808301908036833701905050905082816000815181106130de57fe5b602090810291909101015292915050565b613101846001600160a01b031661336a565b156114a757836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613190578181015183820152602001613178565b50505050905090810190601f1680156131bd5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156131e057600080fd5b505af192505050801561320557506040513d602081101561320057600080fd5b505160015b61321157612bf5613af1565b6001600160e01b0319811663f23a6e6160e01b14612ccd5760405162461bcd60e51b8152600401808060200182810382526028815260200180613bcb6028913960400191505060405180910390fd5b600f54604080516020808201939093528082019390935280518084038201815260609093019052815191012090565b6060816132b457506040805180820190915260018152600360fc1b6020820152610f4d565b8160005b81156132cc57600101600a820491506132b8565b60608167ffffffffffffffff811180156132e557600080fd5b506040519080825280601f01601f191660200182016040528015613310576020820181803683370190505b50859350905060001982015b831561336157600a840660300160f81b8282806001900393508151811061333f57fe5b60200101906001600160f81b031916908160001a905350600a8404935061331c565b50949350505050565b3b151590565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f00000000000000000000000000000000000000000000000000000000000000008486600060405160200180838152602001828152602001925050506040516020818303038152906040526040518463ffffffff1660e01b815260040180846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561344d578181015183820152602001613435565b50505050905090810190601f16801561347a5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561349b57600080fd5b505af11580156134af573d6000803e3d6000fd5b505050506040513d60208110156134c557600080fd5b50506000838152600e60205260408120546134e590859083903090613790565b6000858152600e60205260409020549091506135029060016129f6565b6000858152600e602052604090205561295384826137d7565b60008261352a57506000610f29565b8282028284828161353757fe5b0414612a505760405162461bcd60e51b8152600401808060200182810382526021815260200180613d836021913960400191505060405180910390fd5b6000600b54610100900460ff16600381111561358c57fe5b14156135dd576107d06135a061226c612680565b11156135dd5760405162461bcd60e51b8152600401808060200182810382526028815260200180613d316028913960400191505060405180910390fd5b6001600b54610100900460ff1660038111156135f557fe5b14156136465761177061360961226c612680565b11156136465760405162461bcd60e51b8152600401808060200182810382526028815260200180613e5f6028913960400191505060405180910390fd5b60608167ffffffffffffffff8111801561365f57600080fd5b50604051908082528060200260200182016040528015613689578160200160208202803683370190505b50905060608267ffffffffffffffff811180156136a557600080fd5b506040519080825280602002602001820160405280156136cf578160200160208202803683370190505b50905060005b8381101561372f576136e5612680565b8382815181106136f157fe5b602002602001018181525050600182828151811061370b57fe5b60209081029190910101526005546137249060016129f6565b6005556001016136d5565b5061374b84838360405180602001604052806000815250613803565b6001600160a01b0384166000908152600d602052604090205461376e90846129f6565b6001600160a01b039094166000908152600d6020526040902093909355505050565b60408051602080820196909652808201949094526001600160a01b039290921660608401526080808401919091528151808403909101815260a09092019052805191012090565b604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b6001600160a01b0384166138485760405162461bcd60e51b8152600401808060200182810382526021815260200180613e3e6021913960400191505060405180910390fd5b81518351146138885760405162461bcd60e51b8152600401808060200182810382526028815260200180613e166028913960400191505060405180910390fd5b600061389261295b565b90506138a3816000878787876114a7565b60005b84518110156139675761391e600260008784815181106138c257fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205485838151811061390857fe5b60200260200101516129f690919063ffffffff16565b6002600087848151811061392e57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b1682529092529020556001016138a6565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156139ee5781810151838201526020016139d6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015613a2d578181015183820152602001613a15565b5050505090500194505050505060405180910390a4613a5181600087878787612a57565b5050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613a9957805160ff1916838001178555613ac6565b82800160010185558215613ac6579182015b82811115613ac6578251825591602001919060010190613aab565b50613ad2929150613ad6565b5090565b5b80821115613ad25760008155600101613ad7565b60e01c90565b600060443d1015613b0157611b92565b600481823e6308c379a0613b158251613aeb565b14613b1f57611b92565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715613b4f5750505050611b92565b82840192508251915080821115613b695750505050611b92565b503d83016020828401011115613b8157505050611b92565b601f01601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73596f75206861766520616c72656164792067656e65726174656420612072616e646f6d2073656564455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564426f756e64206c696d6974206f66206d6178696d756d20737570706c79206c696d69744f766572206d617820746f6b656e2063616e206d696e74207065722077616c6c6574455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564426f756e64206c696d6974206f66206d6178696d756d20737570706c79206f662053746167652031455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373426f756e64206c696d6974206f66206d6178696d756d20737570706c79206f662053746167652032a2646970667358221220ecdde2aba33f8f6b8466cf4f857fb79861e460c73809cafc83ca938bc8b1985c64736f6c634300060c0033000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44500000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000002b93000000000000000000000000000000000000000000000000009fdf42f6e48000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a755a4650744558586631346e397578456a4478727372724e4864414770786d4138387050795539344244580000000000000000000000

Deployed Bytecode

0x6080604052600436106102195760003560e01c80638da5cb5b11610123578063c040e6b8116100ab578063e36c2ed81161006f578063e36c2ed814610d47578063e985e9c514610d64578063f242432a14610d9f578063f2fde38b14610e75578063fc7e9c6f14610ea857610219565b8063c040e6b814610bda578063c12327b814610bff578063ce3cd99714610c32578063d735dc9214610c5f578063dcabe3aa14610d2a57610219565b806394985ddd116100f257806394985ddd14610b125780639b19251a14610b42578063a035b1fe14610b75578063a22cb46514610b8a578063a475b5dd14610bc557610219565b80638da5cb5b14610a8d5780638dc654a214610abe578063902d55a514610ad357806391b7f5ed14610ae857610219565b8063548db174116101a65780637501f741116101755780637501f741146108ef5780637a42c6a5146109045780637d94792a146109195780637f6497831461092e5780638cdacdf2146109dc57610219565b8063548db1741461074257806355f804b3146107f05780635dd5c378146108a1578063715018a6146108da57610219565b80632e49d78b116101ed5780632e49d78b146103865780632eb2c2d6146103b35780633ccfd60b146105835780634e1273f414610598578063547520fe1461071857610219565b8062fdd58e1461021e57806301ffc9a7146102695780630e89341c146102b1578063200d2ed214610350575b600080fd5b34801561022a57600080fd5b506102576004803603604081101561024157600080fd5b506001600160a01b038135169060200135610ebd565b60408051918252519081900360200190f35b34801561027557600080fd5b5061029d6004803603602081101561028c57600080fd5b50356001600160e01b031916610f2f565b604080519115158252519081900360200190f35b3480156102bd57600080fd5b506102db600480360360208110156102d457600080fd5b5035610f52565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103155781810151838201526020016102fd565b50505050905090810190601f1680156103425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035c57600080fd5b50610365611119565b6040518082600281111561037557fe5b815260200191505060405180910390f35b34801561039257600080fd5b5061029d600480360360208110156103a957600080fd5b503560ff16611122565b3480156103bf57600080fd5b50610581600480360360a08110156103d657600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561040957600080fd5b82018360208201111561041b57600080fd5b803590602001918460208302840111600160201b8311171561043c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561048b57600080fd5b82018360208201111561049d57600080fd5b803590602001918460208302840111600160201b831117156104be57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561050d57600080fd5b82018360208201111561051f57600080fd5b803590602001918460018302840111600160201b8311171561054057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111ac945050505050565b005b34801561058f57600080fd5b506105816114af565b3480156105a457600080fd5b506106c8600480360360408110156105bb57600080fd5b810190602081018135600160201b8111156105d557600080fd5b8201836020820111156105e757600080fd5b803590602001918460208302840111600160201b8311171561060857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561065757600080fd5b82018360208201111561066957600080fd5b803590602001918460208302840111600160201b8311171561068a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611544945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156107045781810151838201526020016106ec565b505050509050019250505060405180910390f35b34801561072457600080fd5b506105816004803603602081101561073b57600080fd5b5035611630565b34801561074e57600080fd5b506105816004803603602081101561076557600080fd5b810190602081018135600160201b81111561077f57600080fd5b82018360208201111561079157600080fd5b803590602001918460208302840111600160201b831117156107b257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611697945050505050565b3480156107fc57600080fd5b506105816004803603602081101561081357600080fd5b810190602081018135600160201b81111561082d57600080fd5b82018360208201111561083f57600080fd5b803590602001918460018302840111600160201b8311171561086057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611751945050505050565b3480156108ad57600080fd5b5061029d600480360360608110156108c457600080fd5b5060ff81351690602081013590604001356117c6565b3480156108e657600080fd5b50610581611858565b3480156108fb57600080fd5b50610257611904565b34801561091057600080fd5b5061058161190a565b34801561092557600080fd5b50610257611a50565b34801561093a57600080fd5b506105816004803603602081101561095157600080fd5b810190602081018135600160201b81111561096b57600080fd5b82018360208201111561097d57600080fd5b803590602001918460208302840111600160201b8311171561099e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611a56945050505050565b3480156109e857600080fd5b50610581600480360360208110156109ff57600080fd5b810190602081018135600160201b811115610a1957600080fd5b820183602082011115610a2b57600080fd5b803590602001918460018302840111600160201b83111715610a4c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b10945050505050565b348015610a9957600080fd5b50610aa2611b85565b604080516001600160a01b039092168252519081900360200190f35b348015610aca57600080fd5b50610581611b95565b348015610adf57600080fd5b50610257611d39565b348015610af457600080fd5b5061058160048036036020811015610b0b57600080fd5b5035611d3f565b348015610b1e57600080fd5b5061058160048036036040811015610b3557600080fd5b5080359060200135611da6565b348015610b4e57600080fd5b5061029d60048036036020811015610b6557600080fd5b50356001600160a01b0316611e2d565b348015610b8157600080fd5b50610257611e42565b348015610b9657600080fd5b5061058160048036036040811015610bad57600080fd5b506001600160a01b0381351690602001351515611e48565b348015610bd157600080fd5b50610581611f37565b348015610be657600080fd5b50610bef612059565b6040518082600381111561037557fe5b348015610c0b57600080fd5b5061025760048036036020811015610c2257600080fd5b50356001600160a01b0316612067565b348015610c3e57600080fd5b5061029d60048036036020811015610c5557600080fd5b503560ff16612079565b348015610c6b57600080fd5b5061029d60048036036040811015610c8257600080fd5b810190602081018135600160201b811115610c9c57600080fd5b820183602082011115610cae57600080fd5b803590602001918460208302840111600160201b83111715610ccf57600080fd5b919390929091602081019035600160201b811115610cec57600080fd5b820183602082011115610cfe57600080fd5b803590602001918460208302840111600160201b83111715610d1f57600080fd5b5090925090506120f8565b61058160048036036020811015610d4057600080fd5b50356121ff565b61058160048036036020811015610d5d57600080fd5b50356122ca565b348015610d7057600080fd5b5061029d60048036036040811015610d8757600080fd5b506001600160a01b0381358116916020013516612385565b348015610dab57600080fd5b50610581600480360360a0811015610dc257600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610e0157600080fd5b820183602082011115610e1357600080fd5b803590602001918460018302840111600160201b83111715610e3457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506123b3945050505050565b348015610e8157600080fd5b5061058160048036036020811015610e9857600080fd5b50356001600160a01b031661257e565b348015610eb457600080fd5b50610257612680565b60006001600160a01b038316610f045760405162461bcd60e51b815260040180806020018281038252602b815260200180613c1b602b913960400191505060405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b6060610f5c612680565b8210610faf576040805162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374616e7420746f6b656e00604482015290519081900360640190fd5b600f54611048576009805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b50505050509050610f4d565b600a61105383612686565b60405160200180838054600181600116156101000203166002900480156110b15780601f1061108f5761010080835404028352918201916110b1565b820191906000526020600020905b81548152906001019060200180831161109d575b5050825160208401908083835b602083106110dd5780518252601f1990920191602091820191016110be565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600b5460ff1681565b600061112c61295b565b6001600160a01b031661113d611b85565b6001600160a01b031614611186576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600b805483919060ff1916600183600281111561119f57fe5b0217905550600192915050565b81518351146111ec5760405162461bcd60e51b8152600401808060200182810382526028815260200180613e166028913960400191505060405180910390fd5b6001600160a01b0384166112315760405162461bcd60e51b8152600401808060200182810382526025815260200180613cda6025913960400191505060405180910390fd5b61123961295b565b6001600160a01b0316856001600160a01b0316148061126457506112648561125f61295b565b612385565b61129f5760405162461bcd60e51b8152600401808060200182810382526032815260200180613cff6032913960400191505060405180910390fd5b60006112a961295b565b90506112b98187878787876114a7565b60005b84518110156113bf5760008582815181106112d357fe5b6020026020010151905060008583815181106112eb57fe5b60200260200101519050611358816040518060600160405280602a8152602001613d59602a91396002600086815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000205461295f9092919063ffffffff16565b60008381526002602090815260408083206001600160a01b038e811685529252808320939093558a168152205461138f90826129f6565b60009283526002602090815260408085206001600160a01b038c16865290915290922091909155506001016112bc565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561144557818101518382015260200161142d565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561148457818101518382015260200161146c565b5050505090500194505050505060405180910390a46114a7818787878787612a57565b505050505050565b6114b761295b565b6001600160a01b03166114c8611b85565b6001600160a01b031614611511576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015611540573d6000803e3d6000fd5b5050565b606081518351146115865760405162461bcd60e51b8152600401808060200182810382526029815260200180613ded6029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156115a057600080fd5b506040519080825280602002602001820160405280156115ca578160200160208202803683370190505b50905060005b8451811015611628576116098582815181106115e857fe5b60200260200101518583815181106115fc57fe5b6020026020010151610ebd565b82828151811061161557fe5b60209081029190910101526001016115d0565b509392505050565b61163861295b565b6001600160a01b0316611649611b85565b6001600160a01b031614611692576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600755565b61169f61295b565b6001600160a01b03166116b0611b85565b6001600160a01b0316146116f9576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60005b8151811015611540576000600c600084848151811061171757fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016116fc565b61175961295b565b6001600160a01b031661176a611b85565b6001600160a01b0316146117b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b805161154090600a906020840190613a58565b60006117d061295b565b6001600160a01b03166117e1611b85565b6001600160a01b03161461182a576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600b805485919060ff1916600183600281111561184357fe5b02179055505060089190915560075550600190565b61186061295b565b6001600160a01b0316611871611b85565b6001600160a01b0316146118ba576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60075481565b61191261295b565b6001600160a01b0316611923611b85565b6001600160a01b03161461196c576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60135460ff1615156001146119b9576040805162461bcd60e51b815260206004820152600e60248201526d6e6f742072657175657374696e6760901b604482015290519081900360640190fd5b600f5415611a07576040805162461bcd60e51b81526020600482015260166024820152753932b1b2b4bb32b2103930b73237b690373ab6b132b960511b604482015290519081900360640190fd5b6013805460ff19169055600019430140600f81905560408051918252517ff8bdf5d1cc0e940f8f774dbbf0c0697df3fb08aedf9835de3c7d9c6dfaff8d8e9181900360200190a1565b600f5481565b611a5e61295b565b6001600160a01b0316611a6f611b85565b6001600160a01b031614611ab8576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60005b8151811015611540576001600c6000848481518110611ad657fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611abb565b611b1861295b565b6001600160a01b0316611b29611b85565b6001600160a01b031614611b72576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b8051611540906009906020840190613a58565b6000546001600160a01b03165b90565b611b9d61295b565b6001600160a01b0316611bae611b85565b6001600160a01b031614611bf7576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b7f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b031663a9059cbb611c2e611b85565b604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca16916370a08231916024808301926020929190829003018186803b158015611c9457600080fd5b505afa158015611ca8573d6000803e3d6000fd5b505050506040513d6020811015611cbe57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015611d0f57600080fd5b505af1158015611d23573d6000803e3d6000fd5b505050506040513d602081101561154057600080fd5b60065481565b611d4761295b565b6001600160a01b0316611d58611b85565b6001600160a01b031614611da1576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600855565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614611e23576040805162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015290519081900360640190fd5b6115408282612cd6565b600c6020526000908152604090205460ff1681565b60085481565b816001600160a01b0316611e5a61295b565b6001600160a01b03161415611ea05760405162461bcd60e51b8152600401808060200182810382526029815260200180613dc46029913960400191505060405180910390fd5b8060036000611ead61295b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611ef161295b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611f3f61295b565b6001600160a01b0316611f50611b85565b6001600160a01b031614611f99576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b60155460ff1615611fdb5760405162461bcd60e51b8152600401808060200182810382526028815260200180613bf36028913960400191505060405180910390fd5b600a5460026000196101006001841615020190911604612042576040805162461bcd60e51b815260206004820152601c60248201527f596f752073686f756c6420736574206261736555524920666972737400000000604482015290519081900360640190fd5b6015805460ff19166001179055612057612dc3565b565b600b54610100900460ff1681565b600d6020526000908152604090205481565b600061208361295b565b6001600160a01b0316612094611b85565b6001600160a01b0316146120dd576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b600b805483919061ff00191661010083600381111561119f57fe5b600061210261295b565b6001600160a01b0316612113611b85565b6001600160a01b03161461215c576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b83821461216557fe5b60ff84111561217057fe5b60005b60ff81168511156121f35785858260ff1681811061218d57fe5b905060200201356001600160a01b03166001600160a01b03166108fc85858460ff168181106121b857fe5b905060200201359081150290604051600060405180830381858888f193505050501580156121ea573d6000803e3d6000fd5b50600101612173565b50600195945050505050565b60026014541415612257576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002601455600654819061227361226c612680565b83906129f6565b11156122b05760405162461bcd60e51b8152600401808060200182810382526023815260200180613c956023913960400191505060405180910390fd5b6122c16122bb61295b565b83612ec4565b50506001601455565b60026014541415612322576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002601455600654819061233761226c612680565b11156123745760405162461bcd60e51b8152600401808060200182810382526023815260200180613c956023913960400191505060405180910390fd5b6122c161237f61295b565b83612fe1565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166123f85760405162461bcd60e51b8152600401808060200182810382526025815260200180613cda6025913960400191505060405180910390fd5b61240061295b565b6001600160a01b0316856001600160a01b0316148061242657506124268561125f61295b565b6124615760405162461bcd60e51b8152600401808060200182810382526029815260200180613c6c6029913960400191505060405180910390fd5b600061246b61295b565b905061248b81878761247c886130ab565b612485886130ab565b876114a7565b6124d2836040518060600160405280602a8152602001613d59602a913960008781526002602090815260408083206001600160a01b038d168452909152902054919061295f565b60008581526002602090815260408083206001600160a01b038b8116855292528083209390935587168152205461250990846129f6565b60008581526002602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46114a78187878787876130ef565b61258661295b565b6001600160a01b0316612597611b85565b6001600160a01b0316146125e0576040805162461bcd60e51b81526020600482018190526024820152600080516020613da4833981519152604482015290519081900360640190fd5b6001600160a01b0381166126255760405162461bcd60e51b8152600401808060200182810382526026815260200180613c466026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60055490565b60608060065467ffffffffffffffff811180156126a257600080fd5b506040519080825280602002602001820160405280156126cc578160200160208202803683370190505b50604080516008808252610120820190925291925060609190602082016101008036833701905050905060005b600654811015612723578083828151811061271057fe5b60209081029190910101526001016126f9565b5060005b60065481101561293657600881066128bc57600061274482613260565b9050600654816001600160e01b0319168161275b57fe5b068360008151811061276957fe5b6020026020010181815250506006548163ffffffff60c01b168161278957fe5b068360018151811061279757fe5b6020026020010181815250506006548163ffffffff60a01b16816127b757fe5b06836002815181106127c557fe5b6020026020010181815250506006548163ffffffff60801b16816127e557fe5b06836003815181106127f357fe5b6020026020010181815250506006548163ffffffff60601b168161281357fe5b068360048151811061282157fe5b602002602001018181525050600654816bffffffff0000000000000000168161284657fe5b068360058151811061285457fe5b6020026020010181815250506006548167ffffffff00000000168161287557fe5b068360068151811061288357fe5b6020026020010181815250506006548163ffffffff16816128a057fe5b06836007815181106128ae57fe5b602002602001018181525050505b60008260088306815181106128cd57fe5b602002602001015190508381815181106128e357fe5b60200260200101518483815181106128f757fe5b602002602001015185848151811061290b57fe5b6020026020010186848151811061291e57fe5b60209081029190910101919091525250600101612727565b5061295382858151811061294657fe5b602002602001015161328f565b949350505050565b3390565b600081848411156129ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b357818101518382015260200161299b565b50505050905090810190601f1680156129e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612a50576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b612a69846001600160a01b031661336a565b156114a757836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612af7578181015183820152602001612adf565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612b36578181015183820152602001612b1e565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612b72578181015183820152602001612b5a565b50505050905090810190601f168015612b9f5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612bc457600080fd5b505af1925050508015612be957506040513d6020811015612be457600080fd5b505160015b612c7e57612bf5613af1565b80612c005750612c47565b60405162461bcd60e51b81526020600482018181528351602484015283518493919283926044019190850190808383600083156129b357818101518382015260200161299b565b60405162461bcd60e51b8152600401808060200182810382526034815260200180613b976034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b14612ccd5760405162461bcd60e51b8152600401808060200182810382526028815260200180613bcb6028913960400191505060405180910390fd5b50505050505050565b60135460ff161515600114612d23576040805162461bcd60e51b815260206004820152600e60248201526d6e6f742072657175657374696e6760901b604482015290519081900360640190fd5b6012548214612d6a576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081b5e481c995c5d595cdd60921b604482015290519081900360640190fd5b6013805460ff191690558015612d8457600f819055612d8a565b6001600f555b600f5460408051918252517ff8bdf5d1cc0e940f8f774dbbf0c0697df3fb08aedf9835de3c7d9c6dfaff8d8e9181900360200190a15050565b601054604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca16916370a08231916024808301926020929190829003018186803b158015612e2c57600080fd5b505afa158015612e40573d6000803e3d6000fd5b505050506040513d6020811015612e5657600080fd5b50511015612ea4576040805162461bcd60e51b81526020600482015260166024820152753737ba1032b737bab3b43a102624a725903a37b5b2b760511b604482015290519081900360640190fd5b612eb2601154601054613370565b6012556013805460ff19166001179055565b6002600b5460ff166002811115612ed757fe5b14612f21576040805162461bcd60e51b8152602060048201526015602482015274537461747573206973206e6f74206f6e2073616c6560581b604482015290519081900360640190fd5b600854612f2f90829061351b565b341015612f73576040805162461bcd60e51b815260206004820152600d60248201526c2830bcb6b2b73a1032b93937b960991b604482015290519081900360640190fd5b6007546001600160a01b0383166000908152600d6020526040902054612f9a9083906129f6565b1115612fd75760405162461bcd60e51b8152600401808060200182810382526022815260200180613cb86022913960400191505060405180910390fd5b6115408282613574565b6001600b5460ff166002811115612ff457fe5b1461303e576040805162461bcd60e51b8152602060048201526015602482015274537461747573206973206e6f742070726553616c6560581b604482015290519081900360640190fd5b6001600160a01b0382166000908152600c602052604090205460ff16612f21576040805162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f7420696e2077686974656c6973740000000000000000604482015290519081900360640190fd5b6040805160018082528183019092526060918291906020808301908036833701905050905082816000815181106130de57fe5b602090810291909101015292915050565b613101846001600160a01b031661336a565b156114a757836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613190578181015183820152602001613178565b50505050905090810190601f1680156131bd5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156131e057600080fd5b505af192505050801561320557506040513d602081101561320057600080fd5b505160015b61321157612bf5613af1565b6001600160e01b0319811663f23a6e6160e01b14612ccd5760405162461bcd60e51b8152600401808060200182810382526028815260200180613bcb6028913960400191505060405180910390fd5b600f54604080516020808201939093528082019390935280518084038201815260609093019052815191012090565b6060816132b457506040805180820190915260018152600360fc1b6020820152610f4d565b8160005b81156132cc57600101600a820491506132b8565b60608167ffffffffffffffff811180156132e557600080fd5b506040519080825280601f01601f191660200182016040528015613310576020820181803683370190505b50859350905060001982015b831561336157600a840660300160f81b8282806001900393508151811061333f57fe5b60200101906001600160f81b031916908160001a905350600a8404935061331c565b50949350505050565b3b151590565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79528486600060405160200180838152602001828152602001925050506040516020818303038152906040526040518463ffffffff1660e01b815260040180846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561344d578181015183820152602001613435565b50505050905090810190601f16801561347a5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561349b57600080fd5b505af11580156134af573d6000803e3d6000fd5b505050506040513d60208110156134c557600080fd5b50506000838152600e60205260408120546134e590859083903090613790565b6000858152600e60205260409020549091506135029060016129f6565b6000858152600e602052604090205561295384826137d7565b60008261352a57506000610f29565b8282028284828161353757fe5b0414612a505760405162461bcd60e51b8152600401808060200182810382526021815260200180613d836021913960400191505060405180910390fd5b6000600b54610100900460ff16600381111561358c57fe5b14156135dd576107d06135a061226c612680565b11156135dd5760405162461bcd60e51b8152600401808060200182810382526028815260200180613d316028913960400191505060405180910390fd5b6001600b54610100900460ff1660038111156135f557fe5b14156136465761177061360961226c612680565b11156136465760405162461bcd60e51b8152600401808060200182810382526028815260200180613e5f6028913960400191505060405180910390fd5b60608167ffffffffffffffff8111801561365f57600080fd5b50604051908082528060200260200182016040528015613689578160200160208202803683370190505b50905060608267ffffffffffffffff811180156136a557600080fd5b506040519080825280602002602001820160405280156136cf578160200160208202803683370190505b50905060005b8381101561372f576136e5612680565b8382815181106136f157fe5b602002602001018181525050600182828151811061370b57fe5b60209081029190910101526005546137249060016129f6565b6005556001016136d5565b5061374b84838360405180602001604052806000815250613803565b6001600160a01b0384166000908152600d602052604090205461376e90846129f6565b6001600160a01b039094166000908152600d6020526040902093909355505050565b60408051602080820196909652808201949094526001600160a01b039290921660608401526080808401919091528151808403909101815260a09092019052805191012090565b604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b6001600160a01b0384166138485760405162461bcd60e51b8152600401808060200182810382526021815260200180613e3e6021913960400191505060405180910390fd5b81518351146138885760405162461bcd60e51b8152600401808060200182810382526028815260200180613e166028913960400191505060405180910390fd5b600061389261295b565b90506138a3816000878787876114a7565b60005b84518110156139675761391e600260008784815181106138c257fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205485838151811061390857fe5b60200260200101516129f690919063ffffffff16565b6002600087848151811061392e57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b1682529092529020556001016138a6565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156139ee5781810151838201526020016139d6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015613a2d578181015183820152602001613a15565b5050505090500194505050505060405180910390a4613a5181600087878787612a57565b5050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613a9957805160ff1916838001178555613ac6565b82800160010185558215613ac6579182015b82811115613ac6578251825591602001919060010190613aab565b50613ad2929150613ad6565b5090565b5b80821115613ad25760008155600101613ad7565b60e01c90565b600060443d1015613b0157611b92565b600481823e6308c379a0613b158251613aeb565b14613b1f57611b92565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715613b4f5750505050611b92565b82840192508251915080821115613b695750505050611b92565b503d83016020828401011115613b8157505050611b92565b601f01601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73596f75206861766520616c72656164792067656e65726174656420612072616e646f6d2073656564455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564426f756e64206c696d6974206f66206d6178696d756d20737570706c79206c696d69744f766572206d617820746f6b656e2063616e206d696e74207065722077616c6c6574455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564426f756e64206c696d6974206f66206d6178696d756d20737570706c79206f662053746167652031455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373426f756e64206c696d6974206f66206d6178696d756d20737570706c79206f662053746167652032a2646970667358221220ecdde2aba33f8f6b8466cf4f857fb79861e460c73809cafc83ca938bc8b1985c64736f6c634300060c0033

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

000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44500000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000002b93000000000000000000000000000000000000000000000000009fdf42f6e48000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a755a4650744558586631346e397578456a4478727372724e4864414770786d4138387050795539344244580000000000000000000000

-----Decoded View---------------
Arg [0] : _VRFCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [1] : _LINKToken (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : _keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : _blankURI (string): ipfs://QmZuZFPtEXXf14n9uxEjDxrsrrNHdAGpxmA88pPyU94BDX
Arg [4] : _supply (uint256): 11155
Arg [5] : _price (uint256): 45000000000000000
Arg [6] : _maxMint (uint256): 10

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000002b93
Arg [5] : 000000000000000000000000000000000000000000000000009fdf42f6e48000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5a755a4650744558586631346e397578456a4478727372
Arg [9] : 724e4864414770786d4138387050795539344244580000000000000000000000


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.