ETH Price: $3,063.94 (+1.32%)
Gas: 3 Gwei

Token

RoboFrens (ROBO)
 

Overview

Max Total Supply

777 ROBO

Holders

259

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pamelanotpam.eth
Balance
1 ROBO
0xb373cd7f2c81bbc59d909a222b120c2689ac00c2
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:
RoboFrens

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-02-22
*/

// SPDX-License-Identifier: MIT
// 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/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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

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)
        }
    }
}

// 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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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, IERC721Enumerable {
    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;
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/RoboFrens.sol


pragma solidity >=0.7.0 <0.9.0;

// import "@openzeppelin/contracts/token/ERC721/ERC721.sol";




contract RoboFrens is ERC721A, Ownable {
    using Strings for uint256;

    enum ContractMintState { PAUSED, ALLOWLIST, PUBLIC }

    ContractMintState public state = ContractMintState.PAUSED;

    string public uriPrefix = "";
    string public hiddenMetadataUri = "ipfs://QmQp2XakuACyV72jauBpbFX9Usd9eu3HaKmBLcgePV5GPC/prereveal.json";

    uint256 public allowlistCost = 0.05 ether;
    uint256 public publicCost = 0.07 ether;
    uint256 public maxSupply = 7777;
    uint256 public maxMintAmountPerTx = 10;

    bool public revealed = false;

    bytes32 public whitelistMerkleRoot = 0xf44daa990333ba115984b1f61962ae748d7ce374e46d3ecb60b687a52e057d34;
    
    constructor() ERC721A("RoboFrens", "ROBO") {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
        require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded");
        _;
    }

    function setState(ContractMintState _state) public onlyOwner {
        state = _state;
    }

    function numberMinted(address _minter) public view returns (uint256) {
        return _numberMinted(_minter);
    }

    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

    function _leaf(address account, uint256 allowance) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account, allowance));
    }

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

    function mint(uint256 amount) public payable mintCompliance(amount) {
        require(state == ContractMintState.PUBLIC, "Public mint is disabled");
        require(msg.value >= publicCost * amount, "Insufficient funds");

        _safeMint(msg.sender, amount);
    }

    function mintAllowList(uint256 amount, uint allowance, bytes32[] calldata proof) public payable mintCompliance(amount) {
        require(state == ContractMintState.ALLOWLIST, "Allowlist mint is disabled"); 
        require(msg.value >= allowlistCost * amount, "Insufficient funds");
        require(numberMinted(msg.sender) + amount <= allowance, "Can't mint that many");
        require(_verify(_leaf(msg.sender, allowance), proof), "Invalid proof");

        _safeMint(msg.sender, amount);
    }

    // Minting function for team
    function mintForAddress(uint256 amount, address _receiver) public mintCompliance(amount) onlyOwner {
        _safeMint(_receiver, amount);
    }

    // Get all tokens owned by _owner
    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownerTokens = new uint256[](ownerTokenCount);
        uint256 ownerTokenIdx = 0;
        for (uint256 tokenIdx = 0; tokenIdx < totalSupply(); tokenIdx++) {
            if (ownerOf(tokenIdx) == _owner) {
                ownerTokens[ownerTokenIdx] = tokenIdx;
                ownerTokenIdx++;
            }
        }
        return ownerTokens;
    }

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

        if (!revealed) {
            return hiddenMetadataUri;
        }

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

    function setRevealed(bool _revealed) public onlyOwner {
        revealed = _revealed;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function withdraw() public onlyOwner {
        uint256 contractBalance = address(this).balance;
        bool success = true;

        (success, ) = payable(0x23Ca4447aE0fb7607C44e9aC9F9A3D9C1DC9504E).call{value: 150 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0x69BF2F3533a40010E208D8b0C0E982f6F558fA9B).call{value: 150 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0x6bE687A5143Ff5220CC5f4B3c6a43468b5331bc1).call{value: 30 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0x251F9970062E9810102762aA92546261128C702C).call{value: 30 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0xC7Ff430E64d3615bE49136BD370158fDBeBC1784).call{value: 30 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0x028ba99Ce7454407E0aB7e3e981db148E74b10e4).call{value: 30 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0xCb28ffdACAf576086Aec0FAFe08d2e1272BBa460).call{value: 30 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0x44230C74E406d5690333ba81b198441bCF02CEc8).call{value: 25 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0xFA9A358b821f4b4A1B5ac2E0c594bB3f860AFbd8).call{value: 25 * contractBalance / 1000}("");
        require(success, "Transfer failed");

        (success, ) = payable(0x556b25640a632695150200F1c83E04108d60Ed4b).call{value: 500 * contractBalance / 1000}("");
        require(success, "Transfer failed");
    }

    function _baseURI() internal view virtual 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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":[],"name":"allowlistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum RoboFrens.ContractMintState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum RoboFrens.ContractMintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008805460ff60a01b1916905560a0604081905260006080819052620000289160099162000193565b5060405180608001604052806044815260200162002d736044913980516200005991600a9160209091019062000193565b5066b1a2bc2ec50000600b5566f8b0a10e470000600c55611e61600d55600a600e55600f805460ff191690557ff44daa990333ba115984b1f61962ae748d7ce374e46d3ecb60b687a52e057d34601055348015620000b657600080fd5b506040805180820182526009815268526f626f4672656e7360b81b602080830191825283518085019094526004845263524f424f60e01b908401528151919291620001049160029162000193565b5080516200011a90600390602084019062000193565b50505062000137620001316200013d60201b60201c565b62000141565b62000276565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a19062000239565b90600052602060002090601f016020900481019282620001c5576000855562000210565b82601f10620001e057805160ff191683800117855562000210565b8280016001018555821562000210579182015b8281111562000210578251825591602001919060010190620001f3565b506200021e92915062000222565b5090565b5b808211156200021e576000815560010162000223565b600181811c908216806200024e57607f821691505b602082108114156200027057634e487b7160e01b600052602260045260246000fd5b50919050565b612aed80620002866000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610639578063e0a8085314610659578063e985e9c514610679578063efbd73f4146106c2578063f2fde38b146106e257600080fd5b8063b88d4fde14610595578063bd32fb66146105b5578063c19d93fb146105d5578063c87b56dd14610603578063d5abeb011461062357600080fd5b806395d89b41116100f257806395d89b4114610522578063a0712d6814610537578063a22cb4651461054a578063a45ba8e71461056a578063aa98e0c61461057f57600080fd5b8063715018a6146104a35780637ec4a659146104b85780638693da20146104d85780638da5cb5b146104ee57806394354fd01461050c57600080fd5b806342842e0e116101bc57806356de96db1161018057806356de96db14610418578063612abd441461043857806362b99ad41461044e5780636352211e1461046357806370a082311461048357600080fd5b806342842e0e14610371578063438b6300146103915780634f6ccce7146103be5780634fdd43cb146103de57806351830227146103fe57600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd146103095780632f745c591461032957806334281c9d146103495780633ccfd60b1461035c57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612614565b610702565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61076f565b6040516102619190612870565b34801561029857600080fd5b506102ac6102a73660046125fb565b610801565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046125b6565b610845565b005b3480156102f257600080fd5b50600154600054035b604051908152602001610261565b34801561031557600080fd5b506102e46103243660046124d5565b6108d3565b34801561033557600080fd5b506102fb6103443660046125b6565b6108de565b6102e46103573660046126da565b6109d1565b34801561036857600080fd5b506102e4610c24565b34801561037d57600080fd5b506102e461038c3660046124d5565b611200565b34801561039d57600080fd5b506103b16103ac366004612487565b61121b565b6040516102619190612804565b3480156103ca57600080fd5b506102fb6103d93660046125fb565b6112ec565b3480156103ea57600080fd5b506102e46103f936600461266f565b61138d565b34801561040a57600080fd5b50600f546102559060ff1681565b34801561042457600080fd5b506102e461043336600461264e565b6113ca565b34801561044457600080fd5b506102fb600b5481565b34801561045a57600080fd5b5061027f611421565b34801561046f57600080fd5b506102ac61047e3660046125fb565b6114af565b34801561048f57600080fd5b506102fb61049e366004612487565b6114c1565b3480156104af57600080fd5b506102e461150f565b3480156104c457600080fd5b506102e46104d336600461266f565b611545565b3480156104e457600080fd5b506102fb600c5481565b3480156104fa57600080fd5b506008546001600160a01b03166102ac565b34801561051857600080fd5b506102fb600e5481565b34801561052e57600080fd5b5061027f611582565b6102e46105453660046125fb565b611591565b34801561055657600080fd5b506102e461056536600461258c565b6116c2565b34801561057657600080fd5b5061027f611758565b34801561058b57600080fd5b506102fb60105481565b3480156105a157600080fd5b506102e46105b0366004612511565b611765565b3480156105c157600080fd5b506102e46105d03660046125fb565b61179f565b3480156105e157600080fd5b506008546105f690600160a01b900460ff1681565b6040516102619190612848565b34801561060f57600080fd5b5061027f61061e3660046125fb565b6117ce565b34801561062f57600080fd5b506102fb600d5481565b34801561064557600080fd5b506102fb610654366004612487565b611935565b34801561066557600080fd5b506102e46106743660046125e0565b611940565b34801561068557600080fd5b506102556106943660046124a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102e46106dd3660046126b7565b61197d565b3480156106ee57600080fd5b506102e46106fd366004612487565b611a19565b60006001600160e01b031982166380ac58cd60e01b148061073357506001600160e01b03198216635b5e139f60e01b145b8061074e57506001600160e01b0319821663780e9d6360e01b145b8061076957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077e906129c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa906129c9565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b600061080c82611ab4565b610829576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610850826114af565b9050806001600160a01b0316836001600160a01b031614156108855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108a557506108a38133610694565b155b156108c3576040516367d9dca160e11b815260040160405180910390fd5b6108ce838383611adf565b505050565b6108ce838383611b3b565b60006108e9836114c1565b8210610908576040516306ed618760e11b815260040160405180910390fd5b600080549080805b838110156109cb57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061097757506109c3565b80516001600160a01b03161561098c57805192505b876001600160a01b0316836001600160a01b031614156109c157868414156109ba5750935061076992505050565b6001909301925b505b600101610910565b50600080fd5b836000811180156109e45750600e548111155b610a095760405162461bcd60e51b8152600401610a009061290e565b60405180910390fd5b600d5481610a1a6001546000540390565b610a24919061293b565b1115610a425760405162461bcd60e51b8152600401610a0090612883565b6001600854600160a01b900460ff166002811115610a6257610a62612a5f565b14610aaf5760405162461bcd60e51b815260206004820152601a60248201527f416c6c6f776c697374206d696e742069732064697361626c65640000000000006044820152606401610a00565b84600b54610abd9190612967565b341015610b015760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a00565b8385610b0c33611935565b610b16919061293b565b1115610b5b5760405162461bcd60e51b815260206004820152601460248201527343616e2774206d696e742074686174206d616e7960601b6044820152606401610a00565b604080513360601b6bffffffffffffffffffffffff191660208083019190915260348083018890528351808403909101815260549092019092528051910120610bd790848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611d4c92505050565b610c135760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610a00565b610c1d3386611d5b565b5050505050565b6008546001600160a01b03163314610c4e5760405162461bcd60e51b8152600401610a00906128d9565b4760017323ca4447ae0fb7607c44e9ac9f9a3d9c1dc9504e6103e8610c74846096612967565b610c7e9190612953565b604051600081818185875af1925050503d8060008114610cba576040519150601f19603f3d011682016040523d82523d6000602084013e610cbf565b606091505b50508091505080610ce25760405162461bcd60e51b8152600401610a00906128b0565b7369bf2f3533a40010e208d8b0c0e982f6f558fa9b6103e8610d05846096612967565b610d0f9190612953565b604051600081818185875af1925050503d8060008114610d4b576040519150601f19603f3d011682016040523d82523d6000602084013e610d50565b606091505b50508091505080610d735760405162461bcd60e51b8152600401610a00906128b0565b736be687a5143ff5220cc5f4b3c6a43468b5331bc16103e8610d9684601e612967565b610da09190612953565b604051600081818185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b50508091505080610e045760405162461bcd60e51b8152600401610a00906128b0565b73251f9970062e9810102762aa92546261128c702c6103e8610e2784601e612967565b610e319190612953565b604051600081818185875af1925050503d8060008114610e6d576040519150601f19603f3d011682016040523d82523d6000602084013e610e72565b606091505b50508091505080610e955760405162461bcd60e51b8152600401610a00906128b0565b73c7ff430e64d3615be49136bd370158fdbebc17846103e8610eb884601e612967565b610ec29190612953565b604051600081818185875af1925050503d8060008114610efe576040519150601f19603f3d011682016040523d82523d6000602084013e610f03565b606091505b50508091505080610f265760405162461bcd60e51b8152600401610a00906128b0565b73028ba99ce7454407e0ab7e3e981db148e74b10e46103e8610f4984601e612967565b610f539190612953565b604051600081818185875af1925050503d8060008114610f8f576040519150601f19603f3d011682016040523d82523d6000602084013e610f94565b606091505b50508091505080610fb75760405162461bcd60e51b8152600401610a00906128b0565b73cb28ffdacaf576086aec0fafe08d2e1272bba4606103e8610fda84601e612967565b610fe49190612953565b604051600081818185875af1925050503d8060008114611020576040519150601f19603f3d011682016040523d82523d6000602084013e611025565b606091505b505080915050806110485760405162461bcd60e51b8152600401610a00906128b0565b7344230c74e406d5690333ba81b198441bcf02cec86103e861106b846019612967565b6110759190612953565b604051600081818185875af1925050503d80600081146110b1576040519150601f19603f3d011682016040523d82523d6000602084013e6110b6565b606091505b505080915050806110d95760405162461bcd60e51b8152600401610a00906128b0565b73fa9a358b821f4b4a1b5ac2e0c594bb3f860afbd86103e86110fc846019612967565b6111069190612953565b604051600081818185875af1925050503d8060008114611142576040519150601f19603f3d011682016040523d82523d6000602084013e611147565b606091505b5050809150508061116a5760405162461bcd60e51b8152600401610a00906128b0565b73556b25640a632695150200f1c83e04108d60ed4b6103e861118e846101f4612967565b6111989190612953565b604051600081818185875af1925050503d80600081146111d4576040519150601f19603f3d011682016040523d82523d6000602084013e6111d9565b606091505b505080915050806111fc5760405162461bcd60e51b8152600401610a00906128b0565b5050565b6108ce83838360405180602001604052806000815250611765565b60606000611228836114c1565b90506000816001600160401b0381111561124457611244612a8b565b60405190808252806020026020018201604052801561126d578160200160208202803683370190505b5090506000805b600154600054038110156112e257856001600160a01b0316611295826114af565b6001600160a01b031614156112d057808383815181106112b7576112b7612a75565b6020908102919091010152816112cc81612a04565b9250505b806112da81612a04565b915050611274565b5090949350505050565b6000805481805b8281101561137357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061136a57858314156113635750949350505050565b6001909201915b506001016112f3565b506040516329c8c00760e21b815260040160405180910390fd5b6008546001600160a01b031633146113b75760405162461bcd60e51b8152600401610a00906128d9565b80516111fc90600a90602084019061234d565b6008546001600160a01b031633146113f45760405162461bcd60e51b8152600401610a00906128d9565b6008805482919060ff60a01b1916600160a01b83600281111561141957611419612a5f565b021790555050565b6009805461142e906129c9565b80601f016020809104026020016040519081016040528092919081815260200182805461145a906129c9565b80156114a75780601f1061147c576101008083540402835291602001916114a7565b820191906000526020600020905b81548152906001019060200180831161148a57829003601f168201915b505050505081565b60006114ba82611d75565b5192915050565b60006001600160a01b0382166114ea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146115395760405162461bcd60e51b8152600401610a00906128d9565b6115436000611e8e565b565b6008546001600160a01b0316331461156f5760405162461bcd60e51b8152600401610a00906128d9565b80516111fc90600990602084019061234d565b60606003805461077e906129c9565b806000811180156115a45750600e548111155b6115c05760405162461bcd60e51b8152600401610a009061290e565b600d54816115d16001546000540390565b6115db919061293b565b11156115f95760405162461bcd60e51b8152600401610a0090612883565b6002600854600160a01b900460ff16600281111561161957611619612a5f565b146116665760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e742069732064697361626c65640000000000000000006044820152606401610a00565b81600c546116749190612967565b3410156116b85760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a00565b6111fc3383611d5b565b6001600160a01b0382163314156116ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461142e906129c9565b611770848484611b3b565b61177c84848484611ee0565b611799576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146117c95760405162461bcd60e51b8152600401610a00906128d9565b601055565b60606117d982611ab4565b61183d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a00565b600f5460ff166118d957600a8054611854906129c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611880906129c9565b80156118cd5780601f106118a2576101008083540402835291602001916118cd565b820191906000526020600020905b8154815290600101906020018083116118b057829003601f168201915b50505050509050919050565b60006118e3611fef565b90506000815111611903576040518060200160405280600081525061192e565b8061190d84611ffe565b60405160200161191e929190612788565b6040516020818303038152906040525b9392505050565b6000610769826120fb565b6008546001600160a01b0316331461196a5760405162461bcd60e51b8152600401610a00906128d9565b600f805460ff1916911515919091179055565b816000811180156119905750600e548111155b6119ac5760405162461bcd60e51b8152600401610a009061290e565b600d54816119bd6001546000540390565b6119c7919061293b565b11156119e55760405162461bcd60e51b8152600401610a0090612883565b6008546001600160a01b03163314611a0f5760405162461bcd60e51b8152600401610a00906128d9565b6108ce8284611d5b565b6008546001600160a01b03163314611a435760405162461bcd60e51b8152600401610a00906128d9565b6001600160a01b038116611aa85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a00565b611ab181611e8e565b50565b6000805482108015610769575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b4682611d75565b80519091506000906001600160a01b0316336001600160a01b03161480611b7457508151611b749033610694565b80611b8f575033611b8484610801565b6001600160a01b0316145b905080611baf57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611be45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611c0b57604051633a954ecd60e21b815260040160405180910390fd5b611c1b6000848460000151611adf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611d0557600054811015611d0557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c1d565b600061192e8260105485612150565b6111fc828260405180602001604052806000815250612166565b6040805160608101825260008082526020820181905291810182905290548290811015611e7557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e735780516001600160a01b031615611e0a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e6e579392505050565b611e0a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611fe357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f249033908990889088906004016127c7565b602060405180830381600087803b158015611f3e57600080fd5b505af1925050508015611f6e575060408051601f3d908101601f19168201909252611f6b91810190612631565b60015b611fc9573d808015611f9c576040519150601f19603f3d011682016040523d82523d6000602084013e611fa1565b606091505b508051611fc1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fe7565b5060015b949350505050565b60606009805461077e906129c9565b6060816120225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561204c578061203681612a04565b91506120459050600a83612953565b9150612026565b6000816001600160401b0381111561206657612066612a8b565b6040519080825280601f01601f191660200182016040528015612090576020820181803683370190505b5090505b8415611fe7576120a5600183612986565b91506120b2600a86612a1f565b6120bd90603061293b565b60f81b8183815181106120d2576120d2612a75565b60200101906001600160f81b031916908160001a9053506120f4600a86612953565b9450612094565b60006001600160a01b038216612124576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b60008261215d8584612173565b14949350505050565b6108ce83838360016121e7565b600081815b84518110156121df57600085828151811061219557612195612a75565b602002602001015190508083116121bb57600083815260208290526040902092506121cc565b600081815260208490526040902092505b50806121d781612a04565b915050612178565b509392505050565b6000546001600160a01b03851661221057604051622e076360e81b815260040160405180910390fd5b8361222e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156123445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561231a57506123186000888488611ee0565b155b15612338576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016122c3565b50600055610c1d565b828054612359906129c9565b90600052602060002090601f01602090048101928261237b57600085556123c1565b82601f1061239457805160ff19168380011785556123c1565b828001600101855582156123c1579182015b828111156123c15782518255916020019190600101906123a6565b506123cd9291506123d1565b5090565b5b808211156123cd57600081556001016123d2565b60006001600160401b038084111561240057612400612a8b565b604051601f8501601f19908116603f0116810190828211818310171561242857612428612a8b565b8160405280935085815286868601111561244157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461247257600080fd5b919050565b8035801515811461247257600080fd5b60006020828403121561249957600080fd5b61192e8261245b565b600080604083850312156124b557600080fd5b6124be8361245b565b91506124cc6020840161245b565b90509250929050565b6000806000606084860312156124ea57600080fd5b6124f38461245b565b92506125016020850161245b565b9150604084013590509250925092565b6000806000806080858703121561252757600080fd5b6125308561245b565b935061253e6020860161245b565b92506040850135915060608501356001600160401b0381111561256057600080fd5b8501601f8101871361257157600080fd5b612580878235602084016123e6565b91505092959194509250565b6000806040838503121561259f57600080fd5b6125a88361245b565b91506124cc60208401612477565b600080604083850312156125c957600080fd5b6125d28361245b565b946020939093013593505050565b6000602082840312156125f257600080fd5b61192e82612477565b60006020828403121561260d57600080fd5b5035919050565b60006020828403121561262657600080fd5b813561192e81612aa1565b60006020828403121561264357600080fd5b815161192e81612aa1565b60006020828403121561266057600080fd5b81356003811061192e57600080fd5b60006020828403121561268157600080fd5b81356001600160401b0381111561269757600080fd5b8201601f810184136126a857600080fd5b611fe7848235602084016123e6565b600080604083850312156126ca57600080fd5b823591506124cc6020840161245b565b600080600080606085870312156126f057600080fd5b843593506020850135925060408501356001600160401b038082111561271557600080fd5b818701915087601f83011261272957600080fd5b81358181111561273857600080fd5b8860208260051b850101111561274d57600080fd5b95989497505060200194505050565b6000815180845261277481602086016020860161299d565b601f01601f19169290920160200192915050565b6000835161279a81846020880161299d565b8351908301906127ae81836020880161299d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127fa9083018461275c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561283c57835183529284019291840191600101612820565b50909695505050505050565b602081016003831061286a57634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061192e602083018461275c565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b6000821982111561294e5761294e612a33565b500190565b60008261296257612962612a49565b500490565b600081600019048311821515161561298157612981612a33565b500290565b60008282101561299857612998612a33565b500390565b60005b838110156129b85781810151838201526020016129a0565b838111156117995750506000910152565b600181811c908216806129dd57607f821691505b602082108114156129fe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1857612a18612a33565b5060010190565b600082612a2e57612a2e612a49565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ab157600080fdfea2646970667358221220ded083b35382aad601872ad97db51cb87b19f6602837bb0f962b377cfdf0b10664736f6c63430008070033697066733a2f2f516d51703258616b754143795637326a61754270624658395573643965753348614b6d424c6367655056354750432f70726572657665616c2e6a736f6e

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610639578063e0a8085314610659578063e985e9c514610679578063efbd73f4146106c2578063f2fde38b146106e257600080fd5b8063b88d4fde14610595578063bd32fb66146105b5578063c19d93fb146105d5578063c87b56dd14610603578063d5abeb011461062357600080fd5b806395d89b41116100f257806395d89b4114610522578063a0712d6814610537578063a22cb4651461054a578063a45ba8e71461056a578063aa98e0c61461057f57600080fd5b8063715018a6146104a35780637ec4a659146104b85780638693da20146104d85780638da5cb5b146104ee57806394354fd01461050c57600080fd5b806342842e0e116101bc57806356de96db1161018057806356de96db14610418578063612abd441461043857806362b99ad41461044e5780636352211e1461046357806370a082311461048357600080fd5b806342842e0e14610371578063438b6300146103915780634f6ccce7146103be5780634fdd43cb146103de57806351830227146103fe57600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd146103095780632f745c591461032957806334281c9d146103495780633ccfd60b1461035c57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612614565b610702565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61076f565b6040516102619190612870565b34801561029857600080fd5b506102ac6102a73660046125fb565b610801565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046125b6565b610845565b005b3480156102f257600080fd5b50600154600054035b604051908152602001610261565b34801561031557600080fd5b506102e46103243660046124d5565b6108d3565b34801561033557600080fd5b506102fb6103443660046125b6565b6108de565b6102e46103573660046126da565b6109d1565b34801561036857600080fd5b506102e4610c24565b34801561037d57600080fd5b506102e461038c3660046124d5565b611200565b34801561039d57600080fd5b506103b16103ac366004612487565b61121b565b6040516102619190612804565b3480156103ca57600080fd5b506102fb6103d93660046125fb565b6112ec565b3480156103ea57600080fd5b506102e46103f936600461266f565b61138d565b34801561040a57600080fd5b50600f546102559060ff1681565b34801561042457600080fd5b506102e461043336600461264e565b6113ca565b34801561044457600080fd5b506102fb600b5481565b34801561045a57600080fd5b5061027f611421565b34801561046f57600080fd5b506102ac61047e3660046125fb565b6114af565b34801561048f57600080fd5b506102fb61049e366004612487565b6114c1565b3480156104af57600080fd5b506102e461150f565b3480156104c457600080fd5b506102e46104d336600461266f565b611545565b3480156104e457600080fd5b506102fb600c5481565b3480156104fa57600080fd5b506008546001600160a01b03166102ac565b34801561051857600080fd5b506102fb600e5481565b34801561052e57600080fd5b5061027f611582565b6102e46105453660046125fb565b611591565b34801561055657600080fd5b506102e461056536600461258c565b6116c2565b34801561057657600080fd5b5061027f611758565b34801561058b57600080fd5b506102fb60105481565b3480156105a157600080fd5b506102e46105b0366004612511565b611765565b3480156105c157600080fd5b506102e46105d03660046125fb565b61179f565b3480156105e157600080fd5b506008546105f690600160a01b900460ff1681565b6040516102619190612848565b34801561060f57600080fd5b5061027f61061e3660046125fb565b6117ce565b34801561062f57600080fd5b506102fb600d5481565b34801561064557600080fd5b506102fb610654366004612487565b611935565b34801561066557600080fd5b506102e46106743660046125e0565b611940565b34801561068557600080fd5b506102556106943660046124a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102e46106dd3660046126b7565b61197d565b3480156106ee57600080fd5b506102e46106fd366004612487565b611a19565b60006001600160e01b031982166380ac58cd60e01b148061073357506001600160e01b03198216635b5e139f60e01b145b8061074e57506001600160e01b0319821663780e9d6360e01b145b8061076957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077e906129c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa906129c9565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b600061080c82611ab4565b610829576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610850826114af565b9050806001600160a01b0316836001600160a01b031614156108855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108a557506108a38133610694565b155b156108c3576040516367d9dca160e11b815260040160405180910390fd5b6108ce838383611adf565b505050565b6108ce838383611b3b565b60006108e9836114c1565b8210610908576040516306ed618760e11b815260040160405180910390fd5b600080549080805b838110156109cb57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061097757506109c3565b80516001600160a01b03161561098c57805192505b876001600160a01b0316836001600160a01b031614156109c157868414156109ba5750935061076992505050565b6001909301925b505b600101610910565b50600080fd5b836000811180156109e45750600e548111155b610a095760405162461bcd60e51b8152600401610a009061290e565b60405180910390fd5b600d5481610a1a6001546000540390565b610a24919061293b565b1115610a425760405162461bcd60e51b8152600401610a0090612883565b6001600854600160a01b900460ff166002811115610a6257610a62612a5f565b14610aaf5760405162461bcd60e51b815260206004820152601a60248201527f416c6c6f776c697374206d696e742069732064697361626c65640000000000006044820152606401610a00565b84600b54610abd9190612967565b341015610b015760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a00565b8385610b0c33611935565b610b16919061293b565b1115610b5b5760405162461bcd60e51b815260206004820152601460248201527343616e2774206d696e742074686174206d616e7960601b6044820152606401610a00565b604080513360601b6bffffffffffffffffffffffff191660208083019190915260348083018890528351808403909101815260549092019092528051910120610bd790848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611d4c92505050565b610c135760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610a00565b610c1d3386611d5b565b5050505050565b6008546001600160a01b03163314610c4e5760405162461bcd60e51b8152600401610a00906128d9565b4760017323ca4447ae0fb7607c44e9ac9f9a3d9c1dc9504e6103e8610c74846096612967565b610c7e9190612953565b604051600081818185875af1925050503d8060008114610cba576040519150601f19603f3d011682016040523d82523d6000602084013e610cbf565b606091505b50508091505080610ce25760405162461bcd60e51b8152600401610a00906128b0565b7369bf2f3533a40010e208d8b0c0e982f6f558fa9b6103e8610d05846096612967565b610d0f9190612953565b604051600081818185875af1925050503d8060008114610d4b576040519150601f19603f3d011682016040523d82523d6000602084013e610d50565b606091505b50508091505080610d735760405162461bcd60e51b8152600401610a00906128b0565b736be687a5143ff5220cc5f4b3c6a43468b5331bc16103e8610d9684601e612967565b610da09190612953565b604051600081818185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b50508091505080610e045760405162461bcd60e51b8152600401610a00906128b0565b73251f9970062e9810102762aa92546261128c702c6103e8610e2784601e612967565b610e319190612953565b604051600081818185875af1925050503d8060008114610e6d576040519150601f19603f3d011682016040523d82523d6000602084013e610e72565b606091505b50508091505080610e955760405162461bcd60e51b8152600401610a00906128b0565b73c7ff430e64d3615be49136bd370158fdbebc17846103e8610eb884601e612967565b610ec29190612953565b604051600081818185875af1925050503d8060008114610efe576040519150601f19603f3d011682016040523d82523d6000602084013e610f03565b606091505b50508091505080610f265760405162461bcd60e51b8152600401610a00906128b0565b73028ba99ce7454407e0ab7e3e981db148e74b10e46103e8610f4984601e612967565b610f539190612953565b604051600081818185875af1925050503d8060008114610f8f576040519150601f19603f3d011682016040523d82523d6000602084013e610f94565b606091505b50508091505080610fb75760405162461bcd60e51b8152600401610a00906128b0565b73cb28ffdacaf576086aec0fafe08d2e1272bba4606103e8610fda84601e612967565b610fe49190612953565b604051600081818185875af1925050503d8060008114611020576040519150601f19603f3d011682016040523d82523d6000602084013e611025565b606091505b505080915050806110485760405162461bcd60e51b8152600401610a00906128b0565b7344230c74e406d5690333ba81b198441bcf02cec86103e861106b846019612967565b6110759190612953565b604051600081818185875af1925050503d80600081146110b1576040519150601f19603f3d011682016040523d82523d6000602084013e6110b6565b606091505b505080915050806110d95760405162461bcd60e51b8152600401610a00906128b0565b73fa9a358b821f4b4a1b5ac2e0c594bb3f860afbd86103e86110fc846019612967565b6111069190612953565b604051600081818185875af1925050503d8060008114611142576040519150601f19603f3d011682016040523d82523d6000602084013e611147565b606091505b5050809150508061116a5760405162461bcd60e51b8152600401610a00906128b0565b73556b25640a632695150200f1c83e04108d60ed4b6103e861118e846101f4612967565b6111989190612953565b604051600081818185875af1925050503d80600081146111d4576040519150601f19603f3d011682016040523d82523d6000602084013e6111d9565b606091505b505080915050806111fc5760405162461bcd60e51b8152600401610a00906128b0565b5050565b6108ce83838360405180602001604052806000815250611765565b60606000611228836114c1565b90506000816001600160401b0381111561124457611244612a8b565b60405190808252806020026020018201604052801561126d578160200160208202803683370190505b5090506000805b600154600054038110156112e257856001600160a01b0316611295826114af565b6001600160a01b031614156112d057808383815181106112b7576112b7612a75565b6020908102919091010152816112cc81612a04565b9250505b806112da81612a04565b915050611274565b5090949350505050565b6000805481805b8281101561137357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061136a57858314156113635750949350505050565b6001909201915b506001016112f3565b506040516329c8c00760e21b815260040160405180910390fd5b6008546001600160a01b031633146113b75760405162461bcd60e51b8152600401610a00906128d9565b80516111fc90600a90602084019061234d565b6008546001600160a01b031633146113f45760405162461bcd60e51b8152600401610a00906128d9565b6008805482919060ff60a01b1916600160a01b83600281111561141957611419612a5f565b021790555050565b6009805461142e906129c9565b80601f016020809104026020016040519081016040528092919081815260200182805461145a906129c9565b80156114a75780601f1061147c576101008083540402835291602001916114a7565b820191906000526020600020905b81548152906001019060200180831161148a57829003601f168201915b505050505081565b60006114ba82611d75565b5192915050565b60006001600160a01b0382166114ea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146115395760405162461bcd60e51b8152600401610a00906128d9565b6115436000611e8e565b565b6008546001600160a01b0316331461156f5760405162461bcd60e51b8152600401610a00906128d9565b80516111fc90600990602084019061234d565b60606003805461077e906129c9565b806000811180156115a45750600e548111155b6115c05760405162461bcd60e51b8152600401610a009061290e565b600d54816115d16001546000540390565b6115db919061293b565b11156115f95760405162461bcd60e51b8152600401610a0090612883565b6002600854600160a01b900460ff16600281111561161957611619612a5f565b146116665760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e742069732064697361626c65640000000000000000006044820152606401610a00565b81600c546116749190612967565b3410156116b85760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610a00565b6111fc3383611d5b565b6001600160a01b0382163314156116ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461142e906129c9565b611770848484611b3b565b61177c84848484611ee0565b611799576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146117c95760405162461bcd60e51b8152600401610a00906128d9565b601055565b60606117d982611ab4565b61183d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a00565b600f5460ff166118d957600a8054611854906129c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611880906129c9565b80156118cd5780601f106118a2576101008083540402835291602001916118cd565b820191906000526020600020905b8154815290600101906020018083116118b057829003601f168201915b50505050509050919050565b60006118e3611fef565b90506000815111611903576040518060200160405280600081525061192e565b8061190d84611ffe565b60405160200161191e929190612788565b6040516020818303038152906040525b9392505050565b6000610769826120fb565b6008546001600160a01b0316331461196a5760405162461bcd60e51b8152600401610a00906128d9565b600f805460ff1916911515919091179055565b816000811180156119905750600e548111155b6119ac5760405162461bcd60e51b8152600401610a009061290e565b600d54816119bd6001546000540390565b6119c7919061293b565b11156119e55760405162461bcd60e51b8152600401610a0090612883565b6008546001600160a01b03163314611a0f5760405162461bcd60e51b8152600401610a00906128d9565b6108ce8284611d5b565b6008546001600160a01b03163314611a435760405162461bcd60e51b8152600401610a00906128d9565b6001600160a01b038116611aa85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a00565b611ab181611e8e565b50565b6000805482108015610769575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b4682611d75565b80519091506000906001600160a01b0316336001600160a01b03161480611b7457508151611b749033610694565b80611b8f575033611b8484610801565b6001600160a01b0316145b905080611baf57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611be45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611c0b57604051633a954ecd60e21b815260040160405180910390fd5b611c1b6000848460000151611adf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611d0557600054811015611d0557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c1d565b600061192e8260105485612150565b6111fc828260405180602001604052806000815250612166565b6040805160608101825260008082526020820181905291810182905290548290811015611e7557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e735780516001600160a01b031615611e0a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e6e579392505050565b611e0a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611fe357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f249033908990889088906004016127c7565b602060405180830381600087803b158015611f3e57600080fd5b505af1925050508015611f6e575060408051601f3d908101601f19168201909252611f6b91810190612631565b60015b611fc9573d808015611f9c576040519150601f19603f3d011682016040523d82523d6000602084013e611fa1565b606091505b508051611fc1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fe7565b5060015b949350505050565b60606009805461077e906129c9565b6060816120225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561204c578061203681612a04565b91506120459050600a83612953565b9150612026565b6000816001600160401b0381111561206657612066612a8b565b6040519080825280601f01601f191660200182016040528015612090576020820181803683370190505b5090505b8415611fe7576120a5600183612986565b91506120b2600a86612a1f565b6120bd90603061293b565b60f81b8183815181106120d2576120d2612a75565b60200101906001600160f81b031916908160001a9053506120f4600a86612953565b9450612094565b60006001600160a01b038216612124576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b60008261215d8584612173565b14949350505050565b6108ce83838360016121e7565b600081815b84518110156121df57600085828151811061219557612195612a75565b602002602001015190508083116121bb57600083815260208290526040902092506121cc565b600081815260208490526040902092505b50806121d781612a04565b915050612178565b509392505050565b6000546001600160a01b03851661221057604051622e076360e81b815260040160405180910390fd5b8361222e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156123445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561231a57506123186000888488611ee0565b155b15612338576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016122c3565b50600055610c1d565b828054612359906129c9565b90600052602060002090601f01602090048101928261237b57600085556123c1565b82601f1061239457805160ff19168380011785556123c1565b828001600101855582156123c1579182015b828111156123c15782518255916020019190600101906123a6565b506123cd9291506123d1565b5090565b5b808211156123cd57600081556001016123d2565b60006001600160401b038084111561240057612400612a8b565b604051601f8501601f19908116603f0116810190828211818310171561242857612428612a8b565b8160405280935085815286868601111561244157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461247257600080fd5b919050565b8035801515811461247257600080fd5b60006020828403121561249957600080fd5b61192e8261245b565b600080604083850312156124b557600080fd5b6124be8361245b565b91506124cc6020840161245b565b90509250929050565b6000806000606084860312156124ea57600080fd5b6124f38461245b565b92506125016020850161245b565b9150604084013590509250925092565b6000806000806080858703121561252757600080fd5b6125308561245b565b935061253e6020860161245b565b92506040850135915060608501356001600160401b0381111561256057600080fd5b8501601f8101871361257157600080fd5b612580878235602084016123e6565b91505092959194509250565b6000806040838503121561259f57600080fd5b6125a88361245b565b91506124cc60208401612477565b600080604083850312156125c957600080fd5b6125d28361245b565b946020939093013593505050565b6000602082840312156125f257600080fd5b61192e82612477565b60006020828403121561260d57600080fd5b5035919050565b60006020828403121561262657600080fd5b813561192e81612aa1565b60006020828403121561264357600080fd5b815161192e81612aa1565b60006020828403121561266057600080fd5b81356003811061192e57600080fd5b60006020828403121561268157600080fd5b81356001600160401b0381111561269757600080fd5b8201601f810184136126a857600080fd5b611fe7848235602084016123e6565b600080604083850312156126ca57600080fd5b823591506124cc6020840161245b565b600080600080606085870312156126f057600080fd5b843593506020850135925060408501356001600160401b038082111561271557600080fd5b818701915087601f83011261272957600080fd5b81358181111561273857600080fd5b8860208260051b850101111561274d57600080fd5b95989497505060200194505050565b6000815180845261277481602086016020860161299d565b601f01601f19169290920160200192915050565b6000835161279a81846020880161299d565b8351908301906127ae81836020880161299d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127fa9083018461275c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561283c57835183529284019291840191600101612820565b50909695505050505050565b602081016003831061286a57634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061192e602083018461275c565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b6000821982111561294e5761294e612a33565b500190565b60008261296257612962612a49565b500490565b600081600019048311821515161561298157612981612a33565b500290565b60008282101561299857612998612a33565b500390565b60005b838110156129b85781810151838201526020016129a0565b838111156117995750506000910152565b600181811c908216806129dd57607f821691505b602082108114156129fe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1857612a18612a33565b5060010190565b600082612a2e57612a2e612a49565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ab157600080fdfea2646970667358221220ded083b35382aad601872ad97db51cb87b19f6602837bb0f962b377cfdf0b10664736f6c63430008070033

Deployed Bytecode Sourcemap

48704:6031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29579:372;;;;;;;;;;-1:-1:-1;29579:372:0;;;;;:::i;:::-;;:::i;:::-;;;8699:14:1;;8692:22;8674:41;;8662:2;8647:18;29579:372:0;;;;;;;;32189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33692:204::-;;;;;;;;;;-1:-1:-1;33692:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7360:32:1;;;7342:51;;7330:2;7315:18;33692:204:0;7196:203:1;33255:371:0;;;;;;;;;;-1:-1:-1;33255:371:0;;;;;:::i;:::-;;:::i;:::-;;26816:280;;;;;;;;;;-1:-1:-1;27061:12:0;;26869:7;27045:13;:28;26816:280;;;8872:25:1;;;8860:2;8845:18;26816:280:0;8726:177:1;34549:170:0;;;;;;;;;;-1:-1:-1;34549:170:0;;;;;:::i;:::-;;:::i;28402:1105::-;;;;;;;;;;-1:-1:-1;28402:1105:0;;;;;:::i;:::-;;:::i;50684:504::-;;;;;;:::i;:::-;;:::i;52788:1826::-;;;;;;;;;;;;;:::i;34790:185::-;;;;;;;;;;-1:-1:-1;34790:185:0;;;;;:::i;:::-;;:::i;51423:517::-;;;;;;;;;;-1:-1:-1;51423:517:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27389:713::-;;;;;;;;;;-1:-1:-1;27389:713:0;;;;;:::i;:::-;;:::i;52528:138::-;;;;;;;;;;-1:-1:-1;52528:138:0;;;;;:::i;:::-;;:::i;49236:28::-;;;;;;;;;;-1:-1:-1;49236:28:0;;;;;;;;49693:94;;;;;;;;;;-1:-1:-1;49693:94:0;;;;;:::i;:::-;;:::i;49058:41::-;;;;;;;;;;;;;;;;48910:28;;;;;;;;;;;;;:::i;31998:124::-;;;;;;;;;;-1:-1:-1;31998:124:0;;;;;:::i;:::-;;:::i;30015:206::-;;;;;;;;;;-1:-1:-1;30015:206:0;;;;;:::i;:::-;;:::i;47744:103::-;;;;;;;;;;;;;:::i;52674:106::-;;;;;;;;;;-1:-1:-1;52674:106:0;;;;;:::i;:::-;;:::i;49106:38::-;;;;;;;;;;;;;;;;47093:87;;;;;;;;;;-1:-1:-1;47166:6:0;;-1:-1:-1;;;;;47166:6:0;47093:87;;49189:38;;;;;;;;;;;;;;;;32358:104;;;;;;;;;;;;;:::i;50404:272::-;;;;;;:::i;:::-;;:::i;33968:279::-;;;;;;;;;;-1:-1:-1;33968:279:0;;;;;:::i;:::-;;:::i;48945:104::-;;;;;;;;;;;;;:::i;49273:103::-;;;;;;;;;;;;;;;;35046:342;;;;;;;;;;-1:-1:-1;35046:342:0;;;;;:::i;:::-;;:::i;50254:142::-;;;;;;;;;;-1:-1:-1;50254:142:0;;;;;:::i;:::-;;:::i;48844:57::-;;;;;;;;;;-1:-1:-1;48844:57:0;;;;-1:-1:-1;;;48844:57:0;;;;;;;;;;;;;:::i;51948:471::-;;;;;;;;;;-1:-1:-1;51948:471:0;;;;;:::i;:::-;;:::i;49151:31::-;;;;;;;;;;;;;;;;49795:117;;;;;;;;;;-1:-1:-1;49795:117:0;;;;;:::i;:::-;;:::i;52427:93::-;;;;;;;;;;-1:-1:-1;52427:93:0;;;;;:::i;:::-;;:::i;34318:164::-;;;;;;;;;;-1:-1:-1;34318:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34439:25:0;;;34415:4;34439:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34318:164;51230:146;;;;;;;;;;-1:-1:-1;51230:146:0;;;;;:::i;:::-;;:::i;48002:201::-;;;;;;;;;;-1:-1:-1;48002:201:0;;;;;:::i;:::-;;:::i;29579:372::-;29681:4;-1:-1:-1;;;;;;29718:40:0;;-1:-1:-1;;;29718:40:0;;:105;;-1:-1:-1;;;;;;;29775:48:0;;-1:-1:-1;;;29775:48:0;29718:105;:172;;;-1:-1:-1;;;;;;;29840:50:0;;-1:-1:-1;;;29840:50:0;29718:172;:225;;;-1:-1:-1;;;;;;;;;;13582:40:0;;;29907:36;29698:245;29579:372;-1:-1:-1;;29579:372:0:o;32189:100::-;32243:13;32276:5;32269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32189:100;:::o;33692:204::-;33760:7;33785:16;33793:7;33785;:16::i;:::-;33780:64;;33810:34;;-1:-1:-1;;;33810:34:0;;;;;;;;;;;33780:64;-1:-1:-1;33864:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33864:24:0;;33692:204::o;33255:371::-;33328:13;33344:24;33360:7;33344:15;:24::i;:::-;33328:40;;33389:5;-1:-1:-1;;;;;33383:11:0;:2;-1:-1:-1;;;;;33383:11:0;;33379:48;;;33403:24;;-1:-1:-1;;;33403:24:0;;;;;;;;;;;33379:48;23540:10;-1:-1:-1;;;;;33444:21:0;;;;;;:63;;-1:-1:-1;33470:37:0;33487:5;23540:10;34318:164;:::i;33470:37::-;33469:38;33444:63;33440:138;;;33531:35;;-1:-1:-1;;;33531:35:0;;;;;;;;;;;33440:138;33590:28;33599:2;33603:7;33612:5;33590:8;:28::i;:::-;33317:309;33255:371;;:::o;34549:170::-;34683:28;34693:4;34699:2;34703:7;34683:9;:28::i;28402:1105::-;28491:7;28524:16;28534:5;28524:9;:16::i;:::-;28515:5;:25;28511:61;;28549:23;;-1:-1:-1;;;28549:23:0;;;;;;;;;;;28511:61;28583:22;28608:13;;;28583:22;;28858:557;28878:14;28874:1;:18;28858:557;;;28918:31;28952:14;;;:11;:14;;;;;;;;;28918:48;;;;;;;;;-1:-1:-1;;;;;28918:48:0;;;;-1:-1:-1;;;28918:48:0;;-1:-1:-1;;;;;28918:48:0;;;;;;;;-1:-1:-1;;;28918:48:0;;;;;;;;;;;;;;;;28985:73;;29030:8;;;28985:73;29080:14;;-1:-1:-1;;;;;29080:28:0;;29076:111;;29153:14;;;-1:-1:-1;29076:111:0;29230:5;-1:-1:-1;;;;;29209:26:0;:17;-1:-1:-1;;;;;29209:26:0;;29205:195;;;29279:5;29264:11;:20;29260:85;;;-1:-1:-1;29320:1:0;-1:-1:-1;29313:8:0;;-1:-1:-1;;;29313:8:0;29260:85;29367:13;;;;;29205:195;28899:516;28858:557;28894:3;;28858:557;;;;29491:8;;;50684:504;50795:6;49520:1;49506:11;:15;:52;;;;;49540:18;;49525:11;:33;;49506:52;49498:84;;;;-1:-1:-1;;;49498:84:0;;;;;;;:::i;:::-;;;;;;;;;49632:9;;49617:11;49601:13;27061:12;;26869:7;27045:13;:28;;26816:280;49601:13;:27;;;;:::i;:::-;:40;;49593:72;;;;-1:-1:-1;;;49593:72:0;;;;;;;:::i;:::-;50831:27:::1;50822:5;::::0;-1:-1:-1;;;50822:5:0;::::1;;;:36;::::0;::::1;;;;;;:::i;:::-;;50814:75;;;::::0;-1:-1:-1;;;50814:75:0;;11484:2:1;50814:75:0::1;::::0;::::1;11466:21:1::0;11523:2;11503:18;;;11496:30;11562:28;11542:18;;;11535:56;11608:18;;50814:75:0::1;11282:350:1::0;50814:75:0::1;50938:6;50922:13;;:22;;;;:::i;:::-;50909:9;:35;;50901:66;;;::::0;-1:-1:-1;;;50901:66:0;;11137:2:1;50901:66:0::1;::::0;::::1;11119:21:1::0;11176:2;11156:18;;;11149:30;-1:-1:-1;;;11195:18:1;;;11188:48;11253:18;;50901:66:0::1;10935:342:1::0;50901:66:0::1;51023:9;51013:6;50986:24;50999:10;50986:12;:24::i;:::-;:33;;;;:::i;:::-;:46;;50978:79;;;::::0;-1:-1:-1;;;50978:79:0;;10788:2:1;50978:79:0::1;::::0;::::1;10770:21:1::0;10827:2;10807:18;;;10800:30;-1:-1:-1;;;10846:18:1;;;10839:50;10906:18;;50978:79:0::1;10586:344:1::0;50978:79:0::1;50201:36:::0;;;51090:10:::1;6222:2:1::0;6218:15;-1:-1:-1;;6214:53:1;50201:36:0;;;;6202:66:1;;;;6284:12;;;;6277:28;;;50201:36:0;;;;;;;;;;6321:12:1;;;;50201:36:0;;;50191:47;;;;;51076:44:::1;::::0;51114:5:::1;;51076:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;51076:7:0::1;::::0;-1:-1:-1;;;51076:44:0:i:1;:::-;51068:70;;;::::0;-1:-1:-1;;;51068:70:0;;12964:2:1;51068:70:0::1;::::0;::::1;12946:21:1::0;13003:2;12983:18;;;12976:30;-1:-1:-1;;;13022:18:1;;;13015:43;13075:18;;51068:70:0::1;12762:337:1::0;51068:70:0::1;51151:29;51161:10;51173:6;51151:9;:29::i;:::-;50684:504:::0;;;;;:::o;52788:1826::-;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;52862:21:::1;52909:4;52948:42;53028:4;53004:21;52862::::0;53004:3:::1;:21;:::i;:::-;:28;;;;:::i;:::-;52940:97;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52926:111;;;;;53056:7;53048:35;;;;-1:-1:-1::0;;;53048:35:0::1;;;;;;;:::i;:::-;53118:42;53198:4;53174:21;53180:15:::0;53174:3:::1;:21;:::i;:::-;:28;;;;:::i;:::-;53110:97;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53096:111;;;;;53226:7;53218:35;;;;-1:-1:-1::0;;;53218:35:0::1;;;;;;;:::i;:::-;53288:42;53367:4;53344:20;53349:15:::0;53344:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;53280:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53266:110;;;;;53395:7;53387:35;;;;-1:-1:-1::0;;;53387:35:0::1;;;;;;;:::i;:::-;53457:42;53536:4;53513:20;53518:15:::0;53513:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;53449:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53435:110;;;;;53564:7;53556:35;;;;-1:-1:-1::0;;;53556:35:0::1;;;;;;;:::i;:::-;53626:42;53705:4;53682:20;53687:15:::0;53682:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;53618:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53604:110;;;;;53733:7;53725:35;;;;-1:-1:-1::0;;;53725:35:0::1;;;;;;;:::i;:::-;53795:42;53874:4;53851:20;53856:15:::0;53851:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;53787:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53773:110;;;;;53902:7;53894:35;;;;-1:-1:-1::0;;;53894:35:0::1;;;;;;;:::i;:::-;53964:42;54043:4;54020:20;54025:15:::0;54020:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;53956:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53942:110;;;;;54071:7;54063:35;;;;-1:-1:-1::0;;;54063:35:0::1;;;;;;;:::i;:::-;54133:42;54212:4;54189:20;54194:15:::0;54189:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;54125:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54111:110;;;;;54240:7;54232:35;;;;-1:-1:-1::0;;;54232:35:0::1;;;;;;;:::i;:::-;54302:42;54381:4;54358:20;54363:15:::0;54358:2:::1;:20;:::i;:::-;:27;;;;:::i;:::-;54294:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54280:110;;;;;54409:7;54401:35;;;;-1:-1:-1::0;;;54401:35:0::1;;;;;;;:::i;:::-;54471:42;54551:4;54527:21;54533:15:::0;54527:3:::1;:21;:::i;:::-;:28;;;;:::i;:::-;54463:97;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54449:111;;;;;54579:7;54571:35;;;;-1:-1:-1::0;;;54571:35:0::1;;;;;;;:::i;:::-;52825:1789;;52788:1826::o:0;34790:185::-;34928:39;34945:4;34951:2;34955:7;34928:39;;;;;;;;;;;;:16;:39::i;51423:517::-;51483:16;51512:23;51538:17;51548:6;51538:9;:17::i;:::-;51512:43;;51566:28;51611:15;-1:-1:-1;;;;;51597:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51597:30:0;;51566:61;;51638:21;51679:16;51674:230;27061:12;;26869:7;27045:13;:28;51701:8;:24;51674:230;;;51779:6;-1:-1:-1;;;;;51758:27:0;:17;51766:8;51758:7;:17::i;:::-;-1:-1:-1;;;;;51758:27:0;;51754:139;;;51835:8;51806:11;51818:13;51806:26;;;;;;;;:::i;:::-;;;;;;;;;;:37;51862:15;;;;:::i;:::-;;;;51754:139;51727:10;;;;:::i;:::-;;;;51674:230;;;-1:-1:-1;51921:11:0;;51423:517;-1:-1:-1;;;;51423:517:0:o;27389:713::-;27456:7;27501:13;;27456:7;;27715:328;27735:14;27731:1;:18;27715:328;;;27775:31;27809:14;;;:11;:14;;;;;;;;;27775:48;;;;;;;;;-1:-1:-1;;;;;27775:48:0;;;;-1:-1:-1;;;27775:48:0;;-1:-1:-1;;;;;27775:48:0;;;;;;;;-1:-1:-1;;;27775:48:0;;;;;;;;;;;;;;27842:186;;27907:5;27892:11;:20;27888:85;;;-1:-1:-1;27948:1:0;27389:713;-1:-1:-1;;;;27389:713:0:o;27888:85::-;27995:13;;;;;27842:186;-1:-1:-1;27751:3:0;;27715:328;;;;28071:23;;-1:-1:-1;;;28071:23:0;;;;;;;;;;;52528:138;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;52620:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;49693:94::-:0;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;49765:5:::1;:14:::0;;49773:6;;49765:5;-1:-1:-1;;;;49765:14:0::1;-1:-1:-1::0;;;49773:6:0;49765:14:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;49693:94:::0;:::o;48910:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31998:124::-;32062:7;32089:20;32101:7;32089:11;:20::i;:::-;:25;;31998:124;-1:-1:-1;;31998:124:0:o;30015:206::-;30079:7;-1:-1:-1;;;;;30103:19:0;;30099:60;;30131:28;;-1:-1:-1;;;30131:28:0;;;;;;;;;;;30099:60;-1:-1:-1;;;;;;30185:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30185:27:0;;30015:206::o;47744:103::-;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;47809:30:::1;47836:1;47809:18;:30::i;:::-;47744:103::o:0;52674:106::-;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;52750:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;32358:104::-:0;32414:13;32447:7;32440:14;;;;;:::i;50404:272::-;50464:6;49520:1;49506:11;:15;:52;;;;;49540:18;;49525:11;:33;;49506:52;49498:84;;;;-1:-1:-1;;;49498:84:0;;;;;;;:::i;:::-;49632:9;;49617:11;49601:13;27061:12;;26869:7;27045:13;:28;;26816:280;49601:13;:27;;;;:::i;:::-;:40;;49593:72;;;;-1:-1:-1;;;49593:72:0;;;;;;;:::i;:::-;50500:24:::1;50491:5;::::0;-1:-1:-1;;;50491:5:0;::::1;;;:33;::::0;::::1;;;;;;:::i;:::-;;50483:69;;;::::0;-1:-1:-1;;;50483:69:0;;13306:2:1;50483:69:0::1;::::0;::::1;13288:21:1::0;13345:2;13325:18;;;13318:30;13384:25;13364:18;;;13357:53;13427:18;;50483:69:0::1;13104:347:1::0;50483:69:0::1;50597:6;50584:10;;:19;;;;:::i;:::-;50571:9;:32;;50563:63;;;::::0;-1:-1:-1;;;50563:63:0;;11137:2:1;50563:63:0::1;::::0;::::1;11119:21:1::0;11176:2;11156:18;;;11149:30;-1:-1:-1;;;11195:18:1;;;11188:48;11253:18;;50563:63:0::1;10935:342:1::0;50563:63:0::1;50639:29;50649:10;50661:6;50639:9;:29::i;33968:279::-:0;-1:-1:-1;;;;;34059:24:0;;23540:10;34059:24;34055:54;;;34092:17;;-1:-1:-1;;;34092:17:0;;;;;;;;;;;34055:54;23540:10;34122:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34122:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34122:53:0;;;;;;;;;;34191:48;;8674:41:1;;;34122:42:0;;23540:10;34191:48;;8647:18:1;34191:48:0;;;;;;;33968:279;;:::o;48945:104::-;;;;;;;:::i;35046:342::-;35213:28;35223:4;35229:2;35233:7;35213:9;:28::i;:::-;35257:48;35280:4;35286:2;35290:7;35299:5;35257:22;:48::i;:::-;35252:129;;35329:40;;-1:-1:-1;;;35329:40:0;;;;;;;;;;;35252:129;35046:342;;;;:::o;50254:142::-;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;50346:19:::1;:42:::0;50254:142::o;51948:471::-;52022:13;52056:17;52064:8;52056:7;:17::i;:::-;52048:77;;;;-1:-1:-1;;;52048:77:0;;12200:2:1;52048:77:0;;;12182:21:1;12239:2;12219:18;;;12212:30;12278:34;12258:18;;;12251:62;-1:-1:-1;;;12329:18:1;;;12322:45;12384:19;;52048:77:0;11998:411:1;52048:77:0;52143:8;;;;52138:66;;52175:17;52168:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51948:471;;;:::o;52138:66::-;52216:28;52247:10;:8;:10::i;:::-;52216:41;;52306:1;52281:14;52275:28;:32;:136;;;;;;;;;;;;;;;;;52347:14;52363:19;:8;:17;:19::i;:::-;52330:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52275:136;52268:143;51948:471;-1:-1:-1;;;51948:471:0:o;49795:117::-;49855:7;49882:22;49896:7;49882:13;:22::i;52427:93::-;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;52492:8:::1;:20:::0;;-1:-1:-1;;52492:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52427:93::o;51230:146::-;51311:6;49520:1;49506:11;:15;:52;;;;;49540:18;;49525:11;:33;;49506:52;49498:84;;;;-1:-1:-1;;;49498:84:0;;;;;;;:::i;:::-;49632:9;;49617:11;49601:13;27061:12;;26869:7;27045:13;:28;;26816:280;49601:13;:27;;;;:::i;:::-;:40;;49593:72;;;;-1:-1:-1;;;49593:72:0;;;;;;;:::i;:::-;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23:::1;47305:68;;;;-1:-1:-1::0;;;47305:68:0::1;;;;;;;:::i;:::-;51340:28:::2;51350:9;51361:6;51340:9;:28::i;48002:201::-:0;47166:6;;-1:-1:-1;;;;;47166:6:0;23540:10;47313:23;47305:68;;;;-1:-1:-1;;;47305:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48091:22:0;::::1;48083:73;;;::::0;-1:-1:-1;;;48083:73:0;;10037:2:1;48083:73:0::1;::::0;::::1;10019:21:1::0;10076:2;10056:18;;;10049:30;10115:34;10095:18;;;10088:62;-1:-1:-1;;;10166:18:1;;;10159:36;10212:19;;48083:73:0::1;9835:402:1::0;48083:73:0::1;48167:28;48186:8;48167:18;:28::i;:::-;48002:201:::0;:::o;35643:144::-;35700:4;35734:13;;35724:7;:23;:55;;;;-1:-1:-1;;35752:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35752:27:0;;;;35751:28;;35643:144::o;42849:196::-;42964:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42964:29:0;-1:-1:-1;;;;;42964:29:0;;;;;;;;;43009:28;;42964:24;;43009:28;;;;;;;42849:196;;;:::o;38350:2112::-;38465:35;38503:20;38515:7;38503:11;:20::i;:::-;38578:18;;38465:58;;-1:-1:-1;38536:22:0;;-1:-1:-1;;;;;38562:34:0;23540:10;-1:-1:-1;;;;;38562:34:0;;:101;;;-1:-1:-1;38630:18:0;;38613:50;;23540:10;34318:164;:::i;38613:50::-;38562:154;;;-1:-1:-1;23540:10:0;38680:20;38692:7;38680:11;:20::i;:::-;-1:-1:-1;;;;;38680:36:0;;38562:154;38536:181;;38735:17;38730:66;;38761:35;;-1:-1:-1;;;38761:35:0;;;;;;;;;;;38730:66;38833:4;-1:-1:-1;;;;;38811:26:0;:13;:18;;;-1:-1:-1;;;;;38811:26:0;;38807:67;;38846:28;;-1:-1:-1;;;38846:28:0;;;;;;;;;;;38807:67;-1:-1:-1;;;;;38889:16:0;;38885:52;;38914:23;;-1:-1:-1;;;38914:23:0;;;;;;;;;;;38885:52;39058:49;39075:1;39079:7;39088:13;:18;;;39058:8;:49::i;:::-;-1:-1:-1;;;;;39403:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39403:31:0;;;-1:-1:-1;;;;;39403:31:0;;;-1:-1:-1;;39403:31:0;;;;;;;39449:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39449:29:0;;;;;;;;;;;39495:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39540:61:0;;;;-1:-1:-1;;;39585:15:0;39540:61;;;;;;;;;;;39875:11;;;39905:24;;;;;:29;39875:11;;39905:29;39901:445;;40130:13;;40116:11;:27;40112:219;;;40200:18;;;40168:24;;;:11;:24;;;;;;;;:50;;40283:28;;;;-1:-1:-1;;;;;40241:70:0;-1:-1:-1;;;40241:70:0;-1:-1:-1;;;;;;40241:70:0;;;-1:-1:-1;;;;;40168:50:0;;;40241:70;;;;;;;40112:219;39378:979;40393:7;40389:2;-1:-1:-1;;;;;40374:27:0;40383:4;-1:-1:-1;;;;;40374:27:0;;;;;;;;;;;40412:42;35046:342;49920:162;49998:4;50022:52;50041:5;50048:19;;50069:4;50022:18;:52::i;35795:104::-;35864:27;35874:2;35878:8;35864:27;;;;;;;;;;;;:9;:27::i;30853:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;31019:13:0;;30963:7;;31012:20;;31008:861;;;31053:31;31087:17;;;:11;:17;;;;;;;;;31053:51;;;;;;;;;-1:-1:-1;;;;;31053:51:0;;;;-1:-1:-1;;;31053:51:0;;-1:-1:-1;;;;;31053:51:0;;;;;;;;-1:-1:-1;;;31053:51:0;;;;;;;;;;;;;;31123:731;;31173:14;;-1:-1:-1;;;;;31173:28:0;;31169:101;;31237:9;30853:1083;-1:-1:-1;;;30853:1083:0:o;31169:101::-;-1:-1:-1;;;31614:6:0;31659:17;;;;:11;:17;;;;;;;;;31647:29;;;;;;;;;-1:-1:-1;;;;;31647:29:0;;;;;-1:-1:-1;;;31647:29:0;;-1:-1:-1;;;;;31647:29:0;;;;;;;;-1:-1:-1;;;31647:29:0;;;;;;;;;;;;;31707:28;31703:109;;31775:9;30853:1083;-1:-1:-1;;;30853:1083:0:o;31703:109::-;31574:261;;;31034:835;31008:861;31897:31;;-1:-1:-1;;;31897:31:0;;;;;;;;;;;48363:191;48456:6;;;-1:-1:-1;;;;;48473:17:0;;;-1:-1:-1;;;;;;48473:17:0;;;;;;;48506:40;;48456:6;;;48473:17;48456:6;;48506:40;;48437:16;;48506:40;48426:128;48363:191;:::o;43610:790::-;43765:4;-1:-1:-1;;;;;43786:13:0;;3685:19;:23;43782:611;;43822:72;;-1:-1:-1;;;43822:72:0;;-1:-1:-1;;;;;43822:36:0;;;;;:72;;23540:10;;43873:4;;43879:7;;43888:5;;43822:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43822:72:0;;;;;;;;-1:-1:-1;;43822:72:0;;;;;;;;;;;;:::i;:::-;;;43818:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44068:13:0;;44064:259;;44118:40;;-1:-1:-1;;;44118:40:0;;;;;;;;;;;44064:259;44273:6;44267:13;44258:6;44254:2;44250:15;44243:38;43818:520;-1:-1:-1;;;;;;43945:55:0;-1:-1:-1;;;43945:55:0;;-1:-1:-1;43938:62:0;;43782:611;-1:-1:-1;44377:4:0;43782:611;43610:790;;;;;;:::o;54622:110::-;54682:13;54715:9;54708:16;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;30229:207;30290:7;-1:-1:-1;;;;;30314:19:0;;30310:59;;30342:27;;-1:-1:-1;;;30342:27:0;;;;;;;;;;;30310:59;-1:-1:-1;;;;;;30395:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30395:32:0;;-1:-1:-1;;;;;30395:32:0;;30229:207::o;21315:190::-;21440:4;21493;21464:25;21477:5;21484:4;21464:12;:25::i;:::-;:33;;21315:190;-1:-1:-1;;;;21315:190:0:o;36262:163::-;36385:32;36391:2;36395:8;36405:5;36412:4;36385:5;:32::i;21867:675::-;21950:7;21993:4;21950:7;22008:497;22032:5;:12;22028:1;:16;22008:497;;;22066:20;22089:5;22095:1;22089:8;;;;;;;;:::i;:::-;;;;;;;22066:31;;22132:12;22116;:28;22112:382;;22618:13;22668:15;;;22704:4;22697:15;;;22751:4;22735:21;;22244:57;;22112:382;;;22618:13;22668:15;;;22704:4;22697:15;;;22751:4;22735:21;;22421:57;;22112:382;-1:-1:-1;22046:3:0;;;;:::i;:::-;;;;22008:497;;;-1:-1:-1;22522:12:0;21867:675;-1:-1:-1;;;21867:675:0:o;36684:1412::-;36823:20;36846:13;-1:-1:-1;;;;;36874:16:0;;36870:48;;36899:19;;-1:-1:-1;;;36899:19:0;;;;;;;;;;;36870:48;36933:13;36929:44;;36955:18;;-1:-1:-1;;;36955:18:0;;;;;;;;;;;36929:44;-1:-1:-1;;;;;37324:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37383:49:0;;-1:-1:-1;;;;;37324:44:0;;;;;;;37383:49;;;-1:-1:-1;;;;;37324:44:0;;;;;;37383:49;;;;;;;;;;;;;;;;37449:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37499:66:0;;;;-1:-1:-1;;;37549:15:0;37499:66;;;;;;;;;;;37449:25;;37634:328;37654:8;37650:1;:12;37634:328;;;37693:38;;37718:12;;-1:-1:-1;;;;;37693:38:0;;;37710:1;;37693:38;;37710:1;;37693:38;37754:4;:68;;;;;37763:59;37794:1;37798:2;37802:12;37816:5;37763:22;:59::i;:::-;37762:60;37754:68;37750:164;;;37854:40;;-1:-1:-1;;;37854:40:0;;;;;;;;;;;37750:164;37932:14;;;;;37664:3;37634:328;;;-1:-1:-1;37978:13:0;:28;38028:60;35046:342;-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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:278::-;3926:6;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4073:1;4066:5;4063:12;4053:40;;4089:1;4086;4079:12;4128:450;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4306:9;4293:23;-1:-1:-1;;;;;4331:6:1;4328:30;4325:50;;;4371:1;4368;4361:12;4325:50;4394:22;;4447:4;4439:13;;4435:27;-1:-1:-1;4425:55:1;;4476:1;4473;4466:12;4425:55;4499:73;4564:7;4559:2;4546:16;4541:2;4537;4533:11;4499:73;:::i;4768:254::-;4836:6;4844;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4949:9;4936:23;4926:33;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;5027:751::-;5131:6;5139;5147;5155;5208:2;5196:9;5187:7;5183:23;5179:32;5176:52;;;5224:1;5221;5214:12;5176:52;5260:9;5247:23;5237:33;;5317:2;5306:9;5302:18;5289:32;5279:42;;5372:2;5361:9;5357:18;5344:32;-1:-1:-1;;;;;5436:2:1;5428:6;5425:14;5422:34;;;5452:1;5449;5442:12;5422:34;5490:6;5479:9;5475:22;5465:32;;5535:7;5528:4;5524:2;5520:13;5516:27;5506:55;;5557:1;5554;5547:12;5506:55;5597:2;5584:16;5623:2;5615:6;5612:14;5609:34;;;5639:1;5636;5629:12;5609:34;5692:7;5687:2;5677:6;5674:1;5670:14;5666:2;5662:23;5658:32;5655:45;5652:65;;;5713:1;5710;5703:12;5652:65;5027:751;;;;-1:-1:-1;;5744:2:1;5736:11;;-1:-1:-1;;;5027:751:1:o;5783:257::-;5824:3;5862:5;5856:12;5889:6;5884:3;5877:19;5905:63;5961:6;5954:4;5949:3;5945:14;5938:4;5931:5;5927:16;5905:63;:::i;:::-;6022:2;6001:15;-1:-1:-1;;5997:29:1;5988:39;;;;6029:4;5984:50;;5783:257;-1:-1:-1;;5783:257:1:o;6344:637::-;6624:3;6662:6;6656:13;6678:53;6724:6;6719:3;6712:4;6704:6;6700:17;6678:53;:::i;:::-;6794:13;;6753:16;;;;6816:57;6794:13;6753:16;6850:4;6838:17;;6816:57;:::i;:::-;-1:-1:-1;;;6895:20:1;;6924:22;;;6973:1;6962:13;;6344:637;-1:-1:-1;;;;6344:637:1:o;7404:488::-;-1:-1:-1;;;;;7673:15:1;;;7655:34;;7725:15;;7720:2;7705:18;;7698:43;7772:2;7757:18;;7750:34;;;7820:3;7815:2;7800:18;;7793:31;;;7598:4;;7841:45;;7866:19;;7858:6;7841:45;:::i;:::-;7833:53;7404:488;-1:-1:-1;;;;;;7404:488:1:o;7897:632::-;8068:2;8120:21;;;8190:13;;8093:18;;;8212:22;;;8039:4;;8068:2;8291:15;;;;8265:2;8250:18;;;8039:4;8334:169;8348:6;8345:1;8342:13;8334:169;;;8409:13;;8397:26;;8478:15;;;;8443:12;;;;8370:1;8363:9;8334:169;;;-1:-1:-1;8520:3:1;;7897:632;-1:-1:-1;;;;;;7897:632:1:o;8908:350::-;9062:2;9047:18;;9095:1;9084:13;;9074:144;;9140:10;9135:3;9131:20;9128:1;9121:31;9175:4;9172:1;9165:15;9203:4;9200:1;9193:15;9074:144;9227:25;;;8908:350;:::o;9263:219::-;9412:2;9401:9;9394:21;9375:4;9432:44;9472:2;9461:9;9457:18;9449:6;9432:44;:::i;9487:343::-;9689:2;9671:21;;;9728:2;9708:18;;;9701:30;-1:-1:-1;;;9762:2:1;9747:18;;9740:49;9821:2;9806:18;;9487:343::o;10242:339::-;10444:2;10426:21;;;10483:2;10463:18;;;10456:30;-1:-1:-1;;;10517:2:1;10502:18;;10495:45;10572:2;10557:18;;10242:339::o;11637:356::-;11839:2;11821:21;;;11858:18;;;11851:30;11917:34;11912:2;11897:18;;11890:62;11984:2;11969:18;;11637:356::o;12414:343::-;12616:2;12598:21;;;12655:2;12635:18;;;12628:30;-1:-1:-1;;;12689:2:1;12674:18;;12667:49;12748:2;12733:18;;12414:343::o;13638:128::-;13678:3;13709:1;13705:6;13702:1;13699:13;13696:39;;;13715:18;;:::i;:::-;-1:-1:-1;13751:9:1;;13638:128::o;13771:120::-;13811:1;13837;13827:35;;13842:18;;:::i;:::-;-1:-1:-1;13876:9:1;;13771:120::o;13896:168::-;13936:7;14002:1;13998;13994:6;13990:14;13987:1;13984:21;13979:1;13972:9;13965:17;13961:45;13958:71;;;14009:18;;:::i;:::-;-1:-1:-1;14049:9:1;;13896:168::o;14069:125::-;14109:4;14137:1;14134;14131:8;14128:34;;;14142:18;;:::i;:::-;-1:-1:-1;14179:9:1;;14069:125::o;14199:258::-;14271:1;14281:113;14295:6;14292:1;14289:13;14281:113;;;14371:11;;;14365:18;14352:11;;;14345:39;14317:2;14310:10;14281:113;;;14412:6;14409:1;14406:13;14403:48;;;-1:-1:-1;;14447:1:1;14429:16;;14422:27;14199:258::o;14462:380::-;14541:1;14537:12;;;;14584;;;14605:61;;14659:4;14651:6;14647:17;14637:27;;14605:61;14712:2;14704:6;14701:14;14681:18;14678:38;14675:161;;;14758:10;14753:3;14749:20;14746:1;14739:31;14793:4;14790:1;14783:15;14821:4;14818:1;14811:15;14675:161;;14462:380;;;:::o;14847:135::-;14886:3;-1:-1:-1;;14907:17:1;;14904:43;;;14927:18;;:::i;:::-;-1:-1:-1;14974:1:1;14963:13;;14847:135::o;14987:112::-;15019:1;15045;15035:35;;15050:18;;:::i;:::-;-1:-1:-1;15084:9:1;;14987:112::o;15104:127::-;15165:10;15160:3;15156:20;15153:1;15146:31;15196:4;15193:1;15186:15;15220:4;15217:1;15210:15;15236:127;15297:10;15292:3;15288:20;15285:1;15278:31;15328:4;15325:1;15318:15;15352:4;15349:1;15342:15;15368:127;15429:10;15424:3;15420:20;15417:1;15410:31;15460:4;15457:1;15450:15;15484:4;15481:1;15474:15;15500:127;15561:10;15556:3;15552:20;15549:1;15542:31;15592:4;15589:1;15582:15;15616:4;15613:1;15606:15;15632:127;15693:10;15688:3;15684:20;15681:1;15674:31;15724:4;15721:1;15714:15;15748:4;15745:1;15738:15;15764:131;-1:-1:-1;;;;;;15838:32:1;;15828:43;;15818:71;;15885:1;15882;15875:12

Swarm Source

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