ETH Price: $2,519.75 (+3.12%)

Token

Leisure Creatures (LEISURE)
 

Overview

Max Total Supply

1,000 LEISURE

Holders

407

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LEISURE
0x1441a32a7712a66d51ea14186c027fb8d2b54ee8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Leisure Creatures are a collection of NFTs staying hydrated on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LeisureProject

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-07
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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);
}

// File: contracts/SN/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
// File: contracts/SN/IBatch.sol



pragma solidity ^0.8.0;

interface IBatch {
  function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool );
  function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external;
  function walletOfOwner( address account ) external view returns( uint[] memory );
}
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: contracts/SN/Delegated.sol



pragma solidity ^0.8.0;


contract Delegated is Ownable {
  mapping(address => bool) internal _delegates;

  constructor(){
    _delegates[owner()] = true;
  }

  modifier onlyDelegates {
    require(_delegates[msg.sender], "Invalid delegate" );
    _;
  }

  //onlyOwner
  function isDelegate( address addr ) external view onlyOwner returns ( bool ){
    return _delegates[addr];
  }

  function setDelegate( address addr, bool isDelegate_ ) external onlyOwner{
    _delegates[addr] = isDelegate_;
  }

  function transferOwnership(address newOwner) public virtual override onlyOwner {
    _delegates[newOwner] = true;
    super.transferOwnership( newOwner );
  }
}
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/SN/ERC721B.sol



pragma solidity ^0.8.0;









abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata, ERC2981 {
    using Address for address;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    //public
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function next() public view returns( uint ){
        return _owners.length;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165, ERC2981) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(ERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721B.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    //internal
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721B.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721B.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);
        _resetTokenRoyalty(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721B.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721B.ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
// File: contracts/SN/ERC721EnumerableLite.sol



pragma solidity ^0.8.0;




abstract contract ERC721EnumerableLite is ERC721B, IBatch, IERC721Enumerable {
    function isOwnerOf( address account, uint[] calldata tokenIds ) external view override returns( bool ){
        for(uint i; i < tokenIds.length; ++i ){
            if( _owners[ tokenIds[i] ] != account )
                return false;
        }

        return true;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint index) public view override returns (uint tokenId) {
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }

        require(false, "ERC721Enumerable: owner index out of bounds");
    }

    function tokenByIndex(uint index) external view virtual override returns (uint) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function totalSupply() public view virtual override returns (uint) {
        return _owners.length;
    }

    function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external override{
        for(uint i; i < tokenIds.length; ++i ){
            safeTransferFrom( from, to, tokenIds[i], data );
        }
    }

    function walletOfOwner( address account ) external view override returns( uint[] memory ){
        uint quantity = balanceOf( account );
        uint[] memory wallet = new uint[]( quantity );
        for( uint i; i < quantity; ++i ){
            wallet[i] = tokenOfOwnerByIndex( account, i );
        }
        return wallet;
    }
}
// File: contracts/LeisureProject.sol



pragma solidity ^0.8.0;







contract LeisureProject is ERC721EnumerableLite, Delegated, PaymentSplitter {
    using Strings for uint;
    using ECDSA for bytes32;

    uint public PRICE = 0.08 ether;
    uint public MAX_TOKENS_PER_TRANSACTION = 4;
    uint public WL_MAX_TOKENS_PER_ADDRESS = 4;
    uint public MAX_SUPPLY = 4567;

    string public _baseTokenURI = 'https://gateway.pinata.cloud/ipfs/QmbKHFiYX3fdzQk8ZMKRiyuawXHFbevR8CaEGmx7mw1rEx/'; // Test ipfs
    string public _baseTokenSuffix = '.json';

    bool public _paused = true;
    bool public _isPresale = true;

    bytes32 public _presaleRoot = 0x2c3e731df3270d48c2150d646491ca63dab631047f0acc00ce2918e551ac0559;    // Merkle root

    address _crossmintAddress = 0xdAb1a1854214684acE522439684a145E62505233;
    address _royaltyAddress = 0xdCE0C51dA30Ac60Ceea41Bab798Cd032d33eFa48; // Leisure Secondary

    // Mapping owner address to wl mint count 
    mapping(address => uint) private _presaleMintCount;

    // Withdrawal addresses
    address dev = 0x05d3a5E0F1F622a15D5c333EEa9034F61890A87D;
    address project = 0x909738543e48E665551D46d62C79bc42F827d46a; // leisureproject.eth
    address community = 0xdbcb1BC2491B40Aebe468d3942841645ECb0bB6c; // leisurecreatures.eth
    address art1 = 0xd39b57DfDE1EfDEaF86Fd6b207352Ad36488dB92;
    address art2 = 0xF12C75DFB47B44471eDe4Df21C8eb20B26D37108;
    address art3 = 0x3ad257DD5E4D9B9773502C0f08Cb1029264D903A;
    address will = 0x7fa1359BA6837D903f895B48A9cc19Ff383DC3f0;

    address[] addressList = [dev, project, community, art1, art2, art3, will];
    uint[] primaryShares = [49, 800, 100, 30, 10, 1, 10];

    constructor()
    ERC721B("Leisure Creatures", "LEISURE")
    PaymentSplitter(addressList, primaryShares)  {
        _setDefaultRoyalty(_royaltyAddress, 1000);
    }

    function presaleMint(uint _count, bytes32[] calldata _proof) external payable {
        require( _count <= MAX_TOKENS_PER_TRANSACTION, "Count exceeded max tokens per transaction." );
        require( !_paused, "Sale is currently paused." );
        require( _isPresale, "Pre sale already ended.");

        uint supply = totalSupply();
        require( supply + _count <= MAX_SUPPLY, "Exceeds max supply." );
        require( msg.value >= PRICE * _count, "Ether sent is not correct." );

        require(_presaleMintCount[msg.sender] + _count <= WL_MAX_TOKENS_PER_ADDRESS, "Mint count exceeds the allowed presale count");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_proof,_presaleRoot,leaf), "Invalid Proof/Root/Leaf");

        for(uint i = 0; i < _count; ++i) {
            _safeMint( msg.sender, supply + i, "" );
        }

        _presaleMintCount[msg.sender] += _count;
    }

    function mint(uint _count) external payable {
        require( _count <= MAX_TOKENS_PER_TRANSACTION, "Count exceeded max tokens per transaction." );
        require( !_paused, "Sale is currently paused." );
        require( !_isPresale, "Public sale has not started." );

        uint supply = totalSupply();
        require( supply + _count <= MAX_SUPPLY, "Exceeds max supply." );
        require( msg.value >= PRICE * _count, "Ether sent is not correct." );

        for(uint i = 0; i < _count; ++i){
            _safeMint( msg.sender, supply + i, "" );
        }
    }

    function crossmint(address to, uint _count) external payable {
        require(msg.sender == _crossmintAddress, "This function is for Crossmint only.");
        require(to != address(0x0), "Destination address should be valid");
        require( _count <= MAX_TOKENS_PER_TRANSACTION, "Count exceeded max tokens per transaction." );
        require( !_paused, "Sale is currently paused." );
        require( !_isPresale, "Public sale has not started." );
        
        uint supply = totalSupply();
        require( supply + _count <= MAX_SUPPLY, "Exceeds max supply.");
        require( msg.value >= PRICE * _count, "Ether sent is not correct.");

        for(uint i = 0; i < _count; ++i){
            _safeMint( to, supply + i, "" );
        }
    } 

    function mintTo(uint[] calldata quantity, address[] calldata recipient) external payable onlyDelegates {
        require(quantity.length == recipient.length, "Must provide equal quantities and recipients" );

        uint totalQuantity;
        uint supply = totalSupply();
        for(uint i; i < quantity.length; ++i){
            totalQuantity += quantity[i];
        }
        require( supply + totalQuantity < MAX_SUPPLY, "Mint/order exceeds supply" );

        for(uint i; i < recipient.length; ++i){
            for(uint j; j < quantity[i]; ++j){
                _safeMint( recipient[i], supply++, "" );
            }
        }
    }

    function setPrice(uint _newPrice) external onlyDelegates {
        PRICE = _newPrice;
    }

    function setMaxSupply (uint _newMaxSupply) external onlyDelegates { 
        require( _newMaxSupply >= totalSupply(), "Specified supply is lower than current balance" );
        MAX_SUPPLY = _newMaxSupply;
    }

    function setMaxMintAmount(uint _newMaxTokensPerTransaction) public onlyDelegates {
        MAX_TOKENS_PER_TRANSACTION = _newMaxTokensPerTransaction;
    }

    function updatePause(bool _updatePaused) public onlyDelegates {
        require( _paused != _updatePaused, "New value matches old" );
        _paused = _updatePaused;
    }

    function updatePresale(bool _updatePresale) public onlyDelegates {
        require( _isPresale != _updatePresale, "New value matches old" );
        _isPresale = _updatePresale;
    }

    function updateRoot(bytes32 _root) external onlyDelegates {
        require(!_paused, "Minting should be paused");
        _presaleRoot = _root;
    }

    function updateRoyaltyAddress(address royaltyAddress) external onlyDelegates {
        require(!_paused, "Minting should be paused");
        _royaltyAddress = royaltyAddress;
    }

    function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix) external onlyDelegates {
        _baseTokenURI = _newBaseURI;
        _baseTokenSuffix = _newSuffix;
    }

    function tokenURI(uint tokenId) external override view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseTokenURI;
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), _baseTokenSuffix)) : "";
    }

    /*
        Rescue any ERC-20 tokens (doesnt include ETH) that are sent to this contract mistakenly
    */
    function withdrawToken(IERC20 _token, uint256 _amount) public onlyDelegates {
        _token.transferFrom(address(this), owner(), _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MAX_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"next","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxTokensPerTransaction","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_updatePaused","type":"bool"}],"name":"updatePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_updatePresale","type":"bool"}],"name":"updatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyAddress","type":"address"}],"name":"updateRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

67011c37937e080000601055600460118190556012556111d760135561010060405260516080818152906200481460a0398051620000469160149160209091019062000888565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000759160159162000888565b506016805461ffff19166101011790557f2c3e731df3270d48c2150d646491ca63dab631047f0acc00ce2918e551ac05596017556018805473dab1a1854214684ace522439684a145e625052336001600160a01b0319918216179091556019805473dce0c51da30ac60ceea41bab798cd032d33efa48908316179055601b80547305d3a5e0f1f622a15d5c333eea9034f61890a87d9083168117909155601c805473909738543e48e665551d46d62c79bc42f827d46a9084168117909155601d805473dbcb1bc2491b40aebe468d3942841645ecb0bb6c9085168117909155601e805473d39b57dfde1efdeaf86fd6b207352ad36488db929086168117909155601f805473f12c75dfb47b44471ede4df21c8eb20b26d37108908716811790915560208054733ad257dd5e4d9b9773502c0f08cb1029264d903a9088168117825560218054737fa1359ba6837d903f895b48a9cc19ff383dc3f09916891790556040805160e081018252978852918701959095528501929092526060840152608083015260a082015260c08101919091526200021690602290600762000917565b506040805160e081018252603181526103206020820152606491810191909152601e6060820152600a60808201819052600160a083015260c0820152620002629060239060076200096f565b503480156200027057600080fd5b506022805480602002602001604051908101604052809291908181526020018280548015620002c957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620002aa575b505050505060238054806020026020016040519081016040528092919081815260200182805480156200031c57602002820191906000526020600020905b81548152602001906001019080831162000307575b505060408051808201825260118152704c6569737572652043726561747572657360781b6020808301918252835180850190945260078452664c45495355524560c81b9084015281519195509193506200037b92506002919062000888565b5080516200039190600390602084019062000888565b505050620003ae620003a86200054360201b60201c565b62000547565b600160086000620003c76007546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558051825114620004615760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620004b45760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000458565b60005b825181101562000520576200050b838281518110620004da57620004da620009ca565b6020026020010151838381518110620004f757620004f7620009ca565b60200260200101516200059960201b60201c565b806200051781620009f6565b915050620004b7565b50506019546200053d91506001600160a01b03166103e862000787565b62000a6c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620006065760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000458565b60008111620006585760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000458565b6001600160a01b0382166000908152600b602052604090205415620006d45760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000458565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b602052604090208190556009546200073e90829062000a14565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6127106001600160601b0382161115620007f75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000458565b6001600160a01b0382166200084f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000458565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b828054620008969062000a2f565b90600052602060002090601f016020900481019282620008ba576000855562000905565b82601f10620008d557805160ff191683800117855562000905565b8280016001018555821562000905579182015b8281111562000905578251825591602001919060010190620008e8565b5062000913929150620009b3565b5090565b82805482825590600052602060002090810192821562000905579160200282015b828111156200090557825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000938565b82805482825590600052602060002090810192821562000905579160200282015b8281111562000905578251829061ffff1690559160200191906001019062000990565b5b80821115620009135760008155600101620009b4565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000a0d5762000a0d620009e0565b5060010190565b6000821982111562000a2a5762000a2a620009e0565b500190565b600181811c9082168062000a4457607f821691505b6020821081141562000a6657634e487b7160e01b600052602260045260246000fd5b50919050565b613d988062000a7c6000396000f3fe60806040526004361061037a5760003560e01c80636790a9de116101d1578063b5e5ea3b11610102578063e328e835116100a0578063e985e9c51161006f578063e985e9c514610a5c578063f2fde38b14610aa5578063f8974de014610ac5578063fe5d0d6014610ae557600080fd5b8063e328e83514610a0b578063e33b7de314610a21578063e3e1e8ef14610a36578063e966d51214610a4957600080fd5b8063c87b56dd116100dc578063c87b56dd1461096a578063ce7c2ac21461098a578063cfc86f7b146109c0578063d79779b2146109d557600080fd5b8063b5e5ea3b14610914578063b88d4fde1461092a578063c3c54fc01461094a57600080fd5b806391b7f5ed1161016f5780639e281a98116101495780639e281a98146108a1578063a0712d68146108c1578063a22cb465146108d4578063b534a5c4146108f457600080fd5b806391b7f5ed1461083657806395d89b41146108565780639852595c1461086b57600080fd5b8063715018a6116101ab578063715018a6146107cd5780638b83209b146107e25780638d859f3e146108025780638da5cb5b1461081857600080fd5b80636790a9de1461076d5780636f8b44b01461078d57806370a08231146107ad57600080fd5b806332cb6b0c116102ab5780634c8fe526116102495780634fce1de3116102235780634fce1de314610704578063519a20441461071a57806358891a371461073a5780636352211e1461074d57600080fd5b80634c8fe526146104d35780634d44660c146106c45780634f6ccce7146106e457600080fd5b806342842e0e1161028557806342842e0e14610637578063438b63001461065757806348b75044146106845780634a994eef146106a457600080fd5b806332cb6b0c146105c65780633a98ef39146105dc578063406072a9146105f157600080fd5b806318160ddd1161031857806321ff9970116102f257806321ff99701461052757806323b872dd146105475780632a55205a146105675780632f745c59146105a657600080fd5b806318160ddd146104d357806319165587146104f2578063197c9d7c1461051257600080fd5b8063081812fc11610354578063081812fc1461043f578063088a4ed014610477578063095ea7b31461049957806316c61ccc146104b957600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063077796271461041f57600080fd5b366103c3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d457600080fd5b506103e86103e33660046132ce565b610b04565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610b2f565b6040516103f49190613343565b34801561042b57600080fd5b506103e861043a36600461336b565b610bc1565b34801561044b57600080fd5b5061045f61045a366004613388565b610c16565b6040516001600160a01b0390911681526020016103f4565b34801561048357600080fd5b50610497610492366004613388565b610c9e565b005b3480156104a557600080fd5b506104976104b43660046133a1565b610cd2565b3480156104c557600080fd5b506016546103e89060ff1681565b3480156104df57600080fd5b506004545b6040519081526020016103f4565b3480156104fe57600080fd5b5061049761050d36600461336b565b610de8565b34801561051e57600080fd5b50610412610f16565b34801561053357600080fd5b50610497610542366004613388565b610fa4565b34801561055357600080fd5b506104976105623660046133cd565b611026565b34801561057357600080fd5b5061058761058236600461340e565b611057565b604080516001600160a01b0390931683526020830191909152016103f4565b3480156105b257600080fd5b506104e46105c13660046133a1565b611105565b3480156105d257600080fd5b506104e460135481565b3480156105e857600080fd5b506009546104e4565b3480156105fd57600080fd5b506104e461060c366004613430565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561064357600080fd5b506104976106523660046133cd565b6111d1565b34801561066357600080fd5b5061067761067236600461336b565b6111ec565b6040516103f49190613469565b34801561069057600080fd5b5061049761069f366004613430565b61128c565b3480156106b057600080fd5b506104976106bf3660046134bb565b611465565b3480156106d057600080fd5b506103e86106df36600461352e565b6114ba565b3480156106f057600080fd5b506104e46106ff366004613388565b61153c565b34801561071057600080fd5b506104e460115481565b34801561072657600080fd5b5061049761073536600461336b565b6115ae565b6104976107483660046133a1565b61164d565b34801561075957600080fd5b5061045f610768366004613388565b61185c565b34801561077957600080fd5b506104976107883660046135c5565b6118e8565b34801561079957600080fd5b506104976107a8366004613388565b611937565b3480156107b957600080fd5b506104e46107c836600461336b565b6119d4565b3480156107d957600080fd5b50610497611aa6565b3480156107ee57600080fd5b5061045f6107fd366004613388565b611adc565b34801561080e57600080fd5b506104e460105481565b34801561082457600080fd5b506007546001600160a01b031661045f565b34801561084257600080fd5b50610497610851366004613388565b611b0c565b34801561086257600080fd5b50610412611b40565b34801561087757600080fd5b506104e461088636600461336b565b6001600160a01b03166000908152600c602052604090205490565b3480156108ad57600080fd5b506104976108bc3660046133a1565b611b4f565b6104976108cf366004613388565b611c18565b3480156108e057600080fd5b506104976108ef3660046134bb565b611d44565b34801561090057600080fd5b5061049761090f366004613631565b611e09565b34801561092057600080fd5b506104e460175481565b34801561093657600080fd5b506104976109453660046136dc565b611e87565b34801561095657600080fd5b506104976109653660046137bc565b611eb9565b34801561097657600080fd5b50610412610985366004613388565b611f59565b34801561099657600080fd5b506104e46109a536600461336b565b6001600160a01b03166000908152600b602052604090205490565b3480156109cc57600080fd5b506104126120a9565b3480156109e157600080fd5b506104e46109f036600461336b565b6001600160a01b03166000908152600e602052604090205490565b348015610a1757600080fd5b506104e460125481565b348015610a2d57600080fd5b50600a546104e4565b610497610a443660046137d9565b6120b6565b610497610a5736600461380c565b612354565b348015610a6857600080fd5b506103e8610a77366004613430565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610ab157600080fd5b50610497610ac036600461336b565b61252b565b348015610ad157600080fd5b50610497610ae03660046137bc565b612584565b348015610af157600080fd5b506016546103e890610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610b295750610b2982612617565b92915050565b606060028054610b3e9061386c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a9061386c565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b5050505050905090565b6007546000906001600160a01b03163314610bf75760405162461bcd60e51b8152600401610bee906138a7565b60405180910390fd5b506001600160a01b031660009081526008602052604090205460ff1690565b6000610c2182612672565b610c825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bee565b506000908152600560205260409020546001600160a01b031690565b3360009081526008602052604090205460ff16610ccd5760405162461bcd60e51b8152600401610bee906138dc565b601155565b6000610cdd8261185c565b9050806001600160a01b0316836001600160a01b03161415610d4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bee565b336001600160a01b0382161480610d675750610d678133610a77565b610dd95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bee565b610de383836126bc565b505050565b6001600160a01b0381166000908152600b6020526040902054610e1d5760405162461bcd60e51b8152600401610bee90613906565b6000610e28600a5490565b610e329047613962565b90506000610e5f8383610e5a866001600160a01b03166000908152600c602052604090205490565b61272a565b905080610e7e5760405162461bcd60e51b8152600401610bee9061397a565b6001600160a01b0383166000908152600c602052604081208054839290610ea6908490613962565b9250508190555080600a6000828254610ebf9190613962565b90915550610ecf90508382612770565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60158054610f239061386c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f9061386c565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b3360009081526008602052604090205460ff16610fd35760405162461bcd60e51b8152600401610bee906138dc565b60165460ff16156110215760405162461bcd60e51b8152602060048201526018602482015277135a5b9d1a5b99c81cda1bdd5b19081899481c185d5cd95960421b6044820152606401610bee565b601755565b6110303382612889565b61104c5760405162461bcd60e51b8152600401610bee906139c5565b610de383838361296f565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110cc5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906110eb906001600160601b031687613a16565b6110f59190613a4b565b91519350909150505b9250929050565b60008060005b600454811015611174576004818154811061112857611128613a5f565b6000918252602090912001546001600160a01b03868116911614156111645783821415611158579150610b299050565b61116182613a75565b91505b61116d81613a75565b905061110b565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bee565b610de383838360405180602001604052806000815250611e87565b606060006111f9836119d4565b905060008167ffffffffffffffff811115611216576112166136c6565b60405190808252806020026020018201604052801561123f578160200160208202803683370190505b50905060005b82811015611284576112578582611105565b82828151811061126957611269613a5f565b602090810291909101015261127d81613a75565b9050611245565b509392505050565b6001600160a01b0381166000908152600b60205260409020546112c15760405162461bcd60e51b8152600401610bee90613906565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801561131e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113429190613a90565b61134c9190613962565b905060006113858383610e5a87876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b9050806113a45760405162461bcd60e51b8152600401610bee9061397a565b6001600160a01b038085166000908152600f60209081526040808320938716835292905290812080548392906113db908490613962565b90915550506001600160a01b0384166000908152600e602052604081208054839290611408908490613962565b909155506114199050848483612ac5565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6007546001600160a01b0316331461148f5760405162461bcd60e51b8152600401610bee906138a7565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000805b8281101561152f57846001600160a01b031660048585848181106114e4576114e4613a5f565b90506020020135815481106114fb576114fb613a5f565b6000918252602090912001546001600160a01b03161461151f576000915050611535565b61152881613a75565b90506114be565b50600190505b9392505050565b600061154760045490565b82106115aa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bee565b5090565b3360009081526008602052604090205460ff166115dd5760405162461bcd60e51b8152600401610bee906138dc565b60165460ff161561162b5760405162461bcd60e51b8152602060048201526018602482015277135a5b9d1a5b99c81cda1bdd5b19081899481c185d5cd95960421b6044820152606401610bee565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6018546001600160a01b031633146116b35760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610bee565b6001600160a01b0382166117155760405162461bcd60e51b815260206004820152602360248201527f44657374696e6174696f6e20616464726573732073686f756c642062652076616044820152621b1a5960ea1b6064820152608401610bee565b6011548111156117375760405162461bcd60e51b8152600401610bee90613aa9565b60165460ff161561175a5760405162461bcd60e51b8152600401610bee90613af3565b601654610100900460ff16156117b25760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c6520686173206e6f7420737461727465642e000000006044820152606401610bee565b60006117bd60045490565b6013549091506117cd8383613962565b11156117eb5760405162461bcd60e51b8152600401610bee90613b2a565b816010546117f99190613a16565b3410156118185760405162461bcd60e51b8152600401610bee90613b57565b60005b8281101561185657611846846118318385613962565b60405180602001604052806000815250612b17565b61184f81613a75565b905061181b565b50505050565b6000806004838154811061187257611872613a5f565b6000918252602090912001546001600160a01b0316905080610b295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bee565b3360009081526008602052604090205460ff166119175760405162461bcd60e51b8152600401610bee906138dc565b61192360148585613228565b5061193060158383613228565b5050505050565b3360009081526008602052604090205460ff166119665760405162461bcd60e51b8152600401610bee906138dc565b6004548110156119cf5760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b6064820152608401610bee565b601355565b60006001600160a01b038216611a3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bee565b600454600090815b81811015611a9d5760048181548110611a6257611a62613a5f565b6000918252602090912001546001600160a01b0386811691161415611a8d57611a8a83613a75565b92505b611a9681613a75565b9050611a47565b50909392505050565b6007546001600160a01b03163314611ad05760405162461bcd60e51b8152600401610bee906138a7565b611ada6000612b4a565b565b6000600d8281548110611af157611af1613a5f565b6000918252602090912001546001600160a01b031692915050565b3360009081526008602052604090205460ff16611b3b5760405162461bcd60e51b8152600401610bee906138dc565b601055565b606060038054610b3e9061386c565b3360009081526008602052604090205460ff16611b7e5760405162461bcd60e51b8152600401610bee906138dc565b816001600160a01b03166323b872dd30611ba06007546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018490526064016020604051808303816000875af1158015611bf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de39190613b8e565b601154811115611c3a5760405162461bcd60e51b8152600401610bee90613aa9565b60165460ff1615611c5d5760405162461bcd60e51b8152600401610bee90613af3565b601654610100900460ff1615611cb55760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c6520686173206e6f7420737461727465642e000000006044820152606401610bee565b6000611cc060045490565b601354909150611cd08383613962565b1115611cee5760405162461bcd60e51b8152600401610bee90613b2a565b81601054611cfc9190613a16565b341015611d1b5760405162461bcd60e51b8152600401610bee90613b57565b60005b82811015610de357611d34336118318385613962565b611d3d81613a75565b9050611d1e565b6001600160a01b038216331415611d9d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bee565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b83811015611e7e57611e6e8787878785818110611e2b57611e2b613a5f565b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e8792505050565b611e7781613a75565b9050611e0c565b50505050505050565b611e913383612889565b611ead5760405162461bcd60e51b8152600401610bee906139c5565b61185684848484612b9c565b3360009081526008602052604090205460ff16611ee85760405162461bcd60e51b8152600401610bee906138dc565b60165460ff6101009091041615158115151415611f3f5760405162461bcd60e51b815260206004820152601560248201527413995dc81d985b1d59481b585d18da195cc81bdb19605a1b6044820152606401610bee565b601680549115156101000261ff0019909216919091179055565b6060611f6482612672565b611fc85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bee565b600060148054611fd79061386c565b80601f01602080910402602001604051908101604052809291908181526020018280546120039061386c565b80156120505780601f1061202557610100808354040283529160200191612050565b820191906000526020600020905b81548152906001019060200180831161203357829003601f168201915b5050505050905060008151116120755760405180602001604052806000815250611535565b8061207f84612bcf565b601560405160200161209393929190613bab565b6040516020818303038152906040529392505050565b60148054610f239061386c565b6011548311156120d85760405162461bcd60e51b8152600401610bee90613aa9565b60165460ff16156120fb5760405162461bcd60e51b8152600401610bee90613af3565b601654610100900460ff166121525760405162461bcd60e51b815260206004820152601760248201527f5072652073616c6520616c726561647920656e6465642e0000000000000000006044820152606401610bee565b600061215d60045490565b60135490915061216d8583613962565b111561218b5760405162461bcd60e51b8152600401610bee90613b2a565b836010546121999190613a16565b3410156121b85760405162461bcd60e51b8152600401610bee90613b57565b601254336000908152601a60205260409020546121d6908690613962565b11156122395760405162461bcd60e51b815260206004820152602c60248201527f4d696e7420636f756e7420657863656564732074686520616c6c6f776564207060448201526b1c995cd85b194818dbdd5b9d60a21b6064820152608401610bee565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506122b3848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612ccd565b6122ff5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642050726f6f662f526f6f742f4c6561660000000000000000006044820152606401610bee565b60005b8581101561232857612318336118318386613962565b61232181613a75565b9050612302565b50336000908152601a602052604081208054879290612348908490613962565b90915550505050505050565b3360009081526008602052604090205460ff166123835760405162461bcd60e51b8152600401610bee906138dc565b8281146123e75760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b6064820152608401610bee565b6000806123f360045490565b905060005b858110156124365786868281811061241257612412613a5f565b90506020020135836124249190613962565b925061242f81613a75565b90506123f8565b506013546124448383613962565b106124915760405162461bcd60e51b815260206004820152601960248201527f4d696e742f6f72646572206578636565647320737570706c79000000000000006044820152606401610bee565b60005b83811015611e7e5760005b8787838181106124b1576124b1613a5f565b9050602002013581101561251a5761250a8686848181106124d4576124d4613a5f565b90506020020160208101906124e9919061336b565b846124f381613a75565b955060405180602001604052806000815250612b17565b61251381613a75565b905061249f565b5061252481613a75565b9050612494565b6007546001600160a01b031633146125555760405162461bcd60e51b8152600401610bee906138a7565b6001600160a01b0381166000908152600860205260409020805460ff1916600117905561258181612ce3565b50565b3360009081526008602052604090205460ff166125b35760405162461bcd60e51b8152600401610bee906138dc565b60165460ff16151581151514156126045760405162461bcd60e51b815260206004820152601560248201527413995dc81d985b1d59481b585d18da195cc81bdb19605a1b6044820152606401610bee565b6016805460ff1916911515919091179055565b60006001600160e01b031982166380ac58cd60e01b148061264857506001600160e01b03198216635b5e139f60e01b145b8061266357506001600160e01b03198216632baae9fd60e01b145b80610b295750610b2982612d7b565b60045460009082108015610b29575060006001600160a01b03166004838154811061269f5761269f613a5f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126f18261185c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6009546001600160a01b0384166000908152600b6020526040812054909183916127549086613a16565b61275e9190613a4b565b6127689190613c6f565b949350505050565b804710156127c05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461280d576040519150601f19603f3d011682016040523d82523d6000602084013e612812565b606091505b5050905080610de35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bee565b600061289482612672565b6128f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bee565b60006129008361185c565b9050806001600160a01b0316846001600160a01b0316148061293b5750836001600160a01b031661293084610c16565b6001600160a01b0316145b8061276857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612768565b826001600160a01b03166129828261185c565b6001600160a01b0316146129ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bee565b6001600160a01b038216612a4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bee565b612a576000826126bc565b8160048281548110612a6b57612a6b613a5f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610de3908490612db0565b612b218383612e82565b612b2e6000848484612faa565b610de35760405162461bcd60e51b8152600401610bee90613c86565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612ba784848461296f565b612bb384848484612faa565b6118565760405162461bcd60e51b8152600401610bee90613c86565b606081612bf35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c1d5780612c0781613a75565b9150612c169050600a83613a4b565b9150612bf7565b60008167ffffffffffffffff811115612c3857612c386136c6565b6040519080825280601f01601f191660200182016040528015612c62576020820181803683370190505b5090505b841561276857612c77600183613c6f565b9150612c84600a86613cd8565b612c8f906030613962565b60f81b818381518110612ca457612ca4613a5f565b60200101906001600160f81b031916908160001a905350612cc6600a86613a4b565b9450612c66565b600082612cda85846130a8565b14949350505050565b6007546001600160a01b03163314612d0d5760405162461bcd60e51b8152600401610bee906138a7565b6001600160a01b038116612d725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bee565b61258181612b4a565b60006001600160e01b0319821663152a902d60e11b1480610b2957506301ffc9a760e01b6001600160e01b0319831614610b29565b6000612e05826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166131149092919063ffffffff16565b805190915015610de35780806020019051810190612e239190613b8e565b610de35760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bee565b6001600160a01b038216612ed85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bee565b612ee181612672565b15612f2e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bee565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561309d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fee903390899088908890600401613cec565b6020604051808303816000875af1925050508015613029575060408051601f3d908101601f1916820190925261302691810190613d29565b60015b613083573d808015613057576040519150601f19603f3d011682016040523d82523d6000602084013e61305c565b606091505b50805161307b5760405162461bcd60e51b8152600401610bee90613c86565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612768565b506001949350505050565b600081815b84518110156112845760008582815181106130ca576130ca613a5f565b602002602001015190508083116130f05760008381526020829052604090209250613101565b600081815260208490526040902092505b508061310c81613a75565b9150506130ad565b60606127688484600085856001600160a01b0385163b6131765760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bee565b600080866001600160a01b031685876040516131929190613d46565b60006040518083038185875af1925050503d80600081146131cf576040519150601f19603f3d011682016040523d82523d6000602084013e6131d4565b606091505b50915091506131e48282866131ef565b979650505050505050565b606083156131fe575081611535565b82511561320e5782518084602001fd5b8160405162461bcd60e51b8152600401610bee9190613343565b8280546132349061386c565b90600052602060002090601f016020900481019282613256576000855561329c565b82601f1061326f5782800160ff1982351617855561329c565b8280016001018555821561329c579182015b8281111561329c578235825591602001919060010190613281565b506115aa9291505b808211156115aa57600081556001016132a4565b6001600160e01b03198116811461258157600080fd5b6000602082840312156132e057600080fd5b8135611535816132b8565b60005b838110156133065781810151838201526020016132ee565b838111156118565750506000910152565b6000815180845261332f8160208601602086016132eb565b601f01601f19169290920160200192915050565b6020815260006115356020830184613317565b6001600160a01b038116811461258157600080fd5b60006020828403121561337d57600080fd5b813561153581613356565b60006020828403121561339a57600080fd5b5035919050565b600080604083850312156133b457600080fd5b82356133bf81613356565b946020939093013593505050565b6000806000606084860312156133e257600080fd5b83356133ed81613356565b925060208401356133fd81613356565b929592945050506040919091013590565b6000806040838503121561342157600080fd5b50508035926020909101359150565b6000806040838503121561344357600080fd5b823561344e81613356565b9150602083013561345e81613356565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156134a157835183529284019291840191600101613485565b50909695505050505050565b801515811461258157600080fd5b600080604083850312156134ce57600080fd5b82356134d981613356565b9150602083013561345e816134ad565b60008083601f8401126134fb57600080fd5b50813567ffffffffffffffff81111561351357600080fd5b6020830191508360208260051b85010111156110fe57600080fd5b60008060006040848603121561354357600080fd5b833561354e81613356565b9250602084013567ffffffffffffffff81111561356a57600080fd5b613576868287016134e9565b9497909650939450505050565b60008083601f84011261359557600080fd5b50813567ffffffffffffffff8111156135ad57600080fd5b6020830191508360208285010111156110fe57600080fd5b600080600080604085870312156135db57600080fd5b843567ffffffffffffffff808211156135f357600080fd5b6135ff88838901613583565b9096509450602087013591508082111561361857600080fd5b5061362587828801613583565b95989497509550505050565b6000806000806000806080878903121561364a57600080fd5b863561365581613356565b9550602087013561366581613356565b9450604087013567ffffffffffffffff8082111561368257600080fd5b61368e8a838b016134e9565b909650945060608901359150808211156136a757600080fd5b506136b489828a01613583565b979a9699509497509295939492505050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156136f257600080fd5b84356136fd81613356565b9350602085013561370d81613356565b925060408501359150606085013567ffffffffffffffff8082111561373157600080fd5b818701915087601f83011261374557600080fd5b813581811115613757576137576136c6565b604051601f8201601f19908116603f0116810190838211818310171561377f5761377f6136c6565b816040528281528a602084870101111561379857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000602082840312156137ce57600080fd5b8135611535816134ad565b6000806000604084860312156137ee57600080fd5b83359250602084013567ffffffffffffffff81111561356a57600080fd5b6000806000806040858703121561382257600080fd5b843567ffffffffffffffff8082111561383a57600080fd5b613846888389016134e9565b9096509450602087013591508082111561385f57600080fd5b50613625878288016134e9565b600181811c9082168061388057607f821691505b602082108114156138a157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156139755761397561394c565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000816000190483118215151615613a3057613a3061394c565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a5a57613a5a613a35565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415613a8957613a8961394c565b5060010190565b600060208284031215613aa257600080fd5b5051919050565b6020808252602a908201527f436f756e74206578636565646564206d617820746f6b656e732070657220747260408201526930b739b0b1ba34b7b71760b11b606082015260800190565b60208082526019908201527f53616c652069732063757272656e746c79207061757365642e00000000000000604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b6020808252601a908201527f45746865722073656e74206973206e6f7420636f72726563742e000000000000604082015260600190565b600060208284031215613ba057600080fd5b8151611535816134ad565b600084516020613bbe8285838a016132eb565b855191840191613bd18184848a016132eb565b8554920191600090600181811c9080831680613bee57607f831692505b858310811415613c0c57634e487b7160e01b85526022600452602485fd5b808015613c205760018114613c3157613c5e565b60ff19851688528388019550613c5e565b60008b81526020902060005b85811015613c565781548a820152908401908801613c3d565b505083880195505b50939b9a5050505050505050505050565b600082821015613c8157613c8161394c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613ce757613ce7613a35565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d1f90830184613317565b9695505050505050565b600060208284031215613d3b57600080fd5b8151611535816132b8565b60008251613d588184602087016132eb565b919091019291505056fea264697066735822122000e8f3348d1894010ee30b4ae319949c731ea591e60a96b87ddda09e81079f8f64736f6c634300080b003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624b48466959583366647a516b385a4d4b5269797561775848466265765238436145476d78376d77317245782f

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80636790a9de116101d1578063b5e5ea3b11610102578063e328e835116100a0578063e985e9c51161006f578063e985e9c514610a5c578063f2fde38b14610aa5578063f8974de014610ac5578063fe5d0d6014610ae557600080fd5b8063e328e83514610a0b578063e33b7de314610a21578063e3e1e8ef14610a36578063e966d51214610a4957600080fd5b8063c87b56dd116100dc578063c87b56dd1461096a578063ce7c2ac21461098a578063cfc86f7b146109c0578063d79779b2146109d557600080fd5b8063b5e5ea3b14610914578063b88d4fde1461092a578063c3c54fc01461094a57600080fd5b806391b7f5ed1161016f5780639e281a98116101495780639e281a98146108a1578063a0712d68146108c1578063a22cb465146108d4578063b534a5c4146108f457600080fd5b806391b7f5ed1461083657806395d89b41146108565780639852595c1461086b57600080fd5b8063715018a6116101ab578063715018a6146107cd5780638b83209b146107e25780638d859f3e146108025780638da5cb5b1461081857600080fd5b80636790a9de1461076d5780636f8b44b01461078d57806370a08231146107ad57600080fd5b806332cb6b0c116102ab5780634c8fe526116102495780634fce1de3116102235780634fce1de314610704578063519a20441461071a57806358891a371461073a5780636352211e1461074d57600080fd5b80634c8fe526146104d35780634d44660c146106c45780634f6ccce7146106e457600080fd5b806342842e0e1161028557806342842e0e14610637578063438b63001461065757806348b75044146106845780634a994eef146106a457600080fd5b806332cb6b0c146105c65780633a98ef39146105dc578063406072a9146105f157600080fd5b806318160ddd1161031857806321ff9970116102f257806321ff99701461052757806323b872dd146105475780632a55205a146105675780632f745c59146105a657600080fd5b806318160ddd146104d357806319165587146104f2578063197c9d7c1461051257600080fd5b8063081812fc11610354578063081812fc1461043f578063088a4ed014610477578063095ea7b31461049957806316c61ccc146104b957600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063077796271461041f57600080fd5b366103c3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d457600080fd5b506103e86103e33660046132ce565b610b04565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610b2f565b6040516103f49190613343565b34801561042b57600080fd5b506103e861043a36600461336b565b610bc1565b34801561044b57600080fd5b5061045f61045a366004613388565b610c16565b6040516001600160a01b0390911681526020016103f4565b34801561048357600080fd5b50610497610492366004613388565b610c9e565b005b3480156104a557600080fd5b506104976104b43660046133a1565b610cd2565b3480156104c557600080fd5b506016546103e89060ff1681565b3480156104df57600080fd5b506004545b6040519081526020016103f4565b3480156104fe57600080fd5b5061049761050d36600461336b565b610de8565b34801561051e57600080fd5b50610412610f16565b34801561053357600080fd5b50610497610542366004613388565b610fa4565b34801561055357600080fd5b506104976105623660046133cd565b611026565b34801561057357600080fd5b5061058761058236600461340e565b611057565b604080516001600160a01b0390931683526020830191909152016103f4565b3480156105b257600080fd5b506104e46105c13660046133a1565b611105565b3480156105d257600080fd5b506104e460135481565b3480156105e857600080fd5b506009546104e4565b3480156105fd57600080fd5b506104e461060c366004613430565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561064357600080fd5b506104976106523660046133cd565b6111d1565b34801561066357600080fd5b5061067761067236600461336b565b6111ec565b6040516103f49190613469565b34801561069057600080fd5b5061049761069f366004613430565b61128c565b3480156106b057600080fd5b506104976106bf3660046134bb565b611465565b3480156106d057600080fd5b506103e86106df36600461352e565b6114ba565b3480156106f057600080fd5b506104e46106ff366004613388565b61153c565b34801561071057600080fd5b506104e460115481565b34801561072657600080fd5b5061049761073536600461336b565b6115ae565b6104976107483660046133a1565b61164d565b34801561075957600080fd5b5061045f610768366004613388565b61185c565b34801561077957600080fd5b506104976107883660046135c5565b6118e8565b34801561079957600080fd5b506104976107a8366004613388565b611937565b3480156107b957600080fd5b506104e46107c836600461336b565b6119d4565b3480156107d957600080fd5b50610497611aa6565b3480156107ee57600080fd5b5061045f6107fd366004613388565b611adc565b34801561080e57600080fd5b506104e460105481565b34801561082457600080fd5b506007546001600160a01b031661045f565b34801561084257600080fd5b50610497610851366004613388565b611b0c565b34801561086257600080fd5b50610412611b40565b34801561087757600080fd5b506104e461088636600461336b565b6001600160a01b03166000908152600c602052604090205490565b3480156108ad57600080fd5b506104976108bc3660046133a1565b611b4f565b6104976108cf366004613388565b611c18565b3480156108e057600080fd5b506104976108ef3660046134bb565b611d44565b34801561090057600080fd5b5061049761090f366004613631565b611e09565b34801561092057600080fd5b506104e460175481565b34801561093657600080fd5b506104976109453660046136dc565b611e87565b34801561095657600080fd5b506104976109653660046137bc565b611eb9565b34801561097657600080fd5b50610412610985366004613388565b611f59565b34801561099657600080fd5b506104e46109a536600461336b565b6001600160a01b03166000908152600b602052604090205490565b3480156109cc57600080fd5b506104126120a9565b3480156109e157600080fd5b506104e46109f036600461336b565b6001600160a01b03166000908152600e602052604090205490565b348015610a1757600080fd5b506104e460125481565b348015610a2d57600080fd5b50600a546104e4565b610497610a443660046137d9565b6120b6565b610497610a5736600461380c565b612354565b348015610a6857600080fd5b506103e8610a77366004613430565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610ab157600080fd5b50610497610ac036600461336b565b61252b565b348015610ad157600080fd5b50610497610ae03660046137bc565b612584565b348015610af157600080fd5b506016546103e890610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610b295750610b2982612617565b92915050565b606060028054610b3e9061386c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a9061386c565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b5050505050905090565b6007546000906001600160a01b03163314610bf75760405162461bcd60e51b8152600401610bee906138a7565b60405180910390fd5b506001600160a01b031660009081526008602052604090205460ff1690565b6000610c2182612672565b610c825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bee565b506000908152600560205260409020546001600160a01b031690565b3360009081526008602052604090205460ff16610ccd5760405162461bcd60e51b8152600401610bee906138dc565b601155565b6000610cdd8261185c565b9050806001600160a01b0316836001600160a01b03161415610d4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bee565b336001600160a01b0382161480610d675750610d678133610a77565b610dd95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bee565b610de383836126bc565b505050565b6001600160a01b0381166000908152600b6020526040902054610e1d5760405162461bcd60e51b8152600401610bee90613906565b6000610e28600a5490565b610e329047613962565b90506000610e5f8383610e5a866001600160a01b03166000908152600c602052604090205490565b61272a565b905080610e7e5760405162461bcd60e51b8152600401610bee9061397a565b6001600160a01b0383166000908152600c602052604081208054839290610ea6908490613962565b9250508190555080600a6000828254610ebf9190613962565b90915550610ecf90508382612770565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60158054610f239061386c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f9061386c565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b3360009081526008602052604090205460ff16610fd35760405162461bcd60e51b8152600401610bee906138dc565b60165460ff16156110215760405162461bcd60e51b8152602060048201526018602482015277135a5b9d1a5b99c81cda1bdd5b19081899481c185d5cd95960421b6044820152606401610bee565b601755565b6110303382612889565b61104c5760405162461bcd60e51b8152600401610bee906139c5565b610de383838361296f565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110cc5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906110eb906001600160601b031687613a16565b6110f59190613a4b565b91519350909150505b9250929050565b60008060005b600454811015611174576004818154811061112857611128613a5f565b6000918252602090912001546001600160a01b03868116911614156111645783821415611158579150610b299050565b61116182613a75565b91505b61116d81613a75565b905061110b565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bee565b610de383838360405180602001604052806000815250611e87565b606060006111f9836119d4565b905060008167ffffffffffffffff811115611216576112166136c6565b60405190808252806020026020018201604052801561123f578160200160208202803683370190505b50905060005b82811015611284576112578582611105565b82828151811061126957611269613a5f565b602090810291909101015261127d81613a75565b9050611245565b509392505050565b6001600160a01b0381166000908152600b60205260409020546112c15760405162461bcd60e51b8152600401610bee90613906565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801561131e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113429190613a90565b61134c9190613962565b905060006113858383610e5a87876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b9050806113a45760405162461bcd60e51b8152600401610bee9061397a565b6001600160a01b038085166000908152600f60209081526040808320938716835292905290812080548392906113db908490613962565b90915550506001600160a01b0384166000908152600e602052604081208054839290611408908490613962565b909155506114199050848483612ac5565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6007546001600160a01b0316331461148f5760405162461bcd60e51b8152600401610bee906138a7565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000805b8281101561152f57846001600160a01b031660048585848181106114e4576114e4613a5f565b90506020020135815481106114fb576114fb613a5f565b6000918252602090912001546001600160a01b03161461151f576000915050611535565b61152881613a75565b90506114be565b50600190505b9392505050565b600061154760045490565b82106115aa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bee565b5090565b3360009081526008602052604090205460ff166115dd5760405162461bcd60e51b8152600401610bee906138dc565b60165460ff161561162b5760405162461bcd60e51b8152602060048201526018602482015277135a5b9d1a5b99c81cda1bdd5b19081899481c185d5cd95960421b6044820152606401610bee565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6018546001600160a01b031633146116b35760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610bee565b6001600160a01b0382166117155760405162461bcd60e51b815260206004820152602360248201527f44657374696e6174696f6e20616464726573732073686f756c642062652076616044820152621b1a5960ea1b6064820152608401610bee565b6011548111156117375760405162461bcd60e51b8152600401610bee90613aa9565b60165460ff161561175a5760405162461bcd60e51b8152600401610bee90613af3565b601654610100900460ff16156117b25760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c6520686173206e6f7420737461727465642e000000006044820152606401610bee565b60006117bd60045490565b6013549091506117cd8383613962565b11156117eb5760405162461bcd60e51b8152600401610bee90613b2a565b816010546117f99190613a16565b3410156118185760405162461bcd60e51b8152600401610bee90613b57565b60005b8281101561185657611846846118318385613962565b60405180602001604052806000815250612b17565b61184f81613a75565b905061181b565b50505050565b6000806004838154811061187257611872613a5f565b6000918252602090912001546001600160a01b0316905080610b295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bee565b3360009081526008602052604090205460ff166119175760405162461bcd60e51b8152600401610bee906138dc565b61192360148585613228565b5061193060158383613228565b5050505050565b3360009081526008602052604090205460ff166119665760405162461bcd60e51b8152600401610bee906138dc565b6004548110156119cf5760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b6064820152608401610bee565b601355565b60006001600160a01b038216611a3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bee565b600454600090815b81811015611a9d5760048181548110611a6257611a62613a5f565b6000918252602090912001546001600160a01b0386811691161415611a8d57611a8a83613a75565b92505b611a9681613a75565b9050611a47565b50909392505050565b6007546001600160a01b03163314611ad05760405162461bcd60e51b8152600401610bee906138a7565b611ada6000612b4a565b565b6000600d8281548110611af157611af1613a5f565b6000918252602090912001546001600160a01b031692915050565b3360009081526008602052604090205460ff16611b3b5760405162461bcd60e51b8152600401610bee906138dc565b601055565b606060038054610b3e9061386c565b3360009081526008602052604090205460ff16611b7e5760405162461bcd60e51b8152600401610bee906138dc565b816001600160a01b03166323b872dd30611ba06007546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018490526064016020604051808303816000875af1158015611bf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de39190613b8e565b601154811115611c3a5760405162461bcd60e51b8152600401610bee90613aa9565b60165460ff1615611c5d5760405162461bcd60e51b8152600401610bee90613af3565b601654610100900460ff1615611cb55760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c6520686173206e6f7420737461727465642e000000006044820152606401610bee565b6000611cc060045490565b601354909150611cd08383613962565b1115611cee5760405162461bcd60e51b8152600401610bee90613b2a565b81601054611cfc9190613a16565b341015611d1b5760405162461bcd60e51b8152600401610bee90613b57565b60005b82811015610de357611d34336118318385613962565b611d3d81613a75565b9050611d1e565b6001600160a01b038216331415611d9d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bee565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b83811015611e7e57611e6e8787878785818110611e2b57611e2b613a5f565b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e8792505050565b611e7781613a75565b9050611e0c565b50505050505050565b611e913383612889565b611ead5760405162461bcd60e51b8152600401610bee906139c5565b61185684848484612b9c565b3360009081526008602052604090205460ff16611ee85760405162461bcd60e51b8152600401610bee906138dc565b60165460ff6101009091041615158115151415611f3f5760405162461bcd60e51b815260206004820152601560248201527413995dc81d985b1d59481b585d18da195cc81bdb19605a1b6044820152606401610bee565b601680549115156101000261ff0019909216919091179055565b6060611f6482612672565b611fc85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bee565b600060148054611fd79061386c565b80601f01602080910402602001604051908101604052809291908181526020018280546120039061386c565b80156120505780601f1061202557610100808354040283529160200191612050565b820191906000526020600020905b81548152906001019060200180831161203357829003601f168201915b5050505050905060008151116120755760405180602001604052806000815250611535565b8061207f84612bcf565b601560405160200161209393929190613bab565b6040516020818303038152906040529392505050565b60148054610f239061386c565b6011548311156120d85760405162461bcd60e51b8152600401610bee90613aa9565b60165460ff16156120fb5760405162461bcd60e51b8152600401610bee90613af3565b601654610100900460ff166121525760405162461bcd60e51b815260206004820152601760248201527f5072652073616c6520616c726561647920656e6465642e0000000000000000006044820152606401610bee565b600061215d60045490565b60135490915061216d8583613962565b111561218b5760405162461bcd60e51b8152600401610bee90613b2a565b836010546121999190613a16565b3410156121b85760405162461bcd60e51b8152600401610bee90613b57565b601254336000908152601a60205260409020546121d6908690613962565b11156122395760405162461bcd60e51b815260206004820152602c60248201527f4d696e7420636f756e7420657863656564732074686520616c6c6f776564207060448201526b1c995cd85b194818dbdd5b9d60a21b6064820152608401610bee565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506122b3848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612ccd565b6122ff5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642050726f6f662f526f6f742f4c6561660000000000000000006044820152606401610bee565b60005b8581101561232857612318336118318386613962565b61232181613a75565b9050612302565b50336000908152601a602052604081208054879290612348908490613962565b90915550505050505050565b3360009081526008602052604090205460ff166123835760405162461bcd60e51b8152600401610bee906138dc565b8281146123e75760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b6064820152608401610bee565b6000806123f360045490565b905060005b858110156124365786868281811061241257612412613a5f565b90506020020135836124249190613962565b925061242f81613a75565b90506123f8565b506013546124448383613962565b106124915760405162461bcd60e51b815260206004820152601960248201527f4d696e742f6f72646572206578636565647320737570706c79000000000000006044820152606401610bee565b60005b83811015611e7e5760005b8787838181106124b1576124b1613a5f565b9050602002013581101561251a5761250a8686848181106124d4576124d4613a5f565b90506020020160208101906124e9919061336b565b846124f381613a75565b955060405180602001604052806000815250612b17565b61251381613a75565b905061249f565b5061252481613a75565b9050612494565b6007546001600160a01b031633146125555760405162461bcd60e51b8152600401610bee906138a7565b6001600160a01b0381166000908152600860205260409020805460ff1916600117905561258181612ce3565b50565b3360009081526008602052604090205460ff166125b35760405162461bcd60e51b8152600401610bee906138dc565b60165460ff16151581151514156126045760405162461bcd60e51b815260206004820152601560248201527413995dc81d985b1d59481b585d18da195cc81bdb19605a1b6044820152606401610bee565b6016805460ff1916911515919091179055565b60006001600160e01b031982166380ac58cd60e01b148061264857506001600160e01b03198216635b5e139f60e01b145b8061266357506001600160e01b03198216632baae9fd60e01b145b80610b295750610b2982612d7b565b60045460009082108015610b29575060006001600160a01b03166004838154811061269f5761269f613a5f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126f18261185c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6009546001600160a01b0384166000908152600b6020526040812054909183916127549086613a16565b61275e9190613a4b565b6127689190613c6f565b949350505050565b804710156127c05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461280d576040519150601f19603f3d011682016040523d82523d6000602084013e612812565b606091505b5050905080610de35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bee565b600061289482612672565b6128f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bee565b60006129008361185c565b9050806001600160a01b0316846001600160a01b0316148061293b5750836001600160a01b031661293084610c16565b6001600160a01b0316145b8061276857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612768565b826001600160a01b03166129828261185c565b6001600160a01b0316146129ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bee565b6001600160a01b038216612a4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bee565b612a576000826126bc565b8160048281548110612a6b57612a6b613a5f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610de3908490612db0565b612b218383612e82565b612b2e6000848484612faa565b610de35760405162461bcd60e51b8152600401610bee90613c86565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612ba784848461296f565b612bb384848484612faa565b6118565760405162461bcd60e51b8152600401610bee90613c86565b606081612bf35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c1d5780612c0781613a75565b9150612c169050600a83613a4b565b9150612bf7565b60008167ffffffffffffffff811115612c3857612c386136c6565b6040519080825280601f01601f191660200182016040528015612c62576020820181803683370190505b5090505b841561276857612c77600183613c6f565b9150612c84600a86613cd8565b612c8f906030613962565b60f81b818381518110612ca457612ca4613a5f565b60200101906001600160f81b031916908160001a905350612cc6600a86613a4b565b9450612c66565b600082612cda85846130a8565b14949350505050565b6007546001600160a01b03163314612d0d5760405162461bcd60e51b8152600401610bee906138a7565b6001600160a01b038116612d725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bee565b61258181612b4a565b60006001600160e01b0319821663152a902d60e11b1480610b2957506301ffc9a760e01b6001600160e01b0319831614610b29565b6000612e05826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166131149092919063ffffffff16565b805190915015610de35780806020019051810190612e239190613b8e565b610de35760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bee565b6001600160a01b038216612ed85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bee565b612ee181612672565b15612f2e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bee565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561309d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fee903390899088908890600401613cec565b6020604051808303816000875af1925050508015613029575060408051601f3d908101601f1916820190925261302691810190613d29565b60015b613083573d808015613057576040519150601f19603f3d011682016040523d82523d6000602084013e61305c565b606091505b50805161307b5760405162461bcd60e51b8152600401610bee90613c86565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612768565b506001949350505050565b600081815b84518110156112845760008582815181106130ca576130ca613a5f565b602002602001015190508083116130f05760008381526020829052604090209250613101565b600081815260208490526040902092505b508061310c81613a75565b9150506130ad565b60606127688484600085856001600160a01b0385163b6131765760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bee565b600080866001600160a01b031685876040516131929190613d46565b60006040518083038185875af1925050503d80600081146131cf576040519150601f19603f3d011682016040523d82523d6000602084013e6131d4565b606091505b50915091506131e48282866131ef565b979650505050505050565b606083156131fe575081611535565b82511561320e5782518084602001fd5b8160405162461bcd60e51b8152600401610bee9190613343565b8280546132349061386c565b90600052602060002090601f016020900481019282613256576000855561329c565b82601f1061326f5782800160ff1982351617855561329c565b8280016001018555821561329c579182015b8281111561329c578235825591602001919060010190613281565b506115aa9291505b808211156115aa57600081556001016132a4565b6001600160e01b03198116811461258157600080fd5b6000602082840312156132e057600080fd5b8135611535816132b8565b60005b838110156133065781810151838201526020016132ee565b838111156118565750506000910152565b6000815180845261332f8160208601602086016132eb565b601f01601f19169290920160200192915050565b6020815260006115356020830184613317565b6001600160a01b038116811461258157600080fd5b60006020828403121561337d57600080fd5b813561153581613356565b60006020828403121561339a57600080fd5b5035919050565b600080604083850312156133b457600080fd5b82356133bf81613356565b946020939093013593505050565b6000806000606084860312156133e257600080fd5b83356133ed81613356565b925060208401356133fd81613356565b929592945050506040919091013590565b6000806040838503121561342157600080fd5b50508035926020909101359150565b6000806040838503121561344357600080fd5b823561344e81613356565b9150602083013561345e81613356565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156134a157835183529284019291840191600101613485565b50909695505050505050565b801515811461258157600080fd5b600080604083850312156134ce57600080fd5b82356134d981613356565b9150602083013561345e816134ad565b60008083601f8401126134fb57600080fd5b50813567ffffffffffffffff81111561351357600080fd5b6020830191508360208260051b85010111156110fe57600080fd5b60008060006040848603121561354357600080fd5b833561354e81613356565b9250602084013567ffffffffffffffff81111561356a57600080fd5b613576868287016134e9565b9497909650939450505050565b60008083601f84011261359557600080fd5b50813567ffffffffffffffff8111156135ad57600080fd5b6020830191508360208285010111156110fe57600080fd5b600080600080604085870312156135db57600080fd5b843567ffffffffffffffff808211156135f357600080fd5b6135ff88838901613583565b9096509450602087013591508082111561361857600080fd5b5061362587828801613583565b95989497509550505050565b6000806000806000806080878903121561364a57600080fd5b863561365581613356565b9550602087013561366581613356565b9450604087013567ffffffffffffffff8082111561368257600080fd5b61368e8a838b016134e9565b909650945060608901359150808211156136a757600080fd5b506136b489828a01613583565b979a9699509497509295939492505050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156136f257600080fd5b84356136fd81613356565b9350602085013561370d81613356565b925060408501359150606085013567ffffffffffffffff8082111561373157600080fd5b818701915087601f83011261374557600080fd5b813581811115613757576137576136c6565b604051601f8201601f19908116603f0116810190838211818310171561377f5761377f6136c6565b816040528281528a602084870101111561379857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000602082840312156137ce57600080fd5b8135611535816134ad565b6000806000604084860312156137ee57600080fd5b83359250602084013567ffffffffffffffff81111561356a57600080fd5b6000806000806040858703121561382257600080fd5b843567ffffffffffffffff8082111561383a57600080fd5b613846888389016134e9565b9096509450602087013591508082111561385f57600080fd5b50613625878288016134e9565b600181811c9082168061388057607f821691505b602082108114156138a157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156139755761397561394c565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000816000190483118215151615613a3057613a3061394c565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a5a57613a5a613a35565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415613a8957613a8961394c565b5060010190565b600060208284031215613aa257600080fd5b5051919050565b6020808252602a908201527f436f756e74206578636565646564206d617820746f6b656e732070657220747260408201526930b739b0b1ba34b7b71760b11b606082015260800190565b60208082526019908201527f53616c652069732063757272656e746c79207061757365642e00000000000000604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b6020808252601a908201527f45746865722073656e74206973206e6f7420636f72726563742e000000000000604082015260600190565b600060208284031215613ba057600080fd5b8151611535816134ad565b600084516020613bbe8285838a016132eb565b855191840191613bd18184848a016132eb565b8554920191600090600181811c9080831680613bee57607f831692505b858310811415613c0c57634e487b7160e01b85526022600452602485fd5b808015613c205760018114613c3157613c5e565b60ff19851688528388019550613c5e565b60008b81526020902060005b85811015613c565781548a820152908401908801613c3d565b505083880195505b50939b9a5050505050505050505050565b600082821015613c8157613c8161394c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613ce757613ce7613a35565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d1f90830184613317565b9695505050505050565b600060208284031215613d3b57600080fd5b8151611535816132b8565b60008251613d588184602087016132eb565b919091019291505056fea264697066735822122000e8f3348d1894010ee30b4ae319949c731ea591e60a96b87ddda09e81079f8f64736f6c634300080b0033

Deployed Bytecode Sourcemap

66957:6847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37461:40;18318:10;37461:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;37491:9:0;270:2:1;255:18;;248:34;161:18;37461:40:0;;;;;;;66957:6847;;;;;65274:225;;;;;;;;;;-1:-1:-1;65274:225:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;65274:225:0;;;;;;;;58075:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21315:112::-;;;;;;;;;;-1:-1:-1;21315:112:0;;;;;:::i;:::-;;:::i;59432:219::-;;;;;;;;;;-1:-1:-1;59432:219:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2359:32:1;;;2341:51;;2329:2;2314:18;59432:219:0;2195:203:1;72099:156:0;;;;;;;;;;-1:-1:-1;72099:156:0;;;;;:::i;:::-;;:::i;:::-;;59012:412;;;;;;;;;;-1:-1:-1;59012:412:0;;;;;:::i;:::-;;:::i;67455:26::-;;;;;;;;;;-1:-1:-1;67455:26:0;;;;;;;;66162:107;;;;;;;;;;-1:-1:-1;66247:7:0;:14;66162:107;;;2869:25:1;;;2857:2;2842:18;66162:107:0;2723:177:1;39247:566:0;;;;;;;;;;-1:-1:-1;39247:566:0;;;;;:::i;:::-;;:::i;67406:40::-;;;;;;;;;;;;;:::i;72640:153::-;;;;;;;;;;-1:-1:-1;72640:153:0;;;;;:::i;:::-;;:::i;60132:337::-;;;;;;;;;;-1:-1:-1;60132:337:0;;;;;:::i;:::-;;:::i;47503:494::-;;;;;;;;;;-1:-1:-1;47503:494:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;;161:18;47503:494:0;14:274:1;65507:439:0;;;;;;;;;;-1:-1:-1;65507:439:0;;;;;:::i;:::-;;:::i;67235:29::-;;;;;;;;;;;;;;;;37592:91;;;;;;;;;;-1:-1:-1;37663:12:0;;37592:91;;38721:135;;;;;;;;;;-1:-1:-1;38721:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;38818:21:0;;;38791:7;38818:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;38721:135;60540:185;;;;;;;;;;-1:-1:-1;60540:185:0;;;;;:::i;:::-;;:::i;66530:338::-;;;;;;;;;;-1:-1:-1;66530:338:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40081:641::-;;;;;;;;;;-1:-1:-1;40081:641:0;;;;;:::i;:::-;;:::i;21433:116::-;;;;;;;;;;-1:-1:-1;21433:116:0;;;;;:::i;:::-;;:::i;64988:278::-;;;;;;;;;;-1:-1:-1;64988:278:0;;;;;:::i;:::-;;:::i;65954:200::-;;;;;;;;;;-1:-1:-1;65954:200:0;;;;;:::i;:::-;;:::i;67138:42::-;;;;;;;;;;;;;;;;72801:184;;;;;;;;;;-1:-1:-1;72801:184:0;;;;;:::i;:::-;;:::i;70338:766::-;;;;;;:::i;:::-;;:::i;58274:239::-;;;;;;;;;;-1:-1:-1;58274:239:0;;;;;:::i;:::-;;:::i;72993:186::-;;;;;;;;;;-1:-1:-1;72993:186:0;;;;;:::i;:::-;;:::i;71877:214::-;;;;;;;;;;-1:-1:-1;71877:214:0;;;;;:::i;:::-;;:::i;57689:378::-;;;;;;;;;;-1:-1:-1;57689:378:0;;;;;:::i;:::-;;:::i;20165:103::-;;;;;;;;;;;;;:::i;38947:100::-;;;;;;;;;;-1:-1:-1;38947:100:0;;;;;:::i;:::-;;:::i;67101:30::-;;;;;;;;;;;;;;;;19514:87;;;;;;;;;;-1:-1:-1;19587:6:0;;-1:-1:-1;;;;;19587:6:0;19514:87;;71776:93;;;;;;;;;;-1:-1:-1;71776:93:0;;;;;:::i;:::-;;:::i;58900:104::-;;;;;;;;;;;;;:::i;38443:109::-;;;;;;;;;;-1:-1:-1;38443:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;38526:18:0;38499:7;38526:18;;;:9;:18;;;;;;;38443:109;73654:147;;;;;;;;;;-1:-1:-1;73654:147:0;;;;;:::i;:::-;;:::i;69747:583::-;;;;;;:::i;:::-;;:::i;59659:293::-;;;;;;;;;;-1:-1:-1;59659:293:0;;;;;:::i;:::-;;:::i;66277:245::-;;;;;;;;;;-1:-1:-1;66277:245:0;;;;;:::i;:::-;;:::i;67526:96::-;;;;;;;;;;;;;;;;60796:328;;;;;;;;;;-1:-1:-1;60796:328:0;;;;;:::i;:::-;;:::i;72446:186::-;;;;;;;;;;-1:-1:-1;72446:186:0;;;;;:::i;:::-;;:::i;73187:346::-;;;;;;;;;;-1:-1:-1;73187:346:0;;;;;:::i;:::-;;:::i;38239:105::-;;;;;;;;;;-1:-1:-1;38239:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;38320:16:0;38293:7;38320:16;;;:7;:16;;;;;;;38239:105;67273:113;;;;;;;;;;;;;:::i;38029:119::-;;;;;;;;;;-1:-1:-1;38029:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;38114:26:0;38087:7;38114:26;;;:19;:26;;;;;;;38029:119;67187:41;;;;;;;;;;;;;;;;37777:95;;;;;;;;;;-1:-1:-1;37850:14:0;;37777:95;;68781:958;;;;;;:::i;:::-;;:::i;71113:655::-;;;;;;:::i;:::-;;:::i;59960:164::-;;;;;;;;;;-1:-1:-1;59960:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;60081:25:0;;;60057:4;60081:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;59960:164;21555:161;;;;;;;;;;-1:-1:-1;21555:161:0;;;;;:::i;:::-;;:::i;72263:175::-;;;;;;;;;;-1:-1:-1;72263:175:0;;;;;:::i;:::-;;:::i;67488:29::-;;;;;;;;;;-1:-1:-1;67488:29:0;;;;;;;;;;;65274:225;65377:4;-1:-1:-1;;;;;;65401:50:0;;-1:-1:-1;;;65401:50:0;;:90;;;65455:36;65479:11;65455:23;:36::i;:::-;65394:97;65274:225;-1:-1:-1;;65274:225:0:o;58075:100::-;58129:13;58162:5;58155:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58075:100;:::o;21315:112::-;19587:6;;21385:4;;-1:-1:-1;;;;;19587:6:0;18318:10;19734:23;19726:68;;;;-1:-1:-1;;;19726:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;21405:16:0::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;::::0;21315:112::o;59432:219::-;59508:7;59536:16;59544:7;59536;:16::i;:::-;59528:73;;;;-1:-1:-1;;;59528:73:0;;13734:2:1;59528:73:0;;;13716:21:1;13773:2;13753:18;;;13746:30;13812:34;13792:18;;;13785:62;-1:-1:-1;;;13863:18:1;;;13856:42;13915:19;;59528:73:0;13532:408:1;59528:73:0;-1:-1:-1;59619:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;59619:24:0;;59432:219::o;72099:156::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;72191:26:::1;:56:::0;72099:156::o;59012:412::-;59093:13;59109:24;59125:7;59109:15;:24::i;:::-;59093:40;;59158:5;-1:-1:-1;;;;;59152:11:0;:2;-1:-1:-1;;;;;59152:11:0;;;59144:57;;;;-1:-1:-1;;;59144:57:0;;14492:2:1;59144:57:0;;;14474:21:1;14531:2;14511:18;;;14504:30;14570:34;14550:18;;;14543:62;-1:-1:-1;;;14621:18:1;;;14614:31;14662:19;;59144:57:0;14290:397:1;59144:57:0;18318:10;-1:-1:-1;;;;;59236:21:0;;;;:62;;-1:-1:-1;59261:37:0;59278:5;18318:10;59960:164;:::i;59261:37::-;59214:168;;;;-1:-1:-1;;;59214:168:0;;14894:2:1;59214:168:0;;;14876:21:1;14933:2;14913:18;;;14906:30;14972:34;14952:18;;;14945:62;15043:26;15023:18;;;15016:54;15087:19;;59214:168:0;14692:420:1;59214:168:0;59395:21;59404:2;59408:7;59395:8;:21::i;:::-;59082:342;59012:412;;:::o;39247:566::-;-1:-1:-1;;;;;39323:16:0;;39342:1;39323:16;;;:7;:16;;;;;;39315:71;;;;-1:-1:-1;;;39315:71:0;;;;;;;:::i;:::-;39399:21;39447:15;37850:14;;;37777:95;39447:15;39423:39;;:21;:39;:::i;:::-;39399:63;;39473:15;39491:58;39507:7;39516:13;39531:17;39540:7;-1:-1:-1;;;;;38526:18:0;38499:7;38526:18;;;:9;:18;;;;;;;38443:109;39531:17;39491:15;:58::i;:::-;39473:76;-1:-1:-1;39570:12:0;39562:68;;;;-1:-1:-1;;;39562:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39643:18:0;;;;;;:9;:18;;;;;:29;;39665:7;;39643:18;:29;;39665:7;;39643:29;:::i;:::-;;;;;;;;39701:7;39683:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;39721:35:0;;-1:-1:-1;39739:7:0;39748;39721:17;:35::i;:::-;39772:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;39772:33:0;;161:18:1;39772:33:0;;;;;;;39304:509;;39247:566;:::o;67406:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72640:153::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;72718:7:::1;::::0;::::1;;72717:8;72709:45;;;::::0;-1:-1:-1;;;72709:45:0;;16690:2:1;72709:45:0::1;::::0;::::1;16672:21:1::0;16729:2;16709:18;;;16702:30;-1:-1:-1;;;16748:18:1;;;16741:54;16812:18;;72709:45:0::1;16488:348:1::0;72709:45:0::1;72765:12;:20:::0;72640:153::o;60132:337::-;60327:41;18318:10;60360:7;60327:18;:41::i;:::-;60319:103;;;;-1:-1:-1;;;60319:103:0;;;;;;;:::i;:::-;60433:28;60443:4;60449:2;60453:7;60433:9;:28::i;47503:494::-;47647:7;47710:27;;;:17;:27;;;;;;;;47681:56;;;;;;;;;-1:-1:-1;;;;;47681:56:0;;;;;-1:-1:-1;;;47681:56:0;;;-1:-1:-1;;;;;47681:56:0;;;;;;;;47647:7;;47750:92;;-1:-1:-1;47801:29:0;;;;;;;;;-1:-1:-1;47801:29:0;-1:-1:-1;;;;;47801:29:0;;;;-1:-1:-1;;;47801:29:0;;-1:-1:-1;;;;;47801:29:0;;;;;47750:92;47892:23;;;;47854:21;;48363:5;;47879:36;;-1:-1:-1;;;;;47879:36:0;:10;:36;:::i;:::-;47878:58;;;;:::i;:::-;47957:16;;;-1:-1:-1;47854:82:0;;-1:-1:-1;;47503:494:0;;;;;;:::o;65507:439::-;65593:12;65618:10;65644:6;65639:226;65656:7;:14;65652:18;;65639:226;;;65705:7;65713:1;65705:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;65696:19:0;;;65705:10;;65696:19;65692:162;;;65749:5;65740;:14;65736:102;;;65785:1;-1:-1:-1;65778:8:0;;-1:-1:-1;65778:8:0;65736:102;65831:7;;;:::i;:::-;;;65736:102;65672:3;;;:::i;:::-;;;65639:226;;;-1:-1:-1;65877:61:0;;-1:-1:-1;;;65877:61:0;;18163:2:1;65877:61:0;;;18145:21:1;18202:2;18182:18;;;18175:30;18241:34;18221:18;;;18214:62;-1:-1:-1;;;18292:18:1;;;18285:41;18343:19;;65877:61:0;17961:407:1;60540:185:0;60678:39;60695:4;60701:2;60705:7;60678:39;;;;;;;;;;;;:16;:39::i;66530:338::-;66604:13;66630;66646:20;66657:7;66646:9;:20::i;:::-;66630:36;;66677:20;66712:8;66700:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66700:22:0;;66677:45;;66738:6;66733:104;66750:8;66746:1;:12;66733:104;;;66792:33;66813:7;66822:1;66792:19;:33::i;:::-;66780:6;66787:1;66780:9;;;;;;;;:::i;:::-;;;;;;;;;;:45;66760:3;;;:::i;:::-;;;66733:104;;;-1:-1:-1;66854:6:0;66530:338;-1:-1:-1;;;66530:338:0:o;40081:641::-;-1:-1:-1;;;;;40163:16:0;;40182:1;40163:16;;;:7;:16;;;;;;40155:71;;;;-1:-1:-1;;;40155:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38114:26:0;;40239:21;38114:26;;;:19;:26;;;;;;40263:30;;-1:-1:-1;;;40263:30:0;;40287:4;40263:30;;;2341:51:1;-1:-1:-1;;;;;40263:15:0;;;;;2314:18:1;;40263:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;40239:77;;40327:15;40345:65;40361:7;40370:13;40385:24;40394:5;40401:7;-1:-1:-1;;;;;38818:21:0;;;38791:7;38818:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;38721:135;40345:65;40327:83;-1:-1:-1;40431:12:0;40423:68;;;;-1:-1:-1;;;40423:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40504:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;40538:7;;40504:21;:41;;40538:7;;40504:41;:::i;:::-;;;;-1:-1:-1;;;;;;;40556:26:0;;;;;;:19;:26;;;;;:37;;40586:7;;40556:26;:37;;40586:7;;40556:37;:::i;:::-;;;;-1:-1:-1;40606:47:0;;-1:-1:-1;40629:5:0;40636:7;40645;40606:22;:47::i;:::-;40669:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;40669:45:0;;;;;161:18:1;40669:45:0;;;;;;;40144:578;;40081:641;;:::o;21433:116::-;19587:6;;-1:-1:-1;;;;;19587:6:0;18318:10;19734:23;19726:68;;;;-1:-1:-1;;;19726:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21513:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:30;;-1:-1:-1;;21513:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21433:116::o;64988:278::-;65084:4;65105:6;65101:134;65113:19;;;65101:134;;;65184:7;-1:-1:-1;;;;;65158:33:0;:7;65167:8;;65176:1;65167:11;;;;;;;:::i;:::-;;;;;;;65158:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;65158:22:0;:33;65154:69;;65218:5;65211:12;;;;;65154:69;65134:3;;;:::i;:::-;;;65101:134;;;;65254:4;65247:11;;64988:278;;;;;;:::o;65954:200::-;66028:4;66061:13;66247:7;:14;;66162:107;66061:13;66053:5;:21;66045:78;;;;-1:-1:-1;;;66045:78:0;;18764:2:1;66045:78:0;;;18746:21:1;18803:2;18783:18;;;18776:30;18842:34;18822:18;;;18815:62;-1:-1:-1;;;18893:18:1;;;18886:42;18945:19;;66045:78:0;18562:408:1;66045:78:0;-1:-1:-1;66141:5:0;65954:200::o;72801:184::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;72898:7:::1;::::0;::::1;;72897:8;72889:45;;;::::0;-1:-1:-1;;;72889:45:0;;16690:2:1;72889:45:0::1;::::0;::::1;16672:21:1::0;16729:2;16709:18;;;16702:30;-1:-1:-1;;;16748:18:1;;;16741:54;16812:18;;72889:45:0::1;16488:348:1::0;72889:45:0::1;72945:15;:32:::0;;-1:-1:-1;;;;;;72945:32:0::1;-1:-1:-1::0;;;;;72945:32:0;;;::::1;::::0;;;::::1;::::0;;72801:184::o;70338:766::-;70432:17;;-1:-1:-1;;;;;70432:17:0;70418:10;:31;70410:80;;;;-1:-1:-1;;;70410:80:0;;19177:2:1;70410:80:0;;;19159:21:1;19216:2;19196:18;;;19189:30;19255:34;19235:18;;;19228:62;-1:-1:-1;;;19306:18:1;;;19299:34;19350:19;;70410:80:0;18975:400:1;70410:80:0;-1:-1:-1;;;;;70509:18:0;;70501:66;;;;-1:-1:-1;;;70501:66:0;;19582:2:1;70501:66:0;;;19564:21:1;19621:2;19601:18;;;19594:30;19660:34;19640:18;;;19633:62;-1:-1:-1;;;19711:18:1;;;19704:33;19754:19;;70501:66:0;19380:399:1;70501:66:0;70597:26;;70587:6;:36;;70578:93;;;;-1:-1:-1;;;70578:93:0;;;;;;;:::i;:::-;70692:7;;;;70691:8;70682:48;;;;-1:-1:-1;;;70682:48:0;;;;;;;:::i;:::-;70751:10;;;;;;;70750:11;70741:54;;;;-1:-1:-1;;;70741:54:0;;20751:2:1;70741:54:0;;;20733:21:1;20790:2;20770:18;;;20763:30;20829;20809:18;;;20802:58;20877:18;;70741:54:0;20549:352:1;70741:54:0;70816:11;70830:13;66247:7;:14;;66162:107;70830:13;70882:10;;70816:27;;-1:-1:-1;70863:15:0;70872:6;70816:27;70863:15;:::i;:::-;:29;;70854:62;;;;-1:-1:-1;;;70854:62:0;;;;;;;:::i;:::-;70957:6;70949:5;;:14;;;;:::i;:::-;70936:9;:27;;70927:67;;;;-1:-1:-1;;;70927:67:0;;;;;;;:::i;:::-;71011:6;71007:90;71027:6;71023:1;:10;71007:90;;;71054:31;71065:2;71069:10;71078:1;71069:6;:10;:::i;:::-;71054:31;;;;;;;;;;;;:9;:31::i;:::-;71035:3;;;:::i;:::-;;;71007:90;;;;70399:705;70338:766;;:::o;58274:239::-;58346:7;58366:13;58382:7;58390;58382:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;58382:16:0;;-1:-1:-1;58417:19:0;58409:73;;;;-1:-1:-1;;;58409:73:0;;21811:2:1;58409:73:0;;;21793:21:1;21850:2;21830:18;;;21823:30;21889:34;21869:18;;;21862:62;-1:-1:-1;;;21940:18:1;;;21933:39;21989:19;;58409:73:0;21609:405:1;72993:186:0;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;73104:27:::1;:13;73120:11:::0;;73104:27:::1;:::i;:::-;-1:-1:-1::0;73142:29:0::1;:16;73161:10:::0;;73142:29:::1;:::i;:::-;;72993:186:::0;;;;:::o;71877:214::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;66247:7;:14;71964:13:::1;:30;;71955:91;;;::::0;-1:-1:-1;;;71955:91:0;;22221:2:1;71955:91:0::1;::::0;::::1;22203:21:1::0;22260:2;22240:18;;;22233:30;22299:34;22279:18;;;22272:62;-1:-1:-1;;;22350:18:1;;;22343:44;22404:19;;71955:91:0::1;22019:410:1::0;71955:91:0::1;72057:10;:26:::0;71877:214::o;57689:378::-;57761:7;-1:-1:-1;;;;;57789:19:0;;57781:74;;;;-1:-1:-1;;;57781:74:0;;22636:2:1;57781:74:0;;;22618:21:1;22675:2;22655:18;;;22648:30;22714:34;22694:18;;;22687:62;-1:-1:-1;;;22765:18:1;;;22758:40;22815:19;;57781:74:0;22434:406:1;57781:74:0;57907:7;:14;57868:10;;;57932:105;57953:6;57949:1;:10;57932:105;;;57992:7;58000:1;57992:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;57983:19:0;;;57992:10;;57983:19;57979:46;;;58018:7;;;:::i;:::-;;;57979:46;57961:3;;;:::i;:::-;;;57932:105;;;-1:-1:-1;58054:5:0;;57689:378;-1:-1:-1;;;57689:378:0:o;20165:103::-;19587:6;;-1:-1:-1;;;;;19587:6:0;18318:10;19734:23;19726:68;;;;-1:-1:-1;;;19726:68:0;;;;;;;:::i;:::-;20230:30:::1;20257:1;20230:18;:30::i;:::-;20165:103::o:0;38947:100::-;38998:7;39025;39033:5;39025:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;39025:14:0;;38947:100;-1:-1:-1;;38947:100:0:o;71776:93::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;71844:5:::1;:17:::0;71776:93::o;58900:104::-;58956:13;58989:7;58982:14;;;;;:::i;73654:147::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;73741:6:::1;-1:-1:-1::0;;;;;73741:19:0::1;;73769:4;73776:7;19587:6:::0;;-1:-1:-1;;;;;19587:6:0;;19514:87;73776:7:::1;73741:52;::::0;-1:-1:-1;;;;;;73741:52:0::1;::::0;;;;;;-1:-1:-1;;;;;23103:15:1;;;73741:52:0::1;::::0;::::1;23085:34:1::0;23155:15;;23135:18;;;23128:43;23187:18;;;23180:34;;;23020:18;;73741:52:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;69747:583::-:0;69821:26;;69811:6;:36;;69802:93;;;;-1:-1:-1;;;69802:93:0;;;;;;;:::i;:::-;69916:7;;;;69915:8;69906:48;;;;-1:-1:-1;;;69906:48:0;;;;;;;:::i;:::-;69975:10;;;;;;;69974:11;69965:54;;;;-1:-1:-1;;;69965:54:0;;20751:2:1;69965:54:0;;;20733:21:1;20790:2;20770:18;;;20763:30;20829;20809:18;;;20802:58;20877:18;;69965:54:0;20549:352:1;69965:54:0;70032:11;70046:13;66247:7;:14;;66162:107;70046:13;70098:10;;70032:27;;-1:-1:-1;70079:15:0;70088:6;70032:27;70079:15;:::i;:::-;:29;;70070:63;;;;-1:-1:-1;;;70070:63:0;;;;;;;:::i;:::-;70174:6;70166:5;;:14;;;;:::i;:::-;70153:9;:27;;70144:68;;;;-1:-1:-1;;;70144:68:0;;;;;;;:::i;:::-;70229:6;70225:98;70245:6;70241:1;:10;70225:98;;;70272:39;70283:10;70295;70304:1;70295:6;:10;:::i;70272:39::-;70253:3;;;:::i;:::-;;;70225:98;;59659:293;-1:-1:-1;;;;;59762:24:0;;18318:10;59762:24;;59754:62;;;;-1:-1:-1;;;59754:62:0;;23677:2:1;59754:62:0;;;23659:21:1;23716:2;23696:18;;;23689:30;23755:27;23735:18;;;23728:55;23800:18;;59754:62:0;23475:349:1;59754:62:0;18318:10;59827:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;59827:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;59827:53:0;;;;;;;;;;59896:48;;819:41:1;;;59827:42:0;;18318:10;59896:48;;792:18:1;59896:48:0;;;;;;;59659:293;;:::o;66277:245::-;66407:6;66403:112;66415:19;;;66403:112;;;66456:47;66474:4;66480:2;66484:8;;66493:1;66484:11;;;;;;;:::i;:::-;;;;;;;66497:4;;66456:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66456:16:0;;-1:-1:-1;;;66456:47:0:i;:::-;66436:3;;;:::i;:::-;;;66403:112;;;;66277:245;;;;;;:::o;60796:328::-;60971:41;18318:10;61004:7;60971:18;:41::i;:::-;60963:103;;;;-1:-1:-1;;;60963:103:0;;;;;;;:::i;:::-;61077:39;61091:4;61097:2;61101:7;61110:5;61077:13;:39::i;72446:186::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;72531:10:::1;::::0;::::1;;::::0;;::::1;;:28;;::::0;::::1;;;;72522:64;;;::::0;-1:-1:-1;;;72522:64:0;;24031:2:1;72522:64:0::1;::::0;::::1;24013:21:1::0;24070:2;24050:18;;;24043:30;-1:-1:-1;;;24089:18:1;;;24082:51;24150:18;;72522:64:0::1;23829:345:1::0;72522:64:0::1;72597:10;:27:::0;;;::::1;;;;-1:-1:-1::0;;72597:27:0;;::::1;::::0;;;::::1;::::0;;72446:186::o;73187:346::-;73251:13;73285:16;73293:7;73285;:16::i;:::-;73277:76;;;;-1:-1:-1;;;73277:76:0;;24381:2:1;73277:76:0;;;24363:21:1;24420:2;24400:18;;;24393:30;24459:34;24439:18;;;24432:62;-1:-1:-1;;;24510:18:1;;;24503:45;24565:19;;73277:76:0;24179:411:1;73277:76:0;73366:21;73390:13;73366:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73445:1;73427:7;73421:21;:25;:104;;;;;;;;;;;;;;;;;73473:7;73482:18;:7;:16;:18::i;:::-;73502:16;73456:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73414:111;73187:346;-1:-1:-1;;;73187:346:0:o;67273:113::-;;;;;;;:::i;68781:958::-;68889:26;;68879:6;:36;;68870:93;;;;-1:-1:-1;;;68870:93:0;;;;;;;:::i;:::-;68984:7;;;;68983:8;68974:48;;;;-1:-1:-1;;;68974:48:0;;;;;;;:::i;:::-;69042:10;;;;;;;69033:47;;;;-1:-1:-1;;;69033:47:0;;26455:2:1;69033:47:0;;;26437:21:1;26494:2;26474:18;;;26467:30;26533:25;26513:18;;;26506:53;26576:18;;69033:47:0;26253:347:1;69033:47:0;69093:11;69107:13;66247:7;:14;;66162:107;69107:13;69159:10;;69093:27;;-1:-1:-1;69140:15:0;69149:6;69093:27;69140:15;:::i;:::-;:29;;69131:63;;;;-1:-1:-1;;;69131:63:0;;;;;;;:::i;:::-;69235:6;69227:5;;:14;;;;:::i;:::-;69214:9;:27;;69205:68;;;;-1:-1:-1;;;69205:68:0;;;;;;;:::i;:::-;69336:25;;69312:10;69294:29;;;;:17;:29;;;;;;:38;;69326:6;;69294:38;:::i;:::-;:67;;69286:124;;;;-1:-1:-1;;;69286:124:0;;26807:2:1;69286:124:0;;;26789:21:1;26846:2;26826:18;;;26819:30;26885:34;26865:18;;;26858:62;-1:-1:-1;;;26936:18:1;;;26929:42;26988:19;;69286:124:0;26605:408:1;69286:124:0;69448:28;;-1:-1:-1;;69465:10:0;27167:2:1;27163:15;27159:53;69448:28:0;;;27147:66:1;69423:12:0;;27229::1;;69448:28:0;;;;;;;;;;;;69438:39;;;;;;69423:54;;69496:44;69515:6;;69496:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69522:12:0;;;-1:-1:-1;69535:4:0;;-1:-1:-1;69496:18:0;:44::i;:::-;69488:80;;;;-1:-1:-1;;;69488:80:0;;27454:2:1;69488:80:0;;;27436:21:1;27493:2;27473:18;;;27466:30;27532:25;27512:18;;;27505:53;27575:18;;69488:80:0;27252:347:1;69488:80:0;69585:6;69581:99;69601:6;69597:1;:10;69581:99;;;69629:39;69640:10;69652;69661:1;69652:6;:10;:::i;69629:39::-;69609:3;;;:::i;:::-;;;69581:99;;;-1:-1:-1;69710:10:0;69692:29;;;;:17;:29;;;;;:39;;69725:6;;69692:29;:39;;69725:6;;69692:39;:::i;:::-;;;;-1:-1:-1;;;;;;;68781:958:0:o;71113:655::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;71235:35;;::::1;71227:93;;;::::0;-1:-1:-1;;;71227:93:0;;27806:2:1;71227:93:0::1;::::0;::::1;27788:21:1::0;27845:2;27825:18;;;27818:30;27884:34;27864:18;;;27857:62;-1:-1:-1;;;27935:18:1;;;27928:42;27987:19;;71227:93:0::1;27604:408:1::0;71227:93:0::1;71333:18;71362:11:::0;71376:13:::1;66247:7:::0;:14;;66162:107;71376:13:::1;71362:27;;71404:6;71400:92;71412:19:::0;;::::1;71400:92;;;71469:8;;71478:1;71469:11;;;;;;;:::i;:::-;;;;;;;71452:28;;;;;:::i;:::-;::::0;-1:-1:-1;71433:3:0::1;::::0;::::1;:::i;:::-;;;71400:92;;;-1:-1:-1::0;71536:10:0::1;::::0;71511:22:::1;71520:13:::0;71511:6;:22:::1;:::i;:::-;:35;71502:75;;;::::0;-1:-1:-1;;;71502:75:0;;28219:2:1;71502:75:0::1;::::0;::::1;28201:21:1::0;28258:2;28238:18;;;28231:30;28297:27;28277:18;;;28270:55;28342:18;;71502:75:0::1;28017:349:1::0;71502:75:0::1;71594:6;71590:171;71602:20:::0;;::::1;71590:171;;;71647:6;71643:107;71659:8;;71668:1;71659:11;;;;;;;:::i;:::-;;;;;;;71655:1;:15;71643:107;;;71695:39;71706:9;;71716:1;71706:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;71720:8:::0;::::1;::::0;::::1;:::i;:::-;;;71695:39;;;;;;;;;;;::::0;:9:::1;:39::i;:::-;71672:3;::::0;::::1;:::i;:::-;;;71643:107;;;-1:-1:-1::0;71624:3:0::1;::::0;::::1;:::i;:::-;;;71590:171;;21555:161:::0;19587:6;;-1:-1:-1;;;;;19587:6:0;18318:10;19734:23;19726:68;;;;-1:-1:-1;;;19726:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21641:20:0;::::1;;::::0;;;:10:::1;:20;::::0;;;;:27;;-1:-1:-1;;21641:27:0::1;21664:4;21641:27;::::0;;21675:35:::1;21652:8:::0;21675:23:::1;:35::i;:::-;21555:161:::0;:::o;72263:175::-;21247:10;21236:22;;;;:10;:22;;;;;;;;21228:52;;;;-1:-1:-1;;;21228:52:0;;;;;;;:::i;:::-;72345:7:::1;::::0;::::1;;:24;;::::0;::::1;;;;72336:60;;;::::0;-1:-1:-1;;;72336:60:0;;24031:2:1;72336:60:0::1;::::0;::::1;24013:21:1::0;24070:2;24050:18;;;24043:30;-1:-1:-1;;;24089:18:1;;;24082:51;24150:18;;72336:60:0::1;23829:345:1::0;72336:60:0::1;72407:7;:23:::0;;-1:-1:-1;;72407:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;72263:175::o;58521:371::-;58632:4;-1:-1:-1;;;;;;58669:40:0;;-1:-1:-1;;;58669:40:0;;:105;;-1:-1:-1;;;;;;;58726:48:0;;-1:-1:-1;;;58726:48:0;58669:105;:162;;;-1:-1:-1;;;;;;;58791:40:0;;-1:-1:-1;;;58791:40:0;58669:162;:215;;;;58848:36;58872:11;58848:23;:36::i;61471:155::-;61570:7;:14;61536:4;;61560:24;;:58;;;;;61616:1;-1:-1:-1;;;;;61588:30:0;:7;61596;61588:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;61588:16:0;:30;;61553:65;61471:155;-1:-1:-1;;61471:155:0:o;63696:175::-;63771:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63771:29:0;-1:-1:-1;;;;;63771:29:0;;;;;;;;:24;;63825;63771;63825:15;:24::i;:::-;-1:-1:-1;;;;;63816:47:0;;;;;;;;;;;63696:175;;:::o;40900:248::-;41110:12;;-1:-1:-1;;;;;41090:16:0;;41046:7;41090:16;;;:7;:16;;;;;;41046:7;;41125:15;;41074:32;;:13;:32;:::i;:::-;41073:49;;;;:::i;:::-;:67;;;;:::i;:::-;41066:74;40900:248;-1:-1:-1;;;;40900:248:0:o;24215:317::-;24330:6;24305:21;:31;;24297:73;;;;-1:-1:-1;;;24297:73:0;;28703:2:1;24297:73:0;;;28685:21:1;28742:2;28722:18;;;28715:30;28781:31;28761:18;;;28754:59;28830:18;;24297:73:0;28501:353:1;24297:73:0;24384:12;24402:9;-1:-1:-1;;;;;24402:14:0;24424:6;24402:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24383:52;;;24454:7;24446:78;;;;-1:-1:-1;;;24446:78:0;;29271:2:1;24446:78:0;;;29253:21:1;29310:2;29290:18;;;29283:30;29349:34;29329:18;;;29322:62;29420:28;29400:18;;;29393:56;29466:19;;24446:78:0;29069:422:1;61634:349:0;61727:4;61752:16;61760:7;61752;:16::i;:::-;61744:73;;;;-1:-1:-1;;;61744:73:0;;29698:2:1;61744:73:0;;;29680:21:1;29737:2;29717:18;;;29710:30;29776:34;29756:18;;;29749:62;-1:-1:-1;;;29827:18:1;;;29820:42;29879:19;;61744:73:0;29496:408:1;61744:73:0;61828:13;61844:24;61860:7;61844:15;:24::i;:::-;61828:40;;61898:5;-1:-1:-1;;;;;61887:16:0;:7;-1:-1:-1;;;;;61887:16:0;;:51;;;;61931:7;-1:-1:-1;;;;;61907:31:0;:20;61919:7;61907:11;:20::i;:::-;-1:-1:-1;;;;;61907:31:0;;61887:51;:87;;;-1:-1:-1;;;;;;60081:25:0;;;60057:4;60081:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61942:32;59960:164;63171:517;63331:4;-1:-1:-1;;;;;63303:32:0;:24;63319:7;63303:15;:24::i;:::-;-1:-1:-1;;;;;63303:32:0;;63295:86;;;;-1:-1:-1;;;63295:86:0;;30111:2:1;63295:86:0;;;30093:21:1;30150:2;30130:18;;;30123:30;30189:34;30169:18;;;30162:62;-1:-1:-1;;;30240:18:1;;;30233:39;30289:19;;63295:86:0;29909:405:1;63295:86:0;-1:-1:-1;;;;;63400:16:0;;63392:65;;;;-1:-1:-1;;;63392:65:0;;30521:2:1;63392:65:0;;;30503:21:1;30560:2;30540:18;;;30533:30;30599:34;30579:18;;;30572:62;-1:-1:-1;;;30650:18:1;;;30643:34;30694:19;;63392:65:0;30319:400:1;63392:65:0;63574:29;63591:1;63595:7;63574:8;:29::i;:::-;63633:2;63614:7;63622;63614:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;63614:21:0;-1:-1:-1;;;;;63614:21:0;;;;;;63653:27;;63672:7;;63653:27;;;;;;;;;;63614:16;63653:27;63171:517;;;:::o;30921:211::-;31065:58;;;-1:-1:-1;;;;;206:32:1;;31065:58:0;;;188:51:1;255:18;;;;248:34;;;31065:58:0;;;;;;;;;;161:18:1;;;;31065:58:0;;;;;;;;-1:-1:-1;;;;;31065:58:0;-1:-1:-1;;;31065:58:0;;;31038:86;;31058:5;;31038:19;:86::i;62109:321::-;62239:18;62245:2;62249:7;62239:5;:18::i;:::-;62290:54;62321:1;62325:2;62329:7;62338:5;62290:22;:54::i;:::-;62268:154;;;;-1:-1:-1;;;62268:154:0;;;;;;;:::i;20784:191::-;20877:6;;;-1:-1:-1;;;;;20894:17:0;;;-1:-1:-1;;;;;;20894:17:0;;;;;;;20927:40;;20877:6;;;20894:17;20877:6;;20927:40;;20858:16;;20927:40;20847:128;20784:191;:::o;61148:315::-;61305:28;61315:4;61321:2;61325:7;61305:9;:28::i;:::-;61352:48;61375:4;61381:2;61385:7;61394:5;61352:22;:48::i;:::-;61344:111;;;;-1:-1:-1;;;61344:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;15712:190;15837:4;15890;15861:25;15874:5;15881:4;15861:12;:25::i;:::-;:33;;15712:190;-1:-1:-1;;;;15712:190:0:o;20423:201::-;19587:6;;-1:-1:-1;;;;;19587:6:0;18318:10;19734:23;19726:68;;;;-1:-1:-1;;;19726:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20512:22:0;::::1;20504:73;;;::::0;-1:-1:-1;;;20504:73:0;;31462:2:1;20504:73:0::1;::::0;::::1;31444:21:1::0;31501:2;31481:18;;;31474:30;31540:34;31520:18;;;31513:62;-1:-1:-1;;;31591:18:1;;;31584:36;31637:19;;20504:73:0::1;31260:402:1::0;20504:73:0::1;20588:28;20607:8;20588:18;:28::i;47233:215::-:0;47335:4;-1:-1:-1;;;;;;47359:41:0;;-1:-1:-1;;;47359:41:0;;:81;;-1:-1:-1;;;;;;;;;;45792:40:0;;;47404:36;45683:157;33494:716;33918:23;33944:69;33972:4;33944:69;;;;;;;;;;;;;;;;;33952:5;-1:-1:-1;;;;;33944:27:0;;;:69;;;;;:::i;:::-;34028:17;;33918:95;;-1:-1:-1;34028:21:0;34024:179;;34125:10;34114:30;;;;;;;;;;;;:::i;:::-;34106:85;;;;-1:-1:-1;;;34106:85:0;;31869:2:1;34106:85:0;;;31851:21:1;31908:2;31888:18;;;31881:30;31947:34;31927:18;;;31920:62;-1:-1:-1;;;31998:18:1;;;31991:40;32048:19;;34106:85:0;31667:406:1;62438:346:0;-1:-1:-1;;;;;62518:16:0;;62510:61;;;;-1:-1:-1;;;62510:61:0;;32280:2:1;62510:61:0;;;32262:21:1;;;32299:18;;;32292:30;32358:34;32338:18;;;32331:62;32410:18;;62510:61:0;32078:356:1;62510:61:0;62591:16;62599:7;62591;:16::i;:::-;62590:17;62582:58;;;;-1:-1:-1;;;62582:58:0;;32641:2:1;62582:58:0;;;32623:21:1;32680:2;32660:18;;;32653:30;32719;32699:18;;;32692:58;32767:18;;62582:58:0;32439:352:1;62582:58:0;62709:7;:16;;;;;;;-1:-1:-1;62709:16:0;;;;;;;-1:-1:-1;;;;;;62709:16:0;-1:-1:-1;;;;;62709:16:0;;;;;;;;62743:33;;62768:7;;-1:-1:-1;62743:33:0;;-1:-1:-1;;62743:33:0;62438:346;;:::o;63879:799::-;64034:4;-1:-1:-1;;;;;64055:13:0;;23249:19;:23;64051:620;;64091:72;;-1:-1:-1;;;64091:72:0;;-1:-1:-1;;;;;64091:36:0;;;;;:72;;18318:10;;64142:4;;64148:7;;64157:5;;64091:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64091:72:0;;;;;;;;-1:-1:-1;;64091:72:0;;;;;;;;;;;;:::i;:::-;;;64087:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64333:13:0;;64329:272;;64376:60;;-1:-1:-1;;;64376:60:0;;;;;;;:::i;64329:272::-;64551:6;64545:13;64536:6;64532:2;64528:15;64521:38;64087:529;-1:-1:-1;;;;;;64214:51:0;-1:-1:-1;;;64214:51:0;;-1:-1:-1;64207:58:0;;64051:620;-1:-1:-1;64655:4:0;63879:799;;;;;;:::o;16263:675::-;16346:7;16389:4;16346:7;16404:497;16428:5;:12;16424:1;:16;16404:497;;;16462:20;16485:5;16491:1;16485:8;;;;;;;;:::i;:::-;;;;;;;16462:31;;16528:12;16512;:28;16508:382;;17014:13;17064:15;;;17100:4;17093:15;;;17147:4;17131:21;;16640:57;;16508:382;;;17014:13;17064:15;;;17100:4;17093:15;;;17147:4;17131:21;;16817:57;;16508:382;-1:-1:-1;16442:3:0;;;;:::i;:::-;;;;16404:497;;25699:229;25836:12;25868:52;25890:6;25898:4;25904:1;25907:12;25836;-1:-1:-1;;;;;23249:19:0;;;27106:60;;;;-1:-1:-1;;;27106:60:0;;34153:2:1;27106:60:0;;;34135:21:1;34192:2;34172:18;;;34165:30;34231:31;34211:18;;;34204:59;34280:18;;27106:60:0;33951:353:1;27106:60:0;27180:12;27194:23;27221:6;-1:-1:-1;;;;;27221:11:0;27240:5;27247:4;27221:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27179:73;;;;27270:51;27287:7;27296:10;27308:12;27270:16;:51::i;:::-;27263:58;26819:510;-1:-1:-1;;;;;;;26819:510:0:o;29505:712::-;29655:12;29684:7;29680:530;;;-1:-1:-1;29715:10:0;29708:17;;29680:530;29829:17;;:21;29825:374;;30027:10;30021:17;30088:15;30075:10;30071:2;30067:19;30060:44;29825:374;30170:12;30163:20;;-1:-1:-1;;;30163:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:131::-;-1:-1:-1;;;;;1697:31:1;;1687:42;;1677:70;;1743:1;1740;1733:12;1758:247;1817:6;1870:2;1858:9;1849:7;1845:23;1841:32;1838:52;;;1886:1;1883;1876:12;1838:52;1925:9;1912:23;1944:31;1969:5;1944:31;:::i;2010:180::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;-1:-1:-1;2161:23:1;;2010:180;-1:-1:-1;2010:180:1:o;2403:315::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;2587:9;2574:23;2606:31;2631:5;2606:31;:::i;:::-;2656:5;2708:2;2693:18;;;;2680:32;;-1:-1:-1;;;2403:315:1:o;3350:456::-;3427:6;3435;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:52;;;3512:1;3509;3502:12;3464:52;3551:9;3538:23;3570:31;3595:5;3570:31;:::i;:::-;3620:5;-1:-1:-1;3677:2:1;3662:18;;3649:32;3690:33;3649:32;3690:33;:::i;:::-;3350:456;;3742:7;;-1:-1:-1;;;3796:2:1;3781:18;;;;3768:32;;3350:456::o;3811:248::-;3879:6;3887;3940:2;3928:9;3919:7;3915:23;3911:32;3908:52;;;3956:1;3953;3946:12;3908:52;-1:-1:-1;;3979:23:1;;;4049:2;4034:18;;;4021:32;;-1:-1:-1;3811:248:1:o;4064:402::-;4146:6;4154;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4262:9;4249:23;4281:31;4306:5;4281:31;:::i;:::-;4331:5;-1:-1:-1;4388:2:1;4373:18;;4360:32;4401:33;4360:32;4401:33;:::i;:::-;4453:7;4443:17;;;4064:402;;;;;:::o;4471:632::-;4642:2;4694:21;;;4764:13;;4667:18;;;4786:22;;;4613:4;;4642:2;4865:15;;;;4839:2;4824:18;;;4613:4;4908:169;4922:6;4919:1;4916:13;4908:169;;;4983:13;;4971:26;;5052:15;;;;5017:12;;;;4944:1;4937:9;4908:169;;;-1:-1:-1;5094:3:1;;4471:632;-1:-1:-1;;;;;;4471:632:1:o;5108:118::-;5194:5;5187:13;5180:21;5173:5;5170:32;5160:60;;5216:1;5213;5206:12;5231:382;5296:6;5304;5357:2;5345:9;5336:7;5332:23;5328:32;5325:52;;;5373:1;5370;5363:12;5325:52;5412:9;5399:23;5431:31;5456:5;5431:31;:::i;:::-;5481:5;-1:-1:-1;5538:2:1;5523:18;;5510:32;5551:30;5510:32;5551:30;:::i;5618:367::-;5681:8;5691:6;5745:3;5738:4;5730:6;5726:17;5722:27;5712:55;;5763:1;5760;5753:12;5712:55;-1:-1:-1;5786:20:1;;5829:18;5818:30;;5815:50;;;5861:1;5858;5851:12;5815:50;5898:4;5890:6;5886:17;5874:29;;5958:3;5951:4;5941:6;5938:1;5934:14;5926:6;5922:27;5918:38;5915:47;5912:67;;;5975:1;5972;5965:12;5990:572;6085:6;6093;6101;6154:2;6142:9;6133:7;6129:23;6125:32;6122:52;;;6170:1;6167;6160:12;6122:52;6209:9;6196:23;6228:31;6253:5;6228:31;:::i;:::-;6278:5;-1:-1:-1;6334:2:1;6319:18;;6306:32;6361:18;6350:30;;6347:50;;;6393:1;6390;6383:12;6347:50;6432:70;6494:7;6485:6;6474:9;6470:22;6432:70;:::i;:::-;5990:572;;6521:8;;-1:-1:-1;6406:96:1;;-1:-1:-1;;;;5990:572:1:o;6567:348::-;6619:8;6629:6;6683:3;6676:4;6668:6;6664:17;6660:27;6650:55;;6701:1;6698;6691:12;6650:55;-1:-1:-1;6724:20:1;;6767:18;6756:30;;6753:50;;;6799:1;6796;6789:12;6753:50;6836:4;6828:6;6824:17;6812:29;;6888:3;6881:4;6872:6;6864;6860:19;6856:30;6853:39;6850:59;;;6905:1;6902;6895:12;6920:721;7012:6;7020;7028;7036;7089:2;7077:9;7068:7;7064:23;7060:32;7057:52;;;7105:1;7102;7095:12;7057:52;7145:9;7132:23;7174:18;7215:2;7207:6;7204:14;7201:34;;;7231:1;7228;7221:12;7201:34;7270:59;7321:7;7312:6;7301:9;7297:22;7270:59;:::i;:::-;7348:8;;-1:-1:-1;7244:85:1;-1:-1:-1;7436:2:1;7421:18;;7408:32;;-1:-1:-1;7452:16:1;;;7449:36;;;7481:1;7478;7471:12;7449:36;;7520:61;7573:7;7562:8;7551:9;7547:24;7520:61;:::i;:::-;6920:721;;;;-1:-1:-1;7600:8:1;-1:-1:-1;;;;6920:721:1:o;7980:1023::-;8104:6;8112;8120;8128;8136;8144;8197:3;8185:9;8176:7;8172:23;8168:33;8165:53;;;8214:1;8211;8204:12;8165:53;8253:9;8240:23;8272:31;8297:5;8272:31;:::i;:::-;8322:5;-1:-1:-1;8379:2:1;8364:18;;8351:32;8392:33;8351:32;8392:33;:::i;:::-;8444:7;-1:-1:-1;8502:2:1;8487:18;;8474:32;8525:18;8555:14;;;8552:34;;;8582:1;8579;8572:12;8552:34;8621:70;8683:7;8674:6;8663:9;8659:22;8621:70;:::i;:::-;8710:8;;-1:-1:-1;8595:96:1;-1:-1:-1;8798:2:1;8783:18;;8770:32;;-1:-1:-1;8814:16:1;;;8811:36;;;8843:1;8840;8833:12;8811:36;;8882:61;8935:7;8924:8;8913:9;8909:24;8882:61;:::i;:::-;7980:1023;;;;-1:-1:-1;7980:1023:1;;-1:-1:-1;7980:1023:1;;8962:8;;7980:1023;-1:-1:-1;;;7980:1023:1:o;9190:127::-;9251:10;9246:3;9242:20;9239:1;9232:31;9282:4;9279:1;9272:15;9306:4;9303:1;9296:15;9322:1266;9417:6;9425;9433;9441;9494:3;9482:9;9473:7;9469:23;9465:33;9462:53;;;9511:1;9508;9501:12;9462:53;9550:9;9537:23;9569:31;9594:5;9569:31;:::i;:::-;9619:5;-1:-1:-1;9676:2:1;9661:18;;9648:32;9689:33;9648:32;9689:33;:::i;:::-;9741:7;-1:-1:-1;9795:2:1;9780:18;;9767:32;;-1:-1:-1;9850:2:1;9835:18;;9822:32;9873:18;9903:14;;;9900:34;;;9930:1;9927;9920:12;9900:34;9968:6;9957:9;9953:22;9943:32;;10013:7;10006:4;10002:2;9998:13;9994:27;9984:55;;10035:1;10032;10025:12;9984:55;10071:2;10058:16;10093:2;10089;10086:10;10083:36;;;10099:18;;:::i;:::-;10174:2;10168:9;10142:2;10228:13;;-1:-1:-1;;10224:22:1;;;10248:2;10220:31;10216:40;10204:53;;;10272:18;;;10292:22;;;10269:46;10266:72;;;10318:18;;:::i;:::-;10358:10;10354:2;10347:22;10393:2;10385:6;10378:18;10433:7;10428:2;10423;10419;10415:11;10411:20;10408:33;10405:53;;;10454:1;10451;10444:12;10405:53;10510:2;10505;10501;10497:11;10492:2;10484:6;10480:15;10467:46;10555:1;10550:2;10545;10537:6;10533:15;10529:24;10522:35;10576:6;10566:16;;;;;;;9322:1266;;;;;;;:::o;10593:241::-;10649:6;10702:2;10690:9;10681:7;10677:23;10673:32;10670:52;;;10718:1;10715;10708:12;10670:52;10757:9;10744:23;10776:28;10798:5;10776:28;:::i;11105:505::-;11200:6;11208;11216;11269:2;11257:9;11248:7;11244:23;11240:32;11237:52;;;11285:1;11282;11275:12;11237:52;11321:9;11308:23;11298:33;;11382:2;11371:9;11367:18;11354:32;11409:18;11401:6;11398:30;11395:50;;;11441:1;11438;11431:12;11615:773;11737:6;11745;11753;11761;11814:2;11802:9;11793:7;11789:23;11785:32;11782:52;;;11830:1;11827;11820:12;11782:52;11870:9;11857:23;11899:18;11940:2;11932:6;11929:14;11926:34;;;11956:1;11953;11946:12;11926:34;11995:70;12057:7;12048:6;12037:9;12033:22;11995:70;:::i;:::-;12084:8;;-1:-1:-1;11969:96:1;-1:-1:-1;12172:2:1;12157:18;;12144:32;;-1:-1:-1;12188:16:1;;;12185:36;;;12217:1;12214;12207:12;12185:36;;12256:72;12320:7;12309:8;12298:9;12294:24;12256:72;:::i;12786:380::-;12865:1;12861:12;;;;12908;;;12929:61;;12983:4;12975:6;12971:17;12961:27;;12929:61;13036:2;13028:6;13025:14;13005:18;13002:38;12999:161;;;13082:10;13077:3;13073:20;13070:1;13063:31;13117:4;13114:1;13107:15;13145:4;13142:1;13135:15;12999:161;;12786:380;;;:::o;13171:356::-;13373:2;13355:21;;;13392:18;;;13385:30;13451:34;13446:2;13431:18;;13424:62;13518:2;13503:18;;13171:356::o;13945:340::-;14147:2;14129:21;;;14186:2;14166:18;;;14159:30;-1:-1:-1;;;14220:2:1;14205:18;;14198:46;14276:2;14261:18;;13945:340::o;15117:402::-;15319:2;15301:21;;;15358:2;15338:18;;;15331:30;15397:34;15392:2;15377:18;;15370:62;-1:-1:-1;;;15463:2:1;15448:18;;15441:36;15509:3;15494:19;;15117:402::o;15524:127::-;15585:10;15580:3;15576:20;15573:1;15566:31;15616:4;15613:1;15606:15;15640:4;15637:1;15630:15;15656:128;15696:3;15727:1;15723:6;15720:1;15717:13;15714:39;;;15733:18;;:::i;:::-;-1:-1:-1;15769:9:1;;15656:128::o;15789:407::-;15991:2;15973:21;;;16030:2;16010:18;;;16003:30;16069:34;16064:2;16049:18;;16042:62;-1:-1:-1;;;16135:2:1;16120:18;;16113:41;16186:3;16171:19;;15789:407::o;16841:413::-;17043:2;17025:21;;;17082:2;17062:18;;;17055:30;17121:34;17116:2;17101:18;;17094:62;-1:-1:-1;;;17187:2:1;17172:18;;17165:47;17244:3;17229:19;;16841:413::o;17259:168::-;17299:7;17365:1;17361;17357:6;17353:14;17350:1;17347:21;17342:1;17335:9;17328:17;17324:45;17321:71;;;17372:18;;:::i;:::-;-1:-1:-1;17412:9:1;;17259:168::o;17432:127::-;17493:10;17488:3;17484:20;17481:1;17474:31;17524:4;17521:1;17514:15;17548:4;17545:1;17538:15;17564:120;17604:1;17630;17620:35;;17635:18;;:::i;:::-;-1:-1:-1;17669:9:1;;17564:120::o;17689:127::-;17750:10;17745:3;17741:20;17738:1;17731:31;17781:4;17778:1;17771:15;17805:4;17802:1;17795:15;17821:135;17860:3;-1:-1:-1;;17881:17:1;;17878:43;;;17901:18;;:::i;:::-;-1:-1:-1;17948:1:1;17937:13;;17821:135::o;18373:184::-;18443:6;18496:2;18484:9;18475:7;18471:23;18467:32;18464:52;;;18512:1;18509;18502:12;18464:52;-1:-1:-1;18535:16:1;;18373:184;-1:-1:-1;18373:184:1:o;19784:406::-;19986:2;19968:21;;;20025:2;20005:18;;;19998:30;20064:34;20059:2;20044:18;;20037:62;-1:-1:-1;;;20130:2:1;20115:18;;20108:40;20180:3;20165:19;;19784:406::o;20195:349::-;20397:2;20379:21;;;20436:2;20416:18;;;20409:30;20475:27;20470:2;20455:18;;20448:55;20535:2;20520:18;;20195:349::o;20906:343::-;21108:2;21090:21;;;21147:2;21127:18;;;21120:30;-1:-1:-1;;;21181:2:1;21166:18;;21159:49;21240:2;21225:18;;20906:343::o;21254:350::-;21456:2;21438:21;;;21495:2;21475:18;;;21468:30;21534:28;21529:2;21514:18;;21507:56;21595:2;21580:18;;21254:350::o;23225:245::-;23292:6;23345:2;23333:9;23324:7;23320:23;23316:32;23313:52;;;23361:1;23358;23351:12;23313:52;23393:9;23387:16;23412:28;23434:5;23412:28;:::i;24721:1527::-;24945:3;24983:6;24977:13;25009:4;25022:51;25066:6;25061:3;25056:2;25048:6;25044:15;25022:51;:::i;:::-;25136:13;;25095:16;;;;25158:55;25136:13;25095:16;25180:15;;;25158:55;:::i;:::-;25302:13;;25235:20;;;25275:1;;25362;25384:18;;;;25437;;;;25464:93;;25542:4;25532:8;25528:19;25516:31;;25464:93;25605:2;25595:8;25592:16;25572:18;25569:40;25566:167;;;-1:-1:-1;;;25632:33:1;;25688:4;25685:1;25678:15;25718:4;25639:3;25706:17;25566:167;25749:18;25776:110;;;;25900:1;25895:328;;;;25742:481;;25776:110;-1:-1:-1;;25811:24:1;;25797:39;;25856:20;;;;-1:-1:-1;25776:110:1;;25895:328;24668:1;24661:14;;;24705:4;24692:18;;25990:1;26004:169;26018:8;26015:1;26012:15;26004:169;;;26100:14;;26085:13;;;26078:37;26143:16;;;;26035:10;;26004:169;;;26008:3;;26204:8;26197:5;26193:20;26186:27;;25742:481;-1:-1:-1;26239:3:1;;24721:1527;-1:-1:-1;;;;;;;;;;;24721:1527:1:o;28371:125::-;28411:4;28439:1;28436;28433:8;28430:34;;;28444:18;;:::i;:::-;-1:-1:-1;28481:9:1;;28371:125::o;30724:414::-;30926:2;30908:21;;;30965:2;30945:18;;;30938:30;31004:34;30999:2;30984:18;;30977:62;-1:-1:-1;;;31070:2:1;31055:18;;31048:48;31128:3;31113:19;;30724:414::o;31143:112::-;31175:1;31201;31191:35;;31206:18;;:::i;:::-;-1:-1:-1;31240:9:1;;31143:112::o;32796:489::-;-1:-1:-1;;;;;33065:15:1;;;33047:34;;33117:15;;33112:2;33097:18;;33090:43;33164:2;33149:18;;33142:34;;;33212:3;33207:2;33192:18;;33185:31;;;32990:4;;33233:46;;33259:19;;33251:6;33233:46;:::i;:::-;33225:54;32796:489;-1:-1:-1;;;;;;32796:489:1:o;33290:249::-;33359:6;33412:2;33400:9;33391:7;33387:23;33383:32;33380:52;;;33428:1;33425;33418:12;33380:52;33460:9;33454:16;33479:30;33503:5;33479:30;:::i;34309:274::-;34438:3;34476:6;34470:13;34492:53;34538:6;34533:3;34526:4;34518:6;34514:17;34492:53;:::i;:::-;34561:16;;;;;34309:274;-1:-1:-1;;34309:274:1:o

Swarm Source

ipfs://00e8f3348d1894010ee30b4ae319949c731ea591e60a96b87ddda09e81079f8f
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.