ETH Price: $3,472.05 (+1.55%)
Gas: 12 Gwei

Token

PlatyPals (PP)
 

Overview

Max Total Supply

696 PP

Holders

225

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PP
0xbb0173c0e8d5919e0a6a4066a1c506b16748e2d1
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:
PlatyPals

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.4;


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


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


/**
 * @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)


/**
 * @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)


/**
 * @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)


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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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

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


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



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

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

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

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


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


/**
 * @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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)


/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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


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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs










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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

// File: contracts/platypal.sol



contract PlatyPals is Ownable, ERC721A, ReentrancyGuard {

  uint256 public MAX_TRANSACTION = 20;
  uint256 public MAX_SUPPLY = 10000;
  uint256 public MAX_MINTTO = 10;
  uint256 public reserves;
  
  uint256 public Price = 0.01 ether;

  bool saleActive = false;

  address[] payees = [
	0xC3b615216362aA20384D74B0dEB082c9a6f1ec20,
	0x8d9267C5b9fbDb4AE25E0CC6C1F1314924a50cAA,
	0x30EBED83cedC319b0f7340676675ac8a399bF307,
	0x1de5A79a5E400306B103eb952Dc2D48AB66ec332,
	0xA0BfFBF77957bf2b99101ff014F7c4DB9C5ce20D,
	0x09A31e9eA6490991995d4EceC3C5748B993064fd,
	0xd6D0e0F6155cC645B3Cae81CC423022904eE2b9B,
	0xbb2F64A6559Fc5b18FaBB4438b1E0ed89f8aBA29
  ];

  uint[] owed = [15, 15, 10, 10, 10, 10, 10, 20];

  constructor() ERC721A("PlatyPals", "PP") { }

  function publicMint(uint256 quantity) external payable {
    require(saleActive, "Sale not started");
    require(tx.origin == msg.sender, "No proxy calls");
    require(quantity <= MAX_TRANSACTION, "Order exceeds transaction limit");
    require(totalSupply() + quantity <= MAX_SUPPLY, "Order exceeds max supply");

    require(msg.value >= Price * quantity, "Insufficient ETH sent");
	
    _safeMint(msg.sender, quantity);
  }

  // // metadata URI
  string private _baseTokenURI;

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

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
  
  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
    return ownershipOf(tokenId);
  }

  // Only Owner
  
  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function mintTo(address _receiver, uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= MAX_SUPPLY, "Order exceeds max supply");
	require(quantity + reserves <= MAX_MINTTO, "Exceeds reserves");

	reserves += quantity;
    _safeMint(_receiver, quantity);
  }

  function flipSaleState() external onlyOwner {
    saleActive = !saleActive;
  }
  
  function reduceSupply(uint _newMax) external onlyOwner {
    require(_newMax < MAX_SUPPLY && _newMax > totalSupply(), "Invalid Supply");
    MAX_SUPPLY = _newMax;
  }

  function sendPayments() payable external onlyOwner nonReentrant {
    uint startingBal = address(this).balance;
    uint balanceDue;

    for(uint i=0; i < payees.length; i++) {
      balanceDue = startingBal * owed[i] / 100;
      (bool success, ) = payable(payees[i]).call{value: balanceDue}("");
      require(success, "Transfer failed.");
    }
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTTO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserves","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendPayments","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6014600a908155612710600b55600c55662386f26fc10000600e55600f805460ff1916905561018060405273c3b615216362aa20384d74b0deb082c9a6f1ec206080908152738d9267c5b9fbdb4ae25e0cc6c1f1314924a50caa60a0527330ebed83cedc319b0f7340676675ac8a399bf30760c052731de5a79a5e400306b103eb952dc2d48ab66ec33260e05273a0bffbf77957bf2b99101ff014f7c4db9c5ce20d610100527309a31e9ea6490991995d4ecec3c5748b993064fd6101205273d6d0e0f6155cc645b3cae81cc423022904ee2b9b6101405273bb2f64a6559fc5b18fabb4438b1e0ed89f8aba2961016052620001009060109060086200024a565b506040805161010081018252600f8082526020820152600a918101829052606081018290526080810182905260a0810182905260c0810191909152601460e082015262000152906011906008620002b4565b503480156200016057600080fd5b5060405180604001604052806009815260200168506c61747950616c7360b81b81525060405180604001604052806002815260200161050560f41b815250620001b8620001b2620001f660201b60201c565b620001fa565b8151620001cd906003906020850190620002f7565b508051620001e3906004906020840190620002f7565b50506000600190815560095550620003c8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620002a2579160200282015b82811115620002a257825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200026b565b50620002b092915062000374565b5090565b828054828255906000526020600020908101928215620002a2579160200282015b82811115620002a2578251829060ff16905591602001919060010190620002d5565b82805462000305906200038b565b90600052602060002090601f016020900481019282620003295760008555620002a2565b82601f106200034457805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a257825182559160200191906001019062000357565b5b80821115620002b0576000815560010162000375565b600181811c90821680620003a057607f821691505b60208210811415620003c257634e487b7160e01b600052602260045260246000fd5b50919050565b611efe80620003d86000396000f3fe6080604052600436106101cd5760003560e01c806369ad6765116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610507578063dc33e68114610527578063e985e9c514610547578063f2fde38b1461059057600080fd5b806395d89b411461049c5780639dfde201146104b1578063a22cb465146104c7578063b88d4fde146104e757600080fd5b806375172a8b116100d157806375172a8b146103f157806380623444146104075780638da5cb5b146104275780639231ab2a1461044557600080fd5b806369ad6765146103b457806370a08231146103bc578063715018a6146103dc57600080fd5b80632db115441161016f57806342842e0e1161013e57806342842e0e14610334578063449a52f81461035457806355f804b3146103745780636352211e1461039457600080fd5b80632db11544146102e057806332cb6b0c146102f357806334918dfd14610309578063365487321461031e57600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780631451dd431461028357806318160ddd146102a757806323b872dd146102c057600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bd3565b6105b0565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610602565b6040516101fe9190611d2f565b34801561023557600080fd5b50610249610244366004611c7f565b610694565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ba9565b6106d8565b005b34801561028f57600080fd5b50610299600a5481565b6040519081526020016101fe565b3480156102b357600080fd5b5060025460015403610299565b3480156102cc57600080fd5b506102816102db366004611a55565b610766565b6102816102ee366004611c7f565b610771565b3480156102ff57600080fd5b50610299600b5481565b34801561031557600080fd5b5061028161093c565b34801561032a57600080fd5b50610299600c5481565b34801561034057600080fd5b5061028161034f366004611a55565b610998565b34801561036057600080fd5b5061028161036f366004611ba9565b6109b3565b34801561038057600080fd5b5061028161038f366004611c0d565b610ae8565b3480156103a057600080fd5b506102496103af366004611c7f565b610b3c565b610281610b4e565b3480156103c857600080fd5b506102996103d7366004611a07565b610d10565b3480156103e857600080fd5b50610281610d5f565b3480156103fd57600080fd5b50610299600d5481565b34801561041357600080fd5b50610281610422366004611c7f565b610db3565b34801561043357600080fd5b506000546001600160a01b0316610249565b34801561045157600080fd5b50610465610460366004611c7f565b610e62565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff1690820152918101511515908201526060016101fe565b3480156104a857600080fd5b5061021c610e88565b3480156104bd57600080fd5b50610299600e5481565b3480156104d357600080fd5b506102816104e2366004611b6d565b610e97565b3480156104f357600080fd5b50610281610502366004611a91565b610f2d565b34801561051357600080fd5b5061021c610522366004611c7f565b610f7e565b34801561053357600080fd5b50610299610542366004611a07565b611003565b34801561055357600080fd5b506101f2610562366004611a22565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b506102816105ab366004611a07565b61100e565b60006001600160e01b031982166380ac58cd60e01b14806105e157506001600160e01b03198216635b5e139f60e01b145b806105fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461061190611dd0565b80601f016020809104026020016040519081016040528092919081815260200182805461063d90611dd0565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b5050505050905090565b600061069f826110c4565b6106bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106e382610b3c565b9050806001600160a01b0316836001600160a01b031614156107185760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073857506107368133610562565b155b15610756576040516367d9dca160e11b815260040160405180910390fd5b6107618383836110f0565b505050565b610761838383611159565b600f5460ff166107c85760405162461bcd60e51b815260206004820152601060248201527f53616c65206e6f7420737461727465640000000000000000000000000000000060448201526064015b60405180910390fd5b3233146108175760405162461bcd60e51b815260206004820152600e60248201527f4e6f2070726f78792063616c6c7300000000000000000000000000000000000060448201526064016107bf565b600a548111156108695760405162461bcd60e51b815260206004820152601f60248201527f4f726465722065786365656473207472616e73616374696f6e206c696d69740060448201526064016107bf565b600b548161087a6002546001540390565b6108849190611d42565b11156108d25760405162461bcd60e51b815260206004820152601860248201527f4f726465722065786365656473206d617820737570706c79000000000000000060448201526064016107bf565b80600e546108e09190611d6e565b34101561092f5760405162461bcd60e51b815260206004820152601560248201527f496e73756666696369656e74204554482073656e74000000000000000000000060448201526064016107bf565b610939338261136f565b50565b6000546001600160a01b031633146109845760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b600f805460ff19811660ff90911615179055565b61076183838360405180602001604052806000815250610f2d565b6000546001600160a01b031633146109fb5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b600b5481610a0c6002546001540390565b610a169190611d42565b1115610a645760405162461bcd60e51b815260206004820152601860248201527f4f726465722065786365656473206d617820737570706c79000000000000000060448201526064016107bf565b600c54600d54610a749083611d42565b1115610ac25760405162461bcd60e51b815260206004820152601060248201527f457863656564732072657365727665730000000000000000000000000000000060448201526064016107bf565b80600d6000828254610ad49190611d42565b90915550610ae49050828261136f565b5050565b6000546001600160a01b03163314610b305760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b61076160128383611952565b6000610b4782611389565b5192915050565b6000546001600160a01b03163314610b965760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b60026009541415610be95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107bf565b6002600955476000805b601054811015610d0657606460118281548110610c1257610c12611e66565b906000526020600020015484610c289190611d6e565b610c329190611d5a565b9150600060108281548110610c4957610c49611e66565b60009182526020822001546040516001600160a01b039091169185919081818185875af1925050503d8060008114610c9d576040519150601f19603f3d011682016040523d82523d6000602084013e610ca2565b606091505b5050905080610cf35760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016107bf565b5080610cfe81611e0b565b915050610bf3565b5050600160095550565b60006001600160a01b038216610d39576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610da75760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b610db160006114a5565b565b6000546001600160a01b03163314610dfb5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b600b5481108015610e1157506002546001540381115b610e5d5760405162461bcd60e51b815260206004820152600e60248201527f496e76616c696420537570706c7900000000000000000000000000000000000060448201526064016107bf565b600b55565b60408051606081018252600080825260208201819052918101919091526105fc82611389565b60606004805461061190611dd0565b6001600160a01b038216331415610ec15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f38848484611159565b6001600160a01b0383163b15158015610f5a5750610f5884848484611502565b155b15610f78576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f89826110c4565b610fa657604051630a14c4b560e41b815260040160405180910390fd5b6000610fb06115fa565b9050805160001415610fd15760405180602001604052806000815250610ffc565b80610fdb84611609565b604051602001610fec929190611cc4565b6040516020818303038152906040525b9392505050565b60006105fc8261171f565b6000546001600160a01b031633146110565760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b6001600160a01b0381166110bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bf565b610939816114a5565b6000600154821080156105fc575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061116482611389565b80519091506000906001600160a01b0316336001600160a01b03161480611192575081516111929033610562565b806111ad5750336111a284610694565b6001600160a01b0316145b9050806111cd57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112025760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661122957604051633a954ecd60e21b815260040160405180910390fd5b61123960008484600001516110f0565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661132557600154811015611325578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610ae482826040518060200160405280600081525061177a565b60408051606081018252600080825260208201819052918101919091528160015481101561148c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061148a5780516001600160a01b031615611420579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611485579392505050565b611420565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611537903390899088908890600401611cf3565b602060405180830381600087803b15801561155157600080fd5b505af1925050508015611581575060408051601f3d908101601f1916820190925261157e91810190611bf0565b60015b6115dc573d8080156115af576040519150601f19603f3d011682016040523d82523d6000602084013e6115b4565b606091505b5080516115d4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606012805461061190611dd0565b60608161162d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611657578061164181611e0b565b91506116509050600a83611d5a565b9150611631565b60008167ffffffffffffffff81111561167257611672611e7c565b6040519080825280601f01601f19166020018201604052801561169c576020820181803683370190505b5090505b84156115f2576116b1600183611d8d565b91506116be600a86611e26565b6116c9906030611d42565b60f81b8183815181106116de576116de611e66565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611718600a86611d5a565b94506116a0565b60006001600160a01b038216611748576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205468010000000000000000900467ffffffffffffffff1690565b610761838383600180546001600160a01b0385166117aa57604051622e076360e81b815260040160405180910390fd5b836117c85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561187a57506001600160a01b0387163b15155b15611903575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118cb6000888480600101955088611502565b6118e8576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118805782600154146118fe57600080fd5b611949565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611904575b50600155611368565b82805461195e90611dd0565b90600052602060002090601f01602090048101928261198057600085556119c6565b82601f106119995782800160ff198235161785556119c6565b828001600101855582156119c6579182015b828111156119c65782358255916020019190600101906119ab565b506119d29291506119d6565b5090565b5b808211156119d257600081556001016119d7565b80356001600160a01b0381168114611a0257600080fd5b919050565b600060208284031215611a1957600080fd5b610ffc826119eb565b60008060408385031215611a3557600080fd5b611a3e836119eb565b9150611a4c602084016119eb565b90509250929050565b600080600060608486031215611a6a57600080fd5b611a73846119eb565b9250611a81602085016119eb565b9150604084013590509250925092565b60008060008060808587031215611aa757600080fd5b611ab0856119eb565b9350611abe602086016119eb565b925060408501359150606085013567ffffffffffffffff80821115611ae257600080fd5b818701915087601f830112611af657600080fd5b813581811115611b0857611b08611e7c565b604051601f8201601f19908116603f01168101908382118183101715611b3057611b30611e7c565b816040528281528a6020848701011115611b4957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b8057600080fd5b611b89836119eb565b915060208301358015158114611b9e57600080fd5b809150509250929050565b60008060408385031215611bbc57600080fd5b611bc5836119eb565b946020939093013593505050565b600060208284031215611be557600080fd5b8135610ffc81611e92565b600060208284031215611c0257600080fd5b8151610ffc81611e92565b60008060208385031215611c2057600080fd5b823567ffffffffffffffff80821115611c3857600080fd5b818501915085601f830112611c4c57600080fd5b813581811115611c5b57600080fd5b866020828501011115611c6d57600080fd5b60209290920196919550909350505050565b600060208284031215611c9157600080fd5b5035919050565b60008151808452611cb0816020860160208601611da4565b601f01601f19169290920160200192915050565b60008351611cd6818460208801611da4565b835190830190611cea818360208801611da4565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d256080830184611c98565b9695505050505050565b602081526000610ffc6020830184611c98565b60008219821115611d5557611d55611e3a565b500190565b600082611d6957611d69611e50565b500490565b6000816000190483118215151615611d8857611d88611e3a565b500290565b600082821015611d9f57611d9f611e3a565b500390565b60005b83811015611dbf578181015183820152602001611da7565b83811115610f785750506000910152565b600181811c90821680611de457607f821691505b60208210811415611e0557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e1f57611e1f611e3a565b5060010190565b600082611e3557611e35611e50565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461093957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220709d3143b361b11a01aa078426a0269145e022a0729feaa9b10815c3e96a93f464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806369ad6765116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610507578063dc33e68114610527578063e985e9c514610547578063f2fde38b1461059057600080fd5b806395d89b411461049c5780639dfde201146104b1578063a22cb465146104c7578063b88d4fde146104e757600080fd5b806375172a8b116100d157806375172a8b146103f157806380623444146104075780638da5cb5b146104275780639231ab2a1461044557600080fd5b806369ad6765146103b457806370a08231146103bc578063715018a6146103dc57600080fd5b80632db115441161016f57806342842e0e1161013e57806342842e0e14610334578063449a52f81461035457806355f804b3146103745780636352211e1461039457600080fd5b80632db11544146102e057806332cb6b0c146102f357806334918dfd14610309578063365487321461031e57600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780631451dd431461028357806318160ddd146102a757806323b872dd146102c057600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bd3565b6105b0565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610602565b6040516101fe9190611d2f565b34801561023557600080fd5b50610249610244366004611c7f565b610694565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ba9565b6106d8565b005b34801561028f57600080fd5b50610299600a5481565b6040519081526020016101fe565b3480156102b357600080fd5b5060025460015403610299565b3480156102cc57600080fd5b506102816102db366004611a55565b610766565b6102816102ee366004611c7f565b610771565b3480156102ff57600080fd5b50610299600b5481565b34801561031557600080fd5b5061028161093c565b34801561032a57600080fd5b50610299600c5481565b34801561034057600080fd5b5061028161034f366004611a55565b610998565b34801561036057600080fd5b5061028161036f366004611ba9565b6109b3565b34801561038057600080fd5b5061028161038f366004611c0d565b610ae8565b3480156103a057600080fd5b506102496103af366004611c7f565b610b3c565b610281610b4e565b3480156103c857600080fd5b506102996103d7366004611a07565b610d10565b3480156103e857600080fd5b50610281610d5f565b3480156103fd57600080fd5b50610299600d5481565b34801561041357600080fd5b50610281610422366004611c7f565b610db3565b34801561043357600080fd5b506000546001600160a01b0316610249565b34801561045157600080fd5b50610465610460366004611c7f565b610e62565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff1690820152918101511515908201526060016101fe565b3480156104a857600080fd5b5061021c610e88565b3480156104bd57600080fd5b50610299600e5481565b3480156104d357600080fd5b506102816104e2366004611b6d565b610e97565b3480156104f357600080fd5b50610281610502366004611a91565b610f2d565b34801561051357600080fd5b5061021c610522366004611c7f565b610f7e565b34801561053357600080fd5b50610299610542366004611a07565b611003565b34801561055357600080fd5b506101f2610562366004611a22565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b506102816105ab366004611a07565b61100e565b60006001600160e01b031982166380ac58cd60e01b14806105e157506001600160e01b03198216635b5e139f60e01b145b806105fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461061190611dd0565b80601f016020809104026020016040519081016040528092919081815260200182805461063d90611dd0565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b5050505050905090565b600061069f826110c4565b6106bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106e382610b3c565b9050806001600160a01b0316836001600160a01b031614156107185760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073857506107368133610562565b155b15610756576040516367d9dca160e11b815260040160405180910390fd5b6107618383836110f0565b505050565b610761838383611159565b600f5460ff166107c85760405162461bcd60e51b815260206004820152601060248201527f53616c65206e6f7420737461727465640000000000000000000000000000000060448201526064015b60405180910390fd5b3233146108175760405162461bcd60e51b815260206004820152600e60248201527f4e6f2070726f78792063616c6c7300000000000000000000000000000000000060448201526064016107bf565b600a548111156108695760405162461bcd60e51b815260206004820152601f60248201527f4f726465722065786365656473207472616e73616374696f6e206c696d69740060448201526064016107bf565b600b548161087a6002546001540390565b6108849190611d42565b11156108d25760405162461bcd60e51b815260206004820152601860248201527f4f726465722065786365656473206d617820737570706c79000000000000000060448201526064016107bf565b80600e546108e09190611d6e565b34101561092f5760405162461bcd60e51b815260206004820152601560248201527f496e73756666696369656e74204554482073656e74000000000000000000000060448201526064016107bf565b610939338261136f565b50565b6000546001600160a01b031633146109845760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b600f805460ff19811660ff90911615179055565b61076183838360405180602001604052806000815250610f2d565b6000546001600160a01b031633146109fb5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b600b5481610a0c6002546001540390565b610a169190611d42565b1115610a645760405162461bcd60e51b815260206004820152601860248201527f4f726465722065786365656473206d617820737570706c79000000000000000060448201526064016107bf565b600c54600d54610a749083611d42565b1115610ac25760405162461bcd60e51b815260206004820152601060248201527f457863656564732072657365727665730000000000000000000000000000000060448201526064016107bf565b80600d6000828254610ad49190611d42565b90915550610ae49050828261136f565b5050565b6000546001600160a01b03163314610b305760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b61076160128383611952565b6000610b4782611389565b5192915050565b6000546001600160a01b03163314610b965760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b60026009541415610be95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107bf565b6002600955476000805b601054811015610d0657606460118281548110610c1257610c12611e66565b906000526020600020015484610c289190611d6e565b610c329190611d5a565b9150600060108281548110610c4957610c49611e66565b60009182526020822001546040516001600160a01b039091169185919081818185875af1925050503d8060008114610c9d576040519150601f19603f3d011682016040523d82523d6000602084013e610ca2565b606091505b5050905080610cf35760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016107bf565b5080610cfe81611e0b565b915050610bf3565b5050600160095550565b60006001600160a01b038216610d39576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610da75760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b610db160006114a5565b565b6000546001600160a01b03163314610dfb5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b600b5481108015610e1157506002546001540381115b610e5d5760405162461bcd60e51b815260206004820152600e60248201527f496e76616c696420537570706c7900000000000000000000000000000000000060448201526064016107bf565b600b55565b60408051606081018252600080825260208201819052918101919091526105fc82611389565b60606004805461061190611dd0565b6001600160a01b038216331415610ec15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f38848484611159565b6001600160a01b0383163b15158015610f5a5750610f5884848484611502565b155b15610f78576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f89826110c4565b610fa657604051630a14c4b560e41b815260040160405180910390fd5b6000610fb06115fa565b9050805160001415610fd15760405180602001604052806000815250610ffc565b80610fdb84611609565b604051602001610fec929190611cc4565b6040516020818303038152906040525b9392505050565b60006105fc8261171f565b6000546001600160a01b031633146110565760405162461bcd60e51b81526020600482018190526024820152600080516020611ea983398151915260448201526064016107bf565b6001600160a01b0381166110bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bf565b610939816114a5565b6000600154821080156105fc575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061116482611389565b80519091506000906001600160a01b0316336001600160a01b03161480611192575081516111929033610562565b806111ad5750336111a284610694565b6001600160a01b0316145b9050806111cd57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112025760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661122957604051633a954ecd60e21b815260040160405180910390fd5b61123960008484600001516110f0565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661132557600154811015611325578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610ae482826040518060200160405280600081525061177a565b60408051606081018252600080825260208201819052918101919091528160015481101561148c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061148a5780516001600160a01b031615611420579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611485579392505050565b611420565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611537903390899088908890600401611cf3565b602060405180830381600087803b15801561155157600080fd5b505af1925050508015611581575060408051601f3d908101601f1916820190925261157e91810190611bf0565b60015b6115dc573d8080156115af576040519150601f19603f3d011682016040523d82523d6000602084013e6115b4565b606091505b5080516115d4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606012805461061190611dd0565b60608161162d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611657578061164181611e0b565b91506116509050600a83611d5a565b9150611631565b60008167ffffffffffffffff81111561167257611672611e7c565b6040519080825280601f01601f19166020018201604052801561169c576020820181803683370190505b5090505b84156115f2576116b1600183611d8d565b91506116be600a86611e26565b6116c9906030611d42565b60f81b8183815181106116de576116de611e66565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611718600a86611d5a565b94506116a0565b60006001600160a01b038216611748576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205468010000000000000000900467ffffffffffffffff1690565b610761838383600180546001600160a01b0385166117aa57604051622e076360e81b815260040160405180910390fd5b836117c85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561187a57506001600160a01b0387163b15155b15611903575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118cb6000888480600101955088611502565b6118e8576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118805782600154146118fe57600080fd5b611949565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611904575b50600155611368565b82805461195e90611dd0565b90600052602060002090601f01602090048101928261198057600085556119c6565b82601f106119995782800160ff198235161785556119c6565b828001600101855582156119c6579182015b828111156119c65782358255916020019190600101906119ab565b506119d29291506119d6565b5090565b5b808211156119d257600081556001016119d7565b80356001600160a01b0381168114611a0257600080fd5b919050565b600060208284031215611a1957600080fd5b610ffc826119eb565b60008060408385031215611a3557600080fd5b611a3e836119eb565b9150611a4c602084016119eb565b90509250929050565b600080600060608486031215611a6a57600080fd5b611a73846119eb565b9250611a81602085016119eb565b9150604084013590509250925092565b60008060008060808587031215611aa757600080fd5b611ab0856119eb565b9350611abe602086016119eb565b925060408501359150606085013567ffffffffffffffff80821115611ae257600080fd5b818701915087601f830112611af657600080fd5b813581811115611b0857611b08611e7c565b604051601f8201601f19908116603f01168101908382118183101715611b3057611b30611e7c565b816040528281528a6020848701011115611b4957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b8057600080fd5b611b89836119eb565b915060208301358015158114611b9e57600080fd5b809150509250929050565b60008060408385031215611bbc57600080fd5b611bc5836119eb565b946020939093013593505050565b600060208284031215611be557600080fd5b8135610ffc81611e92565b600060208284031215611c0257600080fd5b8151610ffc81611e92565b60008060208385031215611c2057600080fd5b823567ffffffffffffffff80821115611c3857600080fd5b818501915085601f830112611c4c57600080fd5b813581811115611c5b57600080fd5b866020828501011115611c6d57600080fd5b60209290920196919550909350505050565b600060208284031215611c9157600080fd5b5035919050565b60008151808452611cb0816020860160208601611da4565b601f01601f19169290920160200192915050565b60008351611cd6818460208801611da4565b835190830190611cea818360208801611da4565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d256080830184611c98565b9695505050505050565b602081526000610ffc6020830184611c98565b60008219821115611d5557611d55611e3a565b500190565b600082611d6957611d69611e50565b500490565b6000816000190483118215151615611d8857611d88611e3a565b500290565b600082821015611d9f57611d9f611e3a565b500390565b60005b83811015611dbf578181015183820152602001611da7565b83811115610f785750506000910152565b600181811c90821680611de457607f821691505b60208210811415611e0557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e1f57611e1f611e3a565b5060010190565b600082611e3557611e35611e50565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461093957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220709d3143b361b11a01aa078426a0269145e022a0729feaa9b10815c3e96a93f464736f6c63430008070033

Deployed Bytecode Sourcemap

48275:2696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28274:305;;;;;;;;;;-1:-1:-1;28274:305:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;28274:305:0;;;;;;;;31659:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33162:204::-;;;;;;;;;;-1:-1:-1;33162:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5155:55:1;;;5137:74;;5125:2;5110:18;33162:204:0;4991:226:1;32725:371:0;;;;;;;;;;-1:-1:-1;32725:371:0;;;;;:::i;:::-;;:::i;:::-;;48338:35;;;;;;;;;;;;;;;;;;;10679:25:1;;;10667:2;10652:18;48338:35:0;10533:177:1;27523:303:0;;;;;;;;;;-1:-1:-1;27777:12:0;;27761:13;;:28;27523:303;;34019:170;;;;;;;;;;-1:-1:-1;34019:170:0;;;;;:::i;:::-;;:::i;49055:437::-;;;;;;:::i;:::-;;:::i;48378:33::-;;;;;;;;;;;;;;;;50341:81;;;;;;;;;;;;;:::i;48416:30::-;;;;;;;;;;;;;;;;34260:185;;;;;;;;;;-1:-1:-1;34260:185:0;;;;;:::i;:::-;;:::i;50046:289::-;;;;;;;;;;-1:-1:-1;50046:289:0;;;;;:::i;:::-;;:::i;49940:100::-;;;;;;;;;;-1:-1:-1;49940:100:0;;;;;:::i;:::-;;:::i;31468:124::-;;;;;;;;;;-1:-1:-1;31468:124:0;;;;;:::i;:::-;;:::i;50605:361::-;;;:::i;28643:206::-;;;;;;;;;;-1:-1:-1;28643:206:0;;;;;:::i;:::-;;:::i;47419:103::-;;;;;;;;;;;;;:::i;48451:23::-;;;;;;;;;;;;;;;;50430:169;;;;;;;;;;-1:-1:-1;50430:169:0;;;;;:::i;:::-;;:::i;46768:87::-;;;;;;;;;;-1:-1:-1;46814:7:0;46841:6;-1:-1:-1;;;;;46841:6:0;46768:87;;49784:129;;;;;;;;;;-1:-1:-1;49784:129:0;;;;;:::i;:::-;;:::i;:::-;;;;10296:13:1;;-1:-1:-1;;;;;10292:62:1;10274:81;;10415:4;10403:17;;;10397:24;10423:18;10393:49;10371:20;;;10364:79;10501:17;;;10495:24;10488:32;10481:40;10459:20;;;10452:70;10262:2;10247:18;49784:129:0;10066:462:1;31828:104:0;;;;;;;;;;;;;:::i;48483:33::-;;;;;;;;;;;;;;;;33438:279;;;;;;;;;;-1:-1:-1;33438:279:0;;;;;:::i;:::-;;:::i;34516:369::-;;;;;;;;;;-1:-1:-1;34516:369:0;;;;;:::i;:::-;;:::i;32003:318::-;;;;;;;;;;-1:-1:-1;32003:318:0;;;;;:::i;:::-;;:::i;49669:107::-;;;;;;;;;;-1:-1:-1;49669:107:0;;;;;:::i;:::-;;:::i;33788:164::-;;;;;;;;;;-1:-1:-1;33788:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33909:25:0;;;33885:4;33909:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33788:164;47677:201;;;;;;;;;;-1:-1:-1;47677:201:0;;;;;:::i;:::-;;:::i;28274:305::-;28376:4;-1:-1:-1;;;;;;28413:40:0;;-1:-1:-1;;;28413:40:0;;:105;;-1:-1:-1;;;;;;;28470:48:0;;-1:-1:-1;;;28470:48:0;28413:105;:158;;;-1:-1:-1;;;;;;;;;;11385:40:0;;;28535:36;28393:178;28274:305;-1:-1:-1;;28274:305:0:o;31659:100::-;31713:13;31746:5;31739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31659:100;:::o;33162:204::-;33230:7;33255:16;33263:7;33255;:16::i;:::-;33250:64;;33280:34;;-1:-1:-1;;;33280:34:0;;;;;;;;;;;33250:64;-1:-1:-1;33334:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33334:24:0;;33162:204::o;32725:371::-;32798:13;32814:24;32830:7;32814:15;:24::i;:::-;32798:40;;32859:5;-1:-1:-1;;;;;32853:11:0;:2;-1:-1:-1;;;;;32853:11:0;;32849:48;;;32873:24;;-1:-1:-1;;;32873:24:0;;;;;;;;;;;32849:48;23683:10;-1:-1:-1;;;;;32914:21:0;;;;;;:63;;-1:-1:-1;32940:37:0;32957:5;23683:10;33788:164;:::i;32940:37::-;32939:38;32914:63;32910:138;;;33001:35;;-1:-1:-1;;;33001:35:0;;;;;;;;;;;32910:138;33060:28;33069:2;33073:7;33082:5;33060:8;:28::i;:::-;32787:309;32725:371;;:::o;34019:170::-;34153:28;34163:4;34169:2;34173:7;34153:9;:28::i;49055:437::-;49125:10;;;;49117:39;;;;-1:-1:-1;;;49117:39:0;;7799:2:1;49117:39:0;;;7781:21:1;7838:2;7818:18;;;7811:30;7877:18;7857;;;7850:46;7913:18;;49117:39:0;;;;;;;;;49171:9;49184:10;49171:23;49163:50;;;;-1:-1:-1;;;49163:50:0;;7456:2:1;49163:50:0;;;7438:21:1;7495:2;7475:18;;;7468:30;7534:16;7514:18;;;7507:44;7568:18;;49163:50:0;7254:338:1;49163:50:0;49240:15;;49228:8;:27;;49220:71;;;;-1:-1:-1;;;49220:71:0;;9908:2:1;49220:71:0;;;9890:21:1;9947:2;9927:18;;;9920:30;9986:33;9966:18;;;9959:61;10037:18;;49220:71:0;9706:355:1;49220:71:0;49334:10;;49322:8;49306:13;27777:12;;27761:13;;:28;;27523:303;49306:13;:24;;;;:::i;:::-;:38;;49298:75;;;;-1:-1:-1;;;49298:75:0;;8505:2:1;49298:75:0;;;8487:21:1;8544:2;8524:18;;;8517:30;8583:26;8563:18;;;8556:54;8627:18;;49298:75:0;8303:348:1;49298:75:0;49411:8;49403:5;;:16;;;;:::i;:::-;49390:9;:29;;49382:63;;;;-1:-1:-1;;;49382:63:0;;6699:2:1;49382:63:0;;;6681:21:1;6738:2;6718:18;;;6711:30;6777:23;6757:18;;;6750:51;6818:18;;49382:63:0;6497:345:1;49382:63:0;49455:31;49465:10;49477:8;49455:9;:31::i;:::-;49055:437;:::o;50341:81::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;50406:10:::1;::::0;;-1:-1:-1;;50392:24:0;::::1;50406:10;::::0;;::::1;50405:11;50392:24;::::0;;50341:81::o;34260:185::-;34398:39;34415:4;34421:2;34425:7;34398:39;;;;;;;;;;;;:16;:39::i;50046:289::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;50161:10:::1;;50149:8;50133:13;27777:12:::0;;27761:13;;:28;;27523:303;50133:13:::1;:24;;;;:::i;:::-;:38;;50125:75;;;::::0;-1:-1:-1;;;50125:75:0;;8505:2:1;50125:75:0::1;::::0;::::1;8487:21:1::0;8544:2;8524:18;;;8517:30;8583:26;8563:18;;;8556:54;8627:18;;50125:75:0::1;8303:348:1::0;50125:75:0::1;50235:10;::::0;50223:8:::1;::::0;50212:19:::1;::::0;:8;:19:::1;:::i;:::-;:33;;50204:62;;;::::0;-1:-1:-1;;;50204:62:0;;9203:2:1;50204:62:0::1;::::0;::::1;9185:21:1::0;9242:2;9222:18;;;9215:30;9281:18;9261;;;9254:46;9317:18;;50204:62:0::1;9001:340:1::0;50204:62:0::1;50284:8;50272;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;50299:30:0::1;::::0;-1:-1:-1;50309:9:0;50320:8;50299:9:::1;:30::i;:::-;50046:289:::0;;:::o;49940:100::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;50011:23:::1;:13;50027:7:::0;;50011:23:::1;:::i;31468:124::-:0;31532:7;31559:20;31571:7;31559:11;:20::i;:::-;:25;;31468:124;-1:-1:-1;;31468:124:0:o;50605:361::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;22002:1:::1;22600:7;;:19;;22592:63;;;::::0;-1:-1:-1;;;22592:63:0;;9548:2:1;22592:63:0::1;::::0;::::1;9530:21:1::0;9587:2;9567:18;;;9560:30;9626:33;9606:18;;;9599:61;9677:18;;22592:63:0::1;9346:355:1::0;22592:63:0::1;22002:1;22733:7;:18:::0;50695:21:::2;50676:16;::::0;50747:214:::2;50765:6;:13:::0;50761:17;::::2;50747:214;;;50831:3;50821:4;50826:1;50821:7;;;;;;;;:::i;:::-;;;;;;;;;50807:11;:21;;;;:::i;:::-;:27;;;;:::i;:::-;50794:40;;50844:12;50870:6;50877:1;50870:9;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;50862:46:::2;::::0;-1:-1:-1;;;;;50870:9:0;;::::2;::::0;50893:10;;50862:46;;50870:9;50862:46;50893:10;50870:9;50862:46:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50843:65;;;50925:7;50917:36;;;::::0;-1:-1:-1;;;50917:36:0;;8858:2:1;50917:36:0::2;::::0;::::2;8840:21:1::0;8897:2;8877:18;;;8870:30;8936:18;8916;;;8909:46;8972:18;;50917:36:0::2;8656:340:1::0;50917:36:0::2;-1:-1:-1::0;50780:3:0;::::2;::::0;::::2;:::i;:::-;;;;50747:214;;;-1:-1:-1::0;;21958:1:0::1;22912:7;:22:::0;-1:-1:-1;50605:361:0:o;28643:206::-;28707:7;-1:-1:-1;;;;;28731:19:0;;28727:60;;28759:28;;-1:-1:-1;;;28759:28:0;;;;;;;;;;;28727:60;-1:-1:-1;;;;;;28813:19:0;;;;;:12;:19;;;;;:27;;;;28643:206::o;47419:103::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;47484:30:::1;47511:1;47484:18;:30::i;:::-;47419:103::o:0;50430:169::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;50510:10:::1;;50500:7;:20;:47;;;;-1:-1:-1::0;27777:12:0;;27761:13;;:28;50524:7:::1;:23;50500:47;50492:74;;;::::0;-1:-1:-1;;;50492:74:0;;6356:2:1;50492:74:0::1;::::0;::::1;6338:21:1::0;6395:2;6375:18;;;6368:30;6434:16;6414:18;;;6407:44;6468:18;;50492:74:0::1;6154:338:1::0;50492:74:0::1;50573:10;:20:::0;50430:169::o;49784:129::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;49887:20:0;49899:7;49887:11;:20::i;31828:104::-;31884:13;31917:7;31910:14;;;;;:::i;33438:279::-;-1:-1:-1;;;;;33529:24:0;;23683:10;33529:24;33525:54;;;33562:17;;-1:-1:-1;;;33562:17:0;;;;;;;;;;;33525:54;23683:10;33592:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33592:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33592:53:0;;;;;;;;;;33661:48;;5878:41:1;;;33592:42:0;;23683:10;33661:48;;5851:18:1;33661:48:0;;;;;;;33438:279;;:::o;34516:369::-;34683:28;34693:4;34699:2;34703:7;34683:9;:28::i;:::-;-1:-1:-1;;;;;34726:13:0;;1565:19;:23;;34726:76;;;;;34746:56;34777:4;34783:2;34787:7;34796:5;34746:30;:56::i;:::-;34745:57;34726:76;34722:156;;;34826:40;;-1:-1:-1;;;34826:40:0;;;;;;;;;;;34722:156;34516:369;;;;:::o;32003:318::-;32076:13;32107:16;32115:7;32107;:16::i;:::-;32102:59;;32132:29;;-1:-1:-1;;;32132:29:0;;;;;;;;;;;32102:59;32174:21;32198:10;:8;:10::i;:::-;32174:34;;32232:7;32226:21;32251:1;32226:26;;:87;;;;;;;;;;;;;;;;;32279:7;32288:18;:7;:16;:18::i;:::-;32262:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32226:87;32219:94;32003:318;-1:-1:-1;;;32003:318:0:o;49669:107::-;49727:7;49750:20;49764:5;49750:13;:20::i;47677:201::-;46814:7;46841:6;-1:-1:-1;;;;;46841:6:0;23683:10;46988:23;46980:68;;;;-1:-1:-1;;;46980:68:0;;8144:2:1;46980:68:0;;;8126:21:1;;;8163:18;;;8156:30;-1:-1:-1;;;;;;;;;;;8202:18:1;;;8195:62;8274:18;;46980:68:0;7942:356:1;46980:68:0;-1:-1:-1;;;;;47766:22:0;::::1;47758:73;;;::::0;-1:-1:-1;;;47758:73:0;;7049:2:1;47758:73:0::1;::::0;::::1;7031:21:1::0;7088:2;7068:18;;;7061:30;7127:34;7107:18;;;7100:62;-1:-1:-1;;;7178:18:1;;;7171:36;7224:19;;47758:73:0::1;6847:402:1::0;47758:73:0::1;47842:28;47861:8;47842:18;:28::i;35140:187::-:0;35197:4;35261:13;;35251:7;:23;35221:98;;;;-1:-1:-1;;35292:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35292:27:0;;;;35291:28;;35140:187::o;42751:196::-;42866:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;42866:29:0;-1:-1:-1;;;;;42866:29:0;;;;;;;;;42911:28;;42866:24;;42911:28;;;;;;;42751:196;;;:::o;38253:2112::-;38368:35;38406:20;38418:7;38406:11;:20::i;:::-;38481:18;;38368:58;;-1:-1:-1;38439:22:0;;-1:-1:-1;;;;;38465:34:0;23683:10;-1:-1:-1;;;;;38465:34:0;;:101;;;-1:-1:-1;38533:18:0;;38516:50;;23683:10;33788:164;:::i;38516:50::-;38465:154;;;-1:-1:-1;23683:10:0;38583:20;38595:7;38583:11;:20::i;:::-;-1:-1:-1;;;;;38583:36:0;;38465:154;38439:181;;38638:17;38633:66;;38664:35;;-1:-1:-1;;;38664:35:0;;;;;;;;;;;38633:66;38736:4;-1:-1:-1;;;;;38714:26:0;:13;:18;;;-1:-1:-1;;;;;38714:26:0;;38710:67;;38749:28;;-1:-1:-1;;;38749:28:0;;;;;;;;;;;38710:67;-1:-1:-1;;;;;38792:16:0;;38788:52;;38817:23;;-1:-1:-1;;;38817:23:0;;;;;;;;;;;38788:52;38961:49;38978:1;38982:7;38991:13;:18;;;38961:8;:49::i;:::-;-1:-1:-1;;;;;39306:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39306:31:0;;;;;;;-1:-1:-1;;39306:31:0;;;;;;;39352:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39352:29:0;;;;;;;;;;;39398:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39443:61:0;;;;-1:-1:-1;;;39488:15:0;39443:61;;;;;;;;;;;39778:11;;;39808:24;;;;;:29;39778:11;;39808:29;39804:445;;40033:13;;40019:11;:27;40015:219;;;40103:18;;;40071:24;;;:11;:24;;;;;;;;:50;;40186:28;;;;40144:70;;-1:-1:-1;;;40144:70:0;-1:-1:-1;;;;;;40144:70:0;;;-1:-1:-1;;;;;40071:50:0;;;40144:70;;;;;;;40015:219;39281:979;40296:7;40292:2;-1:-1:-1;;;;;40277:27:0;40286:4;-1:-1:-1;;;;;40277:27:0;;;;;;;;;;;40315:42;38357:2008;;38253:2112;;;:::o;35335:104::-;35404:27;35414:2;35418:8;35404:27;;;;;;;;;;;;:9;:27::i;30298:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30408:7:0;30491:13;;30484:4;:20;30453:886;;;30525:31;30559:17;;;:11;:17;;;;;;;;;30525:51;;;;;;;;;-1:-1:-1;;;;;30525:51:0;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;;;;30595:729;;30645:14;;-1:-1:-1;;;;;30645:28:0;;30641:101;;30709:9;30298:1108;-1:-1:-1;;;30298:1108:0:o;30641:101::-;-1:-1:-1;;;31084:6:0;31129:17;;;;:11;:17;;;;;;;;;31117:29;;;;;;;;;-1:-1:-1;;;;;31117:29:0;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;;;31177:28;31173:109;;31245:9;30298:1108;-1:-1:-1;;;30298:1108:0:o;31173:109::-;31044:261;;;30506:833;30453:886;31367:31;;-1:-1:-1;;;31367:31:0;;;;;;;;;;;48038:191;48112:16;48131:6;;-1:-1:-1;;;;;48148:17:0;;;-1:-1:-1;;48148:17:0;;;;;;48181:40;;48131:6;;;;;;;48181:40;;48112:16;48181:40;48101:128;48038:191;:::o;43439:667::-;43623:72;;-1:-1:-1;;;43623:72:0;;43602:4;;-1:-1:-1;;;;;43623:36:0;;;;;:72;;23683:10;;43674:4;;43680:7;;43689:5;;43623:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43623:72:0;;;;;;;;-1:-1:-1;;43623:72:0;;;;;;;;;;;;:::i;:::-;;;43619:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43857:13:0;;43853:235;;43903:40;;-1:-1:-1;;;43903:40:0;;;;;;;;;;;43853:235;44046:6;44040:13;44031:6;44027:2;44023:15;44016:38;43619:480;-1:-1:-1;;;;;;43742:55:0;-1:-1:-1;;;43742:55:0;;-1:-1:-1;43619:480:0;43439:667;;;;;;:::o;49555:108::-;49615:13;49644;49637:20;;;;;:::i;18456:723::-;18512:13;18733:10;18729:53;;-1:-1:-1;;18760:10:0;;;;;;;;;;;;-1:-1:-1;;;18760:10:0;;;;;18456:723::o;18729:53::-;18807:5;18792:12;18848:78;18855:9;;18848:78;;18881:8;;;;:::i;:::-;;-1:-1:-1;18904:10:0;;-1:-1:-1;18912:2:0;18904:10;;:::i;:::-;;;18848:78;;;18936:19;18968:6;18958:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18958:17:0;;18936:39;;18986:154;18993:10;;18986:154;;19020:11;19030:1;19020:11;;:::i;:::-;;-1:-1:-1;19089:10:0;19097:2;19089:5;:10;:::i;:::-;19076:24;;:2;:24;:::i;:::-;19063:39;;19046:6;19053;19046:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;19117:11:0;19126:2;19117:11;;:::i;:::-;;;18986:154;;28931:207;28992:7;-1:-1:-1;;;;;29016:19:0;;29012:59;;29044:27;;-1:-1:-1;;;29044:27:0;;;;;;;;;;;29012:59;-1:-1:-1;;;;;;29097:19:0;;;;;:12;:19;;;;;:32;;;;;;;28931:207::o;35802:163::-;35925:32;35931:2;35935:8;35945:5;35952:4;36386:13;;-1:-1:-1;;;;;36414:16:0;;36410:48;;36439:19;;-1:-1:-1;;;36439:19:0;;;;;;;;;;;36410:48;36473:13;36469:44;;36495:18;;-1:-1:-1;;;36495:18:0;;;;;;;;;;;36469:44;-1:-1:-1;;;;;36864:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36923:49:0;;36864:44;;;;;;;;36923:49;;;;-1:-1:-1;;36864:44:0;;;;;;36923:49;;;;;;;;;;;;;;;;36989:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37039:66:0;;;;-1:-1:-1;;;37089:15:0;37039:66;;;;;;;;;;36989:25;37186:23;;;37230:4;:23;;;;-1:-1:-1;;;;;;37238:13:0;;1565:19;:23;;37238:15;37226:641;;;37274:314;37305:38;;37330:12;;-1:-1:-1;;;;;37305:38:0;;;37322:1;;37305:38;;37322:1;;37305:38;37371:69;37410:1;37414:2;37418:14;;;;;;37434:5;37371:30;:69::i;:::-;37366:174;;37476:40;;-1:-1:-1;;;37476:40:0;;;;;;;;;;;37366:174;37583:3;37567:12;:19;;37274:314;;37669:12;37652:13;;:29;37648:43;;37683:8;;;37648:43;37226:641;;;37732:120;37763:40;;37788:14;;;;;-1:-1:-1;;;;;37763:40:0;;;37780:1;;37763:40;;37780:1;;37763:40;37847:3;37831:12;:19;;37732:120;;37226:641;-1:-1:-1;37881:13:0;:28;37931:60;34516:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:1;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:1:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:592::-;3333:6;3341;3394:2;3382:9;3373:7;3369:23;3365:32;3362:52;;;3410:1;3407;3400:12;3362:52;3450:9;3437:23;3479:18;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3574:6;3563:9;3559:22;3549:32;;3619:7;3612:4;3608:2;3604:13;3600:27;3590:55;;3641:1;3638;3631:12;3590:55;3681:2;3668:16;3707:2;3699:6;3696:14;3693:34;;;3723:1;3720;3713:12;3693:34;3768:7;3763:2;3754:6;3750:2;3746:15;3742:24;3739:37;3736:57;;;3789:1;3786;3779:12;3736:57;3820:2;3812:11;;;;;3842:6;;-1:-1:-1;3262:592:1;;-1:-1:-1;;;;3262:592:1:o;3859:180::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;-1:-1:-1;4010:23:1;;3859:180;-1:-1:-1;3859:180:1:o;4044:257::-;4085:3;4123:5;4117:12;4150:6;4145:3;4138:19;4166:63;4222:6;4215:4;4210:3;4206:14;4199:4;4192:5;4188:16;4166:63;:::i;:::-;4283:2;4262:15;-1:-1:-1;;4258:29:1;4249:39;;;;4290:4;4245:50;;4044:257;-1:-1:-1;;4044:257:1:o;4306:470::-;4485:3;4523:6;4517:13;4539:53;4585:6;4580:3;4573:4;4565:6;4561:17;4539:53;:::i;:::-;4655:13;;4614:16;;;;4677:57;4655:13;4614:16;4711:4;4699:17;;4677:57;:::i;:::-;4750:20;;4306:470;-1:-1:-1;;;;4306:470:1:o;5222:511::-;5416:4;-1:-1:-1;;;;;5526:2:1;5518:6;5514:15;5503:9;5496:34;5578:2;5570:6;5566:15;5561:2;5550:9;5546:18;5539:43;;5618:6;5613:2;5602:9;5598:18;5591:34;5661:3;5656:2;5645:9;5641:18;5634:31;5682:45;5722:3;5711:9;5707:19;5699:6;5682:45;:::i;:::-;5674:53;5222:511;-1:-1:-1;;;;;;5222:511:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;10715:128::-;10755:3;10786:1;10782:6;10779:1;10776:13;10773:39;;;10792:18;;:::i;:::-;-1:-1:-1;10828:9:1;;10715:128::o;10848:120::-;10888:1;10914;10904:35;;10919:18;;:::i;:::-;-1:-1:-1;10953:9:1;;10848:120::o;10973:168::-;11013:7;11079:1;11075;11071:6;11067:14;11064:1;11061:21;11056:1;11049:9;11042:17;11038:45;11035:71;;;11086:18;;:::i;:::-;-1:-1:-1;11126:9:1;;10973:168::o;11146:125::-;11186:4;11214:1;11211;11208:8;11205:34;;;11219:18;;:::i;:::-;-1:-1:-1;11256:9:1;;11146:125::o;11276:258::-;11348:1;11358:113;11372:6;11369:1;11366:13;11358:113;;;11448:11;;;11442:18;11429:11;;;11422:39;11394:2;11387:10;11358:113;;;11489:6;11486:1;11483:13;11480:48;;;-1:-1:-1;;11524:1:1;11506:16;;11499:27;11276:258::o;11539:380::-;11618:1;11614:12;;;;11661;;;11682:61;;11736:4;11728:6;11724:17;11714:27;;11682:61;11789:2;11781:6;11778:14;11758:18;11755:38;11752:161;;;11835:10;11830:3;11826:20;11823:1;11816:31;11870:4;11867:1;11860:15;11898:4;11895:1;11888:15;11752:161;;11539:380;;;:::o;11924:135::-;11963:3;-1:-1:-1;;11984:17:1;;11981:43;;;12004:18;;:::i;:::-;-1:-1:-1;12051:1:1;12040:13;;11924:135::o;12064:112::-;12096:1;12122;12112:35;;12127:18;;:::i;:::-;-1:-1:-1;12161:9:1;;12064:112::o;12181:127::-;12242:10;12237:3;12233:20;12230:1;12223:31;12273:4;12270:1;12263:15;12297:4;12294:1;12287:15;12313:127;12374:10;12369:3;12365:20;12362:1;12355:31;12405:4;12402:1;12395:15;12429:4;12426:1;12419:15;12445:127;12506:10;12501:3;12497:20;12494:1;12487:31;12537:4;12534:1;12527:15;12561:4;12558:1;12551:15;12577:127;12638:10;12633:3;12629:20;12626:1;12619:31;12669:4;12666:1;12659:15;12693:4;12690:1;12683:15;12709:131;-1:-1:-1;;;;;;12783:32:1;;12773:43;;12763:71;;12830:1;12827;12820:12

Swarm Source

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