ETH Price: $3,309.62 (-3.21%)
Gas: 11 Gwei

Token

Derpy Apes (DPA)
 

Overview

Max Total Supply

3,710 DPA

Holders

911

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Purr Evil: Deployer
Balance
1 DPA
0xce3e42407a54121f4796d75bc92542206d1b724e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DerpyApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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 v4.4.1 (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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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/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: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    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;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    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);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    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"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.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);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Smart.sol


pragma solidity ^0.8.2;

//------------------------------------------------------------------------------
/*

░██████╗░██╗░░░██╗░█████╗░██╗░░░░░██╗███████╗██╗███████╗██████╗░  ██████╗░███████╗██╗░░░██╗░██████╗
██╔═══██╗██║░░░██║██╔══██╗██║░░░░░██║██╔════╝██║██╔════╝██╔══██╗  ██╔══██╗██╔════╝██║░░░██║██╔════╝
██║██╗██║██║░░░██║███████║██║░░░░░██║█████╗░░██║█████╗░░██║░░██║  ██║░░██║█████╗░░╚██╗░██╔╝╚█████╗░
╚██████╔╝██║░░░██║██╔══██║██║░░░░░██║██╔══╝░░██║██╔══╝░░██║░░██║  ██║░░██║██╔══╝░░░╚████╔╝░░╚═══██╗
░╚═██╔═╝░╚██████╔╝██║░░██║███████╗██║██║░░░░░██║███████╗██████╔╝  ██████╔╝███████╗░░╚██╔╝░░██████╔╝
░░░╚═╝░░░░╚═════╝░╚═╝░░╚═╝╚══════╝╚═╝╚═╝░░░░░╚═╝╚══════╝╚═════╝░  ╚═════╝░╚══════╝░░░╚═╝░░░╚═════╝░
*/
//------------------------------------------------------------------------------
// Author: orion (@OrionDevStar)
//------------------------------------------------------------------------------

contract DerpyApes is ERC721, Ownable {
  using Strings for uint256;
  using ECDSA for bytes32;
  using SafeERC20 for IERC20;
  using Counters for Counters.Counter;

  IERC20 public paymentToken;

  Counters.Counter private supply;
  Counters.Counter private Freesupply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public QD = 3 ether;
  uint256 public Ethcost = 0.024 ether;
  uint256 public LooksCost = 12 ether; 
  uint256 public maxSupply = 7777;
  uint256 public maxFree = 777;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public maxFreeMintAmount = 2;

  bool public revealed = false;
  uint8 public projectStage = 3;

  address internal SIGNER;
  address internal FREE_SIGNER;

  address[] public freeNFTAddress;

  mapping(address => uint256) public mintBalances;

  constructor(address[] memory _freeNFTAddress, address _paymentToken) 
        ERC721("Derpy Apes", "DPA") {
    paymentToken = IERC20(_paymentToken);      
    hiddenMetadataUri = "ipfs://Qmaz97rHQtNRZiKfmjb9HSpMiDf2QeoecCMx8q9oJqj7oR/hidden.json";
    freeNFTAddress = _freeNFTAddress;
    SIGNER = 0x384635eba70d287c96B751b95084D4f4FF9fdBb3;
    FREE_SIGNER = 0xdCBDC131Ec1ef3Cc3C274D094E0354bB9cd3EA81;
  }  

  //modifier
  modifier mintCompliance(uint256 _mintAmount)  {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  //internal
  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }

  function _checkHash(bytes32 _hash, bytes memory _signature, address _account ) internal view returns (bool) {
      bytes32 senderHash = _senderMessageHash();
      if (senderHash != _hash) {
          return false;
      }
      return _hash.recover(_signature) == _account;
  } 

  function _mintCost(bool _islooks, uint256 _mintAmount) internal {
    if(!_islooks) 
      require(msg.value >= Ethcost * _mintAmount, "Insufficient funds!");
    else {
      paymentToken.safeTransferFrom(
        msg.sender,
        address(this),
        LooksCost * _mintAmount
      ); 
    }
  }    

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _senderMessageHash() internal view returns (bytes32) {
      bytes32 message = keccak256(
          abi.encodePacked(
              "\x19Ethereum Signed Message:\n32",
              keccak256(abi.encodePacked(address(this), msg.sender))
          )
      );
      return message;
  }

  //external
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) external onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setLooksCost(uint256 _newCost) external onlyOwner {
    LooksCost = _newCost;
  }

  function setprojectStage(uint8 _stage) external onlyOwner {
    projectStage = _stage;
  }  

  function setRevealed() external onlyOwner {
    revealed = !revealed;
  }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }  

  function withdrawAll() external onlyOwner {
      if(QD > 0){
      uint256 QDvalue;
        if (address(this).balance < QD) {
            QDvalue = address(this).balance;
            QD -= address(this).balance;
        } else {
            QDvalue = QD;
            QD = 0;
        }
        (bool hs, ) = payable(0x89a31e7658510Cfd960067cb97ddcc7Ece3c70C0).call{value: QDvalue}("");
        require(hs);      
      } else {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
      }
  }

  function withdrawERC20(IERC20 token) external onlyOwner {
    if(QD > 0){
        uint256 QDvalue;
        uint256 ethBalance = (token.balanceOf(address(this)) * Ethcost )/ LooksCost;
        if (ethBalance  < QD) {
            QDvalue = token.balanceOf(address(this));
            QD -= ethBalance;
        } else {
            QDvalue = (LooksCost * QD) / Ethcost;
            QD = 0;
        }
         token.transfer(0x89a31e7658510Cfd960067cb97ddcc7Ece3c70C0, QDvalue);
    } else {
        token.transfer(owner(), token.balanceOf(address(this)));
    }
  } 

  //public
  function avaliableFreeMint(uint256 _mintAmount, address account) public view returns (bool) {
    if (_mintAmount + mintBalances[account] > maxFreeMintAmount)
     return false;
    for (uint256 i = 0; i < freeNFTAddress.length; i ++) {
      IERC721 token = IERC721(freeNFTAddress[i]);
      uint256 ownedAmount = token.balanceOf(account);
      if(ownedAmount > 0 ) {
        return true;
      }
    }
    return false;
  }

  function freeMint(uint256 _mintAmount, bytes32 _hash, bytes memory _signature) public mintCompliance(_mintAmount) {    
    require(projectStage == 0, "Free mint is not active.");
    require(Freesupply.current() + _mintAmount <= maxFree, "Invalid mint amount!");
    require(_checkHash(_hash, _signature, FREE_SIGNER), "Address is not on free List");
    
    _mintLoop(msg.sender, _mintAmount);
    mintBalances[msg.sender] += _mintAmount;
    Freesupply._value += _mintAmount;
  }

  function mint(bool islooks, uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(projectStage == 2 , "Public Sale is not active.");
    _mintCost(islooks,_mintAmount);
    _mintLoop(msg.sender, _mintAmount);
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(Freesupply.current() + _mintAmount <= maxFree, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _mintLoop(_receiver, _mintAmount);
    Freesupply._value += _mintAmount;
  }

  function presaleMint(bool islooks, uint256 _mintAmount, bytes32 _hash, bytes memory _signature) public payable mintCompliance(_mintAmount) {
    require(projectStage == 1, "Presale Sale is not active.");
    require(_checkHash(_hash, _signature, SIGNER), "Address is not on Presale List");
    _mintCost(islooks,_mintAmount);
    _mintLoop(msg.sender, _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory)
  {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }

    return ownedTokenIds;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_freeNFTAddress","type":"address[]"},{"internalType":"address","name":"_paymentToken","type":"address"}],"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"Ethcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LooksCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"avaliableFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freeNFTAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"islooks","type":"bool"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"paymentToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"islooks","type":"bool"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"projectStage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setLooksCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_stage","type":"uint8"}],"name":"setprojectStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a9162000254565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b9162000254565b506729a2241af62c0000600d55665543df729c0000600e5567a688906bd8b00000600f55611e61601055610309601155600a60125560026013556014805461ffff1916610300179055348015620000a057600080fd5b506040516200394a3803806200394a833981016040819052620000c3916200036f565b604080518082018252600a8152694465727079204170657360b01b60208083019182528351808501909452600384526244504160e81b908401528151919291620001109160009162000254565b5080516200012690600190602084019062000254565b505050620001436200013d620001fe60201b60201c565b62000202565b600780546001600160a01b0319166001600160a01b0383161790556040805160808101909152604180825262003909602083013980516200018d91600c9160209091019062000254565b508151620001a3906016906020850190620002e3565b50506014805475384635eba70d287c96b751b95084d4f4ff9fdbb3000062010000600160b01b031990911617905550601580546001600160a01b03191673dcbdc131ec1ef3cc3c274d094e0354bb9cd3ea81179055620004af565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000262906200045c565b90600052602060002090601f016020900481019282620002865760008555620002d1565b82601f10620002a157805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d1578251825591602001919060010190620002b4565b50620002df9291506200033b565b5090565b828054828255906000526020600020908101928215620002d1579160200282015b82811115620002d157825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000304565b5b80821115620002df57600081556001016200033c565b80516001600160a01b03811681146200036a57600080fd5b919050565b600080604083850312156200038357600080fd5b82516001600160401b03808211156200039b57600080fd5b818501915085601f830112620003b057600080fd5b8151602082821115620003c757620003c762000499565b8160051b604051601f19603f83011681018181108682111715620003ef57620003ef62000499565b604052838152828101945085830182870184018b10156200040f57600080fd5b600096505b848710156200043d57620004288162000352565b86526001969096019594830194830162000414565b5096506200044f905087820162000352565b9450505050509250929050565b600181811c908216806200047157607f821691505b602082108114156200049357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61344a80620004bf6000396000f3fe60806040526004361061027d5760003560e01c80637c45c16f1161014f578063bc56602f116100c1578063efbd73f41161007a578063efbd73f414610736578063f16f64a914610756578063f2fde38b14610776578063f487073214610796578063f4f3b200146107ac578063fb28e9ec146107cc57600080fd5b8063bc56602f14610680578063c87b56dd146106ad578063ce391346146106cd578063d5abeb01146106ed578063dfefc77614610703578063e985e9c51461071657600080fd5b806394354fd01161011357806394354fd0146105ea57806395d89b41146106005780639d3d41de14610615578063a22cb4651461062b578063a45ba8e71461064b578063b88d4fde1461066057600080fd5b80637c45c16f146105615780637ec4a65914610577578063853828b6146105975780638da5cb5b146105ac5780638db6656f146105ca57600080fd5b8063449db014116101f35780635503a0e8116101ac5780635503a0e8146104cc57806356a585c7146104e157806362b99ad4146104f75780636352211e1461050c57806370a082311461052c578063715018a61461054c57600080fd5b8063449db01414610418578063485a68a3146104385780634ec830f91461044e5780634fdd43cb14610461578063518302271461048157806352731e8f1461049b57600080fd5b806318160ddd1161024557806318160ddd1461035357806323b872dd146103765780633013ce29146103965780633bd64968146103b657806342842e0e146103cb578063438b6300146103eb57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806316ba10e014610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612e54565b6107ec565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61083e565b6040516102ae919061312e565b3480156102e557600080fd5b506102f96102f4366004612ed7565b6108d0565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612da2565b61096a565b005b34801561033f57600080fd5b5061033161034e366004612e8e565b610a80565b34801561035f57600080fd5b50610368610ac1565b6040519081526020016102ae565b34801561038257600080fd5b50610331610391366004612cc7565b610ad1565b3480156103a257600080fd5b506007546102f9906001600160a01b031681565b3480156103c257600080fd5b50610331610b02565b3480156103d757600080fd5b506103316103e6366004612cc7565b610b40565b3480156103f757600080fd5b5061040b610406366004612c71565b610b5b565b6040516102ae91906130ea565b34801561042457600080fd5b50610331610433366004612f7e565b610c3c565b34801561044457600080fd5b5061036860115481565b61033161045c366004612e09565b610c82565b34801561046d57600080fd5b5061033161047c366004612e8e565b610dc8565b34801561048d57600080fd5b506014546102a29060ff1681565b3480156104a757600080fd5b506014546104ba90610100900460ff1681565b60405160ff90911681526020016102ae565b3480156104d857600080fd5b506102cc610e05565b3480156104ed57600080fd5b50610368600e5481565b34801561050357600080fd5b506102cc610e93565b34801561051857600080fd5b506102f9610527366004612ed7565b610ea0565b34801561053857600080fd5b50610368610547366004612c71565b610f17565b34801561055857600080fd5b50610331610f9e565b34801561056d57600080fd5b50610368600d5481565b34801561058357600080fd5b50610331610592366004612e8e565b610fd4565b3480156105a357600080fd5b50610331611011565b3480156105b857600080fd5b506006546001600160a01b03166102f9565b3480156105d657600080fd5b506102f96105e5366004612ed7565b611157565b3480156105f657600080fd5b5061036860125481565b34801561060c57600080fd5b506102cc611181565b34801561062157600080fd5b5061036860135481565b34801561063757600080fd5b50610331610646366004612d74565b611190565b34801561065757600080fd5b506102cc61119b565b34801561066c57600080fd5b5061033161067b366004612d08565b6111a8565b34801561068c57600080fd5b5061036861069b366004612c71565b60176020526000908152604090205481565b3480156106b957600080fd5b506102cc6106c8366004612ed7565b6111e0565b3480156106d957600080fd5b506103316106e8366004612ed7565b61135a565b3480156106f957600080fd5b5061036860105481565b610331610711366004612deb565b611389565b34801561072257600080fd5b506102a2610731366004612c8e565b61145b565b34801561074257600080fd5b50610331610751366004612f09565b611489565b34801561076257600080fd5b50610331610771366004612f2e565b611545565b34801561078257600080fd5b50610331610791366004612c71565b6116e9565b3480156107a257600080fd5b50610368600f5481565b3480156107b857600080fd5b506103316107c7366004612c71565b611781565b3480156107d857600080fd5b506102a26107e7366004612f09565b611abc565b60006001600160e01b031982166380ac58cd60e01b148061081d57506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461084d90613303565b80601f016020809104026020016040519081016040528092919081815260200182805461087990613303565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661094e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097582610ea0565b9050806001600160a01b0316836001600160a01b031614156109e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610945565b336001600160a01b03821614806109ff57506109ff813361145b565b610a715760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610945565b610a7b8383611bd0565b505050565b6006546001600160a01b03163314610aaa5760405162461bcd60e51b8152600401610945906131c1565b8051610abd90600b906020840190612b42565b5050565b6000610acc60085490565b905090565b610adb3382611c3e565b610af75760405162461bcd60e51b815260040161094590613224565b610a7b838383611d15565b6006546001600160a01b03163314610b2c5760405162461bcd60e51b8152600401610945906131c1565b6014805460ff19811660ff90911615179055565b610a7b838383604051806020016040528060008152506111a8565b60606000610b6883610f17565b905060008167ffffffffffffffff811115610b8557610b856133c5565b604051908082528060200260200182016040528015610bae578160200160208202803683370190505b509050600160005b8381108015610bc757506010548211155b15610c32576000610bd783610ea0565b9050866001600160a01b0316816001600160a01b03161415610c1f5782848381518110610c0657610c066133af565b602090810291909101015281610c1b8161333e565b9250505b82610c298161333e565b93505050610bb6565b5090949350505050565b6006546001600160a01b03163314610c665760405162461bcd60e51b8152600401610945906131c1565b6014805460ff9092166101000261ff0019909216919091179055565b82600081118015610c9557506012548111155b610cb15760405162461bcd60e51b815260040161094590613193565b60105481610cbe60085490565b610cc89190613275565b1115610ce65760405162461bcd60e51b8152600401610945906131f6565b60145460ff61010090910416600114610d415760405162461bcd60e51b815260206004820152601b60248201527f50726573616c652053616c65206973206e6f74206163746976652e00000000006044820152606401610945565b610d618383601460029054906101000a90046001600160a01b0316611eb5565b610dad5760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206973206e6f74206f6e2050726573616c65204c69737400006044820152606401610945565b610db78585611f82565b610dc13385612001565b5050505050565b6006546001600160a01b03163314610df25760405162461bcd60e51b8152600401610945906131c1565b8051610abd90600c906020840190612b42565b600b8054610e1290613303565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e90613303565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b600a8054610e1290613303565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610945565b60006001600160a01b038216610f825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610945565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fc85760405162461bcd60e51b8152600401610945906131c1565b610fd2600061203e565b565b6006546001600160a01b03163314610ffe5760405162461bcd60e51b8152600401610945906131c1565b8051610abd90600a906020840190612b42565b6006546001600160a01b0316331461103b5760405162461bcd60e51b8152600401610945906131c1565b600d54156110e3576000600d5447101561106f5747905047600d600082825461106491906132c0565b9091555061107a9050565b50600d805460009091555b6040516000907389a31e7658510cfd960067cb97ddcc7ece3c70c09083908381818185875af1925050503d80600081146110d0576040519150601f19603f3d011682016040523d82523d6000602084013e6110d5565b606091505b5050905080610abd57600080fd5b60006110f76006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611141576040519150601f19603f3d011682016040523d82523d6000602084013e611146565b606091505b505090508061115457600080fd5b50565b6016818154811061116757600080fd5b6000918252602090912001546001600160a01b0316905081565b60606001805461084d90613303565b610abd338383612090565b600c8054610e1290613303565b6111b23383611c3e565b6111ce5760405162461bcd60e51b815260040161094590613224565b6111da8484848461215f565b50505050565b6000818152600260205260409020546060906001600160a01b031661125f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610945565b60145460ff166112fb57600c805461127690613303565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613303565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b50505050509050919050565b6000611305612192565b905060008151116113255760405180602001604052806000815250611353565b8061132f846121a1565b600b60405160200161134393929190612fe9565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113845760405162461bcd60e51b8152600401610945906131c1565b600f55565b8060008111801561139c57506012548111155b6113b85760405162461bcd60e51b815260040161094590613193565b601054816113c560085490565b6113cf9190613275565b11156113ed5760405162461bcd60e51b8152600401610945906131f6565b601454610100900460ff166002146114475760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632053616c65206973206e6f74206163746976652e0000000000006044820152606401610945565b6114518383611f82565b610a7b3383612001565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146114b35760405162461bcd60e51b8152600401610945906131c1565b601154826114c060095490565b6114ca9190613275565b11156114e85760405162461bcd60e51b815260040161094590613193565b601054826114f560085490565b6114ff9190613275565b111561151d5760405162461bcd60e51b8152600401610945906131f6565b6115278183612001565b816009600001600082825461153c9190613275565b90915550505050565b8260008111801561155857506012548111155b6115745760405162461bcd60e51b815260040161094590613193565b6010548161158160085490565b61158b9190613275565b11156115a95760405162461bcd60e51b8152600401610945906131f6565b601454610100900460ff16156116015760405162461bcd60e51b815260206004820152601860248201527f46726565206d696e74206973206e6f74206163746976652e00000000000000006044820152606401610945565b6011548461160e60095490565b6116189190613275565b11156116365760405162461bcd60e51b815260040161094590613193565b60155461164f90849084906001600160a01b0316611eb5565b61169b5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f74206f6e2066726565204c69737400000000006044820152606401610945565b6116a53385612001565b33600090815260176020526040812080548692906116c4908490613275565b9091555050600980548591906000906116de908490613275565b909155505050505050565b6006546001600160a01b031633146117135760405162461bcd60e51b8152600401610945906131c1565b6001600160a01b0381166117785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610945565b6111548161203e565b6006546001600160a01b031633146117ab5760405162461bcd60e51b8152600401610945906131c1565b600d54156119a657600f54600e546040516370a0823160e01b8152306004820152600092839290916001600160a01b038616906370a082319060240160206040518083038186803b1580156117ff57600080fd5b505afa158015611813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118379190612ef0565b61184191906132a1565b61184b919061328d565b9050600d548110156118ed576040516370a0823160e01b81523060048201526001600160a01b038416906370a082319060240160206040518083038186803b15801561189657600080fd5b505afa1580156118aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ce9190612ef0565b915080600d60008282546118e291906132c0565b909155506119129050565b600e54600d54600f5461190091906132a1565b61190a919061328d565b6000600d5591505b60405163a9059cbb60e01b81527389a31e7658510cfd960067cb97ddcc7ece3c70c06004820152602481018390526001600160a01b0384169063a9059cbb90604401602060405180830381600087803b15801561196e57600080fd5b505af1158015611982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111da9190612dce565b806001600160a01b031663a9059cbb6119c76006546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015611a0657600080fd5b505afa158015611a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3e9190612ef0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611a8457600080fd5b505af1158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190612dce565b6013546001600160a01b038216600090815260176020526040812054909190611ae59085613275565b1115611af357506000610838565b60005b601654811015611bc657600060168281548110611b1557611b156133af565b60009182526020822001546040516370a0823160e01b81526001600160a01b038781166004830152909116925082906370a082319060240160206040518083038186803b158015611b6557600080fd5b505afa158015611b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9d9190612ef0565b90508015611bb15760019350505050610838565b50508080611bbe9061333e565b915050611af6565b5060009392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c0582610ea0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cb75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610945565b6000611cc283610ea0565b9050806001600160a01b0316846001600160a01b03161480611cfd5750836001600160a01b0316611cf2846108d0565b6001600160a01b0316145b80611d0d5750611d0d818561145b565b949350505050565b826001600160a01b0316611d2882610ea0565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610945565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610945565b611dfd600082611bd0565b6001600160a01b0383166000908152600360205260408120805460019290611e269084906132c0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e54908490613275565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611f486040805130606090811b6bffffffffffffffffffffffff199081166020808501919091523390921b166034830152825160288184030181526048830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060688401526084808401919091528351808403909101815260a4909201909252805191012090565b9050848114611f5b576000915050611353565b6001600160a01b038316611f6f868661229f565b6001600160a01b03161495945050505050565b81611fda5780600e54611f9591906132a1565b341015610abd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610945565b610abd333083600f54611fed91906132a1565b6007546001600160a01b03169291906122c3565b60005b81811015610a7b5761201a600880546001019055565b61202c8361202760085490565b61231d565b806120368161333e565b915050612004565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120f25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610945565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61216a848484611d15565b61217684848484612337565b6111da5760405162461bcd60e51b815260040161094590613141565b6060600a805461084d90613303565b6060816121c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ef57806121d98161333e565b91506121e89050600a8361328d565b91506121c9565b60008167ffffffffffffffff81111561220a5761220a6133c5565b6040519080825280601f01601f191660200182016040528015612234576020820181803683370190505b5090505b8415611d0d576122496001836132c0565b9150612256600a86613359565b612261906030613275565b60f81b818381518110612276576122766133af565b60200101906001600160f81b031916908160001a905350612298600a8661328d565b9450612238565b60008060006122ae8585612444565b915091506122bb816124b4565b509392505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526111da90859061266f565b610abd828260405180602001604052806000815250612741565b60006001600160a01b0384163b1561243957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061237b9033908990889088906004016130ad565b602060405180830381600087803b15801561239557600080fd5b505af19250505080156123c5575060408051601f3d908101601f191682019092526123c291810190612e71565b60015b61241f573d8080156123f3576040519150601f19603f3d011682016040523d82523d6000602084013e6123f8565b606091505b5080516124175760405162461bcd60e51b815260040161094590613141565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b506001949350505050565b60008082516041141561247b5760208301516040840151606085015160001a61246f87828585612774565b945094505050506124ad565b8251604014156124a5576020830151604084015161249a868383612861565b9350935050506124ad565b506000905060025b9250929050565b60008160048111156124c8576124c8613399565b14156124d15750565b60018160048111156124e5576124e5613399565b14156125335760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610945565b600281600481111561254757612547613399565b14156125955760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610945565b60038160048111156125a9576125a9613399565b14156126025760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610945565b600481600481111561261657612616613399565b14156111545760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610945565b60006126c4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128909092919063ffffffff16565b805190915015610a7b57808060200190518101906126e29190612dce565b610a7b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610945565b61274b838361289f565b6127586000848484612337565b610a7b5760405162461bcd60e51b815260040161094590613141565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156127ab5750600090506003612858565b8460ff16601b141580156127c357508460ff16601c14155b156127d45750600090506004612858565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612828573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661285157600060019250925050612858565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161288287828885612774565b935093505050935093915050565b6060611d0d84846000856129e1565b6001600160a01b0382166128f55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610945565b6000818152600260205260409020546001600160a01b03161561295a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610945565b6001600160a01b0382166000908152600360205260408120805460019290612983908490613275565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612a425760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610945565b843b612a905760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610945565b600080866001600160a01b03168587604051612aac9190612fcd565b60006040518083038185875af1925050503d8060008114612ae9576040519150601f19603f3d011682016040523d82523d6000602084013e612aee565b606091505b5091509150612afe828286612b09565b979650505050505050565b60608315612b18575081611353565b825115612b285782518084602001fd5b8160405162461bcd60e51b8152600401610945919061312e565b828054612b4e90613303565b90600052602060002090601f016020900481019282612b705760008555612bb6565b82601f10612b8957805160ff1916838001178555612bb6565b82800160010185558215612bb6579182015b82811115612bb6578251825591602001919060010190612b9b565b50612bc2929150612bc6565b5090565b5b80821115612bc25760008155600101612bc7565b600067ffffffffffffffff80841115612bf657612bf66133c5565b604051601f8501601f19908116603f01168101908282118183101715612c1e57612c1e6133c5565b81604052809350858152868686011115612c3757600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c6257600080fd5b61135383833560208501612bdb565b600060208284031215612c8357600080fd5b8135611353816133db565b60008060408385031215612ca157600080fd5b8235612cac816133db565b91506020830135612cbc816133db565b809150509250929050565b600080600060608486031215612cdc57600080fd5b8335612ce7816133db565b92506020840135612cf7816133db565b929592945050506040919091013590565b60008060008060808587031215612d1e57600080fd5b8435612d29816133db565b93506020850135612d39816133db565b925060408501359150606085013567ffffffffffffffff811115612d5c57600080fd5b612d6887828801612c51565b91505092959194509250565b60008060408385031215612d8757600080fd5b8235612d92816133db565b91506020830135612cbc816133f0565b60008060408385031215612db557600080fd5b8235612dc0816133db565b946020939093013593505050565b600060208284031215612de057600080fd5b8151611353816133f0565b60008060408385031215612dfe57600080fd5b8235612dc0816133f0565b60008060008060808587031215612e1f57600080fd5b8435612e2a816133f0565b93506020850135925060408501359150606085013567ffffffffffffffff811115612d5c57600080fd5b600060208284031215612e6657600080fd5b8135611353816133fe565b600060208284031215612e8357600080fd5b8151611353816133fe565b600060208284031215612ea057600080fd5b813567ffffffffffffffff811115612eb757600080fd5b8201601f81018413612ec857600080fd5b611d0d84823560208401612bdb565b600060208284031215612ee957600080fd5b5035919050565b600060208284031215612f0257600080fd5b5051919050565b60008060408385031215612f1c57600080fd5b823591506020830135612cbc816133db565b600080600060608486031215612f4357600080fd5b8335925060208401359150604084013567ffffffffffffffff811115612f6857600080fd5b612f7486828701612c51565b9150509250925092565b600060208284031215612f9057600080fd5b813560ff8116811461135357600080fd5b60008151808452612fb98160208601602086016132d7565b601f01601f19169290920160200192915050565b60008251612fdf8184602087016132d7565b9190910192915050565b600084516020612ffc8285838a016132d7565b85519184019161300f8184848a016132d7565b8554920191600090600181811c908083168061302c57607f831692505b85831081141561304a57634e487b7160e01b85526022600452602485fd5b80801561305e576001811461306f5761309c565b60ff1985168852838801955061309c565b60008b81526020902060005b858110156130945781548a82015290840190880161307b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130e090830184612fa1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561312257835183529284019291840191600101613106565b50909695505050505050565b6020815260006113536020830184612fa1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156132885761328861336d565b500190565b60008261329c5761329c613383565b500490565b60008160001904831182151516156132bb576132bb61336d565b500290565b6000828210156132d2576132d261336d565b500390565b60005b838110156132f25781810151838201526020016132da565b838111156111da5750506000910152565b600181811c9082168061331757607f821691505b6020821081141561333857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133525761335261336d565b5060010190565b60008261336857613368613383565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115457600080fd5b801515811461115457600080fd5b6001600160e01b03198116811461115457600080fdfea26469706673582212206a8d6b2fe2a731c6418d3f214f92cf8607740708831d1c080181d804988d9ada64736f6c63430008070033697066733a2f2f516d617a3937724851744e525a694b666d6a62394853704d6944663251656f6563434d783871396f4a716a376f522f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000f4d2888d29d722226fafa5d9b24f9164c092421e000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000ac9db91e958d418bf83781ecadf0431601c48193000000000000000000000000fd3c3717164831916e6d2d7cdde9904dd793ec84000000000000000000000000123b30e25973fecd8354dd5f41cc45a3065ef88c0000000000000000000000001fec856e25f757fed06eb90548b0224e910957380000000000000000000000008a90cab2b38dba80c64b7734e58ee1db38b8992e000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa000000000000000000000000063fa29fec10c997851ccd2466dad20e51b17c8af00000000000000000000000060e4d786628fea6478f785a6d7e704777c86a7c60000000000000000000000001a92f7381b9f03921564a437210bb9396471050c00000000000000000000000029714cafe792ef8b8c649451d13c89e21a0d7f5b

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637c45c16f1161014f578063bc56602f116100c1578063efbd73f41161007a578063efbd73f414610736578063f16f64a914610756578063f2fde38b14610776578063f487073214610796578063f4f3b200146107ac578063fb28e9ec146107cc57600080fd5b8063bc56602f14610680578063c87b56dd146106ad578063ce391346146106cd578063d5abeb01146106ed578063dfefc77614610703578063e985e9c51461071657600080fd5b806394354fd01161011357806394354fd0146105ea57806395d89b41146106005780639d3d41de14610615578063a22cb4651461062b578063a45ba8e71461064b578063b88d4fde1461066057600080fd5b80637c45c16f146105615780637ec4a65914610577578063853828b6146105975780638da5cb5b146105ac5780638db6656f146105ca57600080fd5b8063449db014116101f35780635503a0e8116101ac5780635503a0e8146104cc57806356a585c7146104e157806362b99ad4146104f75780636352211e1461050c57806370a082311461052c578063715018a61461054c57600080fd5b8063449db01414610418578063485a68a3146104385780634ec830f91461044e5780634fdd43cb14610461578063518302271461048157806352731e8f1461049b57600080fd5b806318160ddd1161024557806318160ddd1461035357806323b872dd146103765780633013ce29146103965780633bd64968146103b657806342842e0e146103cb578063438b6300146103eb57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806316ba10e014610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612e54565b6107ec565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61083e565b6040516102ae919061312e565b3480156102e557600080fd5b506102f96102f4366004612ed7565b6108d0565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612da2565b61096a565b005b34801561033f57600080fd5b5061033161034e366004612e8e565b610a80565b34801561035f57600080fd5b50610368610ac1565b6040519081526020016102ae565b34801561038257600080fd5b50610331610391366004612cc7565b610ad1565b3480156103a257600080fd5b506007546102f9906001600160a01b031681565b3480156103c257600080fd5b50610331610b02565b3480156103d757600080fd5b506103316103e6366004612cc7565b610b40565b3480156103f757600080fd5b5061040b610406366004612c71565b610b5b565b6040516102ae91906130ea565b34801561042457600080fd5b50610331610433366004612f7e565b610c3c565b34801561044457600080fd5b5061036860115481565b61033161045c366004612e09565b610c82565b34801561046d57600080fd5b5061033161047c366004612e8e565b610dc8565b34801561048d57600080fd5b506014546102a29060ff1681565b3480156104a757600080fd5b506014546104ba90610100900460ff1681565b60405160ff90911681526020016102ae565b3480156104d857600080fd5b506102cc610e05565b3480156104ed57600080fd5b50610368600e5481565b34801561050357600080fd5b506102cc610e93565b34801561051857600080fd5b506102f9610527366004612ed7565b610ea0565b34801561053857600080fd5b50610368610547366004612c71565b610f17565b34801561055857600080fd5b50610331610f9e565b34801561056d57600080fd5b50610368600d5481565b34801561058357600080fd5b50610331610592366004612e8e565b610fd4565b3480156105a357600080fd5b50610331611011565b3480156105b857600080fd5b506006546001600160a01b03166102f9565b3480156105d657600080fd5b506102f96105e5366004612ed7565b611157565b3480156105f657600080fd5b5061036860125481565b34801561060c57600080fd5b506102cc611181565b34801561062157600080fd5b5061036860135481565b34801561063757600080fd5b50610331610646366004612d74565b611190565b34801561065757600080fd5b506102cc61119b565b34801561066c57600080fd5b5061033161067b366004612d08565b6111a8565b34801561068c57600080fd5b5061036861069b366004612c71565b60176020526000908152604090205481565b3480156106b957600080fd5b506102cc6106c8366004612ed7565b6111e0565b3480156106d957600080fd5b506103316106e8366004612ed7565b61135a565b3480156106f957600080fd5b5061036860105481565b610331610711366004612deb565b611389565b34801561072257600080fd5b506102a2610731366004612c8e565b61145b565b34801561074257600080fd5b50610331610751366004612f09565b611489565b34801561076257600080fd5b50610331610771366004612f2e565b611545565b34801561078257600080fd5b50610331610791366004612c71565b6116e9565b3480156107a257600080fd5b50610368600f5481565b3480156107b857600080fd5b506103316107c7366004612c71565b611781565b3480156107d857600080fd5b506102a26107e7366004612f09565b611abc565b60006001600160e01b031982166380ac58cd60e01b148061081d57506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461084d90613303565b80601f016020809104026020016040519081016040528092919081815260200182805461087990613303565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661094e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097582610ea0565b9050806001600160a01b0316836001600160a01b031614156109e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610945565b336001600160a01b03821614806109ff57506109ff813361145b565b610a715760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610945565b610a7b8383611bd0565b505050565b6006546001600160a01b03163314610aaa5760405162461bcd60e51b8152600401610945906131c1565b8051610abd90600b906020840190612b42565b5050565b6000610acc60085490565b905090565b610adb3382611c3e565b610af75760405162461bcd60e51b815260040161094590613224565b610a7b838383611d15565b6006546001600160a01b03163314610b2c5760405162461bcd60e51b8152600401610945906131c1565b6014805460ff19811660ff90911615179055565b610a7b838383604051806020016040528060008152506111a8565b60606000610b6883610f17565b905060008167ffffffffffffffff811115610b8557610b856133c5565b604051908082528060200260200182016040528015610bae578160200160208202803683370190505b509050600160005b8381108015610bc757506010548211155b15610c32576000610bd783610ea0565b9050866001600160a01b0316816001600160a01b03161415610c1f5782848381518110610c0657610c066133af565b602090810291909101015281610c1b8161333e565b9250505b82610c298161333e565b93505050610bb6565b5090949350505050565b6006546001600160a01b03163314610c665760405162461bcd60e51b8152600401610945906131c1565b6014805460ff9092166101000261ff0019909216919091179055565b82600081118015610c9557506012548111155b610cb15760405162461bcd60e51b815260040161094590613193565b60105481610cbe60085490565b610cc89190613275565b1115610ce65760405162461bcd60e51b8152600401610945906131f6565b60145460ff61010090910416600114610d415760405162461bcd60e51b815260206004820152601b60248201527f50726573616c652053616c65206973206e6f74206163746976652e00000000006044820152606401610945565b610d618383601460029054906101000a90046001600160a01b0316611eb5565b610dad5760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206973206e6f74206f6e2050726573616c65204c69737400006044820152606401610945565b610db78585611f82565b610dc13385612001565b5050505050565b6006546001600160a01b03163314610df25760405162461bcd60e51b8152600401610945906131c1565b8051610abd90600c906020840190612b42565b600b8054610e1290613303565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e90613303565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b600a8054610e1290613303565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610945565b60006001600160a01b038216610f825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610945565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fc85760405162461bcd60e51b8152600401610945906131c1565b610fd2600061203e565b565b6006546001600160a01b03163314610ffe5760405162461bcd60e51b8152600401610945906131c1565b8051610abd90600a906020840190612b42565b6006546001600160a01b0316331461103b5760405162461bcd60e51b8152600401610945906131c1565b600d54156110e3576000600d5447101561106f5747905047600d600082825461106491906132c0565b9091555061107a9050565b50600d805460009091555b6040516000907389a31e7658510cfd960067cb97ddcc7ece3c70c09083908381818185875af1925050503d80600081146110d0576040519150601f19603f3d011682016040523d82523d6000602084013e6110d5565b606091505b5050905080610abd57600080fd5b60006110f76006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611141576040519150601f19603f3d011682016040523d82523d6000602084013e611146565b606091505b505090508061115457600080fd5b50565b6016818154811061116757600080fd5b6000918252602090912001546001600160a01b0316905081565b60606001805461084d90613303565b610abd338383612090565b600c8054610e1290613303565b6111b23383611c3e565b6111ce5760405162461bcd60e51b815260040161094590613224565b6111da8484848461215f565b50505050565b6000818152600260205260409020546060906001600160a01b031661125f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610945565b60145460ff166112fb57600c805461127690613303565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613303565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b50505050509050919050565b6000611305612192565b905060008151116113255760405180602001604052806000815250611353565b8061132f846121a1565b600b60405160200161134393929190612fe9565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113845760405162461bcd60e51b8152600401610945906131c1565b600f55565b8060008111801561139c57506012548111155b6113b85760405162461bcd60e51b815260040161094590613193565b601054816113c560085490565b6113cf9190613275565b11156113ed5760405162461bcd60e51b8152600401610945906131f6565b601454610100900460ff166002146114475760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632053616c65206973206e6f74206163746976652e0000000000006044820152606401610945565b6114518383611f82565b610a7b3383612001565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146114b35760405162461bcd60e51b8152600401610945906131c1565b601154826114c060095490565b6114ca9190613275565b11156114e85760405162461bcd60e51b815260040161094590613193565b601054826114f560085490565b6114ff9190613275565b111561151d5760405162461bcd60e51b8152600401610945906131f6565b6115278183612001565b816009600001600082825461153c9190613275565b90915550505050565b8260008111801561155857506012548111155b6115745760405162461bcd60e51b815260040161094590613193565b6010548161158160085490565b61158b9190613275565b11156115a95760405162461bcd60e51b8152600401610945906131f6565b601454610100900460ff16156116015760405162461bcd60e51b815260206004820152601860248201527f46726565206d696e74206973206e6f74206163746976652e00000000000000006044820152606401610945565b6011548461160e60095490565b6116189190613275565b11156116365760405162461bcd60e51b815260040161094590613193565b60155461164f90849084906001600160a01b0316611eb5565b61169b5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f74206f6e2066726565204c69737400000000006044820152606401610945565b6116a53385612001565b33600090815260176020526040812080548692906116c4908490613275565b9091555050600980548591906000906116de908490613275565b909155505050505050565b6006546001600160a01b031633146117135760405162461bcd60e51b8152600401610945906131c1565b6001600160a01b0381166117785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610945565b6111548161203e565b6006546001600160a01b031633146117ab5760405162461bcd60e51b8152600401610945906131c1565b600d54156119a657600f54600e546040516370a0823160e01b8152306004820152600092839290916001600160a01b038616906370a082319060240160206040518083038186803b1580156117ff57600080fd5b505afa158015611813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118379190612ef0565b61184191906132a1565b61184b919061328d565b9050600d548110156118ed576040516370a0823160e01b81523060048201526001600160a01b038416906370a082319060240160206040518083038186803b15801561189657600080fd5b505afa1580156118aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ce9190612ef0565b915080600d60008282546118e291906132c0565b909155506119129050565b600e54600d54600f5461190091906132a1565b61190a919061328d565b6000600d5591505b60405163a9059cbb60e01b81527389a31e7658510cfd960067cb97ddcc7ece3c70c06004820152602481018390526001600160a01b0384169063a9059cbb90604401602060405180830381600087803b15801561196e57600080fd5b505af1158015611982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111da9190612dce565b806001600160a01b031663a9059cbb6119c76006546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015611a0657600080fd5b505afa158015611a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3e9190612ef0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611a8457600080fd5b505af1158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190612dce565b6013546001600160a01b038216600090815260176020526040812054909190611ae59085613275565b1115611af357506000610838565b60005b601654811015611bc657600060168281548110611b1557611b156133af565b60009182526020822001546040516370a0823160e01b81526001600160a01b038781166004830152909116925082906370a082319060240160206040518083038186803b158015611b6557600080fd5b505afa158015611b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9d9190612ef0565b90508015611bb15760019350505050610838565b50508080611bbe9061333e565b915050611af6565b5060009392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c0582610ea0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cb75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610945565b6000611cc283610ea0565b9050806001600160a01b0316846001600160a01b03161480611cfd5750836001600160a01b0316611cf2846108d0565b6001600160a01b0316145b80611d0d5750611d0d818561145b565b949350505050565b826001600160a01b0316611d2882610ea0565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610945565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610945565b611dfd600082611bd0565b6001600160a01b0383166000908152600360205260408120805460019290611e269084906132c0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e54908490613275565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611f486040805130606090811b6bffffffffffffffffffffffff199081166020808501919091523390921b166034830152825160288184030181526048830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060688401526084808401919091528351808403909101815260a4909201909252805191012090565b9050848114611f5b576000915050611353565b6001600160a01b038316611f6f868661229f565b6001600160a01b03161495945050505050565b81611fda5780600e54611f9591906132a1565b341015610abd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610945565b610abd333083600f54611fed91906132a1565b6007546001600160a01b03169291906122c3565b60005b81811015610a7b5761201a600880546001019055565b61202c8361202760085490565b61231d565b806120368161333e565b915050612004565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120f25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610945565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61216a848484611d15565b61217684848484612337565b6111da5760405162461bcd60e51b815260040161094590613141565b6060600a805461084d90613303565b6060816121c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ef57806121d98161333e565b91506121e89050600a8361328d565b91506121c9565b60008167ffffffffffffffff81111561220a5761220a6133c5565b6040519080825280601f01601f191660200182016040528015612234576020820181803683370190505b5090505b8415611d0d576122496001836132c0565b9150612256600a86613359565b612261906030613275565b60f81b818381518110612276576122766133af565b60200101906001600160f81b031916908160001a905350612298600a8661328d565b9450612238565b60008060006122ae8585612444565b915091506122bb816124b4565b509392505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526111da90859061266f565b610abd828260405180602001604052806000815250612741565b60006001600160a01b0384163b1561243957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061237b9033908990889088906004016130ad565b602060405180830381600087803b15801561239557600080fd5b505af19250505080156123c5575060408051601f3d908101601f191682019092526123c291810190612e71565b60015b61241f573d8080156123f3576040519150601f19603f3d011682016040523d82523d6000602084013e6123f8565b606091505b5080516124175760405162461bcd60e51b815260040161094590613141565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b506001949350505050565b60008082516041141561247b5760208301516040840151606085015160001a61246f87828585612774565b945094505050506124ad565b8251604014156124a5576020830151604084015161249a868383612861565b9350935050506124ad565b506000905060025b9250929050565b60008160048111156124c8576124c8613399565b14156124d15750565b60018160048111156124e5576124e5613399565b14156125335760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610945565b600281600481111561254757612547613399565b14156125955760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610945565b60038160048111156125a9576125a9613399565b14156126025760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610945565b600481600481111561261657612616613399565b14156111545760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610945565b60006126c4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128909092919063ffffffff16565b805190915015610a7b57808060200190518101906126e29190612dce565b610a7b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610945565b61274b838361289f565b6127586000848484612337565b610a7b5760405162461bcd60e51b815260040161094590613141565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156127ab5750600090506003612858565b8460ff16601b141580156127c357508460ff16601c14155b156127d45750600090506004612858565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612828573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661285157600060019250925050612858565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161288287828885612774565b935093505050935093915050565b6060611d0d84846000856129e1565b6001600160a01b0382166128f55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610945565b6000818152600260205260409020546001600160a01b03161561295a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610945565b6001600160a01b0382166000908152600360205260408120805460019290612983908490613275565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612a425760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610945565b843b612a905760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610945565b600080866001600160a01b03168587604051612aac9190612fcd565b60006040518083038185875af1925050503d8060008114612ae9576040519150601f19603f3d011682016040523d82523d6000602084013e612aee565b606091505b5091509150612afe828286612b09565b979650505050505050565b60608315612b18575081611353565b825115612b285782518084602001fd5b8160405162461bcd60e51b8152600401610945919061312e565b828054612b4e90613303565b90600052602060002090601f016020900481019282612b705760008555612bb6565b82601f10612b8957805160ff1916838001178555612bb6565b82800160010185558215612bb6579182015b82811115612bb6578251825591602001919060010190612b9b565b50612bc2929150612bc6565b5090565b5b80821115612bc25760008155600101612bc7565b600067ffffffffffffffff80841115612bf657612bf66133c5565b604051601f8501601f19908116603f01168101908282118183101715612c1e57612c1e6133c5565b81604052809350858152868686011115612c3757600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c6257600080fd5b61135383833560208501612bdb565b600060208284031215612c8357600080fd5b8135611353816133db565b60008060408385031215612ca157600080fd5b8235612cac816133db565b91506020830135612cbc816133db565b809150509250929050565b600080600060608486031215612cdc57600080fd5b8335612ce7816133db565b92506020840135612cf7816133db565b929592945050506040919091013590565b60008060008060808587031215612d1e57600080fd5b8435612d29816133db565b93506020850135612d39816133db565b925060408501359150606085013567ffffffffffffffff811115612d5c57600080fd5b612d6887828801612c51565b91505092959194509250565b60008060408385031215612d8757600080fd5b8235612d92816133db565b91506020830135612cbc816133f0565b60008060408385031215612db557600080fd5b8235612dc0816133db565b946020939093013593505050565b600060208284031215612de057600080fd5b8151611353816133f0565b60008060408385031215612dfe57600080fd5b8235612dc0816133f0565b60008060008060808587031215612e1f57600080fd5b8435612e2a816133f0565b93506020850135925060408501359150606085013567ffffffffffffffff811115612d5c57600080fd5b600060208284031215612e6657600080fd5b8135611353816133fe565b600060208284031215612e8357600080fd5b8151611353816133fe565b600060208284031215612ea057600080fd5b813567ffffffffffffffff811115612eb757600080fd5b8201601f81018413612ec857600080fd5b611d0d84823560208401612bdb565b600060208284031215612ee957600080fd5b5035919050565b600060208284031215612f0257600080fd5b5051919050565b60008060408385031215612f1c57600080fd5b823591506020830135612cbc816133db565b600080600060608486031215612f4357600080fd5b8335925060208401359150604084013567ffffffffffffffff811115612f6857600080fd5b612f7486828701612c51565b9150509250925092565b600060208284031215612f9057600080fd5b813560ff8116811461135357600080fd5b60008151808452612fb98160208601602086016132d7565b601f01601f19169290920160200192915050565b60008251612fdf8184602087016132d7565b9190910192915050565b600084516020612ffc8285838a016132d7565b85519184019161300f8184848a016132d7565b8554920191600090600181811c908083168061302c57607f831692505b85831081141561304a57634e487b7160e01b85526022600452602485fd5b80801561305e576001811461306f5761309c565b60ff1985168852838801955061309c565b60008b81526020902060005b858110156130945781548a82015290840190880161307b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130e090830184612fa1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561312257835183529284019291840191600101613106565b50909695505050505050565b6020815260006113536020830184612fa1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156132885761328861336d565b500190565b60008261329c5761329c613383565b500490565b60008160001904831182151516156132bb576132bb61336d565b500290565b6000828210156132d2576132d261336d565b500390565b60005b838110156132f25781810151838201526020016132da565b838111156111da5750506000910152565b600181811c9082168061331757607f821691505b6020821081141561333857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133525761335261336d565b5060010190565b60008261336857613368613383565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115457600080fd5b801515811461115457600080fd5b6001600160e01b03198116811461115457600080fdfea26469706673582212206a8d6b2fe2a731c6418d3f214f92cf8607740708831d1c080181d804988d9ada64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000f4d2888d29d722226fafa5d9b24f9164c092421e000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000ac9db91e958d418bf83781ecadf0431601c48193000000000000000000000000fd3c3717164831916e6d2d7cdde9904dd793ec84000000000000000000000000123b30e25973fecd8354dd5f41cc45a3065ef88c0000000000000000000000001fec856e25f757fed06eb90548b0224e910957380000000000000000000000008a90cab2b38dba80c64b7734e58ee1db38b8992e000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa000000000000000000000000063fa29fec10c997851ccd2466dad20e51b17c8af00000000000000000000000060e4d786628fea6478f785a6d7e704777c86a7c60000000000000000000000001a92f7381b9f03921564a437210bb9396471050c00000000000000000000000029714cafe792ef8b8c649451d13c89e21a0d7f5b

-----Decoded View---------------
Arg [0] : _freeNFTAddress (address[]): 0xAC9DB91e958D418bF83781EcadF0431601c48193,0xFD3C3717164831916E6D2D7cdde9904dd793eC84,0x123b30E25973FeCd8354dd5f41Cc45A3065eF88C,0x1FEC856e25F757FeD06eB90548B0224E91095738,0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e,0xc8adFb4D437357D0A656D4e62fd9a6D22e401aa0,0x63FA29Fec10C997851CCd2466Dad20E51B17C8aF,0x60E4d786628Fea6478F785A6d7e704777c86a7c6,0x1A92f7381B9F03921564a437210bB9396471050C,0x29714cAfE792EF8B8c649451d13c89E21A0D7F5b
Arg [1] : _paymentToken (address): 0xf4d2888d29D722226FafA5d9B24F9164c092421E

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000f4d2888d29d722226fafa5d9b24f9164c092421e
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000ac9db91e958d418bf83781ecadf0431601c48193
Arg [4] : 000000000000000000000000fd3c3717164831916e6d2d7cdde9904dd793ec84
Arg [5] : 000000000000000000000000123b30e25973fecd8354dd5f41cc45a3065ef88c
Arg [6] : 0000000000000000000000001fec856e25f757fed06eb90548b0224e91095738
Arg [7] : 0000000000000000000000008a90cab2b38dba80c64b7734e58ee1db38b8992e
Arg [8] : 000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa0
Arg [9] : 00000000000000000000000063fa29fec10c997851ccd2466dad20e51b17c8af
Arg [10] : 00000000000000000000000060e4d786628fea6478f785a6d7e704777c86a7c6
Arg [11] : 0000000000000000000000001a92f7381b9f03921564a437210bb9396471050c
Arg [12] : 00000000000000000000000029714cafe792ef8b8c649451d13c89e21a0d7f5b


Deployed Bytecode Sourcemap

56282:7703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41695:305;;;;;;;;;;-1:-1:-1;41695:305:0;;;;;:::i;:::-;;:::i;:::-;;;12334:14:1;;12327:22;12309:41;;12297:2;12282:18;41695:305:0;;;;;;;;42640:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44199:221::-;;;;;;;;;;-1:-1:-1;44199:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10336:32:1;;;10318:51;;10306:2;10291:18;44199:221:0;10172:203:1;43722:411:0;;;;;;;;;;-1:-1:-1;43722:411:0;;;;;:::i;:::-;;:::i;:::-;;59644:102;;;;;;;;;;-1:-1:-1;59644:102:0;;;;;:::i;:::-;;:::i;63271:89::-;;;;;;;;;;;;;:::i;:::-;;;25257:25:1;;;25245:2;25230:18;63271:89:0;25111:177:1;44949:339:0;;;;;;;;;;-1:-1:-1;44949:339:0;;;;;:::i;:::-;;:::i;56456:26::-;;;;;;;;;;-1:-1:-1;56456:26:0;;;;-1:-1:-1;;;;;56456:26:0;;;59455:75;;;;;;;;;;;;;:::i;45359:185::-;;;;;;;;;;-1:-1:-1;45359:185:0;;;;;:::i;:::-;;:::i;63366:614::-;;;;;;;;;;-1:-1:-1;63366:614:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59355:92::-;;;;;;;;;;-1:-1:-1;59355:92:0;;;;;:::i;:::-;;:::i;56828:28::-;;;;;;;;;;;;;;;;62437:374;;;;;;:::i;:::-;;:::i;59117:134::-;;;;;;;;;;-1:-1:-1;59117:134:0;;;;;:::i;:::-;;:::i;56947:28::-;;;;;;;;;;-1:-1:-1;56947:28:0;;;;;;;;56980:29;;;;;;;;;;-1:-1:-1;56980:29:0;;;;;;;;;;;;;;25465:4:1;25453:17;;;25435:36;;25423:2;25408:18;56980:29:0;25293:184:1;56600:33:0;;;;;;;;;;;;;:::i;56710:36::-;;;;;;;;;;;;;;;;56567:28;;;;;;;;;;;;;:::i;42334:239::-;;;;;;;;;;-1:-1:-1;42334:239:0;;;;;:::i;:::-;;:::i;42064:208::-;;;;;;;;;;-1:-1:-1;42064:208:0;;;;;:::i;:::-;;:::i;18690:103::-;;;;;;;;;;;;;:::i;56678:27::-;;;;;;;;;;;;;;;;59536:102;;;;;;;;;;-1:-1:-1;59536:102:0;;;;;:::i;:::-;;:::i;59754:555::-;;;;;;;;;;;;;:::i;18039:87::-;;;;;;;;;;-1:-1:-1;18112:6:0;;-1:-1:-1;;;;;18112:6:0;18039:87;;57079:31;;;;;;;;;;-1:-1:-1;57079:31:0;;;;;:::i;:::-;;:::i;56861:38::-;;;;;;;;;;;;;;;;42809:104;;;;;;;;;;;;;:::i;56904:36::-;;;;;;;;;;;;;;;;44492:155;;;;;;;;;;-1:-1:-1;44492:155:0;;;;;:::i;:::-;;:::i;56638:31::-;;;;;;;;;;;;;:::i;45615:328::-;;;;;;;;;;-1:-1:-1;45615:328:0;;;;;:::i;:::-;;:::i;57117:47::-;;;;;;;;;;-1:-1:-1;57117:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;62817:448;;;;;;;;;;-1:-1:-1;62817:448:0;;;;;:::i;:::-;;:::i;59257:92::-;;;;;;;;;;-1:-1:-1;59257:92:0;;;;;:::i;:::-;;:::i;56792:31::-;;;;;;;;;;;;;;;;61851:240;;;;;;:::i;:::-;;:::i;44718:164::-;;;;;;;;;;-1:-1:-1;44718:164:0;;;;;:::i;:::-;;:::i;62097:334::-;;;;;;;;;;-1:-1:-1;62097:334:0;;;;;:::i;:::-;;:::i;61354:491::-;;;;;;;;;;-1:-1:-1;61354:491:0;;;;;:::i;:::-;;:::i;18948:201::-;;;;;;;;;;-1:-1:-1;18948:201:0;;;;;:::i;:::-;;:::i;56751:35::-;;;;;;;;;;;;;;;;60315:577;;;;;;;;;;-1:-1:-1;60315:577:0;;;;;:::i;:::-;;:::i;60911:437::-;;;;;;;;;;-1:-1:-1;60911:437:0;;;;;:::i;:::-;;:::i;41695:305::-;41797:4;-1:-1:-1;;;;;;41834:40:0;;-1:-1:-1;;;41834:40:0;;:105;;-1:-1:-1;;;;;;;41891:48:0;;-1:-1:-1;;;41891:48:0;41834:105;:158;;;-1:-1:-1;;;;;;;;;;34573:40:0;;;41956:36;41814:178;41695:305;-1:-1:-1;;41695:305:0:o;42640:100::-;42694:13;42727:5;42720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42640:100;:::o;44199:221::-;44275:7;47542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47542:16:0;44295:73;;;;-1:-1:-1;;;44295:73:0;;21068:2:1;44295:73:0;;;21050:21:1;21107:2;21087:18;;;21080:30;21146:34;21126:18;;;21119:62;-1:-1:-1;;;21197:18:1;;;21190:42;21249:19;;44295:73:0;;;;;;;;;-1:-1:-1;44388:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44388:24:0;;44199:221::o;43722:411::-;43803:13;43819:23;43834:7;43819:14;:23::i;:::-;43803:39;;43867:5;-1:-1:-1;;;;;43861:11:0;:2;-1:-1:-1;;;;;43861:11:0;;;43853:57;;;;-1:-1:-1;;;43853:57:0;;22668:2:1;43853:57:0;;;22650:21:1;22707:2;22687:18;;;22680:30;22746:34;22726:18;;;22719:62;-1:-1:-1;;;22797:18:1;;;22790:31;22838:19;;43853:57:0;22466:397:1;43853:57:0;16843:10;-1:-1:-1;;;;;43945:21:0;;;;:62;;-1:-1:-1;43970:37:0;43987:5;16843:10;44718:164;:::i;43970:37::-;43923:168;;;;-1:-1:-1;;;43923:168:0;;18349:2:1;43923:168:0;;;18331:21:1;18388:2;18368:18;;;18361:30;18427:34;18407:18;;;18400:62;18498:26;18478:18;;;18471:54;18542:19;;43923:168:0;18147:420:1;43923:168:0;44104:21;44113:2;44117:7;44104:8;:21::i;:::-;43792:341;43722:411;;:::o;59644:102::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59718:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59644:102:::0;:::o;63271:89::-;63315:7;63338:16;:6;3893:14;;3801:114;63338:16;63331:23;;63271:89;:::o;44949:339::-;45144:41;16843:10;45177:7;45144:18;:41::i;:::-;45136:103;;;;-1:-1:-1;;;45136:103:0;;;;;;;:::i;:::-;45252:28;45262:4;45268:2;45272:7;45252:9;:28::i;59455:75::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59516:8:::1;::::0;;-1:-1:-1;;59504:20:0;::::1;59516:8;::::0;;::::1;59515:9;59504:20;::::0;;59455:75::o;45359:185::-;45497:39;45514:4;45520:2;45524:7;45497:39;;;;;;;;;;;;:16;:39::i;63366:614::-;63426:16;63454:23;63480:17;63490:6;63480:9;:17::i;:::-;63454:43;;63504:30;63551:15;63537:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63537:30:0;-1:-1:-1;63504:63:0;-1:-1:-1;63599:1:0;63574:22;63643:303;63668:15;63650;:33;:64;;;;;63705:9;;63687:14;:27;;63650:64;63643:303;;;63725:25;63753:23;63761:14;63753:7;:23::i;:::-;63725:51;;63810:6;-1:-1:-1;;;;;63789:27:0;:17;-1:-1:-1;;;;;63789:27:0;;63785:129;;;63862:14;63829:13;63843:15;63829:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;63887:17;;;;:::i;:::-;;;;63785:129;63922:16;;;;:::i;:::-;;;;63716:230;63643:303;;;-1:-1:-1;63961:13:0;;63366:614;-1:-1:-1;;;;63366:614:0:o;59355:92::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59420:12:::1;:21:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;59420:21:0;;::::1;::::0;;;::::1;::::0;;59355:92::o;62437:374::-;62563:11;57684:1;57670:11;:15;:52;;;;;57704:18;;57689:11;:33;;57670:52;57662:85;;;;-1:-1:-1;;;57662:85:0;;;;;;;:::i;:::-;57796:9;;57781:11;57762:16;:6;3893:14;;3801:114;57762:16;:30;;;;:::i;:::-;:43;;57754:76;;;;-1:-1:-1;;;57754:76:0;;;;;;;:::i;:::-;62591:12:::1;::::0;::::1;;::::0;;::::1;;;:17;62583:57;;;::::0;-1:-1:-1;;;62583:57:0;;20359:2:1;62583:57:0::1;::::0;::::1;20341:21:1::0;20398:2;20378:18;;;20371:30;20437:29;20417:18;;;20410:57;20484:18;;62583:57:0::1;20157:351:1::0;62583:57:0::1;62655:37;62666:5;62673:10;62685:6;;;;;;;;;-1:-1:-1::0;;;;;62685:6:0::1;62655:10;:37::i;:::-;62647:80;;;::::0;-1:-1:-1;;;62647:80:0;;23070:2:1;62647:80:0::1;::::0;::::1;23052:21:1::0;23109:2;23089:18;;;23082:30;23148:32;23128:18;;;23121:60;23198:18;;62647:80:0::1;22868:354:1::0;62647:80:0::1;62734:30;62744:7;62752:11;62734:9;:30::i;:::-;62771:34;62781:10;62793:11;62771:9;:34::i;:::-;62437:374:::0;;;;;:::o;59117:134::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59207:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;56600:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56567:28::-;;;;;;;:::i;42334:239::-;42406:7;42442:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42442:16:0;42477:19;42469:73;;;;-1:-1:-1;;;42469:73:0;;19185:2:1;42469:73:0;;;19167:21:1;19224:2;19204:18;;;19197:30;19263:34;19243:18;;;19236:62;-1:-1:-1;;;19314:18:1;;;19307:39;19363:19;;42469:73:0;18983:405:1;42064:208:0;42136:7;-1:-1:-1;;;;;42164:19:0;;42156:74;;;;-1:-1:-1;;;42156:74:0;;18774:2:1;42156:74:0;;;18756:21:1;18813:2;18793:18;;;18786:30;18852:34;18832:18;;;18825:62;-1:-1:-1;;;18903:18:1;;;18896:40;18953:19;;42156:74:0;18572:406:1;42156:74:0;-1:-1:-1;;;;;;42248:16:0;;;;;:9;:16;;;;;;;42064:208::o;18690:103::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;18755:30:::1;18782:1;18755:18;:30::i;:::-;18690:103::o:0;59536:102::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59610:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;59754:555::-:0;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59808:2:::1;::::0;:6;59805:499:::1;;59824:15;59878:2;;59854:21;:26;59850:198;;;59907:21;59897:31;;59949:21;59943:2;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;59850:198:0::1;::::0;-1:-1:-1;59850:198:0::1;;-1:-1:-1::0;60013:2:0::1;::::0;;60035:1:::1;60030:6:::0;;;59850:198:::1;60072:76;::::0;60059:7:::1;::::0;60080:42:::1;::::0;60136:7;;60059;60072:76;60059:7;60072:76;60136:7;60080:42;60072:76:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60058:90;;;60167:2;60159:11;;;::::0;::::1;59805:499;60204:7;60225;18112:6:::0;;-1:-1:-1;;;;;18112:6:0;;18039:87;60225:7:::1;-1:-1:-1::0;;;;;60217:21:0::1;60246;60217:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60203:69;;;60291:2;60283:11;;;::::0;::::1;;60192:112;59754:555::o:0;57079:31::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57079:31:0;;-1:-1:-1;57079:31:0;:::o;42809:104::-;42865:13;42898:7;42891:14;;;;;:::i;44492:155::-;44587:52;16843:10;44620:8;44630;44587:18;:52::i;56638:31::-;;;;;;;:::i;45615:328::-;45790:41;16843:10;45823:7;45790:18;:41::i;:::-;45782:103;;;;-1:-1:-1;;;45782:103:0;;;;;;;:::i;:::-;45896:39;45910:4;45916:2;45920:7;45929:5;45896:13;:39::i;:::-;45615:328;;;;:::o;62817:448::-;47518:4;47542:16;;;:7;:16;;;;;;62891:13;;-1:-1:-1;;;;;47542:16:0;62916:77;;;;-1:-1:-1;;;62916:77:0;;22252:2:1;62916:77:0;;;22234:21:1;22291:2;22271:18;;;22264:30;22330:34;22310:18;;;22303:62;-1:-1:-1;;;22381:18:1;;;22374:45;22436:19;;62916:77:0;22050:411:1;62916:77:0;63006:8;;;;63002:64;;63041:17;63034:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62817:448;;;:::o;63002:64::-;63074:28;63105:10;:8;:10::i;:::-;63074:41;;63160:1;63135:14;63129:28;:32;:130;;;;;;;;;;;;;;;;;63197:14;63213:19;:8;:17;:19::i;:::-;63234:9;63180:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63129:130;63122:137;62817:448;-1:-1:-1;;;62817:448:0:o;59257:92::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;59323:9:::1;:20:::0;59257:92::o;61851:240::-;61930:11;57684:1;57670:11;:15;:52;;;;;57704:18;;57689:11;:33;;57670:52;57662:85;;;;-1:-1:-1;;;57662:85:0;;;;;;;:::i;:::-;57796:9;;57781:11;57762:16;:6;3893:14;;3801:114;57762:16;:30;;;;:::i;:::-;:43;;57754:76;;;;-1:-1:-1;;;57754:76:0;;;;;;;:::i;:::-;61958:12:::1;::::0;::::1;::::0;::::1;;;61974:1;61958:17;61950:57;;;::::0;-1:-1:-1;;;61950:57:0;;16818:2:1;61950:57:0::1;::::0;::::1;16800:21:1::0;16857:2;16837:18;;;16830:30;16896:28;16876:18;;;16869:56;16942:18;;61950:57:0::1;16616:350:1::0;61950:57:0::1;62014:30;62024:7;62032:11;62014:9;:30::i;:::-;62051:34;62061:10;62073:11;62051:9;:34::i;44718:164::-:0;-1:-1:-1;;;;;44839:25:0;;;44815:4;44839:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44718:164::o;62097:334::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;62231:7:::1;;62216:11;62193:20;:10;3893:14:::0;;3801:114;62193:20:::1;:34;;;;:::i;:::-;:45;;62185:78;;;;-1:-1:-1::0;;;62185:78:0::1;;;;;;;:::i;:::-;62312:9;;62297:11;62278:16;:6;3893:14:::0;;3801:114;62278:16:::1;:30;;;;:::i;:::-;:43;;62270:76;;;;-1:-1:-1::0;;;62270:76:0::1;;;;;;;:::i;:::-;62353:33;62363:9;62374:11;62353:9;:33::i;:::-;62414:11;62393:10;:17;;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;62097:334:0:o;61354:491::-;61455:11;57684:1;57670:11;:15;:52;;;;;57704:18;;57689:11;:33;;57670:52;57662:85;;;;-1:-1:-1;;;57662:85:0;;;;;;;:::i;:::-;57796:9;;57781:11;57762:16;:6;3893:14;;3801:114;57762:16;:30;;;;:::i;:::-;:43;;57754:76;;;;-1:-1:-1;;;57754:76:0;;;;;;;:::i;:::-;61487:12:::1;::::0;::::1;::::0;::::1;;;:17:::0;61479:54:::1;;;::::0;-1:-1:-1;;;61479:54:0;;20715:2:1;61479:54:0::1;::::0;::::1;20697:21:1::0;20754:2;20734:18;;;20727:30;20793:26;20773:18;;;20766:54;20837:18;;61479:54:0::1;20513:348:1::0;61479:54:0::1;61586:7;;61571:11;61548:20;:10;3893:14:::0;;3801:114;61548:20:::1;:34;;;;:::i;:::-;:45;;61540:78;;;;-1:-1:-1::0;;;61540:78:0::1;;;;;;;:::i;:::-;61663:11;::::0;61633:42:::1;::::0;61644:5;;61651:10;;-1:-1:-1;;;;;61663:11:0::1;61633:10;:42::i;:::-;61625:82;;;::::0;-1:-1:-1;;;61625:82:0;;17993:2:1;61625:82:0::1;::::0;::::1;17975:21:1::0;18032:2;18012:18;;;18005:30;18071:29;18051:18;;;18044:57;18118:18;;61625:82:0::1;17791:351:1::0;61625:82:0::1;61720:34;61730:10;61742:11;61720:9;:34::i;:::-;61774:10;61761:24;::::0;;;:12:::1;:24;::::0;;;;:39;;61789:11;;61761:24;:39:::1;::::0;61789:11;;61761:39:::1;:::i;:::-;::::0;;;-1:-1:-1;;61807:10:0::1;:32:::0;;61828:11;;61807:10;:17:::1;::::0;:32:::1;::::0;61828:11;;61807:32:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;61354:491:0:o;18948:201::-;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19037:22:0;::::1;19029:73;;;::::0;-1:-1:-1;;;19029:73:0;;14543:2:1;19029:73:0::1;::::0;::::1;14525:21:1::0;14582:2;14562:18;;;14555:30;14621:34;14601:18;;;14594:62;-1:-1:-1;;;14672:18:1;;;14665:36;14718:19;;19029:73:0::1;14341:402:1::0;19029:73:0::1;19113:28;19132:8;19113:18;:28::i;60315:577::-:0;18112:6;;-1:-1:-1;;;;;18112:6:0;16843:10;18259:23;18251:68;;;;-1:-1:-1;;;18251:68:0;;;;;;;:::i;:::-;60381:2:::1;::::0;:6;60378:509:::1;;60491:9;::::0;60480:7:::1;::::0;60447:30:::1;::::0;-1:-1:-1;;;60447:30:0;;60471:4:::1;60447:30;::::0;::::1;10318:51:1::0;60399:15:0::1;::::0;;;60491:9;;-1:-1:-1;;;;;60447:15:0;::::1;::::0;::::1;::::0;10291:18:1;;60447:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;;;:::i;:::-;60446:54;;;;:::i;:::-;60425:75;;60529:2;;60515:10;:16;60511:210;;;60558:30;::::0;-1:-1:-1;;;60558:30:0;;60582:4:::1;60558:30;::::0;::::1;10318:51:1::0;-1:-1:-1;;;;;60558:15:0;::::1;::::0;::::1;::::0;10291:18:1;;60558:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60548:40;;60609:10;60603:2;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;60511:210:0::1;::::0;-1:-1:-1;60511:210:0::1;;60681:7;;60675:2;;60663:9;;:14;;;;:::i;:::-;60662:26;;;;:::i;:::-;60708:1;60703:2;:6:::0;60652:36;-1:-1:-1;60511:210:0::1;60732:67;::::0;-1:-1:-1;;;60732:67:0;;60747:42:::1;60732:67;::::0;::::1;11427:51:1::0;11494:18;;;11487:34;;;-1:-1:-1;;;;;60732:14:0;::::1;::::0;::::1;::::0;11400:18:1;;60732:67:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;60378:509::-;60824:5;-1:-1:-1::0;;;;;60824:14:0::1;;60839:7;18112:6:::0;;-1:-1:-1;;;;;18112:6:0;;18039:87;60839:7:::1;60848:30;::::0;-1:-1:-1;;;60848:30:0;;60872:4:::1;60848:30;::::0;::::1;10318:51:1::0;-1:-1:-1;;;;;60848:15:0;::::1;::::0;::::1;::::0;10291:18:1;;60848:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60824:55;::::0;-1:-1:-1;;;;;;60824:55:0::1;::::0;;;;;;-1:-1:-1;;;;;11445:32:1;;;60824:55:0::1;::::0;::::1;11427:51:1::0;11494:18;;;11487:34;11400:18;;60824:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;60911:437::-:0;61052:17;;-1:-1:-1;;;;;61028:21:0;;60997:4;61028:21;;;:12;:21;;;;;;60997:4;;61052:17;61014:35;;:11;:35;:::i;:::-;:55;61010:79;;;-1:-1:-1;61084:5:0;61077:12;;61010:79;61101:9;61096:228;61120:14;:21;61116:25;;61096:228;;;61158:13;61182:14;61197:1;61182:17;;;;;;;;:::i;:::-;;;;;;;;;;61231:24;;-1:-1:-1;;;61231:24:0;;-1:-1:-1;;;;;10336:32:1;;;61231:24:0;;;10318:51:1;61182:17:0;;;;-1:-1:-1;61182:17:0;;61231:15;;10291:18:1;;61231:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61209:46;-1:-1:-1;61267:15:0;;61264:53;;61303:4;61296:11;;;;;;;61264:53;61149:175;;61143:4;;;;;:::i;:::-;;;;61096:228;;;-1:-1:-1;61337:5:0;;60911:437;-1:-1:-1;;;60911:437:0:o;51435:174::-;51510:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51510:29:0;-1:-1:-1;;;;;51510:29:0;;;;;;;;:24;;51564:23;51510:24;51564:14;:23::i;:::-;-1:-1:-1;;;;;51555:46:0;;;;;;;;;;;51435:174;;:::o;47747:348::-;47840:4;47542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47542:16:0;47857:73;;;;-1:-1:-1;;;47857:73:0;;17580:2:1;47857:73:0;;;17562:21:1;17619:2;17599:18;;;17592:30;17658:34;17638:18;;;17631:62;-1:-1:-1;;;17709:18:1;;;17702:42;17761:19;;47857:73:0;17378:408:1;47857:73:0;47941:13;47957:23;47972:7;47957:14;:23::i;:::-;47941:39;;48010:5;-1:-1:-1;;;;;47999:16:0;:7;-1:-1:-1;;;;;47999:16:0;;:51;;;;48043:7;-1:-1:-1;;;;;48019:31:0;:20;48031:7;48019:11;:20::i;:::-;-1:-1:-1;;;;;48019:31:0;;47999:51;:87;;;;48054:32;48071:5;48078:7;48054:16;:32::i;:::-;47991:96;47747:348;-1:-1:-1;;;;47747:348:0:o;50739:578::-;50898:4;-1:-1:-1;;;;;50871:31:0;:23;50886:7;50871:14;:23::i;:::-;-1:-1:-1;;;;;50871:31:0;;50863:85;;;;-1:-1:-1;;;50863:85:0;;21842:2:1;50863:85:0;;;21824:21:1;21881:2;21861:18;;;21854:30;21920:34;21900:18;;;21893:62;-1:-1:-1;;;21971:18:1;;;21964:39;22020:19;;50863:85:0;21640:405:1;50863:85:0;-1:-1:-1;;;;;50967:16:0;;50959:65;;;;-1:-1:-1;;;50959:65:0;;15656:2:1;50959:65:0;;;15638:21:1;15695:2;15675:18;;;15668:30;15734:34;15714:18;;;15707:62;-1:-1:-1;;;15785:18:1;;;15778:34;15829:19;;50959:65:0;15454:400:1;50959:65:0;51141:29;51158:1;51162:7;51141:8;:29::i;:::-;-1:-1:-1;;;;;51183:15:0;;;;;;:9;:15;;;;;:20;;51202:1;;51183:15;:20;;51202:1;;51183:20;:::i;:::-;;;;-1:-1:-1;;;;;;;51214:13:0;;;;;;:9;:13;;;;;:18;;51231:1;;51214:13;:18;;51231:1;;51214:18;:::i;:::-;;;;-1:-1:-1;;51243:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51243:21:0;-1:-1:-1;;;;;51243:21:0;;;;;;;;;51282:27;;51243:16;;51282:27;;;;;;;50739:578;;;:::o;57974:285::-;58076:4;58091:18;58112:20;59002:43;;;59027:4;7655:2:1;7651:15;;;-1:-1:-1;;7647:24:1;;;59002:43:0;;;;7635:37:1;;;;59034:10:0;7706:15:1;;;7702:24;7688:12;;;7681:46;59002:43:0;;;;;;;;;7743:12:1;;;59002:43:0;;58992:54;;;;;;9819:66:1;58908:151:0;;;9807:79:1;9902:12;;;;9895:28;;;;58908:151:0;;;;;;;;;;9939:12:1;;;;58908:151:0;;;58886:182;;;;;;58797:300;58112:20;58091:41;;58159:5;58145:10;:19;58141:60;;58186:5;58179:12;;;;;58141:60;-1:-1:-1;;;;;58216:37:0;;:25;:5;58230:10;58216:13;:25::i;:::-;-1:-1:-1;;;;;58216:37:0;;;57974:285;-1:-1:-1;;;;;57974:285:0:o;58266:311::-;58341:8;58337:235;;58390:11;58380:7;;:21;;;;:::i;:::-;58367:9;:34;;58359:66;;;;-1:-1:-1;;;58359:66:0;;24965:2:1;58359:66:0;;;24947:21:1;25004:2;24984:18;;;24977:30;-1:-1:-1;;;25023:18:1;;;25016:49;25082:18;;58359:66:0;24763:343:1;58337:235:0;58446:117;58486:10;58515:4;58543:11;58531:9;;:23;;;;:::i;:::-;58446:12;;-1:-1:-1;;;;;58446:12:0;;:117;;:29;:117::i;58587:204::-;58667:9;58662:124;58686:11;58682:1;:15;58662:124;;;58713:18;:6;4012:19;;4030:1;4012:19;;;3923:127;58713:18;58740:38;58750:9;58761:16;:6;3893:14;;3801:114;58761:16;58740:9;:38::i;:::-;58699:3;;;;:::i;:::-;;;;58662:124;;19309:191;19402:6;;;-1:-1:-1;;;;;19419:17:0;;;-1:-1:-1;;;;;;19419:17:0;;;;;;;19452:40;;19402:6;;;19419:17;19402:6;;19452:40;;19383:16;;19452:40;19372:128;19309:191;:::o;51751:315::-;51906:8;-1:-1:-1;;;;;51897:17:0;:5;-1:-1:-1;;;;;51897:17:0;;;51889:55;;;;-1:-1:-1;;;51889:55:0;;16061:2:1;51889:55:0;;;16043:21:1;16100:2;16080:18;;;16073:30;16139:27;16119:18;;;16112:55;16184:18;;51889:55:0;15859:349:1;51889:55:0;-1:-1:-1;;;;;51955:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51955:46:0;;;;;;;;;;52017:41;;12309::1;;;52017::0;;12282:18:1;52017:41:0;;;;;;;51751:315;;;:::o;46825:::-;46982:28;46992:4;46998:2;47002:7;46982:9;:28::i;:::-;47029:48;47052:4;47058:2;47062:7;47071:5;47029:22;:48::i;:::-;47021:111;;;;-1:-1:-1;;;47021:111:0;;;;;;;:::i;57864:104::-;57924:13;57953:9;57946:16;;;;;:::i;4759:723::-;4815:13;5036:10;5032:53;;-1:-1:-1;;5063:10:0;;;;;;;;;;;;-1:-1:-1;;;5063:10:0;;;;;4759:723::o;5032:53::-;5110:5;5095:12;5151:78;5158:9;;5151:78;;5184:8;;;;:::i;:::-;;-1:-1:-1;5207:10:0;;-1:-1:-1;5215:2:0;5207:10;;:::i;:::-;;;5151:78;;;5239:19;5271:6;5261:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5261:17:0;;5239:39;;5289:154;5296:10;;5289:154;;5323:11;5333:1;5323:11;;:::i;:::-;;-1:-1:-1;5392:10:0;5400:2;5392:5;:10;:::i;:::-;5379:24;;:2;:24;:::i;:::-;5366:39;;5349:6;5356;5349:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5349:56:0;;;;;;;;-1:-1:-1;5420:11:0;5429:2;5420:11;;:::i;:::-;;;5289:154;;10920:231;10998:7;11019:17;11038:18;11060:27;11071:4;11077:9;11060:10;:27::i;:::-;11018:69;;;;11098:18;11110:5;11098:11;:18::i;:::-;-1:-1:-1;11134:9:0;10920:231;-1:-1:-1;;;10920:231:0:o;28574:248::-;28745:68;;;-1:-1:-1;;;;;10638:15:1;;;28745:68:0;;;10620:34:1;10690:15;;10670:18;;;10663:43;10722:18;;;;10715:34;;;28745:68:0;;;;;;;;;;10555:18:1;;;;28745:68:0;;;;;;;;-1:-1:-1;;;;;28745:68:0;-1:-1:-1;;;28745:68:0;;;28718:96;;28738:5;;28718:19;:96::i;48437:110::-;48513:26;48523:2;48527:7;48513:26;;;;;;;;;;;;:9;:26::i;52631:799::-;52786:4;-1:-1:-1;;;;;52807:13:0;;20650:20;20698:8;52803:620;;52843:72;;-1:-1:-1;;;52843:72:0;;-1:-1:-1;;;;;52843:36:0;;;;;:72;;16843:10;;52894:4;;52900:7;;52909:5;;52843:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52843:72:0;;;;;;;;-1:-1:-1;;52843:72:0;;;;;;;;;;;;:::i;:::-;;;52839:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53085:13:0;;53081:272;;53128:60;;-1:-1:-1;;;53128:60:0;;;;;;;:::i;53081:272::-;53303:6;53297:13;53288:6;53284:2;53280:15;53273:38;52839:529;-1:-1:-1;;;;;;52966:51:0;-1:-1:-1;;;52966:51:0;;-1:-1:-1;52959:58:0;;52803:620;-1:-1:-1;53407:4:0;52631:799;;;;;;:::o;8810:1308::-;8891:7;8900:12;9125:9;:16;9145:2;9125:22;9121:990;;;9421:4;9406:20;;9400:27;9471:4;9456:20;;9450:27;9529:4;9514:20;;9508:27;9164:9;9500:36;9572:25;9583:4;9500:36;9400:27;9450;9572:10;:25::i;:::-;9565:32;;;;;;;;;9121:990;9619:9;:16;9639:2;9619:22;9615:496;;;9894:4;9879:20;;9873:27;9945:4;9930:20;;9924:27;9987:23;9998:4;9873:27;9924;9987:10;:23::i;:::-;9980:30;;;;;;;;9615:496;-1:-1:-1;10059:1:0;;-1:-1:-1;10063:35:0;9615:496;8810:1308;;;;;:::o;7081:643::-;7159:20;7150:5;:29;;;;;;;;:::i;:::-;;7146:571;;;7081:643;:::o;7146:571::-;7257:29;7248:5;:38;;;;;;;;:::i;:::-;;7244:473;;;7303:34;;-1:-1:-1;;;7303:34:0;;13411:2:1;7303:34:0;;;13393:21:1;13450:2;13430:18;;;13423:30;13489:26;13469:18;;;13462:54;13533:18;;7303:34:0;13209:348:1;7244:473:0;7368:35;7359:5;:44;;;;;;;;:::i;:::-;;7355:362;;;7420:41;;-1:-1:-1;;;7420:41:0;;13764:2:1;7420:41:0;;;13746:21:1;13803:2;13783:18;;;13776:30;13842:33;13822:18;;;13815:61;13893:18;;7420:41:0;13562:355:1;7355:362:0;7492:30;7483:5;:39;;;;;;;;:::i;:::-;;7479:238;;;7539:44;;-1:-1:-1;;;7539:44:0;;16415:2:1;7539:44:0;;;16397:21:1;16454:2;16434:18;;;16427:30;16493:34;16473:18;;;16466:62;-1:-1:-1;;;16544:18:1;;;16537:32;16586:19;;7539:44:0;16213:398:1;7479:238:0;7614:30;7605:5;:39;;;;;;;;:::i;:::-;;7601:116;;;7661:44;;-1:-1:-1;;;7661:44:0;;19595:2:1;7661:44:0;;;19577:21:1;19634:2;19614:18;;;19607:30;19673:34;19653:18;;;19646:62;-1:-1:-1;;;19724:18:1;;;19717:32;19766:19;;7661:44:0;19393:398:1;30928:716:0;31352:23;31378:69;31406:4;31378:69;;;;;;;;;;;;;;;;;31386:5;-1:-1:-1;;;;;31378:27:0;;;:69;;;;;:::i;:::-;31462:17;;31352:95;;-1:-1:-1;31462:21:0;31458:179;;31559:10;31548:30;;;;;;;;;;;;:::i;:::-;31540:85;;;;-1:-1:-1;;;31540:85:0;;24554:2:1;31540:85:0;;;24536:21:1;24593:2;24573:18;;;24566:30;24632:34;24612:18;;;24605:62;-1:-1:-1;;;24683:18:1;;;24676:40;24733:19;;31540:85:0;24352:406:1;48774:321:0;48904:18;48910:2;48914:7;48904:5;:18::i;:::-;48955:54;48986:1;48990:2;48994:7;49003:5;48955:22;:54::i;:::-;48933:154;;;;-1:-1:-1;;;48933:154:0;;;;;;;:::i;12419:1632::-;12550:7;;13484:66;13471:79;;13467:163;;;-1:-1:-1;13583:1:0;;-1:-1:-1;13587:30:0;13567:51;;13467:163;13644:1;:7;;13649:2;13644:7;;:18;;;;;13655:1;:7;;13660:2;13655:7;;13644:18;13640:102;;;-1:-1:-1;13695:1:0;;-1:-1:-1;13699:30:0;13679:51;;13640:102;13856:24;;;13839:14;13856:24;;;;;;;;;12588:25:1;;;12661:4;12649:17;;12629:18;;;12622:45;;;;12683:18;;;12676:34;;;12726:18;;;12719:34;;;13856:24:0;;12560:19:1;;13856:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13856:24:0;;-1:-1:-1;;13856:24:0;;;-1:-1:-1;;;;;;;13895:20:0;;13891:103;;13948:1;13952:29;13932:50;;;;;;;13891:103;14014:6;-1:-1:-1;14022:20:0;;-1:-1:-1;12419:1632:0;;;;;;;;:::o;11414:391::-;11528:7;;-1:-1:-1;;;;;11629:75:0;;11731:3;11727:12;;;11741:2;11723:21;11772:25;11783:4;11723:21;11792:1;11629:75;11772:10;:25::i;:::-;11765:32;;;;;;11414:391;;;;;;:::o;23133:229::-;23270:12;23302:52;23324:6;23332:4;23338:1;23341:12;23302:21;:52::i;49431:382::-;-1:-1:-1;;;;;49511:16:0;;49503:61;;;;-1:-1:-1;;;49503:61:0;;19998:2:1;49503:61:0;;;19980:21:1;;;20017:18;;;20010:30;20076:34;20056:18;;;20049:62;20128:18;;49503:61:0;19796:356:1;49503:61:0;47518:4;47542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47542:16:0;:30;49575:58;;;;-1:-1:-1;;;49575:58:0;;14950:2:1;49575:58:0;;;14932:21:1;14989:2;14969:18;;;14962:30;15028;15008:18;;;15001:58;15076:18;;49575:58:0;14748:352:1;49575:58:0;-1:-1:-1;;;;;49704:13:0;;;;;;:9;:13;;;;;:18;;49721:1;;49704:13;:18;;49721:1;;49704:18;:::i;:::-;;;;-1:-1:-1;;49733:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49733:21:0;-1:-1:-1;;;;;49733:21:0;;;;;;;;49772:33;;49733:16;;;49772:33;;49733:16;;49772:33;49431:382;;:::o;24253:510::-;24423:12;24481:5;24456:21;:30;;24448:81;;;;-1:-1:-1;;;24448:81:0;;17173:2:1;24448:81:0;;;17155:21:1;17212:2;17192:18;;;17185:30;17251:34;17231:18;;;17224:62;-1:-1:-1;;;17302:18:1;;;17295:36;17348:19;;24448:81:0;16971:402:1;24448:81:0;20650:20;;24540:60;;;;-1:-1:-1;;;24540:60:0;;24196:2:1;24540:60:0;;;24178:21:1;24235:2;24215:18;;;24208:30;24274:31;24254:18;;;24247:59;24323:18;;24540:60:0;23994:353:1;24540:60:0;24614:12;24628:23;24655:6;-1:-1:-1;;;;;24655:11:0;24674:5;24681:4;24655:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24613:73;;;;24704:51;24721:7;24730:10;24742:12;24704:16;:51::i;:::-;24697:58;24253:510;-1:-1:-1;;;;;;;24253:510:0:o;26939:712::-;27089:12;27118:7;27114:530;;;-1:-1:-1;27149:10:0;27142:17;;27114:530;27263:17;;:21;27259:374;;27461:10;27455:17;27522:15;27509:10;27505:2;27501:19;27494:44;27259:374;27604:12;27597:20;;-1:-1:-1;;;27597:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:55;;763:1;760;753:12;712:55;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:247::-;934:6;987:2;975:9;966:7;962:23;958:32;955:52;;;1003:1;1000;993:12;955:52;1042:9;1029:23;1061:31;1086:5;1061:31;:::i;1127:388::-;1195:6;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:52;;;1272:1;1269;1262:12;1224:52;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:1;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1127:388;;;;;:::o;1520:456::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1721:9;1708:23;1740:31;1765:5;1740:31;:::i;:::-;1790:5;-1:-1:-1;1847:2:1;1832:18;;1819:32;1860:33;1819:32;1860:33;:::i;:::-;1520:456;;1912:7;;-1:-1:-1;;;1966:2:1;1951:18;;;;1938:32;;1520:456::o;1981:665::-;2076:6;2084;2092;2100;2153:3;2141:9;2132:7;2128:23;2124:33;2121:53;;;2170:1;2167;2160:12;2121:53;2209:9;2196:23;2228:31;2253:5;2228:31;:::i;:::-;2278:5;-1:-1:-1;2335:2:1;2320:18;;2307:32;2348:33;2307:32;2348:33;:::i;:::-;2400:7;-1:-1:-1;2454:2:1;2439:18;;2426:32;;-1:-1:-1;2509:2:1;2494:18;;2481:32;2536:18;2525:30;;2522:50;;;2568:1;2565;2558:12;2522:50;2591:49;2632:7;2623:6;2612:9;2608:22;2591:49;:::i;:::-;2581:59;;;1981:665;;;;;;;:::o;2651:382::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;2971:30;2930:32;2971:30;:::i;3038:315::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3222:9;3209:23;3241:31;3266:5;3241:31;:::i;:::-;3291:5;3343:2;3328:18;;;;3315:32;;-1:-1:-1;;;3038:315:1:o;3358:245::-;3425:6;3478:2;3466:9;3457:7;3453:23;3449:32;3446:52;;;3494:1;3491;3484:12;3446:52;3526:9;3520:16;3545:28;3567:5;3545:28;:::i;3608:309::-;3673:6;3681;3734:2;3722:9;3713:7;3709:23;3705:32;3702:52;;;3750:1;3747;3740:12;3702:52;3789:9;3776:23;3808:28;3830:5;3808:28;:::i;3922:586::-;4014:6;4022;4030;4038;4091:3;4079:9;4070:7;4066:23;4062:33;4059:53;;;4108:1;4105;4098:12;4059:53;4147:9;4134:23;4166:28;4188:5;4166:28;:::i;:::-;4213:5;-1:-1:-1;4265:2:1;4250:18;;4237:32;;-1:-1:-1;4316:2:1;4301:18;;4288:32;;-1:-1:-1;4371:2:1;4356:18;;4343:32;4398:18;4387:30;;4384:50;;;4430:1;4427;4420:12;4513:245;4571:6;4624:2;4612:9;4603:7;4599:23;4595:32;4592:52;;;4640:1;4637;4630:12;4592:52;4679:9;4666:23;4698:30;4722:5;4698:30;:::i;4763:249::-;4832:6;4885:2;4873:9;4864:7;4860:23;4856:32;4853:52;;;4901:1;4898;4891:12;4853:52;4933:9;4927:16;4952:30;4976:5;4952:30;:::i;5282:450::-;5351:6;5404:2;5392:9;5383:7;5379:23;5375:32;5372:52;;;5420:1;5417;5410:12;5372:52;5460:9;5447:23;5493:18;5485:6;5482:30;5479:50;;;5525:1;5522;5515:12;5479:50;5548:22;;5601:4;5593:13;;5589:27;-1:-1:-1;5579:55:1;;5630:1;5627;5620:12;5579:55;5653:73;5718:7;5713:2;5700:16;5695:2;5691;5687:11;5653:73;:::i;5737:180::-;5796:6;5849:2;5837:9;5828:7;5824:23;5820:32;5817:52;;;5865:1;5862;5855:12;5817:52;-1:-1:-1;5888:23:1;;5737:180;-1:-1:-1;5737:180:1:o;5922:184::-;5992:6;6045:2;6033:9;6024:7;6020:23;6016:32;6013:52;;;6061:1;6058;6051:12;6013:52;-1:-1:-1;6084:16:1;;5922:184;-1:-1:-1;5922:184:1:o;6111:315::-;6179:6;6187;6240:2;6228:9;6219:7;6215:23;6211:32;6208:52;;;6256:1;6253;6246:12;6208:52;6292:9;6279:23;6269:33;;6352:2;6341:9;6337:18;6324:32;6365:31;6390:5;6365:31;:::i;6431:456::-;6517:6;6525;6533;6586:2;6574:9;6565:7;6561:23;6557:32;6554:52;;;6602:1;6599;6592:12;6554:52;6638:9;6625:23;6615:33;;6695:2;6684:9;6680:18;6667:32;6657:42;;6750:2;6739:9;6735:18;6722:32;6777:18;6769:6;6766:30;6763:50;;;6809:1;6806;6799:12;6763:50;6832:49;6873:7;6864:6;6853:9;6849:22;6832:49;:::i;:::-;6822:59;;;6431:456;;;;;:::o;6892:269::-;6949:6;7002:2;6990:9;6981:7;6977:23;6973:32;6970:52;;;7018:1;7015;7008:12;6970:52;7057:9;7044:23;7107:4;7100:5;7096:16;7089:5;7086:27;7076:55;;7127:1;7124;7117:12;7166:257;7207:3;7245:5;7239:12;7272:6;7267:3;7260:19;7288:63;7344:6;7337:4;7332:3;7328:14;7321:4;7314:5;7310:16;7288:63;:::i;:::-;7405:2;7384:15;-1:-1:-1;;7380:29:1;7371:39;;;;7412:4;7367:50;;7166:257;-1:-1:-1;;7166:257:1:o;7766:274::-;7895:3;7933:6;7927:13;7949:53;7995:6;7990:3;7983:4;7975:6;7971:17;7949:53;:::i;:::-;8018:16;;;;;7766:274;-1:-1:-1;;7766:274:1:o;8045:1527::-;8269:3;8307:6;8301:13;8333:4;8346:51;8390:6;8385:3;8380:2;8372:6;8368:15;8346:51;:::i;:::-;8460:13;;8419:16;;;;8482:55;8460:13;8419:16;8504:15;;;8482:55;:::i;:::-;8626:13;;8559:20;;;8599:1;;8686;8708:18;;;;8761;;;;8788:93;;8866:4;8856:8;8852:19;8840:31;;8788:93;8929:2;8919:8;8916:16;8896:18;8893:40;8890:167;;;-1:-1:-1;;;8956:33:1;;9012:4;9009:1;9002:15;9042:4;8963:3;9030:17;8890:167;9073:18;9100:110;;;;9224:1;9219:328;;;;9066:481;;9100:110;-1:-1:-1;;9135:24:1;;9121:39;;9180:20;;;;-1:-1:-1;9100:110:1;;9219:328;25555:1;25548:14;;;25592:4;25579:18;;9314:1;9328:169;9342:8;9339:1;9336:15;9328:169;;;9424:14;;9409:13;;;9402:37;9467:16;;;;9359:10;;9328:169;;;9332:3;;9528:8;9521:5;9517:20;9510:27;;9066:481;-1:-1:-1;9563:3:1;;8045:1527;-1:-1:-1;;;;;;;;;;;8045:1527:1:o;10760:488::-;-1:-1:-1;;;;;11029:15:1;;;11011:34;;11081:15;;11076:2;11061:18;;11054:43;11128:2;11113:18;;11106:34;;;11176:3;11171:2;11156:18;;11149:31;;;10954:4;;11197:45;;11222:19;;11214:6;11197:45;:::i;:::-;11189:53;10760:488;-1:-1:-1;;;;;;10760:488:1:o;11532:632::-;11703:2;11755:21;;;11825:13;;11728:18;;;11847:22;;;11674:4;;11703:2;11926:15;;;;11900:2;11885:18;;;11674:4;11969:169;11983:6;11980:1;11977:13;11969:169;;;12044:13;;12032:26;;12113:15;;;;12078:12;;;;12005:1;11998:9;11969:169;;;-1:-1:-1;12155:3:1;;11532:632;-1:-1:-1;;;;;;11532:632:1:o;12985:219::-;13134:2;13123:9;13116:21;13097:4;13154:44;13194:2;13183:9;13179:18;13171:6;13154:44;:::i;13922:414::-;14124:2;14106:21;;;14163:2;14143:18;;;14136:30;14202:34;14197:2;14182:18;;14175:62;-1:-1:-1;;;14268:2:1;14253:18;;14246:48;14326:3;14311:19;;13922:414::o;15105:344::-;15307:2;15289:21;;;15346:2;15326:18;;;15319:30;-1:-1:-1;;;15380:2:1;15365:18;;15358:50;15440:2;15425:18;;15105:344::o;21279:356::-;21481:2;21463:21;;;21500:18;;;21493:30;21559:34;21554:2;21539:18;;21532:62;21626:2;21611:18;;21279:356::o;23227:344::-;23429:2;23411:21;;;23468:2;23448:18;;;23441:30;-1:-1:-1;;;23502:2:1;23487:18;;23480:50;23562:2;23547:18;;23227:344::o;23576:413::-;23778:2;23760:21;;;23817:2;23797:18;;;23790:30;23856:34;23851:2;23836:18;;23829:62;-1:-1:-1;;;23922:2:1;23907:18;;23900:47;23979:3;23964:19;;23576:413::o;25608:128::-;25648:3;25679:1;25675:6;25672:1;25669:13;25666:39;;;25685:18;;:::i;:::-;-1:-1:-1;25721:9:1;;25608:128::o;25741:120::-;25781:1;25807;25797:35;;25812:18;;:::i;:::-;-1:-1:-1;25846:9:1;;25741:120::o;25866:168::-;25906:7;25972:1;25968;25964:6;25960:14;25957:1;25954:21;25949:1;25942:9;25935:17;25931:45;25928:71;;;25979:18;;:::i;:::-;-1:-1:-1;26019:9:1;;25866:168::o;26039:125::-;26079:4;26107:1;26104;26101:8;26098:34;;;26112:18;;:::i;:::-;-1:-1:-1;26149:9:1;;26039:125::o;26169:258::-;26241:1;26251:113;26265:6;26262:1;26259:13;26251:113;;;26341:11;;;26335:18;26322:11;;;26315:39;26287:2;26280:10;26251:113;;;26382:6;26379:1;26376:13;26373:48;;;-1:-1:-1;;26417:1:1;26399:16;;26392:27;26169:258::o;26432:380::-;26511:1;26507:12;;;;26554;;;26575:61;;26629:4;26621:6;26617:17;26607:27;;26575:61;26682:2;26674:6;26671:14;26651:18;26648:38;26645:161;;;26728:10;26723:3;26719:20;26716:1;26709:31;26763:4;26760:1;26753:15;26791:4;26788:1;26781:15;26645:161;;26432:380;;;:::o;26817:135::-;26856:3;-1:-1:-1;;26877:17:1;;26874:43;;;26897:18;;:::i;:::-;-1:-1:-1;26944:1:1;26933:13;;26817:135::o;26957:112::-;26989:1;27015;27005:35;;27020:18;;:::i;:::-;-1:-1:-1;27054:9:1;;26957:112::o;27074:127::-;27135:10;27130:3;27126:20;27123:1;27116:31;27166:4;27163:1;27156:15;27190:4;27187:1;27180:15;27206:127;27267:10;27262:3;27258:20;27255:1;27248:31;27298:4;27295:1;27288:15;27322:4;27319:1;27312:15;27338:127;27399:10;27394:3;27390:20;27387:1;27380:31;27430:4;27427:1;27420:15;27454:4;27451:1;27444:15;27470:127;27531:10;27526:3;27522:20;27519:1;27512:31;27562:4;27559:1;27552:15;27586:4;27583:1;27576:15;27602:127;27663:10;27658:3;27654:20;27651:1;27644:31;27694:4;27691:1;27684:15;27718:4;27715:1;27708:15;27734:131;-1:-1:-1;;;;;27809:31:1;;27799:42;;27789:70;;27855:1;27852;27845:12;27870:118;27956:5;27949:13;27942:21;27935:5;27932:32;27922:60;;27978:1;27975;27968:12;27993:131;-1:-1:-1;;;;;;28067:32:1;;28057:43;;28047:71;;28114:1;28111;28104:12

Swarm Source

ipfs://6a8d6b2fe2a731c6418d3f214f92cf8607740708831d1c080181d804988d9ada
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.