ETH Price: $2,961.50 (+1.03%)
Gas: 1 Gwei

Stinky Rich Frens (SRF)
 

Overview

TokenID

13

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
stinkyrichcontract

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-20
*/

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;




contract stinkyrichcontract is ERC721A, Ownable {
    uint256 public constant MINT_PRICE = 0.035 ether;
    uint256 public constant MAX_SUPPLY = 7777;
    uint256 public constant MAX_PER_WALLET = 50;

    //frens name map
    mapping(uint => string) public stinkyfrenNames;

    //name change event
    event stinkyfrenNameChange(address _by, uint _tokenId, string _name);

    constructor() ERC721A("Stinky Rich Frens", "SRF") {}

    modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) {
        require(_wei >= MINT_PRICE * _quantity, "Insufficent funds");
        _;
    }

    modifier withinMaximumSupply(uint256 _quantity) {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply");
        _;
    }

    /**
     * Public sale and whitelist sale mechansim
     */
    bool public publicSale = false;
    bool public whitelistSale = false;

    modifier publicSaleActive() {
        require(publicSale, "Public sale not started");
        _;
    }

    function setPublicSale(bool toggle) external onlyOwner {
        publicSale = toggle;
    }

    modifier whitelistSaleActive() {
        require(whitelistSale, "Whitelist sale not started");
        _;
    }

    function setWhitelistSale(bool toggle) external onlyOwner {
        whitelistSale = toggle;
    }

    /**
     * Public minting
     */
    mapping(address => uint256) public publicAddressMintCount;

    function mintPublic(uint256 _quantity)
        public
        payable
        publicSaleActive
        hasCorrectAmount(msg.value, _quantity)
        withinMaximumSupply(_quantity)
    {
        require(
            _quantity > 0 &&
                publicAddressMintCount[msg.sender] + _quantity <=
                MAX_PER_WALLET,
            "Minting above public limit"
        );
        publicAddressMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    /**
     * Tiered whitelisting system
     */
    bytes32[5] public tieredWhitelistMerkleRoot;
    uint256[4] public tieredWhitelistMaximums = [1, 2, 0, 10];
    mapping(address => uint256) public whitelistAddressMintCount;
    mapping(address => uint256) public whitelistAddressGiftCount;
    mapping(address => uint256) public whitelistAddressCustomLimit;

    modifier hasValidTier(uint256 tier) {
        require(tier >= 0 && tier <= 4, "Invalid Tier");
        _;
    }

    modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address not whitelisted"
        );
        _;
    }

    function setWhitelistMerkleRoot(uint256 tier, bytes32 merkleRoot)
        external
        onlyOwner
        hasValidTier(tier)
    {
        tieredWhitelistMerkleRoot[tier] = merkleRoot;
    }

    function setWhitelistAddressCustomLimit(address _address, uint256 _amount)
        external
        onlyOwner
    {
        whitelistAddressCustomLimit[_address] = _amount;
    }

    function mintWhitelist(
        uint256 _tier,
        uint256 _quantity,
        bytes32[] calldata merkleProof
    )
        public
        payable
        whitelistSaleActive
        hasValidTier(_tier)
        hasValidMerkleProof(merkleProof, tieredWhitelistMerkleRoot[_tier])
        hasCorrectAmount(msg.value, _quantity)
        withinMaximumSupply(_quantity)
    {
        // Mint according to the whitelisted tier limit, otherwise assume custom limit
        if (_tier <= 3) {
            require(
                _quantity > 0 &&
                    whitelistAddressMintCount[msg.sender] + _quantity <=
                    tieredWhitelistMaximums[_tier],
                "Minting above allocation"
            );
        } else {
            require(
                _quantity > 0 &&
                    whitelistAddressMintCount[msg.sender] + _quantity <=
                    whitelistAddressCustomLimit[msg.sender],
                "Minting above allocation"
            );
        }
        whitelistAddressMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    /**
     * freeMint for polygon stinky rich holders, addresses must be in merkle root tier 2
     */
    function mintGift(
        uint256 _tier,
        bytes32[] calldata merkleProof
    )
        public
        whitelistSaleActive
        hasValidTier(_tier)
        hasValidMerkleProof(merkleProof, tieredWhitelistMerkleRoot[_tier])
    {
        if (_tier == 2) {
        require(whitelistAddressGiftCount[msg.sender] < 1,"Minting above allocation" );
        }
        whitelistAddressGiftCount[msg.sender] += 1;
        _safeMint(msg.sender, 1);
    }





    /**
     * Admin minting
     */
    function mintAdmin(address _recipient, uint256 _quantity)
        public
        onlyOwner
        withinMaximumSupply(_quantity)
    {
        _safeMint(_recipient, _quantity);
    }

    /**
     * Base URI
     */
    string private baseURI;

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

    /**
     * Withdrawal feature
     */
    address private constant treasuryAddress =
        0xce548bBe67A1cA128611Fc4bb6DdfBE7c90B392c;
    address private constant devAddress =
        0x9e3E3ddE88fe50f66682ea3DD7900D3b2fE8A7eA;


    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 devshare = balance * 25 / 100;
        Address.sendValue(payable(devAddress), devshare);

        uint256 finalbalance = address(this).balance;
        Address.sendValue(payable(treasuryAddress), finalbalance);
    }

    /**
     * Name Your Stinky
     */
    function changeStinkyFrenName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "This wallet doesn't own this stinky fren!");
        require(sha256(bytes(_name)) != sha256(bytes(stinkyfrenNames[_tokenId])), "New name is same as the current one");
        stinkyfrenNames[_tokenId] = _name;
        
        emit stinkyfrenNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewStinkyFrenName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a stinkyfren within range" );
        return stinkyfrenNames[_tokenId];
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"stinkyfrenNameChange","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","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"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeStinkyFrenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tier","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tier","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setWhitelistAddressCustomLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stinkyfrenNames","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"","type":"uint256"}],"name":"tieredWhitelistMaximums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tieredWhitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewStinkyFrenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressCustomLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressGiftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805461ffff1916815561010060405260016080908152600260a052600060c05260e091909152620000379060119060046200011a565b503480156200004557600080fd5b5060408051808201825260118152705374696e6b792052696368204672656e7360781b60208083019182528351808501909452600384526229a92360e91b9084015281519192916200009a9160029162000162565b508051620000b090600390602084019062000162565b50506000805550620000c233620000c8565b62000233565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b826004810192821562000150579160200282015b8281111562000150578251829060ff169055916020019190600101906200012e565b506200015e929150620001df565b5090565b8280546200017090620001f6565b90600052602060002090601f01602090048101928262000194576000855562000150565b82601f10620001af57805160ff191683800117855562000150565b8280016001018555821562000150579182015b8281111562000150578251825591602001919060010190620001c2565b5b808211156200015e5760008155600101620001e0565b600181811c908216806200020b57607f821691505b602082108114156200022d57634e487b7160e01b600052602260045260246000fd5b50919050565b612d0980620002436000396000f3fe6080604052600436106102c65760003560e01c806355f804b311610179578063b88d4fde116100d6578063c87b56dd1161008a578063ee49382411610064578063ee493824146107dc578063efd0cbf9146107ef578063f2fde38b1461080257600080fd5b8063c87b56dd14610753578063ca7ce3ec14610773578063e985e9c51461079357600080fd5b8063c15b38d6116100bb578063c15b38d6146106f3578063c227334d14610713578063c3a719991461073357600080fd5b8063b88d4fde146106b8578063c002d23d146106d857600080fd5b8063715018a61161012d5780638da5cb5b116101125780638da5cb5b1461066557806395d89b4114610683578063a22cb4651461069857600080fd5b8063715018a61461063057806374f586b11461064557600080fd5b80636352211e1161015e5780636352211e146105d05780636479758c146105f057806370a082311461061057600080fd5b806355f804b3146105905780635aca1bb6146105b057600080fd5b806323b872dd116102275780633ccfd60b116101db57806343f35cbe116101c057806343f35cbe146105235780634cb73b5c146105505780634f9a6cbe1461057057600080fd5b80633ccfd60b146104ee57806342842e0e1461050357600080fd5b806332cb6b0c1161020c57806332cb6b0c1461049e57806332f611cc146104b457806333bc1c5c146104d457600080fd5b806323b872dd1461045f57806331ffd6f11461047f57600080fd5b80630f2cdd6c1161027e57806313536bf21161026357806313536bf2146103f957806318160ddd146104195780631ac8ee011461043257600080fd5b80630f2cdd6c146103b75780630f36d53d146103cc57600080fd5b806307e4d480116102af57806307e4d48014610322578063081812fc1461035d578063095ea7b31461039557600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046125a4565b610822565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b50610315610874565b6040516102f79190612619565b34801561032e57600080fd5b5061034f61033d366004612648565b600b6020526000908152604090205481565b6040519081526020016102f7565b34801561036957600080fd5b5061037d610378366004612663565b610906565b6040516001600160a01b0390911681526020016102f7565b3480156103a157600080fd5b506103b56103b036600461267c565b61094a565b005b3480156103c357600080fd5b5061034f603281565b3480156103d857600080fd5b5061034f6103e7366004612648565b60176020526000908152604090205481565b34801561040557600080fd5b506103b56104143660046126f2565b6109d8565b34801561042557600080fd5b506001546000540361034f565b34801561043e57600080fd5b5061034f61044d366004612648565b60166020526000908152604090205481565b34801561046b57600080fd5b506103b561047a36600461273e565b610bed565b34801561048b57600080fd5b50600a546102eb90610100900460ff1681565b3480156104aa57600080fd5b5061034f611e6181565b3480156104c057600080fd5b506103b56104cf36600461267c565b610bf8565b3480156104e057600080fd5b50600a546102eb9060ff1681565b3480156104fa57600080fd5b506103b5610c5c565b34801561050f57600080fd5b506103b561051e36600461273e565b610cfd565b34801561052f57600080fd5b5061034f61053e366004612648565b60156020526000908152604090205481565b34801561055c57600080fd5b5061034f61056b366004612663565b610d18565b34801561057c57600080fd5b5061031561058b366004612663565b610d2f565b34801561059c57600080fd5b506103b56105ab366004612826565b610e2a565b3480156105bc57600080fd5b506103b56105cb36600461286b565b610e89565b3480156105dc57600080fd5b5061037d6105eb366004612663565b610ee4565b3480156105fc57600080fd5b506103b561060b366004612886565b610ef6565b34801561061c57600080fd5b5061034f61062b366004612648565b6110e3565b34801561063c57600080fd5b506103b5611132565b34801561065157600080fd5b5061034f610660366004612663565b611186565b34801561067157600080fd5b506008546001600160a01b031661037d565b34801561068f57600080fd5b50610315611196565b3480156106a457600080fd5b506103b56106b33660046128cd565b6111a5565b3480156106c457600080fd5b506103b56106d3366004612900565b61123b565b3480156106e457600080fd5b5061034f667c58508723800081565b3480156106ff57600080fd5b506103b561070e36600461297c565b61128c565b34801561071f57600080fd5b5061031561072e366004612663565b611330565b34801561073f57600080fd5b506103b561074e36600461267c565b6113ca565b34801561075f57600080fd5b5061031561076e366004612663565b611479565b34801561077f57600080fd5b506103b561078e36600461286b565b6114fe565b34801561079f57600080fd5b506102eb6107ae36600461299e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6103b56107ea3660046129c8565b611560565b6103b56107fd366004612663565b6118ca565b34801561080e57600080fd5b506103b561081d366004612648565b611a82565b60006001600160e01b031982166380ac58cd60e01b148061085357506001600160e01b03198216635b5e139f60e01b145b8061086e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088390612a1b565b80601f01602080910402602001604051908101604052809291908181526020018280546108af90612a1b565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091182611b52565b61092e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095582610ee4565b9050806001600160a01b0316836001600160a01b0316141561098a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109aa57506109a881336107ae565b155b156109c8576040516367d9dca160e11b815260040160405180910390fd5b6109d3838383611b7d565b505050565b600a54610100900460ff16610a345760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f74207374617274656400000000000060448201526064015b60405180910390fd5b826004811115610a755760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b6044820152606401610a2b565b8282600c8660058110610a8a57610a8a612a56565b0154610aff838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b60405160208183030381529060405280519060200120611be6565b610b4b5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610a2b565b8660021415610bb35733600090815260166020526040902054600111610bb35760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e00000000000000006044820152606401610a2b565b336000908152601660205260408120805460019290610bd3908490612a82565b90915550610be49050336001611bfc565b50505050505050565b6109d3838383611c16565b6008546001600160a01b03163314610c405760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b6001600160a01b03909116600090815260176020526040902055565b6008546001600160a01b03163314610ca45760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b4760006064610cb4836019612a9a565b610cbe9190612acf565b9050610cde739e3e3dde88fe50f66682ea3dd7900d3b2fe8a7ea82611e06565b476109d373ce548bbe67a1ca128611fc4bb6ddfbe7c90b392c82611e06565b6109d38383836040518060200160405280600081525061123b565b60118160048110610d2857600080fd5b0154905081565b6060610d3e6001546000540390565b8210610d8c5760405162461bcd60e51b815260206004820181905260248201527f43686f6f73652061207374696e6b796672656e2077697468696e2072616e67656044820152606401610a2b565b60008281526009602052604090208054610da590612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd190612a1b565b8015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b50505050509050919050565b6008546001600160a01b03163314610e725760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b8051610e859060189060208401906124f5565b5050565b6008546001600160a01b03163314610ed15760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b600a805460ff1916911515919091179055565b6000610eef82611f1f565b5192915050565b33610f0083610ee4565b6001600160a01b031614610f7c5760405162461bcd60e51b815260206004820152602960248201527f546869732077616c6c657420646f65736e2774206f776e20746869732073746960448201527f6e6b79206672656e2100000000000000000000000000000000000000000000006064820152608401610a2b565b600082815260096020526040908190209051600291610f9a91612ae3565b602060405180830381855afa158015610fb7573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610fda9190612b7f565b600282604051610fea9190612b98565b602060405180830381855afa158015611007573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061102a9190612b7f565b14156110845760405162461bcd60e51b815260206004820152602360248201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206044820152626f6e6560e81b6064820152608401610a2b565b600082815260096020908152604090912082516110a3928401906124f5565b507f552a843b31feeaeac33664565cbc65ad3f46d413a6a5264a5d1b9aa5a5dc8ad63383836040516110d793929190612bb4565b60405180910390a15050565b60006001600160a01b03821661110c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461117a5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b611184600061203b565b565b600c8160058110610d2857600080fd5b60606003805461088390612a1b565b6001600160a01b0382163314156111cf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611246848484611c16565b6001600160a01b0383163b1515801561126857506112668484848461209a565b155b15611286576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112d45760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b8160048111156113155760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b6044820152606401610a2b565b81600c846005811061132957611329612a56565b0155505050565b6009602052600090815260409020805461134990612a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461137590612a1b565b80156113c25780601f10611397576101008083540402835291602001916113c2565b820191906000526020600020905b8154815290600101906020018083116113a557829003601f168201915b505050505081565b6008546001600160a01b031633146114125760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b80611e61816114246001546000540390565b61142e9190612a82565b111561146f5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b6044820152606401610a2b565b6109d38383611bfc565b606061148482611b52565b6114a157604051630a14c4b560e41b815260040160405180910390fd5b60006114ab612183565b90508051600014156114cc57604051806020016040528060008152506114f7565b806114d684612192565b6040516020016114e7929190612be5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115465760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b600a80549115156101000261ff0019909216919091179055565b600a54610100900460ff166115b75760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f7420737461727465640000000000006044820152606401610a2b565b8360048111156115f85760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b6044820152606401610a2b565b8282600c876005811061160d5761160d612a56565b015461166b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050610ae4565b6116b75760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610a2b565b34876116ca81667c585087238000612a9a565b8210156117195760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e64730000000000000000000000000000006044820152606401610a2b565b88611e618161172b6001546000540390565b6117359190612a82565b11156117765760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b6044820152606401610a2b565b60038b1161180d5760008a1180156117bc575060118b6004811061179c5761179c612a56565b0154336000908152601560205260409020546117b9908c90612a82565b11155b6118085760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e00000000000000006044820152606401610a2b565b61188e565b60008a11801561184257503360009081526017602090815260408083205460159092529091205461183f908c90612a82565b11155b61188e5760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e00000000000000006044820152606401610a2b565b33600090815260156020526040812080548c92906118ad908490612a82565b909155506118bd9050338b611bfc565b5050505050505050505050565b600a5460ff1661191c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f7420737461727465640000000000000000006044820152606401610a2b565b348161192f81667c585087238000612a9a565b82101561197e5760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e64730000000000000000000000000000006044820152606401610a2b565b82611e61816119906001546000540390565b61199a9190612a82565b11156119db5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b6044820152606401610a2b565b600084118015611a075750336000908152600b6020526040902054603290611a04908690612a82565b11155b611a535760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d69740000000000006044820152606401610a2b565b336000908152600b602052604081208054869290611a72908490612a82565b9091555061128690503385611bfc565b6008546001600160a01b03163314611aca5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b6001600160a01b038116611b465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a2b565b611b4f8161203b565b50565b600080548210801561086e575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611bf385846122a8565b14949350505050565b610e8582826040518060200160405280600081525061231c565b6000611c2182611f1f565b9050836001600160a01b031681600001516001600160a01b031614611c585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611c765750611c7685336107ae565b80611c91575033611c8684610906565b6001600160a01b0316145b905080611cb157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611cd857604051633a954ecd60e21b815260040160405180910390fd5b611ce460008487611b7d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611dba576000548214611dba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015611e565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a2b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ea3576040519150601f19603f3d011682016040523d82523d6000602084013e611ea8565b606091505b50509050806109d35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a2b565b60408051606081018252600080825260208201819052918101919091528160005481101561202257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906120205780516001600160a01b031615611fb6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561201b579392505050565b611fb6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906120cf903390899088908890600401612c14565b6020604051808303816000875af192505050801561210a575060408051601f3d908101601f1916820190925261210791810190612c50565b60015b612165573d808015612138576040519150601f19603f3d011682016040523d82523d6000602084013e61213d565b606091505b50805161215d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606018805461088390612a1b565b6060816121b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e057806121ca81612c6d565b91506121d99050600a83612acf565b91506121ba565b60008167ffffffffffffffff8111156121fb576121fb61277a565b6040519080825280601f01601f191660200182016040528015612225576020820181803683370190505b5090505b841561217b5761223a600183612c88565b9150612247600a86612c9f565b612252906030612a82565b60f81b81838151811061226757612267612a56565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122a1600a86612acf565b9450612229565b600081815b84518110156123145760008582815181106122ca576122ca612a56565b602002602001015190508083116122f05760008381526020829052604090209250612301565b600081815260208490526040902092505b508061230c81612c6d565b9150506122ad565b509392505050565b6109d383838360016000546001600160a01b03851661234d57604051622e076360e81b815260040160405180910390fd5b8361236b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561241d57506001600160a01b0387163b15155b156124a6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461246e600088848060010195508861209a565b61248b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124235782600054146124a157600080fd5b6124ec565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156124a7575b50600055611dff565b82805461250190612a1b565b90600052602060002090601f0160209004810192826125235760008555612569565b82601f1061253c57805160ff1916838001178555612569565b82800160010185558215612569579182015b8281111561256957825182559160200191906001019061254e565b50612575929150612579565b5090565b5b80821115612575576000815560010161257a565b6001600160e01b031981168114611b4f57600080fd5b6000602082840312156125b657600080fd5b81356114f78161258e565b60005b838110156125dc5781810151838201526020016125c4565b838111156112865750506000910152565b600081518084526126058160208601602086016125c1565b601f01601f19169290920160200192915050565b6020815260006114f760208301846125ed565b80356001600160a01b038116811461264357600080fd5b919050565b60006020828403121561265a57600080fd5b6114f78261262c565b60006020828403121561267557600080fd5b5035919050565b6000806040838503121561268f57600080fd5b6126988361262c565b946020939093013593505050565b60008083601f8401126126b857600080fd5b50813567ffffffffffffffff8111156126d057600080fd5b6020830191508360208260051b85010111156126eb57600080fd5b9250929050565b60008060006040848603121561270757600080fd5b83359250602084013567ffffffffffffffff81111561272557600080fd5b612731868287016126a6565b9497909650939450505050565b60008060006060848603121561275357600080fd5b61275c8461262c565b925061276a6020850161262c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127ab576127ab61277a565b604051601f8501601f19908116603f011681019082821181831017156127d3576127d361277a565b816040528093508581528686860111156127ec57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261281757600080fd5b6114f783833560208501612790565b60006020828403121561283857600080fd5b813567ffffffffffffffff81111561284f57600080fd5b61217b84828501612806565b8035801515811461264357600080fd5b60006020828403121561287d57600080fd5b6114f78261285b565b6000806040838503121561289957600080fd5b82359150602083013567ffffffffffffffff8111156128b757600080fd5b6128c385828601612806565b9150509250929050565b600080604083850312156128e057600080fd5b6128e98361262c565b91506128f76020840161285b565b90509250929050565b6000806000806080858703121561291657600080fd5b61291f8561262c565b935061292d6020860161262c565b925060408501359150606085013567ffffffffffffffff81111561295057600080fd5b8501601f8101871361296157600080fd5b61297087823560208401612790565b91505092959194509250565b6000806040838503121561298f57600080fd5b50508035926020909101359150565b600080604083850312156129b157600080fd5b6129ba8361262c565b91506128f76020840161262c565b600080600080606085870312156129de57600080fd5b8435935060208501359250604085013567ffffffffffffffff811115612a0357600080fd5b612a0f878288016126a6565b95989497509550505050565b600181811c90821680612a2f57607f821691505b60208210811415612a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612a9557612a95612a6c565b500190565b6000816000190483118215151615612ab457612ab4612a6c565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612ade57612ade612ab9565b500490565b600080835481600182811c915080831680612aff57607f831692505b6020808410821415612b1f57634e487b7160e01b86526022600452602486fd5b818015612b335760018114612b4457612b71565b60ff19861689528489019650612b71565b60008a81526020902060005b86811015612b695781548b820152908501908301612b50565b505084890196505b509498975050505050505050565b600060208284031215612b9157600080fd5b5051919050565b60008251612baa8184602087016125c1565b9190910192915050565b6001600160a01b0384168152826020820152606060408201526000612bdc60608301846125ed565b95945050505050565b60008351612bf78184602088016125c1565b835190830190612c0b8183602088016125c1565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612c4660808301846125ed565b9695505050505050565b600060208284031215612c6257600080fd5b81516114f78161258e565b6000600019821415612c8157612c81612a6c565b5060010190565b600082821015612c9a57612c9a612a6c565b500390565b600082612cae57612cae612ab9565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b35e6f0308d9a9221a608dbbb170e52386758a4069656528b767ccfeb36c3fd664736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102c65760003560e01c806355f804b311610179578063b88d4fde116100d6578063c87b56dd1161008a578063ee49382411610064578063ee493824146107dc578063efd0cbf9146107ef578063f2fde38b1461080257600080fd5b8063c87b56dd14610753578063ca7ce3ec14610773578063e985e9c51461079357600080fd5b8063c15b38d6116100bb578063c15b38d6146106f3578063c227334d14610713578063c3a719991461073357600080fd5b8063b88d4fde146106b8578063c002d23d146106d857600080fd5b8063715018a61161012d5780638da5cb5b116101125780638da5cb5b1461066557806395d89b4114610683578063a22cb4651461069857600080fd5b8063715018a61461063057806374f586b11461064557600080fd5b80636352211e1161015e5780636352211e146105d05780636479758c146105f057806370a082311461061057600080fd5b806355f804b3146105905780635aca1bb6146105b057600080fd5b806323b872dd116102275780633ccfd60b116101db57806343f35cbe116101c057806343f35cbe146105235780634cb73b5c146105505780634f9a6cbe1461057057600080fd5b80633ccfd60b146104ee57806342842e0e1461050357600080fd5b806332cb6b0c1161020c57806332cb6b0c1461049e57806332f611cc146104b457806333bc1c5c146104d457600080fd5b806323b872dd1461045f57806331ffd6f11461047f57600080fd5b80630f2cdd6c1161027e57806313536bf21161026357806313536bf2146103f957806318160ddd146104195780631ac8ee011461043257600080fd5b80630f2cdd6c146103b75780630f36d53d146103cc57600080fd5b806307e4d480116102af57806307e4d48014610322578063081812fc1461035d578063095ea7b31461039557600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046125a4565b610822565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b50610315610874565b6040516102f79190612619565b34801561032e57600080fd5b5061034f61033d366004612648565b600b6020526000908152604090205481565b6040519081526020016102f7565b34801561036957600080fd5b5061037d610378366004612663565b610906565b6040516001600160a01b0390911681526020016102f7565b3480156103a157600080fd5b506103b56103b036600461267c565b61094a565b005b3480156103c357600080fd5b5061034f603281565b3480156103d857600080fd5b5061034f6103e7366004612648565b60176020526000908152604090205481565b34801561040557600080fd5b506103b56104143660046126f2565b6109d8565b34801561042557600080fd5b506001546000540361034f565b34801561043e57600080fd5b5061034f61044d366004612648565b60166020526000908152604090205481565b34801561046b57600080fd5b506103b561047a36600461273e565b610bed565b34801561048b57600080fd5b50600a546102eb90610100900460ff1681565b3480156104aa57600080fd5b5061034f611e6181565b3480156104c057600080fd5b506103b56104cf36600461267c565b610bf8565b3480156104e057600080fd5b50600a546102eb9060ff1681565b3480156104fa57600080fd5b506103b5610c5c565b34801561050f57600080fd5b506103b561051e36600461273e565b610cfd565b34801561052f57600080fd5b5061034f61053e366004612648565b60156020526000908152604090205481565b34801561055c57600080fd5b5061034f61056b366004612663565b610d18565b34801561057c57600080fd5b5061031561058b366004612663565b610d2f565b34801561059c57600080fd5b506103b56105ab366004612826565b610e2a565b3480156105bc57600080fd5b506103b56105cb36600461286b565b610e89565b3480156105dc57600080fd5b5061037d6105eb366004612663565b610ee4565b3480156105fc57600080fd5b506103b561060b366004612886565b610ef6565b34801561061c57600080fd5b5061034f61062b366004612648565b6110e3565b34801561063c57600080fd5b506103b5611132565b34801561065157600080fd5b5061034f610660366004612663565b611186565b34801561067157600080fd5b506008546001600160a01b031661037d565b34801561068f57600080fd5b50610315611196565b3480156106a457600080fd5b506103b56106b33660046128cd565b6111a5565b3480156106c457600080fd5b506103b56106d3366004612900565b61123b565b3480156106e457600080fd5b5061034f667c58508723800081565b3480156106ff57600080fd5b506103b561070e36600461297c565b61128c565b34801561071f57600080fd5b5061031561072e366004612663565b611330565b34801561073f57600080fd5b506103b561074e36600461267c565b6113ca565b34801561075f57600080fd5b5061031561076e366004612663565b611479565b34801561077f57600080fd5b506103b561078e36600461286b565b6114fe565b34801561079f57600080fd5b506102eb6107ae36600461299e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6103b56107ea3660046129c8565b611560565b6103b56107fd366004612663565b6118ca565b34801561080e57600080fd5b506103b561081d366004612648565b611a82565b60006001600160e01b031982166380ac58cd60e01b148061085357506001600160e01b03198216635b5e139f60e01b145b8061086e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088390612a1b565b80601f01602080910402602001604051908101604052809291908181526020018280546108af90612a1b565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091182611b52565b61092e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095582610ee4565b9050806001600160a01b0316836001600160a01b0316141561098a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109aa57506109a881336107ae565b155b156109c8576040516367d9dca160e11b815260040160405180910390fd5b6109d3838383611b7d565b505050565b600a54610100900460ff16610a345760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f74207374617274656400000000000060448201526064015b60405180910390fd5b826004811115610a755760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b6044820152606401610a2b565b8282600c8660058110610a8a57610a8a612a56565b0154610aff838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b60405160208183030381529060405280519060200120611be6565b610b4b5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610a2b565b8660021415610bb35733600090815260166020526040902054600111610bb35760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e00000000000000006044820152606401610a2b565b336000908152601660205260408120805460019290610bd3908490612a82565b90915550610be49050336001611bfc565b50505050505050565b6109d3838383611c16565b6008546001600160a01b03163314610c405760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b6001600160a01b03909116600090815260176020526040902055565b6008546001600160a01b03163314610ca45760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b4760006064610cb4836019612a9a565b610cbe9190612acf565b9050610cde739e3e3dde88fe50f66682ea3dd7900d3b2fe8a7ea82611e06565b476109d373ce548bbe67a1ca128611fc4bb6ddfbe7c90b392c82611e06565b6109d38383836040518060200160405280600081525061123b565b60118160048110610d2857600080fd5b0154905081565b6060610d3e6001546000540390565b8210610d8c5760405162461bcd60e51b815260206004820181905260248201527f43686f6f73652061207374696e6b796672656e2077697468696e2072616e67656044820152606401610a2b565b60008281526009602052604090208054610da590612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd190612a1b565b8015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b50505050509050919050565b6008546001600160a01b03163314610e725760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b8051610e859060189060208401906124f5565b5050565b6008546001600160a01b03163314610ed15760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b600a805460ff1916911515919091179055565b6000610eef82611f1f565b5192915050565b33610f0083610ee4565b6001600160a01b031614610f7c5760405162461bcd60e51b815260206004820152602960248201527f546869732077616c6c657420646f65736e2774206f776e20746869732073746960448201527f6e6b79206672656e2100000000000000000000000000000000000000000000006064820152608401610a2b565b600082815260096020526040908190209051600291610f9a91612ae3565b602060405180830381855afa158015610fb7573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610fda9190612b7f565b600282604051610fea9190612b98565b602060405180830381855afa158015611007573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061102a9190612b7f565b14156110845760405162461bcd60e51b815260206004820152602360248201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206044820152626f6e6560e81b6064820152608401610a2b565b600082815260096020908152604090912082516110a3928401906124f5565b507f552a843b31feeaeac33664565cbc65ad3f46d413a6a5264a5d1b9aa5a5dc8ad63383836040516110d793929190612bb4565b60405180910390a15050565b60006001600160a01b03821661110c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461117a5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b611184600061203b565b565b600c8160058110610d2857600080fd5b60606003805461088390612a1b565b6001600160a01b0382163314156111cf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611246848484611c16565b6001600160a01b0383163b1515801561126857506112668484848461209a565b155b15611286576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112d45760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b8160048111156113155760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b6044820152606401610a2b565b81600c846005811061132957611329612a56565b0155505050565b6009602052600090815260409020805461134990612a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461137590612a1b565b80156113c25780601f10611397576101008083540402835291602001916113c2565b820191906000526020600020905b8154815290600101906020018083116113a557829003601f168201915b505050505081565b6008546001600160a01b031633146114125760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b80611e61816114246001546000540390565b61142e9190612a82565b111561146f5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b6044820152606401610a2b565b6109d38383611bfc565b606061148482611b52565b6114a157604051630a14c4b560e41b815260040160405180910390fd5b60006114ab612183565b90508051600014156114cc57604051806020016040528060008152506114f7565b806114d684612192565b6040516020016114e7929190612be5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115465760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b600a80549115156101000261ff0019909216919091179055565b600a54610100900460ff166115b75760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f7420737461727465640000000000006044820152606401610a2b565b8360048111156115f85760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b6044820152606401610a2b565b8282600c876005811061160d5761160d612a56565b015461166b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050610ae4565b6116b75760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610a2b565b34876116ca81667c585087238000612a9a565b8210156117195760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e64730000000000000000000000000000006044820152606401610a2b565b88611e618161172b6001546000540390565b6117359190612a82565b11156117765760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b6044820152606401610a2b565b60038b1161180d5760008a1180156117bc575060118b6004811061179c5761179c612a56565b0154336000908152601560205260409020546117b9908c90612a82565b11155b6118085760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e00000000000000006044820152606401610a2b565b61188e565b60008a11801561184257503360009081526017602090815260408083205460159092529091205461183f908c90612a82565b11155b61188e5760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e00000000000000006044820152606401610a2b565b33600090815260156020526040812080548c92906118ad908490612a82565b909155506118bd9050338b611bfc565b5050505050505050505050565b600a5460ff1661191c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f7420737461727465640000000000000000006044820152606401610a2b565b348161192f81667c585087238000612a9a565b82101561197e5760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e64730000000000000000000000000000006044820152606401610a2b565b82611e61816119906001546000540390565b61199a9190612a82565b11156119db5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b6044820152606401610a2b565b600084118015611a075750336000908152600b6020526040902054603290611a04908690612a82565b11155b611a535760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d69740000000000006044820152606401610a2b565b336000908152600b602052604081208054869290611a72908490612a82565b9091555061128690503385611bfc565b6008546001600160a01b03163314611aca5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb48339815191526044820152606401610a2b565b6001600160a01b038116611b465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a2b565b611b4f8161203b565b50565b600080548210801561086e575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611bf385846122a8565b14949350505050565b610e8582826040518060200160405280600081525061231c565b6000611c2182611f1f565b9050836001600160a01b031681600001516001600160a01b031614611c585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611c765750611c7685336107ae565b80611c91575033611c8684610906565b6001600160a01b0316145b905080611cb157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611cd857604051633a954ecd60e21b815260040160405180910390fd5b611ce460008487611b7d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611dba576000548214611dba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015611e565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a2b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ea3576040519150601f19603f3d011682016040523d82523d6000602084013e611ea8565b606091505b50509050806109d35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a2b565b60408051606081018252600080825260208201819052918101919091528160005481101561202257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906120205780516001600160a01b031615611fb6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561201b579392505050565b611fb6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906120cf903390899088908890600401612c14565b6020604051808303816000875af192505050801561210a575060408051601f3d908101601f1916820190925261210791810190612c50565b60015b612165573d808015612138576040519150601f19603f3d011682016040523d82523d6000602084013e61213d565b606091505b50805161215d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606018805461088390612a1b565b6060816121b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e057806121ca81612c6d565b91506121d99050600a83612acf565b91506121ba565b60008167ffffffffffffffff8111156121fb576121fb61277a565b6040519080825280601f01601f191660200182016040528015612225576020820181803683370190505b5090505b841561217b5761223a600183612c88565b9150612247600a86612c9f565b612252906030612a82565b60f81b81838151811061226757612267612a56565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122a1600a86612acf565b9450612229565b600081815b84518110156123145760008582815181106122ca576122ca612a56565b602002602001015190508083116122f05760008381526020829052604090209250612301565b600081815260208490526040902092505b508061230c81612c6d565b9150506122ad565b509392505050565b6109d383838360016000546001600160a01b03851661234d57604051622e076360e81b815260040160405180910390fd5b8361236b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561241d57506001600160a01b0387163b15155b156124a6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461246e600088848060010195508861209a565b61248b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124235782600054146124a157600080fd5b6124ec565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156124a7575b50600055611dff565b82805461250190612a1b565b90600052602060002090601f0160209004810192826125235760008555612569565b82601f1061253c57805160ff1916838001178555612569565b82800160010185558215612569579182015b8281111561256957825182559160200191906001019061254e565b50612575929150612579565b5090565b5b80821115612575576000815560010161257a565b6001600160e01b031981168114611b4f57600080fd5b6000602082840312156125b657600080fd5b81356114f78161258e565b60005b838110156125dc5781810151838201526020016125c4565b838111156112865750506000910152565b600081518084526126058160208601602086016125c1565b601f01601f19169290920160200192915050565b6020815260006114f760208301846125ed565b80356001600160a01b038116811461264357600080fd5b919050565b60006020828403121561265a57600080fd5b6114f78261262c565b60006020828403121561267557600080fd5b5035919050565b6000806040838503121561268f57600080fd5b6126988361262c565b946020939093013593505050565b60008083601f8401126126b857600080fd5b50813567ffffffffffffffff8111156126d057600080fd5b6020830191508360208260051b85010111156126eb57600080fd5b9250929050565b60008060006040848603121561270757600080fd5b83359250602084013567ffffffffffffffff81111561272557600080fd5b612731868287016126a6565b9497909650939450505050565b60008060006060848603121561275357600080fd5b61275c8461262c565b925061276a6020850161262c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127ab576127ab61277a565b604051601f8501601f19908116603f011681019082821181831017156127d3576127d361277a565b816040528093508581528686860111156127ec57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261281757600080fd5b6114f783833560208501612790565b60006020828403121561283857600080fd5b813567ffffffffffffffff81111561284f57600080fd5b61217b84828501612806565b8035801515811461264357600080fd5b60006020828403121561287d57600080fd5b6114f78261285b565b6000806040838503121561289957600080fd5b82359150602083013567ffffffffffffffff8111156128b757600080fd5b6128c385828601612806565b9150509250929050565b600080604083850312156128e057600080fd5b6128e98361262c565b91506128f76020840161285b565b90509250929050565b6000806000806080858703121561291657600080fd5b61291f8561262c565b935061292d6020860161262c565b925060408501359150606085013567ffffffffffffffff81111561295057600080fd5b8501601f8101871361296157600080fd5b61297087823560208401612790565b91505092959194509250565b6000806040838503121561298f57600080fd5b50508035926020909101359150565b600080604083850312156129b157600080fd5b6129ba8361262c565b91506128f76020840161262c565b600080600080606085870312156129de57600080fd5b8435935060208501359250604085013567ffffffffffffffff811115612a0357600080fd5b612a0f878288016126a6565b95989497509550505050565b600181811c90821680612a2f57607f821691505b60208210811415612a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612a9557612a95612a6c565b500190565b6000816000190483118215151615612ab457612ab4612a6c565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612ade57612ade612ab9565b500490565b600080835481600182811c915080831680612aff57607f831692505b6020808410821415612b1f57634e487b7160e01b86526022600452602486fd5b818015612b335760018114612b4457612b71565b60ff19861689528489019650612b71565b60008a81526020902060005b86811015612b695781548b820152908501908301612b50565b505084890196505b509498975050505050505050565b600060208284031215612b9157600080fd5b5051919050565b60008251612baa8184602087016125c1565b9190910192915050565b6001600160a01b0384168152826020820152606060408201526000612bdc60608301846125ed565b95945050505050565b60008351612bf78184602088016125c1565b835190830190612c0b8183602088016125c1565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612c4660808301846125ed565b9695505050505050565b600060208284031215612c6257600080fd5b81516114f78161258e565b6000600019821415612c8157612c81612a6c565b5060010190565b600082821015612c9a57612c9a612a6c565b500390565b600082612cae57612cae612ab9565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b35e6f0308d9a9221a608dbbb170e52386758a4069656528b767ccfeb36c3fd664736f6c634300080b0033

Deployed Bytecode Sourcemap

47191:6736:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26831:305;;;;;;;;;;-1:-1:-1;26831:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26831:305:0;;;;;;;;29944:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48583:57::-;;;;;;;;;;-1:-1:-1;48583:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1881:25:1;;;1869:2;1854:18;48583:57:0;1735:177:1;31447:204:0;;;;;;;;;;-1:-1:-1;31447:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2266:55:1;;;2248:74;;2236:2;2221:18;31447:204:0;2102:226:1;31010:371:0;;;;;;;;;;-1:-1:-1;31010:371:0;;;;;:::i;:::-;;:::i;:::-;;47349:43;;;;;;;;;;;;47390:2;47349:43;;49460:62;;;;;;;;;;-1:-1:-1;49460:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;51632:468;;;;;;;;;;-1:-1:-1;51632:468:0;;;;;:::i;:::-;;:::i;26080:303::-;;;;;;;;;;-1:-1:-1;26334:12:0;;26124:7;26318:13;:28;26080:303;;49393:60;;;;;;;;;;-1:-1:-1;49393:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;32312:170;;;;;;;;;;-1:-1:-1;32312:170:0;;;;;:::i;:::-;;:::i;48057:33::-;;;;;;;;;;-1:-1:-1;48057:33:0;;;;;;;;;;;47301:41;;;;;;;;;;;;47338:4;47301:41;;50191:183;;;;;;;;;;-1:-1:-1;50191:183:0;;;;;:::i;:::-;;:::i;48020:30::-;;;;;;;;;;-1:-1:-1;48020:30:0;;;;;;;;52889:329;;;;;;;;;;;;;:::i;32553:185::-;;;;;;;;;;-1:-1:-1;32553:185:0;;;;;:::i;:::-;;:::i;49326:60::-;;;;;;;;;;-1:-1:-1;49326:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;49262:57;;;;;;;;;;-1:-1:-1;49262:57:0;;;;;:::i;:::-;;:::i;53710:212::-;;;;;;;;;;-1:-1:-1;53710:212:0;;;;;:::i;:::-;;:::i;52419:100::-;;;;;;;;;;-1:-1:-1;52419:100:0;;;;;:::i;:::-;;:::i;48212:93::-;;;;;;;;;;-1:-1:-1;48212:93:0;;;;;:::i;:::-;;:::i;29752:125::-;;;;;;;;;;-1:-1:-1;29752:125:0;;;;;:::i;:::-;;:::i;53269:429::-;;;;;;;;;;-1:-1:-1;53269:429:0;;;;;:::i;:::-;;:::i;27200:206::-;;;;;;;;;;-1:-1:-1;27200:206:0;;;;;:::i;:::-;;:::i;46302:103::-;;;;;;;;;;;;;:::i;49212:43::-;;;;;;;;;;-1:-1:-1;49212:43:0;;;;;:::i;:::-;;:::i;45651:87::-;;;;;;;;;;-1:-1:-1;45724:6:0;;-1:-1:-1;;;;;45724:6:0;45651:87;;30113:104;;;;;;;;;;;;;:::i;31723:287::-;;;;;;;;;;-1:-1:-1;31723:287:0;;;;;:::i;:::-;;:::i;32809:369::-;;;;;;;;;;-1:-1:-1;32809:369:0;;;;;:::i;:::-;;:::i;47246:48::-;;;;;;;;;;;;47283:11;47246:48;;49984:199;;;;;;;;;;-1:-1:-1;49984:199:0;;;;;:::i;:::-;;:::i;47423:46::-;;;;;;;;;;-1:-1:-1;47423:46:0;;;;;:::i;:::-;;:::i;52156:189::-;;;;;;;;;;-1:-1:-1;52156:189:0;;;;;:::i;:::-;;:::i;30288:318::-;;;;;;;;;;-1:-1:-1;30288:318:0;;;;;:::i;:::-;;:::i;48435:99::-;;;;;;;;;;-1:-1:-1;48435:99:0;;;;;:::i;:::-;;:::i;32081:164::-;;;;;;;;;;-1:-1:-1;32081:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32202:25:0;;;32178:4;32202:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32081:164;50382:1134;;;;;;:::i;:::-;;:::i;48649:502::-;;;;;;:::i;:::-;;:::i;46560:201::-;;;;;;;;;;-1:-1:-1;46560:201:0;;;;;:::i;:::-;;:::i;26831:305::-;26933:4;-1:-1:-1;;;;;;26970:40:0;;-1:-1:-1;;;26970:40:0;;:105;;-1:-1:-1;;;;;;;27027:48:0;;-1:-1:-1;;;27027:48:0;26970:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;27092:36;26950:178;26831:305;-1:-1:-1;;26831:305:0:o;29944:100::-;29998:13;30031:5;30024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29944:100;:::o;31447:204::-;31515:7;31540:16;31548:7;31540;:16::i;:::-;31535:64;;31565:34;;-1:-1:-1;;;31565:34:0;;;;;;;;;;;31535:64;-1:-1:-1;31619:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31619:24:0;;31447:204::o;31010:371::-;31083:13;31099:24;31115:7;31099:15;:24::i;:::-;31083:40;;31144:5;-1:-1:-1;;;;;31138:11:0;:2;-1:-1:-1;;;;;31138:11:0;;31134:48;;;31158:24;;-1:-1:-1;;;31158:24:0;;;;;;;;;;;31134:48;22427:10;-1:-1:-1;;;;;31199:21:0;;;;;;:63;;-1:-1:-1;31225:37:0;31242:5;22427:10;32081:164;:::i;31225:37::-;31224:38;31199:63;31195:138;;;31286:35;;-1:-1:-1;;;31286:35:0;;;;;;;;;;;31195:138;31345:28;31354:2;31358:7;31367:5;31345:8;:28::i;:::-;31072:309;31010:371;;:::o;51632:468::-;48363:13;;;;;;;48355:52;;;;-1:-1:-1;;;48355:52:0;;8671:2:1;48355:52:0;;;8653:21:1;8710:2;8690:18;;;8683:30;8749:28;8729:18;;;8722:56;8795:18;;48355:52:0;;;;;;;;;51789:5;49607:1:::1;49599:4;:9;;49578:47;;;::::0;-1:-1:-1;;;49578:47:0;;9026:2:1;49578:47:0::1;::::0;::::1;9008:21:1::0;9065:2;9045:18;;;9038:30;-1:-1:-1;;;9084:18:1;;;9077:42;9136:18;;49578:47:0::1;8824:336:1::0;49578:47:0::1;51825:11:::2;;51838:25;51864:5;51838:32;;;;;;;:::i;:::-;;;49761:144;49798:11;;49761:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;49861:28:0::2;::::0;-1:-1:-1;;49878:10:0::2;9446:2:1::0;9442:15;9438:53;49861:28:0::2;::::0;::::2;9426:66:1::0;49828:4:0;;-1:-1:-1;9508:12:1;;;-1:-1:-1;49861:28:0::2;;;;;;;;;;;;;49851:39;;;;;;49761:18;:144::i;:::-;49739:217;;;::::0;-1:-1:-1;;;49739:217:0;;9733:2:1;49739:217:0::2;::::0;::::2;9715:21:1::0;9772:2;9752:18;;;9745:30;9811:25;9791:18;;;9784:53;9854:18;;49739:217:0::2;9531:347:1::0;49739:217:0::2;51892:5:::3;51901:1;51892:10;51888:117;;;51949:10;51923:37;::::0;;;:25:::3;:37;::::0;;;;;51963:1:::3;-1:-1:-1::0;51915:78:0::3;;;::::0;-1:-1:-1;;;51915:78:0;;10085:2:1;51915:78:0::3;::::0;::::3;10067:21:1::0;10124:2;10104:18;;;10097:30;10163:26;10143:18;;;10136:54;10207:18;;51915:78:0::3;9883:348:1::0;51915:78:0::3;52041:10;52015:37;::::0;;;:25:::3;:37;::::0;;;;:42;;52056:1:::3;::::0;52015:37;:42:::3;::::0;52056:1;;52015:42:::3;:::i;:::-;::::0;;;-1:-1:-1;52068:24:0::3;::::0;-1:-1:-1;52078:10:0::3;52090:1;52068:9;:24::i;:::-;49636:1:::2;;;48418::::1;51632:468:::0;;;:::o;32312:170::-;32446:28;32456:4;32462:2;32466:7;32446:9;:28::i;50191:183::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;-1:-1:-1;;;;;50319:37:0;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:47;50191:183::o;52889:329::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;52957:21:::1;52939:15;53023:3;53008:12;52957:21:::0;53018:2:::1;53008:12;:::i;:::-;:18;;;;:::i;:::-;52989:37;;53037:48;52836:42;53076:8;53037:17;:48::i;:::-;53121:21;53153:57;52740:42;53121:21:::0;53153:17:::1;:57::i;32553:185::-:0;32691:39;32708:4;32714:2;32718:7;32691:39;;;;;;;;;;;;:16;:39::i;49262:57::-;;;;;;;;;;;;;;;-1:-1:-1;49262:57:0;:::o;53710:212::-;53774:13;53820;26334:12;;26124:7;26318:13;:28;;26080:303;53820:13;53809:8;:24;53800:71;;;;-1:-1:-1;;;53800:71:0;;11494:2:1;53800:71:0;;;11476:21:1;;;11513:18;;;11506:30;11572:34;11552:18;;;11545:62;11624:18;;53800:71:0;11292:356:1;53800:71:0;53889:25;;;;:15;:25;;;;;53882:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53710:212;;;:::o;52419:100::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;52493:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52419:100:::0;:::o;48212:93::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;48278:10:::1;:19:::0;;-1:-1:-1;;48278:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48212:93::o;29752:125::-;29816:7;29843:21;29856:7;29843:12;:21::i;:::-;:26;;29752:125;-1:-1:-1;;29752:125:0:o;53269:429::-;53382:10;53361:17;53369:8;53361:7;:17::i;:::-;-1:-1:-1;;;;;53361:31:0;;53353:85;;;;-1:-1:-1;;;53353:85:0;;11855:2:1;53353:85:0;;;11837:21:1;11894:2;11874:18;;;11867:30;11933:34;11913:18;;;11906:62;12004:11;11984:18;;;11977:39;12033:19;;53353:85:0;11653:405:1;53353:85:0;53494:25;;;;:15;:25;;;;;;;53481:40;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53457:20;53470:5;53457:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;;53449:112;;;;-1:-1:-1;;;53449:112:0;;13971:2:1;53449:112:0;;;13953:21:1;14010:2;13990:18;;;13983:30;14049:34;14029:18;;;14022:62;-1:-1:-1;;;14100:18:1;;;14093:33;14143:19;;53449:112:0;13769:399:1;53449:112:0;53572:25;;;;:15;:25;;;;;;;;:33;;;;;;;;:::i;:::-;;53631:49;53652:10;53664:8;53674:5;53631:49;;;;;;;;:::i;:::-;;;;;;;;53269:429;;:::o;27200:206::-;27264:7;-1:-1:-1;;;;;27288:19:0;;27284:60;;27316:28;;-1:-1:-1;;;27316:28:0;;;;;;;;;;;27284:60;-1:-1:-1;;;;;;27370:19:0;;;;;:12;:19;;;;;:27;;;;27200:206::o;46302:103::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;46367:30:::1;46394:1;46367:18;:30::i;:::-;46302:103::o:0;49212:43::-;;;;;;;;;;;30113:104;30169:13;30202:7;30195:14;;;;;:::i;31723:287::-;-1:-1:-1;;;;;31822:24:0;;22427:10;31822:24;31818:54;;;31855:17;;-1:-1:-1;;;31855:17:0;;;;;;;;;;;31818:54;22427:10;31885:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31885:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31885:53:0;;;;;;;;;;31954:48;;540:41:1;;;31885:42:0;;22427:10;31954:48;;513:18:1;31954:48:0;;;;;;;31723:287;;:::o;32809:369::-;32976:28;32986:4;32992:2;32996:7;32976:9;:28::i;:::-;-1:-1:-1;;;;;33019:13:0;;3652:19;:23;;33019:76;;;;;33039:56;33070:4;33076:2;33080:7;33089:5;33039:30;:56::i;:::-;33038:57;33019:76;33015:156;;;33119:40;;-1:-1:-1;;;33119:40:0;;;;;;;;;;;33015:156;32809:369;;;;:::o;49984:199::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;50109:4;49607:1:::1;49599:4;:9;;49578:47;;;::::0;-1:-1:-1;;;49578:47:0;;9026:2:1;49578:47:0::1;::::0;::::1;9008:21:1::0;9065:2;9045:18;;;9038:30;-1:-1:-1;;;9084:18:1;;;9077:42;9136:18;;49578:47:0::1;8824:336:1::0;49578:47:0::1;50165:10:::2;50131:25;50157:4;50131:31;;;;;;;:::i;:::-;;:44:::0;-1:-1:-1;;;49984:199:0:o;47423:46::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52156:189::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;52278:9:::1;47338:4;47881:9;47865:13;26334:12:::0;;26124:7;26318:13;:28;;26080:303;47865:13:::1;:25;;;;:::i;:::-;:39;;47857:68;;;::::0;-1:-1:-1;;;47857:68:0;;14791:2:1;47857:68:0::1;::::0;::::1;14773:21:1::0;14830:2;14810:18;;;14803:30;-1:-1:-1;;;14849:18:1;;;14842:46;14905:18;;47857:68:0::1;14589:340:1::0;47857:68:0::1;52305:32:::2;52315:10;52327:9;52305;:32::i;30288:318::-:0;30361:13;30392:16;30400:7;30392;:16::i;:::-;30387:59;;30417:29;;-1:-1:-1;;;30417:29:0;;;;;;;;;;;30387:59;30459:21;30483:10;:8;:10::i;:::-;30459:34;;30517:7;30511:21;30536:1;30511:26;;:87;;;;;;;;;;;;;;;;;30564:7;30573:18;:7;:16;:18::i;:::-;30547:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30511:87;30504:94;30288:318;-1:-1:-1;;;30288:318:0:o;48435:99::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;48504:13:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;48504:22:0;;::::1;::::0;;;::::1;::::0;;48435:99::o;50382:1134::-;48363:13;;;;;;;48355:52;;;;-1:-1:-1;;;48355:52:0;;8671:2:1;48355:52:0;;;8653:21:1;8710:2;8690:18;;;8683:30;8749:28;8729:18;;;8722:56;8795:18;;48355:52:0;8469:350:1;48355:52:0;50589:5;49607:1:::1;49599:4;:9;;49578:47;;;::::0;-1:-1:-1;;;49578:47:0;;9026:2:1;49578:47:0::1;::::0;::::1;9008:21:1::0;9065:2;9045:18;;;9038:30;-1:-1:-1;;;9084:18:1;;;9077:42;9136:18;;49578:47:0::1;8824:336:1::0;49578:47:0::1;50625:11:::2;;50638:25;50664:5;50638:32;;;;;;;:::i;:::-;;;49761:144;49798:11;;49761:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;49861:28:0::2;::::0;-1:-1:-1;;49878:10:0::2;9446:2:1::0;9442:15;9438:53;49861:28:0::2;::::0;::::2;9426:66:1::0;49828:4:0;;-1:-1:-1;9508:12:1;;;-1:-1:-1;49861:28:0::2;9297:229:1::0;49761:144:0::2;49739:217;;;::::0;-1:-1:-1;;;49739:217:0;;9733:2:1;49739:217:0::2;::::0;::::2;9715:21:1::0;9772:2;9752:18;;;9745:30;9811:25;9791:18;;;9784:53;9854:18;;49739:217:0::2;9531:347:1::0;49739:217:0::2;50698:9:::3;50709::::0;47726:22:::3;50709:9:::0;47283:11:::3;47726:22;:::i;:::-;47718:4;:30;;47710:60;;;::::0;-1:-1:-1;;;47710:60:0;;15611:2:1;47710:60:0::3;::::0;::::3;15593:21:1::0;15650:2;15630:18;;;15623:30;15689:19;15669:18;;;15662:47;15726:18;;47710:60:0::3;15409:341:1::0;47710:60:0::3;50749:9:::4;47338:4;47881:9;47865:13;26334:12:::0;;26124:7;26318:13;:28;;26080:303;47865:13:::4;:25;;;;:::i;:::-;:39;;47857:68;;;::::0;-1:-1:-1;;;47857:68:0;;14791:2:1;47857:68:0::4;::::0;::::4;14773:21:1::0;14830:2;14810:18;;;14803:30;-1:-1:-1;;;14849:18:1;;;14842:46;14905:18;;47857:68:0::4;14589:340:1::0;47857:68:0::4;50877:1:::5;50868:5;:10;50864:541;;50933:1;50921:9;:13;:142;;;;;51033:23;51057:5;51033:30;;;;;;;:::i;:::-;;::::0;50985:10:::5;50959:37;::::0;;;:25:::5;:37;::::0;;;;;:49:::5;::::0;50999:9;;50959:49:::5;:::i;:::-;:104;;50921:142;50895:228;;;::::0;-1:-1:-1;;;50895:228:0;;10085:2:1;50895:228:0::5;::::0;::::5;10067:21:1::0;10124:2;10104:18;;;10097:30;10163:26;10143:18;;;10136:54;10207:18;;50895:228:0::5;9883:348:1::0;50895:228:0::5;50864:541;;;51194:1;51182:9;:13;:151;;;;-1:-1:-1::0;51322:10:0::5;51294:39;::::0;;;:27:::5;:39;::::0;;;;;;;;51220:25:::5;:37:::0;;;;;;;:49:::5;::::0;51260:9;;51220:49:::5;:::i;:::-;:113;;51182:151;51156:237;;;::::0;-1:-1:-1;;;51156:237:0;;10085:2:1;51156:237:0::5;::::0;::::5;10067:21:1::0;10124:2;10104:18;;;10097:30;10163:26;10143:18;;;10136:54;10207:18;;51156:237:0::5;9883:348:1::0;51156:237:0::5;51441:10;51415:37;::::0;;;:25:::5;:37;::::0;;;;:50;;51456:9;;51415:37;:50:::5;::::0;51456:9;;51415:50:::5;:::i;:::-;::::0;;;-1:-1:-1;51476:32:0::5;::::0;-1:-1:-1;51486:10:0::5;51498:9:::0;51476::::5;:32::i;:::-;47781:1:::4;49967::::3;;49636::::2;;;48418::::1;50382:1134:::0;;;;:::o;48649:502::-;48146:10;;;;48138:46;;;;-1:-1:-1;;;48138:46:0;;15957:2:1;48138:46:0;;;15939:21:1;15996:2;15976:18;;;15969:30;16035:25;16015:18;;;16008:53;16078:18;;48138:46:0;15755:347:1;48138:46:0;48773:9:::1;48784::::0;47726:22:::1;48784:9:::0;47283:11:::1;47726:22;:::i;:::-;47718:4;:30;;47710:60;;;::::0;-1:-1:-1;;;47710:60:0;;15611:2:1;47710:60:0::1;::::0;::::1;15593:21:1::0;15650:2;15630:18;;;15623:30;15689:19;15669:18;;;15662:47;15726:18;;47710:60:0::1;15409:341:1::0;47710:60:0::1;48824:9:::2;47338:4;47881:9;47865:13;26334:12:::0;;26124:7;26318:13;:28;;26080:303;47865:13:::2;:25;;;;:::i;:::-;:39;;47857:68;;;::::0;-1:-1:-1;;;47857:68:0;;14791:2:1;47857:68:0::2;::::0;::::2;14773:21:1::0;14830:2;14810:18;;;14803:30;-1:-1:-1;;;14849:18:1;;;14842:46;14905:18;;47857:68:0::2;14589:340:1::0;47857:68:0::2;48885:1:::3;48873:9;:13;:115;;;;-1:-1:-1::0;48930:10:0::3;48907:34;::::0;;;:22:::3;:34;::::0;;;;;47390:2:::3;::::0;48907:46:::3;::::0;48944:9;;48907:46:::3;:::i;:::-;:81;;48873:115;48851:191;;;::::0;-1:-1:-1;;;48851:191:0;;16309:2:1;48851:191:0::3;::::0;::::3;16291:21:1::0;16348:2;16328:18;;;16321:30;16387:28;16367:18;;;16360:56;16433:18;;48851:191:0::3;16107:350:1::0;48851:191:0::3;49076:10;49053:34;::::0;;;:22:::3;:34;::::0;;;;:47;;49091:9;;49053:34;:47:::3;::::0;49091:9;;49053:47:::3;:::i;:::-;::::0;;;-1:-1:-1;49111:32:0::3;::::0;-1:-1:-1;49121:10:0::3;49133:9:::0;49111::::3;:32::i;46560:201::-:0;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;10703:2:1;45863:68:0;;;10685:21:1;;;10722:18;;;10715:30;-1:-1:-1;;;;;;;;;;;10761:18:1;;;10754:62;10833:18;;45863:68:0;10501:356:1;45863:68:0;-1:-1:-1;;;;;46649:22:0;::::1;46641:73;;;::::0;-1:-1:-1;;;46641:73:0;;16664:2:1;46641:73:0::1;::::0;::::1;16646:21:1::0;16703:2;16683:18;;;16676:30;16742:34;16722:18;;;16715:62;16813:8;16793:18;;;16786:36;16839:19;;46641:73:0::1;16462:402:1::0;46641:73:0::1;46725:28;46744:8;46725:18;:28::i;:::-;46560:201:::0;:::o;33433:187::-;33490:4;33554:13;;33544:7;:23;33514:98;;;;-1:-1:-1;;33585:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33585:27:0;;;;33584:28;;33433:187::o;41603:196::-;41718:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41718:29:0;-1:-1:-1;;;;;41718:29:0;;;;;;;;;41763:28;;41718:24;;41763:28;;;;;;;41603:196;;;:::o;20202:190::-;20327:4;20380;20351:25;20364:5;20371:4;20351:12;:25::i;:::-;:33;;20202:190;-1:-1:-1;;;;20202:190:0:o;33628:104::-;33697:27;33707:2;33711:8;33697:27;;;;;;;;;;;;:9;:27::i;36546:2130::-;36661:35;36699:21;36712:7;36699:12;:21::i;:::-;36661:59;;36759:4;-1:-1:-1;;;;;36737:26:0;:13;:18;;;-1:-1:-1;;;;;36737:26:0;;36733:67;;36772:28;;-1:-1:-1;;;36772:28:0;;;;;;;;;;;36733:67;36813:22;22427:10;-1:-1:-1;;;;;36839:20:0;;;;:73;;-1:-1:-1;36876:36:0;36893:4;22427:10;32081:164;:::i;36876:36::-;36839:126;;;-1:-1:-1;22427:10:0;36929:20;36941:7;36929:11;:20::i;:::-;-1:-1:-1;;;;;36929:36:0;;36839:126;36813:153;;36984:17;36979:66;;37010:35;;-1:-1:-1;;;37010:35:0;;;;;;;;;;;36979:66;-1:-1:-1;;;;;37060:16:0;;37056:52;;37085:23;;-1:-1:-1;;;37085:23:0;;;;;;;;;;;37056:52;37229:35;37246:1;37250:7;37259:4;37229:8;:35::i;:::-;-1:-1:-1;;;;;37560:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37560:31:0;;;;;;;-1:-1:-1;;37560:31:0;;;;;;;37606:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37606:29:0;;;;;;;;;;;37686:20;;;:11;:20;;;;;;37721:18;;-1:-1:-1;;;;;;37754:49:0;;;;-1:-1:-1;;;37787:15:0;37754:49;;;;;;;;;;38077:11;;38137:24;;;;;38180:13;;37686:20;;38137:24;;38180:13;38176:384;;38390:13;;38375:11;:28;38371:174;;38428:20;;38497:28;;;;38471:54;;-1:-1:-1;;;38471:54:0;-1:-1:-1;;;;;;38471:54:0;;;-1:-1:-1;;;;;38428:20:0;;38471:54;;;;38371:174;37535:1036;;;38607:7;38603:2;-1:-1:-1;;;;;38588:27:0;38597:4;-1:-1:-1;;;;;38588:27:0;;;;;;;;;;;38626:42;36650:2026;;36546:2130;;;:::o;4618:317::-;4733:6;4708:21;:31;;4700:73;;;;-1:-1:-1;;;4700:73:0;;17071:2:1;4700:73:0;;;17053:21:1;17110:2;17090:18;;;17083:30;17149:31;17129:18;;;17122:59;17198:18;;4700:73:0;16869:353:1;4700:73:0;4787:12;4805:9;-1:-1:-1;;;;;4805:14:0;4827:6;4805:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4786:52;;;4857:7;4849:78;;;;-1:-1:-1;;;4849:78:0;;17639:2:1;4849:78:0;;;17621:21:1;17678:2;17658:18;;;17651:30;17717:34;17697:18;;;17690:62;17788:28;17768:18;;;17761:56;17834:19;;4849:78:0;17437:422:1;28581:1109:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28692:7:0;28775:13;;28768:4;:20;28737:886;;;28809:31;28843:17;;;:11;:17;;;;;;;;;28809:51;;;;;;;;;-1:-1:-1;;;;;28809:51:0;;;;-1:-1:-1;;;28809:51:0;;;;;;;;;;;-1:-1:-1;;;28809:51:0;;;;;;;;;;;;;;28879:729;;28929:14;;-1:-1:-1;;;;;28929:28:0;;28925:101;;28993:9;28581:1109;-1:-1:-1;;;28581:1109:0:o;28925:101::-;-1:-1:-1;;;29368:6:0;29413:17;;;;:11;:17;;;;;;;;;29401:29;;;;;;;;;-1:-1:-1;;;;;29401:29:0;;;;;-1:-1:-1;;;29401:29:0;;;;;;;;;;;-1:-1:-1;;;29401:29:0;;;;;;;;;;;;;29461:28;29457:109;;29529:9;28581:1109;-1:-1:-1;;;28581:1109:0:o;29457:109::-;29328:261;;;28790:833;28737:886;29651:31;;-1:-1:-1;;;29651:31:0;;;;;;;;;;;46921:191;47014:6;;;-1:-1:-1;;;;;47031:17:0;;;-1:-1:-1;;47031:17:0;;;;;;;47064:40;;47014:6;;;47031:17;47014:6;;47064:40;;46995:16;;47064:40;46984:128;46921:191;:::o;42291:667::-;42475:72;;-1:-1:-1;;;42475:72:0;;42454:4;;-1:-1:-1;;;;;42475:36:0;;;;;:72;;22427:10;;42526:4;;42532:7;;42541:5;;42475:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42475:72:0;;;;;;;;-1:-1:-1;;42475:72:0;;;;;;;;;;;;:::i;:::-;;;42471:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42709:13:0;;42705:235;;42755:40;;-1:-1:-1;;;42755:40:0;;;;;;;;;;;42705:235;42898:6;42892:13;42883:6;42879:2;42875:15;42868:38;42471:480;-1:-1:-1;;;;;;42594:55:0;-1:-1:-1;;;42594:55:0;;-1:-1:-1;42471:480:0;42291:667;;;;;;:::o;52527:108::-;52587:13;52620:7;52613:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;20754:675;20837:7;20880:4;20837:7;20895:497;20919:5;:12;20915:1;:16;20895:497;;;20953:20;20976:5;20982:1;20976:8;;;;;;;;:::i;:::-;;;;;;;20953:31;;21019:12;21003;:28;20999:382;;21505:13;21555:15;;;21591:4;21584:15;;;21638:4;21622:21;;21131:57;;20999:382;;;21505:13;21555:15;;;21591:4;21584:15;;;21638:4;21622:21;;21308:57;;20999:382;-1:-1:-1;20933:3:0;;;;:::i;:::-;;;;20895:497;;;-1:-1:-1;21409:12:0;20754:675;-1:-1:-1;;;20754:675:0:o;34095:163::-;34218:32;34224:2;34228:8;34238:5;34245:4;34656:20;34679:13;-1:-1:-1;;;;;34707:16:0;;34703:48;;34732:19;;-1:-1:-1;;;34732:19:0;;;;;;;;;;;34703:48;34766:13;34762:44;;34788:18;;-1:-1:-1;;;34788:18:0;;;;;;;;;;;34762:44;-1:-1:-1;;;;;35157:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35216:49:0;;35157:44;;;;;;;;35216:49;;;;-1:-1:-1;;35157:44:0;;;;;;35216:49;;;;;;;;;;;;;;;;35282:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35332:66:0;;;;-1:-1:-1;;;35382:15:0;35332:66;;;;;;;;;;35282:25;35479:23;;;35523:4;:23;;;;-1:-1:-1;;;;;;35531:13:0;;3652:19;:23;;35531:15;35519:641;;;35567:314;35598:38;;35623:12;;-1:-1:-1;;;;;35598:38:0;;;35615:1;;35598:38;;35615:1;;35598:38;35664:69;35703:1;35707:2;35711:14;;;;;;35727:5;35664:30;:69::i;:::-;35659:174;;35769:40;;-1:-1:-1;;;35769:40:0;;;;;;;;;;;35659:174;35876:3;35860:12;:19;;35567:314;;35962:12;35945:13;;:29;35941:43;;35976:8;;;35941:43;35519:641;;;36025:120;36056:40;;36081:14;;;;;-1:-1:-1;;;;;36056:40:0;;;36073:1;;36056:40;;36073:1;;36056:40;36140:3;36124:12;:19;;36025:120;;35519:641;-1:-1:-1;36174:13:0;:28;36224:60;32809:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:196::-;1411:20;;-1:-1:-1;;;;;1460:54:1;;1450:65;;1440:93;;1529:1;1526;1519:12;1440:93;1343:196;;;:::o;1544:186::-;1603:6;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;1917:180::-;1976:6;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;-1:-1:-1;2068:23:1;;1917:180;-1:-1:-1;1917:180:1:o;2333:254::-;2401:6;2409;2462:2;2450:9;2441:7;2437:23;2433:32;2430:52;;;2478:1;2475;2468:12;2430:52;2501:29;2520:9;2501:29;:::i;:::-;2491:39;2577:2;2562:18;;;;2549:32;;-1:-1:-1;;;2333:254:1:o;2592:367::-;2655:8;2665:6;2719:3;2712:4;2704:6;2700:17;2696:27;2686:55;;2737:1;2734;2727:12;2686:55;-1:-1:-1;2760:20:1;;2803:18;2792:30;;2789:50;;;2835:1;2832;2825:12;2789:50;2872:4;2864:6;2860:17;2848:29;;2932:3;2925:4;2915:6;2912:1;2908:14;2900:6;2896:27;2892:38;2889:47;2886:67;;;2949:1;2946;2939:12;2886:67;2592:367;;;;;:::o;2964:505::-;3059:6;3067;3075;3128:2;3116:9;3107:7;3103:23;3099:32;3096:52;;;3144:1;3141;3134:12;3096:52;3180:9;3167:23;3157:33;;3241:2;3230:9;3226:18;3213:32;3268:18;3260:6;3257:30;3254:50;;;3300:1;3297;3290:12;3254:50;3339:70;3401:7;3392:6;3381:9;3377:22;3339:70;:::i;:::-;2964:505;;3428:8;;-1:-1:-1;3313:96:1;;-1:-1:-1;;;;2964:505:1:o;3474:328::-;3551:6;3559;3567;3620:2;3608:9;3599:7;3595:23;3591:32;3588:52;;;3636:1;3633;3626:12;3588:52;3659:29;3678:9;3659:29;:::i;:::-;3649:39;;3707:38;3741:2;3730:9;3726:18;3707:38;:::i;:::-;3697:48;;3792:2;3781:9;3777:18;3764:32;3754:42;;3474:328;;;;;:::o;3807:127::-;3868:10;3863:3;3859:20;3856:1;3849:31;3899:4;3896:1;3889:15;3923:4;3920:1;3913:15;3939:632;4004:5;4034:18;4075:2;4067:6;4064:14;4061:40;;;4081:18;;:::i;:::-;4156:2;4150:9;4124:2;4210:15;;-1:-1:-1;;4206:24:1;;;4232:2;4202:33;4198:42;4186:55;;;4256:18;;;4276:22;;;4253:46;4250:72;;;4302:18;;:::i;:::-;4342:10;4338:2;4331:22;4371:6;4362:15;;4401:6;4393;4386:22;4441:3;4432:6;4427:3;4423:16;4420:25;4417:45;;;4458:1;4455;4448:12;4417:45;4508:6;4503:3;4496:4;4488:6;4484:17;4471:44;4563:1;4556:4;4547:6;4539;4535:19;4531:30;4524:41;;;;3939:632;;;;;:::o;4576:222::-;4619:5;4672:3;4665:4;4657:6;4653:17;4649:27;4639:55;;4690:1;4687;4680:12;4639:55;4712:80;4788:3;4779:6;4766:20;4759:4;4751:6;4747:17;4712:80;:::i;4803:322::-;4872:6;4925:2;4913:9;4904:7;4900:23;4896:32;4893:52;;;4941:1;4938;4931:12;4893:52;4981:9;4968:23;5014:18;5006:6;5003:30;5000:50;;;5046:1;5043;5036:12;5000:50;5069;5111:7;5102:6;5091:9;5087:22;5069:50;:::i;5130:160::-;5195:20;;5251:13;;5244:21;5234:32;;5224:60;;5280:1;5277;5270:12;5295:180;5351:6;5404:2;5392:9;5383:7;5379:23;5375:32;5372:52;;;5420:1;5417;5410:12;5372:52;5443:26;5459:9;5443:26;:::i;5480:390::-;5558:6;5566;5619:2;5607:9;5598:7;5594:23;5590:32;5587:52;;;5635:1;5632;5625:12;5587:52;5671:9;5658:23;5648:33;;5732:2;5721:9;5717:18;5704:32;5759:18;5751:6;5748:30;5745:50;;;5791:1;5788;5781:12;5745:50;5814;5856:7;5847:6;5836:9;5832:22;5814:50;:::i;:::-;5804:60;;;5480:390;;;;;:::o;6057:254::-;6122:6;6130;6183:2;6171:9;6162:7;6158:23;6154:32;6151:52;;;6199:1;6196;6189:12;6151:52;6222:29;6241:9;6222:29;:::i;:::-;6212:39;;6270:35;6301:2;6290:9;6286:18;6270:35;:::i;:::-;6260:45;;6057:254;;;;;:::o;6316:667::-;6411:6;6419;6427;6435;6488:3;6476:9;6467:7;6463:23;6459:33;6456:53;;;6505:1;6502;6495:12;6456:53;6528:29;6547:9;6528:29;:::i;:::-;6518:39;;6576:38;6610:2;6599:9;6595:18;6576:38;:::i;:::-;6566:48;;6661:2;6650:9;6646:18;6633:32;6623:42;;6716:2;6705:9;6701:18;6688:32;6743:18;6735:6;6732:30;6729:50;;;6775:1;6772;6765:12;6729:50;6798:22;;6851:4;6843:13;;6839:27;-1:-1:-1;6829:55:1;;6880:1;6877;6870:12;6829:55;6903:74;6969:7;6964:2;6951:16;6946:2;6942;6938:11;6903:74;:::i;:::-;6893:84;;;6316:667;;;;;;;:::o;6988:248::-;7056:6;7064;7117:2;7105:9;7096:7;7092:23;7088:32;7085:52;;;7133:1;7130;7123:12;7085:52;-1:-1:-1;;7156:23:1;;;7226:2;7211:18;;;7198:32;;-1:-1:-1;6988:248:1:o;7241:260::-;7309:6;7317;7370:2;7358:9;7349:7;7345:23;7341:32;7338:52;;;7386:1;7383;7376:12;7338:52;7409:29;7428:9;7409:29;:::i;:::-;7399:39;;7457:38;7491:2;7480:9;7476:18;7457:38;:::i;7506:573::-;7610:6;7618;7626;7634;7687:2;7675:9;7666:7;7662:23;7658:32;7655:52;;;7703:1;7700;7693:12;7655:52;7739:9;7726:23;7716:33;;7796:2;7785:9;7781:18;7768:32;7758:42;;7851:2;7840:9;7836:18;7823:32;7878:18;7870:6;7867:30;7864:50;;;7910:1;7907;7900:12;7864:50;7949:70;8011:7;8002:6;7991:9;7987:22;7949:70;:::i;:::-;7506:573;;;;-1:-1:-1;8038:8:1;-1:-1:-1;;;;7506:573:1:o;8084:380::-;8163:1;8159:12;;;;8206;;;8227:61;;8281:4;8273:6;8269:17;8259:27;;8227:61;8334:2;8326:6;8323:14;8303:18;8300:38;8297:161;;;8380:10;8375:3;8371:20;8368:1;8361:31;8415:4;8412:1;8405:15;8443:4;8440:1;8433:15;8297:161;;8084:380;;;:::o;9165:127::-;9226:10;9221:3;9217:20;9214:1;9207:31;9257:4;9254:1;9247:15;9281:4;9278:1;9271:15;10236:127;10297:10;10292:3;10288:20;10285:1;10278:31;10328:4;10325:1;10318:15;10352:4;10349:1;10342:15;10368:128;10408:3;10439:1;10435:6;10432:1;10429:13;10426:39;;;10445:18;;:::i;:::-;-1:-1:-1;10481:9:1;;10368:128::o;10862:168::-;10902:7;10968:1;10964;10960:6;10956:14;10953:1;10950:21;10945:1;10938:9;10931:17;10927:45;10924:71;;;10975:18;;:::i;:::-;-1:-1:-1;11015:9:1;;10862:168::o;11035:127::-;11096:10;11091:3;11087:20;11084:1;11077:31;11127:4;11124:1;11117:15;11151:4;11148:1;11141:15;11167:120;11207:1;11233;11223:35;;11238:18;;:::i;:::-;-1:-1:-1;11272:9:1;;11167:120::o;12192:1104::-;12322:3;12351:1;12384:6;12378:13;12414:3;12436:1;12464:9;12460:2;12456:18;12446:28;;12524:2;12513:9;12509:18;12546;12536:61;;12590:4;12582:6;12578:17;12568:27;;12536:61;12616:2;12664;12656:6;12653:14;12633:18;12630:38;12627:165;;;-1:-1:-1;;;12691:33:1;;12747:4;12744:1;12737:15;12777:4;12698:3;12765:17;12627:165;12808:18;12835:104;;;;12953:1;12948:323;;;;12801:470;;12835:104;-1:-1:-1;;12868:24:1;;12856:37;;12913:16;;;;-1:-1:-1;12835:104:1;;12948:323;12139:1;12132:14;;;12176:4;12163:18;;13046:1;13060:165;13074:6;13071:1;13068:13;13060:165;;;13152:14;;13139:11;;;13132:35;13195:16;;;;13089:10;;13060:165;;;13064:3;;13254:6;13249:3;13245:16;13238:23;;12801:470;-1:-1:-1;13287:3:1;;12192:1104;-1:-1:-1;;;;;;;;12192:1104:1:o;13301:184::-;13371:6;13424:2;13412:9;13403:7;13399:23;13395:32;13392:52;;;13440:1;13437;13430:12;13392:52;-1:-1:-1;13463:16:1;;13301:184;-1:-1:-1;13301:184:1:o;13490:274::-;13619:3;13657:6;13651:13;13673:53;13719:6;13714:3;13707:4;13699:6;13695:17;13673:53;:::i;:::-;13742:16;;;;;13490:274;-1:-1:-1;;13490:274:1:o;14173:411::-;-1:-1:-1;;;;;14382:6:1;14378:55;14367:9;14360:74;14470:6;14465:2;14454:9;14450:18;14443:34;14513:2;14508;14497:9;14493:18;14486:30;14341:4;14533:45;14574:2;14563:9;14559:18;14551:6;14533:45;:::i;:::-;14525:53;14173:411;-1:-1:-1;;;;;14173:411:1:o;14934:470::-;15113:3;15151:6;15145:13;15167:53;15213:6;15208:3;15201:4;15193:6;15189:17;15167:53;:::i;:::-;15283:13;;15242:16;;;;15305:57;15283:13;15242:16;15339:4;15327:17;;15305:57;:::i;:::-;15378:20;;14934:470;-1:-1:-1;;;;14934:470:1:o;17864:512::-;18058:4;-1:-1:-1;;;;;18168:2:1;18160:6;18156:15;18145:9;18138:34;18220:2;18212:6;18208:15;18203:2;18192:9;18188:18;18181:43;;18260:6;18255:2;18244:9;18240:18;18233:34;18303:3;18298:2;18287:9;18283:18;18276:31;18324:46;18365:3;18354:9;18350:19;18342:6;18324:46;:::i;:::-;18316:54;17864:512;-1:-1:-1;;;;;;17864:512:1:o;18381:249::-;18450:6;18503:2;18491:9;18482:7;18478:23;18474:32;18471:52;;;18519:1;18516;18509:12;18471:52;18551:9;18545:16;18570:30;18594:5;18570:30;:::i;18635:135::-;18674:3;-1:-1:-1;;18695:17:1;;18692:43;;;18715:18;;:::i;:::-;-1:-1:-1;18762:1:1;18751:13;;18635:135::o;18775:125::-;18815:4;18843:1;18840;18837:8;18834:34;;;18848:18;;:::i;:::-;-1:-1:-1;18885:9:1;;18775:125::o;18905:112::-;18937:1;18963;18953:35;;18968:18;;:::i;:::-;-1:-1:-1;19002:9:1;;18905:112::o

Swarm Source

ipfs://b35e6f0308d9a9221a608dbbb170e52386758a4069656528b767ccfeb36c3fd6
Loading...
Loading
Loading...
Loading
[ 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.