ETH Price: $2,575.94 (+2.93%)

Token

CompanionsNFT (CompNFT)
 

Overview

Max Total Supply

784 CompNFT

Holders

359

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CompNFT
0xf4edb5b705cda8e41280cb6591f2ce8f262a6d19
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:
CompanionsNFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-29
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// 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 (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

// File: nftcompanions.sol


// numero1.app (c)

pragma solidity ^0.8.11;







    contract CompanionsNFT is ERC721, ERC721URIStorage, Ownable, ReentrancyGuard {

// Admin

    address private constant ADMIN_WALLET = 0xCABEA694c995655a52776481aFb509AfdfeE083A;

// Supply

    uint public constant MAX_SUPPLY = 2777;
    uint public constant GIFT_SUPPLY = 50;
    uint public constant MAX_PER_WALLET = 2;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

// Tokens per wallet declaration

    mapping(address => uint) public tokensPerWallet;    
    mapping(address => uint) public freePerWallet;     

// Status

    enum TokenStatus {
        Paused,
        WLMinting,
        Minting,       
        MintFinished
    }    
    TokenStatus public tokenStatus=TokenStatus.MintFinished;
    event TokenStatusChanged(TokenStatus _tokenStatus); 
   
// Base URI
    
    string public baseURI="ipfs://QmbbVosEWnZgUcZhu5bvjFjSM1gGvbXkgWk6iegJrPJetc/";
    event BaseURIChanged(string _baseURI); 

// Price

    uint internal price = 0.0777 ether;
    event PriceChanged(uint _price); 
    uint internal ogprice = 0.0667 ether;
    event OgPriceChanged(uint _price); 

// Merkle roots

    bytes32 flRoot;
    bytes32 oglRoot;
    bytes32 wlRoot;

    function setMerkleRoots(bytes32 _flRoot, bytes32 _oglRoot, bytes32 _wlRoot) external onlyAdmins {
        flRoot=_flRoot;
        oglRoot=_oglRoot;
        wlRoot=_wlRoot;
    }


// Constructor

    constructor() ERC721("CompanionsNFT", "CompNFT") {    
        _tokenSupply.increment();
        _safeMint(msg.sender,_tokenSupply.current()); 
        tokenStatus=TokenStatus.Paused;
        emit TokenStatusChanged(tokenStatus);
    }

// Modifiers 

    modifier onlyAdmins() {
        require(address(this) == msg.sender || owner() == msg.sender || ADMIN_WALLET ==msg.sender, "CompanionsNFT: Only admin or owner are allowed!");
        _;
    }

    modifier statusNotPaused() {
        require(tokenStatus!=TokenStatus.Paused, "CompanionsNFT: Contract it's paused!");
        _;
    }    

// Internal stuff

    function toBytes32(address addr) pure internal returns (bytes32) {
    return bytes32(uint256(uint160(addr)));
    }

    function _beforeTokenTransfer(address from, address to, uint tokenId) 
        internal
        statusNotPaused()
        override(ERC721)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

// The following functions are overrides required by Solidity.

    function _burn(uint tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint tokenId) 
        public 
        view 
        override(ERC721, ERC721URIStorage) 
        returns (string memory) 
    {
        return super.tokenURI(tokenId);
    }
 
 // Token burn

    function burn(uint256 _tokenId) public onlyAdmins {
        _burn(_tokenId);
    }

// Token Status

    function setTokenStatus(TokenStatus _Status) external onlyAdmins {
        tokenStatus=_Status;
        emit TokenStatusChanged(tokenStatus);
    }
    
    function getTokenStatus() public view returns (string memory ) {        
        if (tokenStatus==TokenStatus.WLMinting) return "WL Minting"; else
        if (tokenStatus==TokenStatus.Minting) return "Minting"; else      
        if (tokenStatus==TokenStatus.MintFinished) return "Mint finished";
        return "Paused";
    }

// Token BaseURI

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function setBaseURI(string calldata _BaseURI) external onlyAdmins {
        baseURI = _BaseURI;
        emit BaseURIChanged(_BaseURI);
    }

// Token price

    function setPrice(uint _Price) external onlyAdmins {
        price = _Price;
        emit PriceChanged(price);
    }

    function setOgPrice(uint _OgPrice) external onlyAdmins {
        ogprice = _OgPrice;
        emit OgPriceChanged(ogprice);
    }    

    function getPrice() public view returns (uint) {
        return price;
    }

    function getOgPrice() public view returns (uint) {
        return ogprice;
    }    

// Token supply

    function totalSupply() public view returns (uint) {
        return _tokenSupply.current();
    }

// Token mint & gift

    function _mint(uint _amount, uint _price) internal {
        require(_amount > 0, "CompanionsNFT: Amount can't be zero!");
        require(_tokenSupply.current() < MAX_SUPPLY, "CompanionsNFT: SOLD OUT!");     
        require(msg.value >=_price * _amount, "CompanionsNFT: Insuficient funds!");
        require(tokensPerWallet[msg.sender] + _amount <= MAX_PER_WALLET, "CompanionsNFT: Max tokens per wallet exceeded!");
        require(_tokenSupply.current() + _amount <= MAX_SUPPLY, "CompanionsNFT: Max supply exceeded!");

        for (uint i = 1; i <= _amount; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, _tokenSupply.current());                        
        }    
        tokensPerWallet[msg.sender] += _amount;
    }

    function mint_free(uint amount, bytes32[] calldata merkleProof)
        external
        payable
        nonReentrant 
        statusNotPaused()
    {
        require((tokenStatus == TokenStatus.WLMinting) || (tokenStatus == TokenStatus.Minting) , "CompanionsNFT: It's not in minting!"); 
        require(MerkleProof.verify(merkleProof, flRoot, toBytes32(msg.sender)) == true, "CompanionsNFT: Address not allowed to mint for free!");
        require((freePerWallet[msg.sender] == 0) && (amount == 1), "CompanionsNFT: Max 1 free token!");
        _mint(amount,0);
        freePerWallet[msg.sender]=1;
    } 

    function mint_og(uint amount, bytes32[] calldata merkleProof)
        external
        payable
        nonReentrant 
        statusNotPaused()
    {
        require((tokenStatus == TokenStatus.WLMinting) || (tokenStatus == TokenStatus.Minting), "CompanionsNFT: It's not in minting!"); 
        require(MerkleProof.verify(merkleProof, oglRoot, toBytes32(msg.sender)) == true, "CompanionsNFT: Address not in OG list!");
        _mint(amount,ogprice);
    } 

    function mint_whitelist(uint amount, bytes32[] calldata merkleProof)
        external
        payable
        nonReentrant 
        statusNotPaused()
    {
        require(tokenStatus == TokenStatus.WLMinting, "CompanionsNFT: It's not in WL minting!"); 
        require(MerkleProof.verify(merkleProof, wlRoot, toBytes32(msg.sender)) == true, "CompanionsNFT: Address not in WL!");
        _mint(amount,price);
    } 

    function mint(uint amount)
        external
        payable
        nonReentrant 
        statusNotPaused()
    {
        require(tokenStatus == TokenStatus.Minting, "CompanionsNFT: It's not in minting!"); 
        _mint(amount,price);
    }    

    function gift(address to, uint amount)
        public
        onlyAdmins
        statusNotPaused()    
    {
        require(amount > 0, "CompanionsNFT: Amount can't be zero!");
        require(_tokenSupply.current() + amount <= MAX_SUPPLY+GIFT_SUPPLY, "CompanionsNFT: Max supply exceeded!");
        for (uint i = 1; i <= amount; i++) {            
            _tokenSupply.increment();
            _safeMint(to, _tokenSupply.current());
        }     
        
    }

// Withdraw ETH to the owner
    
    function withdrawAll() public onlyOwner {
        (bool sent, bytes memory data) = payable(msg.sender).call{value: address(this).balance}("");
        require(sent,string(abi.encodePacked("CompanionsNFT: Failed to withdraw!",data)));
    }    
      
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"OgPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum CompanionsNFT.TokenStatus","name":"_tokenStatus","type":"uint8"}],"name":"TokenStatusChanged","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":"GIFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freePerWallet","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":[],"name":"getOgPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenStatus","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint_free","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint_og","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint_whitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_flRoot","type":"bytes32"},{"internalType":"bytes32","name":"_oglRoot","type":"bytes32"},{"internalType":"bytes32","name":"_wlRoot","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_OgPrice","type":"uint256"}],"name":"setOgPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CompanionsNFT.TokenStatus","name":"_Status","type":"uint8"}],"name":"setTokenStatus","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":[],"name":"tokenStatus","outputs":[{"internalType":"enum CompanionsNFT.TokenStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600c805460ff1916600317905560e060405260366080818152906200366660a03980516200003691600d91602090910190620005c2565b506701140bbd030c4000600e5566ecf74bee84c000600f553480156200005b57600080fd5b50604080518082018252600d81526c10dbdb5c185b9a5bdb9cd39195609a1b60208083019182528351808501909452600784526610dbdb5c13919560ca1b908401528151919291620000b091600091620005c2565b508051620000c6906001906020840190620005c2565b505050620000e3620000dd6200016f60201b60201c565b62000173565b6001600881905550620001026009620001c560201b6200178d1760201c565b62000124336200011e6009620001ce60201b620017961760201c565b620001d2565b600c805460ff191690556040517f90b26a9ffb120d0244052fe612cd5764791ec5773813a5fdd489b2f6c6632f419062000161906000906200067e565b60405180910390a1620007b9565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b5490565b620001f4828260405180602001604052806000815250620001f860201b60201c565b5050565b62000204838362000274565b620002136000848484620003ca565b6200026f5760405162461bcd60e51b815260206004820152603260248201526000805160206200364683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620002cc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000266565b6000818152600260205260409020546001600160a01b031615620003335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000266565b620003416000838362000523565b6001600160a01b03821660009081526003602052604081208054600192906200036c908490620006a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003eb846001600160a01b0316620005b360201b6200179a1760201c565b156200051757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000425903390899088908890600401620006ce565b6020604051808303816000875af192505050801562000463575060408051601f3d908101601f19168201909252620004609181019062000749565b60015b620004fc573d80801562000494576040519150601f19603f3d011682016040523d82523d6000602084013e62000499565b606091505b508051620004f45760405162461bcd60e51b815260206004820152603260248201526000805160206200364683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000266565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200051b565b5060015b949350505050565b6000600c5460ff1660038111156200053f576200053f62000668565b14156200059b5760405162461bcd60e51b8152602060048201526024808201527f436f6d70616e696f6e734e46543a20436f6e74726163742069742773207061756044820152637365642160e01b606482015260840162000266565b6200026f8383836200026f60201b620009831760201c565b6001600160a01b03163b151590565b828054620005d0906200077c565b90600052602060002090601f016020900481019282620005f457600085556200063f565b82601f106200060f57805160ff19168380011785556200063f565b828001600101855582156200063f579182015b828111156200063f57825182559160200191906001019062000622565b506200064d92915062000651565b5090565b5b808211156200064d576000815560010162000652565b634e487b7160e01b600052602160045260246000fd5b6020810160048310620006a157634e487b7160e01b600052602160045260246000fd5b91905290565b60008219821115620006c957634e487b7160e01b600052601160045260246000fd5b500190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200071d5785810182015185820160a001528101620006ff565b828111156200073057600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200075c57600080fd5b81516001600160e01b0319811681146200077557600080fd5b9392505050565b600181811c908216806200079157607f821691505b60208210811415620007b357634e487b7160e01b600052602260045260246000fd5b50919050565b612e7d80620007c96000396000f3fe60806040526004361061022f5760003560e01c8063715018a61161012e578063a6921956116100ab578063cbce4c971161006f578063cbce4c9714610640578063dadbed2314610660578063de4e840914610673578063e985e9c514610686578063f2fde38b146106cf57600080fd5b8063a692195614610597578063aedd0a96146105be578063b88d4fde146105eb578063c658bbda1461060b578063c87b56dd1461062057600080fd5b806391b7f5ed116100f257806391b7f5ed1461051a57806395d89b411461053a57806398d5fdca1461054f578063a0712d6814610564578063a22cb4651461057757600080fd5b8063715018a61461049d5780637edc9d4b146104b257806383af79e7146104c7578063853828b6146104e75780638da5cb5b146104fc57600080fd5b80631ea63901116101bc57806355f804b31161018057806355f804b31461040857806362fd16a3146104285780636352211e146104485780636c0360eb1461046857806370a082311461047d57600080fd5b80631ea639011461037d57806323b872dd1461039257806332cb6b0c146103b257806342842e0e146103c857806342966c68146103e857600080fd5b8063095ea7b311610203578063095ea7b3146102e55780630a0caa46146103055780630e2705a8146103185780630f2cdd6c1461035357806318160ddd1461036857600080fd5b8062f9ae541461023457806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad575b600080fd5b34801561024057600080fd5b5061025461024f3660046125cc565b6106ef565b005b34801561026257600080fd5b5061027661027136600461260e565b610767565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107b9565b6040516102829190612683565b3480156102b957600080fd5b506102cd6102c8366004612696565b61084b565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506102546103003660046126cb565b610872565b6102546103133660046126f5565b610988565b34801561032457600080fd5b50610345610333366004612774565b600b6020526000908152604090205481565b604051908152602001610282565b34801561035f57600080fd5b50610345600281565b34801561037457600080fd5b50610345610b0e565b34801561038957600080fd5b50610345603281565b34801561039e57600080fd5b506102546103ad36600461278f565b610b1e565b3480156103be57600080fd5b50610345610ad981565b3480156103d457600080fd5b506102546103e336600461278f565b610b4f565b3480156103f457600080fd5b50610254610403366004612696565b610b6a565b34801561041457600080fd5b506102546104233660046127cb565b610bd7565b34801561043457600080fd5b5061025461044336600461283d565b610c82565b34801561045457600080fd5b506102cd610463366004612696565b610d49565b34801561047457600080fd5b506102a0610da9565b34801561048957600080fd5b50610345610498366004612774565b610e37565b3480156104a957600080fd5b50610254610ebd565b3480156104be57600080fd5b506102a0610ed1565b3480156104d357600080fd5b506102546104e2366004612696565b610fc0565b3480156104f357600080fd5b50610254611056565b34801561050857600080fd5b506007546001600160a01b03166102cd565b34801561052657600080fd5b50610254610535366004612696565b6110eb565b34801561054657600080fd5b506102a0611181565b34801561055b57600080fd5b50600e54610345565b610254610572366004612696565b611190565b34801561058357600080fd5b5061025461059236600461285e565b611239565b3480156105a357600080fd5b50600c546105b19060ff1681565b60405161028291906128b0565b3480156105ca57600080fd5b506103456105d9366004612774565b600a6020526000908152604090205481565b3480156105f757600080fd5b506102546106063660046128ee565b611248565b34801561061757600080fd5b50600f54610345565b34801561062c57600080fd5b506102a061063b366004612696565b611280565b34801561064c57600080fd5b5061025461065b3660046126cb565b61128b565b61025461066e3660046126f5565b6113be565b6102546106813660046126f5565b611521565b34801561069257600080fd5b506102766106a13660046129ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106db57600080fd5b506102546106ea366004612774565b611717565b3033148061071657503361070b6007546001600160a01b031690565b6001600160a01b0316145b80610734575073cabea694c995655a52776481afb509afdfee083a33145b6107595760405162461bcd60e51b8152600401610750906129fd565b60405180910390fd5b601092909255601155601255565b60006001600160e01b031982166380ac58cd60e01b148061079857506001600160e01b03198216635b5e139f60e01b145b806107b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c890612a4c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612a4c565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610856826117a9565b506000908152600460205260409020546001600160a01b031690565b600061087d82610d49565b9050806001600160a01b0316836001600160a01b031614156108eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610750565b336001600160a01b0382161480610907575061090781336106a1565b6109795760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610750565b6109838383611808565b505050565b600260085414156109ab5760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156109c9576109c961289a565b14156109e75760405162461bcd60e51b815260040161075090612abe565b6001600c5460ff166003811115610a0057610a0061289a565b14610a5c5760405162461bcd60e51b815260206004820152602660248201527f436f6d70616e696f6e734e46543a2049742773206e6f7420696e20574c206d696044820152656e74696e672160d01b6064820152608401610750565b610a9d828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150339050611876565b1515600114610af85760405162461bcd60e51b815260206004820152602160248201527f436f6d70616e696f6e734e46543a2041646472657373206e6f7420696e20574c6044820152602160f81b6064820152608401610750565b610b0483600e5461188c565b5050600160085550565b6000610b1960095490565b905090565b610b283382611a80565b610b445760405162461bcd60e51b815260040161075090612b02565b610983838383611aff565b61098383838360405180602001604052806000815250611248565b30331480610b91575033610b866007546001600160a01b031690565b6001600160a01b0316145b80610baf575073cabea694c995655a52776481afb509afdfee083a33145b610bcb5760405162461bcd60e51b8152600401610750906129fd565b610bd481611ca6565b50565b30331480610bfe575033610bf36007546001600160a01b031690565b6001600160a01b0316145b80610c1c575073cabea694c995655a52776481afb509afdfee083a33145b610c385760405162461bcd60e51b8152600401610750906129fd565b610c44600d83836124fd565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610c76929190612b50565b60405180910390a15050565b30331480610ca9575033610c9e6007546001600160a01b031690565b6001600160a01b0316145b80610cc7575073cabea694c995655a52776481afb509afdfee083a33145b610ce35760405162461bcd60e51b8152600401610750906129fd565b600c805482919060ff19166001836003811115610d0257610d0261289a565b0217905550600c546040517f90b26a9ffb120d0244052fe612cd5764791ec5773813a5fdd489b2f6c6632f4191610d3e9160ff909116906128b0565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806107b35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610750565b600d8054610db690612a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290612a4c565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b60006001600160a01b038216610ea15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610750565b506001600160a01b031660009081526003602052604090205490565b610ec5611caf565b610ecf6000611d09565b565b60606001600c5460ff166003811115610eec57610eec61289a565b1415610f17575060408051808201909152600a815269574c204d696e74696e6760b01b602082015290565b6002600c5460ff166003811115610f3057610f3061289a565b1415610f5857506040805180820190915260078152664d696e74696e6760c81b602082015290565b6003600c5460ff166003811115610f7157610f7161289a565b1415610f9f575060408051808201909152600d81526c135a5b9d08199a5b9a5cda1959609a1b602082015290565b5060408051808201909152600681526514185d5cd95960d21b602082015290565b30331480610fe7575033610fdc6007546001600160a01b031690565b6001600160a01b0316145b80611005575073cabea694c995655a52776481afb509afdfee083a33145b6110215760405162461bcd60e51b8152600401610750906129fd565b600f8190556040518181527fcd2b14971a8e69f5a812bb00b4d04528458a03e24a6714a71f42738b9529fe5c90602001610d3e565b61105e611caf565b6040516000908190339047908381818185875af1925050503d80600081146110a2576040519150601f19603f3d011682016040523d82523d6000602084013e6110a7565b606091505b509150915081816040516020016110be9190612b7f565b604051602081830303815290604052906109835760405162461bcd60e51b81526004016107509190612683565b303314806111125750336111076007546001600160a01b031690565b6001600160a01b0316145b80611130575073cabea694c995655a52776481afb509afdfee083a33145b61114c5760405162461bcd60e51b8152600401610750906129fd565b600e8190556040518181527fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d62290602001610d3e565b6060600180546107c890612a4c565b600260085414156111b35760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156111d1576111d161289a565b14156111ef5760405162461bcd60e51b815260040161075090612abe565b6002600c5460ff1660038111156112085761120861289a565b146112255760405162461bcd60e51b815260040161075090612bcf565b61123181600e5461188c565b506001600855565b611244338383611d5b565b5050565b6112523383611a80565b61126e5760405162461bcd60e51b815260040161075090612b02565b61127a84848484611e2a565b50505050565b60606107b382611e5d565b303314806112b25750336112a76007546001600160a01b031690565b6001600160a01b0316145b806112d0575073cabea694c995655a52776481afb509afdfee083a33145b6112ec5760405162461bcd60e51b8152600401610750906129fd565b6000600c5460ff1660038111156113055761130561289a565b14156113235760405162461bcd60e51b815260040161075090612abe565b600081116113435760405162461bcd60e51b815260040161075090612c12565b6113506032610ad9612c6c565b8161135a60095490565b6113649190612c6c565b11156113825760405162461bcd60e51b815260040161075090612c84565b60015b8181116109835761139a600980546001019055565b6113ac836113a760095490565b611f59565b806113b681612cc7565b915050611385565b600260085414156113e15760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156113ff576113ff61289a565b141561141d5760405162461bcd60e51b815260040161075090612abe565b6001600c5460ff1660038111156114365761143661289a565b148061145857506002600c5460ff1660038111156114565761145661289a565b145b6114745760405162461bcd60e51b815260040161075090612bcf565b6114b5828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150339050611876565b15156001146115155760405162461bcd60e51b815260206004820152602660248201527f436f6d70616e696f6e734e46543a2041646472657373206e6f7420696e204f47604482015265206c6973742160d01b6064820152608401610750565b610b0483600f5461188c565b600260085414156115445760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156115625761156261289a565b14156115805760405162461bcd60e51b815260040161075090612abe565b6001600c5460ff1660038111156115995761159961289a565b14806115bb57506002600c5460ff1660038111156115b9576115b961289a565b145b6115d75760405162461bcd60e51b815260040161075090612bcf565b611618828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150339050611876565b15156001146116865760405162461bcd60e51b815260206004820152603460248201527f436f6d70616e696f6e734e46543a2041646472657373206e6f7420616c6c6f77604482015273656420746f206d696e7420666f7220667265652160601b6064820152608401610750565b336000908152600b60205260409020541580156116a35750826001145b6116ef5760405162461bcd60e51b815260206004820181905260248201527f436f6d70616e696f6e734e46543a204d61782031206672656520746f6b656e216044820152606401610750565b6116fa83600061188c565b5050336000908152600b6020526040902060019081905560085550565b61171f611caf565b6001600160a01b0381166117845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610750565b610bd481611d09565b80546001019055565b5490565b6001600160a01b03163b151590565b6000818152600260205260409020546001600160a01b0316610bd45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610750565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061183d82610d49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826118838584611f73565b14949350505050565b600082116118ac5760405162461bcd60e51b815260040161075090612c12565b610ad96118b860095490565b106119055760405162461bcd60e51b815260206004820152601860248201527f436f6d70616e696f6e734e46543a20534f4c44204f55542100000000000000006044820152606401610750565b61190f8282612ce2565b3410156119685760405162461bcd60e51b815260206004820152602160248201527f436f6d70616e696f6e734e46543a20496e737566696369656e742066756e64736044820152602160f81b6064820152608401610750565b336000908152600a6020526040902054600290611986908490612c6c565b11156119eb5760405162461bcd60e51b815260206004820152602e60248201527f436f6d70616e696f6e734e46543a204d617820746f6b656e732070657220776160448201526d6c6c65742065786365656465642160901b6064820152608401610750565b610ad9826119f860095490565b611a029190612c6c565b1115611a205760405162461bcd60e51b815260040161075090612c84565b60015b828111611a5757611a38600980546001019055565b611a45336113a760095490565b80611a4f81612cc7565b915050611a23565b50336000908152600a602052604081208054849290611a77908490612c6c565b90915550505050565b600080611a8c83610d49565b9050806001600160a01b0316846001600160a01b03161480611ad357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611af75750836001600160a01b0316611aec8461084b565b6001600160a01b0316145b949350505050565b826001600160a01b0316611b1282610d49565b6001600160a01b031614611b765760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610750565b6001600160a01b038216611bd85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610750565b611be3838383611fc0565b611bee600082611808565b6001600160a01b0383166000908152600360205260408120805460019290611c17908490612d01565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c45908490612c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bd481611ff7565b6007546001600160a01b03163314610ecf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611dbd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610750565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e35848484611aff565b611e4184848484612037565b61127a5760405162461bcd60e51b815260040161075090612d18565b6060611e68826117a9565b60008281526006602052604081208054611e8190612a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ead90612a4c565b8015611efa5780601f10611ecf57610100808354040283529160200191611efa565b820191906000526020600020905b815481529060010190602001808311611edd57829003601f168201915b505050505090506000611f0b612135565b9050805160001415611f1e575092915050565b815115611f50578082604051602001611f38929190612d6a565b60405160208183030381529060405292505050919050565b611af784612144565b6112448282604051806020016040528060008152506121ab565b600081815b8451811015611fb857611fa482868381518110611f9757611f97612d99565b60200260200101516121de565b915080611fb081612cc7565b915050611f78565b509392505050565b6000600c5460ff166003811115611fd957611fd961289a565b14156109835760405162461bcd60e51b815260040161075090612abe565b6120008161220a565b6000818152600660205260409020805461201990612a4c565b159050610bd4576000818152600660205260408120610bd491612581565b60006001600160a01b0384163b1561212a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061207b903390899088908890600401612daf565b6020604051808303816000875af19250505080156120b6575060408051601f3d908101601f191682019092526120b391810190612dec565b60015b612110573d8080156120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b5080516121085760405162461bcd60e51b815260040161075090612d18565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611af7565b506001949350505050565b6060600d80546107c890612a4c565b606061214f826117a9565b6000612159612135565b9050600081511161217957604051806020016040528060008152506121a4565b80612183846122b1565b604051602001612194929190612d6a565b6040516020818303038152906040525b9392505050565b6121b583836123af565b6121c26000848484612037565b6109835760405162461bcd60e51b815260040161075090612d18565b60008183106121fa5760008281526020849052604090206121a4565b5060009182526020526040902090565b600061221582610d49565b905061222381600084611fc0565b61222e600083611808565b6001600160a01b0381166000908152600360205260408120805460019290612257908490612d01565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060816122d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122ff57806122e981612cc7565b91506122f89050600a83612e1f565b91506122d9565b60008167ffffffffffffffff81111561231a5761231a6128d8565b6040519080825280601f01601f191660200182016040528015612344576020820181803683370190505b5090505b8415611af757612359600183612d01565b9150612366600a86612e33565b612371906030612c6c565b60f81b81838151811061238657612386612d99565b60200101906001600160f81b031916908160001a9053506123a8600a86612e1f565b9450612348565b6001600160a01b0382166124055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610750565b6000818152600260205260409020546001600160a01b03161561246a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610750565b61247660008383611fc0565b6001600160a01b038216600090815260036020526040812080546001929061249f908490612c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461250990612a4c565b90600052602060002090601f01602090048101928261252b5760008555612571565b82601f106125445782800160ff19823516178555612571565b82800160010185558215612571579182015b82811115612571578235825591602001919060010190612556565b5061257d9291506125b7565b5090565b50805461258d90612a4c565b6000825580601f1061259d575050565b601f016020900490600052602060002090810190610bd491905b5b8082111561257d57600081556001016125b8565b6000806000606084860312156125e157600080fd5b505081359360208301359350604090920135919050565b6001600160e01b031981168114610bd457600080fd5b60006020828403121561262057600080fd5b81356121a4816125f8565b60005b8381101561264657818101518382015260200161262e565b8381111561127a5750506000910152565b6000815180845261266f81602086016020860161262b565b601f01601f19169290920160200192915050565b6020815260006121a46020830184612657565b6000602082840312156126a857600080fd5b5035919050565b80356001600160a01b03811681146126c657600080fd5b919050565b600080604083850312156126de57600080fd5b6126e7836126af565b946020939093013593505050565b60008060006040848603121561270a57600080fd5b83359250602084013567ffffffffffffffff8082111561272957600080fd5b818601915086601f83011261273d57600080fd5b81358181111561274c57600080fd5b8760208260051b850101111561276157600080fd5b6020830194508093505050509250925092565b60006020828403121561278657600080fd5b6121a4826126af565b6000806000606084860312156127a457600080fd5b6127ad846126af565b92506127bb602085016126af565b9150604084013590509250925092565b600080602083850312156127de57600080fd5b823567ffffffffffffffff808211156127f657600080fd5b818501915085601f83011261280a57600080fd5b81358181111561281957600080fd5b86602082850101111561282b57600080fd5b60209290920196919550909350505050565b60006020828403121561284f57600080fd5b8135600481106121a457600080fd5b6000806040838503121561287157600080fd5b61287a836126af565b91506020830135801515811461288f57600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b60208101600483106128d257634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561290457600080fd5b61290d856126af565b935061291b602086016126af565b925060408501359150606085013567ffffffffffffffff8082111561293f57600080fd5b818701915087601f83011261295357600080fd5b813581811115612965576129656128d8565b604051601f8201601f19908116603f0116810190838211818310171561298d5761298d6128d8565b816040528281528a60208487010111156129a657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156129dd57600080fd5b6129e6836126af565b91506129f4602084016126af565b90509250929050565b6020808252602f908201527f436f6d70616e696f6e734e46543a204f6e6c792061646d696e206f72206f776e60408201526e65722061726520616c6c6f7765642160881b606082015260800190565b600181811c90821680612a6057607f821691505b60208210811415612a8157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526024908201527f436f6d70616e696f6e734e46543a20436f6e74726163742069742773207061756040820152637365642160e01b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b7f436f6d70616e696f6e734e46543a204661696c656420746f2077697468647261815261772160f01b602082015260008251612bc281602285016020870161262b565b9190910160220192915050565b60208082526023908201527f436f6d70616e696f6e734e46543a2049742773206e6f7420696e206d696e74696040820152626e672160e81b606082015260800190565b60208082526024908201527f436f6d70616e696f6e734e46543a20416d6f756e742063616e2774206265207a60408201526365726f2160e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c7f57612c7f612c56565b500190565b60208082526023908201527f436f6d70616e696f6e734e46543a204d617820737570706c792065786365656460408201526265642160e81b606082015260800190565b6000600019821415612cdb57612cdb612c56565b5060010190565b6000816000190483118215151615612cfc57612cfc612c56565b500290565b600082821015612d1357612d13612c56565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612d7c81846020880161262b565b835190830190612d9081836020880161262b565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612de290830184612657565b9695505050505050565b600060208284031215612dfe57600080fd5b81516121a4816125f8565b634e487b7160e01b600052601260045260246000fd5b600082612e2e57612e2e612e09565b500490565b600082612e4257612e42612e09565b50069056fea2646970667358221220d512afae1a1c17845b096c40c062539e434042bd8e526974981fc077b19de94a64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d6262566f7345576e5a6755635a68753562766a466a534d3167477662586b67576b366965674a72504a6574632f

Deployed Bytecode

0x60806040526004361061022f5760003560e01c8063715018a61161012e578063a6921956116100ab578063cbce4c971161006f578063cbce4c9714610640578063dadbed2314610660578063de4e840914610673578063e985e9c514610686578063f2fde38b146106cf57600080fd5b8063a692195614610597578063aedd0a96146105be578063b88d4fde146105eb578063c658bbda1461060b578063c87b56dd1461062057600080fd5b806391b7f5ed116100f257806391b7f5ed1461051a57806395d89b411461053a57806398d5fdca1461054f578063a0712d6814610564578063a22cb4651461057757600080fd5b8063715018a61461049d5780637edc9d4b146104b257806383af79e7146104c7578063853828b6146104e75780638da5cb5b146104fc57600080fd5b80631ea63901116101bc57806355f804b31161018057806355f804b31461040857806362fd16a3146104285780636352211e146104485780636c0360eb1461046857806370a082311461047d57600080fd5b80631ea639011461037d57806323b872dd1461039257806332cb6b0c146103b257806342842e0e146103c857806342966c68146103e857600080fd5b8063095ea7b311610203578063095ea7b3146102e55780630a0caa46146103055780630e2705a8146103185780630f2cdd6c1461035357806318160ddd1461036857600080fd5b8062f9ae541461023457806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad575b600080fd5b34801561024057600080fd5b5061025461024f3660046125cc565b6106ef565b005b34801561026257600080fd5b5061027661027136600461260e565b610767565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107b9565b6040516102829190612683565b3480156102b957600080fd5b506102cd6102c8366004612696565b61084b565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506102546103003660046126cb565b610872565b6102546103133660046126f5565b610988565b34801561032457600080fd5b50610345610333366004612774565b600b6020526000908152604090205481565b604051908152602001610282565b34801561035f57600080fd5b50610345600281565b34801561037457600080fd5b50610345610b0e565b34801561038957600080fd5b50610345603281565b34801561039e57600080fd5b506102546103ad36600461278f565b610b1e565b3480156103be57600080fd5b50610345610ad981565b3480156103d457600080fd5b506102546103e336600461278f565b610b4f565b3480156103f457600080fd5b50610254610403366004612696565b610b6a565b34801561041457600080fd5b506102546104233660046127cb565b610bd7565b34801561043457600080fd5b5061025461044336600461283d565b610c82565b34801561045457600080fd5b506102cd610463366004612696565b610d49565b34801561047457600080fd5b506102a0610da9565b34801561048957600080fd5b50610345610498366004612774565b610e37565b3480156104a957600080fd5b50610254610ebd565b3480156104be57600080fd5b506102a0610ed1565b3480156104d357600080fd5b506102546104e2366004612696565b610fc0565b3480156104f357600080fd5b50610254611056565b34801561050857600080fd5b506007546001600160a01b03166102cd565b34801561052657600080fd5b50610254610535366004612696565b6110eb565b34801561054657600080fd5b506102a0611181565b34801561055b57600080fd5b50600e54610345565b610254610572366004612696565b611190565b34801561058357600080fd5b5061025461059236600461285e565b611239565b3480156105a357600080fd5b50600c546105b19060ff1681565b60405161028291906128b0565b3480156105ca57600080fd5b506103456105d9366004612774565b600a6020526000908152604090205481565b3480156105f757600080fd5b506102546106063660046128ee565b611248565b34801561061757600080fd5b50600f54610345565b34801561062c57600080fd5b506102a061063b366004612696565b611280565b34801561064c57600080fd5b5061025461065b3660046126cb565b61128b565b61025461066e3660046126f5565b6113be565b6102546106813660046126f5565b611521565b34801561069257600080fd5b506102766106a13660046129ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106db57600080fd5b506102546106ea366004612774565b611717565b3033148061071657503361070b6007546001600160a01b031690565b6001600160a01b0316145b80610734575073cabea694c995655a52776481afb509afdfee083a33145b6107595760405162461bcd60e51b8152600401610750906129fd565b60405180910390fd5b601092909255601155601255565b60006001600160e01b031982166380ac58cd60e01b148061079857506001600160e01b03198216635b5e139f60e01b145b806107b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c890612a4c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612a4c565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610856826117a9565b506000908152600460205260409020546001600160a01b031690565b600061087d82610d49565b9050806001600160a01b0316836001600160a01b031614156108eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610750565b336001600160a01b0382161480610907575061090781336106a1565b6109795760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610750565b6109838383611808565b505050565b600260085414156109ab5760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156109c9576109c961289a565b14156109e75760405162461bcd60e51b815260040161075090612abe565b6001600c5460ff166003811115610a0057610a0061289a565b14610a5c5760405162461bcd60e51b815260206004820152602660248201527f436f6d70616e696f6e734e46543a2049742773206e6f7420696e20574c206d696044820152656e74696e672160d01b6064820152608401610750565b610a9d828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150339050611876565b1515600114610af85760405162461bcd60e51b815260206004820152602160248201527f436f6d70616e696f6e734e46543a2041646472657373206e6f7420696e20574c6044820152602160f81b6064820152608401610750565b610b0483600e5461188c565b5050600160085550565b6000610b1960095490565b905090565b610b283382611a80565b610b445760405162461bcd60e51b815260040161075090612b02565b610983838383611aff565b61098383838360405180602001604052806000815250611248565b30331480610b91575033610b866007546001600160a01b031690565b6001600160a01b0316145b80610baf575073cabea694c995655a52776481afb509afdfee083a33145b610bcb5760405162461bcd60e51b8152600401610750906129fd565b610bd481611ca6565b50565b30331480610bfe575033610bf36007546001600160a01b031690565b6001600160a01b0316145b80610c1c575073cabea694c995655a52776481afb509afdfee083a33145b610c385760405162461bcd60e51b8152600401610750906129fd565b610c44600d83836124fd565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610c76929190612b50565b60405180910390a15050565b30331480610ca9575033610c9e6007546001600160a01b031690565b6001600160a01b0316145b80610cc7575073cabea694c995655a52776481afb509afdfee083a33145b610ce35760405162461bcd60e51b8152600401610750906129fd565b600c805482919060ff19166001836003811115610d0257610d0261289a565b0217905550600c546040517f90b26a9ffb120d0244052fe612cd5764791ec5773813a5fdd489b2f6c6632f4191610d3e9160ff909116906128b0565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806107b35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610750565b600d8054610db690612a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290612a4c565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b60006001600160a01b038216610ea15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610750565b506001600160a01b031660009081526003602052604090205490565b610ec5611caf565b610ecf6000611d09565b565b60606001600c5460ff166003811115610eec57610eec61289a565b1415610f17575060408051808201909152600a815269574c204d696e74696e6760b01b602082015290565b6002600c5460ff166003811115610f3057610f3061289a565b1415610f5857506040805180820190915260078152664d696e74696e6760c81b602082015290565b6003600c5460ff166003811115610f7157610f7161289a565b1415610f9f575060408051808201909152600d81526c135a5b9d08199a5b9a5cda1959609a1b602082015290565b5060408051808201909152600681526514185d5cd95960d21b602082015290565b30331480610fe7575033610fdc6007546001600160a01b031690565b6001600160a01b0316145b80611005575073cabea694c995655a52776481afb509afdfee083a33145b6110215760405162461bcd60e51b8152600401610750906129fd565b600f8190556040518181527fcd2b14971a8e69f5a812bb00b4d04528458a03e24a6714a71f42738b9529fe5c90602001610d3e565b61105e611caf565b6040516000908190339047908381818185875af1925050503d80600081146110a2576040519150601f19603f3d011682016040523d82523d6000602084013e6110a7565b606091505b509150915081816040516020016110be9190612b7f565b604051602081830303815290604052906109835760405162461bcd60e51b81526004016107509190612683565b303314806111125750336111076007546001600160a01b031690565b6001600160a01b0316145b80611130575073cabea694c995655a52776481afb509afdfee083a33145b61114c5760405162461bcd60e51b8152600401610750906129fd565b600e8190556040518181527fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d62290602001610d3e565b6060600180546107c890612a4c565b600260085414156111b35760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156111d1576111d161289a565b14156111ef5760405162461bcd60e51b815260040161075090612abe565b6002600c5460ff1660038111156112085761120861289a565b146112255760405162461bcd60e51b815260040161075090612bcf565b61123181600e5461188c565b506001600855565b611244338383611d5b565b5050565b6112523383611a80565b61126e5760405162461bcd60e51b815260040161075090612b02565b61127a84848484611e2a565b50505050565b60606107b382611e5d565b303314806112b25750336112a76007546001600160a01b031690565b6001600160a01b0316145b806112d0575073cabea694c995655a52776481afb509afdfee083a33145b6112ec5760405162461bcd60e51b8152600401610750906129fd565b6000600c5460ff1660038111156113055761130561289a565b14156113235760405162461bcd60e51b815260040161075090612abe565b600081116113435760405162461bcd60e51b815260040161075090612c12565b6113506032610ad9612c6c565b8161135a60095490565b6113649190612c6c565b11156113825760405162461bcd60e51b815260040161075090612c84565b60015b8181116109835761139a600980546001019055565b6113ac836113a760095490565b611f59565b806113b681612cc7565b915050611385565b600260085414156113e15760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156113ff576113ff61289a565b141561141d5760405162461bcd60e51b815260040161075090612abe565b6001600c5460ff1660038111156114365761143661289a565b148061145857506002600c5460ff1660038111156114565761145661289a565b145b6114745760405162461bcd60e51b815260040161075090612bcf565b6114b5828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150339050611876565b15156001146115155760405162461bcd60e51b815260206004820152602660248201527f436f6d70616e696f6e734e46543a2041646472657373206e6f7420696e204f47604482015265206c6973742160d01b6064820152608401610750565b610b0483600f5461188c565b600260085414156115445760405162461bcd60e51b815260040161075090612a87565b60026008556000600c5460ff1660038111156115625761156261289a565b14156115805760405162461bcd60e51b815260040161075090612abe565b6001600c5460ff1660038111156115995761159961289a565b14806115bb57506002600c5460ff1660038111156115b9576115b961289a565b145b6115d75760405162461bcd60e51b815260040161075090612bcf565b611618828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150339050611876565b15156001146116865760405162461bcd60e51b815260206004820152603460248201527f436f6d70616e696f6e734e46543a2041646472657373206e6f7420616c6c6f77604482015273656420746f206d696e7420666f7220667265652160601b6064820152608401610750565b336000908152600b60205260409020541580156116a35750826001145b6116ef5760405162461bcd60e51b815260206004820181905260248201527f436f6d70616e696f6e734e46543a204d61782031206672656520746f6b656e216044820152606401610750565b6116fa83600061188c565b5050336000908152600b6020526040902060019081905560085550565b61171f611caf565b6001600160a01b0381166117845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610750565b610bd481611d09565b80546001019055565b5490565b6001600160a01b03163b151590565b6000818152600260205260409020546001600160a01b0316610bd45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610750565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061183d82610d49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826118838584611f73565b14949350505050565b600082116118ac5760405162461bcd60e51b815260040161075090612c12565b610ad96118b860095490565b106119055760405162461bcd60e51b815260206004820152601860248201527f436f6d70616e696f6e734e46543a20534f4c44204f55542100000000000000006044820152606401610750565b61190f8282612ce2565b3410156119685760405162461bcd60e51b815260206004820152602160248201527f436f6d70616e696f6e734e46543a20496e737566696369656e742066756e64736044820152602160f81b6064820152608401610750565b336000908152600a6020526040902054600290611986908490612c6c565b11156119eb5760405162461bcd60e51b815260206004820152602e60248201527f436f6d70616e696f6e734e46543a204d617820746f6b656e732070657220776160448201526d6c6c65742065786365656465642160901b6064820152608401610750565b610ad9826119f860095490565b611a029190612c6c565b1115611a205760405162461bcd60e51b815260040161075090612c84565b60015b828111611a5757611a38600980546001019055565b611a45336113a760095490565b80611a4f81612cc7565b915050611a23565b50336000908152600a602052604081208054849290611a77908490612c6c565b90915550505050565b600080611a8c83610d49565b9050806001600160a01b0316846001600160a01b03161480611ad357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611af75750836001600160a01b0316611aec8461084b565b6001600160a01b0316145b949350505050565b826001600160a01b0316611b1282610d49565b6001600160a01b031614611b765760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610750565b6001600160a01b038216611bd85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610750565b611be3838383611fc0565b611bee600082611808565b6001600160a01b0383166000908152600360205260408120805460019290611c17908490612d01565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c45908490612c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bd481611ff7565b6007546001600160a01b03163314610ecf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611dbd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610750565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e35848484611aff565b611e4184848484612037565b61127a5760405162461bcd60e51b815260040161075090612d18565b6060611e68826117a9565b60008281526006602052604081208054611e8190612a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ead90612a4c565b8015611efa5780601f10611ecf57610100808354040283529160200191611efa565b820191906000526020600020905b815481529060010190602001808311611edd57829003601f168201915b505050505090506000611f0b612135565b9050805160001415611f1e575092915050565b815115611f50578082604051602001611f38929190612d6a565b60405160208183030381529060405292505050919050565b611af784612144565b6112448282604051806020016040528060008152506121ab565b600081815b8451811015611fb857611fa482868381518110611f9757611f97612d99565b60200260200101516121de565b915080611fb081612cc7565b915050611f78565b509392505050565b6000600c5460ff166003811115611fd957611fd961289a565b14156109835760405162461bcd60e51b815260040161075090612abe565b6120008161220a565b6000818152600660205260409020805461201990612a4c565b159050610bd4576000818152600660205260408120610bd491612581565b60006001600160a01b0384163b1561212a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061207b903390899088908890600401612daf565b6020604051808303816000875af19250505080156120b6575060408051601f3d908101601f191682019092526120b391810190612dec565b60015b612110573d8080156120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b5080516121085760405162461bcd60e51b815260040161075090612d18565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611af7565b506001949350505050565b6060600d80546107c890612a4c565b606061214f826117a9565b6000612159612135565b9050600081511161217957604051806020016040528060008152506121a4565b80612183846122b1565b604051602001612194929190612d6a565b6040516020818303038152906040525b9392505050565b6121b583836123af565b6121c26000848484612037565b6109835760405162461bcd60e51b815260040161075090612d18565b60008183106121fa5760008281526020849052604090206121a4565b5060009182526020526040902090565b600061221582610d49565b905061222381600084611fc0565b61222e600083611808565b6001600160a01b0381166000908152600360205260408120805460019290612257908490612d01565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060816122d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122ff57806122e981612cc7565b91506122f89050600a83612e1f565b91506122d9565b60008167ffffffffffffffff81111561231a5761231a6128d8565b6040519080825280601f01601f191660200182016040528015612344576020820181803683370190505b5090505b8415611af757612359600183612d01565b9150612366600a86612e33565b612371906030612c6c565b60f81b81838151811061238657612386612d99565b60200101906001600160f81b031916908160001a9053506123a8600a86612e1f565b9450612348565b6001600160a01b0382166124055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610750565b6000818152600260205260409020546001600160a01b03161561246a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610750565b61247660008383611fc0565b6001600160a01b038216600090815260036020526040812080546001929061249f908490612c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461250990612a4c565b90600052602060002090601f01602090048101928261252b5760008555612571565b82601f106125445782800160ff19823516178555612571565b82800160010185558215612571579182015b82811115612571578235825591602001919060010190612556565b5061257d9291506125b7565b5090565b50805461258d90612a4c565b6000825580601f1061259d575050565b601f016020900490600052602060002090810190610bd491905b5b8082111561257d57600081556001016125b8565b6000806000606084860312156125e157600080fd5b505081359360208301359350604090920135919050565b6001600160e01b031981168114610bd457600080fd5b60006020828403121561262057600080fd5b81356121a4816125f8565b60005b8381101561264657818101518382015260200161262e565b8381111561127a5750506000910152565b6000815180845261266f81602086016020860161262b565b601f01601f19169290920160200192915050565b6020815260006121a46020830184612657565b6000602082840312156126a857600080fd5b5035919050565b80356001600160a01b03811681146126c657600080fd5b919050565b600080604083850312156126de57600080fd5b6126e7836126af565b946020939093013593505050565b60008060006040848603121561270a57600080fd5b83359250602084013567ffffffffffffffff8082111561272957600080fd5b818601915086601f83011261273d57600080fd5b81358181111561274c57600080fd5b8760208260051b850101111561276157600080fd5b6020830194508093505050509250925092565b60006020828403121561278657600080fd5b6121a4826126af565b6000806000606084860312156127a457600080fd5b6127ad846126af565b92506127bb602085016126af565b9150604084013590509250925092565b600080602083850312156127de57600080fd5b823567ffffffffffffffff808211156127f657600080fd5b818501915085601f83011261280a57600080fd5b81358181111561281957600080fd5b86602082850101111561282b57600080fd5b60209290920196919550909350505050565b60006020828403121561284f57600080fd5b8135600481106121a457600080fd5b6000806040838503121561287157600080fd5b61287a836126af565b91506020830135801515811461288f57600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b60208101600483106128d257634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561290457600080fd5b61290d856126af565b935061291b602086016126af565b925060408501359150606085013567ffffffffffffffff8082111561293f57600080fd5b818701915087601f83011261295357600080fd5b813581811115612965576129656128d8565b604051601f8201601f19908116603f0116810190838211818310171561298d5761298d6128d8565b816040528281528a60208487010111156129a657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156129dd57600080fd5b6129e6836126af565b91506129f4602084016126af565b90509250929050565b6020808252602f908201527f436f6d70616e696f6e734e46543a204f6e6c792061646d696e206f72206f776e60408201526e65722061726520616c6c6f7765642160881b606082015260800190565b600181811c90821680612a6057607f821691505b60208210811415612a8157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526024908201527f436f6d70616e696f6e734e46543a20436f6e74726163742069742773207061756040820152637365642160e01b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b7f436f6d70616e696f6e734e46543a204661696c656420746f2077697468647261815261772160f01b602082015260008251612bc281602285016020870161262b565b9190910160220192915050565b60208082526023908201527f436f6d70616e696f6e734e46543a2049742773206e6f7420696e206d696e74696040820152626e672160e81b606082015260800190565b60208082526024908201527f436f6d70616e696f6e734e46543a20416d6f756e742063616e2774206265207a60408201526365726f2160e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c7f57612c7f612c56565b500190565b60208082526023908201527f436f6d70616e696f6e734e46543a204d617820737570706c792065786365656460408201526265642160e81b606082015260800190565b6000600019821415612cdb57612cdb612c56565b5060010190565b6000816000190483118215151615612cfc57612cfc612c56565b500290565b600082821015612d1357612d13612c56565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612d7c81846020880161262b565b835190830190612d9081836020880161262b565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612de290830184612657565b9695505050505050565b600060208284031215612dfe57600080fd5b81516121a4816125f8565b634e487b7160e01b600052601260045260246000fd5b600082612e2e57612e2e612e09565b500490565b600082612e4257612e42612e09565b50069056fea2646970667358221220d512afae1a1c17845b096c40c062539e434042bd8e526974981fc077b19de94a64736f6c634300080b0033

Deployed Bytecode Sourcemap

52960:7723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54211:181;;;;;;;;;;-1:-1:-1;54211:181:0;;;;;:::i;:::-;;:::i;:::-;;37719:305;;;;;;;;;;-1:-1:-1;37719:305:0;;;;;:::i;:::-;;:::i;:::-;;;886:14:1;;879:22;861:41;;849:2;834:18;37719:305:0;;;;;;;;38646:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40159:171::-;;;;;;;;;;-1:-1:-1;40159:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2013:32:1;;;1995:51;;1983:2;1968:18;40159:171:0;1849:203:1;39676:417:0;;;;;;;;;;-1:-1:-1;39676:417:0;;;;;:::i;:::-;;:::i;59209:423::-;;;;;;:::i;:::-;;:::i;53481:45::-;;;;;;;;;;-1:-1:-1;53481:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3519:25:1;;;3507:2;3492:18;53481:45:0;3373:177:1;53251:39:0;;;;;;;;;;;;53289:1;53251:39;;57205:98;;;;;;;;;;;;;:::i;53207:37::-;;;;;;;;;;;;53242:2;53207:37;;40859:336;;;;;;;;;;-1:-1:-1;40859:336:0;;;;;:::i;:::-;;:::i;53162:38::-;;;;;;;;;;;;53196:4;53162:38;;41266:185;;;;;;;;;;-1:-1:-1;41266:185:0;;;;;:::i;:::-;;:::i;55814:84::-;;;;;;;;;;-1:-1:-1;55814:84:0;;;;;:::i;:::-;;:::i;56567:143::-;;;;;;;;;;-1:-1:-1;56567:143:0;;;;;:::i;:::-;;:::i;55925:150::-;;;;;;;;;;-1:-1:-1;55925:150:0;;;;;:::i;:::-;;:::i;38357:222::-;;;;;;;;;;-1:-1:-1;38357:222:0;;;;;:::i;:::-;;:::i;53816:78::-;;;;;;;;;;;;;:::i;38088:207::-;;;;;;;;;;-1:-1:-1;38088:207:0;;;;;:::i;:::-;;:::i;18255:103::-;;;;;;;;;;;;;:::i;56087:332::-;;;;;;;;;;;;;:::i;56863:131::-;;;;;;;;;;-1:-1:-1;56863:131:0;;;;;:::i;:::-;;:::i;60426:242::-;;;;;;;;;;;;;:::i;17607:87::-;;;;;;;;;;-1:-1:-1;17680:6:0;;-1:-1:-1;;;;;17680:6:0;17607:87;;56736:119;;;;;;;;;;-1:-1:-1;56736:119:0;;;;;:::i;:::-;;:::i;38815:104::-;;;;;;;;;;;;;:::i;57006:78::-;;;;;;;;;;-1:-1:-1;57071:5:0;;57006:78;;59641:249;;;;;;:::i;:::-;;:::i;40402:155::-;;;;;;;;;;-1:-1:-1;40402:155:0;;;;;:::i;:::-;;:::i;53672:55::-;;;;;;;;;;-1:-1:-1;53672:55:0;;;;;;;;;;;;;;;:::i;53423:47::-;;;;;;;;;;-1:-1:-1;53423:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;41522:323;;;;;;;;;;-1:-1:-1;41522:323:0;;;;;:::i;:::-;;:::i;57092:82::-;;;;;;;;;;-1:-1:-1;57159:7:0;;57092:82;;55589:198;;;;;;;;;;-1:-1:-1;55589:198:0;;;;;:::i;:::-;;:::i;59902:480::-;;;;;;;;;;-1:-1:-1;59902:480:0;;;;;:::i;:::-;;:::i;58737:463::-;;;;;;:::i;:::-;;:::i;58112:616::-;;;;;;:::i;:::-;;:::i;40628:164::-;;;;;;;;;;-1:-1:-1;40628:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40749:25:0;;;40725:4;40749:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40628:164;18513:201;;;;;;;;;;-1:-1:-1;18513:201:0;;;;;:::i;:::-;;:::i;54211:181::-;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;;;;;;;;;54318:6:::1;:14:::0;;;;54343:7:::1;:16:::0;54370:6:::1;:14:::0;54211:181::o;37719:305::-;37821:4;-1:-1:-1;;;;;;37858:40:0;;-1:-1:-1;;;37858:40:0;;:105;;-1:-1:-1;;;;;;;37915:48:0;;-1:-1:-1;;;37915:48:0;37858:105;:158;;;-1:-1:-1;;;;;;;;;;30570:40:0;;;37980:36;37838:178;37719:305;-1:-1:-1;;37719:305:0:o;38646:100::-;38700:13;38733:5;38726:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38646:100;:::o;40159:171::-;40235:7;40255:23;40270:7;40255:14;:23::i;:::-;-1:-1:-1;40298:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40298:24:0;;40159:171::o;39676:417::-;39757:13;39773:23;39788:7;39773:14;:23::i;:::-;39757:39;;39821:5;-1:-1:-1;;;;;39815:11:0;:2;-1:-1:-1;;;;;39815:11:0;;;39807:57;;;;-1:-1:-1;;;39807:57:0;;8138:2:1;39807:57:0;;;8120:21:1;8177:2;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;-1:-1:-1;;;8267:18:1;;;8260:31;8308:19;;39807:57:0;7936:397:1;39807:57:0;16238:10;-1:-1:-1;;;;;39899:21:0;;;;:62;;-1:-1:-1;39924:37:0;39941:5;16238:10;40628:164;:::i;39924:37::-;39877:174;;;;-1:-1:-1;;;39877:174:0;;8540:2:1;39877:174:0;;;8522:21:1;8579:2;8559:18;;;8552:30;8618:34;8598:18;;;8591:62;8689:32;8669:18;;;8662:60;8739:19;;39877:174:0;8338:426:1;39877:174:0;40064:21;40073:2;40077:7;40064:8;:21::i;:::-;39746:347;39676:417;;:::o;59209:423::-;12035:1;12633:7;;:19;;12625:63;;;;-1:-1:-1;;;12625:63:0;;;;;;;:::i;:::-;12035:1;12766:7;:18;54946::::1;54933:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;54925:80;;;;-1:-1:-1::0;;;54925:80:0::1;;;;;;;:::i;:::-;59402:21:::2;59387:11;::::0;::::2;;:36;::::0;::::2;;;;;;:::i;:::-;;59379:87;;;::::0;-1:-1:-1;;;59379:87:0;;9736:2:1;59379:87:0::2;::::0;::::2;9718:21:1::0;9775:2;9755:18;;;9748:30;9814:34;9794:18;;;9787:62;-1:-1:-1;;;9865:18:1;;;9858:36;9911:19;;59379:87:0::2;9534:402:1::0;59379:87:0::2;59486:62;59505:11;;59486:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;59518:6:0::2;::::0;;-1:-1:-1;59536:10:0::2;::::0;-1:-1:-1;59486:18:0::2;:62::i;:::-;:70;;59552:4;59486:70;59478:116;;;::::0;-1:-1:-1;;;59478:116:0;;10143:2:1;59478:116:0::2;::::0;::::2;10125:21:1::0;10182:2;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;-1:-1:-1;;;10272:18:1;;;10265:31;10313:19;;59478:116:0::2;9941:397:1::0;59478:116:0::2;59605:19;59611:6;59618:5;;59605;:19::i;:::-;-1:-1:-1::0;;11991:1:0;12945:7;:22;-1:-1:-1;59209:423:0:o;57205:98::-;57249:4;57273:22;:12;9722:14;;9630:114;57273:22;57266:29;;57205:98;:::o;40859:336::-;41054:41;16238:10;41087:7;41054:18;:41::i;:::-;41046:100;;;;-1:-1:-1;;;41046:100:0;;;;;;;:::i;:::-;41159:28;41169:4;41175:2;41179:7;41159:9;:28::i;41266:185::-;41404:39;41421:4;41427:2;41431:7;41404:39;;;;;;;;;;;;:16;:39::i;55814:84::-;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;55875:15:::1;55881:8;55875:5;:15::i;:::-;55814:84:::0;:::o;56567:143::-;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;56644:18:::1;:7;56654:8:::0;;56644:18:::1;:::i;:::-;;56678:24;56693:8;;56678:24;;;;;;;:::i;:::-;;;;;;;;56567:143:::0;;:::o;55925:150::-;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;56001:11:::1;:19:::0;;56013:7;;56001:11;-1:-1:-1;;56001:19:0::1;::::0;56013:7;56001:19:::1;::::0;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;56055:11:0::1;::::0;56036:31:::1;::::0;::::1;::::0;::::1;::::0;56055:11:::1;::::0;;::::1;::::0;56036:31:::1;:::i;:::-;;;;;;;;55925:150:::0;:::o;38357:222::-;38429:7;38465:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38465:16:0;38500:19;38492:56;;;;-1:-1:-1;;;38492:56:0;;11355:2:1;38492:56:0;;;11337:21:1;11394:2;11374:18;;;11367:30;-1:-1:-1;;;11413:18:1;;;11406:54;11477:18;;38492:56:0;11153:348:1;53816:78:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38088:207::-;38160:7;-1:-1:-1;;;;;38188:19:0;;38180:73;;;;-1:-1:-1;;;38180:73:0;;11708:2:1;38180:73:0;;;11690:21:1;11747:2;11727:18;;;11720:30;11786:34;11766:18;;;11759:62;-1:-1:-1;;;11837:18:1;;;11830:39;11886:19;;38180:73:0;11506:405:1;38180:73:0;-1:-1:-1;;;;;;38271:16:0;;;;;:9;:16;;;;;;;38088:207::o;18255:103::-;17493:13;:11;:13::i;:::-;18320:30:::1;18347:1;18320:18;:30::i;:::-;18255:103::o:0;56087:332::-;56134:13;56186:21;56173:11;;;;:34;;;;;;;;:::i;:::-;;56169:216;;;-1:-1:-1;56209:19:0;;;;;;;;;;;;-1:-1:-1;;;56209:19:0;;;;;56087:332::o;56169:216::-;56261:19;56248:11;;;;:32;;;;;;;;:::i;:::-;;56244:141;;;-1:-1:-1;56282:16:0;;;;;;;;;;;;-1:-1:-1;;;56282:16:0;;;;;56087:332::o;56244:141::-;56337:24;56324:11;;;;:37;;;;;;;;:::i;:::-;;56320:65;;;-1:-1:-1;56363:22:0;;;;;;;;;;;;-1:-1:-1;;;56363:22:0;;;;;56087:332::o;56320:65::-;-1:-1:-1;56396:15:0;;;;;;;;;;;;-1:-1:-1;;;56396:15:0;;;;;56087:332::o;56863:131::-;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;56929:7:::1;:18:::0;;;56963:23:::1;::::0;3519:25:1;;;56963:23:0::1;::::0;3507:2:1;3492:18;56963:23:0::1;3373:177:1::0;60426:242:0;17493:13;:11;:13::i;:::-;60510:58:::1;::::0;60478:9:::1;::::0;;;60518:10:::1;::::0;60542:21:::1;::::0;60478:9;60510:58;60478:9;60510:58;60542:21;60518:10;60510:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60477:91;;;;60587:4;60653;60599:59;;;;;;;;:::i;:::-;;;;;;;;;;;;;60579:81;;;;;-1:-1:-1::0;;;60579:81:0::1;;;;;;;;:::i;56736:119::-:0;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;56798:5:::1;:14:::0;;;56828:19:::1;::::0;3519:25:1;;;56828:19:0::1;::::0;3507:2:1;3492:18;56828:19:0::1;3373:177:1::0;38815:104:0;38871:13;38904:7;38897:14;;;;;:::i;59641:249::-;12035:1;12633:7;;:19;;12625:63;;;;-1:-1:-1;;;12625:63:0;;;;;;;:::i;:::-;12035:1;12766:7;:18;54946::::1;54933:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;54925:80;;;;-1:-1:-1::0;;;54925:80:0::1;;;;;;;:::i;:::-;59792:19:::2;59777:11;::::0;::::2;;:34;::::0;::::2;;;;;;:::i;:::-;;59769:82;;;;-1:-1:-1::0;;;59769:82:0::2;;;;;;;:::i;:::-;59863:19;59869:6;59876:5;;59863;:19::i;:::-;-1:-1:-1::0;11991:1:0;12945:7;:22;59641:249::o;40402:155::-;40497:52;16238:10;40530:8;40540;40497:18;:52::i;:::-;40402:155;;:::o;41522:323::-;41696:41;16238:10;41729:7;41696:18;:41::i;:::-;41688:100;;;;-1:-1:-1;;;41688:100:0;;;;;;;:::i;:::-;41799:38;41813:4;41819:2;41823:7;41832:4;41799:13;:38::i;:::-;41522:323;;;;:::o;55589:198::-;55717:13;55756:23;55771:7;55756:14;:23::i;59902:480::-;54734:4;54743:10;54726:27;;:52;;-1:-1:-1;54768:10:0;54757:7;17680:6;;-1:-1:-1;;;;;17680:6:0;;17607:87;54757:7;-1:-1:-1;;;;;54757:21:0;;54726:52;:81;;;-1:-1:-1;53098:42:0;54797:10;54782:25;54726:81;54718:141;;;;-1:-1:-1;;;54718:141:0;;;;;;;:::i;:::-;54946:18:::1;54933:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;54925:80;;;;-1:-1:-1::0;;;54925:80:0::1;;;;;;;:::i;:::-;60041:1:::2;60032:6;:10;60024:59;;;;-1:-1:-1::0;;;60024:59:0::2;;;;;;;:::i;:::-;60137:22;53242:2;53196:4;60137:22;:::i;:::-;60127:6;60102:22;:12;9722:14:::0;;9630:114;60102:22:::2;:31;;;;:::i;:::-;:57;;60094:105;;;;-1:-1:-1::0;;;60094:105:0::2;;;;;;;:::i;:::-;60224:1;60210:150;60232:6;60227:1;:11;60210:150;;60272:24;:12;9841:19:::0;;9859:1;9841:19;;;9752:127;60272:24:::2;60311:37;60321:2;60325:22;:12;9722:14:::0;;9630:114;60325:22:::2;60311:9;:37::i;:::-;60240:3:::0;::::2;::::0;::::2;:::i;:::-;;;;60210:150;;58737:463:::0;12035:1;12633:7;;:19;;12625:63;;;;-1:-1:-1;;;12625:63:0;;;;;;;:::i;:::-;12035:1;12766:7;:18;54946::::1;54933:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;54925:80;;;;-1:-1:-1::0;;;54925:80:0::1;;;;;;;:::i;:::-;58924:21:::2;58909:11;::::0;::::2;;:36;::::0;::::2;;;;;;:::i;:::-;;58908:78;;;-1:-1:-1::0;58966:19:0::2;58951:11;::::0;::::2;;:34;::::0;::::2;;;;;;:::i;:::-;;58908:78;58900:126;;;;-1:-1:-1::0;;;58900:126:0::2;;;;;;;:::i;:::-;59046:63;59065:11;;59046:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;59078:7:0::2;::::0;;-1:-1:-1;59097:10:0::2;::::0;-1:-1:-1;59486:18:0::2;:62::i;59046:63::-;:71;;59113:4;59046:71;59038:122;;;::::0;-1:-1:-1;;;59038:122:0;;14433:2:1;59038:122:0::2;::::0;::::2;14415:21:1::0;14472:2;14452:18;;;14445:30;14511:34;14491:18;;;14484:62;-1:-1:-1;;;14562:18:1;;;14555:36;14608:19;;59038:122:0::2;14231:402:1::0;59038:122:0::2;59171:21;59177:6;59184:7;;59171:5;:21::i;58112:616::-:0;12035:1;12633:7;;:19;;12625:63;;;;-1:-1:-1;;;12625:63:0;;;;;;;:::i;:::-;12035:1;12766:7;:18;54946::::1;54933:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;54925:80;;;;-1:-1:-1::0;;;54925:80:0::1;;;;;;;:::i;:::-;58301:21:::2;58286:11;::::0;::::2;;:36;::::0;::::2;;;;;;:::i;:::-;;58285:78;;;-1:-1:-1::0;58343:19:0::2;58328:11;::::0;::::2;;:34;::::0;::::2;;;;;;:::i;:::-;;58285:78;58277:127;;;;-1:-1:-1::0;;;58277:127:0::2;;;;;;;:::i;:::-;58424:62;58443:11;;58424:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;58456:6:0::2;::::0;;-1:-1:-1;58474:10:0::2;::::0;-1:-1:-1;59486:18:0::2;:62::i;58424:::-;:70;;58490:4;58424:70;58416:135;;;::::0;-1:-1:-1;;;58416:135:0;;14840:2:1;58416:135:0::2;::::0;::::2;14822:21:1::0;14879:2;14859:18;;;14852:30;14918:34;14898:18;;;14891:62;-1:-1:-1;;;14969:18:1;;;14962:50;15029:19;;58416:135:0::2;14638:416:1::0;58416:135:0::2;58585:10;58571:25;::::0;;;:13:::2;:25;::::0;;;;;:30;58570:49;::::2;;;;58607:6;58617:1;58607:11;58570:49;58562:94;;;::::0;-1:-1:-1;;;58562:94:0;;15261:2:1;58562:94:0::2;::::0;::::2;15243:21:1::0;;;15280:18;;;15273:30;15339:34;15319:18;;;15312:62;15391:18;;58562:94:0::2;15059:356:1::0;58562:94:0::2;58667:15;58673:6;58680:1;58667:5;:15::i;:::-;-1:-1:-1::0;;58707:10:0::2;58693:25;::::0;;;:13:::2;:25;::::0;;;;58719:1:::2;58693:27:::0;;;;12945:7;:22;-1:-1:-1;58112:616:0:o;18513:201::-;17493:13;:11;:13::i;:::-;-1:-1:-1;;;;;18602:22:0;::::1;18594:73;;;::::0;-1:-1:-1;;;18594:73:0;;15622:2:1;18594:73:0::1;::::0;::::1;15604:21:1::0;15661:2;15641:18;;;15634:30;15700:34;15680:18;;;15673:62;-1:-1:-1;;;15751:18:1;;;15744:36;15797:19;;18594:73:0::1;15420:402:1::0;18594:73:0::1;18678:28;18697:8;18678:18;:28::i;9752:127::-:0;9841:19;;9859:1;9841:19;;;9752:127::o;9630:114::-;9722:14;;9630:114::o;20305:326::-;-1:-1:-1;;;;;20600:19:0;;:23;;;20305:326::o;48134:135::-;43417:4;43441:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43441:16:0;48208:53;;;;-1:-1:-1;;;48208:53:0;;11355:2:1;48208:53:0;;;11337:21:1;11394:2;11374:18;;;11367:30;-1:-1:-1;;;11413:18:1;;;11406:54;11477:18;;48208:53:0;11153:348:1;47413:174:0;47488:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47488:29:0;-1:-1:-1;;;;;47488:29:0;;;;;;;;:24;;47542:23;47488:24;47542:14;:23::i;:::-;-1:-1:-1;;;;;47533:46:0;;;;;;;;;;;47413:174;;:::o;1252:190::-;1377:4;1430;1401:25;1414:5;1421:4;1401:12;:25::i;:::-;:33;;1252:190;-1:-1:-1;;;;1252:190:0:o;57335:769::-;57415:1;57405:7;:11;57397:60;;;;-1:-1:-1;;;57397:60:0;;;;;;;:::i;:::-;53196:4;57476:22;:12;9722:14;;9630:114;57476:22;:35;57468:72;;;;-1:-1:-1;;;57468:72:0;;16029:2:1;57468:72:0;;;16011:21:1;16068:2;16048:18;;;16041:30;16107:26;16087:18;;;16080:54;16151:18;;57468:72:0;15827:348:1;57468:72:0;57576:16;57585:7;57576:6;:16;:::i;:::-;57564:9;:28;;57556:74;;;;-1:-1:-1;;;57556:74:0;;16555:2:1;57556:74:0;;;16537:21:1;16594:2;16574:18;;;16567:30;16633:34;16613:18;;;16606:62;-1:-1:-1;;;16684:18:1;;;16677:31;16725:19;;57556:74:0;16353:397:1;57556:74:0;57665:10;57649:27;;;;:15;:27;;;;;;53289:1;;57649:37;;57679:7;;57649:37;:::i;:::-;:55;;57641:114;;;;-1:-1:-1;;;57641:114:0;;16957:2:1;57641:114:0;;;16939:21:1;16996:2;16976:18;;;16969:30;17035:34;17015:18;;;17008:62;-1:-1:-1;;;17086:18:1;;;17079:44;17140:19;;57641:114:0;16755:410:1;57641:114:0;53196:4;57799:7;57774:22;:12;9722:14;;9630:114;57774:22;:32;;;;:::i;:::-;:46;;57766:94;;;;-1:-1:-1;;;57766:94:0;;;;;;;:::i;:::-;57887:1;57873:171;57895:7;57890:1;:12;57873:171;;57924:24;:12;9841:19;;9859:1;9841:19;;;9752:127;57924:24;57963:45;57973:10;57985:22;:12;9722:14;;9630:114;57963:45;57904:3;;;;:::i;:::-;;;;57873:171;;;-1:-1:-1;58074:10:0;58058:27;;;;:15;:27;;;;;:38;;58089:7;;58058:27;:38;;58089:7;;58058:38;:::i;:::-;;;;-1:-1:-1;;;;57335:769:0:o;43646:264::-;43739:4;43756:13;43772:23;43787:7;43772:14;:23::i;:::-;43756:39;;43825:5;-1:-1:-1;;;;;43814:16:0;:7;-1:-1:-1;;;;;43814:16:0;;:52;;;-1:-1:-1;;;;;;40749:25:0;;;40725:4;40749:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43834:32;43814:87;;;;43894:7;-1:-1:-1;;;;;43870:31:0;:20;43882:7;43870:11;:20::i;:::-;-1:-1:-1;;;;;43870:31:0;;43814:87;43806:96;43646:264;-1:-1:-1;;;;43646:264:0:o;46669:625::-;46828:4;-1:-1:-1;;;;;46801:31:0;:23;46816:7;46801:14;:23::i;:::-;-1:-1:-1;;;;;46801:31:0;;46793:81;;;;-1:-1:-1;;;46793:81:0;;17372:2:1;46793:81:0;;;17354:21:1;17411:2;17391:18;;;17384:30;17450:34;17430:18;;;17423:62;-1:-1:-1;;;17501:18:1;;;17494:35;17546:19;;46793:81:0;17170:401:1;46793:81:0;-1:-1:-1;;;;;46893:16:0;;46885:65;;;;-1:-1:-1;;;46885:65:0;;17778:2:1;46885:65:0;;;17760:21:1;17817:2;17797:18;;;17790:30;17856:34;17836:18;;;17829:62;-1:-1:-1;;;17907:18:1;;;17900:34;17951:19;;46885:65:0;17576:400:1;46885:65:0;46963:39;46984:4;46990:2;46994:7;46963:20;:39::i;:::-;47067:29;47084:1;47088:7;47067:8;:29::i;:::-;-1:-1:-1;;;;;47109:15:0;;;;;;:9;:15;;;;;:20;;47128:1;;47109:15;:20;;47128:1;;47109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;47140:13:0;;;;;;:9;:13;;;;;:18;;47157:1;;47140:13;:18;;47157:1;;47140:18;:::i;:::-;;;;-1:-1:-1;;47169:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47169:21:0;-1:-1:-1;;;;;47169:21:0;;;;;;;;;47208:27;;47169:16;;47208:27;;;;;;;39746:347;39676:417;;:::o;55469:112::-;55553:20;55565:7;55553:11;:20::i;17772:132::-;17680:6;;-1:-1:-1;;;;;17680:6:0;16238:10;17836:23;17828:68;;;;-1:-1:-1;;;17828:68:0;;18313:2:1;17828:68:0;;;18295:21:1;;;18332:18;;;18325:30;18391:34;18371:18;;;18364:62;18443:18;;17828:68:0;18111:356:1;18874:191:0;18967:6;;;-1:-1:-1;;;;;18984:17:0;;;-1:-1:-1;;;;;;18984:17:0;;;;;;;19017:40;;18967:6;;;18984:17;18967:6;;19017:40;;18948:16;;19017:40;18937:128;18874:191;:::o;47730:315::-;47885:8;-1:-1:-1;;;;;47876:17:0;:5;-1:-1:-1;;;;;47876:17:0;;;47868:55;;;;-1:-1:-1;;;47868:55:0;;18674:2:1;47868:55:0;;;18656:21:1;18713:2;18693:18;;;18686:30;18752:27;18732:18;;;18725:55;18797:18;;47868:55:0;18472:349:1;47868:55:0;-1:-1:-1;;;;;47934:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;47934:46:0;;;;;;;;;;47996:41;;861::1;;;47996::0;;834:18:1;47996:41:0;;;;;;;47730:315;;;:::o;42726:313::-;42882:28;42892:4;42898:2;42902:7;42882:9;:28::i;:::-;42929:47;42952:4;42958:2;42962:7;42971:4;42929:22;:47::i;:::-;42921:110;;;;-1:-1:-1;;;42921:110:0;;;;;;;:::i;51427:624::-;51500:13;51526:23;51541:7;51526:14;:23::i;:::-;51562;51588:19;;;:10;:19;;;;;51562:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51618:18;51639:10;:8;:10::i;:::-;51618:31;;51731:4;51725:18;51747:1;51725:23;51721:72;;;-1:-1:-1;51772:9:0;51427:624;-1:-1:-1;;51427:624:0:o;51721:72::-;51897:23;;:27;51893:108;;51972:4;51978:9;51955:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51941:48;;;;51427:624;;;:::o;51893:108::-;52020:23;52035:7;52020:14;:23::i;44252:110::-;44328:26;44338:2;44342:7;44328:26;;;;;;;;;;;;:9;:26::i;2119:296::-;2202:7;2245:4;2202:7;2260:118;2284:5;:12;2280:1;:16;2260:118;;;2333:33;2343:12;2357:5;2363:1;2357:8;;;;;;;;:::i;:::-;;;;;;;2333:9;:33::i;:::-;2318:48;-1:-1:-1;2298:3:0;;;;:::i;:::-;;;;2260:118;;;-1:-1:-1;2395:12:0;2119:296;-1:-1:-1;;;2119:296:0:o;55184:211::-;54946:18;54933:11;;;;:31;;;;;;;;:::i;:::-;;;54925:80;;;;-1:-1:-1;;;54925:80:0;;;;;;;:::i;52649:206::-;52718:20;52730:7;52718:11;:20::i;:::-;52761:19;;;;:10;:19;;;;;52755:33;;;;;:::i;:::-;:38;;-1:-1:-1;52751:97:0;;52817:19;;;;:10;:19;;;;;52810:26;;;:::i;48833:853::-;48987:4;-1:-1:-1;;;;;49008:13:0;;20600:19;:23;49004:675;;49044:71;;-1:-1:-1;;;49044:71:0;;-1:-1:-1;;;;;49044:36:0;;;;;:71;;16238:10;;49095:4;;49101:7;;49110:4;;49044:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49044:71:0;;;;;;;;-1:-1:-1;;49044:71:0;;;;;;;;;;;;:::i;:::-;;;49040:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49285:13:0;;49281:328;;49328:60;;-1:-1:-1;;;49328:60:0;;;;;;;:::i;49281:328::-;49559:6;49553:13;49544:6;49540:2;49536:15;49529:38;49040:584;-1:-1:-1;;;;;;49166:51:0;-1:-1:-1;;;49166:51:0;;-1:-1:-1;49159:58:0;;49004:675;-1:-1:-1;49663:4:0;48833:853;;;;;;:::o;56447:108::-;56507:13;56540:7;56533:14;;;;;:::i;38990:281::-;39063:13;39089:23;39104:7;39089:14;:23::i;:::-;39125:21;39149:10;:8;:10::i;:::-;39125:34;;39201:1;39183:7;39177:21;:25;:86;;;;;;;;;;;;;;;;;39229:7;39238:18;:7;:16;:18::i;:::-;39212:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39177:86;39170:93;38990:281;-1:-1:-1;;;38990:281:0:o;44589:319::-;44718:18;44724:2;44728:7;44718:5;:18::i;:::-;44769:53;44800:1;44804:2;44808:7;44817:4;44769:22;:53::i;:::-;44747:153;;;;-1:-1:-1;;;44747:153:0;;;;;;;:::i;8326:149::-;8389:7;8420:1;8416;:5;:51;;8551:13;8645:15;;;8681:4;8674:15;;;8728:4;8712:21;;8416:51;;;-1:-1:-1;8551:13:0;8645:15;;;8681:4;8674:15;8728:4;8712:21;;;8326:149::o;45912:420::-;45972:13;45988:23;46003:7;45988:14;:23::i;:::-;45972:39;;46024:48;46045:5;46060:1;46064:7;46024:20;:48::i;:::-;46113:29;46130:1;46134:7;46113:8;:29::i;:::-;-1:-1:-1;;;;;46155:16:0;;;;;;:9;:16;;;;;:21;;46175:1;;46155:16;:21;;46175:1;;46155:21;:::i;:::-;;;;-1:-1:-1;;46194:16:0;;;;:7;:16;;;;;;46187:23;;-1:-1:-1;;;;;;46187:23:0;;;46228:36;46202:7;;46194:16;-1:-1:-1;;;;;46228:36:0;;;;;46194:16;;46228:36;40402:155;;:::o;13412:723::-;13468:13;13689:10;13685:53;;-1:-1:-1;;13716:10:0;;;;;;;;;;;;-1:-1:-1;;;13716:10:0;;;;;13412:723::o;13685:53::-;13763:5;13748:12;13804:78;13811:9;;13804:78;;13837:8;;;;:::i;:::-;;-1:-1:-1;13860:10:0;;-1:-1:-1;13868:2:0;13860:10;;:::i;:::-;;;13804:78;;;13892:19;13924:6;13914:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13914:17:0;;13892:39;;13942:154;13949:10;;13942:154;;13976:11;13986:1;13976:11;;:::i;:::-;;-1:-1:-1;14045:10:0;14053:2;14045:5;:10;:::i;:::-;14032:24;;:2;:24;:::i;:::-;14019:39;;14002:6;14009;14002:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14002:56:0;;;;;;;;-1:-1:-1;14073:11:0;14082:2;14073:11;;:::i;:::-;;;13942:154;;45244:439;-1:-1:-1;;;;;45324:16:0;;45316:61;;;;-1:-1:-1;;;45316:61:0;;21176:2:1;45316:61:0;;;21158:21:1;;;21195:18;;;21188:30;21254:34;21234:18;;;21227:62;21306:18;;45316:61:0;20974:356:1;45316:61:0;43417:4;43441:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43441:16:0;:30;45388:58;;;;-1:-1:-1;;;45388:58:0;;21537:2:1;45388:58:0;;;21519:21:1;21576:2;21556:18;;;21549:30;21615;21595:18;;;21588:58;21663:18;;45388:58:0;21335:352:1;45388:58:0;45459:45;45488:1;45492:2;45496:7;45459:20;:45::i;:::-;-1:-1:-1;;;;;45517:13:0;;;;;;:9;:13;;;;;:18;;45534:1;;45517:13;:18;;45534:1;;45517:18;:::i;:::-;;;;-1:-1:-1;;45546:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45546:21:0;-1:-1:-1;;;;;45546:21:0;;;;;;;;45585:33;;45546:16;;;45585:33;;45546:16;;45585:33;40402:155;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:316:1;91:6;99;107;160:2;148:9;139:7;135:23;131:32;128:52;;;176:1;173;166:12;128:52;-1:-1:-1;;199:23:1;;;269:2;254:18;;241:32;;-1:-1:-1;320:2:1;305:18;;;292:32;;14:316;-1:-1:-1;14:316:1:o;335:131::-;-1:-1:-1;;;;;;409:32:1;;399:43;;389:71;;456:1;453;446:12;471:245;529:6;582:2;570:9;561:7;557:23;553:32;550:52;;;598:1;595;588:12;550:52;637:9;624:23;656:30;680:5;656:30;:::i;913:258::-;985:1;995:113;1009:6;1006:1;1003:13;995:113;;;1085:11;;;1079:18;1066:11;;;1059:39;1031:2;1024:10;995:113;;;1126:6;1123:1;1120:13;1117:48;;;-1:-1:-1;;1161:1:1;1143:16;;1136:27;913:258::o;1176:::-;1218:3;1256:5;1250:12;1283:6;1278:3;1271:19;1299:63;1355:6;1348:4;1343:3;1339:14;1332:4;1325:5;1321:16;1299:63;:::i;:::-;1416:2;1395:15;-1:-1:-1;;1391:29:1;1382:39;;;;1423:4;1378:50;;1176:258;-1:-1:-1;;1176:258:1:o;1439:220::-;1588:2;1577:9;1570:21;1551:4;1608:45;1649:2;1638:9;1634:18;1626:6;1608:45;:::i;1664:180::-;1723:6;1776:2;1764:9;1755:7;1751:23;1747:32;1744:52;;;1792:1;1789;1782:12;1744:52;-1:-1:-1;1815:23:1;;1664:180;-1:-1:-1;1664:180:1:o;2057:173::-;2125:20;;-1:-1:-1;;;;;2174:31:1;;2164:42;;2154:70;;2220:1;2217;2210:12;2154:70;2057:173;;;:::o;2235:254::-;2303:6;2311;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:29;2422:9;2403:29;:::i;:::-;2393:39;2479:2;2464:18;;;;2451:32;;-1:-1:-1;;;2235:254:1:o;2494:683::-;2589:6;2597;2605;2658:2;2646:9;2637:7;2633:23;2629:32;2626:52;;;2674:1;2671;2664:12;2626:52;2710:9;2697:23;2687:33;;2771:2;2760:9;2756:18;2743:32;2794:18;2835:2;2827:6;2824:14;2821:34;;;2851:1;2848;2841:12;2821:34;2889:6;2878:9;2874:22;2864:32;;2934:7;2927:4;2923:2;2919:13;2915:27;2905:55;;2956:1;2953;2946:12;2905:55;2996:2;2983:16;3022:2;3014:6;3011:14;3008:34;;;3038:1;3035;3028:12;3008:34;3091:7;3086:2;3076:6;3073:1;3069:14;3065:2;3061:23;3057:32;3054:45;3051:65;;;3112:1;3109;3102:12;3051:65;3143:2;3139;3135:11;3125:21;;3165:6;3155:16;;;;;2494:683;;;;;:::o;3182:186::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3333:29;3352:9;3333:29;:::i;3555:328::-;3632:6;3640;3648;3701:2;3689:9;3680:7;3676:23;3672:32;3669:52;;;3717:1;3714;3707:12;3669:52;3740:29;3759:9;3740:29;:::i;:::-;3730:39;;3788:38;3822:2;3811:9;3807:18;3788:38;:::i;:::-;3778:48;;3873:2;3862:9;3858:18;3845:32;3835:42;;3555:328;;;;;:::o;3888:592::-;3959:6;3967;4020:2;4008:9;3999:7;3995:23;3991:32;3988:52;;;4036:1;4033;4026:12;3988:52;4076:9;4063:23;4105:18;4146:2;4138:6;4135:14;4132:34;;;4162:1;4159;4152:12;4132:34;4200:6;4189:9;4185:22;4175:32;;4245:7;4238:4;4234:2;4230:13;4226:27;4216:55;;4267:1;4264;4257:12;4216:55;4307:2;4294:16;4333:2;4325:6;4322:14;4319:34;;;4349:1;4346;4339:12;4319:34;4394:7;4389:2;4380:6;4376:2;4372:15;4368:24;4365:37;4362:57;;;4415:1;4412;4405:12;4362:57;4446:2;4438:11;;;;;4468:6;;-1:-1:-1;3888:592:1;;-1:-1:-1;;;;3888:592:1:o;4485:272::-;4560:6;4613:2;4601:9;4592:7;4588:23;4584:32;4581:52;;;4629:1;4626;4619:12;4581:52;4668:9;4655:23;4707:1;4700:5;4697:12;4687:40;;4723:1;4720;4713:12;4762:347;4827:6;4835;4888:2;4876:9;4867:7;4863:23;4859:32;4856:52;;;4904:1;4901;4894:12;4856:52;4927:29;4946:9;4927:29;:::i;:::-;4917:39;;5006:2;4995:9;4991:18;4978:32;5053:5;5046:13;5039:21;5032:5;5029:32;5019:60;;5075:1;5072;5065:12;5019:60;5098:5;5088:15;;;4762:347;;;;;:::o;5114:127::-;5175:10;5170:3;5166:20;5163:1;5156:31;5206:4;5203:1;5196:15;5230:4;5227:1;5220:15;5246:344;5394:2;5379:18;;5427:1;5416:13;;5406:144;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5406:144;5559:25;;;5246:344;:::o;5595:127::-;5656:10;5651:3;5647:20;5644:1;5637:31;5687:4;5684:1;5677:15;5711:4;5708:1;5701:15;5727:1138;5822:6;5830;5838;5846;5899:3;5887:9;5878:7;5874:23;5870:33;5867:53;;;5916:1;5913;5906:12;5867:53;5939:29;5958:9;5939:29;:::i;:::-;5929:39;;5987:38;6021:2;6010:9;6006:18;5987:38;:::i;:::-;5977:48;;6072:2;6061:9;6057:18;6044:32;6034:42;;6127:2;6116:9;6112:18;6099:32;6150:18;6191:2;6183:6;6180:14;6177:34;;;6207:1;6204;6197:12;6177:34;6245:6;6234:9;6230:22;6220:32;;6290:7;6283:4;6279:2;6275:13;6271:27;6261:55;;6312:1;6309;6302:12;6261:55;6348:2;6335:16;6370:2;6366;6363:10;6360:36;;;6376:18;;:::i;:::-;6451:2;6445:9;6419:2;6505:13;;-1:-1:-1;;6501:22:1;;;6525:2;6497:31;6493:40;6481:53;;;6549:18;;;6569:22;;;6546:46;6543:72;;;6595:18;;:::i;:::-;6635:10;6631:2;6624:22;6670:2;6662:6;6655:18;6710:7;6705:2;6700;6696;6692:11;6688:20;6685:33;6682:53;;;6731:1;6728;6721:12;6682:53;6787:2;6782;6778;6774:11;6769:2;6761:6;6757:15;6744:46;6832:1;6827:2;6822;6814:6;6810:15;6806:24;6799:35;6853:6;6843:16;;;;;;;5727:1138;;;;;;;:::o;6870:260::-;6938:6;6946;6999:2;6987:9;6978:7;6974:23;6970:32;6967:52;;;7015:1;7012;7005:12;6967:52;7038:29;7057:9;7038:29;:::i;:::-;7028:39;;7086:38;7120:2;7109:9;7105:18;7086:38;:::i;:::-;7076:48;;6870:260;;;;;:::o;7135:411::-;7337:2;7319:21;;;7376:2;7356:18;;;7349:30;7415:34;7410:2;7395:18;;7388:62;-1:-1:-1;;;7481:2:1;7466:18;;7459:45;7536:3;7521:19;;7135:411::o;7551:380::-;7630:1;7626:12;;;;7673;;;7694:61;;7748:4;7740:6;7736:17;7726:27;;7694:61;7801:2;7793:6;7790:14;7770:18;7767:38;7764:161;;;7847:10;7842:3;7838:20;7835:1;7828:31;7882:4;7879:1;7872:15;7910:4;7907:1;7900:15;7764:161;;7551:380;;;:::o;8769:355::-;8971:2;8953:21;;;9010:2;8990:18;;;8983:30;9049:33;9044:2;9029:18;;9022:61;9115:2;9100:18;;8769:355::o;9129:400::-;9331:2;9313:21;;;9370:2;9350:18;;;9343:30;9409:34;9404:2;9389:18;;9382:62;-1:-1:-1;;;9475:2:1;9460:18;;9453:34;9519:3;9504:19;;9129:400::o;10343:410::-;10545:2;10527:21;;;10584:2;10564:18;;;10557:30;10623:34;10618:2;10603:18;;10596:62;-1:-1:-1;;;10689:2:1;10674:18;;10667:44;10743:3;10728:19;;10343:410::o;10758:390::-;10917:2;10906:9;10899:21;10956:6;10951:2;10940:9;10936:18;10929:34;11013:6;11005;11000:2;10989:9;10985:18;10972:48;11069:1;11040:22;;;11064:2;11036:31;;;11029:42;;;;11132:2;11111:15;;;-1:-1:-1;;11107:29:1;11092:45;11088:54;;10758:390;-1:-1:-1;10758:390:1:o;12126:482::-;12386:34;12381:3;12374:47;-1:-1:-1;;;12446:2:1;12441:3;12437:12;12430:26;12356:3;12485:6;12479:13;12501:60;12554:6;12549:2;12544:3;12540:12;12535:2;12527:6;12523:15;12501:60;:::i;:::-;12581:16;;;;12599:2;12577:25;;12126:482;-1:-1:-1;;12126:482:1:o;12613:399::-;12815:2;12797:21;;;12854:2;12834:18;;;12827:30;12893:34;12888:2;12873:18;;12866:62;-1:-1:-1;;;12959:2:1;12944:18;;12937:33;13002:3;12987:19;;12613:399::o;13017:400::-;13219:2;13201:21;;;13258:2;13238:18;;;13231:30;13297:34;13292:2;13277:18;;13270:62;-1:-1:-1;;;13363:2:1;13348:18;;13341:34;13407:3;13392:19;;13017:400::o;13422:127::-;13483:10;13478:3;13474:20;13471:1;13464:31;13514:4;13511:1;13504:15;13538:4;13535:1;13528:15;13554:128;13594:3;13625:1;13621:6;13618:1;13615:13;13612:39;;;13631:18;;:::i;:::-;-1:-1:-1;13667:9:1;;13554:128::o;13687:399::-;13889:2;13871:21;;;13928:2;13908:18;;;13901:30;13967:34;13962:2;13947:18;;13940:62;-1:-1:-1;;;14033:2:1;14018:18;;14011:33;14076:3;14061:19;;13687:399::o;14091:135::-;14130:3;-1:-1:-1;;14151:17:1;;14148:43;;;14171:18;;:::i;:::-;-1:-1:-1;14218:1:1;14207:13;;14091:135::o;16180:168::-;16220:7;16286:1;16282;16278:6;16274:14;16271:1;16268:21;16263:1;16256:9;16249:17;16245:45;16242:71;;;16293:18;;:::i;:::-;-1:-1:-1;16333:9:1;;16180:168::o;17981:125::-;18021:4;18049:1;18046;18043:8;18040:34;;;18054:18;;:::i;:::-;-1:-1:-1;18091:9:1;;17981:125::o;18826:414::-;19028:2;19010:21;;;19067:2;19047:18;;;19040:30;19106:34;19101:2;19086:18;;19079:62;-1:-1:-1;;;19172:2:1;19157:18;;19150:48;19230:3;19215:19;;18826:414::o;19245:470::-;19424:3;19462:6;19456:13;19478:53;19524:6;19519:3;19512:4;19504:6;19500:17;19478:53;:::i;:::-;19594:13;;19553:16;;;;19616:57;19594:13;19553:16;19650:4;19638:17;;19616:57;:::i;:::-;19689:20;;19245:470;-1:-1:-1;;;;19245:470:1:o;19720:127::-;19781:10;19776:3;19772:20;19769:1;19762:31;19812:4;19809:1;19802:15;19836:4;19833:1;19826:15;19852:489;-1:-1:-1;;;;;20121:15:1;;;20103:34;;20173:15;;20168:2;20153:18;;20146:43;20220:2;20205:18;;20198:34;;;20268:3;20263:2;20248:18;;20241:31;;;20046:4;;20289:46;;20315:19;;20307:6;20289:46;:::i;:::-;20281:54;19852:489;-1:-1:-1;;;;;;19852:489:1:o;20346:249::-;20415:6;20468:2;20456:9;20447:7;20443:23;20439:32;20436:52;;;20484:1;20481;20474:12;20436:52;20516:9;20510:16;20535:30;20559:5;20535:30;:::i;20600:127::-;20661:10;20656:3;20652:20;20649:1;20642:31;20692:4;20689:1;20682:15;20716:4;20713:1;20706:15;20732:120;20772:1;20798;20788:35;;20803:18;;:::i;:::-;-1:-1:-1;20837:9:1;;20732:120::o;20857:112::-;20889:1;20915;20905:35;;20920:18;;:::i;:::-;-1:-1:-1;20954:9:1;;20857:112::o

Swarm Source

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