ETH Price: $3,276.44 (-0.31%)

Token

Patterned Samurai (PSamurai)
 

Overview

Max Total Supply

713 PSamurai

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 PSamurai
0x0000000033e85e53af9981095312dca0538fb36d
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:
patternedSamurai

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-10
*/

// File: contract/Patterned Samurai/interfaces/ILayerZeroReceiver.sol



pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}

// File: contract/Patterned Samurai/interfaces/ILayerZeroUserApplicationConfig.sol



pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

// File: contract/Patterned Samurai/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: contract/Patterned Samurai/contracts/NonblockingReceiver.sol


pragma solidity ^0.8.6;





abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);

    function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(_srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), 
            "NonblockingReceiver: invalid source sending contract");

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload));
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public {
        // only internal transaction
        require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");

        // handle incoming message
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal;

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam);
    }

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
        require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload");
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner {
        trustedRemoteLookup[_chainId] = _trustedRemote;
    }
}
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// 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.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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/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: contract/Patterned Samurai/patternedSamuraiNFT.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;





contract patternedSamurai is ERC721Enumerable, NonblockingReceiver {
    using Strings for uint256;

    bytes32 public saleMerkleRoot;
    mapping(address => bool) public claimed;
    bool public _isSaleActive = false;
    bool public _revealed = false;

    // Constants
    uint256 nextTokenId = 0;
    uint256 public constant MAX_SUPPLY = 3500; 
    uint256 public mintPrice = 0.006 ether; 
    uint256 public maxBalance = 10;
    uint256 public maxMint = 10;
    uint256 public freeMintNum = 700;

    uint gasForDestinationLzReceive = 350000;
    string baseURI; 
    string public notRevealedUri; 
    string public baseExtension = ".json";

    mapping(uint256 => string) private _tokenURIs;
    mapping (address => bool) public minters;

    // modifier onlyMinter() {
    //     require(minters[_msgSender()] || owner() == _msgSender(), "Ownable: caller is not the minter");
    //     _;
    // }
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    constructor(string memory initBaseURI, string memory initNotRevealedUri, address _layerZeroEndpoint)
        ERC721("Patterned Samurai", "PSamurai")
    {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
    }
  
    function mint(uint256 tokenQuantity, address user) public payable{
        
        require(
            nextTokenId + tokenQuantity <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );

        require(_isSaleActive, "Sale must be active to mint patternedSamurais");

        require(
            balanceOf(msg.sender) + tokenQuantity <= maxBalance,
            "Sale would exceed max balance"
        );

        require(tokenQuantity <= maxMint, "Exceeded the maximum number of mint");
        if(nextTokenId + tokenQuantity >= freeMintNum){
            require(tokenQuantity * mintPrice <= msg.value,"Not enough ether sent");
            _mint(tokenQuantity,user); 
        }else{
            // require(balanceOf(msg.sender) == 0, "Sale would exceed max balance");
            _mint(tokenQuantity,user); 
        }
    }
    function wlmint(bytes32[] calldata merkleProof) external isValidMerkleProof(merkleProof, saleMerkleRoot){

        require(!claimed[msg.sender], "Address already claimed");

        require(
            nextTokenId + 1 <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );

        require(_isSaleActive, "Sale must be active to mint patternedSamurais");

        require(
            balanceOf(msg.sender) + 1 <= maxBalance,
            "Sale would exceed max balance"
        );
        claimed[msg.sender] = true;
        _mint(1,msg.sender); 
    }
    function onlyOwnerMint(uint256 tokenQuantity) external onlyOwner{
        _mint(tokenQuantity,msg.sender); 
    }

    function _mint(uint256 tokenQuantity,address user) internal{
        for (uint256 i = 0; i < tokenQuantity; i++) {
            uint256 mintIndex = nextTokenId;
            if (nextTokenId < MAX_SUPPLY) {
                nextTokenId++;
                _safeMint(user, mintIndex);
            }
        }
    }

    function burn(uint256 id) public{
        require(ownerOf(id) == _msgSender(),"You are not the owner of this NFT");
        _burn(id);
    }

    // This function transfers the nft from your address on the 
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint tokenId) public payable {
        require(msg.sender == ownerOf(tokenId), "You must own the token to traverse");
        require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel");

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender, tokenId);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "GG: msg.value not enough to cover messageFee. Send gas for message fees");

        endpoint.send{value: msg.value}(
            _chainId,                           // destination chainId
            trustedRemoteLookup[_chainId],      // destination address of nft contract
            payload,                            // abi.encoded()'ed bytes
            payable(msg.sender),                // refund address
            address(0x0),                       // 'zroPaymentAddress' unused for this
            adapterParams                       // txParameters 
        );
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {

        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (_revealed == false) {
            return notRevealedUri;
        }

        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));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

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

    //only owner
    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

    // function setMintPrice(uint256 _mintPrice) public onlyOwner {
    //     mintPrice = _mintPrice;
    // }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }
    function setFreeMintNum(uint256 _freeMintNum) public onlyOwner {
        freeMintNum = _freeMintNum;
    }

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

    function addMinter(address _minter) public virtual onlyOwner {
        minters[_minter] = true;
    }
    
    function removeMinter(address _minter) public virtual onlyOwner {
        minters[_minter] = false;
    }

    function setGasForDestinationLzReceive(uint newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }
    function setSaleMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        saleMerkleRoot = merkleRoot;
    }
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) override internal {
        // decode
        (address toAddr, uint tokenId) = abi.decode(_payload, (address, uint));

        // mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
    }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","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":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","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":[{"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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"onlyOwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","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":[],"name":"saleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintNum","type":"uint256"}],"name":"setFreeMintNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","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":[{"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":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"wlmint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6010805461ffff191690556000601155661550f7dca70000601255600a60138190556014556102bc6015556205573060165560c06040526005608081905264173539b7b760d91b60a09081526200005a91601991906200024f565b503480156200006857600080fd5b5060405162003d4938038062003d498339810160408190526200008b91620003c2565b60408051808201825260118152705061747465726e65642053616d7572616960781b6020808301918252835180850190945260088452675053616d7572616960c01b908401528151919291620000e4916000916200024f565b508051620000fa9060019060208401906200024f565b50505062000117620001116200015660201b60201c565b6200015a565b6200012283620001ac565b6200012d82620001cf565b600b80546001600160a01b0319166001600160a01b0392909216919091179055506200048b9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001b6620001ee565b8051620001cb9060179060208401906200024f565b5050565b620001d9620001ee565b8051620001cb9060189060208401906200024f565b600a546001600160a01b031633146200024d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200025d906200044f565b90600052602060002090601f016020900481019282620002815760008555620002cc565b82601f106200029c57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cc578251825591602001919060010190620002af565b50620002da929150620002de565b5090565b5b80821115620002da5760008155600101620002df565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031d57600080fd5b81516001600160401b03808211156200033a576200033a620002f5565b604051601f8301601f19908116603f01168101908282118183101715620003655762000365620002f5565b816040528381526020925086838588010111156200038257600080fd5b600091505b83821015620003a6578582018301518183018401529082019062000387565b83821115620003b85760008385830101525b9695505050505050565b600080600060608486031215620003d857600080fd5b83516001600160401b0380821115620003f057600080fd5b620003fe878388016200030b565b945060208601519150808211156200041557600080fd5b5062000424868287016200030b565b604086015190935090506001600160a01b03811681146200044457600080fd5b809150509250925092565b600181811c908216806200046457607f821691505b6020821081036200048557634e487b7160e01b600052602260045260246000fd5b50919050565b6138ae806200049b6000396000f3fe60806040526004361061034f5760003560e01c80637533d788116101c6578063c884ef83116100f7578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e146109ba578063f2fde38b146109da578063f46eccc4146109fa578063f91eb63014610a2a57600080fd5b8063e985e9c51461093b578063e99c4a8f14610984578063eb8d72b71461099a57600080fd5b8063d47358b3116100d1578063d47358b3146108d0578063d4a417e6146108f0578063da3ef23f14610906578063de8b51e11461092657600080fd5b8063c884ef831461087a578063cf89fa03146108aa578063d1deba1f146108bd57600080fd5b80639d51d9b711610164578063b88d4fde1161013e578063b88d4fde14610805578063ba173d1b14610825578063c668286214610845578063c87b56dd1461085a57600080fd5b80639d51d9b7146107a5578063a22cb465146107c5578063ae7a9b0c146107e557600080fd5b8063943fb872116101a0578063943fb8721461073d57806394bf804d1461075d57806395d89b4114610770578063983b2d561461078557600080fd5b80637533d788146106945780638da5cb5b146106b45780638ee74912146106d257600080fd5b806342842e0e116102a05780636817c76c1161023e57806370a082311161021857806370a0823114610633578063715018a61461065357806373ad468a146106685780637501f7411461067e57600080fd5b80636817c76c146105e45780636ebeac85146105fa5780637080d6fc1461061957600080fd5b806351cff8d91161027a57806351cff8d914610564578063547520fe1461058457806355f804b3146105a45780636352211e146105c457600080fd5b806342842e0e1461050457806342966c68146105245780634f6ccce71461054457600080fd5b806318160ddd1161030d5780632f745c59116102e75780632f745c59146104995780633092afd5146104b957806332cb6b0c146104d95780633b84d9c6146104ef57600080fd5b806318160ddd1461043a5780631c37a8221461045957806323b872dd1461047957600080fd5b80621d35671461035457806301ffc9a71461037657806306fdde03146103ab578063081812fc146103cd578063081c8c4414610405578063095ea7b31461041a575b600080fd5b34801561036057600080fd5b5061037461036f366004612da0565b610a4a565b005b34801561038257600080fd5b50610396610391366004612e3a565b610c44565b60405190151581526020015b60405180910390f35b3480156103b757600080fd5b506103c0610c6f565b6040516103a29190612eaf565b3480156103d957600080fd5b506103ed6103e8366004612ec2565b610d01565b6040516001600160a01b0390911681526020016103a2565b34801561041157600080fd5b506103c0610d28565b34801561042657600080fd5b50610374610435366004612ef0565b610db6565b34801561044657600080fd5b506008545b6040519081526020016103a2565b34801561046557600080fd5b50610374610474366004612da0565b610ecb565b34801561048557600080fd5b50610374610494366004612f1c565b610f3a565b3480156104a557600080fd5b5061044b6104b4366004612ef0565b610f6b565b3480156104c557600080fd5b506103746104d4366004612f5d565b611001565b3480156104e557600080fd5b5061044b610dac81565b3480156104fb57600080fd5b5061037461102a565b34801561051057600080fd5b5061037461051f366004612f1c565b61104f565b34801561053057600080fd5b5061037461053f366004612ec2565b61106a565b34801561055057600080fd5b5061044b61055f366004612ec2565b6110e0565b34801561057057600080fd5b5061037461057f366004612f5d565b611173565b34801561059057600080fd5b5061037461059f366004612ec2565b6111b3565b3480156105b057600080fd5b506103746105bf366004612f7a565b6111c0565b3480156105d057600080fd5b506103ed6105df366004612ec2565b6111df565b3480156105f057600080fd5b5061044b60125481565b34801561060657600080fd5b5060105461039690610100900460ff1681565b34801561062557600080fd5b506010546103969060ff1681565b34801561063f57600080fd5b5061044b61064e366004612f5d565b61123f565b34801561065f57600080fd5b506103746112c5565b34801561067457600080fd5b5061044b60135481565b34801561068a57600080fd5b5061044b60145481565b3480156106a057600080fd5b506103c06106af366004612fc2565b6112d9565b3480156106c057600080fd5b50600a546001600160a01b03166103ed565b3480156106de57600080fd5b506107286106ed366004612fdd565b600c60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b604080519283526020830191909152016103a2565b34801561074957600080fd5b50610374610758366004612ec2565b6112f2565b61037461076b366004613033565b6112ff565b34801561077c57600080fd5b506103c06114b8565b34801561079157600080fd5b506103746107a0366004612f5d565b6114c7565b3480156107b157600080fd5b506103746107c0366004612ec2565b6114f3565b3480156107d157600080fd5b506103746107e0366004613063565b611500565b3480156107f157600080fd5b50610374610800366004613096565b61150b565b34801561081157600080fd5b5061037461082036600461310a565b611742565b34801561083157600080fd5b50610374610840366004612ec2565b611774565b34801561085157600080fd5b506103c0611786565b34801561086657600080fd5b506103c0610875366004612ec2565b611793565b34801561088657600080fd5b50610396610895366004612f5d565b600f6020526000908152604090205460ff1681565b6103746108b8366004613169565b6119bd565b6103746108cb3660046131cd565b611c8f565b3480156108dc57600080fd5b506103746108eb366004612ec2565b611e1c565b3480156108fc57600080fd5b5061044b600e5481565b34801561091257600080fd5b50610374610921366004612f7a565b611e29565b34801561093257600080fd5b50610374611e44565b34801561094757600080fd5b50610396610956366004613258565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561099057600080fd5b5061044b60155481565b3480156109a657600080fd5b506103746109b5366004613286565b611e60565b3480156109c657600080fd5b506103746109d5366004612f7a565b611e86565b3480156109e657600080fd5b506103746109f5366004612f5d565b611ea1565b348015610a0657600080fd5b50610396610a15366004612f5d565b601b6020526000908152604090205460ff1681565b348015610a3657600080fd5b50610374610a45366004612ec2565b611f17565b600b546001600160a01b03163314610a6157600080fd5b61ffff84166000908152600d602052604090208054610a7f906132d8565b90508351148015610abe575061ffff84166000908152600d6020526040908190209051610aac9190613381565b60405180910390208380519060200120145b610b2c5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a82290610b5590879087908790879060040161338d565b600060405180830381600087803b158015610b6f57600080fd5b505af1925050508015610b80575060015b610c3e576040518060400160405280825181526020018280519060200120815250600c60008661ffff1661ffff16815260200190815260200160002084604051610bca91906133d6565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610c3590869086908690869061338d565b60405180910390a15b50505050565b60006001600160e01b0319821663780e9d6360e01b1480610c695750610c6982611f24565b92915050565b606060008054610c7e906132d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa906132d8565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c82611f74565b506000908152600460205260409020546001600160a01b031690565b60188054610d35906132d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d61906132d8565b8015610dae5780601f10610d8357610100808354040283529160200191610dae565b820191906000526020600020905b815481529060010190602001808311610d9157829003601f168201915b505050505081565b6000610dc1826111df565b9050806001600160a01b0316836001600160a01b031603610e2e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b23565b336001600160a01b0382161480610e4a5750610e4a8133610956565b610ebc5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b23565b610ec68383611fd3565b505050565b333014610f2e5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610b23565b610c3e84848484612041565b610f44338261206e565b610f605760405162461bcd60e51b8152600401610b23906133f2565b610ec68383836120ed565b6000610f768361123f565b8210610fd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b611009612294565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b611032612294565b6010805461ff001981166101009182900460ff1615909102179055565b610ec683838360405180602001604052806000815250611742565b33611074826111df565b6001600160a01b0316146110d45760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f7420746865206f776e6572206f662074686973204e466044820152601560fa1b6064820152608401610b23565b6110dd816122ee565b50565b60006110eb60085490565b821061114e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b23565b6008828154811061116157611161613440565b90600052602060002001549050919050565b61117b612294565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610ec6573d6000803e3d6000fd5b6111bb612294565b601455565b6111c8612294565b80516111db906017906020840190612bba565b5050565b6000818152600260205260408120546001600160a01b031680610c695760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b60006001600160a01b0382166112a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b23565b506001600160a01b031660009081526003602052604090205490565b6112cd612294565b6112d76000612395565b565b600d6020526000908152604090208054610d35906132d8565b6112fa612294565b601655565b610dac82601154611310919061346c565b111561135e5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610b23565b60105460ff166113805760405162461bcd60e51b8152600401610b2390613484565b6013548261138d3361123f565b611397919061346c565b11156113e55760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610b23565b6014548211156114435760405162461bcd60e51b815260206004820152602360248201527f457863656564656420746865206d6178696d756d206e756d626572206f66206d6044820152621a5b9d60ea1b6064820152608401610b23565b60155482601154611454919061346c565b106114ae57346012548361146891906134d1565b11156114ae5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610b23565b6111db82826123e7565b606060018054610c7e906132d8565b6114cf612294565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b6114fb612294565b601355565b6111db338383612431565b8181600e54611582838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050604051602081830303815290604052805190602001206124ff565b6115ce5760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610b23565b336000908152600f602052604090205460ff161561162e5760405162461bcd60e51b815260206004820152601760248201527f4164647265737320616c726561647920636c61696d65640000000000000000006044820152606401610b23565b610dac6011546001611640919061346c565b111561168e5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610b23565b60105460ff166116b05760405162461bcd60e51b8152600401610b2390613484565b6013546116bc3361123f565b6116c790600161346c565b11156117155760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610b23565b336000818152600f60205260409020805460ff1916600190811790915561173b916123e7565b5050505050565b61174c338361206e565b6117685760405162461bcd60e51b8152600401610b23906133f2565b610c3e84848484612515565b61177c612294565b6110dd81336123e7565b60198054610d35906132d8565b6000818152600260205260409020546060906001600160a01b03166118125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b23565b601054610100900460ff1615156000036118b85760188054611833906132d8565b80601f016020809104026020016040519081016040528092919081815260200182805461185f906132d8565b80156118ac5780601f10611881576101008083540402835291602001916118ac565b820191906000526020600020905b81548152906001019060200180831161188f57829003601f168201915b50505050509050919050565b6000828152601a6020526040812080546118d1906132d8565b80601f01602080910402602001604051908101604052809291908181526020018280546118fd906132d8565b801561194a5780601f1061191f5761010080835404028352916020019161194a565b820191906000526020600020905b81548152906001019060200180831161192d57829003601f168201915b50505050509050600061195b612548565b9050805160000361196d575092915050565b81511561199f5780826040516020016119879291906134f0565b60405160208183030381529060405292505050919050565b806119a985612557565b60196040516020016119879392919061351f565b6119c6816111df565b6001600160a01b0316336001600160a01b031614611a315760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610b23565b61ffff82166000908152600d602052604081208054611a4f906132d8565b905011611ab55760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610b23565b611abe816122ee565b60408051336020820152808201839052815180820383018152606082018352601654600160f01b60808401526082808401919091528351808403909101815260a2830193849052600b5463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb1090611b41908990309089908790899060a601613551565b6040805180830381865afa158015611b5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8191906135a5565b50905080341015611c0a5760405162461bcd60e51b815260206004820152604760248201527f47473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560448201527f72206d6573736167654665652e2053656e642067617320666f72206d657373616064820152666765206665657360c81b608482015260a401610b23565b600b5461ffff87166000908152600d6020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611c55928c928b913391908b906004016135c9565b6000604051808303818588803b158015611c6e57600080fd5b505af1158015611c82573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600c60205260408082209051611cb09087906133d6565b90815260408051602092819003830190206001600160401b0387166000908152925290206001810154909150611d375760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610b23565b805482148015611d61575080600101548383604051611d579291906136a9565b6040518091039020145b611dad5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610b23565b60008082556001820155604051630e1bd41160e11b81523090631c37a82290611de290899089908990899089906004016136b9565b600060405180830381600087803b158015611dfc57600080fd5b505af1158015611e10573d6000803e3d6000fd5b50505050505050505050565b611e24612294565b601555565b611e31612294565b80516111db906019906020840190612bba565b611e4c612294565b6010805460ff19811660ff90911615179055565b611e68612294565b61ffff83166000908152600d60205260409020610c3e908383612c3e565b611e8e612294565b80516111db906018906020840190612bba565b611ea9612294565b6001600160a01b038116611f0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b23565b6110dd81612395565b611f1f612294565b600e55565b60006001600160e01b031982166380ac58cd60e01b1480611f5557506001600160e01b03198216635b5e139f60e01b145b80610c6957506301ffc9a760e01b6001600160e01b0319831614610c69565b6000818152600260205260409020546001600160a01b03166110dd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612008826111df565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612058919061371a565b915091506120668282612657565b505050505050565b60008061207a836111df565b9050806001600160a01b0316846001600160a01b031614806120c157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806120e55750836001600160a01b03166120da84610d01565b6001600160a01b0316145b949350505050565b826001600160a01b0316612100826111df565b6001600160a01b0316146121645760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b23565b6001600160a01b0382166121c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b23565b6121d1838383612671565b6121dc600082611fd3565b6001600160a01b0383166000908152600360205260408120805460019290612205908490613748565b90915550506001600160a01b038216600090815260036020526040812080546001929061223390849061346c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146112d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b60006122f9826111df565b905061230781600084612671565b612312600083611fd3565b6001600160a01b038116600090815260036020526040812080546001929061233b908490613748565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b82811015610ec657601154610dac81101561241e576011805490600061240f8361375f565b919050555061241e8382612657565b50806124298161375f565b9150506123ea565b816001600160a01b0316836001600160a01b0316036124925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b23565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008261250c8584612729565b14949350505050565b6125208484846120ed565b61252c84848484612776565b610c3e5760405162461bcd60e51b8152600401610b2390613778565b606060178054610c7e906132d8565b60608160000361257e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125a857806125928161375f565b91506125a19050600a836137e0565b9150612582565b6000816001600160401b038111156125c2576125c2612cde565b6040519080825280601f01601f1916602001820160405280156125ec576020820181803683370190505b5090505b84156120e557612601600183613748565b915061260e600a866137f4565b61261990603061346c565b60f81b81838151811061262e5761262e613440565b60200101906001600160f81b031916908160001a905350612650600a866137e0565b94506125f0565b6111db828260405180602001604052806000815250612877565b6001600160a01b0383166126cc576126c781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126ef565b816001600160a01b0316836001600160a01b0316146126ef576126ef83826128aa565b6001600160a01b03821661270657610ec681612947565b826001600160a01b0316826001600160a01b031614610ec657610ec682826129f6565b600081815b845181101561276e5761275a8286838151811061274d5761274d613440565b6020026020010151612a3a565b9150806127668161375f565b91505061272e565b509392505050565b60006001600160a01b0384163b1561286c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127ba903390899088908890600401613808565b6020604051808303816000875af19250505080156127f5575060408051601f3d908101601f191682019092526127f291810190613845565b60015b612852573d808015612823576040519150601f19603f3d011682016040523d82523d6000602084013e612828565b606091505b50805160000361284a5760405162461bcd60e51b8152600401610b2390613778565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120e5565b506001949350505050565b6128818383612a6c565b61288e6000848484612776565b610ec65760405162461bcd60e51b8152600401610b2390613778565b600060016128b78461123f565b6128c19190613748565b600083815260076020526040902054909150808214612914576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061295990600190613748565b6000838152600960205260408120546008805493945090928490811061298157612981613440565b9060005260206000200154905080600883815481106129a2576129a2613440565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129da576129da613862565b6001900381819060005260206000200160009055905550505050565b6000612a018361123f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000818310612a56576000828152602084905260409020612a65565b60008381526020839052604090205b9392505050565b6001600160a01b038216612ac25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b23565b6000818152600260205260409020546001600160a01b031615612b275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b23565b612b3360008383612671565b6001600160a01b0382166000908152600360205260408120805460019290612b5c90849061346c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612bc6906132d8565b90600052602060002090601f016020900481019282612be85760008555612c2e565b82601f10612c0157805160ff1916838001178555612c2e565b82800160010185558215612c2e579182015b82811115612c2e578251825591602001919060010190612c13565b50612c3a929150612cb2565b5090565b828054612c4a906132d8565b90600052602060002090601f016020900481019282612c6c5760008555612c2e565b82601f10612c855782800160ff19823516178555612c2e565b82800160010185558215612c2e579182015b82811115612c2e578235825591602001919060010190612c97565b5b80821115612c3a5760008155600101612cb3565b803561ffff81168114612cd957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612d0e57612d0e612cde565b604051601f8501601f19908116603f01168101908282118183101715612d3657612d36612cde565b81604052809350858152868686011115612d4f57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612d7a57600080fd5b612a6583833560208501612cf4565b80356001600160401b0381168114612cd957600080fd5b60008060008060808587031215612db657600080fd5b612dbf85612cc7565b935060208501356001600160401b0380821115612ddb57600080fd5b612de788838901612d69565b9450612df560408801612d89565b93506060870135915080821115612e0b57600080fd5b50612e1887828801612d69565b91505092959194509250565b6001600160e01b0319811681146110dd57600080fd5b600060208284031215612e4c57600080fd5b8135612a6581612e24565b60005b83811015612e72578181015183820152602001612e5a565b83811115610c3e5750506000910152565b60008151808452612e9b816020860160208601612e57565b601f01601f19169290920160200192915050565b602081526000612a656020830184612e83565b600060208284031215612ed457600080fd5b5035919050565b6001600160a01b03811681146110dd57600080fd5b60008060408385031215612f0357600080fd5b8235612f0e81612edb565b946020939093013593505050565b600080600060608486031215612f3157600080fd5b8335612f3c81612edb565b92506020840135612f4c81612edb565b929592945050506040919091013590565b600060208284031215612f6f57600080fd5b8135612a6581612edb565b600060208284031215612f8c57600080fd5b81356001600160401b03811115612fa257600080fd5b8201601f81018413612fb357600080fd5b6120e584823560208401612cf4565b600060208284031215612fd457600080fd5b612a6582612cc7565b600080600060608486031215612ff257600080fd5b612ffb84612cc7565b925060208401356001600160401b0381111561301657600080fd5b61302286828701612d69565b925050604084013590509250925092565b6000806040838503121561304657600080fd5b82359150602083013561305881612edb565b809150509250929050565b6000806040838503121561307657600080fd5b823561308181612edb565b91506020830135801515811461305857600080fd5b600080602083850312156130a957600080fd5b82356001600160401b03808211156130c057600080fd5b818501915085601f8301126130d457600080fd5b8135818111156130e357600080fd5b8660208260051b85010111156130f857600080fd5b60209290920196919550909350505050565b6000806000806080858703121561312057600080fd5b843561312b81612edb565b9350602085013561313b81612edb565b92506040850135915060608501356001600160401b0381111561315d57600080fd5b612e1887828801612d69565b6000806040838503121561317c57600080fd5b612f0e83612cc7565b60008083601f84011261319757600080fd5b5081356001600160401b038111156131ae57600080fd5b6020830191508360208285010111156131c657600080fd5b9250929050565b6000806000806000608086880312156131e557600080fd5b6131ee86612cc7565b945060208601356001600160401b038082111561320a57600080fd5b61321689838a01612d69565b955061322460408901612d89565b9450606088013591508082111561323a57600080fd5b5061324788828901613185565b969995985093965092949392505050565b6000806040838503121561326b57600080fd5b823561327681612edb565b9150602083013561305881612edb565b60008060006040848603121561329b57600080fd5b6132a484612cc7565b925060208401356001600160401b038111156132bf57600080fd5b6132cb86828701613185565b9497909650939450505050565b600181811c908216806132ec57607f821691505b60208210810361330c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000815461331f816132d8565b60018281168015613337576001811461334857613377565b60ff19841687528287019450613377565b8560005260208060002060005b8581101561336e5781548a820152908401908201613355565b50505082870194505b5050505092915050565b6000612a658284613312565b61ffff851681526080602082015260006133aa6080830186612e83565b6001600160401b038516604084015282810360608401526133cb8185612e83565b979650505050505050565b600082516133e8818460208701612e57565b9190910192915050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561347f5761347f613456565b500190565b6020808252602d908201527f53616c65206d7573742062652061637469766520746f206d696e74207061747460408201526c65726e656453616d757261697360981b606082015260800190565b60008160001904831182151516156134eb576134eb613456565b500290565b60008351613502818460208801612e57565b835190830190613516818360208801612e57565b01949350505050565b60008451613531818460208901612e57565b845190830190613545818360208901612e57565b6133cb81830186613312565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061357f90830186612e83565b841515606084015282810360808401526135998185612e83565b98975050505050505050565b600080604083850312156135b857600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546135e7816132d8565b8060c087015260e0600180841660008114613609576001811461361e5761364c565b60ff198516898401526101008901955061364c565b8d6000528660002060005b858110156136445781548b8201860152908301908801613629565b8a0184019650505b505050505083810360408501526136638189612e83565b91505061367b60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a084015261369c8185612e83565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006136d66080830187612e83565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b6000806040838503121561372d57600080fd5b825161373881612edb565b6020939093015192949293505050565b60008282101561375a5761375a613456565b500390565b60006001820161377157613771613456565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826137ef576137ef6137ca565b500490565b600082613803576138036137ca565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061383b90830184612e83565b9695505050505050565b60006020828403121561385757600080fd5b8151612a6581612e24565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205017b10aab24ead2c2231b2ffd8a35dc5194aeeeb76b4b769e7e42aa1327d3ef64736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d583363436a7a6277514a665839314d7970696d506b5434774b326950683241634a72425648745744336e44712f00000000000000000000

Deployed Bytecode

0x60806040526004361061034f5760003560e01c80637533d788116101c6578063c884ef83116100f7578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e146109ba578063f2fde38b146109da578063f46eccc4146109fa578063f91eb63014610a2a57600080fd5b8063e985e9c51461093b578063e99c4a8f14610984578063eb8d72b71461099a57600080fd5b8063d47358b3116100d1578063d47358b3146108d0578063d4a417e6146108f0578063da3ef23f14610906578063de8b51e11461092657600080fd5b8063c884ef831461087a578063cf89fa03146108aa578063d1deba1f146108bd57600080fd5b80639d51d9b711610164578063b88d4fde1161013e578063b88d4fde14610805578063ba173d1b14610825578063c668286214610845578063c87b56dd1461085a57600080fd5b80639d51d9b7146107a5578063a22cb465146107c5578063ae7a9b0c146107e557600080fd5b8063943fb872116101a0578063943fb8721461073d57806394bf804d1461075d57806395d89b4114610770578063983b2d561461078557600080fd5b80637533d788146106945780638da5cb5b146106b45780638ee74912146106d257600080fd5b806342842e0e116102a05780636817c76c1161023e57806370a082311161021857806370a0823114610633578063715018a61461065357806373ad468a146106685780637501f7411461067e57600080fd5b80636817c76c146105e45780636ebeac85146105fa5780637080d6fc1461061957600080fd5b806351cff8d91161027a57806351cff8d914610564578063547520fe1461058457806355f804b3146105a45780636352211e146105c457600080fd5b806342842e0e1461050457806342966c68146105245780634f6ccce71461054457600080fd5b806318160ddd1161030d5780632f745c59116102e75780632f745c59146104995780633092afd5146104b957806332cb6b0c146104d95780633b84d9c6146104ef57600080fd5b806318160ddd1461043a5780631c37a8221461045957806323b872dd1461047957600080fd5b80621d35671461035457806301ffc9a71461037657806306fdde03146103ab578063081812fc146103cd578063081c8c4414610405578063095ea7b31461041a575b600080fd5b34801561036057600080fd5b5061037461036f366004612da0565b610a4a565b005b34801561038257600080fd5b50610396610391366004612e3a565b610c44565b60405190151581526020015b60405180910390f35b3480156103b757600080fd5b506103c0610c6f565b6040516103a29190612eaf565b3480156103d957600080fd5b506103ed6103e8366004612ec2565b610d01565b6040516001600160a01b0390911681526020016103a2565b34801561041157600080fd5b506103c0610d28565b34801561042657600080fd5b50610374610435366004612ef0565b610db6565b34801561044657600080fd5b506008545b6040519081526020016103a2565b34801561046557600080fd5b50610374610474366004612da0565b610ecb565b34801561048557600080fd5b50610374610494366004612f1c565b610f3a565b3480156104a557600080fd5b5061044b6104b4366004612ef0565b610f6b565b3480156104c557600080fd5b506103746104d4366004612f5d565b611001565b3480156104e557600080fd5b5061044b610dac81565b3480156104fb57600080fd5b5061037461102a565b34801561051057600080fd5b5061037461051f366004612f1c565b61104f565b34801561053057600080fd5b5061037461053f366004612ec2565b61106a565b34801561055057600080fd5b5061044b61055f366004612ec2565b6110e0565b34801561057057600080fd5b5061037461057f366004612f5d565b611173565b34801561059057600080fd5b5061037461059f366004612ec2565b6111b3565b3480156105b057600080fd5b506103746105bf366004612f7a565b6111c0565b3480156105d057600080fd5b506103ed6105df366004612ec2565b6111df565b3480156105f057600080fd5b5061044b60125481565b34801561060657600080fd5b5060105461039690610100900460ff1681565b34801561062557600080fd5b506010546103969060ff1681565b34801561063f57600080fd5b5061044b61064e366004612f5d565b61123f565b34801561065f57600080fd5b506103746112c5565b34801561067457600080fd5b5061044b60135481565b34801561068a57600080fd5b5061044b60145481565b3480156106a057600080fd5b506103c06106af366004612fc2565b6112d9565b3480156106c057600080fd5b50600a546001600160a01b03166103ed565b3480156106de57600080fd5b506107286106ed366004612fdd565b600c60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b604080519283526020830191909152016103a2565b34801561074957600080fd5b50610374610758366004612ec2565b6112f2565b61037461076b366004613033565b6112ff565b34801561077c57600080fd5b506103c06114b8565b34801561079157600080fd5b506103746107a0366004612f5d565b6114c7565b3480156107b157600080fd5b506103746107c0366004612ec2565b6114f3565b3480156107d157600080fd5b506103746107e0366004613063565b611500565b3480156107f157600080fd5b50610374610800366004613096565b61150b565b34801561081157600080fd5b5061037461082036600461310a565b611742565b34801561083157600080fd5b50610374610840366004612ec2565b611774565b34801561085157600080fd5b506103c0611786565b34801561086657600080fd5b506103c0610875366004612ec2565b611793565b34801561088657600080fd5b50610396610895366004612f5d565b600f6020526000908152604090205460ff1681565b6103746108b8366004613169565b6119bd565b6103746108cb3660046131cd565b611c8f565b3480156108dc57600080fd5b506103746108eb366004612ec2565b611e1c565b3480156108fc57600080fd5b5061044b600e5481565b34801561091257600080fd5b50610374610921366004612f7a565b611e29565b34801561093257600080fd5b50610374611e44565b34801561094757600080fd5b50610396610956366004613258565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561099057600080fd5b5061044b60155481565b3480156109a657600080fd5b506103746109b5366004613286565b611e60565b3480156109c657600080fd5b506103746109d5366004612f7a565b611e86565b3480156109e657600080fd5b506103746109f5366004612f5d565b611ea1565b348015610a0657600080fd5b50610396610a15366004612f5d565b601b6020526000908152604090205460ff1681565b348015610a3657600080fd5b50610374610a45366004612ec2565b611f17565b600b546001600160a01b03163314610a6157600080fd5b61ffff84166000908152600d602052604090208054610a7f906132d8565b90508351148015610abe575061ffff84166000908152600d6020526040908190209051610aac9190613381565b60405180910390208380519060200120145b610b2c5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a82290610b5590879087908790879060040161338d565b600060405180830381600087803b158015610b6f57600080fd5b505af1925050508015610b80575060015b610c3e576040518060400160405280825181526020018280519060200120815250600c60008661ffff1661ffff16815260200190815260200160002084604051610bca91906133d6565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610c3590869086908690869061338d565b60405180910390a15b50505050565b60006001600160e01b0319821663780e9d6360e01b1480610c695750610c6982611f24565b92915050565b606060008054610c7e906132d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa906132d8565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c82611f74565b506000908152600460205260409020546001600160a01b031690565b60188054610d35906132d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d61906132d8565b8015610dae5780601f10610d8357610100808354040283529160200191610dae565b820191906000526020600020905b815481529060010190602001808311610d9157829003601f168201915b505050505081565b6000610dc1826111df565b9050806001600160a01b0316836001600160a01b031603610e2e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b23565b336001600160a01b0382161480610e4a5750610e4a8133610956565b610ebc5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b23565b610ec68383611fd3565b505050565b333014610f2e5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610b23565b610c3e84848484612041565b610f44338261206e565b610f605760405162461bcd60e51b8152600401610b23906133f2565b610ec68383836120ed565b6000610f768361123f565b8210610fd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b611009612294565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b611032612294565b6010805461ff001981166101009182900460ff1615909102179055565b610ec683838360405180602001604052806000815250611742565b33611074826111df565b6001600160a01b0316146110d45760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f7420746865206f776e6572206f662074686973204e466044820152601560fa1b6064820152608401610b23565b6110dd816122ee565b50565b60006110eb60085490565b821061114e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b23565b6008828154811061116157611161613440565b90600052602060002001549050919050565b61117b612294565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610ec6573d6000803e3d6000fd5b6111bb612294565b601455565b6111c8612294565b80516111db906017906020840190612bba565b5050565b6000818152600260205260408120546001600160a01b031680610c695760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b60006001600160a01b0382166112a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b23565b506001600160a01b031660009081526003602052604090205490565b6112cd612294565b6112d76000612395565b565b600d6020526000908152604090208054610d35906132d8565b6112fa612294565b601655565b610dac82601154611310919061346c565b111561135e5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610b23565b60105460ff166113805760405162461bcd60e51b8152600401610b2390613484565b6013548261138d3361123f565b611397919061346c565b11156113e55760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610b23565b6014548211156114435760405162461bcd60e51b815260206004820152602360248201527f457863656564656420746865206d6178696d756d206e756d626572206f66206d6044820152621a5b9d60ea1b6064820152608401610b23565b60155482601154611454919061346c565b106114ae57346012548361146891906134d1565b11156114ae5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610b23565b6111db82826123e7565b606060018054610c7e906132d8565b6114cf612294565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b6114fb612294565b601355565b6111db338383612431565b8181600e54611582838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050604051602081830303815290604052805190602001206124ff565b6115ce5760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610b23565b336000908152600f602052604090205460ff161561162e5760405162461bcd60e51b815260206004820152601760248201527f4164647265737320616c726561647920636c61696d65640000000000000000006044820152606401610b23565b610dac6011546001611640919061346c565b111561168e5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610b23565b60105460ff166116b05760405162461bcd60e51b8152600401610b2390613484565b6013546116bc3361123f565b6116c790600161346c565b11156117155760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610b23565b336000818152600f60205260409020805460ff1916600190811790915561173b916123e7565b5050505050565b61174c338361206e565b6117685760405162461bcd60e51b8152600401610b23906133f2565b610c3e84848484612515565b61177c612294565b6110dd81336123e7565b60198054610d35906132d8565b6000818152600260205260409020546060906001600160a01b03166118125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b23565b601054610100900460ff1615156000036118b85760188054611833906132d8565b80601f016020809104026020016040519081016040528092919081815260200182805461185f906132d8565b80156118ac5780601f10611881576101008083540402835291602001916118ac565b820191906000526020600020905b81548152906001019060200180831161188f57829003601f168201915b50505050509050919050565b6000828152601a6020526040812080546118d1906132d8565b80601f01602080910402602001604051908101604052809291908181526020018280546118fd906132d8565b801561194a5780601f1061191f5761010080835404028352916020019161194a565b820191906000526020600020905b81548152906001019060200180831161192d57829003601f168201915b50505050509050600061195b612548565b9050805160000361196d575092915050565b81511561199f5780826040516020016119879291906134f0565b60405160208183030381529060405292505050919050565b806119a985612557565b60196040516020016119879392919061351f565b6119c6816111df565b6001600160a01b0316336001600160a01b031614611a315760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610b23565b61ffff82166000908152600d602052604081208054611a4f906132d8565b905011611ab55760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610b23565b611abe816122ee565b60408051336020820152808201839052815180820383018152606082018352601654600160f01b60808401526082808401919091528351808403909101815260a2830193849052600b5463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb1090611b41908990309089908790899060a601613551565b6040805180830381865afa158015611b5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8191906135a5565b50905080341015611c0a5760405162461bcd60e51b815260206004820152604760248201527f47473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560448201527f72206d6573736167654665652e2053656e642067617320666f72206d657373616064820152666765206665657360c81b608482015260a401610b23565b600b5461ffff87166000908152600d6020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611c55928c928b913391908b906004016135c9565b6000604051808303818588803b158015611c6e57600080fd5b505af1158015611c82573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600c60205260408082209051611cb09087906133d6565b90815260408051602092819003830190206001600160401b0387166000908152925290206001810154909150611d375760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610b23565b805482148015611d61575080600101548383604051611d579291906136a9565b6040518091039020145b611dad5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610b23565b60008082556001820155604051630e1bd41160e11b81523090631c37a82290611de290899089908990899089906004016136b9565b600060405180830381600087803b158015611dfc57600080fd5b505af1158015611e10573d6000803e3d6000fd5b50505050505050505050565b611e24612294565b601555565b611e31612294565b80516111db906019906020840190612bba565b611e4c612294565b6010805460ff19811660ff90911615179055565b611e68612294565b61ffff83166000908152600d60205260409020610c3e908383612c3e565b611e8e612294565b80516111db906018906020840190612bba565b611ea9612294565b6001600160a01b038116611f0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b23565b6110dd81612395565b611f1f612294565b600e55565b60006001600160e01b031982166380ac58cd60e01b1480611f5557506001600160e01b03198216635b5e139f60e01b145b80610c6957506301ffc9a760e01b6001600160e01b0319831614610c69565b6000818152600260205260409020546001600160a01b03166110dd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612008826111df565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612058919061371a565b915091506120668282612657565b505050505050565b60008061207a836111df565b9050806001600160a01b0316846001600160a01b031614806120c157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806120e55750836001600160a01b03166120da84610d01565b6001600160a01b0316145b949350505050565b826001600160a01b0316612100826111df565b6001600160a01b0316146121645760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b23565b6001600160a01b0382166121c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b23565b6121d1838383612671565b6121dc600082611fd3565b6001600160a01b0383166000908152600360205260408120805460019290612205908490613748565b90915550506001600160a01b038216600090815260036020526040812080546001929061223390849061346c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146112d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b60006122f9826111df565b905061230781600084612671565b612312600083611fd3565b6001600160a01b038116600090815260036020526040812080546001929061233b908490613748565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b82811015610ec657601154610dac81101561241e576011805490600061240f8361375f565b919050555061241e8382612657565b50806124298161375f565b9150506123ea565b816001600160a01b0316836001600160a01b0316036124925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b23565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008261250c8584612729565b14949350505050565b6125208484846120ed565b61252c84848484612776565b610c3e5760405162461bcd60e51b8152600401610b2390613778565b606060178054610c7e906132d8565b60608160000361257e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125a857806125928161375f565b91506125a19050600a836137e0565b9150612582565b6000816001600160401b038111156125c2576125c2612cde565b6040519080825280601f01601f1916602001820160405280156125ec576020820181803683370190505b5090505b84156120e557612601600183613748565b915061260e600a866137f4565b61261990603061346c565b60f81b81838151811061262e5761262e613440565b60200101906001600160f81b031916908160001a905350612650600a866137e0565b94506125f0565b6111db828260405180602001604052806000815250612877565b6001600160a01b0383166126cc576126c781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126ef565b816001600160a01b0316836001600160a01b0316146126ef576126ef83826128aa565b6001600160a01b03821661270657610ec681612947565b826001600160a01b0316826001600160a01b031614610ec657610ec682826129f6565b600081815b845181101561276e5761275a8286838151811061274d5761274d613440565b6020026020010151612a3a565b9150806127668161375f565b91505061272e565b509392505050565b60006001600160a01b0384163b1561286c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127ba903390899088908890600401613808565b6020604051808303816000875af19250505080156127f5575060408051601f3d908101601f191682019092526127f291810190613845565b60015b612852573d808015612823576040519150601f19603f3d011682016040523d82523d6000602084013e612828565b606091505b50805160000361284a5760405162461bcd60e51b8152600401610b2390613778565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120e5565b506001949350505050565b6128818383612a6c565b61288e6000848484612776565b610ec65760405162461bcd60e51b8152600401610b2390613778565b600060016128b78461123f565b6128c19190613748565b600083815260076020526040902054909150808214612914576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061295990600190613748565b6000838152600960205260408120546008805493945090928490811061298157612981613440565b9060005260206000200154905080600883815481106129a2576129a2613440565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129da576129da613862565b6001900381819060005260206000200160009055905550505050565b6000612a018361123f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000818310612a56576000828152602084905260409020612a65565b60008381526020839052604090205b9392505050565b6001600160a01b038216612ac25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b23565b6000818152600260205260409020546001600160a01b031615612b275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b23565b612b3360008383612671565b6001600160a01b0382166000908152600360205260408120805460019290612b5c90849061346c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612bc6906132d8565b90600052602060002090601f016020900481019282612be85760008555612c2e565b82601f10612c0157805160ff1916838001178555612c2e565b82800160010185558215612c2e579182015b82811115612c2e578251825591602001919060010190612c13565b50612c3a929150612cb2565b5090565b828054612c4a906132d8565b90600052602060002090601f016020900481019282612c6c5760008555612c2e565b82601f10612c855782800160ff19823516178555612c2e565b82800160010185558215612c2e579182015b82811115612c2e578235825591602001919060010190612c97565b5b80821115612c3a5760008155600101612cb3565b803561ffff81168114612cd957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612d0e57612d0e612cde565b604051601f8501601f19908116603f01168101908282118183101715612d3657612d36612cde565b81604052809350858152868686011115612d4f57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612d7a57600080fd5b612a6583833560208501612cf4565b80356001600160401b0381168114612cd957600080fd5b60008060008060808587031215612db657600080fd5b612dbf85612cc7565b935060208501356001600160401b0380821115612ddb57600080fd5b612de788838901612d69565b9450612df560408801612d89565b93506060870135915080821115612e0b57600080fd5b50612e1887828801612d69565b91505092959194509250565b6001600160e01b0319811681146110dd57600080fd5b600060208284031215612e4c57600080fd5b8135612a6581612e24565b60005b83811015612e72578181015183820152602001612e5a565b83811115610c3e5750506000910152565b60008151808452612e9b816020860160208601612e57565b601f01601f19169290920160200192915050565b602081526000612a656020830184612e83565b600060208284031215612ed457600080fd5b5035919050565b6001600160a01b03811681146110dd57600080fd5b60008060408385031215612f0357600080fd5b8235612f0e81612edb565b946020939093013593505050565b600080600060608486031215612f3157600080fd5b8335612f3c81612edb565b92506020840135612f4c81612edb565b929592945050506040919091013590565b600060208284031215612f6f57600080fd5b8135612a6581612edb565b600060208284031215612f8c57600080fd5b81356001600160401b03811115612fa257600080fd5b8201601f81018413612fb357600080fd5b6120e584823560208401612cf4565b600060208284031215612fd457600080fd5b612a6582612cc7565b600080600060608486031215612ff257600080fd5b612ffb84612cc7565b925060208401356001600160401b0381111561301657600080fd5b61302286828701612d69565b925050604084013590509250925092565b6000806040838503121561304657600080fd5b82359150602083013561305881612edb565b809150509250929050565b6000806040838503121561307657600080fd5b823561308181612edb565b91506020830135801515811461305857600080fd5b600080602083850312156130a957600080fd5b82356001600160401b03808211156130c057600080fd5b818501915085601f8301126130d457600080fd5b8135818111156130e357600080fd5b8660208260051b85010111156130f857600080fd5b60209290920196919550909350505050565b6000806000806080858703121561312057600080fd5b843561312b81612edb565b9350602085013561313b81612edb565b92506040850135915060608501356001600160401b0381111561315d57600080fd5b612e1887828801612d69565b6000806040838503121561317c57600080fd5b612f0e83612cc7565b60008083601f84011261319757600080fd5b5081356001600160401b038111156131ae57600080fd5b6020830191508360208285010111156131c657600080fd5b9250929050565b6000806000806000608086880312156131e557600080fd5b6131ee86612cc7565b945060208601356001600160401b038082111561320a57600080fd5b61321689838a01612d69565b955061322460408901612d89565b9450606088013591508082111561323a57600080fd5b5061324788828901613185565b969995985093965092949392505050565b6000806040838503121561326b57600080fd5b823561327681612edb565b9150602083013561305881612edb565b60008060006040848603121561329b57600080fd5b6132a484612cc7565b925060208401356001600160401b038111156132bf57600080fd5b6132cb86828701613185565b9497909650939450505050565b600181811c908216806132ec57607f821691505b60208210810361330c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000815461331f816132d8565b60018281168015613337576001811461334857613377565b60ff19841687528287019450613377565b8560005260208060002060005b8581101561336e5781548a820152908401908201613355565b50505082870194505b5050505092915050565b6000612a658284613312565b61ffff851681526080602082015260006133aa6080830186612e83565b6001600160401b038516604084015282810360608401526133cb8185612e83565b979650505050505050565b600082516133e8818460208701612e57565b9190910192915050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561347f5761347f613456565b500190565b6020808252602d908201527f53616c65206d7573742062652061637469766520746f206d696e74207061747460408201526c65726e656453616d757261697360981b606082015260800190565b60008160001904831182151516156134eb576134eb613456565b500290565b60008351613502818460208801612e57565b835190830190613516818360208801612e57565b01949350505050565b60008451613531818460208901612e57565b845190830190613545818360208901612e57565b6133cb81830186613312565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061357f90830186612e83565b841515606084015282810360808401526135998185612e83565b98975050505050505050565b600080604083850312156135b857600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546135e7816132d8565b8060c087015260e0600180841660008114613609576001811461361e5761364c565b60ff198516898401526101008901955061364c565b8d6000528660002060005b858110156136445781548b8201860152908301908801613629565b8a0184019650505b505050505083810360408501526136638189612e83565b91505061367b60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a084015261369c8185612e83565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006136d66080830187612e83565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b6000806040838503121561372d57600080fd5b825161373881612edb565b6020939093015192949293505050565b60008282101561375a5761375a613456565b500390565b60006001820161377157613771613456565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826137ef576137ef6137ca565b500490565b600082613803576138036137ca565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061383b90830184612e83565b9695505050505050565b60006020828403121561385757600080fd5b8151612a6581612e24565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205017b10aab24ead2c2231b2ffd8a35dc5194aeeeb76b4b769e7e42aa1327d3ef64736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d583363436a7a6277514a665839314d7970696d506b5434774b326950683241634a72425648745744336e44712f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string): ipfs://QmX3cCjzbwQJfX91MypimPkT4wK2iPh2AcJrBVHtWD3nDq/
Arg [2] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 2000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d583363436a7a6277514a665839314d7970696d506b5434
Arg [7] : 774b326950683241634a72425648745744336e44712f00000000000000000000


Deployed Bytecode Sourcemap

66183:8541:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23266:949;;;;;;;;;;-1:-1:-1;23266:949:0;;;;;:::i;:::-;;:::i;:::-;;59904:224;;;;;;;;;;-1:-1:-1;59904:224:0;;;;;:::i;:::-;;:::i;:::-;;;2587:14:1;;2580:22;2562:41;;2550:2;2535:18;59904:224:0;;;;;;;;46638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48151:171::-;;;;;;;;;;-1:-1:-1;48151:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3823:32:1;;;3805:51;;3793:2;3778:18;48151:171:0;3659:203:1;66775:28:0;;;;;;;;;;;;;:::i;47668:417::-;;;;;;;;;;-1:-1:-1;47668:417:0;;;;;:::i;:::-;;:::i;60544:113::-;;;;;;;;;;-1:-1:-1;60632:10:0;:17;60544:113;;;4469:25:1;;;4457:2;4442:18;60544:113:0;4323:177:1;24223:356:0;;;;;;;;;;-1:-1:-1;24223:356:0;;;;;:::i;:::-;;:::i;48851:336::-;;;;;;;;;;-1:-1:-1;48851:336:0;;;;;:::i;:::-;;:::i;60212:256::-;;;;;;;;;;-1:-1:-1;60212:256:0;;;;;:::i;:::-;;:::i;74017:107::-;;;;;;;;;;-1:-1:-1;74017:107:0;;;;;:::i;:::-;;:::i;66499:41::-;;;;;;;;;;;;66536:4;66499:41;;72813:80;;;;;;;;;;;;;:::i;49258:185::-;;;;;;;;;;-1:-1:-1;49258:185:0;;;;;:::i;:::-;;:::i;69681:143::-;;;;;;;;;;-1:-1:-1;69681:143:0;;;;;:::i;:::-;;:::i;60734:233::-;;;;;;;;;;-1:-1:-1;60734:233:0;;;;;:::i;:::-;;:::i;73749:145::-;;;;;;;;;;-1:-1:-1;73749:145:0;;;;;:::i;:::-;;:::i;73535:92::-;;;;;;;;;;-1:-1:-1;73535:92:0;;;;;:::i;:::-;;:::i;73152:104::-;;;;;;;;;;-1:-1:-1;73152:104:0;;;;;:::i;:::-;;:::i;46349:222::-;;;;;;;;;;-1:-1:-1;46349:222:0;;;;;:::i;:::-;;:::i;66548:38::-;;;;;;;;;;;;;;;;66413:29;;;;;;;;;;-1:-1:-1;66413:29:0;;;;;;;;;;;66373:33;;;;;;;;;;-1:-1:-1;66373:33:0;;;;;;;;46080:207;;;;;;;;;;-1:-1:-1;46080:207:0;;;;;:::i;:::-;;:::i;21864:103::-;;;;;;;;;;;;;:::i;66594:30::-;;;;;;;;;;;;;;;;66631:27;;;;;;;;;;;;;;;;23108:51;;;;;;;;;;-1:-1:-1;23108:51:0;;;;;:::i;:::-;;:::i;21216:87::-;;;;;;;;;;-1:-1:-1;21289:6:0;;-1:-1:-1;;;;;21289:6:0;21216:87;;23011:90;;;;;;;;;;-1:-1:-1;23011:90:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6724:25:1;;;6780:2;6765:18;;6758:34;;;;6697:18;23011:90:0;6550:248:1;74132:125:0;;;;;;;;;;-1:-1:-1;74132:125:0;;;;;:::i;:::-;;:::i;67775:863::-;;;;;;:::i;:::-;;:::i;46807:104::-;;;;;;;;;;;;;:::i;73902:103::-;;;;;;;;;;-1:-1:-1;73902:103:0;;;;;:::i;:::-;;:::i;73423:104::-;;;;;;;;;;-1:-1:-1;73423:104:0;;;;;:::i;:::-;;:::i;48394:155::-;;;;;;;;;;-1:-1:-1;48394:155:0;;;;;:::i;:::-;;:::i;68644:584::-;;;;;;;;;;-1:-1:-1;68644:584:0;;;;;:::i;:::-;;:::i;49514:323::-;;;;;;;;;;-1:-1:-1;49514:323:0;;;;;:::i;:::-;;:::i;69234:115::-;;;;;;;;;;-1:-1:-1;69234:115:0;;;;;:::i;:::-;;:::i;66811:37::-;;;;;;;;;;;;;:::i;71560:994::-;;;;;;;;;;-1:-1:-1;71560:994:0;;;;;:::i;:::-;;:::i;66327:39::-;;;;;;;;;;-1:-1:-1;66327:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;69964:1588;;;;;;:::i;:::-;;:::i;25055:758::-;;;;;;:::i;:::-;;:::i;73633:108::-;;;;;;;;;;-1:-1:-1;73633:108:0;;;;;:::i;:::-;;:::i;66291:29::-;;;;;;;;;;;;;;;;73264:151;;;;;;;;;;-1:-1:-1;73264:151:0;;;;;:::i;:::-;;:::i;72713:92::-;;;;;;;;;;;;;:::i;48620:164::-;;;;;;;;;;-1:-1:-1;48620:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;48741:25:0;;;48717:4;48741:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48620:164;66665:32;;;;;;;;;;;;;;;;25821:158;;;;;;;;;;-1:-1:-1;25821:158:0;;;;;:::i;:::-;;:::i;73018:126::-;;;;;;;;;;-1:-1:-1;73018:126:0;;;;;:::i;:::-;;:::i;22122:201::-;;;;;;;;;;-1:-1:-1;22122:201:0;;;;;:::i;:::-;;:::i;66909:40::-;;;;;;;;;;-1:-1:-1;66909:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;74263:112;;;;;;;;;;-1:-1:-1;74263:112:0;;;;;:::i;:::-;;:::i;23266:949::-;23428:8;;-1:-1:-1;;;;;23428:8:0;23406:10;:31;23398:40;;;;;;23549:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;23527:11;:18;:61;:134;;;;-1:-1:-1;23628:32:0;;;;;;;:19;:32;;;;;;;23618:43;;;;23628:32;23618:43;:::i;:::-;;;;;;;;23602:11;23592:22;;;;;;:69;23527:134;23519:213;;;;-1:-1:-1;;;23519:213:0;;12950:2:1;23519:213:0;;;12932:21:1;12989:2;12969:18;;;12962:30;13028:34;13008:18;;;13001:62;-1:-1:-1;;;13079:18:1;;;13072:50;13139:19;;23519:213:0;;;;;;;;;23860:60;;-1:-1:-1;;;23860:60:0;;:4;;:16;;:60;;23877:11;;23890;;23903:6;;23911:8;;23860:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23856:352;;24067:52;;;;;;;;24082:8;:15;24067:52;;;;24109:8;24099:19;;;;;;24067:52;;;24016:14;:27;24031:11;24016:27;;;;;;;;;;;;;;;24044:11;24016:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24016:48:0;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;24139:57;;;;24153:11;;24166;;24057:6;;24187:8;;24139:57;:::i;:::-;;;;;;;;23856:352;23266:949;;;;:::o;59904:224::-;60006:4;-1:-1:-1;;;;;;60030:50:0;;-1:-1:-1;;;60030:50:0;;:90;;;60084:36;60108:11;60084:23;:36::i;:::-;60023:97;59904:224;-1:-1:-1;;59904:224:0:o;46638:100::-;46692:13;46725:5;46718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46638:100;:::o;48151:171::-;48227:7;48247:23;48262:7;48247:14;:23::i;:::-;-1:-1:-1;48290:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48290:24:0;;48151:171::o;66775:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47668:417::-;47749:13;47765:23;47780:7;47765:14;:23::i;:::-;47749:39;;47813:5;-1:-1:-1;;;;;47807:11:0;:2;-1:-1:-1;;;;;47807:11:0;;47799:57;;;;-1:-1:-1;;;47799:57:0;;14212:2:1;47799:57:0;;;14194:21:1;14251:2;14231:18;;;14224:30;14290:34;14270:18;;;14263:62;-1:-1:-1;;;14341:18:1;;;14334:31;14382:19;;47799:57:0;14010:397:1;47799:57:0;19847:10;-1:-1:-1;;;;;47891:21:0;;;;:62;;-1:-1:-1;47916:37:0;47933:5;19847:10;48620:164;:::i;47916:37::-;47869:174;;;;-1:-1:-1;;;47869:174:0;;14614:2:1;47869:174:0;;;14596:21:1;14653:2;14633:18;;;14626:30;14692:34;14672:18;;;14665:62;14763:32;14743:18;;;14736:60;14813:19;;47869:174:0;14412:426:1;47869:174:0;48056:21;48065:2;48069:7;48056:8;:21::i;:::-;47738:347;47668:417;;:::o;24223:356::-;24392:10;24414:4;24392:27;24384:83;;;;-1:-1:-1;;;24384:83:0;;15045:2:1;24384:83:0;;;15027:21:1;15084:2;15064:18;;;15057:30;15123:34;15103:18;;;15096:62;-1:-1:-1;;;15174:18:1;;;15167:41;15225:19;;24384:83:0;14843:407:1;24384:83:0;24516:55;24528:11;24541;24554:6;24562:8;24516:10;:55::i;48851:336::-;49046:41;19847:10;49079:7;49046:18;:41::i;:::-;49038:100;;;;-1:-1:-1;;;49038:100:0;;;;;;;:::i;:::-;49151:28;49161:4;49167:2;49171:7;49151:9;:28::i;60212:256::-;60309:7;60345:23;60362:5;60345:16;:23::i;:::-;60337:5;:31;60329:87;;;;-1:-1:-1;;;60329:87:0;;15872:2:1;60329:87:0;;;15854:21:1;15911:2;15891:18;;;15884:30;15950:34;15930:18;;;15923:62;-1:-1:-1;;;16001:18:1;;;15994:41;16052:19;;60329:87:0;15670:407:1;60329:87:0;-1:-1:-1;;;;;;60434:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;60212:256::o;74017:107::-;21102:13;:11;:13::i;:::-;-1:-1:-1;;;;;74092:16:0::1;74111:5;74092:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;74092:24:0::1;::::0;;74017:107::o;72813:80::-;21102:13;:11;:13::i;:::-;72876:9:::1;::::0;;-1:-1:-1;;72863:22:0;::::1;72876:9;::::0;;;::::1;;;72875:10;72863:22:::0;;::::1;;::::0;;72813:80::o;49258:185::-;49396:39;49413:4;49419:2;49423:7;49396:39;;;;;;;;;;;;:16;:39::i;69681:143::-;19847:10;69732:11;69740:2;69732:7;:11::i;:::-;-1:-1:-1;;;;;69732:27:0;;69724:72;;;;-1:-1:-1;;;69724:72:0;;16284:2:1;69724:72:0;;;16266:21:1;16323:2;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;-1:-1:-1;;;16413:18:1;;;16406:31;16454:19;;69724:72:0;16082:397:1;69724:72:0;69807:9;69813:2;69807:5;:9::i;:::-;69681:143;:::o;60734:233::-;60809:7;60845:30;60632:10;:17;;60544:113;60845:30;60837:5;:38;60829:95;;;;-1:-1:-1;;;60829:95:0;;16686:2:1;60829:95:0;;;16668:21:1;16725:2;16705:18;;;16698:30;16764:34;16744:18;;;16737:62;-1:-1:-1;;;16815:18:1;;;16808:42;16867:19;;60829:95:0;16484:408:1;60829:95:0;60942:10;60953:5;60942:17;;;;;;;;:::i;:::-;;;;;;;;;60935:24;;60734:233;;;:::o;73749:145::-;21102:13;:11;:13::i;:::-;73857:29:::1;::::0;73825:21:::1;::::0;-1:-1:-1;;;;;73857:20:0;::::1;::::0;:29;::::1;;;::::0;73825:21;;73807:15:::1;73857:29:::0;73807:15;73857:29;73825:21;73857:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;73535:92:::0;21102:13;:11;:13::i;:::-;73601:7:::1;:18:::0;73535:92::o;73152:104::-;21102:13;:11;:13::i;:::-;73227:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;73152:104:::0;:::o;46349:222::-;46421:7;46457:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46457:16:0;;46484:56;;;;-1:-1:-1;;;46484:56:0;;17231:2:1;46484:56:0;;;17213:21:1;17270:2;17250:18;;;17243:30;-1:-1:-1;;;17289:18:1;;;17282:54;17353:18;;46484:56:0;17029:348:1;46080:207:0;46152:7;-1:-1:-1;;;;;46180:19:0;;46172:73;;;;-1:-1:-1;;;46172:73:0;;17584:2:1;46172:73:0;;;17566:21:1;17623:2;17603:18;;;17596:30;17662:34;17642:18;;;17635:62;-1:-1:-1;;;17713:18:1;;;17706:39;17762:19;;46172:73:0;17382:405:1;46172:73:0;-1:-1:-1;;;;;;46263:16:0;;;;;:9;:16;;;;;;;46080:207::o;21864:103::-;21102:13;:11;:13::i;:::-;21929:30:::1;21956:1;21929:18;:30::i;:::-;21864:103::o:0;23108:51::-;;;;;;;;;;;;;;;;:::i;74132:125::-;21102:13;:11;:13::i;:::-;74214:26:::1;:35:::0;74132:125::o;67775:863::-;66536:4;67897:13;67883:11;;:27;;;;:::i;:::-;:41;;67861:119;;;;-1:-1:-1;;;67861:119:0;;18259:2:1;67861:119:0;;;18241:21:1;18298:2;18278:18;;;18271:30;18337;18317:18;;;18310:58;18385:18;;67861:119:0;18057:352:1;67861:119:0;68001:13;;;;67993:71;;;;-1:-1:-1;;;67993:71:0;;;;;;;:::i;:::-;68140:10;;68123:13;68099:21;68109:10;68099:9;:21::i;:::-;:37;;;;:::i;:::-;:51;;68077:130;;;;-1:-1:-1;;;68077:130:0;;19030:2:1;68077:130:0;;;19012:21:1;19069:2;19049:18;;;19042:30;19108:31;19088:18;;;19081:59;19157:18;;68077:130:0;18828:353:1;68077:130:0;68245:7;;68228:13;:24;;68220:72;;;;-1:-1:-1;;;68220:72:0;;19388:2:1;68220:72:0;;;19370:21:1;19427:2;19407:18;;;19400:30;19466:34;19446:18;;;19439:62;-1:-1:-1;;;19517:18:1;;;19510:33;19560:19;;68220:72:0;19186:399:1;68220:72:0;68337:11;;68320:13;68306:11;;:27;;;;:::i;:::-;:42;68303:328;;68401:9;68388;;68372:13;:25;;;;:::i;:::-;:38;;68364:71;;;;-1:-1:-1;;;68364:71:0;;19965:2:1;68364:71:0;;;19947:21:1;20004:2;19984:18;;;19977:30;-1:-1:-1;;;20023:18:1;;;20016:51;20084:18;;68364:71:0;19763:345:1;68364:71:0;68450:25;68456:13;68470:4;68450:5;:25::i;46807:104::-;46863:13;46896:7;46889:14;;;;;:::i;73902:103::-;21102:13;:11;:13::i;:::-;-1:-1:-1;;;;;73974:16:0::1;;::::0;;;:7:::1;:16;::::0;;;;:23;;-1:-1:-1;;73974:23:0::1;73993:4;73974:23;::::0;;73902:103::o;73423:104::-;21102:13;:11;:13::i;:::-;73495:10:::1;:24:::0;73423:104::o;48394:155::-;48489:52;19847:10;48522:8;48532;48489:18;:52::i;68644:584::-;68720:11;;68733:14;;67230:144;67267:11;;67230:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67330:28:0;;-1:-1:-1;;67347:10:0;20262:2:1;20258:15;20254:53;67330:28:0;;;20242:66:1;67297:4:0;;-1:-1:-1;20324:12:1;;;-1:-1:-1;67330:28:0;;;;;;;;;;;;67320:39;;;;;;67230:18;:144::i;:::-;67208:224;;;;-1:-1:-1;;;67208:224:0;;20549:2:1;67208:224:0;;;20531:21:1;20588:2;20568:18;;;20561:30;20627:32;20607:18;;;20600:60;20677:18;;67208:224:0;20347:354:1;67208:224:0;68778:10:::1;68770:19;::::0;;;:7:::1;:19;::::0;;;;;::::1;;68769:20;68761:56;;;::::0;-1:-1:-1;;;68761:56:0;;20908:2:1;68761:56:0::1;::::0;::::1;20890:21:1::0;20947:2;20927:18;;;20920:30;20986:25;20966:18;;;20959:53;21029:18;;68761:56:0::1;20706:347:1::0;68761:56:0::1;66536:4;68852:11;;68866:1;68852:15;;;;:::i;:::-;:29;;68830:107;;;::::0;-1:-1:-1;;;68830:107:0;;18259:2:1;68830:107:0::1;::::0;::::1;18241:21:1::0;18298:2;18278:18;;;18271:30;18337;18317:18;;;18310:58;18385:18;;68830:107:0::1;18057:352:1::0;68830:107:0::1;68958:13;::::0;::::1;;68950:71;;;;-1:-1:-1::0;;;68950:71:0::1;;;;;;;:::i;:::-;69085:10;;69056:21;69066:10;69056:9;:21::i;:::-;:25;::::0;69080:1:::1;69056:25;:::i;:::-;:39;;69034:118;;;::::0;-1:-1:-1;;;69034:118:0;;19030:2:1;69034:118:0::1;::::0;::::1;19012:21:1::0;19069:2;19049:18;;;19042:30;19108:31;19088:18;;;19081:59;19157:18;;69034:118:0::1;18828:353:1::0;69034:118:0::1;69171:10;69163:19;::::0;;;:7:::1;:19;::::0;;;;:26;;-1:-1:-1;;69163:26:0::1;69185:4;69163:26:::0;;::::1;::::0;;;69200:19:::1;::::0;:5:::1;:19::i;:::-;68644:584:::0;;;;;:::o;49514:323::-;49688:41;19847:10;49721:7;49688:18;:41::i;:::-;49680:100;;;;-1:-1:-1;;;49680:100:0;;;;;;;:::i;:::-;49791:38;49805:4;49811:2;49815:7;49824:4;49791:13;:38::i;69234:115::-;21102:13;:11;:13::i;:::-;69309:31:::1;69315:13;69329:10;69309:5;:31::i;66811:37::-:0;;;;;;;:::i;71560:994::-;51409:4;51433:16;;;:7;:16;;;;;;71678:13;;-1:-1:-1;;;;;51433:16:0;71711:113;;;;-1:-1:-1;;;71711:113:0;;21260:2:1;71711:113:0;;;21242:21:1;21299:2;21279:18;;;21272:30;21338:34;21318:18;;;21311:62;-1:-1:-1;;;21389:18:1;;;21382:45;21444:19;;71711:113:0;21058:411:1;71711:113:0;71841:9;;;;;;;:18;;71854:5;71841:18;71837:72;;71883:14;71876:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71560:994;;;:::o;71837:72::-;71921:23;71947:19;;;:10;:19;;;;;71921:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71977:18;71998:10;:8;:10::i;:::-;71977:31;;72090:4;72084:18;72106:1;72084:23;72080:72;;-1:-1:-1;72131:9:0;71560:994;-1:-1:-1;;71560:994:0:o;72080:72::-;72256:23;;:27;72252:108;;72331:4;72337:9;72314:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72300:48;;;;71560:994;;;:::o;72252:108::-;72505:4;72511:18;:7;:16;:18::i;:::-;72531:13;72488:57;;;;;;;;;;:::i;69964:1588::-;70067:16;70075:7;70067;:16::i;:::-;-1:-1:-1;;;;;70053:30:0;:10;-1:-1:-1;;;;;70053:30:0;;70045:77;;;;-1:-1:-1;;;70045:77:0;;22705:2:1;70045:77:0;;;22687:21:1;22744:2;22724:18;;;22717:30;22783:34;22763:18;;;22756:62;-1:-1:-1;;;22834:18:1;;;22827:32;22876:19;;70045:77:0;22503:398:1;70045:77:0;70141:29;;;70180:1;70141:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;70133:99;;;;-1:-1:-1;;;70133:99:0;;23108:2:1;70133:99:0;;;23090:21:1;23147:2;23127:18;;;23120:30;23186:34;23166:18;;;23159:62;-1:-1:-1;;;23237:18:1;;;23230:44;23291:19;;70133:99:0;22906:410:1;70133:99:0;70312:14;70318:7;70312:5;:14::i;:::-;70423:31;;;70434:10;70423:31;;;23495:51:1;23562:18;;;23555:34;;;70423:31:0;;;;;;;;;23468:18:1;;;70423:31:0;;70624:26;;-1:-1:-1;;;70598:53:0;;;23755:51:1;23822:11;;;;23815:27;;;;70598:53:0;;;;;;;;;;23858:12:1;;;70598:53:0;;;;70827:8;;-1:-1:-1;;;70827:77:0;;;70423:31;;70557:1;;-1:-1:-1;;;;;;;70827:8:0;;:21;;:77;;70849:8;;70867:4;;70423:31;;-1:-1:-1;;70598:53:0;;70827:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70805:99;;;70946:10;70933:9;:23;;70925:107;;;;-1:-1:-1;;;70925:107:0;;24980:2:1;70925:107:0;;;24962:21:1;25019:2;24999:18;;;24992:30;25058:34;25038:18;;;25031:62;25129:34;25109:18;;;25102:62;-1:-1:-1;;;25180:19:1;;;25173:38;25228:19;;70925:107:0;24778:475:1;70925:107:0;71045:8;;71163:29;;;71045:8;71163:29;;;:19;:29;;;;;;71045:499;;-1:-1:-1;;;71045:499:0;;-1:-1:-1;;;;;71045:8:0;;;;:13;;71066:9;;71045:499;;71091:8;;71251:7;;71334:10;;71045:8;71481:13;;71045:499;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70034:1518;;;;69964:1588;;:::o;25055:758::-;25271:27;;;25236:32;25271:27;;;:14;:27;;;;;;:40;;;;25299:11;;25271:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25271:48:0;;;;;;;;;;25338:21;;;;25271:48;;-1:-1:-1;25330:86:0;;;;-1:-1:-1;;;25330:86:0;;26949:2:1;25330:86:0;;;26931:21:1;26988:2;26968:18;;;26961:30;27027:34;27007:18;;;27000:62;-1:-1:-1;;;27078:18:1;;;27071:36;27124:19;;25330:86:0;26747:402:1;25330:86:0;25454:23;;25435:42;;:90;;;;;25504:9;:21;;;25491:8;;25481:19;;;;;;;:::i;:::-;;;;;;;;:44;25435:90;25427:129;;;;-1:-1:-1;;;25427:129:0;;27632:2:1;25427:129:0;;;27614:21:1;27671:2;27651:18;;;27644:30;27710:28;27690:18;;;27683:56;27756:18;;25427:129:0;27430:350:1;25427:129:0;25630:1;25604:27;;;25642:21;;;:34;25745:60;;-1:-1:-1;;;25745:60:0;;:4;;:16;;:60;;25762:11;;25775;;25788:6;;25796:8;;;;25745:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25180:633;25055:758;;;;;:::o;73633:108::-;21102:13;:11;:13::i;:::-;73707:11:::1;:26:::0;73633:108::o;73264:151::-;21102:13;:11;:13::i;:::-;73374:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;72713:92::-:0;21102:13;:11;:13::i;:::-;72784::::1;::::0;;-1:-1:-1;;72767:30:0;::::1;72784:13;::::0;;::::1;72783:14;72767:30;::::0;;72713:92::o;25821:158::-;21102:13;:11;:13::i;:::-;25925:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;25957:14;;25925:46:::1;:::i;73018:126::-:0;21102:13;:11;:13::i;:::-;73104:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;22122:201::-:0;21102:13;:11;:13::i;:::-;-1:-1:-1;;;;;22211:22:0;::::1;22203:73;;;::::0;-1:-1:-1;;;22203:73:0;;28710:2:1;22203:73:0::1;::::0;::::1;28692:21:1::0;28749:2;28729:18;;;28722:30;28788:34;28768:18;;;28761:62;-1:-1:-1;;;28839:18:1;;;28832:36;28885:19;;22203:73:0::1;28508:402:1::0;22203:73:0::1;22287:28;22306:8;22287:18;:28::i;74263:112::-:0;21102:13;:11;:13::i;:::-;74340:14:::1;:27:::0;74263:112::o;45711:305::-;45813:4;-1:-1:-1;;;;;;45850:40:0;;-1:-1:-1;;;45850:40:0;;:105;;-1:-1:-1;;;;;;;45907:48:0;;-1:-1:-1;;;45907:48:0;45850:105;:158;;;-1:-1:-1;;;;;;;;;;37482:40:0;;;45972:36;37373:157;56126:135;51409:4;51433:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51433:16:0;56200:53;;;;-1:-1:-1;;;56200:53:0;;17231:2:1;56200:53:0;;;17213:21:1;17270:2;17250:18;;;17243:30;-1:-1:-1;;;17289:18:1;;;17282:54;17353:18;;56200:53:0;17029:348:1;55405:174:0;55480:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55480:29:0;-1:-1:-1;;;;;55480:29:0;;;;;;;;:24;;55534:23;55480:24;55534:14;:23::i;:::-;-1:-1:-1;;;;;55525:46:0;;;;;;;;;;;55405:174;;:::o;74381:338::-;74534:14;74550:12;74577:8;74566:37;;;;;;;;;;;;:::i;:::-;74533:70;;;;74685:26;74695:6;74703:7;74685:9;:26::i;:::-;74503:216;;74381:338;;;;:::o;51638:264::-;51731:4;51748:13;51764:23;51779:7;51764:14;:23::i;:::-;51748:39;;51817:5;-1:-1:-1;;;;;51806:16:0;:7;-1:-1:-1;;;;;51806:16:0;;:52;;;-1:-1:-1;;;;;;48741:25:0;;;48717:4;48741:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;51826:32;51806:87;;;;51886:7;-1:-1:-1;;;;;51862:31:0;:20;51874:7;51862:11;:20::i;:::-;-1:-1:-1;;;;;51862:31:0;;51806:87;51798:96;51638:264;-1:-1:-1;;;;51638:264:0:o;54661:625::-;54820:4;-1:-1:-1;;;;;54793:31:0;:23;54808:7;54793:14;:23::i;:::-;-1:-1:-1;;;;;54793:31:0;;54785:81;;;;-1:-1:-1;;;54785:81:0;;29442:2:1;54785:81:0;;;29424:21:1;29481:2;29461:18;;;29454:30;29520:34;29500:18;;;29493:62;-1:-1:-1;;;29571:18:1;;;29564:35;29616:19;;54785:81:0;29240:401:1;54785:81:0;-1:-1:-1;;;;;54885:16:0;;54877:65;;;;-1:-1:-1;;;54877:65:0;;29848:2:1;54877:65:0;;;29830:21:1;29887:2;29867:18;;;29860:30;29926:34;29906:18;;;29899:62;-1:-1:-1;;;29977:18:1;;;29970:34;30021:19;;54877:65:0;29646:400:1;54877:65:0;54955:39;54976:4;54982:2;54986:7;54955:20;:39::i;:::-;55059:29;55076:1;55080:7;55059:8;:29::i;:::-;-1:-1:-1;;;;;55101:15:0;;;;;;:9;:15;;;;;:20;;55120:1;;55101:15;:20;;55120:1;;55101:20;:::i;:::-;;;;-1:-1:-1;;;;;;;55132:13:0;;;;;;:9;:13;;;;;:18;;55149:1;;55132:13;:18;;55149:1;;55132:18;:::i;:::-;;;;-1:-1:-1;;55161:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55161:21:0;-1:-1:-1;;;;;55161:21:0;;;;;;;;;55200:27;;55161:16;;55200:27;;;;;;;47738:347;47668:417;;:::o;21381:132::-;21289:6;;-1:-1:-1;;;;;21289:6:0;19847:10;21445:23;21437:68;;;;-1:-1:-1;;;21437:68:0;;30383:2:1;21437:68:0;;;30365:21:1;;;30402:18;;;30395:30;30461:34;30441:18;;;30434:62;30513:18;;21437:68:0;30181:356:1;53904:420:0;53964:13;53980:23;53995:7;53980:14;:23::i;:::-;53964:39;;54016:48;54037:5;54052:1;54056:7;54016:20;:48::i;:::-;54105:29;54122:1;54126:7;54105:8;:29::i;:::-;-1:-1:-1;;;;;54147:16:0;;;;;;:9;:16;;;;;:21;;54167:1;;54147:16;:21;;54167:1;;54147:21;:::i;:::-;;;;-1:-1:-1;;54186:16:0;;;;:7;:16;;;;;;54179:23;;-1:-1:-1;;;;;;54179:23:0;;;54220:36;54194:7;;54186:16;-1:-1:-1;;;;;54220:36:0;;;;;54186:16;;54220:36;73227:21:::1;73152:104:::0;:::o;22483:191::-;22576:6;;;-1:-1:-1;;;;;22593:17:0;;;-1:-1:-1;;;;;;22593:17:0;;;;;;;22626:40;;22576:6;;;22593:17;22576:6;;22626:40;;22557:16;;22626:40;22546:128;22483:191;:::o;69357:316::-;69432:9;69427:239;69451:13;69447:1;:17;69427:239;;;69506:11;;66536:4;69536:24;;69532:123;;;69581:11;:13;;;:11;:13;;;:::i;:::-;;;;;;69613:26;69623:4;69629:9;69613;:26::i;:::-;-1:-1:-1;69466:3:0;;;;:::i;:::-;;;;69427:239;;55722:315;55877:8;-1:-1:-1;;;;;55868:17:0;:5;-1:-1:-1;;;;;55868:17:0;;55860:55;;;;-1:-1:-1;;;55860:55:0;;30884:2:1;55860:55:0;;;30866:21:1;30923:2;30903:18;;;30896:30;30962:27;30942:18;;;30935:55;31007:18;;55860:55:0;30682:349:1;55860:55:0;-1:-1:-1;;;;;55926:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;55926:46:0;;;;;;;;;;55988:41;;2562::1;;;55988::0;;2535:18:1;55988:41:0;;;;;;;55722:315;;;:::o;9085:190::-;9210:4;9263;9234:25;9247:5;9254:4;9234:12;:25::i;:::-;:33;;9085:190;-1:-1:-1;;;;9085:190:0:o;50718:313::-;50874:28;50884:4;50890:2;50894:7;50874:9;:28::i;:::-;50921:47;50944:4;50950:2;50954:7;50963:4;50921:22;:47::i;:::-;50913:110;;;;-1:-1:-1;;;50913:110:0;;;;;;;:::i;72579:108::-;72639:13;72672:7;72665:14;;;;;:::i;17021:723::-;17077:13;17298:5;17307:1;17298:10;17294:53;;-1:-1:-1;;17325:10:0;;;;;;;;;;;;-1:-1:-1;;;17325:10:0;;;;;17021:723::o;17294:53::-;17372:5;17357:12;17413:78;17420:9;;17413:78;;17446:8;;;;:::i;:::-;;-1:-1:-1;17469:10:0;;-1:-1:-1;17477:2:0;17469:10;;:::i;:::-;;;17413:78;;;17501:19;17533:6;-1:-1:-1;;;;;17523:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17523:17:0;;17501:39;;17551:154;17558:10;;17551:154;;17585:11;17595:1;17585:11;;:::i;:::-;;-1:-1:-1;17654:10:0;17662:2;17654:5;:10;:::i;:::-;17641:24;;:2;:24;:::i;:::-;17628:39;;17611:6;17618;17611:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17611:56:0;;;;;;;;-1:-1:-1;17682:11:0;17691:2;17682:11;;:::i;:::-;;;17551:154;;52244:110;52320:26;52330:2;52334:7;52320:26;;;;;;;;;;;;:9;:26::i;61580:589::-;-1:-1:-1;;;;;61786:18:0;;61782:187;;61821:40;61853:7;62996:10;:17;;62969:24;;;;:15;:24;;;;;:44;;;63024:24;;;;;;;;;;;;62892:164;61821:40;61782:187;;;61891:2;-1:-1:-1;;;;;61883:10:0;:4;-1:-1:-1;;;;;61883:10:0;;61879:90;;61910:47;61943:4;61949:7;61910:32;:47::i;:::-;-1:-1:-1;;;;;61983:16:0;;61979:183;;62016:45;62053:7;62016:36;:45::i;61979:183::-;62089:4;-1:-1:-1;;;;;62083:10:0;:2;-1:-1:-1;;;;;62083:10:0;;62079:83;;62110:40;62138:2;62142:7;62110:27;:40::i;9952:296::-;10035:7;10078:4;10035:7;10093:118;10117:5;:12;10113:1;:16;10093:118;;;10166:33;10176:12;10190:5;10196:1;10190:8;;;;;;;;:::i;:::-;;;;;;;10166:9;:33::i;:::-;10151:48;-1:-1:-1;10131:3:0;;;;:::i;:::-;;;;10093:118;;;-1:-1:-1;10228:12:0;9952:296;-1:-1:-1;;;9952:296:0:o;56825:853::-;56979:4;-1:-1:-1;;;;;57000:13:0;;27512:19;:23;56996:675;;57036:71;;-1:-1:-1;;;57036:71:0;;-1:-1:-1;;;;;57036:36:0;;;;;:71;;19847:10;;57087:4;;57093:7;;57102:4;;57036:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57036:71:0;;;;;;;;-1:-1:-1;;57036:71:0;;;;;;;;;;;;:::i;:::-;;;57032:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57277:6;:13;57294:1;57277:18;57273:328;;57320:60;;-1:-1:-1;;;57320:60:0;;;;;;;:::i;57273:328::-;57551:6;57545:13;57536:6;57532:2;57528:15;57521:38;57032:584;-1:-1:-1;;;;;;57158:51:0;-1:-1:-1;;;57158:51:0;;-1:-1:-1;57151:58:0;;56996:675;-1:-1:-1;57655:4:0;56825:853;;;;;;:::o;52581:319::-;52710:18;52716:2;52720:7;52710:5;:18::i;:::-;52761:53;52792:1;52796:2;52800:7;52809:4;52761:22;:53::i;:::-;52739:153;;;;-1:-1:-1;;;52739:153:0;;;;;;;:::i;63683:988::-;63949:22;63999:1;63974:22;63991:4;63974:16;:22::i;:::-;:26;;;;:::i;:::-;64011:18;64032:26;;;:17;:26;;;;;;63949:51;;-1:-1:-1;64165:28:0;;;64161:328;;-1:-1:-1;;;;;64232:18:0;;64210:19;64232:18;;;:12;:18;;;;;;;;:34;;;;;;;;;64283:30;;;;;;:44;;;64400:30;;:17;:30;;;;;:43;;;64161:328;-1:-1:-1;64585:26:0;;;;:17;:26;;;;;;;;64578:33;;;-1:-1:-1;;;;;64629:18:0;;;;;:12;:18;;;;;:34;;;;;;;64622:41;63683:988::o;64966:1079::-;65244:10;:17;65219:22;;65244:21;;65264:1;;65244:21;:::i;:::-;65276:18;65297:24;;;:15;:24;;;;;;65670:10;:26;;65219:46;;-1:-1:-1;65297:24:0;;65219:46;;65670:26;;;;;;:::i;:::-;;;;;;;;;65648:48;;65734:11;65709:10;65720;65709:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;65814:28;;;:15;:28;;;;;;;:41;;;65986:24;;;;;65979:31;66021:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;65037:1008;;;64966:1079;:::o;62470:221::-;62555:14;62572:20;62589:2;62572:16;:20::i;:::-;-1:-1:-1;;;;;62603:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;62648:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;62470:221:0:o;16159:149::-;16222:7;16253:1;16249;:5;:51;;16384:13;16478:15;;;16514:4;16507:15;;;16561:4;16545:21;;16249:51;;;16384:13;16478:15;;;16514:4;16507:15;;;16561:4;16545:21;;16257:20;16242:58;16159:149;-1:-1:-1;;;16159:149:0:o;53236:439::-;-1:-1:-1;;;;;53316:16:0;;53308:61;;;;-1:-1:-1;;;53308:61:0;;32911:2:1;53308:61:0;;;32893:21:1;;;32930:18;;;32923:30;32989:34;32969:18;;;32962:62;33041:18;;53308:61:0;32709:356:1;53308:61:0;51409:4;51433:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51433:16:0;:30;53380:58;;;;-1:-1:-1;;;53380:58:0;;33272:2:1;53380:58:0;;;33254:21:1;33311:2;33291:18;;;33284:30;33350;33330:18;;;33323:58;33398:18;;53380:58:0;33070:352:1;53380:58:0;53451:45;53480:1;53484:2;53488:7;53451:20;:45::i;:::-;-1:-1:-1;;;;;53509:13:0;;;;;;:9;:13;;;;;:18;;53526:1;;53509:13;:18;;53526:1;;53509:18;:::i;:::-;;;;-1:-1:-1;;53538:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53538:21:0;-1:-1:-1;;;;;53538:21:0;;;;;;;;53577:33;;53538:16;;;53577:33;;53538:16;;53577:33;73227:21:::1;73152:104:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:127::-;239:10;234:3;230:20;227:1;220:31;270:4;267:1;260:15;294:4;291:1;284:15;310:631;374:5;-1:-1:-1;;;;;445:2:1;437:6;434:14;431:40;;;451:18;;:::i;:::-;526:2;520:9;494:2;580:15;;-1:-1:-1;;576:24:1;;;602:2;572:33;568:42;556:55;;;626:18;;;646:22;;;623:46;620:72;;;672:18;;:::i;:::-;712:10;708:2;701:22;741:6;732:15;;771:6;763;756:22;811:3;802:6;797:3;793:16;790:25;787:45;;;828:1;825;818:12;787:45;878:6;873:3;866:4;858:6;854:17;841:44;933:1;926:4;917:6;909;905:19;901:30;894:41;;;;310:631;;;;;:::o;946:220::-;988:5;1041:3;1034:4;1026:6;1022:17;1018:27;1008:55;;1059:1;1056;1049:12;1008:55;1081:79;1156:3;1147:6;1134:20;1127:4;1119:6;1115:17;1081:79;:::i;1171:171::-;1238:20;;-1:-1:-1;;;;;1287:30:1;;1277:41;;1267:69;;1332:1;1329;1322:12;1347:684;1449:6;1457;1465;1473;1526:3;1514:9;1505:7;1501:23;1497:33;1494:53;;;1543:1;1540;1533:12;1494:53;1566:28;1584:9;1566:28;:::i;:::-;1556:38;;1645:2;1634:9;1630:18;1617:32;-1:-1:-1;;;;;1709:2:1;1701:6;1698:14;1695:34;;;1725:1;1722;1715:12;1695:34;1748:49;1789:7;1780:6;1769:9;1765:22;1748:49;:::i;:::-;1738:59;;1816:37;1849:2;1838:9;1834:18;1816:37;:::i;:::-;1806:47;;1906:2;1895:9;1891:18;1878:32;1862:48;;1935:2;1925:8;1922:16;1919:36;;;1951:1;1948;1941:12;1919:36;;1974:51;2017:7;2006:8;1995:9;1991:24;1974:51;:::i;:::-;1964:61;;;1347:684;;;;;;;:::o;2036:131::-;-1:-1:-1;;;;;;2110:32:1;;2100:43;;2090:71;;2157:1;2154;2147:12;2172:245;2230:6;2283:2;2271:9;2262:7;2258:23;2254:32;2251:52;;;2299:1;2296;2289:12;2251:52;2338:9;2325:23;2357:30;2381:5;2357:30;:::i;2614:258::-;2686:1;2696:113;2710:6;2707:1;2704:13;2696:113;;;2786:11;;;2780:18;2767:11;;;2760:39;2732:2;2725:10;2696:113;;;2827:6;2824:1;2821:13;2818:48;;;-1:-1:-1;;2862:1:1;2844:16;;2837:27;2614:258::o;2877:::-;2919:3;2957:5;2951:12;2984:6;2979:3;2972:19;3000:63;3056:6;3049:4;3044:3;3040:14;3033:4;3026:5;3022:16;3000:63;:::i;:::-;3117:2;3096:15;-1:-1:-1;;3092:29:1;3083:39;;;;3124:4;3079:50;;2877:258;-1:-1:-1;;2877:258:1:o;3140:220::-;3289:2;3278:9;3271:21;3252:4;3309:45;3350:2;3339:9;3335:18;3327:6;3309:45;:::i;3365:180::-;3424:6;3477:2;3465:9;3456:7;3452:23;3448:32;3445:52;;;3493:1;3490;3483:12;3445:52;-1:-1:-1;3516:23:1;;3365:180;-1:-1:-1;3365:180:1:o;3867:131::-;-1:-1:-1;;;;;3942:31:1;;3932:42;;3922:70;;3988:1;3985;3978:12;4003:315;4071:6;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;4187:9;4174:23;4206:31;4231:5;4206:31;:::i;:::-;4256:5;4308:2;4293:18;;;;4280:32;;-1:-1:-1;;;4003:315:1:o;4505:456::-;4582:6;4590;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4706:9;4693:23;4725:31;4750:5;4725:31;:::i;:::-;4775:5;-1:-1:-1;4832:2:1;4817:18;;4804:32;4845:33;4804:32;4845:33;:::i;:::-;4505:456;;4897:7;;-1:-1:-1;;;4951:2:1;4936:18;;;;4923:32;;4505:456::o;4966:247::-;5025:6;5078:2;5066:9;5057:7;5053:23;5049:32;5046:52;;;5094:1;5091;5084:12;5046:52;5133:9;5120:23;5152:31;5177:5;5152:31;:::i;5218:450::-;5287:6;5340:2;5328:9;5319:7;5315:23;5311:32;5308:52;;;5356:1;5353;5346:12;5308:52;5396:9;5383:23;-1:-1:-1;;;;;5421:6:1;5418:30;5415:50;;;5461:1;5458;5451:12;5415:50;5484:22;;5537:4;5529:13;;5525:27;-1:-1:-1;5515:55:1;;5566:1;5563;5556:12;5515:55;5589:73;5654:7;5649:2;5636:16;5631:2;5627;5623:11;5589:73;:::i;5673:184::-;5731:6;5784:2;5772:9;5763:7;5759:23;5755:32;5752:52;;;5800:1;5797;5790:12;5752:52;5823:28;5841:9;5823:28;:::i;6085:460::-;6170:6;6178;6186;6239:2;6227:9;6218:7;6214:23;6210:32;6207:52;;;6255:1;6252;6245:12;6207:52;6278:28;6296:9;6278:28;:::i;:::-;6268:38;;6357:2;6346:9;6342:18;6329:32;-1:-1:-1;;;;;6376:6:1;6373:30;6370:50;;;6416:1;6413;6406:12;6370:50;6439:49;6480:7;6471:6;6460:9;6456:22;6439:49;:::i;:::-;6429:59;;;6535:2;6524:9;6520:18;6507:32;6497:42;;6085:460;;;;;:::o;6803:315::-;6871:6;6879;6932:2;6920:9;6911:7;6907:23;6903:32;6900:52;;;6948:1;6945;6938:12;6900:52;6984:9;6971:23;6961:33;;7044:2;7033:9;7029:18;7016:32;7057:31;7082:5;7057:31;:::i;:::-;7107:5;7097:15;;;6803:315;;;;;:::o;7123:416::-;7188:6;7196;7249:2;7237:9;7228:7;7224:23;7220:32;7217:52;;;7265:1;7262;7255:12;7217:52;7304:9;7291:23;7323:31;7348:5;7323:31;:::i;:::-;7373:5;-1:-1:-1;7430:2:1;7415:18;;7402:32;7472:15;;7465:23;7453:36;;7443:64;;7503:1;7500;7493:12;7544:615;7630:6;7638;7691:2;7679:9;7670:7;7666:23;7662:32;7659:52;;;7707:1;7704;7697:12;7659:52;7747:9;7734:23;-1:-1:-1;;;;;7817:2:1;7809:6;7806:14;7803:34;;;7833:1;7830;7823:12;7803:34;7871:6;7860:9;7856:22;7846:32;;7916:7;7909:4;7905:2;7901:13;7897:27;7887:55;;7938:1;7935;7928:12;7887:55;7978:2;7965:16;8004:2;7996:6;7993:14;7990:34;;;8020:1;8017;8010:12;7990:34;8073:7;8068:2;8058:6;8055:1;8051:14;8047:2;8043:23;8039:32;8036:45;8033:65;;;8094:1;8091;8084:12;8033:65;8125:2;8117:11;;;;;8147:6;;-1:-1:-1;7544:615:1;;-1:-1:-1;;;;7544:615:1:o;8164:665::-;8259:6;8267;8275;8283;8336:3;8324:9;8315:7;8311:23;8307:33;8304:53;;;8353:1;8350;8343:12;8304:53;8392:9;8379:23;8411:31;8436:5;8411:31;:::i;:::-;8461:5;-1:-1:-1;8518:2:1;8503:18;;8490:32;8531:33;8490:32;8531:33;:::i;:::-;8583:7;-1:-1:-1;8637:2:1;8622:18;;8609:32;;-1:-1:-1;8692:2:1;8677:18;;8664:32;-1:-1:-1;;;;;8708:30:1;;8705:50;;;8751:1;8748;8741:12;8705:50;8774:49;8815:7;8806:6;8795:9;8791:22;8774:49;:::i;8834:252::-;8901:6;8909;8962:2;8950:9;8941:7;8937:23;8933:32;8930:52;;;8978:1;8975;8968:12;8930:52;9001:28;9019:9;9001:28;:::i;9091:347::-;9142:8;9152:6;9206:3;9199:4;9191:6;9187:17;9183:27;9173:55;;9224:1;9221;9214:12;9173:55;-1:-1:-1;9247:20:1;;-1:-1:-1;;;;;9279:30:1;;9276:50;;;9322:1;9319;9312:12;9276:50;9359:4;9351:6;9347:17;9335:29;;9411:3;9404:4;9395:6;9387;9383:19;9379:30;9376:39;9373:59;;;9428:1;9425;9418:12;9373:59;9091:347;;;;;:::o;9443:773::-;9547:6;9555;9563;9571;9579;9632:3;9620:9;9611:7;9607:23;9603:33;9600:53;;;9649:1;9646;9639:12;9600:53;9672:28;9690:9;9672:28;:::i;:::-;9662:38;;9751:2;9740:9;9736:18;9723:32;-1:-1:-1;;;;;9815:2:1;9807:6;9804:14;9801:34;;;9831:1;9828;9821:12;9801:34;9854:49;9895:7;9886:6;9875:9;9871:22;9854:49;:::i;:::-;9844:59;;9922:37;9955:2;9944:9;9940:18;9922:37;:::i;:::-;9912:47;;10012:2;10001:9;9997:18;9984:32;9968:48;;10041:2;10031:8;10028:16;10025:36;;;10057:1;10054;10047:12;10025:36;;10096:60;10148:7;10137:8;10126:9;10122:24;10096:60;:::i;:::-;9443:773;;;;-1:-1:-1;9443:773:1;;-1:-1:-1;10175:8:1;;10070:86;9443:773;-1:-1:-1;;;9443:773:1:o;10403:388::-;10471:6;10479;10532:2;10520:9;10511:7;10507:23;10503:32;10500:52;;;10548:1;10545;10538:12;10500:52;10587:9;10574:23;10606:31;10631:5;10606:31;:::i;:::-;10656:5;-1:-1:-1;10713:2:1;10698:18;;10685:32;10726:33;10685:32;10726:33;:::i;10796:481::-;10874:6;10882;10890;10943:2;10931:9;10922:7;10918:23;10914:32;10911:52;;;10959:1;10956;10949:12;10911:52;10982:28;11000:9;10982:28;:::i;:::-;10972:38;;11061:2;11050:9;11046:18;11033:32;-1:-1:-1;;;;;11080:6:1;11077:30;11074:50;;;11120:1;11117;11110:12;11074:50;11159:58;11209:7;11200:6;11189:9;11185:22;11159:58;:::i;:::-;10796:481;;11236:8;;-1:-1:-1;11133:84:1;;-1:-1:-1;;;;10796:481:1:o;11467:380::-;11546:1;11542:12;;;;11589;;;11610:61;;11664:4;11656:6;11652:17;11642:27;;11610:61;11717:2;11709:6;11706:14;11686:18;11683:38;11680:161;;11763:10;11758:3;11754:20;11751:1;11744:31;11798:4;11795:1;11788:15;11826:4;11823:1;11816:15;11680:161;;11467:380;;;:::o;11852:692::-;11901:3;11942:5;11936:12;11971:36;11997:9;11971:36;:::i;:::-;12026:1;12043:18;;;12070:104;;;;12188:1;12183:355;;;;12036:502;;12070:104;-1:-1:-1;;12103:24:1;;12091:37;;12148:16;;;;-1:-1:-1;12070:104:1;;12183:355;12214:5;12211:1;12204:16;12243:4;12288:2;12285:1;12275:16;12313:1;12327:165;12341:6;12338:1;12335:13;12327:165;;;12419:14;;12406:11;;;12399:35;12462:16;;;;12356:10;;12327:165;;;12331:3;;;12521:6;12516:3;12512:16;12505:23;;12036:502;;;;;11852:692;;;;:::o;12549:194::-;12675:3;12700:37;12733:3;12725:6;12700:37;:::i;13169:557::-;13426:6;13418;13414:19;13403:9;13396:38;13470:3;13465:2;13454:9;13450:18;13443:31;13377:4;13497:46;13538:3;13527:9;13523:19;13515:6;13497:46;:::i;:::-;-1:-1:-1;;;;;13583:6:1;13579:31;13574:2;13563:9;13559:18;13552:59;13659:9;13651:6;13647:22;13642:2;13631:9;13627:18;13620:50;13687:33;13713:6;13705;13687:33;:::i;:::-;13679:41;13169:557;-1:-1:-1;;;;;;;13169:557:1:o;13731:274::-;13860:3;13898:6;13892:13;13914:53;13960:6;13955:3;13948:4;13940:6;13936:17;13914:53;:::i;:::-;13983:16;;;;;13731:274;-1:-1:-1;;13731:274:1:o;15255:410::-;15457:2;15439:21;;;15496:2;15476:18;;;15469:30;15535:34;15530:2;15515:18;;15508:62;-1:-1:-1;;;15601:2:1;15586:18;;15579:44;15655:3;15640:19;;15255:410::o;16897:127::-;16958:10;16953:3;16949:20;16946:1;16939:31;16989:4;16986:1;16979:15;17013:4;17010:1;17003:15;17792:127;17853:10;17848:3;17844:20;17841:1;17834:31;17884:4;17881:1;17874:15;17908:4;17905:1;17898:15;17924:128;17964:3;17995:1;17991:6;17988:1;17985:13;17982:39;;;18001:18;;:::i;:::-;-1:-1:-1;18037:9:1;;17924:128::o;18414:409::-;18616:2;18598:21;;;18655:2;18635:18;;;18628:30;18694:34;18689:2;18674:18;;18667:62;-1:-1:-1;;;18760:2:1;18745:18;;18738:43;18813:3;18798:19;;18414:409::o;19590:168::-;19630:7;19696:1;19692;19688:6;19684:14;19681:1;19678:21;19673:1;19666:9;19659:17;19655:45;19652:71;;;19703:18;;:::i;:::-;-1:-1:-1;19743:9:1;;19590:168::o;21474:470::-;21653:3;21691:6;21685:13;21707:53;21753:6;21748:3;21741:4;21733:6;21729:17;21707:53;:::i;:::-;21823:13;;21782:16;;;;21845:57;21823:13;21782:16;21879:4;21867:17;;21845:57;:::i;:::-;21918:20;;21474:470;-1:-1:-1;;;;21474:470:1:o;21949:549::-;22173:3;22211:6;22205:13;22227:53;22273:6;22268:3;22261:4;22253:6;22249:17;22227:53;:::i;:::-;22343:13;;22302:16;;;;22365:57;22343:13;22302:16;22399:4;22387:17;;22365:57;:::i;:::-;22438:54;22482:8;22475:5;22471:20;22463:6;22438:54;:::i;23881:642::-;24162:6;24150:19;;24132:38;;-1:-1:-1;;;;;24206:32:1;;24201:2;24186:18;;24179:60;24226:3;24270:2;24255:18;;24248:31;;;-1:-1:-1;;24302:46:1;;24328:19;;24320:6;24302:46;:::i;:::-;24398:6;24391:14;24384:22;24379:2;24368:9;24364:18;24357:50;24456:9;24448:6;24444:22;24438:3;24427:9;24423:19;24416:51;24484:33;24510:6;24502;24484:33;:::i;:::-;24476:41;23881:642;-1:-1:-1;;;;;;;;23881:642:1:o;24528:245::-;24607:6;24615;24668:2;24656:9;24647:7;24643:23;24639:32;24636:52;;;24684:1;24681;24674:12;24636:52;-1:-1:-1;;24707:16:1;;24763:2;24748:18;;;24742:25;24707:16;;24742:25;;-1:-1:-1;24528:245:1:o;25258:1484::-;25604:6;25596;25592:19;25581:9;25574:38;25555:4;25631:2;25669:3;25664:2;25653:9;25649:18;25642:31;25693:1;25726:6;25720:13;25756:36;25782:9;25756:36;:::i;:::-;25829:6;25823:3;25812:9;25808:19;25801:35;25855:3;25877:1;25909:2;25898:9;25894:18;25926:1;25921:122;;;;26057:1;26052:354;;;;25887:519;;25921:122;-1:-1:-1;;25969:24:1;;25949:18;;;25942:52;26029:3;26014:19;;;-1:-1:-1;25921:122:1;;26052:354;26083:6;26080:1;26073:17;26131:2;26128:1;26118:16;26156:1;26170:180;26184:6;26181:1;26178:13;26170:180;;;26277:14;;26253:17;;;26249:26;;26242:50;26320:16;;;;26199:10;;26170:180;;;26374:17;;26370:26;;;-1:-1:-1;;25887:519:1;;;;;;26451:9;26446:3;26442:19;26437:2;26426:9;26422:18;26415:47;26485:30;26511:3;26503:6;26485:30;:::i;:::-;26471:44;;;26524:46;26566:2;26555:9;26551:18;26543:6;-1:-1:-1;;;;;3616:31:1;3604:44;;3550:104;26524:46;-1:-1:-1;;;;;3616:31:1;;26621:3;26606:19;;3604:44;26675:9;26667:6;26663:22;26657:3;26646:9;26642:19;26635:51;26703:33;26729:6;26721;26703:33;:::i;:::-;26695:41;25258:1484;-1:-1:-1;;;;;;;;;25258:1484:1:o;27154:271::-;27337:6;27329;27324:3;27311:33;27293:3;27363:16;;27388:13;;;27363:16;27154:271;-1:-1:-1;27154:271:1:o;27785:718::-;28052:6;28044;28040:19;28029:9;28022:38;28096:3;28091:2;28080:9;28076:18;28069:31;28003:4;28123:46;28164:3;28153:9;28149:19;28141:6;28123:46;:::i;:::-;-1:-1:-1;;;;;28209:6:1;28205:31;28200:2;28189:9;28185:18;28178:59;28285:9;28277:6;28273:22;28268:2;28257:9;28253:18;28246:50;28320:6;28312;28305:22;28374:6;28366;28361:2;28353:6;28349:15;28336:45;28427:1;28422:2;28413:6;28405;28401:19;28397:28;28390:39;28494:2;28487;28483:7;28478:2;28470:6;28466:15;28462:29;28454:6;28450:42;28446:51;28438:59;;;27785:718;;;;;;;;:::o;28915:320::-;29002:6;29010;29063:2;29051:9;29042:7;29038:23;29034:32;29031:52;;;29079:1;29076;29069:12;29031:52;29111:9;29105:16;29130:31;29155:5;29130:31;:::i;:::-;29225:2;29210:18;;;;29204:25;29180:5;;29204:25;;-1:-1:-1;;;28915:320:1:o;30051:125::-;30091:4;30119:1;30116;30113:8;30110:34;;;30124:18;;:::i;:::-;-1:-1:-1;30161:9:1;;30051:125::o;30542:135::-;30581:3;30602:17;;;30599:43;;30622:18;;:::i;:::-;-1:-1:-1;30669:1:1;30658:13;;30542:135::o;31036:414::-;31238:2;31220:21;;;31277:2;31257:18;;;31250:30;31316:34;31311:2;31296:18;;31289:62;-1:-1:-1;;;31382:2:1;31367:18;;31360:48;31440:3;31425:19;;31036:414::o;31455:127::-;31516:10;31511:3;31507:20;31504:1;31497:31;31547:4;31544:1;31537:15;31571:4;31568:1;31561:15;31587:120;31627:1;31653;31643:35;;31658:18;;:::i;:::-;-1:-1:-1;31692:9:1;;31587:120::o;31712:112::-;31744:1;31770;31760:35;;31775:18;;:::i;:::-;-1:-1:-1;31809:9:1;;31712:112::o;31829:489::-;-1:-1:-1;;;;;32098:15:1;;;32080:34;;32150:15;;32145:2;32130:18;;32123:43;32197:2;32182:18;;32175:34;;;32245:3;32240:2;32225:18;;32218:31;;;32023:4;;32266:46;;32292:19;;32284:6;32266:46;:::i;:::-;32258:54;31829:489;-1:-1:-1;;;;;;31829:489:1:o;32323:249::-;32392:6;32445:2;32433:9;32424:7;32420:23;32416:32;32413:52;;;32461:1;32458;32451:12;32413:52;32493:9;32487:16;32512:30;32536:5;32512:30;:::i;32577:127::-;32638:10;32633:3;32629:20;32626:1;32619:31;32669:4;32666:1;32659:15;32693:4;32690:1;32683:15

Swarm Source

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