ETH Price: $3,423.57 (+2.59%)
Gas: 5 Gwei

Token

Robo-Fi NFT (Robo-Fi NFT)
 

Overview

Max Total Supply

5,555 Robo-Fi NFT

Holders

706

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Robo-Fi NFT
0x142465967d1d29df61b2c53b421a31fbf7091da2
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:
RoboFiNFT

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-05-28
*/

// SPDX-License-Identifier: MIT
//Developer Info:
//Written by Ghazanfar Perdakh
//Email: [email protected]
//Whatsapp NO.: +923331578650
//fiverr: fiverr.com/ghazanfarperdakh


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
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);
    }
}
    pragma solidity ^0.8.7;
    
    contract RoboFiNFT is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL = "ipfs://QmWK7P75Gb27YGZjWMLNsreDCYAxUZ1WN7DuNE5iu6b1mx";

  
  

  uint256 public cost = 0.055 ether;
 

  uint16 public  maxSupply = 5555;
  
                                                             

  bool public paused = false;
  bool public reveal =false;
  bool public wlPaused = true;
  mapping (address => uint8) public NFTPerAddress;
  mapping (address => uint8) public FreeMintPerAddress;
  uint8 public maxMintAmountPerWallet = 5;
  uint8 public maxFreeMintPerWallet = 1;    
  bool public freemintPaused= true;
  
  bytes32 public whitelistMerkleRoot = 0x0cc622db75575674b2bc8dfe29c3ac04df24f1567b769fa31f6d4ef384ea66d2;
  

  constructor() ERC721A("Robo-Fi NFT", "Robo-Fi NFT") {
  }

  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
      uint8 _txPerAddress = NFTPerAddress[msg.sender];
      
       require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max tx per address");
      
   

    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender , _mintAmount);
     NFTPerAddress[msg.sender]= _txPerAddress + _mintAmount;
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function burn(uint _tokenID) external onlyOwner {
      _burn(_tokenID);
  }


   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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




 function setMaxNFTPerAddress(uint8 _limit) external onlyOwner{
    maxMintAmountPerWallet = _limit;
   delete _limit;

}


 function setMaxFreeMintPerAddress(uint8 _limit) external onlyOwner{
    maxMintAmountPerWallet = _limit;
   delete _limit;

}
function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
        
       bytes32  leafnode = getLeafNode(msg.sender);
        uint8 _txPerAddress = NFTPerAddress[msg.sender];
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max tx per address");
      


    require(!wlPaused, "Whitelist minting is over!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

       uint16 totalSupply = uint16(totalSupply());
     _safeMint(msg.sender , _mintAmount);
      NFTPerAddress[msg.sender] =_txPerAddress + _mintAmount;
      delete totalSupply;
      delete _mintAmount;
       delete _txPerAddress;
    
    }

    function FreeMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
        
       bytes32  leafnode = getLeafNode(msg.sender);
        uint8 _txPerAddress = FreeMintPerAddress[msg.sender];
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (_txPerAddress + _mintAmount <= maxFreeMintPerWallet, "Exceeds max tx per address");
      


    require(!freemintPaused, "Whitelist minting is over!");
   
       uint16 totalSupply = uint16(totalSupply());
     _safeMint(msg.sender , _mintAmount);
      FreeMintPerAddress[msg.sender] =_txPerAddress + _mintAmount;
      delete totalSupply;
      delete _mintAmount;
       delete _txPerAddress;
    
    }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
   
  }

  
  function setWLPaused() external onlyOwner {
    wlPaused = !wlPaused;
   
  }

  function setFreemintPaused() external onlyOwner {
    freemintPaused = !freemintPaused;
   
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

 function setMaxSupply(uint16 _maxsupply) external onlyOwner{
     maxSupply = _maxsupply;
     delete _maxsupply;
 }





 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FreeMintPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFreemintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxFreeMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNFTPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxsupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000183565b5060405180606001604052806035815260200162002b6f6035913980516200005991600b9160209091019062000183565b5066c3663566a58000600c55600d805464ffffffffff19166401000015b31790556010805462ffffff1916620101051790557f0cc622db75575674b2bc8dfe29c3ac04df24f1567b769fa31f6d4ef384ea66d2601155348015620000bc57600080fd5b50604080518082018252600b8082526a149bd89bcb519a4813919560aa1b602080840182815285518087019096529285528401528151919291620001039160029162000183565b5080516200011990600390602084019062000183565b505060008055506200012b3362000131565b62000266565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001919062000229565b90600052602060002090601f016020900481019282620001b5576000855562000200565b82601f10620001d057805160ff191683800117855562000200565b8280016001018555821562000200579182015b8281111562000200578251825591602001919060010190620001e3565b506200020e92915062000212565b5090565b5b808211156200020e576000815560010162000213565b600181811c908216806200023e57607f821691505b602082108114156200026057634e487b7160e01b600052602260045260246000fd5b50919050565b6128f980620002766000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063bb059992116100c1578063d58324b41161007a578063d58324b41461072e578063d5abeb011461074e578063dbd37cf41461077c578063e985e9c5146107ac578063eef440af146107f5578063f2fde38b1461080a57600080fd5b8063bb059992146106a1578063bc04bc79146106a1578063bc951b91146106c1578063bd32fb66146106db578063c87b56dd146106fb578063cf5188831461071b57600080fd5b806395d89b411161011357806395d89b41146105e5578063a22cb465146105fa578063a475b5dd1461061a578063aa98e0c61461063b578063b455c55314610651578063b88d4fde1461068157600080fd5b8063715018a61461053f57806372e537eb146105545780637ec4a65914610576578063845bb3bb146105965780638da5cb5b146105c757600080fd5b80632f6f98e1116101f357806344a0d68a116101ac57806344a0d68a1461049957806358381669146104b95780635c975abb146104cc5780636352211e146104ec5780636ecd23061461050c57806370a082311461051f57600080fd5b80632f6f98e1146103fa57806337a66d851461041a5780633bd649681461042f5780633ccfd60b1461044457806342842e0e1461045957806342966c681461047957600080fd5b8063093cfa6311610245578063093cfa6314610348578063095ea7b31461035d5780631067fcc71461037d57806313faede61461039d57806318160ddd146103c157806323b872dd146103da57600080fd5b806301ffc9a71461028257806303cba6c0146102b757806306421c2f146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123ed565b61082a565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61087c565b005b3480156102da57600080fd5b506102cc6102e936600461246f565b6108ce565b3480156102fa57600080fd5b50610303610910565b6040516102ae9190612673565b34801561031c57600080fd5b5061033061032b3660046123d4565b6109a2565b6040516001600160a01b0390911681526020016102ae565b34801561035457600080fd5b506102cc6109e6565b34801561036957600080fd5b506102cc6103783660046123aa565b610a33565b34801561038957600080fd5b506102cc610398366004612427565b610ac1565b3480156103a957600080fd5b506103b3600c5481565b6040519081526020016102ae565b3480156103cd57600080fd5b50600154600054036103b3565b3480156103e657600080fd5b506102cc6103f53660046122b7565b610b02565b34801561040657600080fd5b506102cc61041536600461248a565b610b0d565b34801561042657600080fd5b506102cc610bb0565b34801561043b57600080fd5b506102cc610bf9565b34801561045057600080fd5b506102cc610c44565b34801561046557600080fd5b506102cc6104743660046122b7565b610c9d565b34801561048557600080fd5b506102cc6104943660046123d4565b610cb8565b3480156104a557600080fd5b506102cc6104b43660046123d4565b610cee565b6102cc6104c73660046124c1565b610d1d565b3480156104d857600080fd5b50600d546102a29062010000900460ff1681565b3480156104f857600080fd5b506103306105073660046123d4565b610ef1565b6102cc61051a3660046124a6565b610f03565b34801561052b57600080fd5b506103b361053a366004612269565b6110a2565b34801561054b57600080fd5b506102cc6110f0565b34801561056057600080fd5b50600d546102a290640100000000900460ff1681565b34801561058257600080fd5b506102cc610591366004612427565b611126565b3480156105a257600080fd5b506010546105b590610100900460ff1681565b60405160ff90911681526020016102ae565b3480156105d357600080fd5b506008546001600160a01b0316610330565b3480156105f157600080fd5b50610303611163565b34801561060657600080fd5b506102cc61061536600461236e565b611172565b34801561062657600080fd5b50600d546102a2906301000000900460ff1681565b34801561064757600080fd5b506103b360115481565b34801561065d57600080fd5b506105b561066c366004612269565b600f6020526000908152604090205460ff1681565b34801561068d57600080fd5b506102cc61069c3660046122f3565b611208565b3480156106ad57600080fd5b506102cc6106bc3660046124a6565b611259565b3480156106cd57600080fd5b506010546105b59060ff1681565b3480156106e757600080fd5b506102cc6106f63660046123d4565b611299565b34801561070757600080fd5b506103036107163660046123d4565b6112c8565b6102cc6107293660046124c1565b611439565b34801561073a57600080fd5b506010546102a29062010000900460ff1681565b34801561075a57600080fd5b50600d546107699061ffff1681565b60405161ffff90911681526020016102ae565b34801561078857600080fd5b506105b5610797366004612269565b600e6020526000908152604090205460ff1681565b3480156107b857600080fd5b506102a26107c7366004612284565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080157600080fd5b506103036115ba565b34801561081657600080fd5b506102cc610825366004612269565b611648565b60006001600160e01b031982166380ac58cd60e01b148061085b57506001600160e01b03198216635b5e139f60e01b145b8061087657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a6906126bd565b60405180910390fd5b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b031633146108f85760405162461bcd60e51b81526004016108a6906126bd565b600d805461ffff191661ffff92909216919091179055565b60606002805461091f906127cb565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906127cb565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad826116e0565b6109ca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a105760405162461bcd60e51b81526004016108a6906126bd565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6000610a3e82610ef1565b9050806001600160a01b0316836001600160a01b03161415610a735760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a935750610a9181336107c7565b155b15610ab1576040516367d9dca160e11b815260040160405180910390fd5b610abc83838361170b565b505050565b6008546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016108a6906126bd565b8051610afe90600b90602084019061211c565b5050565b610abc838383611767565b6008546001600160a01b03163314610b375760405162461bcd60e51b81526004016108a6906126bd565b6000610b466001546000540390565b600d5490915061ffff16610b5a84836126f2565b61ffff161115610ba25760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108a6565b610abc828461ffff16611943565b6008546001600160a01b03163314610bda5760405162461bcd60e51b81526004016108a6906126bd565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610c235760405162461bcd60e51b81526004016108a6906126bd565b600d805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610c6e5760405162461bcd60e51b81526004016108a6906126bd565b6040514790339082156108fc029083906000818181858888f19350505050158015610afe573d6000803e3d6000fd5b610abc83838360405180602001604052806000815250611208565b6008546001600160a01b03163314610ce25760405162461bcd60e51b81526004016108a6906126bd565b610ceb8161195d565b50565b6008546001600160a01b03163314610d185760405162461bcd60e51b81526004016108a6906126bd565b600c55565b6000610d2833611968565b336000908152600e6020908152604091829020548251868302818101840190945286815293945060ff1692610d7b928592889188918291908501908490808284376000920191909152506119a792505050565b610dbe5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108a6565b60105460ff16610dce8683612730565b60ff161115610def5760405162461bcd60e51b81526004016108a690612686565b600d54640100000000900460ff1615610e4a5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108a6565b8460ff16600c54610e5b9190612769565b341015610ea05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108a6565b6000610eaf6001546000540390565b9050610ebe338760ff16611943565b610ec88683612730565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050505050565b6000610efc826119b6565b5192915050565b6000610f126001546000540390565b600d5490915061ffff16610f2960ff8416836126f2565b61ffff161115610f715760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108a6565b336000908152600e602052604090205460105460ff9182169116610f958483612730565b60ff161115610fb65760405162461bcd60e51b81526004016108a690612686565b600d5462010000900460ff161561100f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108a6565b8260ff16600c546110209190612769565b3410156110655760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108a6565b611072338460ff16611943565b61107c8382612730565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166110cb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461111a5760405162461bcd60e51b81526004016108a6906126bd565b6111246000611ad0565b565b6008546001600160a01b031633146111505760405162461bcd60e51b81526004016108a6906126bd565b8051610afe90600990602084019061211c565b60606003805461091f906127cb565b6001600160a01b03821633141561119c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611213848484611767565b6001600160a01b0383163b15158015611235575061123384848484611b22565b155b15611253576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112835760405162461bcd60e51b81526004016108a6906126bd565b6010805460ff191660ff92909216919091179055565b6008546001600160a01b031633146112c35760405162461bcd60e51b81526004016108a6906126bd565b601155565b60606112d3826116e0565b6113375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a6565b600d546301000000900460ff166113da57600b8054611355906127cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611381906127cb565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b50505050509050919050565b60006113e4611c1a565b905060008151116114045760405180602001604052806000815250611432565b8061140e84611c29565b600a60405160200161142293929190612572565b6040516020818303038152906040525b9392505050565b600061144433611968565b336000908152600f6020908152604091829020548251868302818101840190945286815293945060ff1692611497928592889188918291908501908490808284376000920191909152506119a792505050565b6114da5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108a6565b601054610100900460ff166114ef8683612730565b60ff1611156115105760405162461bcd60e51b81526004016108a690612686565b60105462010000900460ff16156115695760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108a6565b60006115786001546000540390565b9050611587338760ff16611943565b6115918683612730565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b600b80546115c7906127cb565b80601f01602080910402602001604051908101604052809291908181526020018280546115f3906127cb565b80156116405780601f1061161557610100808354040283529160200191611640565b820191906000526020600020905b81548152906001019060200180831161162357829003601f168201915b505050505081565b6008546001600160a01b031633146116725760405162461bcd60e51b81526004016108a6906126bd565b6001600160a01b0381166116d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b610ceb81611ad0565b6000805482108015610876575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611772826119b6565b9050836001600160a01b031681600001516001600160a01b0316146117a95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117c757506117c785336107c7565b806117e25750336117d7846109a2565b6001600160a01b0316145b90508061180257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661182957604051633a954ecd60e21b815260040160405180910390fd5b6118356000848761170b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661190957600054821461190957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206128a483398151915260405160405180910390a45b5050505050565b610afe828260405180602001604052806000815250611d26565b610ceb816000611d33565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b60006114328260115485611ee6565b604080516060810182526000808252602082018190529181019190915281600054811015611ab757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ab55780516001600160a01b031615611a4c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ab0579392505050565b611a4c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b57903390899088908890600401612636565b602060405180830381600087803b158015611b7157600080fd5b505af1925050508015611ba1575060408051601f3d908101601f19168201909252611b9e9181019061240a565b60015b611bfc573d808015611bcf576040519150601f19603f3d011682016040523d82523d6000602084013e611bd4565b606091505b508051611bf4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461091f906127cb565b606081611c4d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c775780611c6181612806565b9150611c709050600a83612755565b9150611c51565b6000816001600160401b03811115611c9157611c91612877565b6040519080825280601f01601f191660200182016040528015611cbb576020820181803683370190505b5090505b8415611c1257611cd0600183612788565b9150611cdd600a86612821565b611ce8906030612718565b60f81b818381518110611cfd57611cfd612861565b60200101906001600160f81b031916908160001a905350611d1f600a86612755565b9450611cbf565b610abc8383836001611efc565b6000611d3e836119b6565b80519091508215611da4576000336001600160a01b0383161480611d675750611d6782336107c7565b80611d82575033611d77866109a2565b6001600160a01b0316145b905080611da257604051632ce44b5f60e11b815260040160405180910390fd5b505b611db06000858361170b565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611eae576000548214611eae57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206128a4833981519152908390a4505060018054810190555050565b600082611ef385846120a8565b14949350505050565b6000546001600160a01b038516611f2557604051622e076360e81b815260040160405180910390fd5b83611f435760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ff457506001600160a01b0387163b15155b1561206b575b60405182906001600160a01b038916906000906000805160206128a4833981519152908290a46120336000888480600101955088611b22565b612050576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ffa57826000541461206657600080fd5b61209f565b5b6040516001830192906001600160a01b038916906000906000805160206128a4833981519152908290a48082141561206c575b5060005561193c565b600081815b84518110156121145760008582815181106120ca576120ca612861565b602002602001015190508083116120f05760008381526020829052604090209250612101565b600081815260208490526040902092505b508061210c81612806565b9150506120ad565b509392505050565b828054612128906127cb565b90600052602060002090601f01602090048101928261214a5760008555612190565b82601f1061216357805160ff1916838001178555612190565b82800160010185558215612190579182015b82811115612190578251825591602001919060010190612175565b5061219c9291506121a0565b5090565b5b8082111561219c57600081556001016121a1565b60006001600160401b03808411156121cf576121cf612877565b604051601f8501601f19908116603f011681019082821181831017156121f7576121f7612877565b8160405280935085815286868601111561221057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461224157600080fd5b919050565b803561ffff8116811461224157600080fd5b803560ff8116811461224157600080fd5b60006020828403121561227b57600080fd5b6114328261222a565b6000806040838503121561229757600080fd5b6122a08361222a565b91506122ae6020840161222a565b90509250929050565b6000806000606084860312156122cc57600080fd5b6122d58461222a565b92506122e36020850161222a565b9150604084013590509250925092565b6000806000806080858703121561230957600080fd5b6123128561222a565b93506123206020860161222a565b92506040850135915060608501356001600160401b0381111561234257600080fd5b8501601f8101871361235357600080fd5b612362878235602084016121b5565b91505092959194509250565b6000806040838503121561238157600080fd5b61238a8361222a565b91506020830135801515811461239f57600080fd5b809150509250929050565b600080604083850312156123bd57600080fd5b6123c68361222a565b946020939093013593505050565b6000602082840312156123e657600080fd5b5035919050565b6000602082840312156123ff57600080fd5b81356114328161288d565b60006020828403121561241c57600080fd5b81516114328161288d565b60006020828403121561243957600080fd5b81356001600160401b0381111561244f57600080fd5b8201601f8101841361246057600080fd5b611c12848235602084016121b5565b60006020828403121561248157600080fd5b61143282612246565b6000806040838503121561249d57600080fd5b6122a083612246565b6000602082840312156124b857600080fd5b61143282612258565b6000806000604084860312156124d657600080fd5b6124df84612258565b925060208401356001600160401b03808211156124fb57600080fd5b818601915086601f83011261250f57600080fd5b81358181111561251e57600080fd5b8760208260051b850101111561253357600080fd5b6020830194508093505050509250925092565b6000815180845261255e81602086016020860161279f565b601f01601f19169290920160200192915050565b6000845160206125858285838a0161279f565b8551918401916125988184848a0161279f565b8554920191600090600181811c90808316806125b557607f831692505b8583108114156125d357634e487b7160e01b85526022600452602485fd5b8080156125e757600181146125f857612625565b60ff19851688528388019550612625565b60008b81526020902060005b8581101561261d5781548a820152908401908801612604565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266990830184612546565b9695505050505050565b6020815260006114326020830184612546565b6020808252601a908201527f45786365656473206d6178207478207065722061646472657373000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561270f5761270f612835565b01949350505050565b6000821982111561272b5761272b612835565b500190565b600060ff821660ff84168060ff0382111561274d5761274d612835565b019392505050565b6000826127645761276461284b565b500490565b600081600019048311821515161561278357612783612835565b500290565b60008282101561279a5761279a612835565b500390565b60005b838110156127ba5781810151838201526020016127a2565b838111156112535750506000910152565b600181811c908216806127df57607f821691505b6020821081141561280057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561281a5761281a612835565b5060010190565b6000826128305761283061284b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ceb57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f0c1cd5dc8e152f4abde55f7144a07b55ba376e8ae1ce598eeba5e430dc42afc64736f6c63430008070033697066733a2f2f516d574b375037354762323759475a6a574d4c4e7372654443594178555a31574e3744754e453569753662316d78

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063bb059992116100c1578063d58324b41161007a578063d58324b41461072e578063d5abeb011461074e578063dbd37cf41461077c578063e985e9c5146107ac578063eef440af146107f5578063f2fde38b1461080a57600080fd5b8063bb059992146106a1578063bc04bc79146106a1578063bc951b91146106c1578063bd32fb66146106db578063c87b56dd146106fb578063cf5188831461071b57600080fd5b806395d89b411161011357806395d89b41146105e5578063a22cb465146105fa578063a475b5dd1461061a578063aa98e0c61461063b578063b455c55314610651578063b88d4fde1461068157600080fd5b8063715018a61461053f57806372e537eb146105545780637ec4a65914610576578063845bb3bb146105965780638da5cb5b146105c757600080fd5b80632f6f98e1116101f357806344a0d68a116101ac57806344a0d68a1461049957806358381669146104b95780635c975abb146104cc5780636352211e146104ec5780636ecd23061461050c57806370a082311461051f57600080fd5b80632f6f98e1146103fa57806337a66d851461041a5780633bd649681461042f5780633ccfd60b1461044457806342842e0e1461045957806342966c681461047957600080fd5b8063093cfa6311610245578063093cfa6314610348578063095ea7b31461035d5780631067fcc71461037d57806313faede61461039d57806318160ddd146103c157806323b872dd146103da57600080fd5b806301ffc9a71461028257806303cba6c0146102b757806306421c2f146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123ed565b61082a565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61087c565b005b3480156102da57600080fd5b506102cc6102e936600461246f565b6108ce565b3480156102fa57600080fd5b50610303610910565b6040516102ae9190612673565b34801561031c57600080fd5b5061033061032b3660046123d4565b6109a2565b6040516001600160a01b0390911681526020016102ae565b34801561035457600080fd5b506102cc6109e6565b34801561036957600080fd5b506102cc6103783660046123aa565b610a33565b34801561038957600080fd5b506102cc610398366004612427565b610ac1565b3480156103a957600080fd5b506103b3600c5481565b6040519081526020016102ae565b3480156103cd57600080fd5b50600154600054036103b3565b3480156103e657600080fd5b506102cc6103f53660046122b7565b610b02565b34801561040657600080fd5b506102cc61041536600461248a565b610b0d565b34801561042657600080fd5b506102cc610bb0565b34801561043b57600080fd5b506102cc610bf9565b34801561045057600080fd5b506102cc610c44565b34801561046557600080fd5b506102cc6104743660046122b7565b610c9d565b34801561048557600080fd5b506102cc6104943660046123d4565b610cb8565b3480156104a557600080fd5b506102cc6104b43660046123d4565b610cee565b6102cc6104c73660046124c1565b610d1d565b3480156104d857600080fd5b50600d546102a29062010000900460ff1681565b3480156104f857600080fd5b506103306105073660046123d4565b610ef1565b6102cc61051a3660046124a6565b610f03565b34801561052b57600080fd5b506103b361053a366004612269565b6110a2565b34801561054b57600080fd5b506102cc6110f0565b34801561056057600080fd5b50600d546102a290640100000000900460ff1681565b34801561058257600080fd5b506102cc610591366004612427565b611126565b3480156105a257600080fd5b506010546105b590610100900460ff1681565b60405160ff90911681526020016102ae565b3480156105d357600080fd5b506008546001600160a01b0316610330565b3480156105f157600080fd5b50610303611163565b34801561060657600080fd5b506102cc61061536600461236e565b611172565b34801561062657600080fd5b50600d546102a2906301000000900460ff1681565b34801561064757600080fd5b506103b360115481565b34801561065d57600080fd5b506105b561066c366004612269565b600f6020526000908152604090205460ff1681565b34801561068d57600080fd5b506102cc61069c3660046122f3565b611208565b3480156106ad57600080fd5b506102cc6106bc3660046124a6565b611259565b3480156106cd57600080fd5b506010546105b59060ff1681565b3480156106e757600080fd5b506102cc6106f63660046123d4565b611299565b34801561070757600080fd5b506103036107163660046123d4565b6112c8565b6102cc6107293660046124c1565b611439565b34801561073a57600080fd5b506010546102a29062010000900460ff1681565b34801561075a57600080fd5b50600d546107699061ffff1681565b60405161ffff90911681526020016102ae565b34801561078857600080fd5b506105b5610797366004612269565b600e6020526000908152604090205460ff1681565b3480156107b857600080fd5b506102a26107c7366004612284565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080157600080fd5b506103036115ba565b34801561081657600080fd5b506102cc610825366004612269565b611648565b60006001600160e01b031982166380ac58cd60e01b148061085b57506001600160e01b03198216635b5e139f60e01b145b8061087657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a6906126bd565b60405180910390fd5b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b031633146108f85760405162461bcd60e51b81526004016108a6906126bd565b600d805461ffff191661ffff92909216919091179055565b60606002805461091f906127cb565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906127cb565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad826116e0565b6109ca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a105760405162461bcd60e51b81526004016108a6906126bd565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6000610a3e82610ef1565b9050806001600160a01b0316836001600160a01b03161415610a735760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a935750610a9181336107c7565b155b15610ab1576040516367d9dca160e11b815260040160405180910390fd5b610abc83838361170b565b505050565b6008546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016108a6906126bd565b8051610afe90600b90602084019061211c565b5050565b610abc838383611767565b6008546001600160a01b03163314610b375760405162461bcd60e51b81526004016108a6906126bd565b6000610b466001546000540390565b600d5490915061ffff16610b5a84836126f2565b61ffff161115610ba25760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108a6565b610abc828461ffff16611943565b6008546001600160a01b03163314610bda5760405162461bcd60e51b81526004016108a6906126bd565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610c235760405162461bcd60e51b81526004016108a6906126bd565b600d805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610c6e5760405162461bcd60e51b81526004016108a6906126bd565b6040514790339082156108fc029083906000818181858888f19350505050158015610afe573d6000803e3d6000fd5b610abc83838360405180602001604052806000815250611208565b6008546001600160a01b03163314610ce25760405162461bcd60e51b81526004016108a6906126bd565b610ceb8161195d565b50565b6008546001600160a01b03163314610d185760405162461bcd60e51b81526004016108a6906126bd565b600c55565b6000610d2833611968565b336000908152600e6020908152604091829020548251868302818101840190945286815293945060ff1692610d7b928592889188918291908501908490808284376000920191909152506119a792505050565b610dbe5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108a6565b60105460ff16610dce8683612730565b60ff161115610def5760405162461bcd60e51b81526004016108a690612686565b600d54640100000000900460ff1615610e4a5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108a6565b8460ff16600c54610e5b9190612769565b341015610ea05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108a6565b6000610eaf6001546000540390565b9050610ebe338760ff16611943565b610ec88683612730565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050505050565b6000610efc826119b6565b5192915050565b6000610f126001546000540390565b600d5490915061ffff16610f2960ff8416836126f2565b61ffff161115610f715760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108a6565b336000908152600e602052604090205460105460ff9182169116610f958483612730565b60ff161115610fb65760405162461bcd60e51b81526004016108a690612686565b600d5462010000900460ff161561100f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108a6565b8260ff16600c546110209190612769565b3410156110655760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108a6565b611072338460ff16611943565b61107c8382612730565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166110cb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461111a5760405162461bcd60e51b81526004016108a6906126bd565b6111246000611ad0565b565b6008546001600160a01b031633146111505760405162461bcd60e51b81526004016108a6906126bd565b8051610afe90600990602084019061211c565b60606003805461091f906127cb565b6001600160a01b03821633141561119c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611213848484611767565b6001600160a01b0383163b15158015611235575061123384848484611b22565b155b15611253576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112835760405162461bcd60e51b81526004016108a6906126bd565b6010805460ff191660ff92909216919091179055565b6008546001600160a01b031633146112c35760405162461bcd60e51b81526004016108a6906126bd565b601155565b60606112d3826116e0565b6113375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a6565b600d546301000000900460ff166113da57600b8054611355906127cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611381906127cb565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b50505050509050919050565b60006113e4611c1a565b905060008151116114045760405180602001604052806000815250611432565b8061140e84611c29565b600a60405160200161142293929190612572565b6040516020818303038152906040525b9392505050565b600061144433611968565b336000908152600f6020908152604091829020548251868302818101840190945286815293945060ff1692611497928592889188918291908501908490808284376000920191909152506119a792505050565b6114da5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108a6565b601054610100900460ff166114ef8683612730565b60ff1611156115105760405162461bcd60e51b81526004016108a690612686565b60105462010000900460ff16156115695760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108a6565b60006115786001546000540390565b9050611587338760ff16611943565b6115918683612730565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b600b80546115c7906127cb565b80601f01602080910402602001604051908101604052809291908181526020018280546115f3906127cb565b80156116405780601f1061161557610100808354040283529160200191611640565b820191906000526020600020905b81548152906001019060200180831161162357829003601f168201915b505050505081565b6008546001600160a01b031633146116725760405162461bcd60e51b81526004016108a6906126bd565b6001600160a01b0381166116d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b610ceb81611ad0565b6000805482108015610876575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611772826119b6565b9050836001600160a01b031681600001516001600160a01b0316146117a95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117c757506117c785336107c7565b806117e25750336117d7846109a2565b6001600160a01b0316145b90508061180257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661182957604051633a954ecd60e21b815260040160405180910390fd5b6118356000848761170b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661190957600054821461190957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206128a483398151915260405160405180910390a45b5050505050565b610afe828260405180602001604052806000815250611d26565b610ceb816000611d33565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b60006114328260115485611ee6565b604080516060810182526000808252602082018190529181019190915281600054811015611ab757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ab55780516001600160a01b031615611a4c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ab0579392505050565b611a4c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b57903390899088908890600401612636565b602060405180830381600087803b158015611b7157600080fd5b505af1925050508015611ba1575060408051601f3d908101601f19168201909252611b9e9181019061240a565b60015b611bfc573d808015611bcf576040519150601f19603f3d011682016040523d82523d6000602084013e611bd4565b606091505b508051611bf4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461091f906127cb565b606081611c4d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c775780611c6181612806565b9150611c709050600a83612755565b9150611c51565b6000816001600160401b03811115611c9157611c91612877565b6040519080825280601f01601f191660200182016040528015611cbb576020820181803683370190505b5090505b8415611c1257611cd0600183612788565b9150611cdd600a86612821565b611ce8906030612718565b60f81b818381518110611cfd57611cfd612861565b60200101906001600160f81b031916908160001a905350611d1f600a86612755565b9450611cbf565b610abc8383836001611efc565b6000611d3e836119b6565b80519091508215611da4576000336001600160a01b0383161480611d675750611d6782336107c7565b80611d82575033611d77866109a2565b6001600160a01b0316145b905080611da257604051632ce44b5f60e11b815260040160405180910390fd5b505b611db06000858361170b565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611eae576000548214611eae57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206128a4833981519152908390a4505060018054810190555050565b600082611ef385846120a8565b14949350505050565b6000546001600160a01b038516611f2557604051622e076360e81b815260040160405180910390fd5b83611f435760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ff457506001600160a01b0387163b15155b1561206b575b60405182906001600160a01b038916906000906000805160206128a4833981519152908290a46120336000888480600101955088611b22565b612050576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ffa57826000541461206657600080fd5b61209f565b5b6040516001830192906001600160a01b038916906000906000805160206128a4833981519152908290a48082141561206c575b5060005561193c565b600081815b84518110156121145760008582815181106120ca576120ca612861565b602002602001015190508083116120f05760008381526020829052604090209250612101565b600081815260208490526040902092505b508061210c81612806565b9150506120ad565b509392505050565b828054612128906127cb565b90600052602060002090601f01602090048101928261214a5760008555612190565b82601f1061216357805160ff1916838001178555612190565b82800160010185558215612190579182015b82811115612190578251825591602001919060010190612175565b5061219c9291506121a0565b5090565b5b8082111561219c57600081556001016121a1565b60006001600160401b03808411156121cf576121cf612877565b604051601f8501601f19908116603f011681019082821181831017156121f7576121f7612877565b8160405280935085815286868601111561221057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461224157600080fd5b919050565b803561ffff8116811461224157600080fd5b803560ff8116811461224157600080fd5b60006020828403121561227b57600080fd5b6114328261222a565b6000806040838503121561229757600080fd5b6122a08361222a565b91506122ae6020840161222a565b90509250929050565b6000806000606084860312156122cc57600080fd5b6122d58461222a565b92506122e36020850161222a565b9150604084013590509250925092565b6000806000806080858703121561230957600080fd5b6123128561222a565b93506123206020860161222a565b92506040850135915060608501356001600160401b0381111561234257600080fd5b8501601f8101871361235357600080fd5b612362878235602084016121b5565b91505092959194509250565b6000806040838503121561238157600080fd5b61238a8361222a565b91506020830135801515811461239f57600080fd5b809150509250929050565b600080604083850312156123bd57600080fd5b6123c68361222a565b946020939093013593505050565b6000602082840312156123e657600080fd5b5035919050565b6000602082840312156123ff57600080fd5b81356114328161288d565b60006020828403121561241c57600080fd5b81516114328161288d565b60006020828403121561243957600080fd5b81356001600160401b0381111561244f57600080fd5b8201601f8101841361246057600080fd5b611c12848235602084016121b5565b60006020828403121561248157600080fd5b61143282612246565b6000806040838503121561249d57600080fd5b6122a083612246565b6000602082840312156124b857600080fd5b61143282612258565b6000806000604084860312156124d657600080fd5b6124df84612258565b925060208401356001600160401b03808211156124fb57600080fd5b818601915086601f83011261250f57600080fd5b81358181111561251e57600080fd5b8760208260051b850101111561253357600080fd5b6020830194508093505050509250925092565b6000815180845261255e81602086016020860161279f565b601f01601f19169290920160200192915050565b6000845160206125858285838a0161279f565b8551918401916125988184848a0161279f565b8554920191600090600181811c90808316806125b557607f831692505b8583108114156125d357634e487b7160e01b85526022600452602485fd5b8080156125e757600181146125f857612625565b60ff19851688528388019550612625565b60008b81526020902060005b8581101561261d5781548a820152908401908801612604565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266990830184612546565b9695505050505050565b6020815260006114326020830184612546565b6020808252601a908201527f45786365656473206d6178207478207065722061646472657373000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561270f5761270f612835565b01949350505050565b6000821982111561272b5761272b612835565b500190565b600060ff821660ff84168060ff0382111561274d5761274d612835565b019392505050565b6000826127645761276461284b565b500490565b600081600019048311821515161561278357612783612835565b500290565b60008282101561279a5761279a612835565b500390565b60005b838110156127ba5781810151838201526020016127a2565b838111156112535750506000910152565b600181811c908216806127df57607f821691505b6020821081141561280057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561281a5761281a612835565b5060010190565b6000826128305761283061284b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ceb57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f0c1cd5dc8e152f4abde55f7144a07b55ba376e8ae1ce598eeba5e430dc42afc64736f6c63430008070033

Deployed Bytecode Sourcemap

46500:5793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24600:305;;;;;;;;;;-1:-1:-1;24600:305:0;;;;;:::i;:::-;;:::i;:::-;;;8776:14:1;;8769:22;8751:41;;8739:2;8724:18;24600:305:0;;;;;;;;51643:98;;;;;;;;;;;;;:::i;:::-;;51903:119;;;;;;;;;;-1:-1:-1;51903:119:0;;;;;:::i;:::-;;:::i;27713:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29216:204::-;;;;;;;;;;-1:-1:-1;29216:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8074:32:1;;;8056:51;;8044:2;8029:18;29216:204:0;7910:203:1;51557:80:0;;;;;;;;;;;;;:::i;28779:371::-;;;;;;;;;;-1:-1:-1;28779:371:0;;;;;:::i;:::-;;:::i;51363:102::-;;;;;;;;;;-1:-1:-1;51363:102:0;;;;;:::i;:::-;;:::i;46747:33::-;;;;;;;;;;;;;;;;;;;8949:25:1;;;8937:2;8922:18;46747:33:0;8803:177:1;23849:303:0;;;;;;;;;;-1:-1:-1;24103:12:0;;23893:7;24087:13;:28;23849:303;;30081:170;;;;;;;;;;-1:-1:-1;30081:170:0;;;;;:::i;:::-;;:::i;48065:326::-;;;;;;;;;;-1:-1:-1;48065:326:0;;;;;:::i;:::-;;:::i;51473:74::-;;;;;;;;;;;;;:::i;51828:70::-;;;;;;;;;;;;;:::i;52041:144::-;;;;;;;;;;;;;:::i;30322:185::-;;;;;;;;;;-1:-1:-1;30322:185:0;;;;;:::i;:::-;;:::i;48397:78::-;;;;;;;;;;-1:-1:-1;48397:78:0;;;;;:::i;:::-;;:::i;51747:76::-;;;;;;;;;;-1:-1:-1;51747:76:0;;;;;:::i;:::-;;:::i;49720:790::-;;;;;;:::i;:::-;;:::i;46895:26::-;;;;;;;;;;-1:-1:-1;46895:26:0;;;;;;;;;;;27521:125;;;;;;;;;;-1:-1:-1;27521:125:0;;;;;:::i;:::-;;:::i;47413:644::-;;;;;;:::i;:::-;;:::i;24969:206::-;;;;;;;;;;-1:-1:-1;24969:206:0;;;;;:::i;:::-;;:::i;45646:103::-;;;;;;;;;;;;;:::i;46956:27::-;;;;;;;;;;-1:-1:-1;46956:27:0;;;;;;;;;;;51256:102;;;;;;;;;;-1:-1:-1;51256:102:0;;;;;:::i;:::-;;:::i;47141:37::-;;;;;;;;;;-1:-1:-1;47141:37:0;;;;;;;;;;;;;;13047:4:1;13035:17;;;13017:36;;13005:2;12990:18;47141:37:0;12875:184:1;44994:87:0;;;;;;;;;;-1:-1:-1;45067:6:0;;-1:-1:-1;;;;;45067:6:0;44994:87;;27882:104;;;;;;;;;;;;;:::i;29492:287::-;;;;;;;;;;-1:-1:-1;29492:287:0;;;;;:::i;:::-;;:::i;46926:25::-;;;;;;;;;;-1:-1:-1;46926:25:0;;;;;;;;;;;47228:103;;;;;;;;;;;;;;;;47040:52;;;;;;;;;;-1:-1:-1;47040:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30578:369;;;;;;;;;;-1:-1:-1;30578:369:0;;;;;:::i;:::-;;:::i;49123:129::-;;;;;;;;;;-1:-1:-1;49123:129:0;;;;;:::i;:::-;;:::i;47097:39::-;;;;;;;;;;-1:-1:-1;47097:39:0;;;;;;;;49254:142;;;;;;;;;;-1:-1:-1;49254:142:0;;;;;:::i;:::-;;:::i;48488:490::-;;;;;;;;;;-1:-1:-1;48488:490:0;;;;;:::i;:::-;;:::i;50518:732::-;;;;;;:::i;:::-;;:::i;47187:32::-;;;;;;;;;;-1:-1:-1;47187:32:0;;;;;;;;;;;46790:31;;;;;;;;;;-1:-1:-1;46790:31:0;;;;;;;;;;;12674:6:1;12662:19;;;12644:38;;12632:2;12617:18;46790:31:0;12500:188:1;46988:47:0;;;;;;;;;;-1:-1:-1;46988:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29850:164;;;;;;;;;;-1:-1:-1;29850:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29971:25:0;;;29947:4;29971:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29850:164;46649:81;;;;;;;;;;;;;:::i;45904:201::-;;;;;;;;;;-1:-1:-1;45904:201:0;;;;;:::i;:::-;;:::i;24600:305::-;24702:4;-1:-1:-1;;;;;;24739:40:0;;-1:-1:-1;;;24739:40:0;;:105;;-1:-1:-1;;;;;;;24796:48:0;;-1:-1:-1;;;24796:48:0;24739:105;:158;;;-1:-1:-1;;;;;;;;;;14634:40:0;;;24861:36;24719:178;24600:305;-1:-1:-1;;24600:305:0:o;51643:98::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;;;;;;;;;51716:14:::1;::::0;;-1:-1:-1;;51698:32:0;::::1;51716:14:::0;;;;::::1;;;51715:15;51698:32:::0;;::::1;;::::0;;51643:98::o;51903:119::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51970:9:::1;:22:::0;;-1:-1:-1;;51970:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51903:119::o;27713:100::-;27767:13;27800:5;27793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27713:100;:::o;29216:204::-;29284:7;29309:16;29317:7;29309;:16::i;:::-;29304:64;;29334:34;;-1:-1:-1;;;29334:34:0;;;;;;;;;;;29304:64;-1:-1:-1;29388:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29388:24:0;;29216:204::o;51557:80::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51618:8:::1;::::0;;-1:-1:-1;;51606:20:0;::::1;51618:8:::0;;;;::::1;;;51617:9;51606:20:::0;;::::1;;::::0;;51557:80::o;28779:371::-;28852:13;28868:24;28884:7;28868:15;:24::i;:::-;28852:40;;28913:5;-1:-1:-1;;;;;28907:11:0;:2;-1:-1:-1;;;;;28907:11:0;;28903:48;;;28927:24;;-1:-1:-1;;;28927:24:0;;;;;;;;;;;28903:48;3075:10;-1:-1:-1;;;;;28968:21:0;;;;;;:63;;-1:-1:-1;28994:37:0;29011:5;3075:10;29850:164;:::i;28994:37::-;28993:38;28968:63;28964:138;;;29055:35;;-1:-1:-1;;;29055:35:0;;;;;;;;;;;28964:138;29114:28;29123:2;29127:7;29136:5;29114:8;:28::i;:::-;28841:309;28779:371;;:::o;51363:102::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51437:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51363:102:::0;:::o;30081:170::-;30215:28;30225:4;30231:2;30235:7;30215:9;:28::i;48065:326::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;48148:18:::1;48176:13;24103:12:::0;;23893:7;24087:13;:28;;23849:303;48176:13:::1;48234:9;::::0;48148:42;;-1:-1:-1;48234:9:0::1;;48205:25;48219:11:::0;48148:42;48205:25:::1;:::i;:::-;:38;;;;48197:70;;;::::0;-1:-1:-1;;;48197:70:0;;9411:2:1;48197:70:0::1;::::0;::::1;9393:21:1::0;9450:2;9430:18;;;9423:30;-1:-1:-1;;;9469:18:1;;;9462:49;9528:18;;48197:70:0::1;9209:343:1::0;48197:70:0::1;48275:34;48285:9;48297:11;48275:34;;:9;:34::i;51473:74::-:0;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51530:6:::1;::::0;;-1:-1:-1;;51520:16:0;::::1;51530:6:::0;;;;::::1;;;51529:7;51520:16:::0;;::::1;;::::0;;51473:74::o;51828:70::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51887:6:::1;::::0;;-1:-1:-1;;51877:16:0;::::1;51887:6:::0;;;;::::1;;;51886:7;51877:16:::0;;::::1;;::::0;;51828:70::o;52041:144::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;52130:39:::1;::::0;52101:21:::1;::::0;52138:10:::1;::::0;52130:39;::::1;;;::::0;52101:21;;52085:13:::1;52130:39:::0;52085:13;52130:39;52101:21;52138:10;52130:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30322:185:::0;30460:39;30477:4;30483:2;30487:7;30460:39;;;;;;;;;;;;:16;:39::i;48397:78::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;48454:15:::1;48460:8;48454:5;:15::i;:::-;48397:78:::0;:::o;51747:76::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51803:4:::1;:12:::0;51747:76::o;49720:790::-;49831:17;49851:23;49863:10;49851:11;:23::i;:::-;49921:10;49885:19;49907:25;;;:13;:25;;;;;;;;;;49950:36;;;;;;;;;;;;;;;;49831:43;;-1:-1:-1;49907:25:0;;;49950:36;;49831:43;;49971:11;;;;;;49950:36;;;;49971:11;;49950:36;49971:11;49950:36;;;;;;;;;-1:-1:-1;49950:7:0;;-1:-1:-1;;;49950:36:0:i;:::-;49942:70;;;;-1:-1:-1;;;49942:70:0;;11237:2:1;49942:70:0;;;11219:21:1;11276:2;11256:18;;;11249:30;-1:-1:-1;;;11295:18:1;;;11288:50;11355:18;;49942:70:0;11035:344:1;49942:70:0;50062:22;;;;50031:27;50047:11;50031:13;:27;:::i;:::-;:53;;;;50022:93;;;;-1:-1:-1;;;50022:93:0;;;;;;;:::i;:::-;50143:8;;;;;;;50142:9;50134:48;;;;-1:-1:-1;;;50134:48:0;;10166:2:1;50134:48:0;;;10148:21:1;10205:2;10185:18;;;10178:30;10244:28;10224:18;;;10217:56;10290:18;;50134:48:0;9964:350:1;50134:48:0;50217:11;50210:18;;:4;;:18;;;;:::i;:::-;50197:9;:31;;50189:63;;;;-1:-1:-1;;;50189:63:0;;12354:2:1;50189:63:0;;;12336:21:1;12393:2;12373:18;;;12366:30;-1:-1:-1;;;12412:18:1;;;12405:49;12471:18;;50189:63:0;12152:343:1;50189:63:0;50264:18;50292:13;24103:12;;23893:7;24087:13;:28;;23849:303;50292:13;50264:42;;50314:35;50324:10;50337:11;50314:35;;:9;:35::i;:::-;50385:27;50401:11;50385:13;:27;:::i;:::-;50372:10;50358:25;;;;:13;:25;;;;;:54;;-1:-1:-1;;50358:54:0;;;;;;;;;;;;-1:-1:-1;;;;;;49720:790:0:o;27521:125::-;27585:7;27612:21;27625:7;27612:12;:21::i;:::-;:26;;27521:125;-1:-1:-1;;27521:125:0:o;47413:644::-;47472:18;47500:13;24103:12;;23893:7;24087:13;:28;;23849:303;47500:13;47558:9;;47472:42;;-1:-1:-1;47558:9:0;;47529:25;;;;47472:42;47529:25;:::i;:::-;:38;;;;47521:70;;;;-1:-1:-1;;;47521:70:0;;9411:2:1;47521:70:0;;;9393:21:1;9450:2;9430:18;;;9423:30;-1:-1:-1;;;9469:18:1;;;9462:49;9528:18;;47521:70:0;9209:343:1;47521:70:0;47636:10;47600:19;47622:25;;;:13;:25;;;;;;47705:22;;47622:25;;;;;47705:22;47674:27;47690:11;47622:25;47674:27;:::i;:::-;:53;;;;47665:93;;;;-1:-1:-1;;;47665:93:0;;;;;;;:::i;:::-;47789:6;;;;;;;47788:7;47780:43;;;;-1:-1:-1;;;47780:43:0;;11586:2:1;47780:43:0;;;11568:21:1;11625:2;11605:18;;;11598:30;11664:25;11644:18;;;11637:53;11707:18;;47780:43:0;11384:347:1;47780:43:0;47858:11;47851:18;;:4;;:18;;;;:::i;:::-;47838:9;:31;;47830:63;;;;-1:-1:-1;;;47830:63:0;;12354:2:1;47830:63:0;;;12336:21:1;12393:2;12373:18;;;12366:30;-1:-1:-1;;;12412:18:1;;;12405:49;12471:18;;47830:63:0;12152:343:1;47830:63:0;47902:35;47912:10;47925:11;47902:35;;:9;:35::i;:::-;47972:27;47988:11;47972:13;:27;:::i;:::-;47959:10;47945:25;;;;:13;:25;;;;;:54;;-1:-1:-1;;47945:54:0;;;;;;;;;;;;-1:-1:-1;;;47413:644:0:o;24969:206::-;25033:7;-1:-1:-1;;;;;25057:19:0;;25053:60;;25085:28;;-1:-1:-1;;;25085:28:0;;;;;;;;;;;25053:60;-1:-1:-1;;;;;;25139:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25139:27:0;;24969:206::o;45646:103::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;45711:30:::1;45738:1;45711:18;:30::i;:::-;45646:103::o:0;51256:102::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51330:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27882:104::-:0;27938:13;27971:7;27964:14;;;;;:::i;29492:287::-;-1:-1:-1;;;;;29591:24:0;;3075:10;29591:24;29587:54;;;29624:17;;-1:-1:-1;;;29624:17:0;;;;;;;;;;;29587:54;3075:10;29654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29654:53:0;;;;;;;;;;29723:48;;8751:41:1;;;29654:42:0;;3075:10;29723:48;;8724:18:1;29723:48:0;;;;;;;29492:287;;:::o;30578:369::-;30745:28;30755:4;30761:2;30765:7;30745:9;:28::i;:::-;-1:-1:-1;;;;;30788:13:0;;4737:19;:23;;30788:76;;;;;30808:56;30839:4;30845:2;30849:7;30858:5;30808:30;:56::i;:::-;30807:57;30788:76;30784:156;;;30888:40;;-1:-1:-1;;;30888:40:0;;;;;;;;;;;30784:156;30578:369;;;;:::o;49123:129::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;49196:22:::1;:31:::0;;-1:-1:-1;;49196:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49123:129::o;49254:142::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;49346:19:::1;:42:::0;49254:142::o;48488:490::-;48587:13;48628:17;48636:8;48628:7;:17::i;:::-;48612:98;;;;-1:-1:-1;;;48612:98:0;;11938:2:1;48612:98:0;;;11920:21:1;11977:2;11957:18;;;11950:30;12016:34;11996:18;;;11989:62;-1:-1:-1;;;12067:18:1;;;12060:45;12122:19;;48612:98:0;11736:411:1;48612:98:0;48728:6;;;;;;;48723:50;;48760:9;48753:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48488:490;;;:::o;48723:50::-;48787:28;48818:10;:8;:10::i;:::-;48787:41;;48873:1;48848:14;48842:28;:32;:130;;;;;;;;;;;;;;;;;48910:14;48926:19;:8;:17;:19::i;:::-;48947:9;48893:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48842:130;48835:137;48488:490;-1:-1:-1;;;48488:490:0:o;50518:732::-;50624:17;50644:23;50656:10;50644:11;:23::i;:::-;50719:10;50678:19;50700:30;;;:18;:30;;;;;;;;;;50748:36;;;;;;;;;;;;;;;;50624:43;;-1:-1:-1;50700:30:0;;;50748:36;;50624:43;;50769:11;;;;;;50748:36;;;;50769:11;;50748:36;50769:11;50748:36;;;;;;;;;-1:-1:-1;50748:7:0;;-1:-1:-1;;;50748:36:0:i;:::-;50740:70;;;;-1:-1:-1;;;50740:70:0;;11237:2:1;50740:70:0;;;11219:21:1;11276:2;11256:18;;;11249:30;-1:-1:-1;;;11295:18:1;;;11288:50;11355:18;;50740:70:0;11035:344:1;50740:70:0;50860:20;;;;;;;50829:27;50845:11;50829:13;:27;:::i;:::-;:51;;;;50820:91;;;;-1:-1:-1;;;50820:91:0;;;;;;;:::i;:::-;50939:14;;;;;;;50938:15;50930:54;;;;-1:-1:-1;;;50930:54:0;;10166:2:1;50930:54:0;;;10148:21:1;10205:2;10185:18;;;10178:30;10244:28;10224:18;;;10217:56;10290:18;;50930:54:0;9964:350:1;50930:54:0;50999:18;51027:13;24103:12;;23893:7;24087:13;:28;;23849:303;51027:13;50999:42;;51049:35;51059:10;51072:11;51049:35;;:9;:35::i;:::-;51125:27;51141:11;51125:13;:27;:::i;:::-;51112:10;51093:30;;;;:18;:30;;;;;:59;;-1:-1:-1;;51093:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;50518:732:0:o;46649:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45904:201::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45993:22:0;::::1;45985:73;;;::::0;-1:-1:-1;;;45985:73:0;;9759:2:1;45985:73:0::1;::::0;::::1;9741:21:1::0;9798:2;9778:18;;;9771:30;9837:34;9817:18;;;9810:62;-1:-1:-1;;;9888:18:1;;;9881:36;9934:19;;45985:73:0::1;9557:402:1::0;45985:73:0::1;46069:28;46088:8;46069:18;:28::i;31202:187::-:0;31259:4;31323:13;;31313:7;:23;31283:98;;;;-1:-1:-1;;31354:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31354:27:0;;;;31353:28;;31202:187::o;39372:196::-;39487:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39487:29:0;-1:-1:-1;;;;;39487:29:0;;;;;;;;;39532:28;;39487:24;;39532:28;;;;;;;39372:196;;;:::o;34315:2130::-;34430:35;34468:21;34481:7;34468:12;:21::i;:::-;34430:59;;34528:4;-1:-1:-1;;;;;34506:26:0;:13;:18;;;-1:-1:-1;;;;;34506:26:0;;34502:67;;34541:28;;-1:-1:-1;;;34541:28:0;;;;;;;;;;;34502:67;34582:22;3075:10;-1:-1:-1;;;;;34608:20:0;;;;:73;;-1:-1:-1;34645:36:0;34662:4;3075:10;29850:164;:::i;34645:36::-;34608:126;;;-1:-1:-1;3075:10:0;34698:20;34710:7;34698:11;:20::i;:::-;-1:-1:-1;;;;;34698:36:0;;34608:126;34582:153;;34753:17;34748:66;;34779:35;;-1:-1:-1;;;34779:35:0;;;;;;;;;;;34748:66;-1:-1:-1;;;;;34829:16:0;;34825:52;;34854:23;;-1:-1:-1;;;34854:23:0;;;;;;;;;;;34825:52;34998:35;35015:1;35019:7;35028:4;34998:8;:35::i;:::-;-1:-1:-1;;;;;35329:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35329:31:0;;;-1:-1:-1;;;;;35329:31:0;;;-1:-1:-1;;35329:31:0;;;;;;;35375:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35375:29:0;;;;;;;;;;;35455:20;;;:11;:20;;;;;;35490:18;;-1:-1:-1;;;;;;35523:49:0;;;;-1:-1:-1;;;35556:15:0;35523:49;;;;;;;;;;35846:11;;35906:24;;;;;35949:13;;35455:20;;35906:24;;35949:13;35945:384;;36159:13;;36144:11;:28;36140:174;;36197:20;;36266:28;;;;-1:-1:-1;;;;;36240:54:0;-1:-1:-1;;;36240:54:0;-1:-1:-1;;;;;;36240:54:0;;;-1:-1:-1;;;;;36197:20:0;;36240:54;;;;36140:174;35304:1036;;;36376:7;36372:2;-1:-1:-1;;;;;36357:27:0;36366:4;-1:-1:-1;;;;;36357:27:0;-1:-1:-1;;;;;;;;;;;36357:27:0;;;;;;;;;36395:42;34419:2026;;34315:2130;;;:::o;31397:104::-;31466:27;31476:2;31480:8;31466:27;;;;;;;;;;;;:9;:27::i;36528:89::-;36588:21;36594:7;36603:5;36588;:21::i;49410:138::-;49516:23;;-1:-1:-1;;6293:2:1;6289:15;;;6285:53;49516:23:0;;;6273:66:1;49469:12:0;;6355::1;;49516:23:0;;;;;;;;;;;;49506:34;;;;;;49499:41;;49410:138;;;:::o;49554:162::-;49632:4;49656:52;49675:5;49682:19;;49703:4;49656:18;:52::i;26350:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26461:7:0;26544:13;;26537:4;:20;26506:886;;;26578:31;26612:17;;;:11;:17;;;;;;;;;26578:51;;;;;;;;;-1:-1:-1;;;;;26578:51:0;;;;-1:-1:-1;;;26578:51:0;;-1:-1:-1;;;;;26578:51:0;;;;;;;;-1:-1:-1;;;26578:51:0;;;;;;;;;;;;;;26648:729;;26698:14;;-1:-1:-1;;;;;26698:28:0;;26694:101;;26762:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;26694:101::-;-1:-1:-1;;;27137:6:0;27182:17;;;;:11;:17;;;;;;;;;27170:29;;;;;;;;;-1:-1:-1;;;;;27170:29:0;;;;;-1:-1:-1;;;27170:29:0;;-1:-1:-1;;;;;27170:29:0;;;;;;;;-1:-1:-1;;;27170:29:0;;;;;;;;;;;;;27230:28;27226:109;;27298:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;27226:109::-;27097:261;;;26559:833;26506:886;27420:31;;-1:-1:-1;;;27420:31:0;;;;;;;;;;;46265:191;46358:6;;;-1:-1:-1;;;;;46375:17:0;;;-1:-1:-1;;;;;;46375:17:0;;;;;;;46408:40;;46358:6;;;46375:17;46358:6;;46408:40;;46339:16;;46408:40;46328:128;46265:191;:::o;40060:667::-;40244:72;;-1:-1:-1;;;40244:72:0;;40223:4;;-1:-1:-1;;;;;40244:36:0;;;;;:72;;3075:10;;40295:4;;40301:7;;40310:5;;40244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:72:0;;;;;;;;-1:-1:-1;;40244:72:0;;;;;;;;;;;;:::i;:::-;;;40240:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40478:13:0;;40474:235;;40524:40;;-1:-1:-1;;;40524:40:0;;;;;;;;;;;40474:235;40667:6;40661:13;40652:6;40648:2;40644:15;40637:38;40240:480;-1:-1:-1;;;;;;40363:55:0;-1:-1:-1;;;40363:55:0;;-1:-1:-1;40240:480:0;40060:667;;;;;;:::o;52193:97::-;52246:13;52275:9;52268:16;;;;;:::i;557:723::-;613:13;834:10;830:53;;-1:-1:-1;;861:10:0;;;;;;;;;;;;-1:-1:-1;;;861:10:0;;;;;557:723::o;830:53::-;908:5;893:12;949:78;956:9;;949:78;;982:8;;;;:::i;:::-;;-1:-1:-1;1005:10:0;;-1:-1:-1;1013:2:0;1005:10;;:::i;:::-;;;949:78;;;1037:19;1069:6;-1:-1:-1;;;;;1059:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1059:17:0;;1037:39;;1087:154;1094:10;;1087:154;;1121:11;1131:1;1121:11;;:::i;:::-;;-1:-1:-1;1190:10:0;1198:2;1190:5;:10;:::i;:::-;1177:24;;:2;:24;:::i;:::-;1164:39;;1147:6;1154;1147:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1147:56:0;;;;;;;;-1:-1:-1;1218:11:0;1227:2;1218:11;;:::i;:::-;;;1087:154;;31864:163;31987:32;31993:2;31997:8;32007:5;32014:4;31987:5;:32::i;36846:2408::-;36926:35;36964:21;36977:7;36964:12;:21::i;:::-;37013:18;;36926:59;;-1:-1:-1;37044:290:0;;;;37078:22;3075:10;-1:-1:-1;;;;;37104:20:0;;;;:77;;-1:-1:-1;37145:36:0;37162:4;3075:10;29850:164;:::i;37145:36::-;37104:134;;;-1:-1:-1;3075:10:0;37202:20;37214:7;37202:11;:20::i;:::-;-1:-1:-1;;;;;37202:36:0;;37104:134;37078:161;;37261:17;37256:66;;37287:35;;-1:-1:-1;;;37287:35:0;;;;;;;;;;;37256:66;37063:271;37044:290;37462:35;37479:1;37483:7;37492:4;37462:8;:35::i;:::-;-1:-1:-1;;;;;37827:18:0;;;37793:31;37827:18;;;:12;:18;;;;;;;;37860:24;;-1:-1:-1;;;;;;;;;;37860:24:0;;;;;;;;;-1:-1:-1;;37860:24:0;;;;37899:29;;;;;37883:1;37899:29;;;;;;;;-1:-1:-1;;37899:29:0;;;;;;;;;;38061:20;;;:11;:20;;;;;;38096;;-1:-1:-1;;;;38164:15:0;38131:49;;;-1:-1:-1;;;38131:49:0;-1:-1:-1;;;;;;38131:49:0;;;;;;;;;;38195:22;-1:-1:-1;;;38195:22:0;;;38487:11;;;38547:24;;;;;38590:13;;37827:18;;38547:24;;38590:13;38586:384;;38800:13;;38785:11;:28;38781:174;;38838:20;;38907:28;;;;-1:-1:-1;;;;;38881:54:0;-1:-1:-1;;;38881:54:0;-1:-1:-1;;;;;;38881:54:0;;;-1:-1:-1;;;;;38838:20:0;;38881:54;;;;38781:174;-1:-1:-1;;38998:35:0;;39025:7;;-1:-1:-1;39021:1:0;;-1:-1:-1;;;;;;38998:35:0;;;-1:-1:-1;;;;;;;;;;;38998:35:0;39021:1;;38998:35;-1:-1:-1;;39221:12:0;:14;;;;;;-1:-1:-1;;36846:2408:0:o;43118:190::-;43243:4;43296;43267:25;43280:5;43287:4;43267:12;:25::i;:::-;:33;;43118:190;-1:-1:-1;;;;43118:190:0:o;32286:1775::-;32425:20;32448:13;-1:-1:-1;;;;;32476:16:0;;32472:48;;32501:19;;-1:-1:-1;;;32501:19:0;;;;;;;;;;;32472:48;32535:13;32531:44;;32557:18;;-1:-1:-1;;;32557:18:0;;;;;;;;;;;32531:44;-1:-1:-1;;;;;32926:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32985:49:0;;-1:-1:-1;;;;;32926:44:0;;;;;;;32985:49;;;;-1:-1:-1;;32926:44:0;;;;;;32985:49;;;;;;;;;;;;;;;;33051:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33101:66:0;;;;-1:-1:-1;;;33151:15:0;33101:66;;;;;;;;;;33051:25;33248:23;;;33292:4;:23;;;;-1:-1:-1;;;;;;33300:13:0;;4737:19;:23;;33300:15;33288:641;;;33336:314;33367:38;;33392:12;;-1:-1:-1;;;;;33367:38:0;;;33384:1;;-1:-1:-1;;;;;;;;;;;33367:38:0;33384:1;;33367:38;33433:69;33472:1;33476:2;33480:14;;;;;;33496:5;33433:30;:69::i;:::-;33428:174;;33538:40;;-1:-1:-1;;;33538:40:0;;;;;;;;;;;33428:174;33645:3;33629:12;:19;;33336:314;;33731:12;33714:13;;:29;33710:43;;33745:8;;;33710:43;33288:641;;;33794:120;33825:40;;33850:14;;;;;-1:-1:-1;;;;;33825:40:0;;;33842:1;;-1:-1:-1;;;;;;;;;;;33825:40:0;33842:1;;33825:40;33909:3;33893:12;:19;;33794:120;;33288:641;-1:-1:-1;33943:13:0;:28;33993:60;30578:369;43670:675;43753:7;43796:4;43753:7;43811:497;43835:5;:12;43831:1;:16;43811:497;;;43869:20;43892:5;43898:1;43892:8;;;;;;;;:::i;:::-;;;;;;;43869:31;;43935:12;43919;:28;43915:382;;44421:13;44471:15;;;44507:4;44500:15;;;44554:4;44538:21;;44047:57;;43915:382;;;44421:13;44471:15;;;44507:4;44500:15;;;44554:4;44538:21;;44224:57;;43915:382;-1:-1:-1;43849:3:0;;;;:::i;:::-;;;;43811:497;;;-1:-1:-1;44325:12:0;43670:675;-1:-1:-1;;;43670:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;-1:-1:-1;;;;;2361:6:1;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:180::-;3283:6;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;-1:-1:-1;3375:23:1;;3224:180;-1:-1:-1;3224:180:1:o;3409:245::-;3467:6;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3575:9;3562:23;3594:30;3618:5;3594:30;:::i;3659:249::-;3728:6;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3829:9;3823:16;3848:30;3872:5;3848:30;:::i;3913:450::-;3982:6;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4091:9;4078:23;-1:-1:-1;;;;;4116:6:1;4113:30;4110:50;;;4156:1;4153;4146:12;4110:50;4179:22;;4232:4;4224:13;;4220:27;-1:-1:-1;4210:55:1;;4261:1;4258;4251:12;4210:55;4284:73;4349:7;4344:2;4331:16;4326:2;4322;4318:11;4284:73;:::i;4368:184::-;4426:6;4479:2;4467:9;4458:7;4454:23;4450:32;4447:52;;;4495:1;4492;4485:12;4447:52;4518:28;4536:9;4518:28;:::i;4557:258::-;4624:6;4632;4685:2;4673:9;4664:7;4660:23;4656:32;4653:52;;;4701:1;4698;4691:12;4653:52;4724:28;4742:9;4724:28;:::i;5005:182::-;5062:6;5115:2;5103:9;5094:7;5090:23;5086:32;5083:52;;;5131:1;5128;5121:12;5083:52;5154:27;5171:9;5154:27;:::i;5192:685::-;5285:6;5293;5301;5354:2;5342:9;5333:7;5329:23;5325:32;5322:52;;;5370:1;5367;5360:12;5322:52;5393:27;5410:9;5393:27;:::i;:::-;5383:37;;5471:2;5460:9;5456:18;5443:32;-1:-1:-1;;;;;5535:2:1;5527:6;5524:14;5521:34;;;5551:1;5548;5541:12;5521:34;5589:6;5578:9;5574:22;5564:32;;5634:7;5627:4;5623:2;5619:13;5615:27;5605:55;;5656:1;5653;5646:12;5605:55;5696:2;5683:16;5722:2;5714:6;5711:14;5708:34;;;5738:1;5735;5728:12;5708:34;5791:7;5786:2;5776:6;5773:1;5769:14;5765:2;5761:23;5757:32;5754:45;5751:65;;;5812:1;5809;5802:12;5751:65;5843:2;5839;5835:11;5825:21;;5865:6;5855:16;;;;;5192:685;;;;;:::o;5882:257::-;5923:3;5961:5;5955:12;5988:6;5983:3;5976:19;6004:63;6060:6;6053:4;6048:3;6044:14;6037:4;6030:5;6026:16;6004:63;:::i;:::-;6121:2;6100:15;-1:-1:-1;;6096:29:1;6087:39;;;;6128:4;6083:50;;5882:257;-1:-1:-1;;5882:257:1:o;6378:1527::-;6602:3;6640:6;6634:13;6666:4;6679:51;6723:6;6718:3;6713:2;6705:6;6701:15;6679:51;:::i;:::-;6793:13;;6752:16;;;;6815:55;6793:13;6752:16;6837:15;;;6815:55;:::i;:::-;6959:13;;6892:20;;;6932:1;;7019;7041:18;;;;7094;;;;7121:93;;7199:4;7189:8;7185:19;7173:31;;7121:93;7262:2;7252:8;7249:16;7229:18;7226:40;7223:167;;;-1:-1:-1;;;7289:33:1;;7345:4;7342:1;7335:15;7375:4;7296:3;7363:17;7223:167;7406:18;7433:110;;;;7557:1;7552:328;;;;7399:481;;7433:110;-1:-1:-1;;7468:24:1;;7454:39;;7513:20;;;;-1:-1:-1;7433:110:1;;7552:328;13137:1;13130:14;;;13174:4;13161:18;;7647:1;7661:169;7675:8;7672:1;7669:15;7661:169;;;7757:14;;7742:13;;;7735:37;7800:16;;;;7692:10;;7661:169;;;7665:3;;7861:8;7854:5;7850:20;7843:27;;7399:481;-1:-1:-1;7896:3:1;;6378:1527;-1:-1:-1;;;;;;;;;;;6378:1527:1:o;8118:488::-;-1:-1:-1;;;;;8387:15:1;;;8369:34;;8439:15;;8434:2;8419:18;;8412:43;8486:2;8471:18;;8464:34;;;8534:3;8529:2;8514:18;;8507:31;;;8312:4;;8555:45;;8580:19;;8572:6;8555:45;:::i;:::-;8547:53;8118:488;-1:-1:-1;;;;;;8118:488:1:o;8985:219::-;9134:2;9123:9;9116:21;9097:4;9154:44;9194:2;9183:9;9179:18;9171:6;9154:44;:::i;10319:350::-;10521:2;10503:21;;;10560:2;10540:18;;;10533:30;10599:28;10594:2;10579:18;;10572:56;10660:2;10645:18;;10319:350::o;10674:356::-;10876:2;10858:21;;;10895:18;;;10888:30;10954:34;10949:2;10934:18;;10927:62;11021:2;11006:18;;10674:356::o;13190:224::-;13229:3;13257:6;13290:2;13287:1;13283:10;13320:2;13317:1;13313:10;13351:3;13347:2;13343:12;13338:3;13335:21;13332:47;;;13359:18;;:::i;:::-;13395:13;;13190:224;-1:-1:-1;;;;13190:224:1:o;13419:128::-;13459:3;13490:1;13486:6;13483:1;13480:13;13477:39;;;13496:18;;:::i;:::-;-1:-1:-1;13532:9:1;;13419:128::o;13552:204::-;13590:3;13626:4;13623:1;13619:12;13658:4;13655:1;13651:12;13693:3;13687:4;13683:14;13678:3;13675:23;13672:49;;;13701:18;;:::i;:::-;13737:13;;13552:204;-1:-1:-1;;;13552:204:1:o;13761:120::-;13801:1;13827;13817:35;;13832:18;;:::i;:::-;-1:-1:-1;13866:9:1;;13761:120::o;13886:168::-;13926:7;13992:1;13988;13984:6;13980:14;13977:1;13974:21;13969:1;13962:9;13955:17;13951:45;13948:71;;;13999:18;;:::i;:::-;-1:-1:-1;14039:9:1;;13886:168::o;14059:125::-;14099:4;14127:1;14124;14121:8;14118:34;;;14132:18;;:::i;:::-;-1:-1:-1;14169:9:1;;14059:125::o;14189:258::-;14261:1;14271:113;14285:6;14282:1;14279:13;14271:113;;;14361:11;;;14355:18;14342:11;;;14335:39;14307:2;14300:10;14271:113;;;14402:6;14399:1;14396:13;14393:48;;;-1:-1:-1;;14437:1:1;14419:16;;14412:27;14189:258::o;14452:380::-;14531:1;14527:12;;;;14574;;;14595:61;;14649:4;14641:6;14637:17;14627:27;;14595:61;14702:2;14694:6;14691:14;14671:18;14668:38;14665:161;;;14748:10;14743:3;14739:20;14736:1;14729:31;14783:4;14780:1;14773:15;14811:4;14808:1;14801:15;14665:161;;14452:380;;;:::o;14837:135::-;14876:3;-1:-1:-1;;14897:17:1;;14894:43;;;14917:18;;:::i;:::-;-1:-1:-1;14964:1:1;14953:13;;14837:135::o;14977:112::-;15009:1;15035;15025:35;;15040:18;;:::i;:::-;-1:-1:-1;15074:9:1;;14977:112::o;15094:127::-;15155:10;15150:3;15146:20;15143:1;15136:31;15186:4;15183:1;15176:15;15210:4;15207:1;15200:15;15226:127;15287:10;15282:3;15278:20;15275:1;15268:31;15318:4;15315:1;15308:15;15342:4;15339:1;15332:15;15358:127;15419:10;15414:3;15410:20;15407:1;15400:31;15450:4;15447:1;15440:15;15474:4;15471:1;15464:15;15490:127;15551:10;15546:3;15542:20;15539:1;15532:31;15582:4;15579:1;15572:15;15606:4;15603:1;15596:15;15622:131;-1:-1:-1;;;;;;15696:32:1;;15686:43;;15676:71;;15743:1;15740;15733:12

Swarm Source

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