ETH Price: $3,267.25 (+0.61%)
Gas: 3 Gwei

Token

 

Overview

Max Total Supply

147

Holders

112

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x32ea4E97652E09C681da8611280Fe02457858688
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:
QeyStrokes

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : QeyStrokes.sol
/**
    Baushaus: https://www.baushaus.xyz/
 */

//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.10;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "./interfaces/IRandom.sol";

contract QeyStrokes is ERC1155Burnable, Ownable, ReentrancyGuard, Pausable, PaymentSplitter {
    using Strings for uint256;
    string public tokenURI = "https://ipfs.io/ipfs/QmUZ2QJrnmFymgEiyZdGsU1Z3q6vK96PxQ3QjvMzdYGmtA/";
    bytes32 public root;
    uint256 public cost = 0.1 ether;
    bool public whitelistActive = false;
    bool public burnActive = false;
    uint256 public supply;
    uint256 public tokenId = 0;    
    uint256 public max = 1;
    string public extension = ".json";
    IRandom private rng;
    mapping(uint256 => uint256) parcelCount;
    mapping(uint256 => uint256) tokenToParcel;    
    mapping(address => uint256) holdings;
    address[] _addresses = [
        // dev wallet
        0x99151DEd55907fd2A256C882EA5c16D3f84340C9,
        // owner wallet
        0x5f4D7F30583D321909d61fd54e4612072917b023,
        // owner wallet
        0x9c48A44fAe51EA948259E3fea93461Fb8989246e
    ];
    uint256[] _shares = [1750 ,4215, 4215];
    event ParcelMinted(uint256 tokenId, uint256 parcelID, address owner);
    event GenesisMinted(uint256 tokenId, uint256[] tokenIds, uint256[] parcelIDs, address owner);
    
    constructor(uint256 parcel1, uint256 parcel2, uint256 parcel3, uint256 parcel4, IRandom _rng, bytes32 _root) ERC1155(tokenURI) PaymentSplitter(_addresses, _shares) {
        parcelCount[1] = parcel1;
        parcelCount[2] = parcel2;
        parcelCount[3] = parcel3;
        parcelCount[4] = parcel4;
        setSupply(parcel1 + parcel2 + parcel3 + parcel4);
        rng = _rng;
        root = _root;
        pause();
    }

    function contractURI() public view returns (string memory) {
        return "https://ipfs.io/ipfs/QmV83ZHZwwFm7sAiipxFxJZKjsmMiFxW5nHWRifZXcQQgY";
    }

    function whitelistMint(uint256 _amount, uint256 _tokenId, bytes32[] calldata proof) external payable nonReentrant {
        require(whitelistActive, "Whitelist is not active");
        require(_verify(_leaf(_msgSender(), _tokenId), proof), "Invalid");
        require(holdings[_msgSender()] + _amount <= _tokenId, "Cannot exceed allocated");
        require(_amount * cost == msg.value, "Incorrect ETH");
        callMint(_amount);
        holdings[_msgSender()] += _amount;
    }

    function adminMint() external nonReentrant onlyOwner {
        callMint(1);
    }

    function mint(uint256 _amount) external payable nonReentrant whenNotPaused {
        require(_amount <= max, "Cannot be more than max");
        require(_amount * cost == msg.value, "Incorrect ETH");
        callMint(_amount);
    }

    /**
        @dev filter out all parcels with supply > 0
        randomly choose one from the filtered list
     */
    function getParcelID(uint256 _tokenId) internal view returns (uint256) {
        uint256 resultCount;

        for(uint256 i = 1; i <= 4; i++) {
            if (parcelCount[i] > 0) { 
                resultCount++;
            }
        }

        require(resultCount > 0);

        uint256[] memory result = new uint256[](resultCount);
        uint256 j;

        for (uint256 i = 1; i <= 4; i++) {
            if (parcelCount[i] > 0) {
                result[j] = i;
                j++;
            }
        }
        uint256 _index = rng.random(_tokenId) % result.length;
        return result[_index];
    }

    /**
        @dev utility function for public mint and whitelist mint
        get parcel ID, decrement supply of parcel id and update
        mapping of token and parcelID for burn reference
     */
    function callMint(uint256 amount) internal {
        require(tokenId + amount <= supply, "Cannot exceed");
        for(uint256 i; i < amount; i++) {
            uint nextToken = tokenId + i;
            uint256 _parcelID = getParcelID(nextToken);
            parcelCount[_parcelID] -= 1;
            _mint(_msgSender(), nextToken, 1, "");
            tokenToParcel[nextToken] = _parcelID;            
            emit ParcelMinted(nextToken, _parcelID, _msgSender());
        }        
        tokenId += amount;
    }

    /** ================== ADMIN ONLY FUNCTIONS ================== */

    function setMax(uint256 _max) external onlyOwner {
        max = _max;
    }

    function toggleWhitelist() external onlyOwner {
        whitelistActive = !whitelistActive;
    }

    function toggleBurnActive() external onlyOwner {
        burnActive = !burnActive;
    }

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

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

    function setSupply(uint256 _supply) public onlyOwner {
        supply = _supply;
    }

    function setExtension(string memory _extension) external onlyOwner {
        extension = _extension;
    }

    function setURI(string memory _tokenURI) external onlyOwner {
        tokenURI = _tokenURI;
    }

    function parcelID(uint256 id) public view returns (uint256) {
        return tokenToParcel[id];
    }

    function uri(uint256 id) public view override returns (string memory) {
	    return bytes(tokenURI).length > 0	? string(abi.encodePacked(tokenURI, id.toString(), extension)) : "";
    }

    /**
        @dev burning a single parcel 4 will mint a genesis that exceeds 3939
        emit event for subgraph to categorize correct genesis (should be category 6)
     */
    function burnOne(uint256 id) external {
        require(burnActive, "Burn not active");
        require(tokenToParcel[id] == 4, "First should be parcel 4");
        _burn(_msgSender(), id, 1);
        _mint(_msgSender(), tokenId, 1, "");        
        uint256[] memory tokenIds = new uint256[](1);
        tokenIds[0] = id;
        uint256[] memory parcelIDs = new uint256[](1);
        parcelIDs[0] = tokenToParcel[id];
        emit GenesisMinted(tokenId, tokenIds, parcelIDs, _msgSender());
        tokenId++;
    }

    /**
        @dev burn 3 parcels of type 1,2 and 3 to mint a genesis that exceeds 3939
        emit event for subgraph to categorize correct genesis (categories 1 - 6)
     */
    function burnThree(uint256[] memory ids) external {
        require(burnActive, "Burn not active");
        uint256 first = ids[0];
        uint256 second = ids[1];
        uint256 third = ids[2];
        require(tokenToParcel[first] == 1, "First should be parcel 1");
        require(tokenToParcel[second] == 2, "Second should be parcel 2");
        require(tokenToParcel[third] == 3, "Third should be parcel 3");        
        uint256[] memory burnAmount = new uint256[](3);
        burnAmount[0] = 1;
        burnAmount[1] = 1;
        burnAmount[2] = 1;
        _burnBatch(_msgSender(), ids, burnAmount);
        _mint(_msgSender(), tokenId, 1, "");        
        uint256[] memory parcelIDs = new uint256[](3);
        parcelIDs[0] = tokenToParcel[first];
        parcelIDs[1] = tokenToParcel[second];
        parcelIDs[2] = tokenToParcel[third];
        emit GenesisMinted(tokenId, ids, parcelIDs, _msgSender());
        tokenId++;
    }

    function _leaf(address account, uint256 _tokenId)
    internal pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(_tokenId, account));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof)
    internal view returns (bool)
    {
        return MerkleProof.verify(proof, root, leaf);
    }
}

File 2 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 19 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 4 of 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 19 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 6 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 19 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 8 of 19 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 9 of 19 : IRandom.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.10;

interface IRandom {
    function random(uint256 tokenId) external view returns (uint256);
}

File 10 of 19 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 11 of 19 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 12 of 19 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 14 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 16 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 17 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 18 of 19 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 19 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"parcel1","type":"uint256"},{"internalType":"uint256","name":"parcel2","type":"uint256"},{"internalType":"uint256","name":"parcel3","type":"uint256"},{"internalType":"uint256","name":"parcel4","type":"uint256"},{"internalType":"contract IRandom","name":"_rng","type":"address"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"parcelIDs","type":"uint256[]"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"GenesisMinted","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":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parcelID","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"ParcelMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"adminMint","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":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burnOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"burnThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"parcelID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61010060405260446080818152906200493060a03980516200002a91600d9160209091019062000882565b5067016345785d8a0000600f556010805461ffff191690556000601255600160135560408051808201909152600580825264173539b7b760d91b60209092019182526200007a9160149162000882565b50604080516060810182527399151ded55907fd2a256c882ea5c16d3f84340c98152735f4d7f30583d321909d61fd54e4612072917b0236020820152739c48a44fae51ea948259e3fea93461fb8989246e91810191909152620000e290601990600362000911565b50604080516060810182526106d6815261107760208201819052918101919091526200011390601a90600362000969565b503480156200012157600080fd5b5060405162004994380380620049948339810160408190526200014491620009c4565b60198054806020026020016040519081016040528092919081815260200182805480156200019c57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200017d575b5050505050601a805480602002602001604051908101604052809291908181526020018280548015620001ef57602002820191906000526020600020905b815481526020019060010190808311620001da575b5050505050600d8054620002039062000a29565b80601f0160208091040260200160405190810160405280929190818152602001828054620002319062000a29565b8015620002825780601f10620002565761010080835404028352916020019162000282565b820191906000526020600020905b8154815290600101906020018083116200026457829003601f168201915b50505050506200029881620004e760201b60201c565b50620002a43362000500565b60016004556005805460ff191690558051825114620003255760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003785760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200031c565b60005b8251811015620003e457620003cf8382815181106200039e576200039e62000a66565b6020026020010151838381518110620003bb57620003bb62000a66565b60200260200101516200055260201b60201c565b80620003db8162000a92565b9150506200037b565b50506016602052507f4c4dc693d7db52f85fe052106f4b4b920e78e8ef37dee82878a60ab8585faf498690557fcaff291fe014adc6b72a172705750b4cabe8f8667664d2924a166caab28856488590557ff06d282f967055cb1eee17e04aa005b9682a620f4bbcfaee55ba78607a3d87ae84905560046000527fec061709de2491458f4c981032059d7d19b0e55f45018bac6b3e660bdc959a59839055620004b1838562000493888a62000ab0565b6200049f919062000ab0565b620004ab919062000ab0565b62000740565b601580546001600160a01b0319166001600160a01b038416179055600e819055620004db62000790565b50505050505062000acb565b8051620004fc90600290602084019062000882565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005bf5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200031c565b60008111620006115760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200031c565b6001600160a01b038216600090815260086020526040902054156200068d5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200031c565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b0384169081179091556000908152600860205260409020819055600654620006f790829062000ab0565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6003546001600160a01b031633146200078b5760405162461bcd60e51b815260206004820181905260248201526000805160206200497483398151915260448201526064016200031c565b601155565b6003546001600160a01b03163314620007db5760405162461bcd60e51b815260206004820181905260248201526000805160206200497483398151915260448201526064016200031c565b620007e5620007e7565b565b60055460ff16156200082f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016200031c565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620008653390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620008909062000a29565b90600052602060002090601f016020900481019282620008b45760008555620008ff565b82601f10620008cf57805160ff1916838001178555620008ff565b82800160010185558215620008ff579182015b82811115620008ff578251825591602001919060010190620008e2565b506200090d929150620009ad565b5090565b828054828255906000526020600020908101928215620008ff579160200282015b82811115620008ff57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000932565b828054828255906000526020600020908101928215620008ff579160200282015b82811115620008ff578251829061ffff169055916020019190600101906200098a565b5b808211156200090d5760008155600101620009ae565b60008060008060008060c08789031215620009de57600080fd5b86516020880151604089015160608a015160808b0151939950919750955093506001600160a01b038116811462000a1457600080fd5b8092505060a087015190509295509295509295565b600181811c9082168062000a3e57607f821691505b6020821081141562000a6057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000aa95762000aa962000a7c565b5060010190565b6000821982111562000ac65762000ac662000a7c565b500190565b613e558062000adb6000396000f3fe60806040526004361061028b5760003560e01c80636ac5db191161015a578063a22cb465116100c1578063e8a3d4851161007a578063e8a3d48514610804578063e985e9c514610819578063ebf0c71714610862578063f242432a14610878578063f2fde38b14610898578063f5298aca146108b857600080fd5b8063a22cb46514610723578063bd2452de14610743578063c4be5b5914610770578063ce7c2ac214610783578063d79779b2146107b9578063e33b7de3146107ef57600080fd5b8063864ef3e511610113578063864ef3e514610650578063895fc7881461066f5780638b83209b146106845780638da5cb5b146106bc5780639852595c146106da578063a0712d681461071057600080fd5b80636ac5db19146105bb5780636b20c454146105d1578063715018a6146105f15780637e15144b146106065780637e2285aa1461061b5780638456cb591461063b57600080fd5b80632eb2c2d6116101fe578063406072a9116101b7578063406072a9146104db57806348b75044146105215780634bba389d146105415780634e1273f4146105615780635bc0997c1461058e5780635c975abb146105a357600080fd5b80632eb2c2d61461043c57806334b4a81c1461045c5780633a98ef391461047c5780633b4c4b25146104915780633c130d90146104b15780633f4ba83a146104c657600080fd5b80630e89341c116102505780630e89341c1461038e57806313faede6146103bb57806317d70f7c146103d157806319165587146103e75780631fe9eabc146104075780632d5537b01461042757600080fd5b8062fdd58e146102d957806301ffc9a71461030c57806302ce58131461033c57806302fe530514610356578063047fc9aa1461037857600080fd5b366102d4577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e557600080fd5b506102f96102f436600461305e565b6108d8565b6040519081526020015b60405180910390f35b34801561031857600080fd5b5061032c6103273660046130a0565b61096f565b6040519015158152602001610303565b34801561034857600080fd5b5060105461032c9060ff1681565b34801561036257600080fd5b5061037661037136600461315c565b6109c1565b005b34801561038457600080fd5b506102f960115481565b34801561039a57600080fd5b506103ae6103a93660046131a4565b610a02565b6040516103039190613219565b3480156103c757600080fd5b506102f9600f5481565b3480156103dd57600080fd5b506102f960125481565b3480156103f357600080fd5b5061037661040236600461322c565b610a63565b34801561041357600080fd5b506103766104223660046131a4565b610b91565b34801561043357600080fd5b506103ae610bc0565b34801561044857600080fd5b506103766104573660046132fd565b610c4e565b34801561046857600080fd5b506103766104773660046133aa565b610ce5565b34801561048857600080fd5b506006546102f9565b34801561049d57600080fd5b506103766104ac3660046131a4565b611071565b3480156104bd57600080fd5b506103ae6110a0565b3480156104d257600080fd5b506103766110ad565b3480156104e757600080fd5b506102f96104f63660046133de565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b34801561052d57600080fd5b5061037661053c3660046133de565b6110e1565b34801561054d57600080fd5b5061037661055c3660046131a4565b6112ba565b34801561056d57600080fd5b5061058161057c366004613417565b611467565b604051610303919061351e565b34801561059a57600080fd5b50610376611590565b3480156105af57600080fd5b5060055460ff1661032c565b3480156105c757600080fd5b506102f960135481565b3480156105dd57600080fd5b506103766105ec366004613531565b6115d7565b3480156105fd57600080fd5b5061037661161f565b34801561061257600080fd5b50610376611653565b34801561062757600080fd5b5061037661063636600461315c565b611691565b34801561064757600080fd5b506103766116ce565b34801561065c57600080fd5b5060105461032c90610100900460ff1681565b34801561067b57600080fd5b50610376611700565b34801561069057600080fd5b506106a461069f3660046131a4565b611763565b6040516001600160a01b039091168152602001610303565b3480156106c857600080fd5b506003546001600160a01b03166106a4565b3480156106e657600080fd5b506102f96106f536600461322c565b6001600160a01b031660009081526009602052604090205490565b61037661071e3660046131a4565b611793565b34801561072f57600080fd5b5061037661073e3660046135b4565b6118b0565b34801561074f57600080fd5b506102f961075e3660046131a4565b60009081526017602052604090205490565b61037661077e3660046135e2565b6118bb565b34801561078f57600080fd5b506102f961079e36600461322c565b6001600160a01b031660009081526008602052604090205490565b3480156107c557600080fd5b506102f96107d436600461322c565b6001600160a01b03166000908152600b602052604090205490565b3480156107fb57600080fd5b506007546102f9565b34801561081057600080fd5b506103ae611aa0565b34801561082557600080fd5b5061032c6108343660046133de565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561086e57600080fd5b506102f9600e5481565b34801561088457600080fd5b50610376610893366004613664565b611ac0565b3480156108a457600080fd5b506103766108b336600461322c565b611b05565b3480156108c457600080fd5b506103766108d33660046136cc565b611ba0565b60006001600160a01b0383166109495760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806109a057506001600160e01b031982166303a24d0760e21b145b806109bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146109eb5760405162461bcd60e51b815260040161094090613701565b80516109fe90600d906020840190612fb0565b5050565b60606000600d8054610a1390613736565b905011610a2f57604051806020016040528060008152506109bb565b600d610a3a83611be3565b6014604051602001610a4e9392919061380b565b60405160208183030381529060405292915050565b6001600160a01b038116600090815260086020526040902054610a985760405162461bcd60e51b815260040161094090613833565b6000610aa360075490565b610aad904761388f565b90506000610ada8383610ad5866001600160a01b031660009081526009602052604090205490565b611ce8565b905080610af95760405162461bcd60e51b8152600401610940906138a7565b6001600160a01b03831660009081526009602052604081208054839290610b2190849061388f565b925050819055508060076000828254610b3a919061388f565b90915550610b4a90508382611d30565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6003546001600160a01b03163314610bbb5760405162461bcd60e51b815260040161094090613701565b601355565b60148054610bcd90613736565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613736565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b6001600160a01b038516331480610c6a5750610c6a8533610834565b610cd15760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610940565b610cde8585858585611e49565b5050505050565b601054610100900460ff16610d2e5760405162461bcd60e51b815260206004820152600f60248201526e4275726e206e6f742061637469766560881b6044820152606401610940565b600081600081518110610d4357610d436138f2565b60200260200101519050600082600181518110610d6257610d626138f2565b60200260200101519050600083600281518110610d8157610d816138f2565b602002602001015190506017600084815260200190815260200160002054600114610dee5760405162461bcd60e51b815260206004820152601860248201527f46697273742073686f756c642062652070617263656c203100000000000000006044820152606401610940565b600082815260176020526040902054600214610e4c5760405162461bcd60e51b815260206004820152601960248201527f5365636f6e642073686f756c642062652070617263656c2032000000000000006044820152606401610940565b600081815260176020526040902054600314610eaa5760405162461bcd60e51b815260206004820152601860248201527f54686972642073686f756c642062652070617263656c203300000000000000006044820152606401610940565b6040805160038082526080820190925260009160208201606080368337019050509050600181600081518110610ee257610ee26138f2565b602002602001018181525050600181600181518110610f0357610f036138f2565b602002602001018181525050600181600281518110610f2457610f246138f2565b6020908102919091010152610f3a338683611fe5565b610f59335b601254600160405180602001604052806000815250612161565b6040805160038082526080820190925260009160208201606080368337505050600086815260176020526040812054825192935091839190610f9d57610f9d6138f2565b602002602001018181525050601760008581526020019081526020016000205481600181518110610fd057610fd06138f2565b602002602001018181525050601760008481526020019081526020016000205481600281518110611003576110036138f2565b6020026020010181815250507f2c86b53211c8f5111caf92bb441ee668d5b30e94076e4adbd3e95ec6e1593ace601254878361103c3390565b60405161104c9493929190613908565b60405180910390a1601280549060006110648361394d565b9190505550505050505050565b6003546001600160a01b0316331461109b5760405162461bcd60e51b815260040161094090613701565b601155565b600d8054610bcd90613736565b6003546001600160a01b031633146110d75760405162461bcd60e51b815260040161094090613701565b6110df61226b565b565b6001600160a01b0381166000908152600860205260409020546111165760405162461bcd60e51b815260040161094090613833565b6001600160a01b0382166000908152600b60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015611173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111979190613968565b6111a1919061388f565b905060006111da8383610ad587876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806111f95760405162461bcd60e51b8152600401610940906138a7565b6001600160a01b038085166000908152600c602090815260408083209387168352929052908120805483929061123090849061388f565b90915550506001600160a01b0384166000908152600b60205260408120805483929061125d90849061388f565b9091555061126e90508484836122fe565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b601054610100900460ff166113035760405162461bcd60e51b815260206004820152600f60248201526e4275726e206e6f742061637469766560881b6044820152606401610940565b6000818152601760205260409020546004146113615760405162461bcd60e51b815260206004820152601860248201527f46697273742073686f756c642062652070617263656c203400000000000000006044820152606401610940565b61136d33826001612350565b61137633610f3f565b6040805160018082528183019092526000916020808301908036833701905050905081816000815181106113ac576113ac6138f2565b60209081029190910101526040805160018082528183019092526000918160200160208202803683375050506000848152601760205260408120548251929350918391906113fc576113fc6138f2565b6020026020010181815250507f2c86b53211c8f5111caf92bb441ee668d5b30e94076e4adbd3e95ec6e1593ace60125483836114353390565b6040516114459493929190613908565b60405180910390a16012805490600061145d8361394d565b9190505550505050565b606081518351146114cc5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610940565b600083516001600160401b038111156114e7576114e76130bd565b604051908082528060200260200182016040528015611510578160200160208202803683370190505b50905060005b84518110156115885761155b858281518110611534576115346138f2565b602002602001015185838151811061154e5761154e6138f2565b60200260200101516108d8565b82828151811061156d5761156d6138f2565b60209081029190910101526115818161394d565b9050611516565b509392505050565b6003546001600160a01b031633146115ba5760405162461bcd60e51b815260040161094090613701565b6010805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0383163314806115f357506115f38333610834565b61160f5760405162461bcd60e51b815260040161094090613981565b61161a838383611fe5565b505050565b6003546001600160a01b031633146116495760405162461bcd60e51b815260040161094090613701565b6110df6000612452565b6003546001600160a01b0316331461167d5760405162461bcd60e51b815260040161094090613701565b6010805460ff19811660ff90911615179055565b6003546001600160a01b031633146116bb5760405162461bcd60e51b815260040161094090613701565b80516109fe906014906020840190612fb0565b6003546001600160a01b031633146116f85760405162461bcd60e51b815260040161094090613701565b6110df6124a4565b600260045414156117235760405162461bcd60e51b8152600401610940906139ca565b60026004556003546001600160a01b031633146117525760405162461bcd60e51b815260040161094090613701565b61175c600161251f565b6001600455565b6000600a8281548110611778576117786138f2565b6000918252602090912001546001600160a01b031692915050565b600260045414156117b65760405162461bcd60e51b8152600401610940906139ca565b600260045560055460ff16156118015760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610940565b6013548111156118535760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206265206d6f7265207468616e206d61780000000000000000006044820152606401610940565b34600f54826118629190613a01565b1461189f5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610940565b6118a88161251f565b506001600455565b6109fe33838361265f565b600260045414156118de5760405162461bcd60e51b8152600401610940906139ca565b600260045560105460ff166119355760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206973206e6f74206163746976650000000000000000006044820152606401610940565b61197b6119423385612740565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061278e92505050565b6119b15760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b6044820152606401610940565b3360009081526018602052604090205483906119ce90869061388f565b1115611a1c5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f742065786365656420616c6c6f63617465640000000000000000006044820152606401610940565b34600f5485611a2b9190613a01565b14611a685760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610940565b611a718461251f565b3360009081526018602052604081208054869290611a9090849061388f565b9091555050600160045550505050565b6060604051806080016040528060438152602001613ddd60439139905090565b6001600160a01b038516331480611adc5750611adc8533610834565b611af85760405162461bcd60e51b815260040161094090613981565b610cde858585858561279d565b6003546001600160a01b03163314611b2f5760405162461bcd60e51b815260040161094090613701565b6001600160a01b038116611b945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610940565b611b9d81612452565b50565b6001600160a01b038316331480611bbc5750611bbc8333610834565b611bd85760405162461bcd60e51b815260040161094090613981565b61161a838383612350565b606081611c075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c315780611c1b8161394d565b9150611c2a9050600a83613a36565b9150611c0b565b6000816001600160401b03811115611c4b57611c4b6130bd565b6040519080825280601f01601f191660200182016040528015611c75576020820181803683370190505b5090505b8415611ce057611c8a600183613a4a565b9150611c97600a86613a61565b611ca290603061388f565b60f81b818381518110611cb757611cb76138f2565b60200101906001600160f81b031916908160001a905350611cd9600a86613a36565b9450611c79565b949350505050565b6006546001600160a01b03841660009081526008602052604081205490918391611d129086613a01565b611d1c9190613a36565b611d269190613a4a565b90505b9392505050565b80471015611d805760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610940565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dcd576040519150601f19603f3d011682016040523d82523d6000602084013e611dd2565b606091505b505090508061161a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610940565b8151835114611e6a5760405162461bcd60e51b815260040161094090613a75565b6001600160a01b038416611e905760405162461bcd60e51b815260040161094090613abd565b3360005b8451811015611f77576000858281518110611eb157611eb16138f2565b602002602001015190506000858381518110611ecf57611ecf6138f2565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611f1f5760405162461bcd60e51b815260040161094090613b02565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f5c90849061388f565b9250508190555050505080611f709061394d565b9050611e94565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611fc7929190613b4c565b60405180910390a4611fdd8187878787876128ba565b505050505050565b6001600160a01b03831661200b5760405162461bcd60e51b815260040161094090613b7a565b805182511461202c5760405162461bcd60e51b815260040161094090613a75565b604080516020810190915260009081905233905b835181101561210257600084828151811061205d5761205d6138f2565b60200260200101519050600084838151811061207b5761207b6138f2565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156120cb5760405162461bcd60e51b815260040161094090613bbd565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806120fa8161394d565b915050612040565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612153929190613b4c565b60405180910390a450505050565b6001600160a01b0384166121c15760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610940565b336121db816000876121d288612a16565b610cde88612a16565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061220b90849061388f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cde81600087878787612a61565b60055460ff166122b45760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610940565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261161a908490612b1c565b6001600160a01b0383166123765760405162461bcd60e51b815260040161094090613b7a565b336123a68185600061238787612a16565b61239087612a16565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123e75760405162461bcd60e51b815260040161094090613bbd565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156124ea5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610940565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122e13390565b60115481601254612530919061388f565b111561256e5760405162461bcd60e51b815260206004820152600d60248201526c10d85b9b9bdd08195e18d95959609a1b6044820152606401610940565b60005b8181101561264457600081601254612589919061388f565b9050600061259682612bee565b905060016016600083815260200190815260200160002060008282546125bc9190613a4a565b909155506125de90503383600160405180602001604052806000815250612161565b6000828152601760209081526040918290208390558151848152908101839052338183015290517fdd24e8298916dbb9f7668cd8285e571bfa6266b544197493b1783df2da4a3bd09181900360600190a15050808061263c9061394d565b915050612571565b508060126000828254612657919061388f565b909155505050565b816001600160a01b0316836001600160a01b031614156126d35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610940565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000818360405160200161277092919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120905092915050565b6000611d2982600e5485612d86565b6001600160a01b0384166127c35760405162461bcd60e51b815260040161094090613abd565b336127d38187876121d288612a16565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156128145760405162461bcd60e51b815260040161094090613b02565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061285190849061388f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46128b1828888888888612a61565b50505050505050565b6001600160a01b0384163b15611fdd5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128fe9089908990889088908890600401613c01565b6020604051808303816000875af1925050508015612939575060408051601f3d908101601f1916820190925261293691810190613c5f565b60015b6129e657612945613c7c565b806308c379a0141561297f575061295a613c98565b806129655750612981565b8060405162461bcd60e51b81526004016109409190613219565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610940565b6001600160e01b0319811663bc197c8160e01b146128b15760405162461bcd60e51b815260040161094090613d21565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612a5057612a506138f2565b602090810291909101015292915050565b6001600160a01b0384163b15611fdd5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612aa59089908990889088908890600401613d69565b6020604051808303816000875af1925050508015612ae0575060408051601f3d908101601f19168201909252612add91810190613c5f565b60015b612aec57612945613c7c565b6001600160e01b0319811663f23a6e6160e01b146128b15760405162461bcd60e51b815260040161094090613d21565b6000612b71826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d9c9092919063ffffffff16565b80519091501561161a5780806020019051810190612b8f9190613da3565b61161a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610940565b60008060015b60048111612c305760008181526016602052604090205415612c1e5781612c1a8161394d565b9250505b80612c288161394d565b915050612bf4565b5060008111612c3e57600080fd5b6000816001600160401b03811115612c5857612c586130bd565b604051908082528060200260200182016040528015612c81578160200160208202803683370190505b509050600060015b60048111612ce35760008181526016602052604090205415612cd15780838381518110612cb857612cb86138f2565b602090810291909101015281612ccd8161394d565b9250505b80612cdb8161394d565b915050612c89565b50815160155460405163b863bd3760e01b815260048101889052600092916001600160a01b03169063b863bd3790602401602060405180830381865afa158015612d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d559190613968565b612d5f9190613a61565b9050828181518110612d7357612d736138f2565b6020026020010151945050505050919050565b600082612d938584612dab565b14949350505050565b6060611d268484600085612e4f565b600081815b8451811015611588576000858281518110612dcd57612dcd6138f2565b60200260200101519050808311612e0f576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612e3c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612e478161394d565b915050612db0565b606082471015612eb05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610940565b843b612efe5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610940565b600080866001600160a01b03168587604051612f1a9190613dc0565b60006040518083038185875af1925050503d8060008114612f57576040519150601f19603f3d011682016040523d82523d6000602084013e612f5c565b606091505b5091509150612f6c828286612f77565b979650505050505050565b60608315612f86575081611d29565b825115612f965782518084602001fd5b8160405162461bcd60e51b81526004016109409190613219565b828054612fbc90613736565b90600052602060002090601f016020900481019282612fde5760008555613024565b82601f10612ff757805160ff1916838001178555613024565b82800160010185558215613024579182015b82811115613024578251825591602001919060010190613009565b50613030929150613034565b5090565b5b808211156130305760008155600101613035565b6001600160a01b0381168114611b9d57600080fd5b6000806040838503121561307157600080fd5b823561307c81613049565b946020939093013593505050565b6001600160e01b031981168114611b9d57600080fd5b6000602082840312156130b257600080fd5b8135611d298161308a565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156130f8576130f86130bd565b6040525050565b60006001600160401b03831115613118576131186130bd565b60405161312f601f8501601f1916602001826130d3565b80915083815284848401111561314457600080fd5b83836020830137600060208583010152509392505050565b60006020828403121561316e57600080fd5b81356001600160401b0381111561318457600080fd5b8201601f8101841361319557600080fd5b611ce0848235602084016130ff565b6000602082840312156131b657600080fd5b5035919050565b60005b838110156131d85781810151838201526020016131c0565b838111156131e7576000848401525b50505050565b600081518084526132058160208601602086016131bd565b601f01601f19169290920160200192915050565b602081526000611d2960208301846131ed565b60006020828403121561323e57600080fd5b8135611d2981613049565b60006001600160401b03821115613262576132626130bd565b5060051b60200190565b600082601f83011261327d57600080fd5b8135602061328a82613249565b60405161329782826130d3565b83815260059390931b85018201928281019150868411156132b757600080fd5b8286015b848110156132d257803583529183019183016132bb565b509695505050505050565b600082601f8301126132ee57600080fd5b611d29838335602085016130ff565b600080600080600060a0868803121561331557600080fd5b853561332081613049565b9450602086013561333081613049565b935060408601356001600160401b038082111561334c57600080fd5b61335889838a0161326c565b9450606088013591508082111561336e57600080fd5b61337a89838a0161326c565b9350608088013591508082111561339057600080fd5b5061339d888289016132dd565b9150509295509295909350565b6000602082840312156133bc57600080fd5b81356001600160401b038111156133d257600080fd5b611ce08482850161326c565b600080604083850312156133f157600080fd5b82356133fc81613049565b9150602083013561340c81613049565b809150509250929050565b6000806040838503121561342a57600080fd5b82356001600160401b038082111561344157600080fd5b818501915085601f83011261345557600080fd5b8135602061346282613249565b60405161346f82826130d3565b83815260059390931b850182019282810191508984111561348f57600080fd5b948201945b838610156134b65785356134a781613049565b82529482019490820190613494565b965050860135925050808211156134cc57600080fd5b506134d98582860161326c565b9150509250929050565b600081518084526020808501945080840160005b83811015613513578151875295820195908201906001016134f7565b509495945050505050565b602081526000611d2960208301846134e3565b60008060006060848603121561354657600080fd5b833561355181613049565b925060208401356001600160401b038082111561356d57600080fd5b6135798783880161326c565b9350604086013591508082111561358f57600080fd5b5061359c8682870161326c565b9150509250925092565b8015158114611b9d57600080fd5b600080604083850312156135c757600080fd5b82356135d281613049565b9150602083013561340c816135a6565b600080600080606085870312156135f857600080fd5b843593506020850135925060408501356001600160401b038082111561361d57600080fd5b818701915087601f83011261363157600080fd5b81358181111561364057600080fd5b8860208260051b850101111561365557600080fd5b95989497505060200194505050565b600080600080600060a0868803121561367c57600080fd5b853561368781613049565b9450602086013561369781613049565b9350604086013592506060860135915060808601356001600160401b038111156136c057600080fd5b61339d888289016132dd565b6000806000606084860312156136e157600080fd5b83356136ec81613049565b95602085013595506040909401359392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061374a57607f821691505b6020821081141561376b57634e487b7160e01b600052602260045260246000fd5b50919050565b8054600090600181811c908083168061378b57607f831692505b60208084108214156137ad57634e487b7160e01b600052602260045260246000fd5b8180156137c157600181146137d2576137ff565b60ff198616895284890196506137ff565b60008881526020902060005b868110156137f75781548b8201529085019083016137de565b505084890196505b50505050505092915050565b60006138178286613771565b84516138278183602089016131bd565b612f6c81830186613771565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156138a2576138a2613879565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b84815260806020820152600061392160808301866134e3565b828103604084015261393381866134e3565b91505060018060a01b038316606083015295945050505050565b600060001982141561396157613961613879565b5060010190565b60006020828403121561397a57600080fd5b5051919050565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000816000190483118215151615613a1b57613a1b613879565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a4557613a45613a20565b500490565b600082821015613a5c57613a5c613879565b500390565b600082613a7057613a70613a20565b500690565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613b5f60408301856134e3565b8281036020840152613b7181856134e3565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090613c2d908301866134e3565b8281036060840152613c3f81866134e3565b90508281036080840152613c5381856131ed565b98975050505050505050565b600060208284031215613c7157600080fd5b8151611d298161308a565b600060033d1115613c955760046000803e5060005160e01c5b90565b600060443d1015613ca65790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613cd557505050505090565b8285019150815181811115613ced5750505050505090565b843d8701016020828501011115613d075750505050505090565b613d16602082860101876130d3565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612f6c908301846131ed565b600060208284031215613db557600080fd5b8151611d29816135a6565b60008251613dd28184602087016131bd565b919091019291505056fe68747470733a2f2f697066732e696f2f697066732f516d5638335a485a7777466d3773416969707846784a5a4b6a736d4d69467857356e48575269665a586351516759a264697066735822122079d49ef3e2bb2faae20df9b059e05cca5f8b2eab429eae7febed0413d5e7c96964736f6c634300080a003368747470733a2f2f697066732e696f2f697066732f516d555a32514a726e6d46796d674569795a64477355315a337136764b393650785133516a764d7a6459476d74412f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000004ed00000000000000000000000000000000000000000000000000000000000004ed00000000000000000000000000000000000000000000000000000000000004ed000000000000000000000000000000000000000000000000000000000000009c0000000000000000000000003cb6c54761151bb053e52667a9ce653551d5098bb0aeeb96e6e0eb5a01ea28d75704f6f6106c42043bf1870f73870243fa6a24e8

Deployed Bytecode

0x60806040526004361061028b5760003560e01c80636ac5db191161015a578063a22cb465116100c1578063e8a3d4851161007a578063e8a3d48514610804578063e985e9c514610819578063ebf0c71714610862578063f242432a14610878578063f2fde38b14610898578063f5298aca146108b857600080fd5b8063a22cb46514610723578063bd2452de14610743578063c4be5b5914610770578063ce7c2ac214610783578063d79779b2146107b9578063e33b7de3146107ef57600080fd5b8063864ef3e511610113578063864ef3e514610650578063895fc7881461066f5780638b83209b146106845780638da5cb5b146106bc5780639852595c146106da578063a0712d681461071057600080fd5b80636ac5db19146105bb5780636b20c454146105d1578063715018a6146105f15780637e15144b146106065780637e2285aa1461061b5780638456cb591461063b57600080fd5b80632eb2c2d6116101fe578063406072a9116101b7578063406072a9146104db57806348b75044146105215780634bba389d146105415780634e1273f4146105615780635bc0997c1461058e5780635c975abb146105a357600080fd5b80632eb2c2d61461043c57806334b4a81c1461045c5780633a98ef391461047c5780633b4c4b25146104915780633c130d90146104b15780633f4ba83a146104c657600080fd5b80630e89341c116102505780630e89341c1461038e57806313faede6146103bb57806317d70f7c146103d157806319165587146103e75780631fe9eabc146104075780632d5537b01461042757600080fd5b8062fdd58e146102d957806301ffc9a71461030c57806302ce58131461033c57806302fe530514610356578063047fc9aa1461037857600080fd5b366102d4577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e557600080fd5b506102f96102f436600461305e565b6108d8565b6040519081526020015b60405180910390f35b34801561031857600080fd5b5061032c6103273660046130a0565b61096f565b6040519015158152602001610303565b34801561034857600080fd5b5060105461032c9060ff1681565b34801561036257600080fd5b5061037661037136600461315c565b6109c1565b005b34801561038457600080fd5b506102f960115481565b34801561039a57600080fd5b506103ae6103a93660046131a4565b610a02565b6040516103039190613219565b3480156103c757600080fd5b506102f9600f5481565b3480156103dd57600080fd5b506102f960125481565b3480156103f357600080fd5b5061037661040236600461322c565b610a63565b34801561041357600080fd5b506103766104223660046131a4565b610b91565b34801561043357600080fd5b506103ae610bc0565b34801561044857600080fd5b506103766104573660046132fd565b610c4e565b34801561046857600080fd5b506103766104773660046133aa565b610ce5565b34801561048857600080fd5b506006546102f9565b34801561049d57600080fd5b506103766104ac3660046131a4565b611071565b3480156104bd57600080fd5b506103ae6110a0565b3480156104d257600080fd5b506103766110ad565b3480156104e757600080fd5b506102f96104f63660046133de565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b34801561052d57600080fd5b5061037661053c3660046133de565b6110e1565b34801561054d57600080fd5b5061037661055c3660046131a4565b6112ba565b34801561056d57600080fd5b5061058161057c366004613417565b611467565b604051610303919061351e565b34801561059a57600080fd5b50610376611590565b3480156105af57600080fd5b5060055460ff1661032c565b3480156105c757600080fd5b506102f960135481565b3480156105dd57600080fd5b506103766105ec366004613531565b6115d7565b3480156105fd57600080fd5b5061037661161f565b34801561061257600080fd5b50610376611653565b34801561062757600080fd5b5061037661063636600461315c565b611691565b34801561064757600080fd5b506103766116ce565b34801561065c57600080fd5b5060105461032c90610100900460ff1681565b34801561067b57600080fd5b50610376611700565b34801561069057600080fd5b506106a461069f3660046131a4565b611763565b6040516001600160a01b039091168152602001610303565b3480156106c857600080fd5b506003546001600160a01b03166106a4565b3480156106e657600080fd5b506102f96106f536600461322c565b6001600160a01b031660009081526009602052604090205490565b61037661071e3660046131a4565b611793565b34801561072f57600080fd5b5061037661073e3660046135b4565b6118b0565b34801561074f57600080fd5b506102f961075e3660046131a4565b60009081526017602052604090205490565b61037661077e3660046135e2565b6118bb565b34801561078f57600080fd5b506102f961079e36600461322c565b6001600160a01b031660009081526008602052604090205490565b3480156107c557600080fd5b506102f96107d436600461322c565b6001600160a01b03166000908152600b602052604090205490565b3480156107fb57600080fd5b506007546102f9565b34801561081057600080fd5b506103ae611aa0565b34801561082557600080fd5b5061032c6108343660046133de565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561086e57600080fd5b506102f9600e5481565b34801561088457600080fd5b50610376610893366004613664565b611ac0565b3480156108a457600080fd5b506103766108b336600461322c565b611b05565b3480156108c457600080fd5b506103766108d33660046136cc565b611ba0565b60006001600160a01b0383166109495760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806109a057506001600160e01b031982166303a24d0760e21b145b806109bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146109eb5760405162461bcd60e51b815260040161094090613701565b80516109fe90600d906020840190612fb0565b5050565b60606000600d8054610a1390613736565b905011610a2f57604051806020016040528060008152506109bb565b600d610a3a83611be3565b6014604051602001610a4e9392919061380b565b60405160208183030381529060405292915050565b6001600160a01b038116600090815260086020526040902054610a985760405162461bcd60e51b815260040161094090613833565b6000610aa360075490565b610aad904761388f565b90506000610ada8383610ad5866001600160a01b031660009081526009602052604090205490565b611ce8565b905080610af95760405162461bcd60e51b8152600401610940906138a7565b6001600160a01b03831660009081526009602052604081208054839290610b2190849061388f565b925050819055508060076000828254610b3a919061388f565b90915550610b4a90508382611d30565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6003546001600160a01b03163314610bbb5760405162461bcd60e51b815260040161094090613701565b601355565b60148054610bcd90613736565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613736565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b6001600160a01b038516331480610c6a5750610c6a8533610834565b610cd15760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610940565b610cde8585858585611e49565b5050505050565b601054610100900460ff16610d2e5760405162461bcd60e51b815260206004820152600f60248201526e4275726e206e6f742061637469766560881b6044820152606401610940565b600081600081518110610d4357610d436138f2565b60200260200101519050600082600181518110610d6257610d626138f2565b60200260200101519050600083600281518110610d8157610d816138f2565b602002602001015190506017600084815260200190815260200160002054600114610dee5760405162461bcd60e51b815260206004820152601860248201527f46697273742073686f756c642062652070617263656c203100000000000000006044820152606401610940565b600082815260176020526040902054600214610e4c5760405162461bcd60e51b815260206004820152601960248201527f5365636f6e642073686f756c642062652070617263656c2032000000000000006044820152606401610940565b600081815260176020526040902054600314610eaa5760405162461bcd60e51b815260206004820152601860248201527f54686972642073686f756c642062652070617263656c203300000000000000006044820152606401610940565b6040805160038082526080820190925260009160208201606080368337019050509050600181600081518110610ee257610ee26138f2565b602002602001018181525050600181600181518110610f0357610f036138f2565b602002602001018181525050600181600281518110610f2457610f246138f2565b6020908102919091010152610f3a338683611fe5565b610f59335b601254600160405180602001604052806000815250612161565b6040805160038082526080820190925260009160208201606080368337505050600086815260176020526040812054825192935091839190610f9d57610f9d6138f2565b602002602001018181525050601760008581526020019081526020016000205481600181518110610fd057610fd06138f2565b602002602001018181525050601760008481526020019081526020016000205481600281518110611003576110036138f2565b6020026020010181815250507f2c86b53211c8f5111caf92bb441ee668d5b30e94076e4adbd3e95ec6e1593ace601254878361103c3390565b60405161104c9493929190613908565b60405180910390a1601280549060006110648361394d565b9190505550505050505050565b6003546001600160a01b0316331461109b5760405162461bcd60e51b815260040161094090613701565b601155565b600d8054610bcd90613736565b6003546001600160a01b031633146110d75760405162461bcd60e51b815260040161094090613701565b6110df61226b565b565b6001600160a01b0381166000908152600860205260409020546111165760405162461bcd60e51b815260040161094090613833565b6001600160a01b0382166000908152600b60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015611173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111979190613968565b6111a1919061388f565b905060006111da8383610ad587876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806111f95760405162461bcd60e51b8152600401610940906138a7565b6001600160a01b038085166000908152600c602090815260408083209387168352929052908120805483929061123090849061388f565b90915550506001600160a01b0384166000908152600b60205260408120805483929061125d90849061388f565b9091555061126e90508484836122fe565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b601054610100900460ff166113035760405162461bcd60e51b815260206004820152600f60248201526e4275726e206e6f742061637469766560881b6044820152606401610940565b6000818152601760205260409020546004146113615760405162461bcd60e51b815260206004820152601860248201527f46697273742073686f756c642062652070617263656c203400000000000000006044820152606401610940565b61136d33826001612350565b61137633610f3f565b6040805160018082528183019092526000916020808301908036833701905050905081816000815181106113ac576113ac6138f2565b60209081029190910101526040805160018082528183019092526000918160200160208202803683375050506000848152601760205260408120548251929350918391906113fc576113fc6138f2565b6020026020010181815250507f2c86b53211c8f5111caf92bb441ee668d5b30e94076e4adbd3e95ec6e1593ace60125483836114353390565b6040516114459493929190613908565b60405180910390a16012805490600061145d8361394d565b9190505550505050565b606081518351146114cc5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610940565b600083516001600160401b038111156114e7576114e76130bd565b604051908082528060200260200182016040528015611510578160200160208202803683370190505b50905060005b84518110156115885761155b858281518110611534576115346138f2565b602002602001015185838151811061154e5761154e6138f2565b60200260200101516108d8565b82828151811061156d5761156d6138f2565b60209081029190910101526115818161394d565b9050611516565b509392505050565b6003546001600160a01b031633146115ba5760405162461bcd60e51b815260040161094090613701565b6010805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0383163314806115f357506115f38333610834565b61160f5760405162461bcd60e51b815260040161094090613981565b61161a838383611fe5565b505050565b6003546001600160a01b031633146116495760405162461bcd60e51b815260040161094090613701565b6110df6000612452565b6003546001600160a01b0316331461167d5760405162461bcd60e51b815260040161094090613701565b6010805460ff19811660ff90911615179055565b6003546001600160a01b031633146116bb5760405162461bcd60e51b815260040161094090613701565b80516109fe906014906020840190612fb0565b6003546001600160a01b031633146116f85760405162461bcd60e51b815260040161094090613701565b6110df6124a4565b600260045414156117235760405162461bcd60e51b8152600401610940906139ca565b60026004556003546001600160a01b031633146117525760405162461bcd60e51b815260040161094090613701565b61175c600161251f565b6001600455565b6000600a8281548110611778576117786138f2565b6000918252602090912001546001600160a01b031692915050565b600260045414156117b65760405162461bcd60e51b8152600401610940906139ca565b600260045560055460ff16156118015760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610940565b6013548111156118535760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206265206d6f7265207468616e206d61780000000000000000006044820152606401610940565b34600f54826118629190613a01565b1461189f5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610940565b6118a88161251f565b506001600455565b6109fe33838361265f565b600260045414156118de5760405162461bcd60e51b8152600401610940906139ca565b600260045560105460ff166119355760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206973206e6f74206163746976650000000000000000006044820152606401610940565b61197b6119423385612740565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061278e92505050565b6119b15760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b6044820152606401610940565b3360009081526018602052604090205483906119ce90869061388f565b1115611a1c5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f742065786365656420616c6c6f63617465640000000000000000006044820152606401610940565b34600f5485611a2b9190613a01565b14611a685760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610940565b611a718461251f565b3360009081526018602052604081208054869290611a9090849061388f565b9091555050600160045550505050565b6060604051806080016040528060438152602001613ddd60439139905090565b6001600160a01b038516331480611adc5750611adc8533610834565b611af85760405162461bcd60e51b815260040161094090613981565b610cde858585858561279d565b6003546001600160a01b03163314611b2f5760405162461bcd60e51b815260040161094090613701565b6001600160a01b038116611b945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610940565b611b9d81612452565b50565b6001600160a01b038316331480611bbc5750611bbc8333610834565b611bd85760405162461bcd60e51b815260040161094090613981565b61161a838383612350565b606081611c075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c315780611c1b8161394d565b9150611c2a9050600a83613a36565b9150611c0b565b6000816001600160401b03811115611c4b57611c4b6130bd565b6040519080825280601f01601f191660200182016040528015611c75576020820181803683370190505b5090505b8415611ce057611c8a600183613a4a565b9150611c97600a86613a61565b611ca290603061388f565b60f81b818381518110611cb757611cb76138f2565b60200101906001600160f81b031916908160001a905350611cd9600a86613a36565b9450611c79565b949350505050565b6006546001600160a01b03841660009081526008602052604081205490918391611d129086613a01565b611d1c9190613a36565b611d269190613a4a565b90505b9392505050565b80471015611d805760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610940565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dcd576040519150601f19603f3d011682016040523d82523d6000602084013e611dd2565b606091505b505090508061161a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610940565b8151835114611e6a5760405162461bcd60e51b815260040161094090613a75565b6001600160a01b038416611e905760405162461bcd60e51b815260040161094090613abd565b3360005b8451811015611f77576000858281518110611eb157611eb16138f2565b602002602001015190506000858381518110611ecf57611ecf6138f2565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611f1f5760405162461bcd60e51b815260040161094090613b02565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f5c90849061388f565b9250508190555050505080611f709061394d565b9050611e94565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611fc7929190613b4c565b60405180910390a4611fdd8187878787876128ba565b505050505050565b6001600160a01b03831661200b5760405162461bcd60e51b815260040161094090613b7a565b805182511461202c5760405162461bcd60e51b815260040161094090613a75565b604080516020810190915260009081905233905b835181101561210257600084828151811061205d5761205d6138f2565b60200260200101519050600084838151811061207b5761207b6138f2565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156120cb5760405162461bcd60e51b815260040161094090613bbd565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806120fa8161394d565b915050612040565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612153929190613b4c565b60405180910390a450505050565b6001600160a01b0384166121c15760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610940565b336121db816000876121d288612a16565b610cde88612a16565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061220b90849061388f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cde81600087878787612a61565b60055460ff166122b45760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610940565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261161a908490612b1c565b6001600160a01b0383166123765760405162461bcd60e51b815260040161094090613b7a565b336123a68185600061238787612a16565b61239087612a16565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123e75760405162461bcd60e51b815260040161094090613bbd565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156124ea5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610940565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122e13390565b60115481601254612530919061388f565b111561256e5760405162461bcd60e51b815260206004820152600d60248201526c10d85b9b9bdd08195e18d95959609a1b6044820152606401610940565b60005b8181101561264457600081601254612589919061388f565b9050600061259682612bee565b905060016016600083815260200190815260200160002060008282546125bc9190613a4a565b909155506125de90503383600160405180602001604052806000815250612161565b6000828152601760209081526040918290208390558151848152908101839052338183015290517fdd24e8298916dbb9f7668cd8285e571bfa6266b544197493b1783df2da4a3bd09181900360600190a15050808061263c9061394d565b915050612571565b508060126000828254612657919061388f565b909155505050565b816001600160a01b0316836001600160a01b031614156126d35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610940565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000818360405160200161277092919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120905092915050565b6000611d2982600e5485612d86565b6001600160a01b0384166127c35760405162461bcd60e51b815260040161094090613abd565b336127d38187876121d288612a16565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156128145760405162461bcd60e51b815260040161094090613b02565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061285190849061388f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46128b1828888888888612a61565b50505050505050565b6001600160a01b0384163b15611fdd5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128fe9089908990889088908890600401613c01565b6020604051808303816000875af1925050508015612939575060408051601f3d908101601f1916820190925261293691810190613c5f565b60015b6129e657612945613c7c565b806308c379a0141561297f575061295a613c98565b806129655750612981565b8060405162461bcd60e51b81526004016109409190613219565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610940565b6001600160e01b0319811663bc197c8160e01b146128b15760405162461bcd60e51b815260040161094090613d21565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612a5057612a506138f2565b602090810291909101015292915050565b6001600160a01b0384163b15611fdd5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612aa59089908990889088908890600401613d69565b6020604051808303816000875af1925050508015612ae0575060408051601f3d908101601f19168201909252612add91810190613c5f565b60015b612aec57612945613c7c565b6001600160e01b0319811663f23a6e6160e01b146128b15760405162461bcd60e51b815260040161094090613d21565b6000612b71826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d9c9092919063ffffffff16565b80519091501561161a5780806020019051810190612b8f9190613da3565b61161a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610940565b60008060015b60048111612c305760008181526016602052604090205415612c1e5781612c1a8161394d565b9250505b80612c288161394d565b915050612bf4565b5060008111612c3e57600080fd5b6000816001600160401b03811115612c5857612c586130bd565b604051908082528060200260200182016040528015612c81578160200160208202803683370190505b509050600060015b60048111612ce35760008181526016602052604090205415612cd15780838381518110612cb857612cb86138f2565b602090810291909101015281612ccd8161394d565b9250505b80612cdb8161394d565b915050612c89565b50815160155460405163b863bd3760e01b815260048101889052600092916001600160a01b03169063b863bd3790602401602060405180830381865afa158015612d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d559190613968565b612d5f9190613a61565b9050828181518110612d7357612d736138f2565b6020026020010151945050505050919050565b600082612d938584612dab565b14949350505050565b6060611d268484600085612e4f565b600081815b8451811015611588576000858281518110612dcd57612dcd6138f2565b60200260200101519050808311612e0f576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612e3c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612e478161394d565b915050612db0565b606082471015612eb05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610940565b843b612efe5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610940565b600080866001600160a01b03168587604051612f1a9190613dc0565b60006040518083038185875af1925050503d8060008114612f57576040519150601f19603f3d011682016040523d82523d6000602084013e612f5c565b606091505b5091509150612f6c828286612f77565b979650505050505050565b60608315612f86575081611d29565b825115612f965782518084602001fd5b8160405162461bcd60e51b81526004016109409190613219565b828054612fbc90613736565b90600052602060002090601f016020900481019282612fde5760008555613024565b82601f10612ff757805160ff1916838001178555613024565b82800160010185558215613024579182015b82811115613024578251825591602001919060010190613009565b50613030929150613034565b5090565b5b808211156130305760008155600101613035565b6001600160a01b0381168114611b9d57600080fd5b6000806040838503121561307157600080fd5b823561307c81613049565b946020939093013593505050565b6001600160e01b031981168114611b9d57600080fd5b6000602082840312156130b257600080fd5b8135611d298161308a565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156130f8576130f86130bd565b6040525050565b60006001600160401b03831115613118576131186130bd565b60405161312f601f8501601f1916602001826130d3565b80915083815284848401111561314457600080fd5b83836020830137600060208583010152509392505050565b60006020828403121561316e57600080fd5b81356001600160401b0381111561318457600080fd5b8201601f8101841361319557600080fd5b611ce0848235602084016130ff565b6000602082840312156131b657600080fd5b5035919050565b60005b838110156131d85781810151838201526020016131c0565b838111156131e7576000848401525b50505050565b600081518084526132058160208601602086016131bd565b601f01601f19169290920160200192915050565b602081526000611d2960208301846131ed565b60006020828403121561323e57600080fd5b8135611d2981613049565b60006001600160401b03821115613262576132626130bd565b5060051b60200190565b600082601f83011261327d57600080fd5b8135602061328a82613249565b60405161329782826130d3565b83815260059390931b85018201928281019150868411156132b757600080fd5b8286015b848110156132d257803583529183019183016132bb565b509695505050505050565b600082601f8301126132ee57600080fd5b611d29838335602085016130ff565b600080600080600060a0868803121561331557600080fd5b853561332081613049565b9450602086013561333081613049565b935060408601356001600160401b038082111561334c57600080fd5b61335889838a0161326c565b9450606088013591508082111561336e57600080fd5b61337a89838a0161326c565b9350608088013591508082111561339057600080fd5b5061339d888289016132dd565b9150509295509295909350565b6000602082840312156133bc57600080fd5b81356001600160401b038111156133d257600080fd5b611ce08482850161326c565b600080604083850312156133f157600080fd5b82356133fc81613049565b9150602083013561340c81613049565b809150509250929050565b6000806040838503121561342a57600080fd5b82356001600160401b038082111561344157600080fd5b818501915085601f83011261345557600080fd5b8135602061346282613249565b60405161346f82826130d3565b83815260059390931b850182019282810191508984111561348f57600080fd5b948201945b838610156134b65785356134a781613049565b82529482019490820190613494565b965050860135925050808211156134cc57600080fd5b506134d98582860161326c565b9150509250929050565b600081518084526020808501945080840160005b83811015613513578151875295820195908201906001016134f7565b509495945050505050565b602081526000611d2960208301846134e3565b60008060006060848603121561354657600080fd5b833561355181613049565b925060208401356001600160401b038082111561356d57600080fd5b6135798783880161326c565b9350604086013591508082111561358f57600080fd5b5061359c8682870161326c565b9150509250925092565b8015158114611b9d57600080fd5b600080604083850312156135c757600080fd5b82356135d281613049565b9150602083013561340c816135a6565b600080600080606085870312156135f857600080fd5b843593506020850135925060408501356001600160401b038082111561361d57600080fd5b818701915087601f83011261363157600080fd5b81358181111561364057600080fd5b8860208260051b850101111561365557600080fd5b95989497505060200194505050565b600080600080600060a0868803121561367c57600080fd5b853561368781613049565b9450602086013561369781613049565b9350604086013592506060860135915060808601356001600160401b038111156136c057600080fd5b61339d888289016132dd565b6000806000606084860312156136e157600080fd5b83356136ec81613049565b95602085013595506040909401359392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061374a57607f821691505b6020821081141561376b57634e487b7160e01b600052602260045260246000fd5b50919050565b8054600090600181811c908083168061378b57607f831692505b60208084108214156137ad57634e487b7160e01b600052602260045260246000fd5b8180156137c157600181146137d2576137ff565b60ff198616895284890196506137ff565b60008881526020902060005b868110156137f75781548b8201529085019083016137de565b505084890196505b50505050505092915050565b60006138178286613771565b84516138278183602089016131bd565b612f6c81830186613771565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156138a2576138a2613879565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b84815260806020820152600061392160808301866134e3565b828103604084015261393381866134e3565b91505060018060a01b038316606083015295945050505050565b600060001982141561396157613961613879565b5060010190565b60006020828403121561397a57600080fd5b5051919050565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000816000190483118215151615613a1b57613a1b613879565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a4557613a45613a20565b500490565b600082821015613a5c57613a5c613879565b500390565b600082613a7057613a70613a20565b500690565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613b5f60408301856134e3565b8281036020840152613b7181856134e3565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090613c2d908301866134e3565b8281036060840152613c3f81866134e3565b90508281036080840152613c5381856131ed565b98975050505050505050565b600060208284031215613c7157600080fd5b8151611d298161308a565b600060033d1115613c955760046000803e5060005160e01c5b90565b600060443d1015613ca65790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613cd557505050505090565b8285019150815181811115613ced5750505050505090565b843d8701016020828501011115613d075750505050505090565b613d16602082860101876130d3565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612f6c908301846131ed565b600060208284031215613db557600080fd5b8151611d29816135a6565b60008251613dd28184602087016131bd565b919091019291505056fe68747470733a2f2f697066732e696f2f697066732f516d5638335a485a7777466d3773416969707846784a5a4b6a736d4d69467857356e48575269665a586351516759a264697066735822122079d49ef3e2bb2faae20df9b059e05cca5f8b2eab429eae7febed0413d5e7c96964736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000004ed00000000000000000000000000000000000000000000000000000000000004ed00000000000000000000000000000000000000000000000000000000000004ed000000000000000000000000000000000000000000000000000000000000009c0000000000000000000000003cb6c54761151bb053e52667a9ce653551d5098bb0aeeb96e6e0eb5a01ea28d75704f6f6106c42043bf1870f73870243fa6a24e8

-----Decoded View---------------
Arg [0] : parcel1 (uint256): 1261
Arg [1] : parcel2 (uint256): 1261
Arg [2] : parcel3 (uint256): 1261
Arg [3] : parcel4 (uint256): 156
Arg [4] : _rng (address): 0x3cB6c54761151Bb053e52667a9ce653551d5098B
Arg [5] : _root (bytes32): 0xb0aeeb96e6e0eb5a01ea28d75704f6f6106c42043bf1870f73870243fa6a24e8

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000004ed
Arg [1] : 00000000000000000000000000000000000000000000000000000000000004ed
Arg [2] : 00000000000000000000000000000000000000000000000000000000000004ed
Arg [3] : 000000000000000000000000000000000000000000000000000000000000009c
Arg [4] : 0000000000000000000000003cb6c54761151bb053e52667a9ce653551d5098b
Arg [5] : b0aeeb96e6e0eb5a01ea28d75704f6f6106c42043bf1870f73870243fa6a24e8


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.