ETH Price: $3,260.44 (+2.12%)
Gas: 2 Gwei

Token

Musical Mfers (MMFER)
 

Overview

Max Total Supply

586 MMFER

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
30 MMFER
0x80e515edac27bcd19c9d4db634f973b2360a73cf
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:
musicalMfers

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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: musicalMfers.sol


pragma solidity ^0.8.4;

//  __  __  __  __  ___  ____  ___    __    __   
// (  \/  )(  )(  )/ __)(_  _)/ __)  /__\  (  )  
//  )    (  )(__)( \__ \ _)(_( (__  /(__)\  )(__ 
// (_/\/\_)(______)(___/(____)\___)(__)(__)(____)
//  __  __  ____  ____  ____  ___                
// (  \/  )( ___)( ___)(  _ \/ __)               
//  )    (  )__)  )__)  )   /\__ \               
// (_/\/\_)(__)  (____)(_)\_)(___/      



contract musicalMfers is ERC721A, Ownable {
    uint256 maxMintPerTxn = 50;
    uint256 maxFreeMintPerTxn = 10;
    uint256 amountTotalNFTs = 10021;
    uint256 amountFreeNFTs = 420; 
    uint256 public price_1 = 0.015 ether;
    uint256 public price_2 = 0.01 ether;
    string public baseURI;
    bool public URIlocked;
    bool public saleIsActive;

    constructor() ERC721A("Musical Mfers", "MMFER") {}

    function updateMaxMintPerTxn(uint256 newLimit) public onlyOwner {
        maxMintPerTxn = newLimit;
    }

    function changeURI(string calldata _newURI) public onlyOwner {
        require(!URIlocked, "URI locked, can't change it anymore");
        baseURI = _newURI;
    }

    function lockURI() public onlyOwner {
        require (!URIlocked, "URI already locked");
        URIlocked = !URIlocked;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function freeMint(uint256 amountFreeMints) public {
        require (saleIsActive, "Sale is not active at this moment");
        require (totalSupply() < amountFreeNFTs, "Free mint has ended!");        
        require (amountFreeMints + totalSupply() <= amountFreeNFTs, "Not enough free NFTs, try minting less!");
        require (amountFreeMints + totalSupply()  <= amountTotalNFTs, "Not enough tokens left");
        require (amountFreeMints <= maxFreeMintPerTxn, "You are minting more free NFTs than available per transaction");

        _safeMint(msg.sender, amountFreeMints);
    }

    function mint(uint256 amountNFTs) public payable {
        require (saleIsActive, "Sale is not active at this moment");
        require (totalSupply() >= amountFreeNFTs, "Free mint hasn't ended yet!");   
        require (amountNFTs + totalSupply() <= amountTotalNFTs, "Not enough tokens left");
        require (amountNFTs <= maxMintPerTxn, "You are minting more NFTs than available per transaction");

        if (amountNFTs <= 4) {
            require (msg.value == amountNFTs * price_1, "Invalid ETH amount");
            _safeMint(msg.sender, amountNFTs);
        }

        else {
            require (msg.value == amountNFTs * price_2, "Invalid ETH amount");
            _safeMint(msg.sender, amountNFTs);
        }
    }

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

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

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"},{"inputs":[],"name":"URIlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"changeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountFreeMints","type":"uint256"}],"name":"freeMint","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":[],"name":"lockURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountNFTs","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMaxMintPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526032600955600a8055612725600b556101a4600c5566354a6ba7a18000600d55662386f26fc10000600e553480156200003c57600080fd5b506040518060400160405280600d81526020017f4d75736963616c204d66657273000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4d4645520000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c1929190620001ec565b508060039080519060200190620000da929190620001ec565b50620000eb6200011960201b60201c565b600081905550505062000113620001076200011e60201b60201c565b6200012660201b60201c565b62000301565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fa90620002cb565b90600052602060002090601f0160209004810192826200021e57600085556200026a565b82601f106200023957805160ff19168380011785556200026a565b828001600101855582156200026a579182015b82811115620002695782518255916020019190600101906200024c565b5b5090506200027991906200027d565b5090565b5b80821115620002985760008160009055506001016200027e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e457607f821691505b60208210811415620002fb57620002fa6200029c565b5b50919050565b613ab580620003116000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063dca141f811610095578063eb8d244411610064578063eb8d2444146105ec578063ee14908d14610617578063f2c9bdd314610642578063f2fde38b1461066b576101c2565b8063dca141f814610530578063e41c75db1461055b578063e5e01c1114610586578063e985e9c5146105af576101c2565b8063a0712d68116100d1578063a0712d6814610485578063a22cb465146104a1578063b88d4fde146104ca578063c87b56dd146104f3576101c2565b80638da5cb5b146104185780638e021c061461044357806395d89b411461045a576101c2565b80633ccfd60b116101645780636c0360eb1161013e5780636c0360eb1461037057806370a082311461039b578063715018a6146103d85780637c928fe9146103ef576101c2565b80633ccfd60b1461030057806342842e0e1461030a5780636352211e14610333576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c057806334918dfd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612ac7565b610694565b6040516101fb9190612b0f565b60405180910390f35b34801561021057600080fd5b50610219610776565b6040516102269190612bc3565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612c1b565b610808565b6040516102639190612c89565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612cd0565b610884565b005b3480156102a157600080fd5b506102aa61098f565b6040516102b79190612d1f565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612d3a565b6109a6565b005b3480156102f557600080fd5b506102fe6109b6565b005b610308610a5e565b005b34801561031657600080fd5b50610331600480360381019061032c9190612d3a565b610b2a565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612c1b565b610b4a565b6040516103679190612c89565b60405180910390f35b34801561037c57600080fd5b50610385610b60565b6040516103929190612bc3565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612d8d565b610bee565b6040516103cf9190612d1f565b60405180910390f35b3480156103e457600080fd5b506103ed610cbe565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612c1b565b610d46565b005b34801561042457600080fd5b5061042d610ee0565b60405161043a9190612c89565b60405180910390f35b34801561044f57600080fd5b50610458610f0a565b005b34801561046657600080fd5b5061046f611002565b60405161047c9190612bc3565b60405180910390f35b61049f600480360381019061049a9190612c1b565b611094565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612de6565b61128e565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612f5b565b611406565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190612c1b565b611482565b6040516105279190612bc3565b60405180910390f35b34801561053c57600080fd5b50610545611521565b6040516105529190612d1f565b60405180910390f35b34801561056757600080fd5b50610570611527565b60405161057d9190612b0f565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a8919061303e565b61153a565b005b3480156105bb57600080fd5b506105d660048036038101906105d1919061308b565b61161c565b6040516105e39190612b0f565b60405180910390f35b3480156105f857600080fd5b506106016116b0565b60405161060e9190612b0f565b60405180910390f35b34801561062357600080fd5b5061062c6116c3565b6040516106399190612d1f565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612c1b565b6116c9565b005b34801561067757600080fd5b50610692600480360381019061068d9190612d8d565b61174f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076f575061076e82611847565b5b9050919050565b606060028054610785906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107b1906130fa565b80156107fe5780601f106107d3576101008083540402835291602001916107fe565b820191906000526020600020905b8154815290600101906020018083116107e157829003601f168201915b5050505050905090565b6000610813826118b1565b610849576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088f82610b4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109166118ff565b73ffffffffffffffffffffffffffffffffffffffff16141580156109485750610946816109416118ff565b61161c565b155b1561097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098a838383611907565b505050565b60006109996119b9565b6001546000540303905090565b6109b18383836119be565b505050565b6109be6118ff565b73ffffffffffffffffffffffffffffffffffffffff166109dc610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990613178565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b610a666118ff565b73ffffffffffffffffffffffffffffffffffffffff16610a84610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190613178565b60405180910390fd5b610ae2610ee0565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b27573d6000803e3d6000fd5b50565b610b4583838360405180602001604052806000815250611406565b505050565b6000610b5582611eaf565b600001519050919050565b600f8054610b6d906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b99906130fa565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cc66118ff565b73ffffffffffffffffffffffffffffffffffffffff16610ce4610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190613178565b60405180910390fd5b610d44600061213e565b565b601060019054906101000a900460ff16610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061320a565b60405180910390fd5b600c54610da061098f565b10610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790613276565b60405180910390fd5b600c54610deb61098f565b82610df691906132c5565b1115610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e9061338d565b60405180910390fd5b600b54610e4261098f565b82610e4d91906132c5565b1115610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e85906133f9565b60405180910390fd5b600a54811115610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca9061348b565b60405180910390fd5b610edd3382612204565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f126118ff565b73ffffffffffffffffffffffffffffffffffffffff16610f30610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90613178565b60405180910390fd5b601060009054906101000a900460ff1615610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906134f7565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b606060038054611011906130fa565b80601f016020809104026020016040519081016040528092919081815260200182805461103d906130fa565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b5050505050905090565b601060019054906101000a900460ff166110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061320a565b60405180910390fd5b600c546110ee61098f565b101561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613563565b60405180910390fd5b600b5461113a61098f565b8261114591906132c5565b1115611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906133f9565b60405180910390fd5b6009548111156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c2906135f5565b60405180910390fd5b6004811161123157600d54816111e19190613615565b3414611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906136bb565b60405180910390fd5b61122c3382612204565b61128b565b600e548161123f9190613615565b3414611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906136bb565b60405180910390fd5b61128a3382612204565b5b50565b6112966118ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113086118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b56118ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190612b0f565b60405180910390a35050565b6114118484846119be565b6114308373ffffffffffffffffffffffffffffffffffffffff16612222565b8015611445575061144384848484612245565b155b1561147c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061148d826118b1565b6114c3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114cd612396565b90506000815114156114ee5760405180602001604052806000815250611519565b806114f884612428565b604051602001611509929190613717565b6040516020818303038152906040525b915050919050565b600e5481565b601060009054906101000a900460ff1681565b6115426118ff565b73ffffffffffffffffffffffffffffffffffffffff16611560610ee0565b73ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613178565b60405180910390fd5b601060009054906101000a900460ff1615611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906137ad565b60405180910390fd5b8181600f9190611617929190612975565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060019054906101000a900460ff1681565b600d5481565b6116d16118ff565b73ffffffffffffffffffffffffffffffffffffffff166116ef610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613178565b60405180910390fd5b8060098190555050565b6117576118ff565b73ffffffffffffffffffffffffffffffffffffffff16611775610ee0565b73ffffffffffffffffffffffffffffffffffffffff16146117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118329061383f565b60405180910390fd5b6118448161213e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118bc6119b9565b111580156118cb575060005482105b80156118f8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119c982611eaf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119f06118ff565b73ffffffffffffffffffffffffffffffffffffffff161480611a235750611a228260000151611a1d6118ff565b61161c565b5b80611a685750611a316118ff565b73ffffffffffffffffffffffffffffffffffffffff16611a5084610808565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611aa1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b71576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7e8585856001612589565b611b8e6000848460000151611907565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e3f57600054811015611e3e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea8858585600161258f565b5050505050565b611eb76129fb565b600082905080611ec56119b9565b11158015611ed4575060005481105b15612107576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161210557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fe9578092505050612139565b5b60011561210457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120ff578092505050612139565b611fea565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61221e828260405180602001604052806000815250612595565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226b6118ff565b8786866040518563ffffffff1660e01b815260040161228d94939291906138b4565b6020604051808303816000875af19250505080156122c957506040513d601f19601f820116820180604052508101906122c69190613915565b60015b612343573d80600081146122f9576040519150601f19603f3d011682016040523d82523d6000602084013e6122fe565b606091505b5060008151141561233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546123a5906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546123d1906130fa565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606000821415612470576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612584565b600082905060005b600082146124a257808061248b90613942565b915050600a8261249b91906139ba565b9150612478565b60008167ffffffffffffffff8111156124be576124bd612e30565b5b6040519080825280601f01601f1916602001820160405280156124f05781602001600182028036833780820191505090505b5090505b6000851461257d5760018261250991906139eb565b9150600a856125189190613a1f565b603061252491906132c5565b60f81b81838151811061253a57612539613a50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561257691906139ba565b94506124f4565b8093505050505b919050565b50505050565b50505050565b6125a283838360016125a7565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612614576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561264f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61265c6000868387612589565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561282657506128258773ffffffffffffffffffffffffffffffffffffffff16612222565b5b156128ec575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461289b6000888480600101955088612245565b6128d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561282c5782600054146128e757600080fd5b612958565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128ed575b81600081905550505061296e600086838761258f565b5050505050565b828054612981906130fa565b90600052602060002090601f0160209004810192826129a357600085556129ea565b82601f106129bc57803560ff19168380011785556129ea565b828001600101855582156129ea579182015b828111156129e95782358255916020019190600101906129ce565b5b5090506129f79190612a3e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a57576000816000905550600101612a3f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aa481612a6f565b8114612aaf57600080fd5b50565b600081359050612ac181612a9b565b92915050565b600060208284031215612add57612adc612a65565b5b6000612aeb84828501612ab2565b91505092915050565b60008115159050919050565b612b0981612af4565b82525050565b6000602082019050612b246000830184612b00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b64578082015181840152602081019050612b49565b83811115612b73576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9582612b2a565b612b9f8185612b35565b9350612baf818560208601612b46565b612bb881612b79565b840191505092915050565b60006020820190508181036000830152612bdd8184612b8a565b905092915050565b6000819050919050565b612bf881612be5565b8114612c0357600080fd5b50565b600081359050612c1581612bef565b92915050565b600060208284031215612c3157612c30612a65565b5b6000612c3f84828501612c06565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7382612c48565b9050919050565b612c8381612c68565b82525050565b6000602082019050612c9e6000830184612c7a565b92915050565b612cad81612c68565b8114612cb857600080fd5b50565b600081359050612cca81612ca4565b92915050565b60008060408385031215612ce757612ce6612a65565b5b6000612cf585828601612cbb565b9250506020612d0685828601612c06565b9150509250929050565b612d1981612be5565b82525050565b6000602082019050612d346000830184612d10565b92915050565b600080600060608486031215612d5357612d52612a65565b5b6000612d6186828701612cbb565b9350506020612d7286828701612cbb565b9250506040612d8386828701612c06565b9150509250925092565b600060208284031215612da357612da2612a65565b5b6000612db184828501612cbb565b91505092915050565b612dc381612af4565b8114612dce57600080fd5b50565b600081359050612de081612dba565b92915050565b60008060408385031215612dfd57612dfc612a65565b5b6000612e0b85828601612cbb565b9250506020612e1c85828601612dd1565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e6882612b79565b810181811067ffffffffffffffff82111715612e8757612e86612e30565b5b80604052505050565b6000612e9a612a5b565b9050612ea68282612e5f565b919050565b600067ffffffffffffffff821115612ec657612ec5612e30565b5b612ecf82612b79565b9050602081019050919050565b82818337600083830152505050565b6000612efe612ef984612eab565b612e90565b905082815260208101848484011115612f1a57612f19612e2b565b5b612f25848285612edc565b509392505050565b600082601f830112612f4257612f41612e26565b5b8135612f52848260208601612eeb565b91505092915050565b60008060008060808587031215612f7557612f74612a65565b5b6000612f8387828801612cbb565b9450506020612f9487828801612cbb565b9350506040612fa587828801612c06565b925050606085013567ffffffffffffffff811115612fc657612fc5612a6a565b5b612fd287828801612f2d565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612ffe57612ffd612e26565b5b8235905067ffffffffffffffff81111561301b5761301a612fde565b5b60208301915083600182028301111561303757613036612fe3565b5b9250929050565b6000806020838503121561305557613054612a65565b5b600083013567ffffffffffffffff81111561307357613072612a6a565b5b61307f85828601612fe8565b92509250509250929050565b600080604083850312156130a2576130a1612a65565b5b60006130b085828601612cbb565b92505060206130c185828601612cbb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311257607f821691505b60208210811415613126576131256130cb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613162602083612b35565b915061316d8261312c565b602082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f53616c65206973206e6f74206163746976652061742074686973206d6f6d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006131f4602183612b35565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f46726565206d696e742068617320656e64656421000000000000000000000000600082015250565b6000613260601483612b35565b915061326b8261322a565b602082019050919050565b6000602082019050818103600083015261328f81613253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132d082612be5565b91506132db83612be5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133105761330f613296565b5b828201905092915050565b7f4e6f7420656e6f7567682066726565204e4654732c20747279206d696e74696e60008201527f67206c6573732100000000000000000000000000000000000000000000000000602082015250565b6000613377602783612b35565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006133e3601683612b35565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b7f596f7520617265206d696e74696e67206d6f72652066726565204e465473207460008201527f68616e20617661696c61626c6520706572207472616e73616374696f6e000000602082015250565b6000613475603d83612b35565b915061348082613419565b604082019050919050565b600060208201905081810360008301526134a481613468565b9050919050565b7f55524920616c7265616479206c6f636b65640000000000000000000000000000600082015250565b60006134e1601283612b35565b91506134ec826134ab565b602082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f46726565206d696e74206861736e277420656e64656420796574210000000000600082015250565b600061354d601b83612b35565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f596f7520617265206d696e74696e67206d6f7265204e465473207468616e206160008201527f7661696c61626c6520706572207472616e73616374696f6e0000000000000000602082015250565b60006135df603883612b35565b91506135ea82613583565b604082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b600061362082612be5565b915061362b83612be5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366457613663613296565b5b828202905092915050565b7f496e76616c69642045544820616d6f756e740000000000000000000000000000600082015250565b60006136a5601283612b35565b91506136b08261366f565b602082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b600081905092915050565b60006136f182612b2a565b6136fb81856136db565b935061370b818560208601612b46565b80840191505092915050565b600061372382856136e6565b915061372f82846136e6565b91508190509392505050565b7f555249206c6f636b65642c2063616e2774206368616e676520697420616e796d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b6000613797602383612b35565b91506137a28261373b565b604082019050919050565b600060208201905081810360008301526137c68161378a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613829602683612b35565b9150613834826137cd565b604082019050919050565b600060208201905081810360008301526138588161381c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138868261385f565b613890818561386a565b93506138a0818560208601612b46565b6138a981612b79565b840191505092915050565b60006080820190506138c96000830187612c7a565b6138d66020830186612c7a565b6138e36040830185612d10565b81810360608301526138f5818461387b565b905095945050505050565b60008151905061390f81612a9b565b92915050565b60006020828403121561392b5761392a612a65565b5b600061393984828501613900565b91505092915050565b600061394d82612be5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139805761397f613296565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139c582612be5565b91506139d083612be5565b9250826139e0576139df61398b565b5b828204905092915050565b60006139f682612be5565b9150613a0183612be5565b925082821015613a1457613a13613296565b5b828203905092915050565b6000613a2a82612be5565b9150613a3583612be5565b925082613a4557613a4461398b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201b622c5c39dca8cfa02fdde88321c383cf0d466550bae95b13e8689f6aa01ea264736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063dca141f811610095578063eb8d244411610064578063eb8d2444146105ec578063ee14908d14610617578063f2c9bdd314610642578063f2fde38b1461066b576101c2565b8063dca141f814610530578063e41c75db1461055b578063e5e01c1114610586578063e985e9c5146105af576101c2565b8063a0712d68116100d1578063a0712d6814610485578063a22cb465146104a1578063b88d4fde146104ca578063c87b56dd146104f3576101c2565b80638da5cb5b146104185780638e021c061461044357806395d89b411461045a576101c2565b80633ccfd60b116101645780636c0360eb1161013e5780636c0360eb1461037057806370a082311461039b578063715018a6146103d85780637c928fe9146103ef576101c2565b80633ccfd60b1461030057806342842e0e1461030a5780636352211e14610333576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c057806334918dfd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612ac7565b610694565b6040516101fb9190612b0f565b60405180910390f35b34801561021057600080fd5b50610219610776565b6040516102269190612bc3565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612c1b565b610808565b6040516102639190612c89565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612cd0565b610884565b005b3480156102a157600080fd5b506102aa61098f565b6040516102b79190612d1f565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612d3a565b6109a6565b005b3480156102f557600080fd5b506102fe6109b6565b005b610308610a5e565b005b34801561031657600080fd5b50610331600480360381019061032c9190612d3a565b610b2a565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612c1b565b610b4a565b6040516103679190612c89565b60405180910390f35b34801561037c57600080fd5b50610385610b60565b6040516103929190612bc3565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612d8d565b610bee565b6040516103cf9190612d1f565b60405180910390f35b3480156103e457600080fd5b506103ed610cbe565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612c1b565b610d46565b005b34801561042457600080fd5b5061042d610ee0565b60405161043a9190612c89565b60405180910390f35b34801561044f57600080fd5b50610458610f0a565b005b34801561046657600080fd5b5061046f611002565b60405161047c9190612bc3565b60405180910390f35b61049f600480360381019061049a9190612c1b565b611094565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612de6565b61128e565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612f5b565b611406565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190612c1b565b611482565b6040516105279190612bc3565b60405180910390f35b34801561053c57600080fd5b50610545611521565b6040516105529190612d1f565b60405180910390f35b34801561056757600080fd5b50610570611527565b60405161057d9190612b0f565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a8919061303e565b61153a565b005b3480156105bb57600080fd5b506105d660048036038101906105d1919061308b565b61161c565b6040516105e39190612b0f565b60405180910390f35b3480156105f857600080fd5b506106016116b0565b60405161060e9190612b0f565b60405180910390f35b34801561062357600080fd5b5061062c6116c3565b6040516106399190612d1f565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612c1b565b6116c9565b005b34801561067757600080fd5b50610692600480360381019061068d9190612d8d565b61174f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076f575061076e82611847565b5b9050919050565b606060028054610785906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107b1906130fa565b80156107fe5780601f106107d3576101008083540402835291602001916107fe565b820191906000526020600020905b8154815290600101906020018083116107e157829003601f168201915b5050505050905090565b6000610813826118b1565b610849576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088f82610b4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109166118ff565b73ffffffffffffffffffffffffffffffffffffffff16141580156109485750610946816109416118ff565b61161c565b155b1561097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098a838383611907565b505050565b60006109996119b9565b6001546000540303905090565b6109b18383836119be565b505050565b6109be6118ff565b73ffffffffffffffffffffffffffffffffffffffff166109dc610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990613178565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b610a666118ff565b73ffffffffffffffffffffffffffffffffffffffff16610a84610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190613178565b60405180910390fd5b610ae2610ee0565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b27573d6000803e3d6000fd5b50565b610b4583838360405180602001604052806000815250611406565b505050565b6000610b5582611eaf565b600001519050919050565b600f8054610b6d906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b99906130fa565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cc66118ff565b73ffffffffffffffffffffffffffffffffffffffff16610ce4610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190613178565b60405180910390fd5b610d44600061213e565b565b601060019054906101000a900460ff16610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061320a565b60405180910390fd5b600c54610da061098f565b10610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790613276565b60405180910390fd5b600c54610deb61098f565b82610df691906132c5565b1115610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e9061338d565b60405180910390fd5b600b54610e4261098f565b82610e4d91906132c5565b1115610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e85906133f9565b60405180910390fd5b600a54811115610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca9061348b565b60405180910390fd5b610edd3382612204565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f126118ff565b73ffffffffffffffffffffffffffffffffffffffff16610f30610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90613178565b60405180910390fd5b601060009054906101000a900460ff1615610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906134f7565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b606060038054611011906130fa565b80601f016020809104026020016040519081016040528092919081815260200182805461103d906130fa565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b5050505050905090565b601060019054906101000a900460ff166110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061320a565b60405180910390fd5b600c546110ee61098f565b101561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613563565b60405180910390fd5b600b5461113a61098f565b8261114591906132c5565b1115611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906133f9565b60405180910390fd5b6009548111156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c2906135f5565b60405180910390fd5b6004811161123157600d54816111e19190613615565b3414611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906136bb565b60405180910390fd5b61122c3382612204565b61128b565b600e548161123f9190613615565b3414611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906136bb565b60405180910390fd5b61128a3382612204565b5b50565b6112966118ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113086118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b56118ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190612b0f565b60405180910390a35050565b6114118484846119be565b6114308373ffffffffffffffffffffffffffffffffffffffff16612222565b8015611445575061144384848484612245565b155b1561147c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061148d826118b1565b6114c3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114cd612396565b90506000815114156114ee5760405180602001604052806000815250611519565b806114f884612428565b604051602001611509929190613717565b6040516020818303038152906040525b915050919050565b600e5481565b601060009054906101000a900460ff1681565b6115426118ff565b73ffffffffffffffffffffffffffffffffffffffff16611560610ee0565b73ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613178565b60405180910390fd5b601060009054906101000a900460ff1615611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906137ad565b60405180910390fd5b8181600f9190611617929190612975565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060019054906101000a900460ff1681565b600d5481565b6116d16118ff565b73ffffffffffffffffffffffffffffffffffffffff166116ef610ee0565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613178565b60405180910390fd5b8060098190555050565b6117576118ff565b73ffffffffffffffffffffffffffffffffffffffff16611775610ee0565b73ffffffffffffffffffffffffffffffffffffffff16146117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118329061383f565b60405180910390fd5b6118448161213e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118bc6119b9565b111580156118cb575060005482105b80156118f8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119c982611eaf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119f06118ff565b73ffffffffffffffffffffffffffffffffffffffff161480611a235750611a228260000151611a1d6118ff565b61161c565b5b80611a685750611a316118ff565b73ffffffffffffffffffffffffffffffffffffffff16611a5084610808565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611aa1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b71576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7e8585856001612589565b611b8e6000848460000151611907565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e3f57600054811015611e3e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea8858585600161258f565b5050505050565b611eb76129fb565b600082905080611ec56119b9565b11158015611ed4575060005481105b15612107576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161210557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fe9578092505050612139565b5b60011561210457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120ff578092505050612139565b611fea565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61221e828260405180602001604052806000815250612595565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226b6118ff565b8786866040518563ffffffff1660e01b815260040161228d94939291906138b4565b6020604051808303816000875af19250505080156122c957506040513d601f19601f820116820180604052508101906122c69190613915565b60015b612343573d80600081146122f9576040519150601f19603f3d011682016040523d82523d6000602084013e6122fe565b606091505b5060008151141561233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546123a5906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546123d1906130fa565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606000821415612470576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612584565b600082905060005b600082146124a257808061248b90613942565b915050600a8261249b91906139ba565b9150612478565b60008167ffffffffffffffff8111156124be576124bd612e30565b5b6040519080825280601f01601f1916602001820160405280156124f05781602001600182028036833780820191505090505b5090505b6000851461257d5760018261250991906139eb565b9150600a856125189190613a1f565b603061252491906132c5565b60f81b81838151811061253a57612539613a50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561257691906139ba565b94506124f4565b8093505050505b919050565b50505050565b50505050565b6125a283838360016125a7565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612614576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561264f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61265c6000868387612589565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561282657506128258773ffffffffffffffffffffffffffffffffffffffff16612222565b5b156128ec575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461289b6000888480600101955088612245565b6128d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561282c5782600054146128e757600080fd5b612958565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128ed575b81600081905550505061296e600086838761258f565b5050505050565b828054612981906130fa565b90600052602060002090601f0160209004810192826129a357600085556129ea565b82601f106129bc57803560ff19168380011785556129ea565b828001600101855582156129ea579182015b828111156129e95782358255916020019190600101906129ce565b5b5090506129f79190612a3e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a57576000816000905550600101612a3f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aa481612a6f565b8114612aaf57600080fd5b50565b600081359050612ac181612a9b565b92915050565b600060208284031215612add57612adc612a65565b5b6000612aeb84828501612ab2565b91505092915050565b60008115159050919050565b612b0981612af4565b82525050565b6000602082019050612b246000830184612b00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b64578082015181840152602081019050612b49565b83811115612b73576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9582612b2a565b612b9f8185612b35565b9350612baf818560208601612b46565b612bb881612b79565b840191505092915050565b60006020820190508181036000830152612bdd8184612b8a565b905092915050565b6000819050919050565b612bf881612be5565b8114612c0357600080fd5b50565b600081359050612c1581612bef565b92915050565b600060208284031215612c3157612c30612a65565b5b6000612c3f84828501612c06565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7382612c48565b9050919050565b612c8381612c68565b82525050565b6000602082019050612c9e6000830184612c7a565b92915050565b612cad81612c68565b8114612cb857600080fd5b50565b600081359050612cca81612ca4565b92915050565b60008060408385031215612ce757612ce6612a65565b5b6000612cf585828601612cbb565b9250506020612d0685828601612c06565b9150509250929050565b612d1981612be5565b82525050565b6000602082019050612d346000830184612d10565b92915050565b600080600060608486031215612d5357612d52612a65565b5b6000612d6186828701612cbb565b9350506020612d7286828701612cbb565b9250506040612d8386828701612c06565b9150509250925092565b600060208284031215612da357612da2612a65565b5b6000612db184828501612cbb565b91505092915050565b612dc381612af4565b8114612dce57600080fd5b50565b600081359050612de081612dba565b92915050565b60008060408385031215612dfd57612dfc612a65565b5b6000612e0b85828601612cbb565b9250506020612e1c85828601612dd1565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e6882612b79565b810181811067ffffffffffffffff82111715612e8757612e86612e30565b5b80604052505050565b6000612e9a612a5b565b9050612ea68282612e5f565b919050565b600067ffffffffffffffff821115612ec657612ec5612e30565b5b612ecf82612b79565b9050602081019050919050565b82818337600083830152505050565b6000612efe612ef984612eab565b612e90565b905082815260208101848484011115612f1a57612f19612e2b565b5b612f25848285612edc565b509392505050565b600082601f830112612f4257612f41612e26565b5b8135612f52848260208601612eeb565b91505092915050565b60008060008060808587031215612f7557612f74612a65565b5b6000612f8387828801612cbb565b9450506020612f9487828801612cbb565b9350506040612fa587828801612c06565b925050606085013567ffffffffffffffff811115612fc657612fc5612a6a565b5b612fd287828801612f2d565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612ffe57612ffd612e26565b5b8235905067ffffffffffffffff81111561301b5761301a612fde565b5b60208301915083600182028301111561303757613036612fe3565b5b9250929050565b6000806020838503121561305557613054612a65565b5b600083013567ffffffffffffffff81111561307357613072612a6a565b5b61307f85828601612fe8565b92509250509250929050565b600080604083850312156130a2576130a1612a65565b5b60006130b085828601612cbb565b92505060206130c185828601612cbb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311257607f821691505b60208210811415613126576131256130cb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613162602083612b35565b915061316d8261312c565b602082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f53616c65206973206e6f74206163746976652061742074686973206d6f6d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006131f4602183612b35565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f46726565206d696e742068617320656e64656421000000000000000000000000600082015250565b6000613260601483612b35565b915061326b8261322a565b602082019050919050565b6000602082019050818103600083015261328f81613253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132d082612be5565b91506132db83612be5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133105761330f613296565b5b828201905092915050565b7f4e6f7420656e6f7567682066726565204e4654732c20747279206d696e74696e60008201527f67206c6573732100000000000000000000000000000000000000000000000000602082015250565b6000613377602783612b35565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006133e3601683612b35565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b7f596f7520617265206d696e74696e67206d6f72652066726565204e465473207460008201527f68616e20617661696c61626c6520706572207472616e73616374696f6e000000602082015250565b6000613475603d83612b35565b915061348082613419565b604082019050919050565b600060208201905081810360008301526134a481613468565b9050919050565b7f55524920616c7265616479206c6f636b65640000000000000000000000000000600082015250565b60006134e1601283612b35565b91506134ec826134ab565b602082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f46726565206d696e74206861736e277420656e64656420796574210000000000600082015250565b600061354d601b83612b35565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f596f7520617265206d696e74696e67206d6f7265204e465473207468616e206160008201527f7661696c61626c6520706572207472616e73616374696f6e0000000000000000602082015250565b60006135df603883612b35565b91506135ea82613583565b604082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b600061362082612be5565b915061362b83612be5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366457613663613296565b5b828202905092915050565b7f496e76616c69642045544820616d6f756e740000000000000000000000000000600082015250565b60006136a5601283612b35565b91506136b08261366f565b602082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b600081905092915050565b60006136f182612b2a565b6136fb81856136db565b935061370b818560208601612b46565b80840191505092915050565b600061372382856136e6565b915061372f82846136e6565b91508190509392505050565b7f555249206c6f636b65642c2063616e2774206368616e676520697420616e796d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b6000613797602383612b35565b91506137a28261373b565b604082019050919050565b600060208201905081810360008301526137c68161378a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613829602683612b35565b9150613834826137cd565b604082019050919050565b600060208201905081810360008301526138588161381c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138868261385f565b613890818561386a565b93506138a0818560208601612b46565b6138a981612b79565b840191505092915050565b60006080820190506138c96000830187612c7a565b6138d66020830186612c7a565b6138e36040830185612d10565b81810360608301526138f5818461387b565b905095945050505050565b60008151905061390f81612a9b565b92915050565b60006020828403121561392b5761392a612a65565b5b600061393984828501613900565b91505092915050565b600061394d82612be5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139805761397f613296565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139c582612be5565b91506139d083612be5565b9250826139e0576139df61398b565b5b828204905092915050565b60006139f682612be5565b9150613a0183612be5565b925082821015613a1457613a13613296565b5b828203905092915050565b6000613a2a82612be5565b9150613a3583612be5565b925082613a4557613a4461398b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201b622c5c39dca8cfa02fdde88321c383cf0d466550bae95b13e8689f6aa01ea264736f6c634300080c0033

Deployed Bytecode Sourcemap

46198:2528:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32723:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27521:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47050:89;;;;;;;;;;;;;:::i;:::-;;48501:114;;;:::i;:::-;;34258:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31466:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46476:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28641:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;47147:595;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46912:130;;;;;;;;;;;;;:::i;:::-;;31826:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47750:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33436:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32001:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46434:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46504:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46738:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46532:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46391:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46623:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:305;28374:4;28426:25;28411:40;;;:11;:40;;;;:105;;;;28483:33;28468:48;;;:11;:48;;;;28411:105;:158;;;;28533:36;28557:11;28533:23;:36::i;:::-;28411:158;28391:178;;28272:305;;;:::o;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;;;;;;;;;;;;;33248:64;33332:15;:24;33348:7;33332:24;;;;;;;;;;;;;;;;;;;;;33325:31;;33160:204;;;:::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;32851:11;;:2;:11;;;32847:48;;;32871:24;;;;;;;;;;;;;;32847:48;32928:5;32912:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32938:37;32955:5;32962:12;:10;:12::i;:::-;32938:16;:37::i;:::-;32937:38;32912:63;32908:138;;;32999:35;;;;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;27521:303::-;27565:7;27790:15;:13;:15::i;:::-;27775:12;;27759:13;;:28;:46;27752:53;;27521:303;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34017:170;;;:::o;47050:89::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47119:12:::1;;;;;;;;;;;47118:13;47103:12;;:28;;;;;;;;;;;;;;;;;;47050:89::o:0;48501:114::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48567:7:::1;:5;:7::i;:::-;48559:25;;:48;48585:21;48559:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48501:114::o:0;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;:::-;34258:185;;;:::o;31466:124::-;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;;31550:32;;31466:124;;;:::o;46476:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28641:206::-;28705:7;28746:1;28729:19;;:5;:19;;;28725:60;;;28757:28;;;;;;;;;;;;;;28725:60;28811:12;:19;28824:5;28811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28803:36;;28796:43;;28641:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;47147:595::-;47217:12;;;;;;;;;;;47208:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47303:14;;47287:13;:11;:13::i;:::-;:30;47278:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47405:14;;47388:13;:11;:13::i;:::-;47370:15;:31;;;;:::i;:::-;:49;;47361:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;47519:15;;47501:13;:11;:13::i;:::-;47483:15;:31;;;;:::i;:::-;:51;;47474:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;47600:17;;47581:15;:36;;47572:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;47696:38;47706:10;47718:15;47696:9;:38::i;:::-;47147:595;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;46912:130::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46969:9:::1;;;;;;;;;;;46968:10;46959:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;47025:9;;;;;;;;;;;47024:10;47012:9;;:22;;;;;;;;;;;;;;;;;;46912:130::o:0;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31826:104;:::o;47750:743::-;47819:12;;;;;;;;;;;47810:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47906:14;;47889:13;:11;:13::i;:::-;:31;;47880:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48005:15;;47988:13;:11;:13::i;:::-;47975:10;:26;;;;:::i;:::-;:45;;47966:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48081:13;;48067:10;:27;;48058:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48186:1;48172:10;:15;48168:318;;48239:7;;48226:10;:20;;;;:::i;:::-;48213:9;:33;48204:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48284:33;48294:10;48306;48284:9;:33::i;:::-;48168:318;;;48396:7;;48383:10;:20;;;;:::i;:::-;48370:9;:33;48361:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48441:33;48451:10;48463;48441:9;:33::i;:::-;48168:318;47750:743;:::o;33436:279::-;33539:12;:10;:12::i;:::-;33527:24;;:8;:24;;;33523:54;;;33560:17;;;;;;;;;;;;;;33523:54;33635:8;33590:18;:32;33609:12;:10;:12::i;:::-;33590:32;;;;;;;;;;;;;;;:42;33623:8;33590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33688:8;33659:48;;33674:12;:10;:12::i;:::-;33659:48;;;33698:8;33659:48;;;;;;:::i;:::-;;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;34724:15;:2;:13;;;:15::i;:::-;:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;;;;;;;;;;;;;34720:156;34514:369;;;;:::o;32001:318::-;32074:13;32105:16;32113:7;32105;:16::i;:::-;32100:59;;32130:29;;;;;;;;;;;;;;32100:59;32172:21;32196:10;:8;:10::i;:::-;32172:34;;32249:1;32230:7;32224:21;:26;;:87;;;;;;;;;;;;;;;;;32277:7;32286:18;:7;:16;:18::i;:::-;32260:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32224:87;32217:94;;;32001:318;;;:::o;46434:35::-;;;;:::o;46504:21::-;;;;;;;;;;;;;:::o;46738:166::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46819:9:::1;;;;;;;;;;;46818:10;46810:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46889:7;;46879;:17;;;;;;;:::i;:::-;;46738:166:::0;;:::o;33786:164::-;33883:4;33907:18;:25;33926:5;33907:25;;;;;;;;;;;;;;;:35;33933:8;33907:35;;;;;;;;;;;;;;;;;;;;;;;;;33900:42;;33786:164;;;;:::o;46532:24::-;;;;;;;;;;;;;:::o;46391:36::-;;;;:::o;46623:107::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46714:8:::1;46698:13;:24;;;;46623:107:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;35138:187::-;35195:4;35238:7;35219:15;:13;:15::i;:::-;:26;;:53;;;;;35259:13;;35249:7;:23;35219:53;:98;;;;;35290:11;:20;35302:7;35290:20;;;;;;;;;;;:27;;;;;;;;;;;;35289:28;35219:98;35212:105;;35138:187;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;42749:196::-;42891:2;42864:15;:24;42880:7;42864:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42929:7;42925:2;42909:28;;42918:5;42909:28;;;;;;;;;;;;42749:196;;;:::o;27245:92::-;27301:7;27245:92;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38366:58;;38437:22;38479:13;:18;;;38463:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38514:50;38531:13;:18;;;38551:12;:10;:12::i;:::-;38514:16;:50::i;:::-;38463:101;:154;;;;38605:12;:10;:12::i;:::-;38581:36;;:20;38593:7;38581:11;:20::i;:::-;:36;;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;;;;;;;;;;;;;38631:66;38734:4;38712:26;;:13;:18;;;:26;;;38708:67;;38747:28;;;;;;;;;;;;;;38708:67;38804:1;38790:16;;:2;:16;;;38786:52;;;38815:23;;;;;;;;;;;;;;38786:52;38851:43;38873:4;38879:2;38883:7;38892:1;38851:21;:43::i;:::-;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;39334:1;39304:12;:18;39317:4;39304:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39378:1;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:2;39396:11;:20;39408:7;39396:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39486:15;39441:11;:20;39453:7;39441:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39754:19;39786:1;39776:7;:11;39754:33;;39847:1;39806:43;;:11;:24;39818:11;39806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39802:445;;;40031:13;;40017:11;:27;40013:219;;;40101:13;:18;;;40069:11;:24;40081:11;40069:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40184:13;:28;;;40142:11;:24;40154:11;40142:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40013:219;39802:445;39279:979;40294:7;40290:2;40275:27;;40284:4;40275:27;;;;;;;;;;;;40313:42;40334:4;40340:2;40344:7;40353:1;40313:20;:42::i;:::-;38355:2008;;38251:2112;;;:::o;30296:1108::-;30357:21;;:::i;:::-;30391:12;30406:7;30391:22;;30474:4;30455:15;:13;:15::i;:::-;:23;;:47;;;;;30489:13;;30482:4;:20;30455:47;30451:886;;;30523:31;30557:11;:17;30569:4;30557:17;;;;;;;;;;;30523:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:9;:16;;;30593:729;;30669:1;30643:28;;:9;:14;;;:28;;;30639:101;;30707:9;30700:16;;;;;;30639:101;31042:261;31049:4;31042:261;;;31082:6;;;;;;;;31127:11;:17;31139:4;31127:17;;;;;;;;;;;31115:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31201:1;31175:28;;:9;:14;;;:28;;;31171:109;;31243:9;31236:16;;;;;;31171:109;31042:261;;;30593:729;30504:833;30451:886;31365:31;;;;;;;;;;;;;;30296:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;:::-;35333:104;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;43437:667::-;43600:4;43637:2;43621:36;;;43658:12;:10;:12::i;:::-;43672:4;43678:7;43687:5;43621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43872:1;43855:6;:13;:18;43851:235;;;43901:40;;;;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;43750:45;;;43740:55;;;:6;:55;;;;43733:62;;;43437:667;;;;;;:::o;48623:100::-;48675:13;48708:7;48701:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48623:100;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44752:159::-;;;;;:::o;45570:158::-;;;;;:::o;35800:163::-;35923:32;35929:2;35933:8;35943:5;35950:4;35923:5;:32::i;:::-;35800:163;;;:::o;36222:1775::-;36361:20;36384:13;;36361:36;;36426:1;36412:16;;:2;:16;;;36408:48;;;36437:19;;;;;;;;;;;;;;36408:48;36483:1;36471:8;:13;36467:44;;;36493:18;;;;;;;;;;;;;;36467:44;36524:61;36554:1;36558:2;36562:12;36576:8;36524:21;:61::i;:::-;36897:8;36862:12;:16;36875:2;36862:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36961:8;36921:12;:16;36934:2;36921:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:2;36987:11;:25;36999:12;36987:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37087:15;37037:11;:25;37049:12;37037:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37120:20;37143:12;37120:35;;37170:11;37199:8;37184:12;:23;37170:37;;37228:4;:23;;;;;37236:15;:2;:13;;;:15::i;:::-;37228:23;37224:641;;;37272:314;37328:12;37324:2;37303:38;;37320:1;37303:38;;;;;;;;;;;;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;;;;;;;;;;;;;37364:174;37581:3;37565:12;:19;;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37786:14;;;;;;37782:2;37761:40;;37778:1;37761:40;;;;;;;;;;;;37845:3;37829:12;:19;;37730:120;;37224:641;37895:12;37879:13;:28;;;;36837:1082;;37929:60;37958:1;37962:2;37966:12;37980:8;37929:20;:60::i;:::-;36350:1647;36222:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:117::-;10143:1;10140;10133:12;10157:117;10266:1;10263;10256:12;10294:553;10352:8;10362:6;10412:3;10405:4;10397:6;10393:17;10389:27;10379:122;;10420:79;;:::i;:::-;10379:122;10533:6;10520:20;10510:30;;10563:18;10555:6;10552:30;10549:117;;;10585:79;;:::i;:::-;10549:117;10699:4;10691:6;10687:17;10675:29;;10753:3;10745:4;10737:6;10733:17;10723:8;10719:32;10716:41;10713:128;;;10760:79;;:::i;:::-;10713:128;10294:553;;;;;:::o;10853:529::-;10924:6;10932;10981:2;10969:9;10960:7;10956:23;10952:32;10949:119;;;10987:79;;:::i;:::-;10949:119;11135:1;11124:9;11120:17;11107:31;11165:18;11157:6;11154:30;11151:117;;;11187:79;;:::i;:::-;11151:117;11300:65;11357:7;11348:6;11337:9;11333:22;11300:65;:::i;:::-;11282:83;;;;11078:297;10853:529;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:220::-;13505:34;13501:1;13493:6;13489:14;13482:58;13574:3;13569:2;13561:6;13557:15;13550:28;13365:220;:::o;13591:366::-;13733:3;13754:67;13818:2;13813:3;13754:67;:::i;:::-;13747:74;;13830:93;13919:3;13830:93;:::i;:::-;13948:2;13943:3;13939:12;13932:19;;13591:366;;;:::o;13963:419::-;14129:4;14167:2;14156:9;14152:18;14144:26;;14216:9;14210:4;14206:20;14202:1;14191:9;14187:17;14180:47;14244:131;14370:4;14244:131;:::i;:::-;14236:139;;13963:419;;;:::o;14388:170::-;14528:22;14524:1;14516:6;14512:14;14505:46;14388:170;:::o;14564:366::-;14706:3;14727:67;14791:2;14786:3;14727:67;:::i;:::-;14720:74;;14803:93;14892:3;14803:93;:::i;:::-;14921:2;14916:3;14912:12;14905:19;;14564:366;;;:::o;14936:419::-;15102:4;15140:2;15129:9;15125:18;15117:26;;15189:9;15183:4;15179:20;15175:1;15164:9;15160:17;15153:47;15217:131;15343:4;15217:131;:::i;:::-;15209:139;;14936:419;;;:::o;15361:180::-;15409:77;15406:1;15399:88;15506:4;15503:1;15496:15;15530:4;15527:1;15520:15;15547:305;15587:3;15606:20;15624:1;15606:20;:::i;:::-;15601:25;;15640:20;15658:1;15640:20;:::i;:::-;15635:25;;15794:1;15726:66;15722:74;15719:1;15716:81;15713:107;;;15800:18;;:::i;:::-;15713:107;15844:1;15841;15837:9;15830:16;;15547:305;;;;:::o;15858:226::-;15998:34;15994:1;15986:6;15982:14;15975:58;16067:9;16062:2;16054:6;16050:15;16043:34;15858:226;:::o;16090:366::-;16232:3;16253:67;16317:2;16312:3;16253:67;:::i;:::-;16246:74;;16329:93;16418:3;16329:93;:::i;:::-;16447:2;16442:3;16438:12;16431:19;;16090:366;;;:::o;16462:419::-;16628:4;16666:2;16655:9;16651:18;16643:26;;16715:9;16709:4;16705:20;16701:1;16690:9;16686:17;16679:47;16743:131;16869:4;16743:131;:::i;:::-;16735:139;;16462:419;;;:::o;16887:172::-;17027:24;17023:1;17015:6;17011:14;17004:48;16887:172;:::o;17065:366::-;17207:3;17228:67;17292:2;17287:3;17228:67;:::i;:::-;17221:74;;17304:93;17393:3;17304:93;:::i;:::-;17422:2;17417:3;17413:12;17406:19;;17065:366;;;:::o;17437:419::-;17603:4;17641:2;17630:9;17626:18;17618:26;;17690:9;17684:4;17680:20;17676:1;17665:9;17661:17;17654:47;17718:131;17844:4;17718:131;:::i;:::-;17710:139;;17437:419;;;:::o;17862:248::-;18002:34;17998:1;17990:6;17986:14;17979:58;18071:31;18066:2;18058:6;18054:15;18047:56;17862:248;:::o;18116:366::-;18258:3;18279:67;18343:2;18338:3;18279:67;:::i;:::-;18272:74;;18355:93;18444:3;18355:93;:::i;:::-;18473:2;18468:3;18464:12;18457:19;;18116:366;;;:::o;18488:419::-;18654:4;18692:2;18681:9;18677:18;18669:26;;18741:9;18735:4;18731:20;18727:1;18716:9;18712:17;18705:47;18769:131;18895:4;18769:131;:::i;:::-;18761:139;;18488:419;;;:::o;18913:168::-;19053:20;19049:1;19041:6;19037:14;19030:44;18913:168;:::o;19087:366::-;19229:3;19250:67;19314:2;19309:3;19250:67;:::i;:::-;19243:74;;19326:93;19415:3;19326:93;:::i;:::-;19444:2;19439:3;19435:12;19428:19;;19087:366;;;:::o;19459:419::-;19625:4;19663:2;19652:9;19648:18;19640:26;;19712:9;19706:4;19702:20;19698:1;19687:9;19683:17;19676:47;19740:131;19866:4;19740:131;:::i;:::-;19732:139;;19459:419;;;:::o;19884:177::-;20024:29;20020:1;20012:6;20008:14;20001:53;19884:177;:::o;20067:366::-;20209:3;20230:67;20294:2;20289:3;20230:67;:::i;:::-;20223:74;;20306:93;20395:3;20306:93;:::i;:::-;20424:2;20419:3;20415:12;20408:19;;20067:366;;;:::o;20439:419::-;20605:4;20643:2;20632:9;20628:18;20620:26;;20692:9;20686:4;20682:20;20678:1;20667:9;20663:17;20656:47;20720:131;20846:4;20720:131;:::i;:::-;20712:139;;20439:419;;;:::o;20864:243::-;21004:34;21000:1;20992:6;20988:14;20981:58;21073:26;21068:2;21060:6;21056:15;21049:51;20864:243;:::o;21113:366::-;21255:3;21276:67;21340:2;21335:3;21276:67;:::i;:::-;21269:74;;21352:93;21441:3;21352:93;:::i;:::-;21470:2;21465:3;21461:12;21454:19;;21113:366;;;:::o;21485:419::-;21651:4;21689:2;21678:9;21674:18;21666:26;;21738:9;21732:4;21728:20;21724:1;21713:9;21709:17;21702:47;21766:131;21892:4;21766:131;:::i;:::-;21758:139;;21485:419;;;:::o;21910:348::-;21950:7;21973:20;21991:1;21973:20;:::i;:::-;21968:25;;22007:20;22025:1;22007:20;:::i;:::-;22002:25;;22195:1;22127:66;22123:74;22120:1;22117:81;22112:1;22105:9;22098:17;22094:105;22091:131;;;22202:18;;:::i;:::-;22091:131;22250:1;22247;22243:9;22232:20;;21910:348;;;;:::o;22264:168::-;22404:20;22400:1;22392:6;22388:14;22381:44;22264:168;:::o;22438:366::-;22580:3;22601:67;22665:2;22660:3;22601:67;:::i;:::-;22594:74;;22677:93;22766:3;22677:93;:::i;:::-;22795:2;22790:3;22786:12;22779:19;;22438:366;;;:::o;22810:419::-;22976:4;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22810:419;;;:::o;23235:148::-;23337:11;23374:3;23359:18;;23235:148;;;;:::o;23389:377::-;23495:3;23523:39;23556:5;23523:39;:::i;:::-;23578:89;23660:6;23655:3;23578:89;:::i;:::-;23571:96;;23676:52;23721:6;23716:3;23709:4;23702:5;23698:16;23676:52;:::i;:::-;23753:6;23748:3;23744:16;23737:23;;23499:267;23389:377;;;;:::o;23772:435::-;23952:3;23974:95;24065:3;24056:6;23974:95;:::i;:::-;23967:102;;24086:95;24177:3;24168:6;24086:95;:::i;:::-;24079:102;;24198:3;24191:10;;23772:435;;;;;:::o;24213:222::-;24353:34;24349:1;24341:6;24337:14;24330:58;24422:5;24417:2;24409:6;24405:15;24398:30;24213:222;:::o;24441:366::-;24583:3;24604:67;24668:2;24663:3;24604:67;:::i;:::-;24597:74;;24680:93;24769:3;24680:93;:::i;:::-;24798:2;24793:3;24789:12;24782:19;;24441:366;;;:::o;24813:419::-;24979:4;25017:2;25006:9;25002:18;24994:26;;25066:9;25060:4;25056:20;25052:1;25041:9;25037:17;25030:47;25094:131;25220:4;25094:131;:::i;:::-;25086:139;;24813:419;;;:::o;25238:225::-;25378:34;25374:1;25366:6;25362:14;25355:58;25447:8;25442:2;25434:6;25430:15;25423:33;25238:225;:::o;25469:366::-;25611:3;25632:67;25696:2;25691:3;25632:67;:::i;:::-;25625:74;;25708:93;25797:3;25708:93;:::i;:::-;25826:2;25821:3;25817:12;25810:19;;25469:366;;;:::o;25841:419::-;26007:4;26045:2;26034:9;26030:18;26022:26;;26094:9;26088:4;26084:20;26080:1;26069:9;26065:17;26058:47;26122:131;26248:4;26122:131;:::i;:::-;26114:139;;25841:419;;;:::o;26266:98::-;26317:6;26351:5;26345:12;26335:22;;26266:98;;;:::o;26370:168::-;26453:11;26487:6;26482:3;26475:19;26527:4;26522:3;26518:14;26503:29;;26370:168;;;;:::o;26544:360::-;26630:3;26658:38;26690:5;26658:38;:::i;:::-;26712:70;26775:6;26770:3;26712:70;:::i;:::-;26705:77;;26791:52;26836:6;26831:3;26824:4;26817:5;26813:16;26791:52;:::i;:::-;26868:29;26890:6;26868:29;:::i;:::-;26863:3;26859:39;26852:46;;26634:270;26544:360;;;;:::o;26910:640::-;27105:4;27143:3;27132:9;27128:19;27120:27;;27157:71;27225:1;27214:9;27210:17;27201:6;27157:71;:::i;:::-;27238:72;27306:2;27295:9;27291:18;27282:6;27238:72;:::i;:::-;27320;27388:2;27377:9;27373:18;27364:6;27320:72;:::i;:::-;27439:9;27433:4;27429:20;27424:2;27413:9;27409:18;27402:48;27467:76;27538:4;27529:6;27467:76;:::i;:::-;27459:84;;26910:640;;;;;;;:::o;27556:141::-;27612:5;27643:6;27637:13;27628:22;;27659:32;27685:5;27659:32;:::i;:::-;27556:141;;;;:::o;27703:349::-;27772:6;27821:2;27809:9;27800:7;27796:23;27792:32;27789:119;;;27827:79;;:::i;:::-;27789:119;27947:1;27972:63;28027:7;28018:6;28007:9;28003:22;27972:63;:::i;:::-;27962:73;;27918:127;27703:349;;;;:::o;28058:233::-;28097:3;28120:24;28138:5;28120:24;:::i;:::-;28111:33;;28166:66;28159:5;28156:77;28153:103;;;28236:18;;:::i;:::-;28153:103;28283:1;28276:5;28272:13;28265:20;;28058:233;;;:::o;28297:180::-;28345:77;28342:1;28335:88;28442:4;28439:1;28432:15;28466:4;28463:1;28456:15;28483:185;28523:1;28540:20;28558:1;28540:20;:::i;:::-;28535:25;;28574:20;28592:1;28574:20;:::i;:::-;28569:25;;28613:1;28603:35;;28618:18;;:::i;:::-;28603:35;28660:1;28657;28653:9;28648:14;;28483:185;;;;:::o;28674:191::-;28714:4;28734:20;28752:1;28734:20;:::i;:::-;28729:25;;28768:20;28786:1;28768:20;:::i;:::-;28763:25;;28807:1;28804;28801:8;28798:34;;;28812:18;;:::i;:::-;28798:34;28857:1;28854;28850:9;28842:17;;28674:191;;;;:::o;28871:176::-;28903:1;28920:20;28938:1;28920:20;:::i;:::-;28915:25;;28954:20;28972:1;28954:20;:::i;:::-;28949:25;;28993:1;28983:35;;28998:18;;:::i;:::-;28983:35;29039:1;29036;29032:9;29027:14;;28871:176;;;;:::o;29053:180::-;29101:77;29098:1;29091:88;29198:4;29195:1;29188:15;29222:4;29219:1;29212:15

Swarm Source

ipfs://1b622c5c39dca8cfa02fdde88321c383cf0d466550bae95b13e8689f6aa01ea2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.