ETH Price: $2,669.32 (+1.22%)

Token

Lost 2RI Shore Part 1 (L2S1)
 

Overview

Max Total Supply

10,000 L2S1

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jdega.eth
Balance
1 L2S1
0x19c930be91dAE760E1a705aca933b0e116F5938D
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:
LostTRIShore

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-04-09
*/

// SPDX-License-Identifier: MIT

// 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: lost2rishore/CollectibleContract/@lib/Initializable.sol



pragma solidity ^0.8.1;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

// File: lost2rishore/CollectibleContract/@lib/EIP712Base.sol



pragma solidity ^0.8.1;


contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

// File: lost2rishore/CollectibleContract/@lib/NativeMetaTransaction.sol



pragma solidity ^0.8.1;



contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

// File: lost2rishore/CollectibleContract/@lib/ContextMixin.sol



pragma solidity ^0.8.1;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

// 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/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: lost2rishore/CollectibleContract/@lib/Pauseable.sol


pragma solidity ^0.8.0;


/// @author nexusque
/// @title Pause contract to help stop transactions.
abstract contract Pauseable is Ownable {
    bool public paused = false;

    
    /**
     * @dev pause or resume the pledge function and the claim function
     * @param _state true means paused
     */
    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function _setPauseState(bool _state) internal onlyOwner {
        paused = _state;
    }
}
// File: lost2rishore/CollectibleContract/@lib/Priceable.sol


pragma solidity ^0.8.0;


/// @author nexusque
/// @title Set price of tokens in contract
abstract contract Priceable is Ownable {
    uint256 private _tokenPrice = 0;

    /**
     * @dev Internal setting price of tokens in eth
     * @param _etherPrice price in eth i.e 0.04
     */
    function _setTokenPrice(uint _etherPrice) internal onlyOwner {
        _tokenPrice = _etherPrice;
    }

    /**
     * @dev Set price of tokens in eth
     * @param _etherPrice price in eth i.e 0.04
     */
    function setTokenPrice(uint _etherPrice) external onlyOwner {
        _setTokenPrice(_etherPrice);
    }

    function getTokenPrice() public
    view 
    returns(uint256) {
        return _tokenPrice;
    }
}
// File: lost2rishore/CollectibleContract/@lib/Whitelistable.sol


pragma solidity ^0.8.0;


/// @author nexusque
/// @title Can use whitelist for varius functions
abstract contract Whitelistable is Ownable {

    bool public whitelistRequired = true;

    mapping(address => bool) public whitelist;

    event WhitelistedAddressRemoved(address addr);

    event WhitelistedAddressAdded(address addr);

    event WhitelistedRequirementChanged(bool val);

    /**
     * @dev throws error if called by any wallet that is not whitelisted
     */
    modifier onlyWhitelisted() {
        if (whitelistRequired == true) require(whitelist[msg.sender], "Alert: You're not on the whitelist.");
        _;
    }

    constructor(
        address[] memory _whitelistAddresses
    )  {
        _addAddressesToWhitelist(_whitelistAddresses);
    }

    /**
     * @dev Check if a wallet is whitelisted
     * @param _owner address
     */
    function isWhitelisted(address _owner) external view returns (bool) {
        return whitelist[_owner] == true;
    }

    /**
     * @dev change whitelist requirement
     * @param _val bool
     */
    function setWhitelistRequirement(bool _val)
        external
        onlyOwner
    {
        whitelistRequired = _val;
        emit WhitelistedRequirementChanged(_val);
    }

    /**
     * @dev add addresses to the whitelist
     * @param addrs addresses
     */
    function addAddressesToWhitelist(address[] memory addrs)
        external
        onlyOwner
    {
        _addAddressesToWhitelist(addrs);
    }

    function _addAddressesToWhitelist(address[] memory addrs)
        internal
        onlyOwner
    {
        for (uint32 i = 0; i < addrs.length; i++) {
            whitelist[addrs[i]] = true;
            emit WhitelistedAddressAdded(addrs[i]);
        }
    }

    /**
     * @dev remove addresses from the whitelist
     * @param addrs addresses
     */
    function removeAddressesFromWhitelist(address[] memory addrs)
        external
        onlyOwner
    {
        _removeAddressesFromWhitelist(addrs);
    }

    function _removeAddressesFromWhitelist(address[] memory addrs)
        internal
        onlyOwner
    {
        for (uint32 i = 0; i < addrs.length; i++) {
            _removeAddressFromWhitelist(addrs[i]);
        }
    }

    function _removeAddressFromWhitelist(address addrs)
        internal
        onlyOwner
    {
        whitelist[addrs] = false;
        emit WhitelistedAddressRemoved(addrs);
    }
}
// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: lost2rishore/CollectibleContract/@lib/WithLimitedSupply.sol


pragma solidity ^0.8.0;



/// @author 1001.digital
/// ReviewedBy nexusque
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply is ERC721Enumerable {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _totalSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _totalSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function totalSupply() public override view returns (uint256) {
        return _totalSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return totalSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
    
}
// File: lost2rishore/CollectibleContract/Collectible.sol


pragma solidity ^0.8.2;











/// @author nexusque
contract LostTRIShore is  ContextMixin,  NativeMetaTransaction, Ownable, Whitelistable, Priceable, Pauseable, WithLimitedSupply {
    using SafeMath for uint256;

    address payable public clientAddress;
    address payable public artistAddress;
    address payable public paymentAddress;

    string public baseTokenURI = "";
    string public baseExtension = ".json";

    uint256 private _maxSupply = 10000;
    uint8 private _chapters = 5;

    // For RandomlyAssigned: Max supply is 1000; id start from 1 (instead of 0)
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        address _artistAddress,
        address _clientAddress,
        address _paymentAddress,
        address[] memory _whitelistAddresses
    ) ERC721 (_name, _symbol) Whitelistable(_whitelistAddresses) WithLimitedSupply(_maxSupply) {
        _initializeEIP712(_name);
     
        baseTokenURI = _uri;

        // ~$20 USD as of 04/08/2022
        _setTokenPrice(0.006 ether);

        artistAddress = payable(_artistAddress);
        clientAddress = payable(_clientAddress);
        paymentAddress = payable(_paymentAddress);
    }

    function claim() external onlyWhitelisted {
        require(!paused, "Contract is paused");
        require(
            tokenCount() + 1 <= _maxSupply,
            "Alert: Sorry not enough tokens left"
        );
        _mintList(1);
        _removeAddressFromWhitelist(msg.sender);
    }

    function mint() external payable {
        require(!paused, "Contract is paused");
        require(
            tokenCount() + 1 <= _maxSupply,
            "Alert: Sorry not enough tokens left"
        );
        require(
            msg.value >= getTokenPrice(),
            "Alert: You need to pay at least the required cost."
        );
        _mintList(1);
    }

    function mintTotalOf(uint8 _num) external payable {
        require(!paused, "Contract is paused");
        require(
            tokenCount() + uint256(_num) <= _maxSupply,
            "Alert: Sorry not enough tokens left"
        );
        require(
            msg.value >= (getTokenPrice() * uint256(_num)),
            "Alert: You need to pay at least the required cost."
        );
        _mintList(_num);
    }

    function ownerMintTotalOf(uint8 _num) external onlyOwner {
        require(
            tokenCount() + uint256(_num) <= _maxSupply,
            "Alert: Sorry not enough tokens left"
        );
        _mintList(_num);
    }

    /**
     * @dev Airdrop tokens to the following addresses
     * @param _addresses list of addresses to airdrop to
     */
    function airDropToAdresses(address[] memory _addresses) external onlyOwner {
        for (uint32 i = 0; i < _addresses.length; i++) {
            if (tokenCount() + 1 <= _maxSupply) {
                _safeMint(_addresses[i], nextToken());
            }
        }
        _removeAddressesFromWhitelist(_addresses);
    }

    /**
     * @dev mint _num of 
     * @param _num Quantity to mint
     */
    function _mintList(uint8 _num) private {
        for (uint8 i = 0; i < _num; i++) {
            _safeMint(msg.sender, nextToken());
        }

        // Pause after each chapter sells out
        if (tokenCount() % (_maxSupply / _chapters) == 0) {
            _setPauseState(true);
        }
    }

    /**
     * @dev change the baseTokenURI (only Owner)
     * @param _baseTokenURI base token URI
     */
    function setBaseURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    /**
     * @dev change the setPaymentAddress (only Owner)
     * @param _paymentAddress address to send eth to when withdrawing
     */
    function setPaymentAddress(address _paymentAddress) external onlyOwner {
        paymentAddress = payable(_paymentAddress);
    }

    /**
     * @dev returns the token URI of _tokenId
     * @param _tokenId id of the token
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Alert: This token does not exist!");
        return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), baseExtension));
    }

    /**
     * @dev this is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }

    /**
     * @dev set the base extension of the metadata file (only Owner)
     * @param _newBaseExtension extension (empty or with a dot infront)
     */
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    /**
     * @dev get the ids of the Humans owned by _owner
     * @param _owner address
     */
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    /**
    * @dev withdraw all balance of this contract to the paymentAddress contract
    */
    function withdraw() external payable onlyOwner {
        (bool success, ) = payable(paymentAddress).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_artistAddress","type":"address"},{"internalType":"address","name":"_clientAddress","type":"address"},{"internalType":"address","name":"_paymentAddress","type":"address"},{"internalType":"address[]","name":"_whitelistAddresses","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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"WhitelistedAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"WhitelistedAddressRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"val","type":"bool"}],"name":"WhitelistedRequirementChanged","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDropToAdresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clientAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_num","type":"uint8"}],"name":"mintTotalOf","outputs":[],"stateMutability":"payable","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":"uint8","name":"_num","type":"uint8"}],"name":"ownerMintTotalOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_etherPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setWhitelistRequirement","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000805460ff1990811682556003805460ff60a01b1916600160a01b179055600582905560068054909116905560a06040819052608082905262000047916016919062000545565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000769160179162000545565b506127106018556019805460ff191660051790553480156200009757600080fd5b5060405162003f3738038062003f37833981016040819052620000ba9162000734565b601854878783620000d4620000ce6200018c565b620001a8565b620000df81620001fa565b508151620000f590600790602085019062000545565b5080516200010b90600890602084019062000545565b5050506012556200011c8762000360565b84516200013190601690602088019062000545565b5062000144661550f7dca70000620003c1565b50601480546001600160a01b039485166001600160a01b03199182161790915560138054938516938216939093179092556015805491909316911617905550620008f4915050565b6000620001a36200043360201b62001ae21760201c565b905090565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002046200018c565b6001600160a01b0316620002206003546001600160a01b031690565b6001600160a01b0316146200026b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003f1783398151915260448201526064015b60405180910390fd5b60005b81518163ffffffff1610156200035c57600160046000848463ffffffff16815181106200029f576200029f620008c8565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd1bba68c128cc3f427e5831b3c6f99f480b6efa6b9e80c757768f6124158cc3f828263ffffffff16815181106200031a576200031a620008c8565b60200260200101516040516200033f91906001600160a01b0391909116815260200190565b60405180910390a180620003538162000895565b9150506200026e565b5050565b60005460ff1615620003a65760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640162000262565b620003b18162000492565b506000805460ff19166001179055565b620003cb6200018c565b6001600160a01b0316620003e76003546001600160a01b031690565b6001600160a01b0316146200042e5760405162461bcd60e51b8152602060048201819052602482015260008051602062003f17833981519152604482015260640162000262565b600555565b6000333014156200048c57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200048f9050565b50335b90565b6040518060800160405280604f815260200162003ec8604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6304660408051602081019690965285019390935260608401919091526001600160a01b0316608083015260a082015260c00160408051601f19818403018152919052805160209091012060015550565b828054620005539062000858565b90600052602060002090601f016020900481019282620005775760008555620005c2565b82601f106200059257805160ff1916838001178555620005c2565b82800160010185558215620005c2579182015b82811115620005c2578251825591602001919060010190620005a5565b50620005d0929150620005d4565b5090565b5b80821115620005d05760008155600101620005d5565b80516001600160a01b03811681146200060357600080fd5b919050565b600082601f8301126200061a57600080fd5b815160206001600160401b03821115620006385762000638620008de565b8160051b6200064982820162000825565b8381528281019086840183880185018910156200066557600080fd5b600093505b8584101562000693576200067e81620005eb565b8352600193909301929184019184016200066a565b50979650505050505050565b600082601f830112620006b157600080fd5b81516001600160401b03811115620006cd57620006cd620008de565b6020620006e3601f8301601f1916820162000825565b8281528582848701011115620006f857600080fd5b60005b8381101562000718578581018301518282018401528201620006fb565b838111156200072a5760008385840101525b5095945050505050565b600080600080600080600060e0888a0312156200075057600080fd5b87516001600160401b03808211156200076857600080fd5b620007768b838c016200069f565b985060208a01519150808211156200078d57600080fd5b6200079b8b838c016200069f565b975060408a0151915080821115620007b257600080fd5b620007c08b838c016200069f565b9650620007d060608b01620005eb565b9550620007e060808b01620005eb565b9450620007f060a08b01620005eb565b935060c08a01519150808211156200080757600080fd5b50620008168a828b0162000608565b91505092959891949750929550565b604051601f8201601f191681016001600160401b0381118282101715620008505762000850620008de565b604052919050565b600181811c908216806200086d57607f821691505b602082108114156200088f57634e487b7160e01b600052602260045260246000fd5b50919050565b600063ffffffff80831681811415620008be57634e487b7160e01b600052601160045260246000fd5b6001019392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6135c480620009046000396000f3fe6080604052600436106102e45760003560e01c80634f6ccce7116101905780639f181b5e116100dc578063d7eb3f3a11610095578063e2ec6ec31161006f578063e2ec6ec314610895578063e985e9c5146108b5578063f2fde38b146108fe578063fb08f3a11461091e57600080fd5b8063d7eb3f3a14610840578063da3ef23f14610860578063e14ca3531461088057600080fd5b80639f181b5e146107a1578063a22cb465146107b6578063b88d4fde146107d6578063c6682862146107f6578063c87b56dd1461080b578063d547cfb71461082b57600080fd5b80636a61e5fc116101495780638da5cb5b116101235780638da5cb5b1461072b5780638ea87e731461074957806395d89b411461075c5780639b19251a1461077157600080fd5b80636a61e5fc146106d657806370a08231146106f6578063715018a61461071657600080fd5b80634f6ccce71461061c57806355f804b31461063c5780635c975abb1461065c5780635e1e100414610676578063633423be146106965780636352211e146106b657600080fd5b806324953eaa1161024f5780633af32abf1161020857806342842e0e116101e257806342842e0e146105a5578063438b6300146105c55780634b94f50e146105f25780634e71d92d1461060757600080fd5b80633af32abf1461053f5780633c51e8171461057d5780633ccfd60b1461059d57600080fd5b806324953eaa146104765780632c2ab5ea146104965780632d0335ab146104b65780632f745c59146104ec5780632fa2bca11461050c5780633408e4701461052c57600080fd5b80630f7e5970116102a15780630f7e5970146103cd5780631249c58b146103fa57806318160ddd1461040257806320379ee51461042157806323b872dd1461043657806323f7213d1461045657600080fd5b806301ffc9a7146102e957806302329a291461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a5780630c53c51c146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612ef5565b61093f565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612eda565b61096a565b005b34801561034c57600080fd5b506103556109cf565b60405161031591906131ae565b34801561036e57600080fd5b5061038261037d366004612f78565b610a61565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b5366004612dfc565b610af6565b6103556103c8366004612d8a565b610c1e565b3480156103d957600080fd5b50610355604051806040016040528060018152602001603160f81b81525081565b61033e610e08565b34801561040e57600080fd5b506012545b604051908152602001610315565b34801561042d57600080fd5b50600154610413565b34801561044257600080fd5b5061033e610451366004612cbc565b610e8d565b34801561046257600080fd5b5061033e610471366004612e26565b610ec5565b34801561048257600080fd5b5061033e610491366004612e26565b610f8a565b3480156104a257600080fd5b50601354610382906001600160a01b031681565b3480156104c257600080fd5b506104136104d1366004612c6e565b6001600160a01b031660009081526002602052604090205490565b3480156104f857600080fd5b50610413610507366004612dfc565b610fdc565b34801561051857600080fd5b5061033e610527366004612eda565b611072565b34801561053857600080fd5b5046610413565b34801561054b57600080fd5b5061030961055a366004612c6e565b6001600160a01b031660009081526004602052604090205460ff16151560011490565b34801561058957600080fd5b5061033e610598366004612f91565b611113565b61033e61119c565b3480156105b157600080fd5b5061033e6105c0366004612cbc565b61127b565b3480156105d157600080fd5b506105e56105e0366004612c6e565b611296565b604051610315919061316a565b3480156105fe57600080fd5b50600554610413565b34801561061357600080fd5b5061033e611338565b34801561062857600080fd5b50610413610637366004612f78565b611424565b34801561064857600080fd5b5061033e610657366004612f2f565b6114b7565b34801561066857600080fd5b506006546103099060ff1681565b34801561068257600080fd5b5061033e610691366004612c6e565b611517565b3480156106a257600080fd5b50601554610382906001600160a01b031681565b3480156106c257600080fd5b506103826106d1366004612f78565b611582565b3480156106e257600080fd5b5061033e6106f1366004612f78565b6115f9565b34801561070257600080fd5b50610413610711366004612c6e565b61164b565b34801561072257600080fd5b5061033e6116d2565b34801561073757600080fd5b506003546001600160a01b0316610382565b61033e610757366004612f91565b611725565b34801561076857600080fd5b506103556117b5565b34801561077d57600080fd5b5061030961078c366004612c6e565b60046020526000908152604090205460ff1681565b3480156107ad57600080fd5b506104136117c4565b3480156107c257600080fd5b5061033e6107d1366004612d60565b6117d4565b3480156107e257600080fd5b5061033e6107f1366004612cf8565b6117e6565b34801561080257600080fd5b50610355611825565b34801561081757600080fd5b50610355610826366004612f78565b6118b3565b34801561083757600080fd5b50610355611959565b34801561084c57600080fd5b50601454610382906001600160a01b031681565b34801561086c57600080fd5b5061033e61087b366004612f2f565b611966565b34801561088c57600080fd5b506104136119c2565b3480156108a157600080fd5b5061033e6108b0366004612e26565b6119d9565b3480156108c157600080fd5b506103096108d0366004612c89565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b34801561090a57600080fd5b5061033e610919366004612c6e565b611a2b565b34801561092a57600080fd5b5060035461030990600160a01b900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610964575061096482611b3f565b92915050565b610972611b8f565b6001600160a01b031661098d6003546001600160a01b031690565b6001600160a01b0316146109bc5760405162461bcd60e51b81526004016109b390613213565b60405180910390fd5b6006805460ff1916911515919091179055565b6060600780546109de90613419565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613419565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000818152600960205260408120546001600160a01b0316610ada5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b506000908152600b60205260409020546001600160a01b031690565b6000610b0182611582565b9050806001600160a01b0316836001600160a01b03161415610b6f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b3565b806001600160a01b0316610b81611b8f565b6001600160a01b03161480610b9d5750610b9d816108d0611b8f565b610c0f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b3565b610c198383611b99565b505050565b60408051606081810183526001600160a01b03881660008181526002602090815290859020548452830152918101869052610c5c8782878787611c07565b610cb25760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016109b3565b6001600160a01b038716600090815260026020526040902054610cd6906001611cf7565b6001600160a01b0388166000908152600260205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d2690899033908a906130f8565b60405180910390a1600080306001600160a01b0316888a604051602001610d4e92919061308e565b60408051601f1981840301815290829052610d6891613072565b6000604051808303816000865af19150503d8060008114610da5576040519150601f19603f3d011682016040523d82523d6000602084013e610daa565b606091505b509150915081610dfc5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109b3565b98975050505050505050565b60065460ff1615610e2b5760405162461bcd60e51b81526004016109b39061332e565b601854610e366117c4565b610e4190600161338b565b1115610e5f5760405162461bcd60e51b81526004016109b3906132eb565b600554341015610e815760405162461bcd60e51b81526004016109b390613299565b610e8b6001611d0a565b565b610e9e610e98611b8f565b82611d6d565b610eba5760405162461bcd60e51b81526004016109b390613248565b610c19838383611e64565b610ecd611b8f565b6001600160a01b0316610ee86003546001600160a01b031690565b6001600160a01b031614610f0e5760405162461bcd60e51b81526004016109b390613213565b60005b81518163ffffffff161015610f7d57601854610f2b6117c4565b610f3690600161338b565b11610f6b57610f6b828263ffffffff1681518110610f5657610f56613509565b6020026020010151610f6661200b565b61207e565b80610f758161346f565b915050610f11565b50610f8781612098565b50565b610f92611b8f565b6001600160a01b0316610fad6003546001600160a01b031690565b6001600160a01b031614610fd35760405162461bcd60e51b81526004016109b390613213565b610f8781612098565b6000610fe78361164b565b82106110495760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109b3565b506001600160a01b03919091166000908152600d60209081526040808320938352929052205490565b61107a611b8f565b6001600160a01b03166110956003546001600160a01b031690565b6001600160a01b0316146110bb5760405162461bcd60e51b81526004016109b390613213565b60038054821515600160a01b0260ff60a01b199091161790556040517f629c0d2c896395c4c887f21faca97e5aa80b90b3068ead88c9770ed3a98f70279061110890831515815260200190565b60405180910390a150565b61111b611b8f565b6001600160a01b03166111366003546001600160a01b031690565b6001600160a01b03161461115c5760405162461bcd60e51b81526004016109b390613213565b6018548160ff1661116b6117c4565b611175919061338b565b11156111935760405162461bcd60e51b81526004016109b3906132eb565b610f8781611d0a565b6111a4611b8f565b6001600160a01b03166111bf6003546001600160a01b031690565b6001600160a01b0316146111e55760405162461bcd60e51b81526004016109b390613213565b6015546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611232576040519150601f19603f3d011682016040523d82523d6000602084013e611237565b606091505b5050905080610f875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109b3565b610c19838383604051806020016040528060008152506117e6565b606060006112a38361164b565b905060008167ffffffffffffffff8111156112c0576112c061351f565b6040519080825280602002602001820160405280156112e9578160200160208202803683370190505b50905060005b82811015611330576113018582610fdc565b82828151811061131357611313613509565b60209081029190910101528061132881613454565b9150506112ef565b509392505050565b600354600160a01b900460ff161515600114156113ba573360009081526004602052604090205460ff166113ba5760405162461bcd60e51b815260206004820152602360248201527f416c6572743a20596f75277265206e6f74206f6e207468652077686974656c6960448201526239ba1760e91b60648201526084016109b3565b60065460ff16156113dd5760405162461bcd60e51b81526004016109b39061332e565b6018546113e86117c4565b6113f390600161338b565b11156114115760405162461bcd60e51b81526004016109b3906132eb565b61141b6001611d0a565b610e8b3361212d565b600061142f600f5490565b82106114925760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109b3565b600f82815481106114a5576114a5613509565b90600052602060002001549050919050565b6114bf611b8f565b6001600160a01b03166114da6003546001600160a01b031690565b6001600160a01b0316146115005760405162461bcd60e51b81526004016109b390613213565b8051611513906016906020840190612b20565b5050565b61151f611b8f565b6001600160a01b031661153a6003546001600160a01b031690565b6001600160a01b0316146115605760405162461bcd60e51b81526004016109b390613213565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600960205260408120546001600160a01b0316806109645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b3565b611601611b8f565b6001600160a01b031661161c6003546001600160a01b031690565b6001600160a01b0316146116425760405162461bcd60e51b81526004016109b390613213565b610f87816121c7565b60006001600160a01b0382166116b65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109b3565b506001600160a01b03166000908152600a602052604090205490565b6116da611b8f565b6001600160a01b03166116f56003546001600160a01b031690565b6001600160a01b03161461171b5760405162461bcd60e51b81526004016109b390613213565b610e8b6000612215565b60065460ff16156117485760405162461bcd60e51b81526004016109b39061332e565b6018548160ff166117576117c4565b611761919061338b565b111561177f5760405162461bcd60e51b81526004016109b3906132eb565b8060ff1661178c60055490565b61179691906133b7565b3410156111935760405162461bcd60e51b81526004016109b390613299565b6060600880546109de90613419565b60006117cf60115490565b905090565b6115136117df611b8f565b8383612267565b6117f76117f1611b8f565b83611d6d565b6118135760405162461bcd60e51b81526004016109b390613248565b61181f84848484612336565b50505050565b6017805461183290613419565b80601f016020809104026020016040519081016040528092919081815260200182805461185e90613419565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b505050505081565b6000818152600960205260409020546060906001600160a01b03166119245760405162461bcd60e51b815260206004820152602160248201527f416c6572743a205468697320746f6b656e20646f6573206e6f742065786973746044820152602160f81b60648201526084016109b3565b601661192f83612369565b6017604051602001611943939291906130c5565b6040516020818303038152906040529050919050565b6016805461183290613419565b61196e611b8f565b6001600160a01b03166119896003546001600160a01b031690565b6001600160a01b0316146119af5760405162461bcd60e51b81526004016109b390613213565b8051611513906017906020840190612b20565b60006119cc6117c4565b6012546117cf91906133d6565b6119e1611b8f565b6001600160a01b03166119fc6003546001600160a01b031690565b6001600160a01b031614611a225760405162461bcd60e51b81526004016109b390613213565b610f8781612467565b611a33611b8f565b6001600160a01b0316611a4e6003546001600160a01b031690565b6001600160a01b031614611a745760405162461bcd60e51b81526004016109b390613213565b6001600160a01b038116611ad95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b3565b610f8781612215565b600033301415611b3957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611b3c9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611b7057506001600160e01b03198216635b5e139f60e01b145b8061096457506301ffc9a760e01b6001600160e01b0319831614610964565b60006117cf611ae2565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bce82611582565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611c6d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016109b3565b6001611c80611c7b87612596565b612613565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611cce573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611d03828461338b565b9392505050565b60005b8160ff168160ff161015611d3957611d2733610f6661200b565b80611d3181613493565b915050611d0d565b50601954601854611d4d9160ff16906133a3565b611d556117c4565b611d5f91906134b3565b610f8757610f87600161096a565b6000818152600960205260408120546001600160a01b0316611de65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b6000611df183611582565b9050806001600160a01b0316846001600160a01b03161480611e2c5750836001600160a01b0316611e2184610a61565b6001600160a01b0316145b80611e5c57506001600160a01b038082166000908152600c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e7782611582565b6001600160a01b031614611edb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109b3565b6001600160a01b038216611f3d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b3565b611f48838383612643565b611f53600082611b99565b6001600160a01b0383166000908152600a60205260408120805460019290611f7c9084906133d6565b90915550506001600160a01b0382166000908152600a60205260408120805460019290611faa90849061338b565b909155505060008181526009602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806120166119c2565b116120635760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c65000000000000000060448201526064016109b3565b600061206e60115490565b90506117cf601180546001019055565b6115138282604051806020016040528060008152506126fb565b6120a0611b8f565b6001600160a01b03166120bb6003546001600160a01b031690565b6001600160a01b0316146120e15760405162461bcd60e51b81526004016109b390613213565b60005b81518163ffffffff1610156115135761211b828263ffffffff168151811061210e5761210e613509565b602002602001015161212d565b806121258161346f565b9150506120e4565b612135611b8f565b6001600160a01b03166121506003546001600160a01b031690565b6001600160a01b0316146121765760405162461bcd60e51b81526004016109b390613213565b6001600160a01b038116600081815260046020908152604091829020805460ff1916905590519182527ff1abf01a1043b7c244d128e8595cf0c1d10743b022b03a02dffd8ca3bf729f5a9101611108565b6121cf611b8f565b6001600160a01b03166121ea6003546001600160a01b031690565b6001600160a01b0316146122105760405162461bcd60e51b81526004016109b390613213565b600555565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122c95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b3565b6001600160a01b038381166000818152600c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612341848484611e64565b61234d8484848461272e565b61181f5760405162461bcd60e51b81526004016109b3906131c1565b60608161238d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123b757806123a181613454565b91506123b09050600a836133a3565b9150612391565b60008167ffffffffffffffff8111156123d2576123d261351f565b6040519080825280601f01601f1916602001820160405280156123fc576020820181803683370190505b5090505b8415611e5c576124116001836133d6565b915061241e600a866134b3565b61242990603061338b565b60f81b81838151811061243e5761243e613509565b60200101906001600160f81b031916908160001a905350612460600a866133a3565b9450612400565b61246f611b8f565b6001600160a01b031661248a6003546001600160a01b031690565b6001600160a01b0316146124b05760405162461bcd60e51b81526004016109b390613213565b60005b81518163ffffffff16101561151357600160046000848463ffffffff16815181106124e0576124e0613509565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd1bba68c128cc3f427e5831b3c6f99f480b6efa6b9e80c757768f6124158cc3f828263ffffffff168151811061255857612558613509565b602002602001015160405161257c91906001600160a01b0391909116815260200190565b60405180910390a18061258e8161346f565b9150506124b3565b600060405180608001604052806043815260200161354c60439139805160209182012083518483015160408087015180519086012090516125f6950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061261e60015490565b60405161190160f01b60208201526022810191909152604281018390526062016125f6565b6001600160a01b03831661269e5761269981600f80546000838152601060205260408120829055600182018355919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020155565b6126c1565b816001600160a01b0316836001600160a01b0316146126c1576126c18382612842565b6001600160a01b0382166126d857610c19816128df565b826001600160a01b0316826001600160a01b031614610c1957610c19828261298e565b61270583836129d2565b612712600084848461272e565b610c195760405162461bcd60e51b81526004016109b3906131c1565b60006001600160a01b0384163b1561283757836001600160a01b031663150b7a02612757611b8f565b8786866040518563ffffffff1660e01b8152600401612779949392919061312d565b602060405180830381600087803b15801561279357600080fd5b505af19250505080156127c3575060408051601f3d908101601f191682019092526127c091810190612f12565b60015b61281d573d8080156127f1576040519150601f19603f3d011682016040523d82523d6000602084013e6127f6565b606091505b5080516128155760405162461bcd60e51b81526004016109b3906131c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e5c565b506001949350505050565b6000600161284f8461164b565b61285991906133d6565b6000838152600e60205260409020549091508082146128ac576001600160a01b0384166000908152600d602090815260408083208584528252808320548484528184208190558352600e90915290208190555b506000918252600e602090815260408084208490556001600160a01b039094168352600d81528383209183525290812055565b600f546000906128f1906001906133d6565b600083815260106020526040812054600f805493945090928490811061291957612919613509565b9060005260206000200154905080600f838154811061293a5761293a613509565b600091825260208083209091019290925582815260109091526040808220849055858252812055600f805480612972576129726134f3565b6001900381819060005260206000200160009055905550505050565b60006129998361164b565b6001600160a01b039093166000908152600d602090815260408083208684528252808320859055938252600e9052919091209190915550565b6001600160a01b038216612a285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b3565b6000818152600960205260409020546001600160a01b031615612a8d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b3565b612a9960008383612643565b6001600160a01b0382166000908152600a60205260408120805460019290612ac290849061338b565b909155505060008181526009602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b2c90613419565b90600052602060002090601f016020900481019282612b4e5760008555612b94565b82601f10612b6757805160ff1916838001178555612b94565b82800160010185558215612b94579182015b82811115612b94578251825591602001919060010190612b79565b50612ba0929150612ba4565b5090565b5b80821115612ba05760008155600101612ba5565b600067ffffffffffffffff831115612bd357612bd361351f565b612be6601f8401601f191660200161335a565b9050828152838383011115612bfa57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612c2857600080fd5b919050565b80358015158114612c2857600080fd5b600082601f830112612c4e57600080fd5b611d0383833560208501612bb9565b803560ff81168114612c2857600080fd5b600060208284031215612c8057600080fd5b611d0382612c11565b60008060408385031215612c9c57600080fd5b612ca583612c11565b9150612cb360208401612c11565b90509250929050565b600080600060608486031215612cd157600080fd5b612cda84612c11565b9250612ce860208501612c11565b9150604084013590509250925092565b60008060008060808587031215612d0e57600080fd5b612d1785612c11565b9350612d2560208601612c11565b925060408501359150606085013567ffffffffffffffff811115612d4857600080fd5b612d5487828801612c3d565b91505092959194509250565b60008060408385031215612d7357600080fd5b612d7c83612c11565b9150612cb360208401612c2d565b600080600080600060a08688031215612da257600080fd5b612dab86612c11565b9450602086013567ffffffffffffffff811115612dc757600080fd5b612dd388828901612c3d565b9450506040860135925060608601359150612df060808701612c5d565b90509295509295909350565b60008060408385031215612e0f57600080fd5b612e1883612c11565b946020939093013593505050565b60006020808385031215612e3957600080fd5b823567ffffffffffffffff80821115612e5157600080fd5b818501915085601f830112612e6557600080fd5b813581811115612e7757612e7761351f565b8060051b9150612e8884830161335a565b8181528481019084860184860187018a1015612ea357600080fd5b600095505b83861015612ecd57612eb981612c11565b835260019590950194918601918601612ea8565b5098975050505050505050565b600060208284031215612eec57600080fd5b611d0382612c2d565b600060208284031215612f0757600080fd5b8135611d0381613535565b600060208284031215612f2457600080fd5b8151611d0381613535565b600060208284031215612f4157600080fd5b813567ffffffffffffffff811115612f5857600080fd5b8201601f81018413612f6957600080fd5b611e5c84823560208401612bb9565b600060208284031215612f8a57600080fd5b5035919050565b600060208284031215612fa357600080fd5b611d0382612c5d565b60008151808452612fc48160208601602086016133ed565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612ff257607f831692505b602080841082141561301457634e487b7160e01b600052602260045260246000fd5b818015613028576001811461303957613066565b60ff19861689528489019650613066565b60008881526020902060005b8681101561305e5781548b820152908501908301613045565b505084890196505b50505050505092915050565b600082516130848184602087016133ed565b9190910192915050565b600083516130a08184602088016133ed565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60006130d18286612fd8565b84516130e18183602089016133ed565b6130ed81830186612fd8565b979650505050505050565b6001600160a01b0384811682528316602082015260606040820181905260009061312490830184612fac565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061316090830184612fac565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131a257835183529284019291840191600101613186565b50909695505050505050565b602081526000611d036020830184612fac565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526032908201527f416c6572743a20596f75206e65656420746f20706179206174206c65617374206040820152713a3432903932b8bab4b932b21031b7b9ba1760711b606082015260800190565b60208082526023908201527f416c6572743a20536f727279206e6f7420656e6f75676820746f6b656e73206c60408201526219599d60ea1b606082015260800190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133835761338361351f565b604052919050565b6000821982111561339e5761339e6134c7565b500190565b6000826133b2576133b26134dd565b500490565b60008160001904831182151516156133d1576133d16134c7565b500290565b6000828210156133e8576133e86134c7565b500390565b60005b838110156134085781810151838201526020016133f0565b8381111561181f5750506000910152565b600181811c9082168061342d57607f821691505b6020821081141561344e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613468576134686134c7565b5060010190565b600063ffffffff80831681811415613489576134896134c7565b6001019392505050565b600060ff821660ff8114156134aa576134aa6134c7565b60010192915050565b6000826134c2576134c26134dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8757600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220fa44dd6e32972cae5d0db211bb118094990625ea03b99dd2f3b049ed77a8149764736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c74294f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000059630f709c9fd59d17fb9bd654c779434793d09c0000000000000000000000009361dd71f7f29ab8c92a87b271ad41f34100428c0000000000000000000000005d4bc6ea2e35d22e65dfcb09679bad08e8c2a71d00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000154c6f7374203252492053686f726520506172742031000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c32533100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6e66742e7269636869736c616e642e696f2f6574682f6c6f737432726973686f72652f6d657461646174612f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80634f6ccce7116101905780639f181b5e116100dc578063d7eb3f3a11610095578063e2ec6ec31161006f578063e2ec6ec314610895578063e985e9c5146108b5578063f2fde38b146108fe578063fb08f3a11461091e57600080fd5b8063d7eb3f3a14610840578063da3ef23f14610860578063e14ca3531461088057600080fd5b80639f181b5e146107a1578063a22cb465146107b6578063b88d4fde146107d6578063c6682862146107f6578063c87b56dd1461080b578063d547cfb71461082b57600080fd5b80636a61e5fc116101495780638da5cb5b116101235780638da5cb5b1461072b5780638ea87e731461074957806395d89b411461075c5780639b19251a1461077157600080fd5b80636a61e5fc146106d657806370a08231146106f6578063715018a61461071657600080fd5b80634f6ccce71461061c57806355f804b31461063c5780635c975abb1461065c5780635e1e100414610676578063633423be146106965780636352211e146106b657600080fd5b806324953eaa1161024f5780633af32abf1161020857806342842e0e116101e257806342842e0e146105a5578063438b6300146105c55780634b94f50e146105f25780634e71d92d1461060757600080fd5b80633af32abf1461053f5780633c51e8171461057d5780633ccfd60b1461059d57600080fd5b806324953eaa146104765780632c2ab5ea146104965780632d0335ab146104b65780632f745c59146104ec5780632fa2bca11461050c5780633408e4701461052c57600080fd5b80630f7e5970116102a15780630f7e5970146103cd5780631249c58b146103fa57806318160ddd1461040257806320379ee51461042157806323b872dd1461043657806323f7213d1461045657600080fd5b806301ffc9a7146102e957806302329a291461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a5780630c53c51c146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612ef5565b61093f565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612eda565b61096a565b005b34801561034c57600080fd5b506103556109cf565b60405161031591906131ae565b34801561036e57600080fd5b5061038261037d366004612f78565b610a61565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b5366004612dfc565b610af6565b6103556103c8366004612d8a565b610c1e565b3480156103d957600080fd5b50610355604051806040016040528060018152602001603160f81b81525081565b61033e610e08565b34801561040e57600080fd5b506012545b604051908152602001610315565b34801561042d57600080fd5b50600154610413565b34801561044257600080fd5b5061033e610451366004612cbc565b610e8d565b34801561046257600080fd5b5061033e610471366004612e26565b610ec5565b34801561048257600080fd5b5061033e610491366004612e26565b610f8a565b3480156104a257600080fd5b50601354610382906001600160a01b031681565b3480156104c257600080fd5b506104136104d1366004612c6e565b6001600160a01b031660009081526002602052604090205490565b3480156104f857600080fd5b50610413610507366004612dfc565b610fdc565b34801561051857600080fd5b5061033e610527366004612eda565b611072565b34801561053857600080fd5b5046610413565b34801561054b57600080fd5b5061030961055a366004612c6e565b6001600160a01b031660009081526004602052604090205460ff16151560011490565b34801561058957600080fd5b5061033e610598366004612f91565b611113565b61033e61119c565b3480156105b157600080fd5b5061033e6105c0366004612cbc565b61127b565b3480156105d157600080fd5b506105e56105e0366004612c6e565b611296565b604051610315919061316a565b3480156105fe57600080fd5b50600554610413565b34801561061357600080fd5b5061033e611338565b34801561062857600080fd5b50610413610637366004612f78565b611424565b34801561064857600080fd5b5061033e610657366004612f2f565b6114b7565b34801561066857600080fd5b506006546103099060ff1681565b34801561068257600080fd5b5061033e610691366004612c6e565b611517565b3480156106a257600080fd5b50601554610382906001600160a01b031681565b3480156106c257600080fd5b506103826106d1366004612f78565b611582565b3480156106e257600080fd5b5061033e6106f1366004612f78565b6115f9565b34801561070257600080fd5b50610413610711366004612c6e565b61164b565b34801561072257600080fd5b5061033e6116d2565b34801561073757600080fd5b506003546001600160a01b0316610382565b61033e610757366004612f91565b611725565b34801561076857600080fd5b506103556117b5565b34801561077d57600080fd5b5061030961078c366004612c6e565b60046020526000908152604090205460ff1681565b3480156107ad57600080fd5b506104136117c4565b3480156107c257600080fd5b5061033e6107d1366004612d60565b6117d4565b3480156107e257600080fd5b5061033e6107f1366004612cf8565b6117e6565b34801561080257600080fd5b50610355611825565b34801561081757600080fd5b50610355610826366004612f78565b6118b3565b34801561083757600080fd5b50610355611959565b34801561084c57600080fd5b50601454610382906001600160a01b031681565b34801561086c57600080fd5b5061033e61087b366004612f2f565b611966565b34801561088c57600080fd5b506104136119c2565b3480156108a157600080fd5b5061033e6108b0366004612e26565b6119d9565b3480156108c157600080fd5b506103096108d0366004612c89565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b34801561090a57600080fd5b5061033e610919366004612c6e565b611a2b565b34801561092a57600080fd5b5060035461030990600160a01b900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610964575061096482611b3f565b92915050565b610972611b8f565b6001600160a01b031661098d6003546001600160a01b031690565b6001600160a01b0316146109bc5760405162461bcd60e51b81526004016109b390613213565b60405180910390fd5b6006805460ff1916911515919091179055565b6060600780546109de90613419565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613419565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000818152600960205260408120546001600160a01b0316610ada5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b506000908152600b60205260409020546001600160a01b031690565b6000610b0182611582565b9050806001600160a01b0316836001600160a01b03161415610b6f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b3565b806001600160a01b0316610b81611b8f565b6001600160a01b03161480610b9d5750610b9d816108d0611b8f565b610c0f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b3565b610c198383611b99565b505050565b60408051606081810183526001600160a01b03881660008181526002602090815290859020548452830152918101869052610c5c8782878787611c07565b610cb25760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016109b3565b6001600160a01b038716600090815260026020526040902054610cd6906001611cf7565b6001600160a01b0388166000908152600260205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d2690899033908a906130f8565b60405180910390a1600080306001600160a01b0316888a604051602001610d4e92919061308e565b60408051601f1981840301815290829052610d6891613072565b6000604051808303816000865af19150503d8060008114610da5576040519150601f19603f3d011682016040523d82523d6000602084013e610daa565b606091505b509150915081610dfc5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109b3565b98975050505050505050565b60065460ff1615610e2b5760405162461bcd60e51b81526004016109b39061332e565b601854610e366117c4565b610e4190600161338b565b1115610e5f5760405162461bcd60e51b81526004016109b3906132eb565b600554341015610e815760405162461bcd60e51b81526004016109b390613299565b610e8b6001611d0a565b565b610e9e610e98611b8f565b82611d6d565b610eba5760405162461bcd60e51b81526004016109b390613248565b610c19838383611e64565b610ecd611b8f565b6001600160a01b0316610ee86003546001600160a01b031690565b6001600160a01b031614610f0e5760405162461bcd60e51b81526004016109b390613213565b60005b81518163ffffffff161015610f7d57601854610f2b6117c4565b610f3690600161338b565b11610f6b57610f6b828263ffffffff1681518110610f5657610f56613509565b6020026020010151610f6661200b565b61207e565b80610f758161346f565b915050610f11565b50610f8781612098565b50565b610f92611b8f565b6001600160a01b0316610fad6003546001600160a01b031690565b6001600160a01b031614610fd35760405162461bcd60e51b81526004016109b390613213565b610f8781612098565b6000610fe78361164b565b82106110495760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109b3565b506001600160a01b03919091166000908152600d60209081526040808320938352929052205490565b61107a611b8f565b6001600160a01b03166110956003546001600160a01b031690565b6001600160a01b0316146110bb5760405162461bcd60e51b81526004016109b390613213565b60038054821515600160a01b0260ff60a01b199091161790556040517f629c0d2c896395c4c887f21faca97e5aa80b90b3068ead88c9770ed3a98f70279061110890831515815260200190565b60405180910390a150565b61111b611b8f565b6001600160a01b03166111366003546001600160a01b031690565b6001600160a01b03161461115c5760405162461bcd60e51b81526004016109b390613213565b6018548160ff1661116b6117c4565b611175919061338b565b11156111935760405162461bcd60e51b81526004016109b3906132eb565b610f8781611d0a565b6111a4611b8f565b6001600160a01b03166111bf6003546001600160a01b031690565b6001600160a01b0316146111e55760405162461bcd60e51b81526004016109b390613213565b6015546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611232576040519150601f19603f3d011682016040523d82523d6000602084013e611237565b606091505b5050905080610f875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109b3565b610c19838383604051806020016040528060008152506117e6565b606060006112a38361164b565b905060008167ffffffffffffffff8111156112c0576112c061351f565b6040519080825280602002602001820160405280156112e9578160200160208202803683370190505b50905060005b82811015611330576113018582610fdc565b82828151811061131357611313613509565b60209081029190910101528061132881613454565b9150506112ef565b509392505050565b600354600160a01b900460ff161515600114156113ba573360009081526004602052604090205460ff166113ba5760405162461bcd60e51b815260206004820152602360248201527f416c6572743a20596f75277265206e6f74206f6e207468652077686974656c6960448201526239ba1760e91b60648201526084016109b3565b60065460ff16156113dd5760405162461bcd60e51b81526004016109b39061332e565b6018546113e86117c4565b6113f390600161338b565b11156114115760405162461bcd60e51b81526004016109b3906132eb565b61141b6001611d0a565b610e8b3361212d565b600061142f600f5490565b82106114925760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109b3565b600f82815481106114a5576114a5613509565b90600052602060002001549050919050565b6114bf611b8f565b6001600160a01b03166114da6003546001600160a01b031690565b6001600160a01b0316146115005760405162461bcd60e51b81526004016109b390613213565b8051611513906016906020840190612b20565b5050565b61151f611b8f565b6001600160a01b031661153a6003546001600160a01b031690565b6001600160a01b0316146115605760405162461bcd60e51b81526004016109b390613213565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600960205260408120546001600160a01b0316806109645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b3565b611601611b8f565b6001600160a01b031661161c6003546001600160a01b031690565b6001600160a01b0316146116425760405162461bcd60e51b81526004016109b390613213565b610f87816121c7565b60006001600160a01b0382166116b65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109b3565b506001600160a01b03166000908152600a602052604090205490565b6116da611b8f565b6001600160a01b03166116f56003546001600160a01b031690565b6001600160a01b03161461171b5760405162461bcd60e51b81526004016109b390613213565b610e8b6000612215565b60065460ff16156117485760405162461bcd60e51b81526004016109b39061332e565b6018548160ff166117576117c4565b611761919061338b565b111561177f5760405162461bcd60e51b81526004016109b3906132eb565b8060ff1661178c60055490565b61179691906133b7565b3410156111935760405162461bcd60e51b81526004016109b390613299565b6060600880546109de90613419565b60006117cf60115490565b905090565b6115136117df611b8f565b8383612267565b6117f76117f1611b8f565b83611d6d565b6118135760405162461bcd60e51b81526004016109b390613248565b61181f84848484612336565b50505050565b6017805461183290613419565b80601f016020809104026020016040519081016040528092919081815260200182805461185e90613419565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b505050505081565b6000818152600960205260409020546060906001600160a01b03166119245760405162461bcd60e51b815260206004820152602160248201527f416c6572743a205468697320746f6b656e20646f6573206e6f742065786973746044820152602160f81b60648201526084016109b3565b601661192f83612369565b6017604051602001611943939291906130c5565b6040516020818303038152906040529050919050565b6016805461183290613419565b61196e611b8f565b6001600160a01b03166119896003546001600160a01b031690565b6001600160a01b0316146119af5760405162461bcd60e51b81526004016109b390613213565b8051611513906017906020840190612b20565b60006119cc6117c4565b6012546117cf91906133d6565b6119e1611b8f565b6001600160a01b03166119fc6003546001600160a01b031690565b6001600160a01b031614611a225760405162461bcd60e51b81526004016109b390613213565b610f8781612467565b611a33611b8f565b6001600160a01b0316611a4e6003546001600160a01b031690565b6001600160a01b031614611a745760405162461bcd60e51b81526004016109b390613213565b6001600160a01b038116611ad95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b3565b610f8781612215565b600033301415611b3957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611b3c9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611b7057506001600160e01b03198216635b5e139f60e01b145b8061096457506301ffc9a760e01b6001600160e01b0319831614610964565b60006117cf611ae2565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bce82611582565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611c6d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016109b3565b6001611c80611c7b87612596565b612613565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611cce573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611d03828461338b565b9392505050565b60005b8160ff168160ff161015611d3957611d2733610f6661200b565b80611d3181613493565b915050611d0d565b50601954601854611d4d9160ff16906133a3565b611d556117c4565b611d5f91906134b3565b610f8757610f87600161096a565b6000818152600960205260408120546001600160a01b0316611de65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b6000611df183611582565b9050806001600160a01b0316846001600160a01b03161480611e2c5750836001600160a01b0316611e2184610a61565b6001600160a01b0316145b80611e5c57506001600160a01b038082166000908152600c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e7782611582565b6001600160a01b031614611edb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109b3565b6001600160a01b038216611f3d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b3565b611f48838383612643565b611f53600082611b99565b6001600160a01b0383166000908152600a60205260408120805460019290611f7c9084906133d6565b90915550506001600160a01b0382166000908152600a60205260408120805460019290611faa90849061338b565b909155505060008181526009602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806120166119c2565b116120635760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c65000000000000000060448201526064016109b3565b600061206e60115490565b90506117cf601180546001019055565b6115138282604051806020016040528060008152506126fb565b6120a0611b8f565b6001600160a01b03166120bb6003546001600160a01b031690565b6001600160a01b0316146120e15760405162461bcd60e51b81526004016109b390613213565b60005b81518163ffffffff1610156115135761211b828263ffffffff168151811061210e5761210e613509565b602002602001015161212d565b806121258161346f565b9150506120e4565b612135611b8f565b6001600160a01b03166121506003546001600160a01b031690565b6001600160a01b0316146121765760405162461bcd60e51b81526004016109b390613213565b6001600160a01b038116600081815260046020908152604091829020805460ff1916905590519182527ff1abf01a1043b7c244d128e8595cf0c1d10743b022b03a02dffd8ca3bf729f5a9101611108565b6121cf611b8f565b6001600160a01b03166121ea6003546001600160a01b031690565b6001600160a01b0316146122105760405162461bcd60e51b81526004016109b390613213565b600555565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122c95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b3565b6001600160a01b038381166000818152600c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612341848484611e64565b61234d8484848461272e565b61181f5760405162461bcd60e51b81526004016109b3906131c1565b60608161238d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123b757806123a181613454565b91506123b09050600a836133a3565b9150612391565b60008167ffffffffffffffff8111156123d2576123d261351f565b6040519080825280601f01601f1916602001820160405280156123fc576020820181803683370190505b5090505b8415611e5c576124116001836133d6565b915061241e600a866134b3565b61242990603061338b565b60f81b81838151811061243e5761243e613509565b60200101906001600160f81b031916908160001a905350612460600a866133a3565b9450612400565b61246f611b8f565b6001600160a01b031661248a6003546001600160a01b031690565b6001600160a01b0316146124b05760405162461bcd60e51b81526004016109b390613213565b60005b81518163ffffffff16101561151357600160046000848463ffffffff16815181106124e0576124e0613509565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd1bba68c128cc3f427e5831b3c6f99f480b6efa6b9e80c757768f6124158cc3f828263ffffffff168151811061255857612558613509565b602002602001015160405161257c91906001600160a01b0391909116815260200190565b60405180910390a18061258e8161346f565b9150506124b3565b600060405180608001604052806043815260200161354c60439139805160209182012083518483015160408087015180519086012090516125f6950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061261e60015490565b60405161190160f01b60208201526022810191909152604281018390526062016125f6565b6001600160a01b03831661269e5761269981600f80546000838152601060205260408120829055600182018355919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020155565b6126c1565b816001600160a01b0316836001600160a01b0316146126c1576126c18382612842565b6001600160a01b0382166126d857610c19816128df565b826001600160a01b0316826001600160a01b031614610c1957610c19828261298e565b61270583836129d2565b612712600084848461272e565b610c195760405162461bcd60e51b81526004016109b3906131c1565b60006001600160a01b0384163b1561283757836001600160a01b031663150b7a02612757611b8f565b8786866040518563ffffffff1660e01b8152600401612779949392919061312d565b602060405180830381600087803b15801561279357600080fd5b505af19250505080156127c3575060408051601f3d908101601f191682019092526127c091810190612f12565b60015b61281d573d8080156127f1576040519150601f19603f3d011682016040523d82523d6000602084013e6127f6565b606091505b5080516128155760405162461bcd60e51b81526004016109b3906131c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e5c565b506001949350505050565b6000600161284f8461164b565b61285991906133d6565b6000838152600e60205260409020549091508082146128ac576001600160a01b0384166000908152600d602090815260408083208584528252808320548484528184208190558352600e90915290208190555b506000918252600e602090815260408084208490556001600160a01b039094168352600d81528383209183525290812055565b600f546000906128f1906001906133d6565b600083815260106020526040812054600f805493945090928490811061291957612919613509565b9060005260206000200154905080600f838154811061293a5761293a613509565b600091825260208083209091019290925582815260109091526040808220849055858252812055600f805480612972576129726134f3565b6001900381819060005260206000200160009055905550505050565b60006129998361164b565b6001600160a01b039093166000908152600d602090815260408083208684528252808320859055938252600e9052919091209190915550565b6001600160a01b038216612a285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b3565b6000818152600960205260409020546001600160a01b031615612a8d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b3565b612a9960008383612643565b6001600160a01b0382166000908152600a60205260408120805460019290612ac290849061338b565b909155505060008181526009602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b2c90613419565b90600052602060002090601f016020900481019282612b4e5760008555612b94565b82601f10612b6757805160ff1916838001178555612b94565b82800160010185558215612b94579182015b82811115612b94578251825591602001919060010190612b79565b50612ba0929150612ba4565b5090565b5b80821115612ba05760008155600101612ba5565b600067ffffffffffffffff831115612bd357612bd361351f565b612be6601f8401601f191660200161335a565b9050828152838383011115612bfa57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612c2857600080fd5b919050565b80358015158114612c2857600080fd5b600082601f830112612c4e57600080fd5b611d0383833560208501612bb9565b803560ff81168114612c2857600080fd5b600060208284031215612c8057600080fd5b611d0382612c11565b60008060408385031215612c9c57600080fd5b612ca583612c11565b9150612cb360208401612c11565b90509250929050565b600080600060608486031215612cd157600080fd5b612cda84612c11565b9250612ce860208501612c11565b9150604084013590509250925092565b60008060008060808587031215612d0e57600080fd5b612d1785612c11565b9350612d2560208601612c11565b925060408501359150606085013567ffffffffffffffff811115612d4857600080fd5b612d5487828801612c3d565b91505092959194509250565b60008060408385031215612d7357600080fd5b612d7c83612c11565b9150612cb360208401612c2d565b600080600080600060a08688031215612da257600080fd5b612dab86612c11565b9450602086013567ffffffffffffffff811115612dc757600080fd5b612dd388828901612c3d565b9450506040860135925060608601359150612df060808701612c5d565b90509295509295909350565b60008060408385031215612e0f57600080fd5b612e1883612c11565b946020939093013593505050565b60006020808385031215612e3957600080fd5b823567ffffffffffffffff80821115612e5157600080fd5b818501915085601f830112612e6557600080fd5b813581811115612e7757612e7761351f565b8060051b9150612e8884830161335a565b8181528481019084860184860187018a1015612ea357600080fd5b600095505b83861015612ecd57612eb981612c11565b835260019590950194918601918601612ea8565b5098975050505050505050565b600060208284031215612eec57600080fd5b611d0382612c2d565b600060208284031215612f0757600080fd5b8135611d0381613535565b600060208284031215612f2457600080fd5b8151611d0381613535565b600060208284031215612f4157600080fd5b813567ffffffffffffffff811115612f5857600080fd5b8201601f81018413612f6957600080fd5b611e5c84823560208401612bb9565b600060208284031215612f8a57600080fd5b5035919050565b600060208284031215612fa357600080fd5b611d0382612c5d565b60008151808452612fc48160208601602086016133ed565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612ff257607f831692505b602080841082141561301457634e487b7160e01b600052602260045260246000fd5b818015613028576001811461303957613066565b60ff19861689528489019650613066565b60008881526020902060005b8681101561305e5781548b820152908501908301613045565b505084890196505b50505050505092915050565b600082516130848184602087016133ed565b9190910192915050565b600083516130a08184602088016133ed565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60006130d18286612fd8565b84516130e18183602089016133ed565b6130ed81830186612fd8565b979650505050505050565b6001600160a01b0384811682528316602082015260606040820181905260009061312490830184612fac565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061316090830184612fac565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131a257835183529284019291840191600101613186565b50909695505050505050565b602081526000611d036020830184612fac565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526032908201527f416c6572743a20596f75206e65656420746f20706179206174206c65617374206040820152713a3432903932b8bab4b932b21031b7b9ba1760711b606082015260800190565b60208082526023908201527f416c6572743a20536f727279206e6f7420656e6f75676820746f6b656e73206c60408201526219599d60ea1b606082015260800190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133835761338361351f565b604052919050565b6000821982111561339e5761339e6134c7565b500190565b6000826133b2576133b26134dd565b500490565b60008160001904831182151516156133d1576133d16134c7565b500290565b6000828210156133e8576133e86134c7565b500390565b60005b838110156134085781810151838201526020016133f0565b8381111561181f5750506000910152565b600181811c9082168061342d57607f821691505b6020821081141561344e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613468576134686134c7565b5060010190565b600063ffffffff80831681811415613489576134896134c7565b6001019392505050565b600060ff821660ff8114156134aa576134aa6134c7565b60010192915050565b6000826134c2576134c26134dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8757600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220fa44dd6e32972cae5d0db211bb118094990625ea03b99dd2f3b049ed77a8149764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000059630f709c9fd59d17fb9bd654c779434793d09c0000000000000000000000009361dd71f7f29ab8c92a87b271ad41f34100428c0000000000000000000000005d4bc6ea2e35d22e65dfcb09679bad08e8c2a71d00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000154c6f7374203252492053686f726520506172742031000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c32533100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6e66742e7269636869736c616e642e696f2f6574682f6c6f737432726973686f72652f6d657461646174612f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Lost 2RI Shore Part 1
Arg [1] : _symbol (string): L2S1
Arg [2] : _uri (string): https://nft.richisland.io/eth/lost2rishore/metadata/
Arg [3] : _artistAddress (address): 0x59630f709c9FD59D17FB9bD654c779434793D09c
Arg [4] : _clientAddress (address): 0x9361DD71F7F29ab8c92a87B271AD41F34100428c
Arg [5] : _paymentAddress (address): 0x5D4Bc6eA2e35d22E65dfcB09679BAD08e8c2a71D

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000059630f709c9fd59d17fb9bd654c779434793d09c
Arg [4] : 0000000000000000000000009361dd71f7f29ab8c92a87b271ad41f34100428c
Arg [5] : 0000000000000000000000005d4bc6ea2e35d22e65dfcb09679bad08e8c2a71d
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [8] : 4c6f7374203252492053686f7265205061727420310000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 4c32533100000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [12] : 68747470733a2f2f6e66742e7269636869736c616e642e696f2f6574682f6c6f
Arg [13] : 737432726973686f72652f6d657461646174612f000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68604:5758:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60175:224;;;;;;;;;;-1:-1:-1;60175:224:0;;;;;:::i;:::-;;:::i;:::-;;;11264:14:1;;11257:22;11239:41;;11227:2;11212:18;60175:224:0;;;;;;;;20825:81;;;;;;;;;;-1:-1:-1;20825:81:0;;;;;:::i;:::-;;:::i;:::-;;44990:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46549:221::-;;;;;;;;;;-1:-1:-1;46549:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9265:32:1;;;9247:51;;9235:2;9220:18;46549:221:0;9101:203:1;46072:411:0;;;;;;;;;;-1:-1:-1;46072:411:0;;;;;:::i;:::-;;:::i;11944:1151::-;;;;;;:::i;:::-;;:::i;2060:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2060:43:0;;;;;70120:378;;;:::i;67157:100::-;;;;;;;;;;-1:-1:-1;67237:12:0;;67157:100;;;11437:25:1;;;11425:2;11410:18;67157:100:0;11291:177:1;3055:101:0;;;;;;;;;;-1:-1:-1;3133:15:0;;3055:101;;47299:339;;;;;;;;;;-1:-1:-1;47299:339:0;;;;;:::i;:::-;;:::i;71310:326::-;;;;;;;;;;-1:-1:-1;71310:326:0;;;;;:::i;:::-;;:::i;23809:159::-;;;;;;;;;;-1:-1:-1;23809:159:0;;;;;:::i;:::-;;:::i;68774:36::-;;;;;;;;;;-1:-1:-1;68774:36:0;;;;-1:-1:-1;;;;;68774:36:0;;;13521:107;;;;;;;;;;-1:-1:-1;13521:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;13608:12:0;13574:13;13608:12;;;:6;:12;;;;;;;13521:107;60483:256;;;;;;;;;;-1:-1:-1;60483:256:0;;;;;:::i;:::-;;:::i;22999:180::-;;;;;;;;;;-1:-1:-1;22999:180:0;;;;;:::i;:::-;;:::i;3164:161::-;;;;;;;;;;-1:-1:-1;3278:9:0;3164:161;;22787:119;;;;;;;;;;-1:-1:-1;22787:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;22873:17:0;22849:4;22873:17;;;:9;:17;;;;;;;;:25;;:17;:25;;22787:119;70942:229;;;;;;;;;;-1:-1:-1;70942:229:0;;;;;:::i;:::-;;:::i;74165:194::-;;;:::i;47709:185::-;;;;;;;;;;-1:-1:-1;47709:185:0;;;;;:::i;:::-;;:::i;73667:392::-;;;;;;;;;;-1:-1:-1;73667:392:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21710:102::-;;;;;;;;;;-1:-1:-1;21793:11:0;;21710:102;;69814:298;;;;;;;;;;;;;:::i;61005:233::-;;;;;;;;;;-1:-1:-1;61005:233:0;;;;;:::i;:::-;;:::i;72153:115::-;;;;;;;;;;-1:-1:-1;72153:115:0;;;;;:::i;:::-;;:::i;20654:26::-;;;;;;;;;;-1:-1:-1;20654:26:0;;;;;;;;72420:131;;;;;;;;;;-1:-1:-1;72420:131:0;;;;;:::i;:::-;;:::i;68860:37::-;;;;;;;;;;-1:-1:-1;68860:37:0;;;;-1:-1:-1;;;;;68860:37:0;;;44684:239;;;;;;;;;;-1:-1:-1;44684:239:0;;;;;:::i;:::-;;:::i;21596:106::-;;;;;;;;;;-1:-1:-1;21596:106:0;;;;;:::i;:::-;;:::i;44414:208::-;;;;;;;;;;-1:-1:-1;44414:208:0;;;;;:::i;:::-;;:::i;19620:103::-;;;;;;;;;;;;;:::i;18969:87::-;;;;;;;;;;-1:-1:-1;19042:6:0;;-1:-1:-1;;;;;19042:6:0;18969:87;;70506:428;;;;;;:::i;:::-;;:::i;45159:104::-;;;;;;;;;;;;;:::i;22086:41::-;;;;;;;;;;-1:-1:-1;22086:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;67348:99;;;;;;;;;;;;;:::i;46842:155::-;;;;;;;;;;-1:-1:-1;46842:155:0;;;;;:::i;:::-;;:::i;47965:328::-;;;;;;;;;;-1:-1:-1;47965:328:0;;;;;:::i;:::-;;:::i;68944:37::-;;;;;;;;;;;;;:::i;72664:303::-;;;;;;;;;;-1:-1:-1;72664:303:0;;;;;:::i;:::-;;:::i;68906:31::-;;;;;;;;;;;;;:::i;68817:36::-;;;;;;;;;;-1:-1:-1;68817:36:0;;;;-1:-1:-1;;;;;68817:36:0;;;73405:151;;;;;;;;;;-1:-1:-1;73405:151:0;;;;;:::i;:::-;;:::i;67553:115::-;;;;;;;;;;;;;:::i;23280:149::-;;;;;;;;;;-1:-1:-1;23280:149:0;;;;;:::i;:::-;;:::i;47068:164::-;;;;;;;;;;-1:-1:-1;47068:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;47189:25:0;;;47165:4;47189:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47068:164;19878:201;;;;;;;;;;-1:-1:-1;19878:201:0;;;;;:::i;:::-;;:::i;22041:36::-;;;;;;;;;;-1:-1:-1;22041:36:0;;;;-1:-1:-1;;;22041:36:0;;;;;;60175:224;60277:4;-1:-1:-1;;;;;;60301:50:0;;-1:-1:-1;;;60301:50:0;;:90;;;60355:36;60379:11;60355:23;:36::i;:::-;60294:97;60175:224;-1:-1:-1;;60175:224:0:o;20825:81::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;;;;;;;;;20883:6:::1;:15:::0;;-1:-1:-1;;20883:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20825:81::o;44990:100::-;45044:13;45077:5;45070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44990:100;:::o;46549:221::-;46625:7;49892:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49892:16:0;46645:73;;;;-1:-1:-1;;;46645:73:0;;19244:2:1;46645:73:0;;;19226:21:1;19283:2;19263:18;;;19256:30;19322:34;19302:18;;;19295:62;-1:-1:-1;;;19373:18:1;;;19366:42;19425:19;;46645:73:0;19042:408:1;46645:73:0;-1:-1:-1;46738:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46738:24:0;;46549:221::o;46072:411::-;46153:13;46169:23;46184:7;46169:14;:23::i;:::-;46153:39;;46217:5;-1:-1:-1;;;;;46211:11:0;:2;-1:-1:-1;;;;;46211:11:0;;;46203:57;;;;-1:-1:-1;;;46203:57:0;;20420:2:1;46203:57:0;;;20402:21:1;20459:2;20439:18;;;20432:30;20498:34;20478:18;;;20471:62;-1:-1:-1;;;20549:18:1;;;20542:31;20590:19;;46203:57:0;20218:397:1;46203:57:0;46311:5;-1:-1:-1;;;;;46295:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;46295:21:0;;:62;;;;46320:37;46337:5;46344:12;:10;:12::i;46320:37::-;46273:168;;;;-1:-1:-1;;;46273:168:0;;17637:2:1;46273:168:0;;;17619:21:1;17676:2;17656:18;;;17649:30;17715:34;17695:18;;;17688:62;17786:26;17766:18;;;17759:54;17830:19;;46273:168:0;17435:420:1;46273:168:0;46454:21;46463:2;46467:7;46454:8;:21::i;:::-;46142:341;46072:411;;:::o;11944:1151::-;12202:152;;;12145:12;12202:152;;;;;-1:-1:-1;;;;;12240:19:0;;12170:29;12240:19;;;:6;:19;;;;;;;;;12202:152;;;;;;;;;;;12389:45;12247:11;12202:152;12417:4;12423;12429;12389:6;:45::i;:::-;12367:128;;;;-1:-1:-1;;;12367:128:0;;20018:2:1;12367:128:0;;;20000:21:1;20057:2;20037:18;;;20030:30;20096:34;20076:18;;;20069:62;-1:-1:-1;;;20147:18:1;;;20140:31;20188:19;;12367:128:0;19816:397:1;12367:128:0;-1:-1:-1;;;;;12584:19:0;;;;;;:6;:19;;;;;;:26;;12608:1;12584:23;:26::i;:::-;-1:-1:-1;;;;;12562:19:0;;;;;;:6;:19;;;;;;;:48;;;;12628:126;;;;;12569:11;;12700:10;;12726:17;;12628:126;:::i;:::-;;;;;;;;12865:12;12879:23;12914:4;-1:-1:-1;;;;;12906:18:0;12956:17;12975:11;12939:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12939:48:0;;;;;;;;;;12906:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12864:134;;;;13017:7;13009:48;;;;-1:-1:-1;;;13009:48:0;;14586:2:1;13009:48:0;;;14568:21:1;14625:2;14605:18;;;14598:30;14664;14644:18;;;14637:58;14712:18;;13009:48:0;14384:352:1;13009:48:0;13077:10;11944:1151;-1:-1:-1;;;;;;;;11944:1151:0:o;70120:378::-;70173:6;;;;70172:7;70164:38;;;;-1:-1:-1;;;70164:38:0;;;;;;;:::i;:::-;70255:10;;70235:12;:10;:12::i;:::-;:16;;70250:1;70235:16;:::i;:::-;:30;;70213:115;;;;-1:-1:-1;;;70213:115:0;;;;;;;:::i;:::-;21793:11;;70361:9;:28;;70339:128;;;;-1:-1:-1;;;70339:128:0;;;;;;;:::i;:::-;70478:12;70488:1;70478:9;:12::i;:::-;70120:378::o;47299:339::-;47494:41;47513:12;:10;:12::i;:::-;47527:7;47494:18;:41::i;:::-;47486:103;;;;-1:-1:-1;;;47486:103:0;;;;;;;:::i;:::-;47602:28;47612:4;47618:2;47622:7;47602:9;:28::i;71310:326::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;71401:8:::1;71396:181;71419:10;:17;71415:1;:21;;;71396:181;;;71482:10;;71462:12;:10;:12::i;:::-;:16;::::0;71477:1:::1;71462:16;:::i;:::-;:30;71458:108;;71513:37;71523:10;71534:1;71523:13;;;;;;;;;;:::i;:::-;;;;;;;71538:11;:9;:11::i;:::-;71513:9;:37::i;:::-;71438:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71396:181;;;;71587:41;71617:10;71587:29;:41::i;:::-;71310:326:::0;:::o;23809:159::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;23924:36:::1;23954:5;23924:29;:36::i;60483:256::-:0;60580:7;60616:23;60633:5;60616:16;:23::i;:::-;60608:5;:31;60600:87;;;;-1:-1:-1;;;60600:87:0;;12946:2:1;60600:87:0;;;12928:21:1;12985:2;12965:18;;;12958:30;13024:34;13004:18;;;12997:62;-1:-1:-1;;;13075:18:1;;;13068:41;13126:19;;60600:87:0;12744:407:1;60600:87:0;-1:-1:-1;;;;;;60705:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;60483:256::o;22999:180::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;23096:17:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;23096:24:0::1;-1:-1:-1::0;;;;23096:24:0;;::::1;;::::0;;23136:35:::1;::::0;::::1;::::0;::::1;::::0;23116:4;11264:14:1;11257:22;11239:41;;11227:2;11212:18;;11099:187;23136:35:0::1;;;;;;;;22999:180:::0;:::o;70942:229::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;71064:10:::1;;71055:4;71047:13;;71032:12;:10;:12::i;:::-;:28;;;;:::i;:::-;:42;;71010:127;;;;-1:-1:-1::0;;;71010:127:0::1;;;;;;;:::i;:::-;71148:15;71158:4;71148:9;:15::i;74165:194::-:0;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;74250:14:::1;::::0;74242:62:::1;::::0;74224:12:::1;::::0;-1:-1:-1;;;;;74250:14:0::1;::::0;74278:21:::1;::::0;74224:12;74242:62;74224:12;74242:62;74278:21;74250:14;74242:62:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74223:81;;;74323:7;74315:36;;;::::0;-1:-1:-1;;;74315:36:0;;20822:2:1;74315:36:0::1;::::0;::::1;20804:21:1::0;20861:2;20841:18;;;20834:30;-1:-1:-1;;;20880:18:1;;;20873:46;20936:18;;74315:36:0::1;20620:340:1::0;47709:185:0;47847:39;47864:4;47870:2;47874:7;47847:39;;;;;;;;;;;;:16;:39::i;73667:392::-;73756:16;73790:23;73816:17;73826:6;73816:9;:17::i;:::-;73790:43;;73844:25;73886:15;73872:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73872:30:0;;73844:58;;73918:9;73913:113;73933:15;73929:1;:19;73913:113;;;73984:30;74004:6;74012:1;73984:19;:30::i;:::-;73970:8;73979:1;73970:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;73950:3;;;;:::i;:::-;;;;73913:113;;;-1:-1:-1;74043:8:0;73667:392;-1:-1:-1;;;73667:392:0:o;69814:298::-;22430:17;;-1:-1:-1;;;22430:17:0;;;;:25;;22451:4;22430:25;22426:100;;;22475:10;22465:21;;;;:9;:21;;;;;;;;22457:69;;;;-1:-1:-1;;;22457:69:0;;23168:2:1;22457:69:0;;;23150:21:1;23207:2;23187:18;;;23180:30;23246:34;23226:18;;;23219:62;-1:-1:-1;;;23297:18:1;;;23290:33;23340:19;;22457:69:0;22966:399:1;22457:69:0;69876:6:::1;::::0;::::1;;69875:7;69867:38;;;;-1:-1:-1::0;;;69867:38:0::1;;;;;;;:::i;:::-;69958:10;;69938:12;:10;:12::i;:::-;:16;::::0;69953:1:::1;69938:16;:::i;:::-;:30;;69916:115;;;;-1:-1:-1::0;;;69916:115:0::1;;;;;;;:::i;:::-;70042:12;70052:1;70042:9;:12::i;:::-;70065:39;70093:10;70065:27;:39::i;61005:233::-:0;61080:7;61116:30;60903:10;:17;;60815:113;61116:30;61108:5;:38;61100:95;;;;-1:-1:-1;;;61100:95:0;;21585:2:1;61100:95:0;;;21567:21:1;21624:2;21604:18;;;21597:30;21663:34;21643:18;;;21636:62;-1:-1:-1;;;21714:18:1;;;21707:42;21766:19;;61100:95:0;21383:408:1;61100:95:0;61213:10;61224:5;61213:17;;;;;;;;:::i;:::-;;;;;;;;;61206:24;;61005:233;;;:::o;72153:115::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;72232:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;72153:115:::0;:::o;72420:131::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;72502:14:::1;:41:::0;;-1:-1:-1;;;;;;72502:41:0::1;-1:-1:-1::0;;;;;72502:41:0;;;::::1;::::0;;;::::1;::::0;;72420:131::o;44684:239::-;44756:7;44792:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44792:16:0;44827:19;44819:73;;;;-1:-1:-1;;;44819:73:0;;18473:2:1;44819:73:0;;;18455:21:1;18512:2;18492:18;;;18485:30;18551:34;18531:18;;;18524:62;-1:-1:-1;;;18602:18:1;;;18595:39;18651:19;;44819:73:0;18271:405:1;21596:106:0;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;21667:27:::1;21682:11;21667:14;:27::i;44414:208::-:0;44486:7;-1:-1:-1;;;;;44514:19:0;;44506:74;;;;-1:-1:-1;;;44506:74:0;;18062:2:1;44506:74:0;;;18044:21:1;18101:2;18081:18;;;18074:30;18140:34;18120:18;;;18113:62;-1:-1:-1;;;18191:18:1;;;18184:40;18241:19;;44506:74:0;17860:406:1;44506:74:0;-1:-1:-1;;;;;;44598:16:0;;;;;:9;:16;;;;;;;44414:208::o;19620:103::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;19685:30:::1;19712:1;19685:18;:30::i;70506:428::-:0;70576:6;;;;70575:7;70567:38;;;;-1:-1:-1;;;70567:38:0;;;;;;;:::i;:::-;70670:10;;70661:4;70653:13;;70638:12;:10;:12::i;:::-;:28;;;;:::i;:::-;:42;;70616:127;;;;-1:-1:-1;;;70616:127:0;;;;;;;:::i;:::-;70816:4;70808:13;;70790:15;21793:11;;;21710:102;70790:15;:31;;;;:::i;:::-;70776:9;:46;;70754:146;;;;-1:-1:-1;;;70754:146:0;;;;;;;:::i;45159:104::-;45215:13;45248:7;45241:14;;;;;:::i;67348:99::-;67391:7;67418:21;:11;999:14;;907:114;67418:21;67411:28;;67348:99;:::o;46842:155::-;46937:52;46956:12;:10;:12::i;:::-;46970:8;46980;46937:18;:52::i;47965:328::-;48140:41;48159:12;:10;:12::i;:::-;48173:7;48140:18;:41::i;:::-;48132:103;;;;-1:-1:-1;;;48132:103:0;;;;;;;:::i;:::-;48246:39;48260:4;48266:2;48270:7;48279:5;48246:13;:39::i;:::-;47965:328;;;;:::o;68944:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72664:303::-;49868:4;49892:16;;;:7;:16;;;;;;72766:13;;-1:-1:-1;;;;;49892:16:0;72797:63;;;;-1:-1:-1;;;72797:63:0;;13777:2:1;72797:63:0;;;13759:21:1;13816:2;13796:18;;;13789:30;13855:34;13835:18;;;13828:62;-1:-1:-1;;;13906:18:1;;;13899:31;13947:19;;72797:63:0;13575:397:1;72797:63:0;72902:12;72916:26;72933:8;72916:16;:26::i;:::-;72944:13;72885:73;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72871:88;;72664:303;;;:::o;68906:31::-;;;;;;;:::i;73405:151::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;73515:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;67553:115::-:0;67605:7;67648:12;:10;:12::i;:::-;67237;;67632:28;;;;:::i;23280:149::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;23390:31:::1;23415:5;23390:24;:31::i;19878:201::-:0;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19967:22:0;::::1;19959:73;;;::::0;-1:-1:-1;;;19959:73:0;;14179:2:1;19959:73:0::1;::::0;::::1;14161:21:1::0;14218:2;14198:18;;;14191:30;14257:34;14237:18;;;14230:62;-1:-1:-1;;;14308:18:1;;;14301:36;14354:19;;19959:73:0::1;13977:402:1::0;19959:73:0::1;20043:28;20062:8;20043:18;:28::i;14265:618::-:0;14309:22;14348:10;14370:4;14348:27;14344:508;;;14392:18;14413:8;;14392:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;14452:8:0;14663:17;14657:24;-1:-1:-1;;;;;14631:134:0;;-1:-1:-1;14344:508:0;;-1:-1:-1;14344:508:0;;-1:-1:-1;14829:10:0;14344:508;14265:618;:::o;44045:305::-;44147:4;-1:-1:-1;;;;;;44184:40:0;;-1:-1:-1;;;44184:40:0;;:105;;-1:-1:-1;;;;;;;44241:48:0;;-1:-1:-1;;;44241:48:0;44184:105;:158;;;-1:-1:-1;;;;;;;;;;35828:40:0;;;44306:36;35719:157;73116:120;73170:14;73204:24;:22;:24::i;53949:174::-;54024:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;54024:29:0;-1:-1:-1;;;;;54024:29:0;;;;;;;;:24;;54078:23;54024:24;54078:14;:23::i;:::-;-1:-1:-1;;;;;54069:46:0;;;;;;;;;;;53949:174;;:::o;13636:486::-;13814:4;-1:-1:-1;;;;;13839:20:0;;13831:70;;;;-1:-1:-1;;;13831:70:0;;17231:2:1;13831:70:0;;;17213:21:1;17270:2;17250:18;;;17243:30;17309:34;17289:18;;;17282:62;-1:-1:-1;;;17360:18:1;;;17353:35;17405:19;;13831:70:0;17029:401:1;13831:70:0;13955:159;13983:47;14002:27;14022:6;14002:19;:27::i;:::-;13983:18;:47::i;:::-;13955:159;;;;;;;;;;;;12122:25:1;;;;12195:4;12183:17;;12163:18;;;12156:45;12217:18;;;12210:34;;;12260:18;;;12253:34;;;12094:19;;13955:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13932:182:0;:6;-1:-1:-1;;;;;13932:182:0;;13912:202;;13636:486;;;;;;;:::o;6821:98::-;6879:7;6906:5;6910:1;6906;:5;:::i;:::-;6899:12;6821:98;-1:-1:-1;;;6821:98:0:o;71726:307::-;71781:7;71776:94;71798:4;71794:8;;:1;:8;;;71776:94;;;71824:34;71834:10;71846:11;:9;:11::i;71824:34::-;71804:3;;;;:::i;:::-;;;;71776:94;;;-1:-1:-1;71962:9:0;;71949:10;;:22;;71962:9;;;71949:22;:::i;:::-;71933:12;:10;:12::i;:::-;:39;;;;:::i;:::-;71929:97;;71994:20;72009:4;71994:14;:20::i;50097:348::-;50190:4;49892:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49892:16:0;50207:73;;;;-1:-1:-1;;;50207:73:0;;16818:2:1;50207:73:0;;;16800:21:1;16857:2;16837:18;;;16830:30;16896:34;16876:18;;;16869:62;-1:-1:-1;;;16947:18:1;;;16940:42;16999:19;;50207:73:0;16616:408:1;50207:73:0;50291:13;50307:23;50322:7;50307:14;:23::i;:::-;50291:39;;50360:5;-1:-1:-1;;;;;50349:16:0;:7;-1:-1:-1;;;;;50349:16:0;;:51;;;;50393:7;-1:-1:-1;;;;;50369:31:0;:20;50381:7;50369:11;:20::i;:::-;-1:-1:-1;;;;;50369:31:0;;50349:51;:87;;;-1:-1:-1;;;;;;47189:25:0;;;47165:4;47189:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50404:32;50341:96;50097:348;-1:-1:-1;;;;50097:348:0:o;53206:625::-;53365:4;-1:-1:-1;;;;;53338:31:0;:23;53353:7;53338:14;:23::i;:::-;-1:-1:-1;;;;;53338:31:0;;53330:81;;;;-1:-1:-1;;;53330:81:0;;14943:2:1;53330:81:0;;;14925:21:1;14982:2;14962:18;;;14955:30;15021:34;15001:18;;;14994:62;-1:-1:-1;;;15072:18:1;;;15065:35;15117:19;;53330:81:0;14741:401:1;53330:81:0;-1:-1:-1;;;;;53430:16:0;;53422:65;;;;-1:-1:-1;;;53422:65:0;;15706:2:1;53422:65:0;;;15688:21:1;15745:2;15725:18;;;15718:30;15784:34;15764:18;;;15757:62;-1:-1:-1;;;15835:18:1;;;15828:34;15879:19;;53422:65:0;15504:400:1;53422:65:0;53500:39;53521:4;53527:2;53531:7;53500:20;:39::i;:::-;53604:29;53621:1;53625:7;53604:8;:29::i;:::-;-1:-1:-1;;;;;53646:15:0;;;;;;:9;:15;;;;;:20;;53665:1;;53646:15;:20;;53665:1;;53646:20;:::i;:::-;;;;-1:-1:-1;;;;;;;53677:13:0;;;;;;:9;:13;;;;;:18;;53694:1;;53677:13;:18;;53694:1;;53677:18;:::i;:::-;;;;-1:-1:-1;;53706:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53706:21:0;-1:-1:-1;;;;;53706:21:0;;;;;;;;;53745:27;;53706:16;;53745:27;;;;;;;46142:341;46072:411;;:::o;67778:192::-;67844:7;68112:1;68088:21;:19;:21::i;:::-;:25;68080:62;;;;-1:-1:-1;;;68080:62:0;;16465:2:1;68080:62:0;;;16447:21:1;16504:2;16484:18;;;16477:30;16543:26;16523:18;;;16516:54;16587:18;;68080:62:0;16263:348:1;68080:62:0;67864:13:::1;67880:21;:11;999:14:::0;;907:114;67880:21:::1;67864:37;;67914:23;:11;1118:19:::0;;1136:1;1118:19;;;1029:127;50787:110;50863:26;50873:2;50877:7;50863:26;;;;;;;;;;;;:9;:26::i;23976:229::-;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;24097:8:::1;24092:106;24115:5;:12;24111:1;:16;;;24092:106;;;24149:37;24177:5;24183:1;24177:8;;;;;;;;;;:::i;:::-;;;;;;;24149:27;:37::i;:::-;24129:3:::0;::::1;::::0;::::1;:::i;:::-;;;;24092:106;;24213:185:::0;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24318:16:0;::::1;24337:5;24318:16:::0;;;:9:::1;:16;::::0;;;;;;;;:24;;-1:-1:-1;;24318:24:0::1;::::0;;24358:32;;9247:51:1;;;24358:32:0::1;::::0;9220:18:1;24358:32:0::1;9101:203:1::0;21376:105:0;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;21448:11:::1;:25:::0;21376:105::o;20239:191::-;20332:6;;;-1:-1:-1;;;;;20349:17:0;;;-1:-1:-1;;;;;;20349:17:0;;;;;;;20382:40;;20332:6;;;20349:17;20332:6;;20382:40;;20313:16;;20382:40;20302:128;20239:191;:::o;54265:315::-;54420:8;-1:-1:-1;;;;;54411:17:0;:5;-1:-1:-1;;;;;54411:17:0;;;54403:55;;;;-1:-1:-1;;;54403:55:0;;16111:2:1;54403:55:0;;;16093:21:1;16150:2;16130:18;;;16123:30;16189:27;16169:18;;;16162:55;16234:18;;54403:55:0;15909:349:1;54403:55:0;-1:-1:-1;;;;;54469:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;54469:46:0;;;;;;;;;;54531:41;;11239::1;;;54531::0;;11212:18:1;54531:41:0;;;;;;;54265:315;;;:::o;49175:::-;49332:28;49342:4;49348:2;49352:7;49332:9;:28::i;:::-;49379:48;49402:4;49408:2;49412:7;49421:5;49379:22;:48::i;:::-;49371:111;;;;-1:-1:-1;;;49371:111:0;;;;;;;:::i;15255:723::-;15311:13;15532:10;15528:53;;-1:-1:-1;;15559:10:0;;;;;;;;;;;;-1:-1:-1;;;15559:10:0;;;;;15255:723::o;15528:53::-;15606:5;15591:12;15647:78;15654:9;;15647:78;;15680:8;;;;:::i;:::-;;-1:-1:-1;15703:10:0;;-1:-1:-1;15711:2:0;15703:10;;:::i;:::-;;;15647:78;;;15735:19;15767:6;15757:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15757:17:0;;15735:39;;15785:154;15792:10;;15785:154;;15819:11;15829:1;15819:11;;:::i;:::-;;-1:-1:-1;15888:10:0;15896:2;15888:5;:10;:::i;:::-;15875:24;;:2;:24;:::i;:::-;15862:39;;15845:6;15852;15845:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15845:56:0;;;;;;;;-1:-1:-1;15916:11:0;15925:2;15916:11;;:::i;:::-;;;15785:154;;23437:266;19200:12;:10;:12::i;:::-;-1:-1:-1;;;;;19189:23:0;:7;19042:6;;-1:-1:-1;;;;;19042:6:0;;18969:87;19189:7;-1:-1:-1;;;;;19189:23:0;;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;23553:8:::1;23548:148;23571:5;:12;23567:1;:16;;;23548:148;;;23627:4;23605:9;:19;23615:5;23621:1;23615:8;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;23605:19:0::1;-1:-1:-1::0;;;;;23605:19:0::1;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;23651:33;23675:5;23681:1;23675:8;;;;;;;;;;:::i;:::-;;;;;;;23651:33;;;;;-1:-1:-1::0;;;;;9265:32:1;;;;9247:51;;9235:2;9220:18;;9101:203;23651:33:0::1;;;;;;;;23585:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23548:148;;13103:410:::0;13213:7;11268:108;;;;;;;;;;;;;;;;;11244:143;;;;;;;13367:12;;13402:11;;;;13446:24;;;;;13436:35;;;;;;13286:204;;;;;11704:25:1;;;11760:2;11745:18;;11738:34;;;;-1:-1:-1;;;;;11808:32:1;11803:2;11788:18;;11781:60;11872:2;11857:18;;11850:34;11691:3;11676:19;;11473:417;13286:204:0;;;;;;;;;;;;;13258:247;;;;;;13238:267;;13103:410;;;:::o;3694:258::-;3793:7;3895:20;3133:15;;;3055:101;3895:20;3866:63;;-1:-1:-1;;;3866:63:0;;;8752:27:1;8795:11;;;8788:27;;;;8831:12;;;8824:28;;;8868:12;;3866:63:0;8494:392:1;61851:589:0;-1:-1:-1;;;;;62057:18:0;;62053:187;;62092:40;62124:7;63267:10;:17;;63240:24;;;;:15;:24;;;;;:44;;;63295:24;;;;;;;;;;;;63163:164;62092:40;62053:187;;;62162:2;-1:-1:-1;;;;;62154:10:0;:4;-1:-1:-1;;;;;62154:10:0;;62150:90;;62181:47;62214:4;62220:7;62181:32;:47::i;:::-;-1:-1:-1;;;;;62254:16:0;;62250:183;;62287:45;62324:7;62287:36;:45::i;62250:183::-;62360:4;-1:-1:-1;;;;;62354:10:0;:2;-1:-1:-1;;;;;62354:10:0;;62350:83;;62381:40;62409:2;62413:7;62381:27;:40::i;51124:321::-;51254:18;51260:2;51264:7;51254:5;:18::i;:::-;51305:54;51336:1;51340:2;51344:7;51353:5;51305:22;:54::i;:::-;51283:154;;;;-1:-1:-1;;;51283:154:0;;;;;;;:::i;55145:799::-;55300:4;-1:-1:-1;;;;;55321:13:0;;25931:19;:23;55317:620;;55373:2;-1:-1:-1;;;;;55357:36:0;;55394:12;:10;:12::i;:::-;55408:4;55414:7;55423:5;55357:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55357:72:0;;;;;;;;-1:-1:-1;;55357:72:0;;;;;;;;;;;;:::i;:::-;;;55353:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55599:13:0;;55595:272;;55642:60;;-1:-1:-1;;;55642:60:0;;;;;;;:::i;55595:272::-;55817:6;55811:13;55802:6;55798:2;55794:15;55787:38;55353:529;-1:-1:-1;;;;;;55480:51:0;-1:-1:-1;;;55480:51:0;;-1:-1:-1;55473:58:0;;55317:620;-1:-1:-1;55921:4:0;55145:799;;;;;;:::o;63954:988::-;64220:22;64270:1;64245:22;64262:4;64245:16;:22::i;:::-;:26;;;;:::i;:::-;64282:18;64303:26;;;:17;:26;;;;;;64220:51;;-1:-1:-1;64436:28:0;;;64432:328;;-1:-1:-1;;;;;64503:18:0;;64481:19;64503:18;;;:12;:18;;;;;;;;:34;;;;;;;;;64554:30;;;;;;:44;;;64671:30;;:17;:30;;;;;:43;;;64432:328;-1:-1:-1;64856:26:0;;;;:17;:26;;;;;;;;64849:33;;;-1:-1:-1;;;;;64900:18:0;;;;;:12;:18;;;;;:34;;;;;;;64893:41;63954:988::o;65237:1079::-;65515:10;:17;65490:22;;65515:21;;65535:1;;65515:21;:::i;:::-;65547:18;65568:24;;;:15;:24;;;;;;65941:10;:26;;65490:46;;-1:-1:-1;65568:24:0;;65490:46;;65941:26;;;;;;:::i;:::-;;;;;;;;;65919:48;;66005:11;65980:10;65991;65980:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;66085:28;;;:15;:28;;;;;;;:41;;;66257:24;;;;;66250:31;66292:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;65308:1008;;;65237:1079;:::o;62741:221::-;62826:14;62843:20;62860:2;62843:16;:20::i;:::-;-1:-1:-1;;;;;62874:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;62919:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;62741:221:0:o;51781:439::-;-1:-1:-1;;;;;51861:16:0;;51853:61;;;;-1:-1:-1;;;51853:61:0;;18883:2:1;51853:61:0;;;18865:21:1;;;18902:18;;;18895:30;18961:34;18941:18;;;18934:62;19013:18;;51853:61:0;18681:356:1;51853:61:0;49868:4;49892:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49892:16:0;:30;51925:58;;;;-1:-1:-1;;;51925:58:0;;15349:2:1;51925:58:0;;;15331:21:1;15388:2;15368:18;;;15361:30;15427;15407:18;;;15400:58;15475:18;;51925:58:0;15147:352:1;51925:58:0;51996:45;52025:1;52029:2;52033:7;51996:20;:45::i;:::-;-1:-1:-1;;;;;52054:13:0;;;;;;:9;:13;;;;;:18;;52071:1;;52054:13;:18;;52071:1;;52054:18;:::i;:::-;;;;-1:-1:-1;;52083:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52083:21:0;-1:-1:-1;;;;;52083:21:0;;;;;;;;52122:33;;52083:16;;;52122:33;;52083:16;;52122:33;72232:28:::1;72153:115:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:220;810:5;863:3;856:4;848:6;844:17;840:27;830:55;;881:1;878;871:12;830:55;903:79;978:3;969:6;956:20;949:4;941:6;937:17;903:79;:::i;993:156::-;1059:20;;1119:4;1108:16;;1098:27;;1088:55;;1139:1;1136;1129:12;1154:186;1213:6;1266:2;1254:9;1245:7;1241:23;1237:32;1234:52;;;1282:1;1279;1272:12;1234:52;1305:29;1324:9;1305:29;:::i;1345:260::-;1413:6;1421;1474:2;1462:9;1453:7;1449:23;1445:32;1442:52;;;1490:1;1487;1480:12;1442:52;1513:29;1532:9;1513:29;:::i;:::-;1503:39;;1561:38;1595:2;1584:9;1580:18;1561:38;:::i;:::-;1551:48;;1345:260;;;;;:::o;1610:328::-;1687:6;1695;1703;1756:2;1744:9;1735:7;1731:23;1727:32;1724:52;;;1772:1;1769;1762:12;1724:52;1795:29;1814:9;1795:29;:::i;:::-;1785:39;;1843:38;1877:2;1866:9;1862:18;1843:38;:::i;:::-;1833:48;;1928:2;1917:9;1913:18;1900:32;1890:42;;1610:328;;;;;:::o;1943:537::-;2038:6;2046;2054;2062;2115:3;2103:9;2094:7;2090:23;2086:33;2083:53;;;2132:1;2129;2122:12;2083:53;2155:29;2174:9;2155:29;:::i;:::-;2145:39;;2203:38;2237:2;2226:9;2222:18;2203:38;:::i;:::-;2193:48;;2288:2;2277:9;2273:18;2260:32;2250:42;;2343:2;2332:9;2328:18;2315:32;2370:18;2362:6;2359:30;2356:50;;;2402:1;2399;2392:12;2356:50;2425:49;2466:7;2457:6;2446:9;2442:22;2425:49;:::i;:::-;2415:59;;;1943:537;;;;;;;:::o;2485:254::-;2550:6;2558;2611:2;2599:9;2590:7;2586:23;2582:32;2579:52;;;2627:1;2624;2617:12;2579:52;2650:29;2669:9;2650:29;:::i;:::-;2640:39;;2698:35;2729:2;2718:9;2714:18;2698:35;:::i;2744:602::-;2846:6;2854;2862;2870;2878;2931:3;2919:9;2910:7;2906:23;2902:33;2899:53;;;2948:1;2945;2938:12;2899:53;2971:29;2990:9;2971:29;:::i;:::-;2961:39;;3051:2;3040:9;3036:18;3023:32;3078:18;3070:6;3067:30;3064:50;;;3110:1;3107;3100:12;3064:50;3133:49;3174:7;3165:6;3154:9;3150:22;3133:49;:::i;:::-;3123:59;;;3229:2;3218:9;3214:18;3201:32;3191:42;;3280:2;3269:9;3265:18;3252:32;3242:42;;3303:37;3335:3;3324:9;3320:19;3303:37;:::i;:::-;3293:47;;2744:602;;;;;;;;:::o;3351:254::-;3419:6;3427;3480:2;3468:9;3459:7;3455:23;3451:32;3448:52;;;3496:1;3493;3486:12;3448:52;3519:29;3538:9;3519:29;:::i;:::-;3509:39;3595:2;3580:18;;;;3567:32;;-1:-1:-1;;;3351:254:1:o;3610:963::-;3694:6;3725:2;3768;3756:9;3747:7;3743:23;3739:32;3736:52;;;3784:1;3781;3774:12;3736:52;3824:9;3811:23;3853:18;3894:2;3886:6;3883:14;3880:34;;;3910:1;3907;3900:12;3880:34;3948:6;3937:9;3933:22;3923:32;;3993:7;3986:4;3982:2;3978:13;3974:27;3964:55;;4015:1;4012;4005:12;3964:55;4051:2;4038:16;4073:2;4069;4066:10;4063:36;;;4079:18;;:::i;:::-;4125:2;4122:1;4118:10;4108:20;;4148:28;4172:2;4168;4164:11;4148:28;:::i;:::-;4210:15;;;4241:12;;;;4273:11;;;4303;;;4299:20;;4296:33;-1:-1:-1;4293:53:1;;;4342:1;4339;4332:12;4293:53;4364:1;4355:10;;4374:169;4388:2;4385:1;4382:9;4374:169;;;4445:23;4464:3;4445:23;:::i;:::-;4433:36;;4406:1;4399:9;;;;;4489:12;;;;4521;;4374:169;;;-1:-1:-1;4562:5:1;3610:963;-1:-1:-1;;;;;;;;3610:963:1:o;4578:180::-;4634:6;4687:2;4675:9;4666:7;4662:23;4658:32;4655:52;;;4703:1;4700;4693:12;4655:52;4726:26;4742:9;4726:26;:::i;4763:245::-;4821:6;4874:2;4862:9;4853:7;4849:23;4845:32;4842:52;;;4890:1;4887;4880:12;4842:52;4929:9;4916:23;4948:30;4972:5;4948:30;:::i;5013:249::-;5082:6;5135:2;5123:9;5114:7;5110:23;5106:32;5103:52;;;5151:1;5148;5141:12;5103:52;5183:9;5177:16;5202:30;5226:5;5202:30;:::i;5267:450::-;5336:6;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5445:9;5432:23;5478:18;5470:6;5467:30;5464:50;;;5510:1;5507;5500:12;5464:50;5533:22;;5586:4;5578:13;;5574:27;-1:-1:-1;5564:55:1;;5615:1;5612;5605:12;5564:55;5638:73;5703:7;5698:2;5685:16;5680:2;5676;5672:11;5638:73;:::i;5722:180::-;5781:6;5834:2;5822:9;5813:7;5809:23;5805:32;5802:52;;;5850:1;5847;5840:12;5802:52;-1:-1:-1;5873:23:1;;5722:180;-1:-1:-1;5722:180:1:o;5907:182::-;5964:6;6017:2;6005:9;5996:7;5992:23;5988:32;5985:52;;;6033:1;6030;6023:12;5985:52;6056:27;6073:9;6056:27;:::i;6094:257::-;6135:3;6173:5;6167:12;6200:6;6195:3;6188:19;6216:63;6272:6;6265:4;6260:3;6256:14;6249:4;6242:5;6238:16;6216:63;:::i;:::-;6333:2;6312:15;-1:-1:-1;;6308:29:1;6299:39;;;;6340:4;6295:50;;6094:257;-1:-1:-1;;6094:257:1:o;6356:973::-;6441:12;;6406:3;;6496:1;6516:18;;;;6569;;;;6596:61;;6650:4;6642:6;6638:17;6628:27;;6596:61;6676:2;6724;6716:6;6713:14;6693:18;6690:38;6687:161;;;6770:10;6765:3;6761:20;6758:1;6751:31;6805:4;6802:1;6795:15;6833:4;6830:1;6823:15;6687:161;6864:18;6891:104;;;;7009:1;7004:319;;;;6857:466;;6891:104;-1:-1:-1;;6924:24:1;;6912:37;;6969:16;;;;-1:-1:-1;6891:104:1;;7004:319;23905:1;23898:14;;;23942:4;23929:18;;7098:1;7112:165;7126:6;7123:1;7120:13;7112:165;;;7204:14;;7191:11;;;7184:35;7247:16;;;;7141:10;;7112:165;;;7116:3;;7306:6;7301:3;7297:16;7290:23;;6857:466;;;;;;;6356:973;;;;:::o;7334:274::-;7463:3;7501:6;7495:13;7517:53;7563:6;7558:3;7551:4;7543:6;7539:17;7517:53;:::i;:::-;7586:16;;;;;7334:274;-1:-1:-1;;7334:274:1:o;7613:415::-;7770:3;7808:6;7802:13;7824:53;7870:6;7865:3;7858:4;7850:6;7846:17;7824:53;:::i;:::-;7946:2;7942:15;;;;-1:-1:-1;;7938:53:1;7899:16;;;;7924:68;;;8019:2;8008:14;;7613:415;-1:-1:-1;;7613:415:1:o;8033:456::-;8254:3;8282:38;8316:3;8308:6;8282:38;:::i;:::-;8349:6;8343:13;8365:52;8410:6;8406:2;8399:4;8391:6;8387:17;8365:52;:::i;:::-;8433:50;8475:6;8471:2;8467:15;8459:6;8433:50;:::i;:::-;8426:57;8033:456;-1:-1:-1;;;;;;;8033:456:1:o;9533:431::-;-1:-1:-1;;;;;9790:15:1;;;9772:34;;9842:15;;9837:2;9822:18;;9815:43;9894:2;9889;9874:18;;9867:30;;;9715:4;;9914:44;;9939:18;;9931:6;9914:44;:::i;:::-;9906:52;9533:431;-1:-1:-1;;;;;9533:431:1:o;9969:488::-;-1:-1:-1;;;;;10238:15:1;;;10220:34;;10290:15;;10285:2;10270:18;;10263:43;10337:2;10322:18;;10315:34;;;10385:3;10380:2;10365:18;;10358:31;;;10163:4;;10406:45;;10431:19;;10423:6;10406:45;:::i;:::-;10398:53;9969:488;-1:-1:-1;;;;;;9969:488:1:o;10462:632::-;10633:2;10685:21;;;10755:13;;10658:18;;;10777:22;;;10604:4;;10633:2;10856:15;;;;10830:2;10815:18;;;10604:4;10899:169;10913:6;10910:1;10907:13;10899:169;;;10974:13;;10962:26;;11043:15;;;;11008:12;;;;10935:1;10928:9;10899:169;;;-1:-1:-1;11085:3:1;;10462:632;-1:-1:-1;;;;;;10462:632:1:o;12298:217::-;12445:2;12434:9;12427:21;12408:4;12465:44;12505:2;12494:9;12490:18;12482:6;12465:44;:::i;13156:414::-;13358:2;13340:21;;;13397:2;13377:18;;;13370:30;13436:34;13431:2;13416:18;;13409:62;-1:-1:-1;;;13502:2:1;13487:18;;13480:48;13560:3;13545:19;;13156:414::o;19455:356::-;19657:2;19639:21;;;19676:18;;;19669:30;19735:34;19730:2;19715:18;;19708:62;19802:2;19787:18;;19455:356::o;20965:413::-;21167:2;21149:21;;;21206:2;21186:18;;;21179:30;21245:34;21240:2;21225:18;;21218:62;-1:-1:-1;;;21311:2:1;21296:18;;21289:47;21368:3;21353:19;;20965:413::o;21796:414::-;21998:2;21980:21;;;22037:2;22017:18;;;22010:30;22076:34;22071:2;22056:18;;22049:62;-1:-1:-1;;;22142:2:1;22127:18;;22120:48;22200:3;22185:19;;21796:414::o;22215:399::-;22417:2;22399:21;;;22456:2;22436:18;;;22429:30;22495:34;22490:2;22475:18;;22468:62;-1:-1:-1;;;22561:2:1;22546:18;;22539:33;22604:3;22589:19;;22215:399::o;22619:342::-;22821:2;22803:21;;;22860:2;22840:18;;;22833:30;-1:-1:-1;;;22894:2:1;22879:18;;22872:48;22952:2;22937:18;;22619:342::o;23552:275::-;23623:2;23617:9;23688:2;23669:13;;-1:-1:-1;;23665:27:1;23653:40;;23723:18;23708:34;;23744:22;;;23705:62;23702:88;;;23770:18;;:::i;:::-;23806:2;23799:22;23552:275;;-1:-1:-1;23552:275:1:o;23958:128::-;23998:3;24029:1;24025:6;24022:1;24019:13;24016:39;;;24035:18;;:::i;:::-;-1:-1:-1;24071:9:1;;23958:128::o;24091:120::-;24131:1;24157;24147:35;;24162:18;;:::i;:::-;-1:-1:-1;24196:9:1;;24091:120::o;24216:168::-;24256:7;24322:1;24318;24314:6;24310:14;24307:1;24304:21;24299:1;24292:9;24285:17;24281:45;24278:71;;;24329:18;;:::i;:::-;-1:-1:-1;24369:9:1;;24216:168::o;24389:125::-;24429:4;24457:1;24454;24451:8;24448:34;;;24462:18;;:::i;:::-;-1:-1:-1;24499:9:1;;24389:125::o;24519:258::-;24591:1;24601:113;24615:6;24612:1;24609:13;24601:113;;;24691:11;;;24685:18;24672:11;;;24665:39;24637:2;24630:10;24601:113;;;24732:6;24729:1;24726:13;24723:48;;;-1:-1:-1;;24767:1:1;24749:16;;24742:27;24519:258::o;24782:380::-;24861:1;24857:12;;;;24904;;;24925:61;;24979:4;24971:6;24967:17;24957:27;;24925:61;25032:2;25024:6;25021:14;25001:18;24998:38;24995:161;;;25078:10;25073:3;25069:20;25066:1;25059:31;25113:4;25110:1;25103:15;25141:4;25138:1;25131:15;24995:161;;24782:380;;;:::o;25167:135::-;25206:3;-1:-1:-1;;25227:17:1;;25224:43;;;25247:18;;:::i;:::-;-1:-1:-1;25294:1:1;25283:13;;25167:135::o;25307:201::-;25345:3;25373:10;25418:2;25411:5;25407:14;25445:2;25436:7;25433:15;25430:41;;;25451:18;;:::i;:::-;25500:1;25487:15;;25307:201;-1:-1:-1;;;25307:201:1:o;25513:175::-;25550:3;25594:4;25587:5;25583:16;25623:4;25614:7;25611:17;25608:43;;;25631:18;;:::i;:::-;25680:1;25667:15;;25513:175;-1:-1:-1;;25513:175:1:o;25693:112::-;25725:1;25751;25741:35;;25756:18;;:::i;:::-;-1:-1:-1;25790:9:1;;25693:112::o;25810:127::-;25871:10;25866:3;25862:20;25859:1;25852:31;25902:4;25899:1;25892:15;25926:4;25923:1;25916:15;25942:127;26003:10;25998:3;25994:20;25991:1;25984:31;26034:4;26031:1;26024:15;26058:4;26055:1;26048:15;26074:127;26135:10;26130:3;26126:20;26123:1;26116:31;26166:4;26163:1;26156:15;26190:4;26187:1;26180:15;26206:127;26267:10;26262:3;26258:20;26255:1;26248:31;26298:4;26295:1;26288:15;26322:4;26319:1;26312:15;26338:127;26399:10;26394:3;26390:20;26387:1;26380:31;26430:4;26427:1;26420:15;26454:4;26451:1;26444:15;26470:131;-1:-1:-1;;;;;;26544:32:1;;26534:43;;26524:71;;26591:1;26588;26581:12

Swarm Source

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