ETH Price: $3,373.47 (+0.70%)
Gas: 9 Gwei

Token

COVID Princesses (COVP)
 

Overview

Max Total Supply

3,234 COVP

Holders

284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
13 COVP
0x24a89c810784072b0683aefd2df863dcf6e4f7df
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:
COVIDPrincessesNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/

/*
  ___  _____  _  _  ____  ____     ____  ____  ____  _  _  ___  ____  ___  ___  ____  ___    _  _  ____  ____ 
 / __)(  _  )( \/ )(_  _)(  _ \   (  _ \(  _ \(_  _)( \( )/ __)( ___)/ __)/ __)( ___)/ __)  ( \( )( ___)(_  _)
( (__  )(_)(  \  /  _)(_  )(_) )   )___/ )   / _)(_  )  (( (__  )__) \__ \\__ \ )__) \__ \   )  (  )__)   )(  
 \___)(_____)  \/  (____)(____/   (__)  (_)\_)(____)(_)\_)\___)(____)(___/(___/(____)(___/  (_)\_)(__)   (__) 

*/

// File: openzeppelin-solidity/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-solidity/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: openzeppelin-solidity/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-solidity/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

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

// File: contracts/contractfree.sol


pragma solidity 0.8.7;

/*
  ___  _____  _  _  ____  ____     ____  ____  ____  _  _  ___  ____  ___  ___  ____  ___    _  _  ____  ____ 
 / __)(  _  )( \/ )(_  _)(  _ \   (  _ \(  _ \(_  _)( \( )/ __)( ___)/ __)/ __)( ___)/ __)  ( \( )( ___)(_  _)
( (__  )(_)(  \  /  _)(_  )(_) )   )___/ )   / _)(_  )  (( (__  )__) \__ \\__ \ )__) \__ \   )  (  )__)   )(  
 \___)(_____)  \/  (____)(____/   (__)  (_)\_)(____)(_)\_)\___)(____)(___/(___/(____)(___/  (_)\_)(__)   (__) 

*/




contract COVIDPrincessesNFT is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private _supply;

    string private baseURI; 
    string private baseExtension = ".json";

    string private _contractURI; 

    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public reservedAmount = 100;
    uint256 public price = 0.0 ether;
    uint256 public maxMintAmountPerTx = 10;

    bool public paused = true;


    constructor() ERC721("COVID Princesses", "COVP") {
        setContractURI("ipfs://QmXByXsf23BwSxh7cK8yKoEyVqchYe8LvbUGa1GZitkpGP/QmXiKFJjUw99LkMuecP1ZtYPuNsoB9McpgU5UxLGRM4stW");
        setBaseURI("ipfs://QmcekHX9LkuQciBJNceXXm6KtMTdmV74V6bAt6KRvxaNQs/");// slash at the end needed!
    }    

    modifier notPaused() {
        require(!paused, "Contract is paused!");
        _;
    }
    modifier mintAmountPossible(uint256 _amount) {
        require(_amount > 0 && _amount <= maxMintAmountPerTx, "Invalid mint amount!");
        require(_supply.current() + _amount <= MAX_SUPPLY - reservedAmount, "No tokens left!");
        _;
    }
    modifier mintPricePossible(uint256 _amount) {
        require(msg.value >= price * _amount, "Not enough ETH sent!");
        _;
    }
    modifier mintReservedPossible(uint256 _amount) {
        require(_amount > 0, "Invalid mint amount!");
        require(_amount <= reservedAmount, "Reserve exceeded!");
        _;
    }


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

    function mint(uint256 _amount) public payable notPaused mintAmountPossible(_amount) mintPricePossible(_amount) {       
        _mintLoop(msg.sender, _amount);
    }

    function mintReserved(address _receiver, uint256 _amount) public onlyOwner mintReservedPossible(_amount){
        require(_receiver != address(0), "Wrong receiver address");

        _mintLoop(_receiver, _amount);
        reservedAmount = reservedAmount - _amount;
    }

    function mintReservedMultiple(address[] calldata _receivers, uint256 _amount) public onlyOwner{
        require(_receivers.length > 0, "Wrong receiver length");
        require(_receivers.length * _amount <= maxMintAmountPerTx && _receivers.length * _amount <= reservedAmount, "Invalid mint amount!");

        for(uint256 i = 0; i < _receivers.length; i++){
            mintReserved(_receivers[i], _amount);
        }
    }

    receive() external payable{
    }
    

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokenIds = new uint256[](tokenCount);
        uint256 i = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < tokenCount && i <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(i);

            if (currentTokenOwner == _owner) {
                tokenIds[ownedTokenIndex] = i;

                ownedTokenIndex++;
            }

            i++;
        }

        return tokenIds;
    }

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

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

    

    //Getters
    function totalSupply() public view returns (uint256) {
        return _supply.current();
    }

    function remainingSupply() public view returns (uint256) {
        return MAX_SUPPLY - _supply.current();
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

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

    function getBalance() external view returns (uint256) {
        return address(this).balance;
    }

    

    //Setters
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        price = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    } 

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

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

    function setContractURI(string memory _uri) public onlyOwner {
        _contractURI = _uri;
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }    
}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_receivers","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReservedMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedAmount","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":"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":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000241565b506064600b556000600c55600a600d55600e805460ff191660011790553480156200005257600080fd5b50604080518082018252601081526f434f564944205072696e63657373657360801b6020808301918252835180850190945260048452630434f56560e41b908401528151919291620000a79160009162000241565b508051620000bd90600190602084019062000241565b505050620000da620000d46200012860201b60201c565b6200012c565b620000fe6040518060a00160405280606481526020016200261d606491396200017e565b62000122604051806060016040528060368152602001620025e760369139620001e6565b62000324565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001cd5760405162461bcd60e51b81526020600482018190526024820152600080516020620025c783398151915260448201526064015b60405180910390fd5b8051620001e290600a90602084019062000241565b5050565b6006546001600160a01b03163314620002315760405162461bcd60e51b81526020600482018190526024820152600080516020620025c78339815191526044820152606401620001c4565b8051620001e29060089060208401905b8280546200024f90620002e7565b90600052602060002090601f016020900481019282620002735760008555620002be565b82601f106200028e57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002be578251825591602001919060010190620002a1565b50620002cc929150620002d0565b5090565b5b80821115620002cc5760008155600101620002d1565b600181811c90821680620002fc57607f821691505b602082108114156200031e57634e487b7160e01b600052602260045260246000fd5b50919050565b61229380620003346000396000f3fe6080604052600436106102135760003560e01c80637de55fe111610118578063b071401b116100a0578063da3ef23f1161006f578063da3ef23f146105d0578063e8a3d485146105f0578063e985e9c514610605578063f2fde38b1461064e578063f92c45b71461066e57600080fd5b8063b071401b1461055b578063b88d4fde1461057b578063c87b56dd1461059b578063da0239a6146105bb57600080fd5b806395d89b41116100e757806395d89b41146104dd578063a035b1fe146104f2578063a0712d6814610508578063a22cb4651461051b578063a3a2b1861461053b57600080fd5b80637de55fe1146104695780638da5cb5b14610489578063938e3d7b146104a757806394354fd0146104c757600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103da5780635c975abb146103fa5780636352211e1461041457806370a0823114610434578063715018a61461045457600080fd5b80633ccfd60b1461035857806342842e0e1461036d578063438b63001461038d57806344a0d68a146103ba57600080fd5b806312065fe0116101e257806312065fe0146102d057806316c38b3c146102ed57806318160ddd1461030d57806323b872dd1461032257806332cb6b0c1461034257600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd1565b610684565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106d6565b60405161024b9190611fde565b34801561028257600080fd5b50610296610291366004611e54565b610768565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611d11565b610802565b005b3480156102dc57600080fd5b50475b60405190815260200161024b565b3480156102f957600080fd5b506102ce610308366004611db6565b610918565b34801561031957600080fd5b506102df610955565b34801561032e57600080fd5b506102ce61033d366004611c2f565b610965565b34801561034e57600080fd5b506102df610d0581565b34801561036457600080fd5b506102ce610996565b34801561037957600080fd5b506102ce610388366004611c2f565b6109fc565b34801561039957600080fd5b506103ad6103a8366004611be1565b610a17565b60405161024b9190611f9a565b3480156103c657600080fd5b506102ce6103d5366004611e54565b610af8565b3480156103e657600080fd5b506102ce6103f5366004611e0b565b610b27565b34801561040657600080fd5b50600e5461023f9060ff1681565b34801561042057600080fd5b5061029661042f366004611e54565b610b68565b34801561044057600080fd5b506102df61044f366004611be1565b610bdf565b34801561046057600080fd5b506102ce610c66565b34801561047557600080fd5b506102ce610484366004611d11565b610c9c565b34801561049557600080fd5b506006546001600160a01b0316610296565b3480156104b357600080fd5b506102ce6104c2366004611e0b565b610d9c565b3480156104d357600080fd5b506102df600d5481565b3480156104e957600080fd5b50610269610dd9565b3480156104fe57600080fd5b506102df600c5481565b6102ce610516366004611e54565b610de8565b34801561052757600080fd5b506102ce610536366004611ce7565b610f22565b34801561054757600080fd5b506102ce610556366004611d3b565b610f2d565b34801561056757600080fd5b506102ce610576366004611e54565b611031565b34801561058757600080fd5b506102ce610596366004611c6b565b611060565b3480156105a757600080fd5b506102696105b6366004611e54565b611092565b3480156105c757600080fd5b506102df611170565b3480156105dc57600080fd5b506102ce6105eb366004611e0b565b611187565b3480156105fc57600080fd5b506102696111c4565b34801561061157600080fd5b5061023f610620366004611bfc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065a57600080fd5b506102ce610669366004611be1565b6111d3565b34801561067a57600080fd5b506102df600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106b557506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e590612185565b80601f016020809104026020016040519081016040528092919081815260200182805461071190612185565b801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080d82610b68565b9050806001600160a01b0316836001600160a01b0316141561087b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107dd565b336001600160a01b038216148061089757506108978133610620565b6109095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107dd565b610913838361126b565b505050565b6006546001600160a01b031633146109425760405162461bcd60e51b81526004016107dd90612071565b600e805460ff1916911515919091179055565b600061096060075490565b905090565b61096f33826112d9565b61098b5760405162461bcd60e51b81526004016107dd906120a6565b6109138383836113d0565b6006546001600160a01b031633146109c05760405162461bcd60e51b81526004016107dd90612071565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109f9573d6000803e3d6000fd5b50565b61091383838360405180602001604052806000815250611060565b60606000610a2483610bdf565b905060008167ffffffffffffffff811115610a4157610a41612231565b604051908082528060200260200182016040528015610a6a578160200160208202803683370190505b509050600160005b8381108015610a835750610d058211155b15610aee576000610a9383610b68565b9050866001600160a01b0316816001600160a01b03161415610adb5782848381518110610ac257610ac261221b565b602090810291909101015281610ad7816121c0565b9250505b82610ae5816121c0565b93505050610a72565b5090949350505050565b6006546001600160a01b03163314610b225760405162461bcd60e51b81526004016107dd90612071565b600c55565b6006546001600160a01b03163314610b515760405162461bcd60e51b81526004016107dd90612071565b8051610b64906008906020840190611aa6565b5050565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107dd565b60006001600160a01b038216610c4a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107dd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c905760405162461bcd60e51b81526004016107dd90612071565b610c9a600061156c565b565b6006546001600160a01b03163314610cc65760405162461bcd60e51b81526004016107dd90612071565b8060008111610ce75760405162461bcd60e51b81526004016107dd90612043565b600b54811115610d2d5760405162461bcd60e51b8152602060048201526011602482015270526573657276652065786365656465642160781b60448201526064016107dd565b6001600160a01b038316610d7c5760405162461bcd60e51b815260206004820152601660248201527557726f6e67207265636569766572206164647265737360501b60448201526064016107dd565b610d8683836115be565b81600b54610d949190612142565b600b55505050565b6006546001600160a01b03163314610dc65760405162461bcd60e51b81526004016107dd90612071565b8051610b6490600a906020840190611aa6565b6060600180546106e590612185565b600e5460ff1615610e315760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016107dd565b80600081118015610e445750600d548111155b610e605760405162461bcd60e51b81526004016107dd90612043565b600b54610e6f90610d05612142565b81610e7960075490565b610e8391906120f7565b1115610ec35760405162461bcd60e51b815260206004820152600f60248201526e4e6f20746f6b656e73206c6566742160881b60448201526064016107dd565b8180600c54610ed29190612123565b341015610f185760405162461bcd60e51b81526020600482015260146024820152734e6f7420656e6f756768204554482073656e742160601b60448201526064016107dd565b61091333846115be565b610b643383836115fb565b6006546001600160a01b03163314610f575760405162461bcd60e51b81526004016107dd90612071565b81610f9c5760405162461bcd60e51b81526020600482015260156024820152740aee4dedcce40e4cac6cad2eccae440d8cadccee8d605b1b60448201526064016107dd565b600d54610fa98284612123565b11158015610fc25750600b54610fbf8284612123565b11155b610fde5760405162461bcd60e51b81526004016107dd90612043565b60005b8281101561102b57611019848483818110610ffe57610ffe61221b565b90506020020160208101906110139190611be1565b83610c9c565b80611023816121c0565b915050610fe1565b50505050565b6006546001600160a01b0316331461105b5760405162461bcd60e51b81526004016107dd90612071565b600d55565b61106a33836112d9565b6110865760405162461bcd60e51b81526004016107dd906120a6565b61102b848484846116ca565b6000818152600260205260409020546060906001600160a01b03166111115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107dd565b600061111b6116fd565b9050600081511161113b5760405180602001604052806000815250611169565b806111458461170c565b600960405160200161115993929190611e99565b6040516020818303038152906040525b9392505050565b600061117b60075490565b61096090610d05612142565b6006546001600160a01b031633146111b15760405162461bcd60e51b81526004016107dd90612071565b8051610b64906009906020840190611aa6565b6060600a80546106e590612185565b6006546001600160a01b031633146111fd5760405162461bcd60e51b81526004016107dd90612071565b6001600160a01b0381166112625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b6109f98161156c565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112a082610b68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107dd565b600061135d83610b68565b9050806001600160a01b0316846001600160a01b031614806113a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806113c85750836001600160a01b03166113bd84610768565b6001600160a01b0316145b949350505050565b826001600160a01b03166113e382610b68565b6001600160a01b0316146114475760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107dd565b6001600160a01b0382166114a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6114b460008261126b565b6001600160a01b03831660009081526003602052604081208054600192906114dd908490612142565b90915550506001600160a01b038216600090815260036020526040812080546001929061150b9084906120f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610913576115d7600780546001019055565b6115e9836115e460075490565b61180a565b806115f3816121c0565b9150506115c1565b816001600160a01b0316836001600160a01b0316141561165d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107dd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116d58484846113d0565b6116e184848484611824565b61102b5760405162461bcd60e51b81526004016107dd90611ff1565b6060600880546106e590612185565b6060816117305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175a5780611744816121c0565b91506117539050600a8361210f565b9150611734565b60008167ffffffffffffffff81111561177557611775612231565b6040519080825280601f01601f19166020018201604052801561179f576020820181803683370190505b5090505b84156113c8576117b4600183612142565b91506117c1600a866121db565b6117cc9060306120f7565b60f81b8183815181106117e1576117e161221b565b60200101906001600160f81b031916908160001a905350611803600a8661210f565b94506117a3565b610b64828260405180602001604052806000815250611931565b60006001600160a01b0384163b1561192657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611868903390899088908890600401611f5d565b602060405180830381600087803b15801561188257600080fd5b505af19250505080156118b2575060408051601f3d908101601f191682019092526118af91810190611dee565b60015b61190c573d8080156118e0576040519150601f19603f3d011682016040523d82523d6000602084013e6118e5565b606091505b5080516119045760405162461bcd60e51b81526004016107dd90611ff1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c8565b506001949350505050565b61193b8383611964565b6119486000848484611824565b6109135760405162461bcd60e51b81526004016107dd90611ff1565b6001600160a01b0382166119ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107dd565b6000818152600260205260409020546001600160a01b031615611a1f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107dd565b6001600160a01b0382166000908152600360205260408120805460019290611a489084906120f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ab290612185565b90600052602060002090601f016020900481019282611ad45760008555611b1a565b82601f10611aed57805160ff1916838001178555611b1a565b82800160010185558215611b1a579182015b82811115611b1a578251825591602001919060010190611aff565b50611b26929150611b2a565b5090565b5b80821115611b265760008155600101611b2b565b600067ffffffffffffffff80841115611b5a57611b5a612231565b604051601f8501601f19908116603f01168101908282118183101715611b8257611b82612231565b81604052809350858152868686011115611b9b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bcc57600080fd5b919050565b80358015158114611bcc57600080fd5b600060208284031215611bf357600080fd5b61116982611bb5565b60008060408385031215611c0f57600080fd5b611c1883611bb5565b9150611c2660208401611bb5565b90509250929050565b600080600060608486031215611c4457600080fd5b611c4d84611bb5565b9250611c5b60208501611bb5565b9150604084013590509250925092565b60008060008060808587031215611c8157600080fd5b611c8a85611bb5565b9350611c9860208601611bb5565b925060408501359150606085013567ffffffffffffffff811115611cbb57600080fd5b8501601f81018713611ccc57600080fd5b611cdb87823560208401611b3f565b91505092959194509250565b60008060408385031215611cfa57600080fd5b611d0383611bb5565b9150611c2660208401611bd1565b60008060408385031215611d2457600080fd5b611d2d83611bb5565b946020939093013593505050565b600080600060408486031215611d5057600080fd5b833567ffffffffffffffff80821115611d6857600080fd5b818601915086601f830112611d7c57600080fd5b813581811115611d8b57600080fd5b8760208260051b8501011115611da057600080fd5b6020928301989097509590910135949350505050565b600060208284031215611dc857600080fd5b61116982611bd1565b600060208284031215611de357600080fd5b813561116981612247565b600060208284031215611e0057600080fd5b815161116981612247565b600060208284031215611e1d57600080fd5b813567ffffffffffffffff811115611e3457600080fd5b8201601f81018413611e4557600080fd5b6113c884823560208401611b3f565b600060208284031215611e6657600080fd5b5035919050565b60008151808452611e85816020860160208601612159565b601f01601f19169290920160200192915050565b600084516020611eac8285838a01612159565b855191840191611ebf8184848a01612159565b8554920191600090600181811c9080831680611edc57607f831692505b858310811415611efa57634e487b7160e01b85526022600452602485fd5b808015611f0e5760018114611f1f57611f4c565b60ff19851688528388019550611f4c565b60008b81526020902060005b85811015611f445781548a820152908401908801611f2b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9090830184611e6d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fd257835183529284019291840191600101611fb6565b50909695505050505050565b6020815260006111696020830184611e6d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561210a5761210a6121ef565b500190565b60008261211e5761211e612205565b500490565b600081600019048311821515161561213d5761213d6121ef565b500290565b600082821015612154576121546121ef565b500390565b60005b8381101561217457818101518382015260200161215c565b8381111561102b5750506000910152565b600181811c9082168061219957607f821691505b602082108114156121ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121d4576121d46121ef565b5060010190565b6000826121ea576121ea612205565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109f957600080fdfea264697066735822122022c8634838f9aeaf33e7a6291ff35f166f2aca231acc99f456dd7b1a814f2c6564736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572697066733a2f2f516d63656b4858394c6b75516369424a4e636558586d364b744d54646d5637345636624174364b527678614e51732f697066733a2f2f516d5842795873663233427753786837634b38794b6f4579567163685965384c766255476131475a69746b7047502f516d58694b464a6a557739394c6b4d75656350315a745950754e736f42394d637067553555784c47524d34737457

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637de55fe111610118578063b071401b116100a0578063da3ef23f1161006f578063da3ef23f146105d0578063e8a3d485146105f0578063e985e9c514610605578063f2fde38b1461064e578063f92c45b71461066e57600080fd5b8063b071401b1461055b578063b88d4fde1461057b578063c87b56dd1461059b578063da0239a6146105bb57600080fd5b806395d89b41116100e757806395d89b41146104dd578063a035b1fe146104f2578063a0712d6814610508578063a22cb4651461051b578063a3a2b1861461053b57600080fd5b80637de55fe1146104695780638da5cb5b14610489578063938e3d7b146104a757806394354fd0146104c757600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103da5780635c975abb146103fa5780636352211e1461041457806370a0823114610434578063715018a61461045457600080fd5b80633ccfd60b1461035857806342842e0e1461036d578063438b63001461038d57806344a0d68a146103ba57600080fd5b806312065fe0116101e257806312065fe0146102d057806316c38b3c146102ed57806318160ddd1461030d57806323b872dd1461032257806332cb6b0c1461034257600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd1565b610684565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106d6565b60405161024b9190611fde565b34801561028257600080fd5b50610296610291366004611e54565b610768565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611d11565b610802565b005b3480156102dc57600080fd5b50475b60405190815260200161024b565b3480156102f957600080fd5b506102ce610308366004611db6565b610918565b34801561031957600080fd5b506102df610955565b34801561032e57600080fd5b506102ce61033d366004611c2f565b610965565b34801561034e57600080fd5b506102df610d0581565b34801561036457600080fd5b506102ce610996565b34801561037957600080fd5b506102ce610388366004611c2f565b6109fc565b34801561039957600080fd5b506103ad6103a8366004611be1565b610a17565b60405161024b9190611f9a565b3480156103c657600080fd5b506102ce6103d5366004611e54565b610af8565b3480156103e657600080fd5b506102ce6103f5366004611e0b565b610b27565b34801561040657600080fd5b50600e5461023f9060ff1681565b34801561042057600080fd5b5061029661042f366004611e54565b610b68565b34801561044057600080fd5b506102df61044f366004611be1565b610bdf565b34801561046057600080fd5b506102ce610c66565b34801561047557600080fd5b506102ce610484366004611d11565b610c9c565b34801561049557600080fd5b506006546001600160a01b0316610296565b3480156104b357600080fd5b506102ce6104c2366004611e0b565b610d9c565b3480156104d357600080fd5b506102df600d5481565b3480156104e957600080fd5b50610269610dd9565b3480156104fe57600080fd5b506102df600c5481565b6102ce610516366004611e54565b610de8565b34801561052757600080fd5b506102ce610536366004611ce7565b610f22565b34801561054757600080fd5b506102ce610556366004611d3b565b610f2d565b34801561056757600080fd5b506102ce610576366004611e54565b611031565b34801561058757600080fd5b506102ce610596366004611c6b565b611060565b3480156105a757600080fd5b506102696105b6366004611e54565b611092565b3480156105c757600080fd5b506102df611170565b3480156105dc57600080fd5b506102ce6105eb366004611e0b565b611187565b3480156105fc57600080fd5b506102696111c4565b34801561061157600080fd5b5061023f610620366004611bfc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065a57600080fd5b506102ce610669366004611be1565b6111d3565b34801561067a57600080fd5b506102df600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106b557506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e590612185565b80601f016020809104026020016040519081016040528092919081815260200182805461071190612185565b801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080d82610b68565b9050806001600160a01b0316836001600160a01b0316141561087b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107dd565b336001600160a01b038216148061089757506108978133610620565b6109095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107dd565b610913838361126b565b505050565b6006546001600160a01b031633146109425760405162461bcd60e51b81526004016107dd90612071565b600e805460ff1916911515919091179055565b600061096060075490565b905090565b61096f33826112d9565b61098b5760405162461bcd60e51b81526004016107dd906120a6565b6109138383836113d0565b6006546001600160a01b031633146109c05760405162461bcd60e51b81526004016107dd90612071565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109f9573d6000803e3d6000fd5b50565b61091383838360405180602001604052806000815250611060565b60606000610a2483610bdf565b905060008167ffffffffffffffff811115610a4157610a41612231565b604051908082528060200260200182016040528015610a6a578160200160208202803683370190505b509050600160005b8381108015610a835750610d058211155b15610aee576000610a9383610b68565b9050866001600160a01b0316816001600160a01b03161415610adb5782848381518110610ac257610ac261221b565b602090810291909101015281610ad7816121c0565b9250505b82610ae5816121c0565b93505050610a72565b5090949350505050565b6006546001600160a01b03163314610b225760405162461bcd60e51b81526004016107dd90612071565b600c55565b6006546001600160a01b03163314610b515760405162461bcd60e51b81526004016107dd90612071565b8051610b64906008906020840190611aa6565b5050565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107dd565b60006001600160a01b038216610c4a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107dd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c905760405162461bcd60e51b81526004016107dd90612071565b610c9a600061156c565b565b6006546001600160a01b03163314610cc65760405162461bcd60e51b81526004016107dd90612071565b8060008111610ce75760405162461bcd60e51b81526004016107dd90612043565b600b54811115610d2d5760405162461bcd60e51b8152602060048201526011602482015270526573657276652065786365656465642160781b60448201526064016107dd565b6001600160a01b038316610d7c5760405162461bcd60e51b815260206004820152601660248201527557726f6e67207265636569766572206164647265737360501b60448201526064016107dd565b610d8683836115be565b81600b54610d949190612142565b600b55505050565b6006546001600160a01b03163314610dc65760405162461bcd60e51b81526004016107dd90612071565b8051610b6490600a906020840190611aa6565b6060600180546106e590612185565b600e5460ff1615610e315760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016107dd565b80600081118015610e445750600d548111155b610e605760405162461bcd60e51b81526004016107dd90612043565b600b54610e6f90610d05612142565b81610e7960075490565b610e8391906120f7565b1115610ec35760405162461bcd60e51b815260206004820152600f60248201526e4e6f20746f6b656e73206c6566742160881b60448201526064016107dd565b8180600c54610ed29190612123565b341015610f185760405162461bcd60e51b81526020600482015260146024820152734e6f7420656e6f756768204554482073656e742160601b60448201526064016107dd565b61091333846115be565b610b643383836115fb565b6006546001600160a01b03163314610f575760405162461bcd60e51b81526004016107dd90612071565b81610f9c5760405162461bcd60e51b81526020600482015260156024820152740aee4dedcce40e4cac6cad2eccae440d8cadccee8d605b1b60448201526064016107dd565b600d54610fa98284612123565b11158015610fc25750600b54610fbf8284612123565b11155b610fde5760405162461bcd60e51b81526004016107dd90612043565b60005b8281101561102b57611019848483818110610ffe57610ffe61221b565b90506020020160208101906110139190611be1565b83610c9c565b80611023816121c0565b915050610fe1565b50505050565b6006546001600160a01b0316331461105b5760405162461bcd60e51b81526004016107dd90612071565b600d55565b61106a33836112d9565b6110865760405162461bcd60e51b81526004016107dd906120a6565b61102b848484846116ca565b6000818152600260205260409020546060906001600160a01b03166111115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107dd565b600061111b6116fd565b9050600081511161113b5760405180602001604052806000815250611169565b806111458461170c565b600960405160200161115993929190611e99565b6040516020818303038152906040525b9392505050565b600061117b60075490565b61096090610d05612142565b6006546001600160a01b031633146111b15760405162461bcd60e51b81526004016107dd90612071565b8051610b64906009906020840190611aa6565b6060600a80546106e590612185565b6006546001600160a01b031633146111fd5760405162461bcd60e51b81526004016107dd90612071565b6001600160a01b0381166112625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b6109f98161156c565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112a082610b68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107dd565b600061135d83610b68565b9050806001600160a01b0316846001600160a01b031614806113a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806113c85750836001600160a01b03166113bd84610768565b6001600160a01b0316145b949350505050565b826001600160a01b03166113e382610b68565b6001600160a01b0316146114475760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107dd565b6001600160a01b0382166114a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6114b460008261126b565b6001600160a01b03831660009081526003602052604081208054600192906114dd908490612142565b90915550506001600160a01b038216600090815260036020526040812080546001929061150b9084906120f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610913576115d7600780546001019055565b6115e9836115e460075490565b61180a565b806115f3816121c0565b9150506115c1565b816001600160a01b0316836001600160a01b0316141561165d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107dd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116d58484846113d0565b6116e184848484611824565b61102b5760405162461bcd60e51b81526004016107dd90611ff1565b6060600880546106e590612185565b6060816117305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175a5780611744816121c0565b91506117539050600a8361210f565b9150611734565b60008167ffffffffffffffff81111561177557611775612231565b6040519080825280601f01601f19166020018201604052801561179f576020820181803683370190505b5090505b84156113c8576117b4600183612142565b91506117c1600a866121db565b6117cc9060306120f7565b60f81b8183815181106117e1576117e161221b565b60200101906001600160f81b031916908160001a905350611803600a8661210f565b94506117a3565b610b64828260405180602001604052806000815250611931565b60006001600160a01b0384163b1561192657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611868903390899088908890600401611f5d565b602060405180830381600087803b15801561188257600080fd5b505af19250505080156118b2575060408051601f3d908101601f191682019092526118af91810190611dee565b60015b61190c573d8080156118e0576040519150601f19603f3d011682016040523d82523d6000602084013e6118e5565b606091505b5080516119045760405162461bcd60e51b81526004016107dd90611ff1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c8565b506001949350505050565b61193b8383611964565b6119486000848484611824565b6109135760405162461bcd60e51b81526004016107dd90611ff1565b6001600160a01b0382166119ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107dd565b6000818152600260205260409020546001600160a01b031615611a1f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107dd565b6001600160a01b0382166000908152600360205260408120805460019290611a489084906120f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ab290612185565b90600052602060002090601f016020900481019282611ad45760008555611b1a565b82601f10611aed57805160ff1916838001178555611b1a565b82800160010185558215611b1a579182015b82811115611b1a578251825591602001919060010190611aff565b50611b26929150611b2a565b5090565b5b80821115611b265760008155600101611b2b565b600067ffffffffffffffff80841115611b5a57611b5a612231565b604051601f8501601f19908116603f01168101908282118183101715611b8257611b82612231565b81604052809350858152868686011115611b9b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bcc57600080fd5b919050565b80358015158114611bcc57600080fd5b600060208284031215611bf357600080fd5b61116982611bb5565b60008060408385031215611c0f57600080fd5b611c1883611bb5565b9150611c2660208401611bb5565b90509250929050565b600080600060608486031215611c4457600080fd5b611c4d84611bb5565b9250611c5b60208501611bb5565b9150604084013590509250925092565b60008060008060808587031215611c8157600080fd5b611c8a85611bb5565b9350611c9860208601611bb5565b925060408501359150606085013567ffffffffffffffff811115611cbb57600080fd5b8501601f81018713611ccc57600080fd5b611cdb87823560208401611b3f565b91505092959194509250565b60008060408385031215611cfa57600080fd5b611d0383611bb5565b9150611c2660208401611bd1565b60008060408385031215611d2457600080fd5b611d2d83611bb5565b946020939093013593505050565b600080600060408486031215611d5057600080fd5b833567ffffffffffffffff80821115611d6857600080fd5b818601915086601f830112611d7c57600080fd5b813581811115611d8b57600080fd5b8760208260051b8501011115611da057600080fd5b6020928301989097509590910135949350505050565b600060208284031215611dc857600080fd5b61116982611bd1565b600060208284031215611de357600080fd5b813561116981612247565b600060208284031215611e0057600080fd5b815161116981612247565b600060208284031215611e1d57600080fd5b813567ffffffffffffffff811115611e3457600080fd5b8201601f81018413611e4557600080fd5b6113c884823560208401611b3f565b600060208284031215611e6657600080fd5b5035919050565b60008151808452611e85816020860160208601612159565b601f01601f19169290920160200192915050565b600084516020611eac8285838a01612159565b855191840191611ebf8184848a01612159565b8554920191600090600181811c9080831680611edc57607f831692505b858310811415611efa57634e487b7160e01b85526022600452602485fd5b808015611f0e5760018114611f1f57611f4c565b60ff19851688528388019550611f4c565b60008b81526020902060005b85811015611f445781548a820152908401908801611f2b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9090830184611e6d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fd257835183529284019291840191600101611fb6565b50909695505050505050565b6020815260006111696020830184611e6d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561210a5761210a6121ef565b500190565b60008261211e5761211e612205565b500490565b600081600019048311821515161561213d5761213d6121ef565b500290565b600082821015612154576121546121ef565b500390565b60005b8381101561217457818101518382015260200161215c565b8381111561102b5750506000910152565b600181811c9082168061219957607f821691505b602082108114156121ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121d4576121d46121ef565b5060010190565b6000826121ea576121ea612205565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109f957600080fdfea264697066735822122022c8634838f9aeaf33e7a6291ff35f166f2aca231acc99f456dd7b1a814f2c6564736f6c63430008070033

Deployed Bytecode Sourcemap

39808:5208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26160:305;;;;;;;;;;-1:-1:-1;26160:305:0;;;;;:::i;:::-;;:::i;:::-;;;8291:14:1;;8284:22;8266:41;;8254:2;8239:18;26160:305:0;;;;;;;;27105:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28665:221::-;;;;;;;;;;-1:-1:-1;28665:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6952:32:1;;;6934:51;;6922:2;6907:18;28665:221:0;6788:203:1;28188:411:0;;;;;;;;;;-1:-1:-1;28188:411:0;;;;;:::i;:::-;;:::i;:::-;;44113:101;;;;;;;;;;-1:-1:-1;44185:21:0;44113:101;;;17503:25:1;;;17491:2;17476:18;44113:101:0;17357:177:1;44245:83:0;;;;;;;;;;-1:-1:-1;44245:83:0;;;;;:::i;:::-;;:::i;43667:96::-;;;;;;;;;;;;;:::i;29415:339::-;;;;;;;;;;-1:-1:-1;29415:339:0;;;;;:::i;:::-;;:::i;40093:41::-;;;;;;;;;;;;40130:4;40093:41;;44905:104;;;;;;;;;;;;;:::i;29825:185::-;;;;;;;;;;-1:-1:-1;29825:185:0;;;;;:::i;:::-;;:::i;42475:595::-;;;;;;;;;;-1:-1:-1;42475:595:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44336:81::-;;;;;;;;;;-1:-1:-1;44336:81:0;;;;;:::i;:::-;;:::i;44570:90::-;;;;;;;;;;-1:-1:-1;44570:90:0;;;;;:::i;:::-;;:::i;40269:25::-;;;;;;;;;;-1:-1:-1;40269:25:0;;;;;;;;26799:239;;;;;;;;;;-1:-1:-1;26799:239:0;;;;;:::i;:::-;;:::i;26529:208::-;;;;;;;;;;-1:-1:-1;26529:208:0;;;;;:::i;:::-;;:::i;6687:103::-;;;;;;;;;;;;;:::i;41705:275::-;;;;;;;;;;-1:-1:-1;41705:275:0;;;;;:::i;:::-;;:::i;6036:87::-;;;;;;;;;;-1:-1:-1;6109:6:0;;-1:-1:-1;;;;;6109:6:0;6036:87;;44798:99;;;;;;;;;;-1:-1:-1;44798:99:0;;;;;:::i;:::-;;:::i;40222:38::-;;;;;;;;;;;;;;;;27274:104;;;;;;;;;;;;;:::i;40183:32::-;;;;;;;;;;;;;;;;41530:167;;;;;;:::i;:::-;;:::i;28958:155::-;;;;;;;;;;-1:-1:-1;28958:155:0;;;;;:::i;:::-;;:::i;41988:431::-;;;;;;;;;;-1:-1:-1;41988:431:0;;;;;:::i;:::-;;:::i;44425:136::-;;;;;;;;;;-1:-1:-1;44425:136:0;;;;;:::i;:::-;;:::i;30081:328::-;;;;;;;;;;-1:-1:-1;30081:328:0;;;;;:::i;:::-;;:::i;43078:558::-;;;;;;;;;;-1:-1:-1;43078:558:0;;;;;:::i;:::-;;:::i;43771:113::-;;;;;;;;;;;;;:::i;44668:122::-;;;;;;;;;;-1:-1:-1;44668:122:0;;;;;:::i;:::-;;:::i;43892:97::-;;;;;;;;;;;;;:::i;29184:164::-;;;;;;;;;;-1:-1:-1;29184:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29305:25:0;;;29281:4;29305:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29184:164;6945:201;;;;;;;;;;-1:-1:-1;6945:201:0;;;;;:::i;:::-;;:::i;40141:35::-;;;;;;;;;;;;;;;;26160:305;26262:4;-1:-1:-1;;;;;;26299:40:0;;-1:-1:-1;;;26299:40:0;;:105;;-1:-1:-1;;;;;;;26356:48:0;;-1:-1:-1;;;26356:48:0;26299:105;:158;;;-1:-1:-1;;;;;;;;;;18984:40:0;;;26421:36;26279:178;26160:305;-1:-1:-1;;26160:305:0:o;27105:100::-;27159:13;27192:5;27185:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27105:100;:::o;28665:221::-;28741:7;32008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32008:16:0;28761:73;;;;-1:-1:-1;;;28761:73:0;;14856:2:1;28761:73:0;;;14838:21:1;14895:2;14875:18;;;14868:30;14934:34;14914:18;;;14907:62;-1:-1:-1;;;14985:18:1;;;14978:42;15037:19;;28761:73:0;;;;;;;;;-1:-1:-1;28854:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28854:24:0;;28665:221::o;28188:411::-;28269:13;28285:23;28300:7;28285:14;:23::i;:::-;28269:39;;28333:5;-1:-1:-1;;;;;28327:11:0;:2;-1:-1:-1;;;;;28327:11:0;;;28319:57;;;;-1:-1:-1;;;28319:57:0;;16046:2:1;28319:57:0;;;16028:21:1;16085:2;16065:18;;;16058:30;16124:34;16104:18;;;16097:62;-1:-1:-1;;;16175:18:1;;;16168:31;16216:19;;28319:57:0;15844:397:1;28319:57:0;4832:10;-1:-1:-1;;;;;28411:21:0;;;;:62;;-1:-1:-1;28436:37:0;28453:5;4832:10;29184:164;:::i;28436:37::-;28389:168;;;;-1:-1:-1;;;28389:168:0;;13249:2:1;28389:168:0;;;13231:21:1;13288:2;13268:18;;;13261:30;13327:34;13307:18;;;13300:62;13398:26;13378:18;;;13371:54;13442:19;;28389:168:0;13047:420:1;28389:168:0;28570:21;28579:2;28583:7;28570:8;:21::i;:::-;28258:341;28188:411;;:::o;44245:83::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;44305:6:::1;:15:::0;;-1:-1:-1;;44305:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44245:83::o;43667:96::-;43711:7;43738:17;:7;1432:14;;1340:114;43738:17;43731:24;;43667:96;:::o;29415:339::-;29610:41;4832:10;29643:7;29610:18;:41::i;:::-;29602:103;;;;-1:-1:-1;;;29602:103:0;;;;;;;:::i;:::-;29718:28;29728:4;29734:2;29738:7;29718:9;:28::i;44905:104::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;6109:6;;44953:48:::1;::::0;-1:-1:-1;;;;;6109:6:0;;;;44979:21:::1;44953:48:::0;::::1;;;::::0;::::1;::::0;;;44979:21;6109:6;44953:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44905:104::o:0;29825:185::-;29963:39;29980:4;29986:2;29990:7;29963:39;;;;;;;;;;;;:16;:39::i;42475:595::-;42535:16;42564:18;42585:17;42595:6;42585:9;:17::i;:::-;42564:38;;42615:25;42657:10;42643:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42643:25:0;-1:-1:-1;42615:53:0;-1:-1:-1;42691:1:0;42679:9;42743:292;42768:10;42750:15;:28;:47;;;;;40130:4;42782:1;:15;;42750:47;42743:292;;;42814:25;42842:10;42850:1;42842:7;:10::i;:::-;42814:38;;42894:6;-1:-1:-1;;;;;42873:27:0;:17;-1:-1:-1;;;;;42873:27:0;;42869:135;;;42949:1;42921:8;42930:15;42921:25;;;;;;;;:::i;:::-;;;;;;;;;;:29;42971:17;;;;:::i;:::-;;;;42869:135;43020:3;;;;:::i;:::-;;;;42799:236;42743:292;;;-1:-1:-1;43054:8:0;;42475:595;-1:-1:-1;;;;42475:595:0:o;44336:81::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;44396:5:::1;:13:::0;44336:81::o;44570:90::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;44638:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44570:90:::0;:::o;26799:239::-;26871:7;26907:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26907:16:0;26942:19;26934:73;;;;-1:-1:-1;;;26934:73:0;;14085:2:1;26934:73:0;;;14067:21:1;14124:2;14104:18;;;14097:30;14163:34;14143:18;;;14136:62;-1:-1:-1;;;14214:18:1;;;14207:39;14263:19;;26934:73:0;13883:405:1;26529:208:0;26601:7;-1:-1:-1;;;;;26629:19:0;;26621:74;;;;-1:-1:-1;;;26621:74:0;;13674:2:1;26621:74:0;;;13656:21:1;13713:2;13693:18;;;13686:30;13752:34;13732:18;;;13725:62;-1:-1:-1;;;13803:18:1;;;13796:40;13853:19;;26621:74:0;13472:406:1;26621:74:0;-1:-1:-1;;;;;;26713:16:0;;;;;:9;:16;;;;;;;26529:208::o;6687:103::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;6752:30:::1;6779:1;6752:18;:30::i;:::-;6687:103::o:0;41705:275::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;41801:7:::1;41180:1;41170:7;:11;41162:44;;;;-1:-1:-1::0;;;41162:44:0::1;;;;;;;:::i;:::-;41236:14;;41225:7;:25;;41217:55;;;::::0;-1:-1:-1;;;41217:55:0;;11033:2:1;41217:55:0::1;::::0;::::1;11015:21:1::0;11072:2;11052:18;;;11045:30;-1:-1:-1;;;11091:18:1;;;11084:47;11148:18;;41217:55:0::1;10831:341:1::0;41217:55:0::1;-1:-1:-1::0;;;;;41828:23:0;::::2;41820:58;;;::::0;-1:-1:-1;;;41820:58:0;;9976:2:1;41820:58:0::2;::::0;::::2;9958:21:1::0;10015:2;9995:18;;;9988:30;-1:-1:-1;;;10034:18:1;;;10027:52;10096:18;;41820:58:0::2;9774:346:1::0;41820:58:0::2;41891:29;41901:9;41912:7;41891:9;:29::i;:::-;41965:7;41948:14;;:24;;;;:::i;:::-;41931:14;:41:::0;-1:-1:-1;;;41705:275:0:o;44798:99::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;44870:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;27274:104::-:0;27330:13;27363:7;27356:14;;;;;:::i;41530:167::-;40650:6;;;;40649:7;40641:39;;;;-1:-1:-1;;;40641:39:0;;11729:2:1;40641:39:0;;;11711:21:1;11768:2;11748:18;;;11741:30;-1:-1:-1;;;11787:18:1;;;11780:49;11846:18;;40641:39:0;11527:343:1;40641:39:0;41605:7:::1;40780:1;40770:7;:11;:44;;;;;40796:18;;40785:7;:29;;40770:44;40762:77;;;;-1:-1:-1::0;;;40762:77:0::1;;;;;;;:::i;:::-;40902:14;::::0;40889:27:::1;::::0;40130:4:::1;40889:27;:::i;:::-;40878:7;40858:17;:7;1432:14:::0;;1340:114;40858:17:::1;:27;;;;:::i;:::-;:58;;40850:86;;;::::0;-1:-1:-1;;;40850:86:0;;17215:2:1;40850:86:0::1;::::0;::::1;17197:21:1::0;17254:2;17234:18;;;17227:30;-1:-1:-1;;;17273:18:1;;;17266:45;17328:18;;40850:86:0::1;17013:339:1::0;40850:86:0::1;41632:7:::2;41046;41038:5;;:15;;;;:::i;:::-;41025:9;:28;;41017:61;;;::::0;-1:-1:-1;;;41017:61:0;;16866:2:1;41017:61:0::2;::::0;::::2;16848:21:1::0;16905:2;16885:18;;;16878:30;-1:-1:-1;;;16924:18:1;;;16917:50;16984:18;;41017:61:0::2;16664:344:1::0;41017:61:0::2;41659:30:::3;41669:10;41681:7;41659:9;:30::i;28958:155::-:0;29053:52;4832:10;29086:8;29096;29053:18;:52::i;41988:431::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;42101:21;42093:55:::1;;;::::0;-1:-1:-1;;;42093:55:0;;11379:2:1;42093:55:0::1;::::0;::::1;11361:21:1::0;11418:2;11398:18;;;11391:30;-1:-1:-1;;;11437:18:1;;;11430:51;11498:18;;42093:55:0::1;11177:345:1::0;42093:55:0::1;42198:18;::::0;42167:27:::1;42187:7:::0;42167:10;:27:::1;:::i;:::-;:49;;:98;;;;-1:-1:-1::0;42251:14:0::1;::::0;42220:27:::1;42240:7:::0;42220:10;:27:::1;:::i;:::-;:45;;42167:98;42159:131;;;;-1:-1:-1::0;;;42159:131:0::1;;;;;;;:::i;:::-;42307:9;42303:109;42322:21:::0;;::::1;42303:109;;;42364:36;42377:10;;42388:1;42377:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42392:7;42364:12;:36::i;:::-;42345:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42303:109;;;;41988:431:::0;;;:::o;44425:136::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;44513:18:::1;:40:::0;44425:136::o;30081:328::-;30256:41;4832:10;30289:7;30256:18;:41::i;:::-;30248:103;;;;-1:-1:-1;;;30248:103:0;;;;;;;:::i;:::-;30362:39;30376:4;30382:2;30386:7;30395:5;30362:13;:39::i;43078:558::-;31984:4;32008:16;;;:7;:16;;;;;;43152:13;;-1:-1:-1;;;;;32008:16:0;43178:77;;;;-1:-1:-1;;;43178:77:0;;15630:2:1;43178:77:0;;;15612:21:1;15669:2;15649:18;;;15642:30;15708:34;15688:18;;;15681:62;-1:-1:-1;;;15759:18:1;;;15752:45;15814:19;;43178:77:0;15428:411:1;43178:77:0;43268:28;43299:10;:8;:10::i;:::-;43268:41;;43371:1;43346:14;43340:28;:32;:288;;;;;;;;;;;;;;;;;43464:14;43505:19;:8;:17;:19::i;:::-;43551:13;43421:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43340:288;43320:308;43078:558;-1:-1:-1;;;43078:558:0:o;43771:113::-;43819:7;43859:17;:7;1432:14;;1340:114;43859:17;43846:30;;40130:4;43846:30;:::i;44668:122::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;44752:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;43892:97::-:0;43936:13;43969:12;43962:19;;;;;:::i;6945:201::-;6109:6;;-1:-1:-1;;;;;6109:6:0;4832:10;6256:23;6248:68;;;;-1:-1:-1;;;6248:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7034:22:0;::::1;7026:73;;;::::0;-1:-1:-1;;;7026:73:0;;9163:2:1;7026:73:0::1;::::0;::::1;9145:21:1::0;9202:2;9182:18;;;9175:30;9241:34;9221:18;;;9214:62;-1:-1:-1;;;9292:18:1;;;9285:36;9338:19;;7026:73:0::1;8961:402:1::0;7026:73:0::1;7110:28;7129:8;7110:18;:28::i;36065:174::-:0;36140:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36140:29:0;-1:-1:-1;;;;;36140:29:0;;;;;;;;:24;;36194:23;36140:24;36194:14;:23::i;:::-;-1:-1:-1;;;;;36185:46:0;;;;;;;;;;;36065:174;;:::o;32213:348::-;32306:4;32008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32008:16:0;32323:73;;;;-1:-1:-1;;;32323:73:0;;12836:2:1;32323:73:0;;;12818:21:1;12875:2;12855:18;;;12848:30;12914:34;12894:18;;;12887:62;-1:-1:-1;;;12965:18:1;;;12958:42;13017:19;;32323:73:0;12634:408:1;32323:73:0;32407:13;32423:23;32438:7;32423:14;:23::i;:::-;32407:39;;32476:5;-1:-1:-1;;;;;32465:16:0;:7;-1:-1:-1;;;;;32465:16:0;;:52;;;-1:-1:-1;;;;;;29305:25:0;;;29281:4;29305:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32485:32;32465:87;;;;32545:7;-1:-1:-1;;;;;32521:31:0;:20;32533:7;32521:11;:20::i;:::-;-1:-1:-1;;;;;32521:31:0;;32465:87;32457:96;32213:348;-1:-1:-1;;;;32213:348:0:o;35322:625::-;35481:4;-1:-1:-1;;;;;35454:31:0;:23;35469:7;35454:14;:23::i;:::-;-1:-1:-1;;;;;35454:31:0;;35446:81;;;;-1:-1:-1;;;35446:81:0;;9570:2:1;35446:81:0;;;9552:21:1;9609:2;9589:18;;;9582:30;9648:34;9628:18;;;9621:62;-1:-1:-1;;;9699:18:1;;;9692:35;9744:19;;35446:81:0;9368:401:1;35446:81:0;-1:-1:-1;;;;;35546:16:0;;35538:65;;;;-1:-1:-1;;;35538:65:0;;12077:2:1;35538:65:0;;;12059:21:1;12116:2;12096:18;;;12089:30;12155:34;12135:18;;;12128:62;-1:-1:-1;;;12206:18:1;;;12199:34;12250:19;;35538:65:0;11875:400:1;35538:65:0;35720:29;35737:1;35741:7;35720:8;:29::i;:::-;-1:-1:-1;;;;;35762:15:0;;;;;;:9;:15;;;;;:20;;35781:1;;35762:15;:20;;35781:1;;35762:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35793:13:0;;;;;;:9;:13;;;;;:18;;35810:1;;35793:13;:18;;35810:1;;35793:18;:::i;:::-;;;;-1:-1:-1;;35822:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35822:21:0;-1:-1:-1;;;;;35822:21:0;;;;;;;;;35861:27;;35822:16;;35861:27;;;;;;;28258:341;28188:411;;:::o;7306:191::-;7399:6;;;-1:-1:-1;;;;;7416:17:0;;;-1:-1:-1;;;;;;7416:17:0;;;;;;;7449:40;;7399:6;;;7416:17;7399:6;;7449:40;;7380:16;;7449:40;7369:128;7306:191;:::o;41302:220::-;41382:9;41377:138;41401:7;41397:1;:11;41377:138;;;41430:19;:7;1551:19;;1569:1;1551:19;;;1462:127;41430:19;41464:39;41474:9;41485:17;:7;1432:14;;1340:114;41485:17;41464:9;:39::i;:::-;41410:3;;;;:::i;:::-;;;;41377:138;;36381:315;36536:8;-1:-1:-1;;;;;36527:17:0;:5;-1:-1:-1;;;;;36527:17:0;;;36519:55;;;;-1:-1:-1;;;36519:55:0;;12482:2:1;36519:55:0;;;12464:21:1;12521:2;12501:18;;;12494:30;12560:27;12540:18;;;12533:55;12605:18;;36519:55:0;12280:349:1;36519:55:0;-1:-1:-1;;;;;36585:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36585:46:0;;;;;;;;;;36647:41;;8266::1;;;36647::0;;8239:18:1;36647:41:0;;;;;;;36381:315;;;:::o;31291:::-;31448:28;31458:4;31464:2;31468:7;31448:9;:28::i;:::-;31495:48;31518:4;31524:2;31528:7;31537:5;31495:22;:48::i;:::-;31487:111;;;;-1:-1:-1;;;31487:111:0;;;;;;;:::i;43997:108::-;44057:13;44090:7;44083:14;;;;;:::i;2306:723::-;2362:13;2583:10;2579:53;;-1:-1:-1;;2610:10:0;;;;;;;;;;;;-1:-1:-1;;;2610:10:0;;;;;2306:723::o;2579:53::-;2657:5;2642:12;2698:78;2705:9;;2698:78;;2731:8;;;;:::i;:::-;;-1:-1:-1;2754:10:0;;-1:-1:-1;2762:2:0;2754:10;;:::i;:::-;;;2698:78;;;2786:19;2818:6;2808:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2808:17:0;;2786:39;;2836:154;2843:10;;2836:154;;2870:11;2880:1;2870:11;;:::i;:::-;;-1:-1:-1;2939:10:0;2947:2;2939:5;:10;:::i;:::-;2926:24;;:2;:24;:::i;:::-;2913:39;;2896:6;2903;2896:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2896:56:0;;;;;;;;-1:-1:-1;2967:11:0;2976:2;2967:11;;:::i;:::-;;;2836:154;;32903:110;32979:26;32989:2;32993:7;32979:26;;;;;;;;;;;;:9;:26::i;37261:799::-;37416:4;-1:-1:-1;;;;;37437:13:0;;9040:19;:23;37433:620;;37473:72;;-1:-1:-1;;;37473:72:0;;-1:-1:-1;;;;;37473:36:0;;;;;:72;;4832:10;;37524:4;;37530:7;;37539:5;;37473:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37473:72:0;;;;;;;;-1:-1:-1;;37473:72:0;;;;;;;;;;;;:::i;:::-;;;37469:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37715:13:0;;37711:272;;37758:60;;-1:-1:-1;;;37758:60:0;;;;;;;:::i;37711:272::-;37933:6;37927:13;37918:6;37914:2;37910:15;37903:38;37469:529;-1:-1:-1;;;;;;37596:51:0;-1:-1:-1;;;37596:51:0;;-1:-1:-1;37589:58:0;;37433:620;-1:-1:-1;38037:4:0;37261:799;;;;;;:::o;33240:321::-;33370:18;33376:2;33380:7;33370:5;:18::i;:::-;33421:54;33452:1;33456:2;33460:7;33469:5;33421:22;:54::i;:::-;33399:154;;;;-1:-1:-1;;;33399:154:0;;;;;;;:::i;33897:439::-;-1:-1:-1;;;;;33977:16:0;;33969:61;;;;-1:-1:-1;;;33969:61:0;;14495:2:1;33969:61:0;;;14477:21:1;;;14514:18;;;14507:30;14573:34;14553:18;;;14546:62;14625:18;;33969:61:0;14293:356:1;33969:61:0;31984:4;32008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32008:16:0;:30;34041:58;;;;-1:-1:-1;;;34041:58:0;;10327:2:1;34041:58:0;;;10309:21:1;10366:2;10346:18;;;10339:30;10405;10385:18;;;10378:58;10453:18;;34041:58:0;10125:352:1;34041:58:0;-1:-1:-1;;;;;34170:13:0;;;;;;:9;:13;;;;;:18;;34187:1;;34170:13;:18;;34187:1;;34170:18;:::i;:::-;;;;-1:-1:-1;;34199:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34199:21:0;-1:-1:-1;;;;;34199:21:0;;;;;;;;34238:33;;34199:16;;;34238:33;;34199:16;;34238:33;44638:14:::1;44570:90:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:245::-;3908:6;3961:2;3949:9;3940:7;3936:23;3932:32;3929:52;;;3977:1;3974;3967:12;3929:52;4016:9;4003:23;4035:30;4059:5;4035:30;:::i;4100:249::-;4169:6;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;4270:9;4264:16;4289:30;4313:5;4289:30;:::i;4354:450::-;4423:6;4476:2;4464:9;4455:7;4451:23;4447:32;4444:52;;;4492:1;4489;4482:12;4444:52;4532:9;4519:23;4565:18;4557:6;4554:30;4551:50;;;4597:1;4594;4587:12;4551:50;4620:22;;4673:4;4665:13;;4661:27;-1:-1:-1;4651:55:1;;4702:1;4699;4692:12;4651:55;4725:73;4790:7;4785:2;4772:16;4767:2;4763;4759:11;4725:73;:::i;4809:180::-;4868:6;4921:2;4909:9;4900:7;4896:23;4892:32;4889:52;;;4937:1;4934;4927:12;4889:52;-1:-1:-1;4960:23:1;;4809:180;-1:-1:-1;4809:180:1:o;4994:257::-;5035:3;5073:5;5067:12;5100:6;5095:3;5088:19;5116:63;5172:6;5165:4;5160:3;5156:14;5149:4;5142:5;5138:16;5116:63;:::i;:::-;5233:2;5212:15;-1:-1:-1;;5208:29:1;5199:39;;;;5240:4;5195:50;;4994:257;-1:-1:-1;;4994:257:1:o;5256:1527::-;5480:3;5518:6;5512:13;5544:4;5557:51;5601:6;5596:3;5591:2;5583:6;5579:15;5557:51;:::i;:::-;5671:13;;5630:16;;;;5693:55;5671:13;5630:16;5715:15;;;5693:55;:::i;:::-;5837:13;;5770:20;;;5810:1;;5897;5919:18;;;;5972;;;;5999:93;;6077:4;6067:8;6063:19;6051:31;;5999:93;6140:2;6130:8;6127:16;6107:18;6104:40;6101:167;;;-1:-1:-1;;;6167:33:1;;6223:4;6220:1;6213:15;6253:4;6174:3;6241:17;6101:167;6284:18;6311:110;;;;6435:1;6430:328;;;;6277:481;;6311:110;-1:-1:-1;;6346:24:1;;6332:39;;6391:20;;;;-1:-1:-1;6311:110:1;;6430:328;17612:1;17605:14;;;17649:4;17636:18;;6525:1;6539:169;6553:8;6550:1;6547:15;6539:169;;;6635:14;;6620:13;;;6613:37;6678:16;;;;6570:10;;6539:169;;;6543:3;;6739:8;6732:5;6728:20;6721:27;;6277:481;-1:-1:-1;6774:3:1;;5256:1527;-1:-1:-1;;;;;;;;;;;5256:1527:1:o;6996:488::-;-1:-1:-1;;;;;7265:15:1;;;7247:34;;7317:15;;7312:2;7297:18;;7290:43;7364:2;7349:18;;7342:34;;;7412:3;7407:2;7392:18;;7385:31;;;7190:4;;7433:45;;7458:19;;7450:6;7433:45;:::i;:::-;7425:53;6996:488;-1:-1:-1;;;;;;6996:488:1:o;7489:632::-;7660:2;7712:21;;;7782:13;;7685:18;;;7804:22;;;7631:4;;7660:2;7883:15;;;;7857:2;7842:18;;;7631:4;7926:169;7940:6;7937:1;7934:13;7926:169;;;8001:13;;7989:26;;8070:15;;;;8035:12;;;;7962:1;7955:9;7926:169;;;-1:-1:-1;8112:3:1;;7489:632;-1:-1:-1;;;;;;7489:632:1:o;8318:219::-;8467:2;8456:9;8449:21;8430:4;8487:44;8527:2;8516:9;8512:18;8504:6;8487:44;:::i;8542:414::-;8744:2;8726:21;;;8783:2;8763:18;;;8756:30;8822:34;8817:2;8802:18;;8795:62;-1:-1:-1;;;8888:2:1;8873:18;;8866:48;8946:3;8931:19;;8542:414::o;10482:344::-;10684:2;10666:21;;;10723:2;10703:18;;;10696:30;-1:-1:-1;;;10757:2:1;10742:18;;10735:50;10817:2;10802:18;;10482:344::o;15067:356::-;15269:2;15251:21;;;15288:18;;;15281:30;15347:34;15342:2;15327:18;;15320:62;15414:2;15399:18;;15067:356::o;16246:413::-;16448:2;16430:21;;;16487:2;16467:18;;;16460:30;16526:34;16521:2;16506:18;;16499:62;-1:-1:-1;;;16592:2:1;16577:18;;16570:47;16649:3;16634:19;;16246:413::o;17665:128::-;17705:3;17736:1;17732:6;17729:1;17726:13;17723:39;;;17742:18;;:::i;:::-;-1:-1:-1;17778:9:1;;17665:128::o;17798:120::-;17838:1;17864;17854:35;;17869:18;;:::i;:::-;-1:-1:-1;17903:9:1;;17798:120::o;17923:168::-;17963:7;18029:1;18025;18021:6;18017:14;18014:1;18011:21;18006:1;17999:9;17992:17;17988:45;17985:71;;;18036:18;;:::i;:::-;-1:-1:-1;18076:9:1;;17923:168::o;18096:125::-;18136:4;18164:1;18161;18158:8;18155:34;;;18169:18;;:::i;:::-;-1:-1:-1;18206:9:1;;18096:125::o;18226:258::-;18298:1;18308:113;18322:6;18319:1;18316:13;18308:113;;;18398:11;;;18392:18;18379:11;;;18372:39;18344:2;18337:10;18308:113;;;18439:6;18436:1;18433:13;18430:48;;;-1:-1:-1;;18474:1:1;18456:16;;18449:27;18226:258::o;18489:380::-;18568:1;18564:12;;;;18611;;;18632:61;;18686:4;18678:6;18674:17;18664:27;;18632:61;18739:2;18731:6;18728:14;18708:18;18705:38;18702:161;;;18785:10;18780:3;18776:20;18773:1;18766:31;18820:4;18817:1;18810:15;18848:4;18845:1;18838:15;18702:161;;18489:380;;;:::o;18874:135::-;18913:3;-1:-1:-1;;18934:17:1;;18931:43;;;18954:18;;:::i;:::-;-1:-1:-1;19001:1:1;18990:13;;18874:135::o;19014:112::-;19046:1;19072;19062:35;;19077:18;;:::i;:::-;-1:-1:-1;19111:9:1;;19014:112::o;19131:127::-;19192:10;19187:3;19183:20;19180:1;19173:31;19223:4;19220:1;19213:15;19247:4;19244:1;19237:15;19263:127;19324:10;19319:3;19315:20;19312:1;19305:31;19355:4;19352:1;19345:15;19379:4;19376:1;19369:15;19395:127;19456:10;19451:3;19447:20;19444:1;19437:31;19487:4;19484:1;19477:15;19511:4;19508:1;19501:15;19527:127;19588:10;19583:3;19579:20;19576:1;19569:31;19619:4;19616:1;19609:15;19643:4;19640:1;19633:15;19659:131;-1:-1:-1;;;;;;19733:32:1;;19723:43;;19713:71;;19780:1;19777;19770:12

Swarm Source

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