ETH Price: $2,891.49 (-10.26%)
Gas: 14 Gwei

Token

Fire Moon Birds (firemoonbirds)
 

Overview

Max Total Supply

3,146 firemoonbirds

Holders

1,439

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 firemoonbirds
0xd3b408d8cbdd710bb2b57086f0edc3b6c5ebb2e1
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:
FireMoonBirds

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 v4.4.1 (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 tokenId);

    /**
     * @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: contracts/LowerGas.sol


// Creator: Chiru Labs


pragma solidity ^0.8.0;

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.13;

contract FireMoonBirds is ERC721A, Ownable {
  using Strings for uint256;
  
  uint256 public mintPrice = 0.019 ether;

  uint256 public package1Qty = 5;
  uint256 public package1Price = 0.049 ether;
  uint256 public package2Qty = 10;
  uint256 public package2Price = 0.089 ether;
  uint256 public package3Qty = 10;
  uint256 public package3Price = 0.95 ether;

  uint256 public maxSupply = 4888;
  uint256 public maxFreeMint = 4888;
  uint256 public freeMintPerWallet = 3;
  string public baseTokenURI = "";
  string public hiddenURI = "https://gateway.pinata.cloud/ipfs/QmPqCg4cQDwZ6avxpXSG7sV1X3c6vqjqSvNL1AADS8oq4h";

  bool public openMint = false;
  bool public revealed = false;

  bool public onFreeMint = true;
  bool public onPackageSale = true;
  bool public on1Free1 = true;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721A("Fire Moon Birds", "firemoonbirds", 100) {  }

  function mintPackage(uint256 _packageNumber) external payable {
    require(openMint, "The contract is not open to mint yet!");
    require(onPackageSale, "Invalid Mint, Packgage promotion has ended!");

    uint256 _mintAmount = 0;
    uint256 _packagePrice = mintPrice;
    if(_packageNumber == 1) {
        _mintAmount = package1Qty;
        _packagePrice = package1Price;
    }
    else if(_packageNumber == 2) {
        _mintAmount = package2Qty;
        _packagePrice = package2Price;
    }
    else if(_packageNumber == 3) {
        _mintAmount = package3Qty;
        _packagePrice = package3Price;
    }

    require(_mintAmount > 0, "Nothing to mint!");
    require(msg.value >= _packagePrice, "Insufficient funds!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintFree() external payable {
    require(openMint, "The contract is not open to mint yet!");
    require(onFreeMint, "The contract is not open for free mint");
    require(balanceOf(_msgSender()) < freeMintPerWallet, "Max free mint per wallet exceeded!");
    require(currentIndex + freeMintPerWallet <= maxFreeMint, "Max free mint exceeded!");
    require(currentIndex + freeMintPerWallet <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, freeMintPerWallet);
  }

  function mint(uint256 _mintAmount) external payable {
    require(openMint, "The contract is not open to mint yet!");
    require(msg.value >= mintPrice * _mintAmount, "Insufficient funds!");

    if(on1Free1){
        _mintAmount = _mintAmount * 2;
    }
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintBatch(address _to, uint256 _mintAmount) public onlyOwner {
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_to, _mintAmount);
  }

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

    if (revealed == false) {
      return hiddenURI;
    }

    return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
  }

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

  function setPackage(uint256 _packageNumber, uint256 _packagePrice, uint256 _packageQty) external onlyOwner {
    if(_packageNumber == 1){
        package1Qty = _packageQty;
        package1Price = _packagePrice;
    }
    else if(_packageNumber == 2){
        package2Qty = _packageQty;
        package2Price = _packagePrice;
    }
    else if(_packageNumber == 3){
        package3Qty = _packageQty;
        package3Price = _packagePrice;
    }
  }

  function setMaxFreeMint(uint256 _maxFreeMint) public onlyOwner {
    maxFreeMint = _maxFreeMint;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setFreeMintPerWallet(uint256 _freeMintPerWallet) public onlyOwner {
    freeMintPerWallet = _freeMintPerWallet;
  }

  function setBaseUri(string memory _uri) external onlyOwner {
    baseTokenURI = _uri;
  }

  function setOn1Free1(bool _state) public onlyOwner {
    on1Free1 = _state;
  }

  function setOnPackageSale(bool _state) public onlyOwner {
    onPackageSale = _state;
  }

  function setFreeMint(bool _state) public onlyOwner {
    onFreeMint = _state;
  }
  function setOpenMint(bool _state) public onlyOwner {
    openMint = _state;
  }

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

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packageNumber","type":"uint256"}],"name":"mintPackage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"on1Free1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onPackageSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"package1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package1Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package2Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package3Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package3Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintPerWallet","type":"uint256"}],"name":"setFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOn1Free1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnPackageSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOpenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packageNumber","type":"uint256"},{"internalType":"uint256","name":"_packagePrice","type":"uint256"},{"internalType":"uint256","name":"_packageQty","type":"uint256"}],"name":"setPackage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055664380663abb8000600855600560095566ae153d89fe8000600a908155600b81905567013c310749028000600c55600d55670d2f13f7789f0000600e55611318600f819055601055600360115560c0604081905260a08290526200006c91601291906200020b565b5060405180608001604052806050815260200162002f666050913980516200009d916013916020909101906200020b565b506014805464ffffffffff1916640101010000179055348015620000c057600080fd5b506040518060400160405280600f81526020016e46697265204d6f6f6e20426972647360881b8152506040518060400160405280600d81526020016c666972656d6f6f6e626972647360981b815250606460008111620001765760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200018b9060019060208601906200020b565b508151620001a19060029060208501906200020b565b5060805250620001b3905033620001b9565b620002ed565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200021990620002b1565b90600052602060002090601f0160209004810192826200023d576000855562000288565b82601f106200025857805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002885782518255916020019190600101906200026b565b50620002969291506200029a565b5090565b5b808211156200029657600081556001016200029b565b600181811c90821680620002c657607f821691505b602082108103620002e757634e487b7160e01b600052602260045260246000fd5b50919050565b608051612c4f6200031760003960008181611dfd01528181611e2701526122370152612c4f6000f3fe60806040526004361061031a5760003560e01c806382447134116101ab578063b88d4fde116100f7578063d5abeb0111610095578063e985e9c51161006f578063e985e9c5146108c1578063f2fde38b1461090a578063f47a437a1461092a578063fe04bd9b1461094057600080fd5b8063d5abeb011461086b578063e0a8085314610881578063e2af30f4146108a157600080fd5b8063c1ab22ec116100d1578063c1ab22ec1461080a578063c737e73514610820578063c87b56dd14610836578063d547cfb71461085657600080fd5b8063b88d4fde146107b0578063bab257f3146107d0578063bce6d672146107f057600080fd5b806395d89b4111610164578063a0bcfc7f1161013e578063a0bcfc7f14610739578063a22cb46514610759578063a591252d14610779578063a5fe62e71461078f57600080fd5b806395d89b41146106ef578063a0712d6814610704578063a0b7cd851461071757600080fd5b806382447134146106545780638ab53447146106745780638cc54e7f1461067c5780638da5cb5b1461069157806391b7f5ed146106af578063958f7fcc146106cf57600080fd5b80633d8ff2f41161026a5780636352211e116102235780636f8b44b0116101fd5780636f8b44b0146105df57806370a08231146105ff578063715018a61461061f578063742a4c9b1461063457600080fd5b80636352211e146105935780636817c76c146105b357806368a4bd24146105c957600080fd5b80633d8ff2f4146104eb5780633f815b9a146104fe57806342842e0e1461051e5780634f6ccce71461053e578063518302271461055e57806357f55a051461057d57600080fd5b806316dad380116102d757806323b872dd116102b157806323b872dd14610476578063248b71fc146104965780632f745c59146104b65780633ccfd60b146104d657600080fd5b806316dad3801461041457806318160ddd1461043457806318cae2691461044957600080fd5b806301ffc9a71461031f5780630426c1fa1461035457806306fdde0314610376578063081812fc14610398578063095ea7b3146103d057806310fb2825146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612557565b610956565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f36600461257b565b6109c3565b005b34801561038257600080fd5b5061038b6109fb565b60405161034b91906125ec565b3480156103a457600080fd5b506103b86103b336600461257b565b610a8d565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b506103746103eb36600461261b565b610b18565b3480156103fc57600080fd5b50610406600b5481565b60405190815260200161034b565b34801561042057600080fd5b5060145461033f9062010000900460ff1681565b34801561044057600080fd5b50600054610406565b34801561045557600080fd5b50610406610464366004612645565b60156020526000908152604090205481565b34801561048257600080fd5b50610374610491366004612660565b610c2f565b3480156104a257600080fd5b506103746104b136600461261b565b610c3a565b3480156104c257600080fd5b506104066104d136600461261b565b610ca1565b3480156104e257600080fd5b50610374610e0d565b6103746104f936600461257b565b610e73565b34801561050a57600080fd5b506103746105193660046126ac565b611006565b34801561052a57600080fd5b50610374610539366004612660565b61104c565b34801561054a57600080fd5b5061040661055936600461257b565b611067565b34801561056a57600080fd5b5060145461033f90610100900460ff1681565b34801561058957600080fd5b50610406600d5481565b34801561059f57600080fd5b506103b86105ae36600461257b565b6110c9565b3480156105bf57600080fd5b5061040660085481565b3480156105d557600080fd5b50610406600a5481565b3480156105eb57600080fd5b506103746105fa36600461257b565b6110db565b34801561060b57600080fd5b5061040661061a366004612645565b61110a565b34801561062b57600080fd5b5061037461119b565b34801561064057600080fd5b5061037461064f36600461257b565b6111d1565b34801561066057600080fd5b5061037461066f3660046126c7565b611200565b61037461125d565b34801561068857600080fd5b5061038b6113e8565b34801561069d57600080fd5b506007546001600160a01b03166103b8565b3480156106bb57600080fd5b506103746106ca36600461257b565b611476565b3480156106db57600080fd5b506103746106ea3660046126ac565b6114a5565b3480156106fb57600080fd5b5061038b6114ed565b61037461071236600461257b565b6114fc565b34801561072357600080fd5b5060145461033f90640100000000900460ff1681565b34801561074557600080fd5b5061037461075436600461277f565b6115cb565b34801561076557600080fd5b506103746107743660046127c8565b611608565b34801561078557600080fd5b5061040660105481565b34801561079b57600080fd5b5060145461033f906301000000900460ff1681565b3480156107bc57600080fd5b506103746107cb3660046127fb565b6116cc565b3480156107dc57600080fd5b506103746107eb3660046126ac565b611705565b3480156107fc57600080fd5b5060145461033f9060ff1681565b34801561081657600080fd5b5061040660115481565b34801561082c57600080fd5b5061040660095481565b34801561084257600080fd5b5061038b61085136600461257b565b61174f565b34801561086257600080fd5b5061038b611898565b34801561087757600080fd5b50610406600f5481565b34801561088d57600080fd5b5061037461089c3660046126ac565b6118a5565b3480156108ad57600080fd5b506103746108bc3660046126ac565b6118e9565b3480156108cd57600080fd5b5061033f6108dc366004612877565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561091657600080fd5b50610374610925366004612645565b611926565b34801561093657600080fd5b50610406600e5481565b34801561094c57600080fd5b50610406600c5481565b60006001600160e01b031982166380ac58cd60e01b148061098757506001600160e01b03198216635b5e139f60e01b145b806109a257506001600160e01b0319821663780e9d6360e01b145b806109bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109f65760405162461bcd60e51b81526004016109ed906128a1565b60405180910390fd5b601155565b606060018054610a0a906128d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906128d6565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000610a9a826000541190565b610afc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016109ed565b506000908152600560205260409020546001600160a01b031690565b6000610b23826110c9565b9050806001600160a01b0316836001600160a01b031603610b915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109ed565b336001600160a01b0382161480610bad5750610bad81336108dc565b610c1f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109ed565b610c2a8383836119be565b505050565b610c2a838383611a1a565b6007546001600160a01b03163314610c645760405162461bcd60e51b81526004016109ed906128a1565b600f5481600054610c759190612926565b1115610c935760405162461bcd60e51b81526004016109ed9061293e565b610c9d8282611d61565b5050565b6000610cac8361110a565b8210610d055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109ed565b600080549080805b83811015610dad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d6057805192505b876001600160a01b0316836001600160a01b031603610d9a57868403610d8c575093506109bd92505050565b83610d968161296c565b9450505b5080610da58161296c565b915050610d0d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109ed565b6007546001600160a01b03163314610e375760405162461bcd60e51b81526004016109ed906128a1565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e70573d6000803e3d6000fd5b50565b60145460ff16610e955760405162461bcd60e51b81526004016109ed90612985565b6014546301000000900460ff16610f025760405162461bcd60e51b815260206004820152602b60248201527f496e76616c6964204d696e742c205061636b676167652070726f6d6f74696f6e60448201526a2068617320656e6465642160a81b60648201526084016109ed565b6008546000906001839003610f1e575050600954600a54610f44565b82600203610f33575050600b54600c54610f44565b82600303610f44575050600d54600e545b60008211610f875760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f206d696e742160801b60448201526064016109ed565b80341015610fcd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ed565b600f5482600054610fde9190612926565b1115610ffc5760405162461bcd60e51b81526004016109ed9061293e565b610c2a3383611d61565b6007546001600160a01b031633146110305760405162461bcd60e51b81526004016109ed906128a1565b60148054911515620100000262ff000019909216919091179055565b610c2a838383604051806020016040528060008152506116cc565b6000805482106110c55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109ed565b5090565b60006110d482611d7b565b5192915050565b6007546001600160a01b031633146111055760405162461bcd60e51b81526004016109ed906128a1565b600f55565b60006001600160a01b0382166111765760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109ed565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146111c55760405162461bcd60e51b81526004016109ed906128a1565b6111cf6000611f25565b565b6007546001600160a01b031633146111fb5760405162461bcd60e51b81526004016109ed906128a1565b601055565b6007546001600160a01b0316331461122a5760405162461bcd60e51b81526004016109ed906128a1565b8260010361123b57600955600a5550565b8260020361124c57600b55600c5550565b82600303610c2a57600d55600e5550565b60145460ff1661127f5760405162461bcd60e51b81526004016109ed90612985565b60145462010000900460ff166112e65760405162461bcd60e51b815260206004820152602660248201527f54686520636f6e7472616374206973206e6f74206f70656e20666f722066726560448201526519481b5a5b9d60d21b60648201526084016109ed565b6011546112f23361110a565b1061134a5760405162461bcd60e51b815260206004820152602260248201527f4d61782066726565206d696e74207065722077616c6c65742065786365656465604482015261642160f01b60648201526084016109ed565b60105460115460005461135d9190612926565b11156113ab5760405162461bcd60e51b815260206004820152601760248201527f4d61782066726565206d696e742065786365656465642100000000000000000060448201526064016109ed565b600f546011546000546113be9190612926565b11156113dc5760405162461bcd60e51b81526004016109ed9061293e565b6111cf33601154611d61565b601380546113f5906128d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611421906128d6565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b6007546001600160a01b031633146114a05760405162461bcd60e51b81526004016109ed906128a1565b600855565b6007546001600160a01b031633146114cf5760405162461bcd60e51b81526004016109ed906128a1565b6014805491151563010000000263ff00000019909216919091179055565b606060028054610a0a906128d6565b60145460ff1661151e5760405162461bcd60e51b81526004016109ed90612985565b8060085461152c91906129ca565b3410156115715760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ed565b601454640100000000900460ff16156115925761158f8160026129ca565b90505b600f54816000546115a39190612926565b11156115c15760405162461bcd60e51b81526004016109ed9061293e565b610e703382611d61565b6007546001600160a01b031633146115f55760405162461bcd60e51b81526004016109ed906128a1565b8051610c9d9060129060208401906124b1565b336001600160a01b038316036116605760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109ed565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116d7848484611a1a565b6116e384848484611f77565b6116ff5760405162461bcd60e51b81526004016109ed906129e9565b50505050565b6007546001600160a01b0316331461172f5760405162461bcd60e51b81526004016109ed906128a1565b601480549115156401000000000264ff0000000019909216919091179055565b606061175c826000541190565b6117c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ed565b601454610100900460ff16151560000361186657601380546117e1906128d6565b80601f016020809104026020016040519081016040528092919081815260200182805461180d906128d6565b801561185a5780601f1061182f5761010080835404028352916020019161185a565b820191906000526020600020905b81548152906001019060200180831161183d57829003601f168201915b50505050509050919050565b601261187183612079565b604051602001611882929190612a58565b6040516020818303038152906040529050919050565b601280546113f5906128d6565b6007546001600160a01b031633146118cf5760405162461bcd60e51b81526004016109ed906128a1565b601480549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146119135760405162461bcd60e51b81526004016109ed906128a1565b6014805460ff1916911515919091179055565b6007546001600160a01b031633146119505760405162461bcd60e51b81526004016109ed906128a1565b6001600160a01b0381166119b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ed565b610e7081611f25565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a2582611d7b565b80519091506000906001600160a01b0316336001600160a01b03161480611a5c575033611a5184610a8d565b6001600160a01b0316145b80611a6e57508151611a6e90336108dc565b905080611ad85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109ed565b846001600160a01b031682600001516001600160a01b031614611b4c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109ed565b6001600160a01b038416611bb05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109ed565b611bc060008484600001516119be565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611c85908590612926565b6000818152600360205260409020549091506001600160a01b0316611d1757611caf816000541190565b15611d175760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c9d82826040518060200160405280600081525061217a565b6040805180820190915260008082526020820152611d9a826000541190565b611df95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109ed565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e5a57611e4c7f000000000000000000000000000000000000000000000000000000000000000084612b12565b611e57906001612926565b90505b825b818110611ec4576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611eb157949350505050565b5080611ebc81612b29565b915050611e5c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109ed565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561206d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbb903390899088908890600401612b40565b6020604051808303816000875af1925050508015611ff6575060408051601f3d908101601f19168201909252611ff391810190612b7d565b60015b612053573d808015612024576040519150601f19603f3d011682016040523d82523d6000602084013e612029565b606091505b50805160000361204b5760405162461bcd60e51b81526004016109ed906129e9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612071565b5060015b949350505050565b6060816000036120a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120ca57806120b48161296c565b91506120c39050600a83612bb0565b91506120a4565b60008167ffffffffffffffff8111156120e5576120e56126f3565b6040519080825280601f01601f19166020018201604052801561210f576020820181803683370190505b5090505b841561207157612124600183612b12565b9150612131600a86612bc4565b61213c906030612926565b60f81b81838151811061215157612151612bd8565b60200101906001600160f81b031916908160001a905350612173600a86612bb0565b9450612113565b6000546001600160a01b0384166121dd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ed565b6121e8816000541190565b156122355760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109ed565b7f00000000000000000000000000000000000000000000000000000000000000008311156122b05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109ed565b6000831161230c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109ed565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612368908790612bee565b6001600160801b031681526020018583602001516123869190612bee565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124a65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461246a6000888488611f77565b6124865760405162461bcd60e51b81526004016109ed906129e9565b816124908161296c565b925050808061249e9061296c565b91505061241d565b506000819055611d59565b8280546124bd906128d6565b90600052602060002090601f0160209004810192826124df5760008555612525565b82601f106124f857805160ff1916838001178555612525565b82800160010185558215612525579182015b8281111561252557825182559160200191906001019061250a565b506110c59291505b808211156110c5576000815560010161252d565b6001600160e01b031981168114610e7057600080fd5b60006020828403121561256957600080fd5b813561257481612541565b9392505050565b60006020828403121561258d57600080fd5b5035919050565b60005b838110156125af578181015183820152602001612597565b838111156116ff5750506000910152565b600081518084526125d8816020860160208601612594565b601f01601f19169290920160200192915050565b60208152600061257460208301846125c0565b80356001600160a01b038116811461261657600080fd5b919050565b6000806040838503121561262e57600080fd5b612637836125ff565b946020939093013593505050565b60006020828403121561265757600080fd5b612574826125ff565b60008060006060848603121561267557600080fd5b61267e846125ff565b925061268c602085016125ff565b9150604084013590509250925092565b8035801515811461261657600080fd5b6000602082840312156126be57600080fd5b6125748261269c565b6000806000606084860312156126dc57600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612724576127246126f3565b604051601f8501601f19908116603f0116810190828211818310171561274c5761274c6126f3565b8160405280935085815286868601111561276557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561279157600080fd5b813567ffffffffffffffff8111156127a857600080fd5b8201601f810184136127b957600080fd5b61207184823560208401612709565b600080604083850312156127db57600080fd5b6127e4836125ff565b91506127f26020840161269c565b90509250929050565b6000806000806080858703121561281157600080fd5b61281a856125ff565b9350612828602086016125ff565b925060408501359150606085013567ffffffffffffffff81111561284b57600080fd5b8501601f8101871361285c57600080fd5b61286b87823560208401612709565b91505092959194509250565b6000806040838503121561288a57600080fd5b612893836125ff565b91506127f2602084016125ff565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128ea57607f821691505b60208210810361290a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561293957612939612910565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60006001820161297e5761297e612910565b5060010190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b60008160001904831182151516156129e4576129e4612910565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612a4e818560208601612594565b9290920192915050565b600080845481600182811c915080831680612a7457607f831692505b60208084108203612a9357634e487b7160e01b86526022600452602486fd5b818015612aa75760018114612ab857612ae5565b60ff19861689528489019650612ae5565b60008b81526020902060005b86811015612add5781548b820152908501908301612ac4565b505084890196505b505050505050612b09612af88286612a3c565b64173539b7b760d91b815260050190565b95945050505050565b600082821015612b2457612b24612910565b500390565b600081612b3857612b38612910565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b73908301846125c0565b9695505050505050565b600060208284031215612b8f57600080fd5b815161257481612541565b634e487b7160e01b600052601260045260246000fd5b600082612bbf57612bbf612b9a565b500490565b600082612bd357612bd3612b9a565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b03808316818516808303821115612c1057612c10612910565b0194935050505056fea2646970667358221220492ac0799c94325dc1e74f5985dc63f21979fef0e847ca59dc3fb3b79748a50064736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5071436734635144775a3661767870585347377356315833633676716a7153764e4c3141414453386f713468

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806382447134116101ab578063b88d4fde116100f7578063d5abeb0111610095578063e985e9c51161006f578063e985e9c5146108c1578063f2fde38b1461090a578063f47a437a1461092a578063fe04bd9b1461094057600080fd5b8063d5abeb011461086b578063e0a8085314610881578063e2af30f4146108a157600080fd5b8063c1ab22ec116100d1578063c1ab22ec1461080a578063c737e73514610820578063c87b56dd14610836578063d547cfb71461085657600080fd5b8063b88d4fde146107b0578063bab257f3146107d0578063bce6d672146107f057600080fd5b806395d89b4111610164578063a0bcfc7f1161013e578063a0bcfc7f14610739578063a22cb46514610759578063a591252d14610779578063a5fe62e71461078f57600080fd5b806395d89b41146106ef578063a0712d6814610704578063a0b7cd851461071757600080fd5b806382447134146106545780638ab53447146106745780638cc54e7f1461067c5780638da5cb5b1461069157806391b7f5ed146106af578063958f7fcc146106cf57600080fd5b80633d8ff2f41161026a5780636352211e116102235780636f8b44b0116101fd5780636f8b44b0146105df57806370a08231146105ff578063715018a61461061f578063742a4c9b1461063457600080fd5b80636352211e146105935780636817c76c146105b357806368a4bd24146105c957600080fd5b80633d8ff2f4146104eb5780633f815b9a146104fe57806342842e0e1461051e5780634f6ccce71461053e578063518302271461055e57806357f55a051461057d57600080fd5b806316dad380116102d757806323b872dd116102b157806323b872dd14610476578063248b71fc146104965780632f745c59146104b65780633ccfd60b146104d657600080fd5b806316dad3801461041457806318160ddd1461043457806318cae2691461044957600080fd5b806301ffc9a71461031f5780630426c1fa1461035457806306fdde0314610376578063081812fc14610398578063095ea7b3146103d057806310fb2825146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612557565b610956565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f36600461257b565b6109c3565b005b34801561038257600080fd5b5061038b6109fb565b60405161034b91906125ec565b3480156103a457600080fd5b506103b86103b336600461257b565b610a8d565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b506103746103eb36600461261b565b610b18565b3480156103fc57600080fd5b50610406600b5481565b60405190815260200161034b565b34801561042057600080fd5b5060145461033f9062010000900460ff1681565b34801561044057600080fd5b50600054610406565b34801561045557600080fd5b50610406610464366004612645565b60156020526000908152604090205481565b34801561048257600080fd5b50610374610491366004612660565b610c2f565b3480156104a257600080fd5b506103746104b136600461261b565b610c3a565b3480156104c257600080fd5b506104066104d136600461261b565b610ca1565b3480156104e257600080fd5b50610374610e0d565b6103746104f936600461257b565b610e73565b34801561050a57600080fd5b506103746105193660046126ac565b611006565b34801561052a57600080fd5b50610374610539366004612660565b61104c565b34801561054a57600080fd5b5061040661055936600461257b565b611067565b34801561056a57600080fd5b5060145461033f90610100900460ff1681565b34801561058957600080fd5b50610406600d5481565b34801561059f57600080fd5b506103b86105ae36600461257b565b6110c9565b3480156105bf57600080fd5b5061040660085481565b3480156105d557600080fd5b50610406600a5481565b3480156105eb57600080fd5b506103746105fa36600461257b565b6110db565b34801561060b57600080fd5b5061040661061a366004612645565b61110a565b34801561062b57600080fd5b5061037461119b565b34801561064057600080fd5b5061037461064f36600461257b565b6111d1565b34801561066057600080fd5b5061037461066f3660046126c7565b611200565b61037461125d565b34801561068857600080fd5b5061038b6113e8565b34801561069d57600080fd5b506007546001600160a01b03166103b8565b3480156106bb57600080fd5b506103746106ca36600461257b565b611476565b3480156106db57600080fd5b506103746106ea3660046126ac565b6114a5565b3480156106fb57600080fd5b5061038b6114ed565b61037461071236600461257b565b6114fc565b34801561072357600080fd5b5060145461033f90640100000000900460ff1681565b34801561074557600080fd5b5061037461075436600461277f565b6115cb565b34801561076557600080fd5b506103746107743660046127c8565b611608565b34801561078557600080fd5b5061040660105481565b34801561079b57600080fd5b5060145461033f906301000000900460ff1681565b3480156107bc57600080fd5b506103746107cb3660046127fb565b6116cc565b3480156107dc57600080fd5b506103746107eb3660046126ac565b611705565b3480156107fc57600080fd5b5060145461033f9060ff1681565b34801561081657600080fd5b5061040660115481565b34801561082c57600080fd5b5061040660095481565b34801561084257600080fd5b5061038b61085136600461257b565b61174f565b34801561086257600080fd5b5061038b611898565b34801561087757600080fd5b50610406600f5481565b34801561088d57600080fd5b5061037461089c3660046126ac565b6118a5565b3480156108ad57600080fd5b506103746108bc3660046126ac565b6118e9565b3480156108cd57600080fd5b5061033f6108dc366004612877565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561091657600080fd5b50610374610925366004612645565b611926565b34801561093657600080fd5b50610406600e5481565b34801561094c57600080fd5b50610406600c5481565b60006001600160e01b031982166380ac58cd60e01b148061098757506001600160e01b03198216635b5e139f60e01b145b806109a257506001600160e01b0319821663780e9d6360e01b145b806109bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109f65760405162461bcd60e51b81526004016109ed906128a1565b60405180910390fd5b601155565b606060018054610a0a906128d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906128d6565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000610a9a826000541190565b610afc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016109ed565b506000908152600560205260409020546001600160a01b031690565b6000610b23826110c9565b9050806001600160a01b0316836001600160a01b031603610b915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109ed565b336001600160a01b0382161480610bad5750610bad81336108dc565b610c1f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109ed565b610c2a8383836119be565b505050565b610c2a838383611a1a565b6007546001600160a01b03163314610c645760405162461bcd60e51b81526004016109ed906128a1565b600f5481600054610c759190612926565b1115610c935760405162461bcd60e51b81526004016109ed9061293e565b610c9d8282611d61565b5050565b6000610cac8361110a565b8210610d055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109ed565b600080549080805b83811015610dad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d6057805192505b876001600160a01b0316836001600160a01b031603610d9a57868403610d8c575093506109bd92505050565b83610d968161296c565b9450505b5080610da58161296c565b915050610d0d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109ed565b6007546001600160a01b03163314610e375760405162461bcd60e51b81526004016109ed906128a1565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e70573d6000803e3d6000fd5b50565b60145460ff16610e955760405162461bcd60e51b81526004016109ed90612985565b6014546301000000900460ff16610f025760405162461bcd60e51b815260206004820152602b60248201527f496e76616c6964204d696e742c205061636b676167652070726f6d6f74696f6e60448201526a2068617320656e6465642160a81b60648201526084016109ed565b6008546000906001839003610f1e575050600954600a54610f44565b82600203610f33575050600b54600c54610f44565b82600303610f44575050600d54600e545b60008211610f875760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f206d696e742160801b60448201526064016109ed565b80341015610fcd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ed565b600f5482600054610fde9190612926565b1115610ffc5760405162461bcd60e51b81526004016109ed9061293e565b610c2a3383611d61565b6007546001600160a01b031633146110305760405162461bcd60e51b81526004016109ed906128a1565b60148054911515620100000262ff000019909216919091179055565b610c2a838383604051806020016040528060008152506116cc565b6000805482106110c55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109ed565b5090565b60006110d482611d7b565b5192915050565b6007546001600160a01b031633146111055760405162461bcd60e51b81526004016109ed906128a1565b600f55565b60006001600160a01b0382166111765760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109ed565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146111c55760405162461bcd60e51b81526004016109ed906128a1565b6111cf6000611f25565b565b6007546001600160a01b031633146111fb5760405162461bcd60e51b81526004016109ed906128a1565b601055565b6007546001600160a01b0316331461122a5760405162461bcd60e51b81526004016109ed906128a1565b8260010361123b57600955600a5550565b8260020361124c57600b55600c5550565b82600303610c2a57600d55600e5550565b60145460ff1661127f5760405162461bcd60e51b81526004016109ed90612985565b60145462010000900460ff166112e65760405162461bcd60e51b815260206004820152602660248201527f54686520636f6e7472616374206973206e6f74206f70656e20666f722066726560448201526519481b5a5b9d60d21b60648201526084016109ed565b6011546112f23361110a565b1061134a5760405162461bcd60e51b815260206004820152602260248201527f4d61782066726565206d696e74207065722077616c6c65742065786365656465604482015261642160f01b60648201526084016109ed565b60105460115460005461135d9190612926565b11156113ab5760405162461bcd60e51b815260206004820152601760248201527f4d61782066726565206d696e742065786365656465642100000000000000000060448201526064016109ed565b600f546011546000546113be9190612926565b11156113dc5760405162461bcd60e51b81526004016109ed9061293e565b6111cf33601154611d61565b601380546113f5906128d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611421906128d6565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b6007546001600160a01b031633146114a05760405162461bcd60e51b81526004016109ed906128a1565b600855565b6007546001600160a01b031633146114cf5760405162461bcd60e51b81526004016109ed906128a1565b6014805491151563010000000263ff00000019909216919091179055565b606060028054610a0a906128d6565b60145460ff1661151e5760405162461bcd60e51b81526004016109ed90612985565b8060085461152c91906129ca565b3410156115715760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ed565b601454640100000000900460ff16156115925761158f8160026129ca565b90505b600f54816000546115a39190612926565b11156115c15760405162461bcd60e51b81526004016109ed9061293e565b610e703382611d61565b6007546001600160a01b031633146115f55760405162461bcd60e51b81526004016109ed906128a1565b8051610c9d9060129060208401906124b1565b336001600160a01b038316036116605760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109ed565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116d7848484611a1a565b6116e384848484611f77565b6116ff5760405162461bcd60e51b81526004016109ed906129e9565b50505050565b6007546001600160a01b0316331461172f5760405162461bcd60e51b81526004016109ed906128a1565b601480549115156401000000000264ff0000000019909216919091179055565b606061175c826000541190565b6117c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ed565b601454610100900460ff16151560000361186657601380546117e1906128d6565b80601f016020809104026020016040519081016040528092919081815260200182805461180d906128d6565b801561185a5780601f1061182f5761010080835404028352916020019161185a565b820191906000526020600020905b81548152906001019060200180831161183d57829003601f168201915b50505050509050919050565b601261187183612079565b604051602001611882929190612a58565b6040516020818303038152906040529050919050565b601280546113f5906128d6565b6007546001600160a01b031633146118cf5760405162461bcd60e51b81526004016109ed906128a1565b601480549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146119135760405162461bcd60e51b81526004016109ed906128a1565b6014805460ff1916911515919091179055565b6007546001600160a01b031633146119505760405162461bcd60e51b81526004016109ed906128a1565b6001600160a01b0381166119b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ed565b610e7081611f25565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a2582611d7b565b80519091506000906001600160a01b0316336001600160a01b03161480611a5c575033611a5184610a8d565b6001600160a01b0316145b80611a6e57508151611a6e90336108dc565b905080611ad85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109ed565b846001600160a01b031682600001516001600160a01b031614611b4c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109ed565b6001600160a01b038416611bb05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109ed565b611bc060008484600001516119be565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611c85908590612926565b6000818152600360205260409020549091506001600160a01b0316611d1757611caf816000541190565b15611d175760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c9d82826040518060200160405280600081525061217a565b6040805180820190915260008082526020820152611d9a826000541190565b611df95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109ed565b60007f00000000000000000000000000000000000000000000000000000000000000648310611e5a57611e4c7f000000000000000000000000000000000000000000000000000000000000006484612b12565b611e57906001612926565b90505b825b818110611ec4576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611eb157949350505050565b5080611ebc81612b29565b915050611e5c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109ed565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561206d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbb903390899088908890600401612b40565b6020604051808303816000875af1925050508015611ff6575060408051601f3d908101601f19168201909252611ff391810190612b7d565b60015b612053573d808015612024576040519150601f19603f3d011682016040523d82523d6000602084013e612029565b606091505b50805160000361204b5760405162461bcd60e51b81526004016109ed906129e9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612071565b5060015b949350505050565b6060816000036120a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120ca57806120b48161296c565b91506120c39050600a83612bb0565b91506120a4565b60008167ffffffffffffffff8111156120e5576120e56126f3565b6040519080825280601f01601f19166020018201604052801561210f576020820181803683370190505b5090505b841561207157612124600183612b12565b9150612131600a86612bc4565b61213c906030612926565b60f81b81838151811061215157612151612bd8565b60200101906001600160f81b031916908160001a905350612173600a86612bb0565b9450612113565b6000546001600160a01b0384166121dd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ed565b6121e8816000541190565b156122355760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109ed565b7f00000000000000000000000000000000000000000000000000000000000000648311156122b05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109ed565b6000831161230c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109ed565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612368908790612bee565b6001600160801b031681526020018583602001516123869190612bee565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124a65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461246a6000888488611f77565b6124865760405162461bcd60e51b81526004016109ed906129e9565b816124908161296c565b925050808061249e9061296c565b91505061241d565b506000819055611d59565b8280546124bd906128d6565b90600052602060002090601f0160209004810192826124df5760008555612525565b82601f106124f857805160ff1916838001178555612525565b82800160010185558215612525579182015b8281111561252557825182559160200191906001019061250a565b506110c59291505b808211156110c5576000815560010161252d565b6001600160e01b031981168114610e7057600080fd5b60006020828403121561256957600080fd5b813561257481612541565b9392505050565b60006020828403121561258d57600080fd5b5035919050565b60005b838110156125af578181015183820152602001612597565b838111156116ff5750506000910152565b600081518084526125d8816020860160208601612594565b601f01601f19169290920160200192915050565b60208152600061257460208301846125c0565b80356001600160a01b038116811461261657600080fd5b919050565b6000806040838503121561262e57600080fd5b612637836125ff565b946020939093013593505050565b60006020828403121561265757600080fd5b612574826125ff565b60008060006060848603121561267557600080fd5b61267e846125ff565b925061268c602085016125ff565b9150604084013590509250925092565b8035801515811461261657600080fd5b6000602082840312156126be57600080fd5b6125748261269c565b6000806000606084860312156126dc57600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612724576127246126f3565b604051601f8501601f19908116603f0116810190828211818310171561274c5761274c6126f3565b8160405280935085815286868601111561276557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561279157600080fd5b813567ffffffffffffffff8111156127a857600080fd5b8201601f810184136127b957600080fd5b61207184823560208401612709565b600080604083850312156127db57600080fd5b6127e4836125ff565b91506127f26020840161269c565b90509250929050565b6000806000806080858703121561281157600080fd5b61281a856125ff565b9350612828602086016125ff565b925060408501359150606085013567ffffffffffffffff81111561284b57600080fd5b8501601f8101871361285c57600080fd5b61286b87823560208401612709565b91505092959194509250565b6000806040838503121561288a57600080fd5b612893836125ff565b91506127f2602084016125ff565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128ea57607f821691505b60208210810361290a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561293957612939612910565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60006001820161297e5761297e612910565b5060010190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b60008160001904831182151516156129e4576129e4612910565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612a4e818560208601612594565b9290920192915050565b600080845481600182811c915080831680612a7457607f831692505b60208084108203612a9357634e487b7160e01b86526022600452602486fd5b818015612aa75760018114612ab857612ae5565b60ff19861689528489019650612ae5565b60008b81526020902060005b86811015612add5781548b820152908501908301612ac4565b505084890196505b505050505050612b09612af88286612a3c565b64173539b7b760d91b815260050190565b95945050505050565b600082821015612b2457612b24612910565b500390565b600081612b3857612b38612910565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b73908301846125c0565b9695505050505050565b600060208284031215612b8f57600080fd5b815161257481612541565b634e487b7160e01b600052601260045260246000fd5b600082612bbf57612bbf612b9a565b500490565b600082612bd357612bd3612b9a565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b03808316818516808303821115612c1057612c10612910565b0194935050505056fea2646970667358221220492ac0799c94325dc1e74f5985dc63f21979fef0e847ca59dc3fb3b79748a50064736f6c634300080d0033

Deployed Bytecode Sourcemap

39331:4855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27055:372;;;;;;;;;;-1:-1:-1;27055:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27055:372:0;;;;;;;;43425:126;;;;;;;;;;-1:-1:-1;43425:126:0;;;;;:::i;:::-;;:::i;:::-;;28860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30421:214::-;;;;;;;;;;-1:-1:-1;30421:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;30421:214:0;1550:203:1;29942:413:0;;;;;;;;;;-1:-1:-1;29942:413:0;;;;;:::i;:::-;;:::i;39540:31::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;39540:31:0;2195:177:1;40041:29:0;;;;;;;;;;-1:-1:-1;40041:29:0;;;;;;;;;;;25496:100;;;;;;;;;;-1:-1:-1;25549:7:0;25576:12;25496:100;;40146:55;;;;;;;;;;-1:-1:-1;40146:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;31297:162;;;;;;;;;;-1:-1:-1;31297:162:0;;;;;:::i;:::-;;:::i;42059:189::-;;;;;;;;;;-1:-1:-1;42059:189:0;;;;;:::i;:::-;;:::i;26160:823::-;;;;;;;;;;-1:-1:-1;26160:823:0;;;;;:::i;:::-;;:::i;42643:100::-;;;;;;;;;;;;;:::i;40281:873::-;;;;;;:::i;:::-;;:::i;43838:83::-;;;;;;;;;;-1:-1:-1;43838:83:0;;;;;:::i;:::-;;:::i;31530:177::-;;;;;;;;;;-1:-1:-1;31530:177:0;;;;;:::i;:::-;;:::i;25673:187::-;;;;;;;;;;-1:-1:-1;25673:187:0;;;;;:::i;:::-;;:::i;40006:28::-;;;;;;;;;;-1:-1:-1;40006:28:0;;;;;;;;;;;39623:31;;;;;;;;;;;;;;;;28669:124;;;;;;;;;;-1:-1:-1;28669:124:0;;;;;:::i;:::-;;:::i;39413:38::-;;;;;;;;;;;;;;;;39493:42;;;;;;;;;;;;;;;;43325:94;;;;;;;;;;-1:-1:-1;43325:94:0;;;;;:::i;:::-;;:::i;27491:221::-;;;;;;;;;;-1:-1:-1;27491:221:0;;;;;:::i;:::-;;:::i;4677:103::-;;;;;;;;;;;;;:::i;43217:102::-;;;;;;;;;;-1:-1:-1;43217:102:0;;;;;:::i;:::-;;:::i;42749:462::-;;;;;;;;;;-1:-1:-1;42749:462:0;;;;;:::i;:::-;;:::i;41160:497::-;;;:::i;39858:108::-;;;;;;;;;;;;;:::i;4026:87::-;;;;;;;;;;-1:-1:-1;4099:6:0;;-1:-1:-1;;;;;4099:6:0;4026:87;;44099:82;;;;;;;;;;-1:-1:-1;44099:82:0;;;;;:::i;:::-;;:::i;43741:91::-;;;;;;;;;;-1:-1:-1;43741:91:0;;;;;:::i;:::-;;:::i;29029:104::-;;;;;;;;;;;;;:::i;41663:388::-;;;;;;:::i;:::-;;:::i;40112:27::-;;;;;;;;;;-1:-1:-1;40112:27:0;;;;;;;;;;;43557:91;;;;;;;;;;-1:-1:-1;43557:91:0;;;;;:::i;:::-;;:::i;30707:288::-;;;;;;;;;;-1:-1:-1;30707:288:0;;;;;:::i;:::-;;:::i;39743:33::-;;;;;;;;;;;;;;;;40075:32;;;;;;;;;;-1:-1:-1;40075:32:0;;;;;;;;;;;31778:355;;;;;;;;;;-1:-1:-1;31778:355:0;;;;;:::i;:::-;;:::i;43654:81::-;;;;;;;;;;-1:-1:-1;43654:81:0;;;;;:::i;:::-;;:::i;39973:28::-;;;;;;;;;;-1:-1:-1;39973:28:0;;;;;;;;39781:36;;;;;;;;;;;;;;;;39458:30;;;;;;;;;;;;;;;;42254:383;;;;;;;;;;-1:-1:-1;42254:383:0;;;;;:::i;:::-;;:::i;39822:31::-;;;;;;;;;;;;;:::i;39707:::-;;;;;;;;;;;;;;;;44012:81;;;;;;;;;;-1:-1:-1;44012:81:0;;;;;:::i;:::-;;:::i;43925:::-;;;;;;;;;;-1:-1:-1;43925:81:0;;;;;:::i;:::-;;:::i;31066:164::-;;;;;;;;;;-1:-1:-1;31066:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31187:25:0;;;31163:4;31187:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31066:164;4935:201;;;;;;;;;;-1:-1:-1;4935:201:0;;;;;:::i;:::-;;:::i;39659:41::-;;;;;;;;;;;;;;;;39576:42;;;;;;;;;;;;;;;;27055:372;27157:4;-1:-1:-1;;;;;;27194:40:0;;-1:-1:-1;;;27194:40:0;;:105;;-1:-1:-1;;;;;;;27251:48:0;;-1:-1:-1;;;27251:48:0;27194:105;:172;;;-1:-1:-1;;;;;;;27316:50:0;;-1:-1:-1;;;27316:50:0;27194:172;:225;;;-1:-1:-1;;;;;;;;;;16567:40:0;;;27383:36;27174:245;27055:372;-1:-1:-1;;27055:372:0:o;43425:126::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;;;;;;;;;43507:17:::1;:38:::0;43425:126::o;28860:100::-;28914:13;28947:5;28940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28860:100;:::o;30421:214::-;30489:7;30517:16;30525:7;32445:4;32479:12;-1:-1:-1;32469:22:0;32388:111;30517:16;30509:74;;;;-1:-1:-1;;;30509:74:0;;6941:2:1;30509:74:0;;;6923:21:1;6980:2;6960:18;;;6953:30;7019:34;6999:18;;;6992:62;-1:-1:-1;;;7070:18:1;;;7063:43;7123:19;;30509:74:0;6739:409:1;30509:74:0;-1:-1:-1;30603:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30603:24:0;;30421:214::o;29942:413::-;30015:13;30031:24;30047:7;30031:15;:24::i;:::-;30015:40;;30080:5;-1:-1:-1;;;;;30074:11:0;:2;-1:-1:-1;;;;;30074:11:0;;30066:58;;;;-1:-1:-1;;;30066:58:0;;7355:2:1;30066:58:0;;;7337:21:1;7394:2;7374:18;;;7367:30;7433:34;7413:18;;;7406:62;-1:-1:-1;;;7484:18:1;;;7477:32;7526:19;;30066:58:0;7153:398:1;30066:58:0;2830:10;-1:-1:-1;;;;;30159:21:0;;;;:62;;-1:-1:-1;30184:37:0;30201:5;2830:10;31066:164;:::i;30184:37::-;30137:169;;;;-1:-1:-1;;;30137:169:0;;7758:2:1;30137:169:0;;;7740:21:1;7797:2;7777:18;;;7770:30;7836:34;7816:18;;;7809:62;7907:27;7887:18;;;7880:55;7952:19;;30137:169:0;7556:421:1;30137:169:0;30319:28;30328:2;30332:7;30341:5;30319:8;:28::i;:::-;30004:351;29942:413;;:::o;31297:162::-;31423:28;31433:4;31439:2;31443:7;31423:9;:28::i;42059:189::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;42174:9:::1;;42159:11;42144:12;;:26;;;;:::i;:::-;:39;;42136:72;;;;-1:-1:-1::0;;;42136:72:0::1;;;;;;;:::i;:::-;42215:27;42225:3;42230:11;42215:9;:27::i;:::-;42059:189:::0;;:::o;26160:823::-;26249:7;26285:16;26295:5;26285:9;:16::i;:::-;26277:5;:24;26269:71;;;;-1:-1:-1;;;26269:71:0;;8798:2:1;26269:71:0;;;8780:21:1;8837:2;8817:18;;;8810:30;8876:34;8856:18;;;8849:62;-1:-1:-1;;;8927:18:1;;;8920:32;8969:19;;26269:71:0;8596:398:1;26269:71:0;26351:22;25576:12;;;26351:22;;26483:426;26507:14;26503:1;:18;26483:426;;;26543:31;26577:14;;;:11;:14;;;;;;;;;26543:48;;;;;;;;;-1:-1:-1;;;;;26543:48:0;;;;;-1:-1:-1;;;26543:48:0;;;;;;;;;;;;26610:28;26606:103;;26679:14;;;-1:-1:-1;26606:103:0;26748:5;-1:-1:-1;;;;;26727:26:0;:17;-1:-1:-1;;;;;26727:26:0;;26723:175;;26793:5;26778:11;:20;26774:77;;-1:-1:-1;26830:1:0;-1:-1:-1;26823:8:0;;-1:-1:-1;;;26823:8:0;26774:77;26869:13;;;;:::i;:::-;;;;26723:175;-1:-1:-1;26523:3:0;;;;:::i;:::-;;;;26483:426;;;-1:-1:-1;26919:56:0;;-1:-1:-1;;;26919:56:0;;9341:2:1;26919:56:0;;;9323:21:1;9380:2;9360:18;;;9353:30;9419:34;9399:18;;;9392:62;-1:-1:-1;;;9470:18:1;;;9463:44;9524:19;;26919:56:0;9139:410:1;42643:100:0;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;4099:6;;42689:48:::1;::::0;-1:-1:-1;;;;;4099:6:0;;;;42715:21:::1;42689:48:::0;::::1;;;::::0;::::1;::::0;;;42715:21;4099:6;42689:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42643:100::o:0;40281:873::-;40358:8;;;;40350:58;;;;-1:-1:-1;;;40350:58:0;;;;;;;:::i;:::-;40423:13;;;;;;;40415:69;;;;-1:-1:-1;;;40415:69:0;;10162:2:1;40415:69:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;-1:-1:-1;;;10291:18:1;;;10284:41;10342:19;;40415:69:0;9960:407:1;40415:69:0;40547:9;;40493:19;;40584:1;40566:19;;;40563:346;;-1:-1:-1;;40612:11:0;;40650:13;;40563:346;;;40685:14;40703:1;40685:19;40682:227;;-1:-1:-1;;40731:11:0;;40769:13;;40682:227;;;40804:14;40822:1;40804:19;40801:108;;-1:-1:-1;;40850:11:0;;40888:13;;40801:108;40939:1;40925:11;:15;40917:44;;;;-1:-1:-1;;;40917:44:0;;10574:2:1;40917:44:0;;;10556:21:1;10613:2;10593:18;;;10586:30;-1:-1:-1;;;10632:18:1;;;10625:46;10688:18;;40917:44:0;10372:340:1;40917:44:0;40989:13;40976:9;:26;;40968:58;;;;-1:-1:-1;;;40968:58:0;;10919:2:1;40968:58:0;;;10901:21:1;10958:2;10938:18;;;10931:30;-1:-1:-1;;;10977:18:1;;;10970:49;11036:18;;40968:58:0;10717:343:1;40968:58:0;41071:9;;41056:11;41041:12;;:26;;;;:::i;:::-;:39;;41033:72;;;;-1:-1:-1;;;41033:72:0;;;;;;;:::i;:::-;41114:34;41124:10;41136:11;41114:9;:34::i;43838:83::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43896:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43896:19:0;;::::1;::::0;;;::::1;::::0;;43838:83::o;31530:177::-;31660:39;31677:4;31683:2;31687:7;31660:39;;;;;;;;;;;;:16;:39::i;25673:187::-;25740:7;25576:12;;25768:5;:21;25760:69;;;;-1:-1:-1;;;25760:69:0;;11267:2:1;25760:69:0;;;11249:21:1;11306:2;11286:18;;;11279:30;11345:34;11325:18;;;11318:62;-1:-1:-1;;;11396:18:1;;;11389:33;11439:19;;25760:69:0;11065:399:1;25760:69:0;-1:-1:-1;25847:5:0;25673:187::o;28669:124::-;28733:7;28760:20;28772:7;28760:11;:20::i;:::-;:25;;28669:124;-1:-1:-1;;28669:124:0:o;43325:94::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43391:9:::1;:22:::0;43325:94::o;27491:221::-;27555:7;-1:-1:-1;;;;;27583:19:0;;27575:75;;;;-1:-1:-1;;;27575:75:0;;11671:2:1;27575:75:0;;;11653:21:1;11710:2;11690:18;;;11683:30;11749:34;11729:18;;;11722:62;-1:-1:-1;;;11800:18:1;;;11793:41;11851:19;;27575:75:0;11469:407:1;27575:75:0;-1:-1:-1;;;;;;27676:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27676:27:0;;27491:221::o;4677:103::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;4742:30:::1;4769:1;4742:18;:30::i;:::-;4677:103::o:0;43217:102::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43287:11:::1;:26:::0;43217:102::o;42749:462::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;42866:14:::1;42884:1;42866:19:::0;42863:343:::1;;42897:11;:25:::0;42933:13:::1;:29:::0;-1:-1:-1;29942:413:0:o;42863:343::-:1;42984:14;43002:1;42984:19:::0;42981:225:::1;;43015:11;:25:::0;43051:13:::1;:29:::0;-1:-1:-1;29942:413:0:o;42981:225::-:1;43102:14;43120:1;43102:19:::0;43099:107:::1;;43133:11;:25:::0;43169:13:::1;:29:::0;-1:-1:-1;42749:462:0:o;41160:497::-;41212:8;;;;41204:58;;;;-1:-1:-1;;;41204:58:0;;;;;;;:::i;:::-;41277:10;;;;;;;41269:61;;;;-1:-1:-1;;;41269:61:0;;12083:2:1;41269:61:0;;;12065:21:1;12122:2;12102:18;;;12095:30;12161:34;12141:18;;;12134:62;-1:-1:-1;;;12212:18:1;;;12205:36;12258:19;;41269:61:0;11881:402:1;41269:61:0;41371:17;;41345:23;2830:10;27491:221;:::i;41345:23::-;:43;41337:90;;;;-1:-1:-1;;;41337:90:0;;12490:2:1;41337:90:0;;;12472:21:1;12529:2;12509:18;;;12502:30;12568:34;12548:18;;;12541:62;-1:-1:-1;;;12619:18:1;;;12612:32;12661:19;;41337:90:0;12288:398:1;41337:90:0;41478:11;;41457:17;;41442:12;;:32;;;;:::i;:::-;:47;;41434:83;;;;-1:-1:-1;;;41434:83:0;;12893:2:1;41434:83:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:25;12951:18;;;12944:53;13014:18;;41434:83:0;12691:347:1;41434:83:0;41568:9;;41547:17;;41532:12;;:32;;;;:::i;:::-;:45;;41524:78;;;;-1:-1:-1;;;41524:78:0;;;;;;;:::i;:::-;41611:40;41621:10;41633:17;;41611:9;:40::i;39858:108::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44099:82::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;44157:9:::1;:18:::0;44099:82::o;43741:91::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43804:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43804:22:0;;::::1;::::0;;;::::1;::::0;;43741:91::o;29029:104::-;29085:13;29118:7;29111:14;;;;;:::i;41663:388::-;41730:8;;;;41722:58;;;;-1:-1:-1;;;41722:58:0;;;;;;;:::i;:::-;41820:11;41808:9;;:23;;;;:::i;:::-;41795:9;:36;;41787:68;;;;-1:-1:-1;;;41787:68:0;;10919:2:1;41787:68:0;;;10901:21:1;10958:2;10938:18;;;10931:30;-1:-1:-1;;;10977:18:1;;;10970:49;11036:18;;41787:68:0;10717:343:1;41787:68:0;41867:8;;;;;;;41864:60;;;41901:15;:11;41915:1;41901:15;:::i;:::-;41887:29;;41864:60;41968:9;;41953:11;41938:12;;:26;;;;:::i;:::-;:39;;41930:72;;;;-1:-1:-1;;;41930:72:0;;;;;;;:::i;:::-;42011:34;42021:10;42033:11;42011:9;:34::i;43557:91::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43623:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;30707:288::-:0;2830:10;-1:-1:-1;;;;;30802:24:0;;;30794:63;;;;-1:-1:-1;;;30794:63:0;;13418:2:1;30794:63:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:28;13476:18;;;13469:56;13542:18;;30794:63:0;13216:350:1;30794:63:0;2830:10;30870:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30870:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30870:53:0;;;;;;;;;;30939:48;;540:41:1;;;30870:42:0;;2830:10;30939:48;;513:18:1;30939:48:0;;;;;;;30707:288;;:::o;31778:355::-;31937:28;31947:4;31953:2;31957:7;31937:9;:28::i;:::-;31998:48;32021:4;32027:2;32031:7;32040:5;31998:22;:48::i;:::-;31976:149;;;;-1:-1:-1;;;31976:149:0;;;;;;;:::i;:::-;31778:355;;;;:::o;43654:81::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43712:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43712:17:0;;::::1;::::0;;;::::1;::::0;;43654:81::o;42254:383::-;42353:13;42394:17;42402:8;32445:4;32479:12;-1:-1:-1;32469:22:0;32388:111;42394:17;42378:98;;;;-1:-1:-1;;;42378:98:0;;14193:2:1;42378:98:0;;;14175:21:1;14232:2;14212:18;;;14205:30;14271:34;14251:18;;;14244:62;-1:-1:-1;;;14322:18:1;;;14315:45;14377:19;;42378:98:0;13991:411:1;42378:98:0;42489:8;;;;;;;:17;;42501:5;42489:17;42485:56;;42524:9;42517:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42254:383;;;:::o;42485:56::-;42580:12;42594:26;42611:8;42594:16;:26::i;:::-;42563:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42549:82;;42254:383;;;:::o;39822:31::-;;;;;;;:::i;44012:81::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;44070:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44070:17:0;;::::1;::::0;;;::::1;::::0;;44012:81::o;43925:::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;43983:8:::1;:17:::0;;-1:-1:-1;;43983:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43925:81::o;4935:201::-;4099:6;;-1:-1:-1;;;;;4099:6:0;2830:10;4246:23;4238:68;;;;-1:-1:-1;;;4238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5024:22:0;::::1;5016:73;;;::::0;-1:-1:-1;;;5016:73:0;;16349:2:1;5016:73:0::1;::::0;::::1;16331:21:1::0;16388:2;16368:18;;;16361:30;16427:34;16407:18;;;16400:62;-1:-1:-1;;;16478:18:1;;;16471:36;16524:19;;5016:73:0::1;16147:402:1::0;5016:73:0::1;5100:28;5119:8;5100:18;:28::i;36514:196::-:0;36629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36629:29:0;-1:-1:-1;;;;;36629:29:0;;;;;;;;;36674:28;;36629:24;;36674:28;;;;;;;36514:196;;;:::o;34613:1783::-;34728:35;34766:20;34778:7;34766:11;:20::i;:::-;34841:18;;34728:58;;-1:-1:-1;34799:22:0;;-1:-1:-1;;;;;34825:34:0;2830:10;-1:-1:-1;;;;;34825:34:0;;:87;;;-1:-1:-1;2830:10:0;34876:20;34888:7;34876:11;:20::i;:::-;-1:-1:-1;;;;;34876:36:0;;34825:87;:154;;;-1:-1:-1;34946:18:0;;34929:50;;2830:10;31066:164;:::i;34929:50::-;34799:181;;35001:17;34993:80;;;;-1:-1:-1;;;34993:80:0;;16756:2:1;34993:80:0;;;16738:21:1;16795:2;16775:18;;;16768:30;16834:34;16814:18;;;16807:62;-1:-1:-1;;;16885:18:1;;;16878:48;16943:19;;34993:80:0;16554:414:1;34993:80:0;35116:4;-1:-1:-1;;;;;35094:26:0;:13;:18;;;-1:-1:-1;;;;;35094:26:0;;35086:77;;;;-1:-1:-1;;;35086:77:0;;17175:2:1;35086:77:0;;;17157:21:1;17214:2;17194:18;;;17187:30;17253:34;17233:18;;;17226:62;-1:-1:-1;;;17304:18:1;;;17297:36;17350:19;;35086:77:0;16973:402:1;35086:77:0;-1:-1:-1;;;;;35182:16:0;;35174:66;;;;-1:-1:-1;;;35174:66:0;;17582:2:1;35174:66:0;;;17564:21:1;17621:2;17601:18;;;17594:30;17660:34;17640:18;;;17633:62;-1:-1:-1;;;17711:18:1;;;17704:35;17756:19;;35174:66:0;17380:401:1;35174:66:0;35361:49;35378:1;35382:7;35391:13;:18;;;35361:8;:49::i;:::-;-1:-1:-1;;;;;35615:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35615:31:0;;;-1:-1:-1;;;;;35615:31:0;;;-1:-1:-1;;35615:31:0;;;;;;;35661:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35661:29:0;;;;;;;;;;;;;35737:43;;;;;;;;;;35763:15;35737:43;;;;;;;;;;35714:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35714:66:0;;;;;;;-1:-1:-1;;;35714:66:0;;;;;;;;;;;;35615:18;36042:11;;35714:20;;36042:11;:::i;:::-;36109:1;36068:24;;;:11;:24;;;;;:29;36020:33;;-1:-1:-1;;;;;;36068:29:0;36064:227;;36132:20;36140:11;32445:4;32479:12;-1:-1:-1;32469:22:0;32388:111;36132:20;36128:152;;;36200:64;;;;;;;;36215:18;;-1:-1:-1;;;;;36200:64:0;;;;;;36235:28;;;;36200:64;;;;;;;;;;-1:-1:-1;36173:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36173:91:0;-1:-1:-1;;;;;;36173:91:0;;;;;;;;;;;;36128:152;36327:7;36323:2;-1:-1:-1;;;;;36308:27:0;36317:4;-1:-1:-1;;;;;36308:27:0;;;;;;;;;;;36346:42;34717:1679;;;34613:1783;;;:::o;32507:104::-;32576:27;32586:2;32590:8;32576:27;;;;;;;;;;;;:9;:27::i;27957:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;28060:16:0;28068:7;32445:4;32479:12;-1:-1:-1;32469:22:0;32388:111;28060:16;28052:71;;;;-1:-1:-1;;;28052:71:0;;17988:2:1;28052:71:0;;;17970:21:1;18027:2;18007:18;;;18000:30;18066:34;18046:18;;;18039:62;-1:-1:-1;;;18117:18:1;;;18110:40;18167:19;;28052:71:0;17786:406:1;28052:71:0;28136:26;28188:12;28177:7;:23;28173:103;;28238:22;28248:12;28238:7;:22;:::i;:::-;:26;;28263:1;28238:26;:::i;:::-;28217:47;;28173:103;28308:7;28288:242;28325:18;28317:4;:26;28288:242;;28368:31;28402:17;;;:11;:17;;;;;;;;;28368:51;;;;;;;;;-1:-1:-1;;;;;28368:51:0;;;;;-1:-1:-1;;;28368:51:0;;;;;;;;;;;;28438:28;28434:85;;28494:9;27957:650;-1:-1:-1;;;;27957:650:0:o;28434:85::-;-1:-1:-1;28345:6:0;;;;:::i;:::-;;;;28288:242;;;-1:-1:-1;28542:57:0;;-1:-1:-1;;;28542:57:0;;18670:2:1;28542:57:0;;;18652:21:1;18709:2;18689:18;;;18682:30;18748:34;18728:18;;;18721:62;-1:-1:-1;;;18799:18:1;;;18792:45;18854:19;;28542:57:0;18468:411:1;5296:191:0;5389:6;;;-1:-1:-1;;;;;5406:17:0;;;-1:-1:-1;;;;;;5406:17:0;;;;;;;5439:40;;5389:6;;;5406:17;5389:6;;5439:40;;5370:16;;5439:40;5359:128;5296:191;:::o;37275:804::-;37430:4;-1:-1:-1;;;;;37451:13:0;;6637:20;6685:8;37447:625;;37487:72;;-1:-1:-1;;;37487:72:0;;-1:-1:-1;;;;;37487:36:0;;;;;:72;;2830:10;;37538:4;;37544:7;;37553:5;;37487:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37487:72:0;;;;;;;;-1:-1:-1;;37487:72:0;;;;;;;;;;;;:::i;:::-;;;37483:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37733:6;:13;37750:1;37733:18;37729:273;;37776:61;;-1:-1:-1;;;37776:61:0;;;;;;;:::i;37729:273::-;37952:6;37946:13;37937:6;37933:2;37929:15;37922:38;37483:534;-1:-1:-1;;;;;;37610:55:0;-1:-1:-1;;;37610:55:0;;-1:-1:-1;37603:62:0;;37447:625;-1:-1:-1;38056:4:0;37447:625;37275:804;;;;;;:::o;312:723::-;368:13;589:5;598:1;589:10;585:53;;-1:-1:-1;;616:10:0;;;;;;;;;;;;-1:-1:-1;;;616:10:0;;;;;312:723::o;585:53::-;663:5;648:12;704:78;711:9;;704:78;;737:8;;;;:::i;:::-;;-1:-1:-1;760:10:0;;-1:-1:-1;768:2:0;760:10;;:::i;:::-;;;704:78;;;792:19;824:6;814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;814:17:0;;792:39;;842:154;849:10;;842:154;;876:11;886:1;876:11;;:::i;:::-;;-1:-1:-1;945:10:0;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:0;;;;;;;;-1:-1:-1;973:11:0;982:2;973:11;;:::i;:::-;;;842:154;;32888:1471;33011:20;33034:12;-1:-1:-1;;;;;33065:16:0;;33057:62;;;;-1:-1:-1;;;33057:62:0;;20351:2:1;33057:62:0;;;20333:21:1;20390:2;20370:18;;;20363:30;20429:34;20409:18;;;20402:62;-1:-1:-1;;;20480:18:1;;;20473:31;20521:19;;33057:62:0;20149:397:1;33057:62:0;33264:21;33272:12;32445:4;32479:12;-1:-1:-1;32469:22:0;32388:111;33264:21;33263:22;33255:64;;;;-1:-1:-1;;;33255:64:0;;20753:2:1;33255:64:0;;;20735:21:1;20792:2;20772:18;;;20765:30;20831:31;20811:18;;;20804:59;20880:18;;33255:64:0;20551:353:1;33255:64:0;33350:12;33338:8;:24;;33330:71;;;;-1:-1:-1;;;33330:71:0;;21111:2:1;33330:71:0;;;21093:21:1;21150:2;21130:18;;;21123:30;21189:34;21169:18;;;21162:62;-1:-1:-1;;;21240:18:1;;;21233:32;21282:19;;33330:71:0;20909:398:1;33330:71:0;33431:1;33420:8;:12;33412:60;;;;-1:-1:-1;;;33412:60:0;;21514:2:1;33412:60:0;;;21496:21:1;21553:2;21533:18;;;21526:30;21592:34;21572:18;;;21565:62;-1:-1:-1;;;21643:18:1;;;21636:33;21686:19;;33412:60:0;21312:399:1;33412:60:0;-1:-1:-1;;;;;33592:16:0;;33559:30;33592:16;;;:12;:16;;;;;;;;;33559:49;;;;;;;;;-1:-1:-1;;;;;33559:49:0;;;;;-1:-1:-1;;;33559:49:0;;;;;;;;;;;33638:135;;;;;;;;33664:19;;33559:49;;33638:135;;;33664:39;;33694:8;;33664:39;:::i;:::-;-1:-1:-1;;;;;33638:135:0;;;;;33753:8;33718:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33638:135:0;;;;;;-1:-1:-1;;;;;33619:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33619:154:0;;;;;;;;;;;;33812:43;;;;;;;;;;;33838:15;33812:43;;;;;;;;33784:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33784:71:0;-1:-1:-1;;;;;;33784:71:0;;;;;;;;;;;;;;;;;;33796:12;;33916:325;33940:8;33936:1;:12;33916:325;;;33975:38;;34000:12;;-1:-1:-1;;;;;33975:38:0;;;33992:1;;33975:38;;33992:1;;33975:38;34054:59;34085:1;34089:2;34093:12;34107:5;34054:22;:59::i;:::-;34028:172;;;;-1:-1:-1;;;34028:172:0;;;;;;;:::i;:::-;34215:14;;;;:::i;:::-;;;;33950:3;;;;;:::i;:::-;;;;33916:325;;;-1:-1:-1;34253:12:0;:27;;;34291:60;31778:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:269::-;1093:3;1131:5;1125:12;1158:6;1153:3;1146:19;1174:63;1230:6;1223:4;1218:3;1214:14;1207:4;1200:5;1196:16;1174:63;:::i;:::-;1291:2;1270:15;-1:-1:-1;;1266:29:1;1257:39;;;;1298:4;1253:50;;1040:269;-1:-1:-1;;1040:269:1:o;1314:231::-;1463:2;1452:9;1445:21;1426:4;1483:56;1535:2;1524:9;1520:18;1512:6;1483:56;:::i;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:160::-;2966:20;;3022:13;;3015:21;3005:32;;2995:60;;3051:1;3048;3041:12;3066:180;3122:6;3175:2;3163:9;3154:7;3150:23;3146:32;3143:52;;;3191:1;3188;3181:12;3143:52;3214:26;3230:9;3214:26;:::i;3251:316::-;3328:6;3336;3344;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;-1:-1:-1;;3436:23:1;;;3506:2;3491:18;;3478:32;;-1:-1:-1;3557:2:1;3542:18;;;3529:32;;3251:316;-1:-1:-1;3251:316:1:o;3572:127::-;3633:10;3628:3;3624:20;3621:1;3614:31;3664:4;3661:1;3654:15;3688:4;3685:1;3678:15;3704:632;3769:5;3799:18;3840:2;3832:6;3829:14;3826:40;;;3846:18;;:::i;:::-;3921:2;3915:9;3889:2;3975:15;;-1:-1:-1;;3971:24:1;;;3997:2;3967:33;3963:42;3951:55;;;4021:18;;;4041:22;;;4018:46;4015:72;;;4067:18;;:::i;:::-;4107:10;4103:2;4096:22;4136:6;4127:15;;4166:6;4158;4151:22;4206:3;4197:6;4192:3;4188:16;4185:25;4182:45;;;4223:1;4220;4213:12;4182:45;4273:6;4268:3;4261:4;4253:6;4249:17;4236:44;4328:1;4321:4;4312:6;4304;4300:19;4296:30;4289:41;;;;3704:632;;;;;:::o;4341:451::-;4410:6;4463:2;4451:9;4442:7;4438:23;4434:32;4431:52;;;4479:1;4476;4469:12;4431:52;4519:9;4506:23;4552:18;4544:6;4541:30;4538:50;;;4584:1;4581;4574:12;4538:50;4607:22;;4660:4;4652:13;;4648:27;-1:-1:-1;4638:55:1;;4689:1;4686;4679:12;4638:55;4712:74;4778:7;4773:2;4760:16;4755:2;4751;4747:11;4712:74;:::i;4797:254::-;4862:6;4870;4923:2;4911:9;4902:7;4898:23;4894:32;4891:52;;;4939:1;4936;4929:12;4891:52;4962:29;4981:9;4962:29;:::i;:::-;4952:39;;5010:35;5041:2;5030:9;5026:18;5010:35;:::i;:::-;5000:45;;4797:254;;;;;:::o;5056:667::-;5151:6;5159;5167;5175;5228:3;5216:9;5207:7;5203:23;5199:33;5196:53;;;5245:1;5242;5235:12;5196:53;5268:29;5287:9;5268:29;:::i;:::-;5258:39;;5316:38;5350:2;5339:9;5335:18;5316:38;:::i;:::-;5306:48;;5401:2;5390:9;5386:18;5373:32;5363:42;;5456:2;5445:9;5441:18;5428:32;5483:18;5475:6;5472:30;5469:50;;;5515:1;5512;5505:12;5469:50;5538:22;;5591:4;5583:13;;5579:27;-1:-1:-1;5569:55:1;;5620:1;5617;5610:12;5569:55;5643:74;5709:7;5704:2;5691:16;5686:2;5682;5678:11;5643:74;:::i;:::-;5633:84;;;5056:667;;;;;;;:::o;5728:260::-;5796:6;5804;5857:2;5845:9;5836:7;5832:23;5828:32;5825:52;;;5873:1;5870;5863:12;5825:52;5896:29;5915:9;5896:29;:::i;:::-;5886:39;;5944:38;5978:2;5967:9;5963:18;5944:38;:::i;5993:356::-;6195:2;6177:21;;;6214:18;;;6207:30;6273:34;6268:2;6253:18;;6246:62;6340:2;6325:18;;5993:356::o;6354:380::-;6433:1;6429:12;;;;6476;;;6497:61;;6551:4;6543:6;6539:17;6529:27;;6497:61;6604:2;6596:6;6593:14;6573:18;6570:38;6567:161;;6650:10;6645:3;6641:20;6638:1;6631:31;6685:4;6682:1;6675:15;6713:4;6710:1;6703:15;6567:161;;6354:380;;;:::o;7982:127::-;8043:10;8038:3;8034:20;8031:1;8024:31;8074:4;8071:1;8064:15;8098:4;8095:1;8088:15;8114:128;8154:3;8185:1;8181:6;8178:1;8175:13;8172:39;;;8191:18;;:::i;:::-;-1:-1:-1;8227:9:1;;8114:128::o;8247:344::-;8449:2;8431:21;;;8488:2;8468:18;;;8461:30;-1:-1:-1;;;8522:2:1;8507:18;;8500:50;8582:2;8567:18;;8247:344::o;8999:135::-;9038:3;9059:17;;;9056:43;;9079:18;;:::i;:::-;-1:-1:-1;9126:1:1;9115:13;;8999:135::o;9554:401::-;9756:2;9738:21;;;9795:2;9775:18;;;9768:30;9834:34;9829:2;9814:18;;9807:62;-1:-1:-1;;;9900:2:1;9885:18;;9878:35;9945:3;9930:19;;9554:401::o;13043:168::-;13083:7;13149:1;13145;13141:6;13137:14;13134:1;13131:21;13126:1;13119:9;13112:17;13108:45;13105:71;;;13156:18;;:::i;:::-;-1:-1:-1;13196:9:1;;13043:168::o;13571:415::-;13773:2;13755:21;;;13812:2;13792:18;;;13785:30;13851:34;13846:2;13831:18;;13824:62;-1:-1:-1;;;13917:2:1;13902:18;;13895:49;13976:3;13961:19;;13571:415::o;14533:185::-;14575:3;14613:5;14607:12;14628:52;14673:6;14668:3;14661:4;14654:5;14650:16;14628:52;:::i;:::-;14696:16;;;;;14533:185;-1:-1:-1;;14533:185:1:o;14841:1301::-;15118:3;15147:1;15180:6;15174:13;15210:3;15232:1;15260:9;15256:2;15252:18;15242:28;;15320:2;15309:9;15305:18;15342;15332:61;;15386:4;15378:6;15374:17;15364:27;;15332:61;15412:2;15460;15452:6;15449:14;15429:18;15426:38;15423:165;;-1:-1:-1;;;15487:33:1;;15543:4;15540:1;15533:15;15573:4;15494:3;15561:17;15423:165;15604:18;15631:104;;;;15749:1;15744:320;;;;15597:467;;15631:104;-1:-1:-1;;15664:24:1;;15652:37;;15709:16;;;;-1:-1:-1;15631:104:1;;15744:320;14480:1;14473:14;;;14517:4;14504:18;;15839:1;15853:165;15867:6;15864:1;15861:13;15853:165;;;15945:14;;15932:11;;;15925:35;15988:16;;;;15882:10;;15853:165;;;15857:3;;16047:6;16042:3;16038:16;16031:23;;15597:467;;;;;;;16080:56;16105:30;16131:3;16123:6;16105:30;:::i;:::-;-1:-1:-1;;;14783:20:1;;14828:1;14819:11;;14723:113;16080:56;16073:63;14841:1301;-1:-1:-1;;;;;14841:1301:1:o;18197:125::-;18237:4;18265:1;18262;18259:8;18256:34;;;18270:18;;:::i;:::-;-1:-1:-1;18307:9:1;;18197:125::o;18327:136::-;18366:3;18394:5;18384:39;;18403:18;;:::i;:::-;-1:-1:-1;;;18439:18:1;;18327:136::o;18884:500::-;-1:-1:-1;;;;;19153:15:1;;;19135:34;;19205:15;;19200:2;19185:18;;19178:43;19252:2;19237:18;;19230:34;;;19300:3;19295:2;19280:18;;19273:31;;;19078:4;;19321:57;;19358:19;;19350:6;19321:57;:::i;:::-;19313:65;18884:500;-1:-1:-1;;;;;;18884:500:1:o;19389:249::-;19458:6;19511:2;19499:9;19490:7;19486:23;19482:32;19479:52;;;19527:1;19524;19517:12;19479:52;19559:9;19553:16;19578:30;19602:5;19578:30;:::i;19643:127::-;19704:10;19699:3;19695:20;19692:1;19685:31;19735:4;19732:1;19725:15;19759:4;19756:1;19749:15;19775:120;19815:1;19841;19831:35;;19846:18;;:::i;:::-;-1:-1:-1;19880:9:1;;19775:120::o;19900:112::-;19932:1;19958;19948:35;;19963:18;;:::i;:::-;-1:-1:-1;19997:9:1;;19900:112::o;20017:127::-;20078:10;20073:3;20069:20;20066:1;20059:31;20109:4;20106:1;20099:15;20133:4;20130:1;20123:15;21716:253;21756:3;-1:-1:-1;;;;;21845:2:1;21842:1;21838:10;21875:2;21872:1;21868:10;21906:3;21902:2;21898:12;21893:3;21890:21;21887:47;;;21914:18;;:::i;:::-;21950:13;;21716:253;-1:-1:-1;;;;21716:253:1:o

Swarm Source

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