ETH Price: $3,327.73 (-2.67%)

Token

0xCatz (XCTZ)
 

Overview

Max Total Supply

108 XCTZ

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 XCTZ
0xcf1d8ca8d8bcf178cb8cc82936ff7e0247617166
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:
XCatz

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-29
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/XCatz.sol


pragma solidity ^0.8.4;




contract XCatz is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public total_supply = 9999;
    uint256 public mint_price = 0.01 ether;
    uint256 public mint_discount = 0.02 ether;
    uint256 public max_mint_per_tx = 100;
    address payable withdrawTo = payable(0xE1e12F54a313f93Ab9eBB4F364f5B07257430A98);

    string public baseTokenURI;
    string  public uriSuffix = ".json";
    bool public paused = true;


    constructor() ERC721A("0xCatz", "XCTZ") {
        setBaseTokenURI("ipfs://QmSuJVJpGxyxsygvRYkccmAahFTPDSFKLRwyuT5RDW1SBK/");
  }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        return
            string(abi.encodePacked(_baseURI(), (tokenId + 9942).toString(), uriSuffix));
    }

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "Minting is paused.");
        require((quantity > 0) && (quantity <= max_mint_per_tx), "Invalid quantity.");
        require(supply + quantity <= total_supply, "Exceeds maximum supply.");

        if (msg.sender != owner()) {

            uint256 price = ((quantity%5)*mint_price) + ((quantity/5)*mint_discount);

            require((msg.value >= price), "Not enough supply.");
        }

        _safeMint(msg.sender, quantity);
    }

    function mintForSomeone(address to,uint256 quantity) external payable onlyOwner{
        uint256 supply = totalSupply();
        require(supply + quantity <= total_supply, "Exceeds maximum supply");
        _safeMint(to, quantity);
    }

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function withdraw() public payable onlyOwner nonReentrant{
        (bool os, ) = withdrawTo.call{value: address(this).balance}("");
        require(os);
    }

    function setCost(uint256 _newPrice) public onlyOwner {
        mint_price = _newPrice;
    }

    function setDiscount(uint256 _newDiscount) public onlyOwner {
        mint_discount = _newDiscount;
    }

    function setMaxInTRX(uint256 _newMaxMintPerTx) public onlyOwner {
        max_mint_per_tx = _newMaxMintPerTx;
    }

    function setmaxMintAmount(uint256 _newSupply) public onlyOwner {
        total_supply = _newSupply;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_per_tx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForSomeone","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_discount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDiscount","type":"uint256"}],"name":"setDiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerTx","type":"uint256"}],"name":"setMaxInTRX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setmaxMintAmount","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":[],"name":"total_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261270f600a55662386f26fc10000600b5566470de4df820000600c556064600d5573e1e12f54a313f93ab9ebb4f364f5b07257430a98600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060109080519060200190620000c7929190620003a7565b506001601160006101000a81548160ff021916908315150217905550348015620000f057600080fd5b506040518060400160405280600681526020017f30784361747a00000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5843545a00000000000000000000000000000000000000000000000000000000815250816002908051906020019062000175929190620003a7565b5080600390805190602001906200018e929190620003a7565b506200019f620001ff60201b60201c565b6000819055505050620001c7620001bb6200020460201b60201c565b6200020c60201b60201c565b6001600981905550620001f9604051806060016040528060368152602001620040e060369139620002d260201b60201c565b6200053f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e26200020460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003086200037d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000358906200047e565b60405180910390fd5b80600f908051906020019062000379929190620003a7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b590620004b1565b90600052602060002090601f016020900481019282620003d9576000855562000425565b82601f10620003f457805160ff191683800117855562000425565b8280016001018555821562000425579182015b828111156200042457825182559160200191906001019062000407565b5b50905062000434919062000438565b5090565b5b808211156200045357600081600090555060010162000439565b5090565b600062000466602083620004a0565b9150620004738262000516565b602082019050919050565b60006020820190508181036000830152620004998162000457565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004ca57607f821691505b60208210811415620004e157620004e0620004e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613b91806200054f6000396000f3fe6080604052600436106101f95760003560e01c80635c975abb1161010d578063a1470c1d116100a0578063ccfd1ba71161006f578063ccfd1ba7146106ce578063d547cfb7146106f9578063dabd271914610724578063e985e9c51461074d578063f2fde38b1461078a576101f9565b8063a1470c1d14610616578063a22cb4651461063f578063b88d4fde14610668578063c87b56dd14610691576101f9565b80637f00c7a6116100dc5780637f00c7a61461057b5780638da5cb5b146105a457806395d89b41146105cf578063a0712d68146105fa576101f9565b80635c975abb146104bf5780636352211e146104ea57806370a0823114610527578063715018a614610564576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461040d57806340660cec1461041757806342842e0e1461044257806344a0d68a1461046b5780635503a0e814610494576101f9565b806323b872dd1461037457806323cf842b1461039d57806330176e13146103b95780633940e9ee146103e2576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806316ba10e0146102f557806318160ddd1461031e5780631a4231a414610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f8d565b6107b3565b6040516102329190613394565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612f60565b610895565b005b34801561027057600080fd5b5061027961092e565b60405161028691906133af565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613030565b6109c0565b6040516102c3919061332d565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612f20565b610a3c565b005b34801561030157600080fd5b5061031c60048036038101906103179190612fe7565b610b47565b005b34801561032a57600080fd5b50610333610bdd565b60405161034091906134d1565b60405180910390f35b34801561035557600080fd5b5061035e610bf4565b60405161036b91906134d1565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190612e0a565b610bfa565b005b6103b760048036038101906103b29190612f20565b610c0a565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612fe7565b610cf1565b005b3480156103ee57600080fd5b506103f7610d87565b60405161040491906134d1565b60405180910390f35b610415610d8d565b005b34801561042357600080fd5b5061042c610efa565b60405161043991906134d1565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612e0a565b610f00565b005b34801561047757600080fd5b50610492600480360381019061048d9190613030565b610f20565b005b3480156104a057600080fd5b506104a9610fa6565b6040516104b691906133af565b60405180910390f35b3480156104cb57600080fd5b506104d4611034565b6040516104e19190613394565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613030565b611047565b60405161051e919061332d565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612d9d565b61105d565b60405161055b91906134d1565b60405180910390f35b34801561057057600080fd5b5061057961112d565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613030565b6111b5565b005b3480156105b057600080fd5b506105b961123b565b6040516105c6919061332d565b60405180910390f35b3480156105db57600080fd5b506105e4611265565b6040516105f191906133af565b60405180910390f35b610614600480360381019061060f9190613030565b6112f7565b005b34801561062257600080fd5b5061063d60048036038101906106389190613030565b6114c3565b005b34801561064b57600080fd5b5061066660048036038101906106619190612ee0565b611549565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612e5d565b6116c1565b005b34801561069d57600080fd5b506106b860048036038101906106b39190613030565b61173d565b6040516106c591906133af565b60405180910390f35b3480156106da57600080fd5b506106e36117c6565b6040516106f091906134d1565b60405180910390f35b34801561070557600080fd5b5061070e6117cc565b60405161071b91906133af565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613030565b61185a565b005b34801561075957600080fd5b50610774600480360381019061076f9190612dca565b6118e0565b6040516107819190613394565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612d9d565b611974565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088e575061088d82611a6c565b5b9050919050565b61089d611ad6565b73ffffffffffffffffffffffffffffffffffffffff166108bb61123b565b73ffffffffffffffffffffffffffffffffffffffff1614610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613451565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606002805461093d906137a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610969906137a1565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b60006109cb82611ade565b610a01576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4782611047565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aaf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ace611ad6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b005750610afe81610af9611ad6565b6118e0565b155b15610b37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b42838383611b2c565b505050565b610b4f611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610b6d61123b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90613451565b60405180910390fd5b8060109080519060200190610bd9929190612b6e565b5050565b6000610be7611bde565b6001546000540303905090565b600b5481565b610c05838383611be3565b505050565b610c12611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610c3061123b565b73ffffffffffffffffffffffffffffffffffffffff1614610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613451565b60405180910390fd5b6000610c90610bdd565b9050600a548282610ca191906135d6565b1115610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613471565b60405180910390fd5b610cec8383612099565b505050565b610cf9611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610d1761123b565b73ffffffffffffffffffffffffffffffffffffffff1614610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490613451565b60405180910390fd5b80600f9080519060200190610d83929190612b6e565b5050565b600a5481565b610d95611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610db361123b565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613451565b60405180910390fd5b60026009541415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906134b1565b60405180910390fd5b60026009819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e9f90613318565b60006040518083038185875af1925050503d8060008114610edc576040519150601f19603f3d011682016040523d82523d6000602084013e610ee1565b606091505b5050905080610eef57600080fd5b506001600981905550565b600c5481565b610f1b838383604051806020016040528060008152506116c1565b505050565b610f28611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610f4661123b565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613451565b60405180910390fd5b80600b8190555050565b60108054610fb3906137a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf906137a1565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b6000611052826120b7565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611135611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661115361123b565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613451565b60405180910390fd5b6111b36000612346565b565b6111bd611ad6565b73ffffffffffffffffffffffffffffffffffffffff166111db61123b565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613451565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611274906137a1565b80601f01602080910402602001604051908101604052809291908181526020018280546112a0906137a1565b80156112ed5780601f106112c2576101008083540402835291602001916112ed565b820191906000526020600020905b8154815290600101906020018083116112d057829003601f168201915b5050505050905090565b6000611301610bdd565b9050601160009054906101000a900460ff1615611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906133d1565b60405180910390fd5b6000821180156113655750600d548211155b6113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613431565b60405180910390fd5b600a5482826113b391906135d6565b11156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb906133f1565b60405180910390fd5b6113fc61123b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b5576000600c54600584611440919061362c565b61144a919061365d565b600b5460058561145a919061384d565b611464919061365d565b61146e91906135d6565b9050803410156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613491565b60405180910390fd5b505b6114bf3383612099565b5050565b6114cb611ad6565b73ffffffffffffffffffffffffffffffffffffffff166114e961123b565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613451565b60405180910390fd5b80600d8190555050565b611551611ad6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c3611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611670611ad6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b59190613394565b60405180910390a35050565b6116cc848484611be3565b6116eb8373ffffffffffffffffffffffffffffffffffffffff1661240c565b801561170057506116fe8484848461242f565b155b15611737576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061174882611ade565b61177e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178661258f565b61179c6126d68461179791906135d6565b612621565b60106040516020016117b0939291906132e7565b6040516020818303038152906040529050919050565b600d5481565b600f80546117d9906137a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611805906137a1565b80156118525780601f1061182757610100808354040283529160200191611852565b820191906000526020600020905b81548152906001019060200180831161183557829003601f168201915b505050505081565b611862611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661188061123b565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613451565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197c611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661199a61123b565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613411565b60405180910390fd5b611a6981612346565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611ae9611bde565b11158015611af8575060005482105b8015611b25575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611bee826120b7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c7a611ad6565b73ffffffffffffffffffffffffffffffffffffffff161480611ca95750611ca885611ca3611ad6565b6118e0565b5b80611cee5750611cb7611ad6565b73ffffffffffffffffffffffffffffffffffffffff16611cd6846109c0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d27576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9b8585856001612782565b611da760008487611b2c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202757600054821461202657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120928585856001612788565b5050505050565b6120b382826040518060200160405280600081525061278e565b5050565b6120bf612bf4565b6000829050806120cd611bde565b111580156120dc575060005481105b1561230f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f1578092505050612341565b5b60011561230c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612307578092505050612341565b6121f2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612455611ad6565b8786866040518563ffffffff1660e01b81526004016124779493929190613348565b602060405180830381600087803b15801561249157600080fd5b505af19250505080156124c257506040513d601f19601f820116820180604052508101906124bf9190612fba565b60015b61253c573d80600081146124f2576040519150601f19603f3d011682016040523d82523d6000602084013e6124f7565b606091505b50600081511415612534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461259e906137a1565b80601f01602080910402602001604051908101604052809291908181526020018280546125ca906137a1565b80156126175780601f106125ec57610100808354040283529160200191612617565b820191906000526020600020905b8154815290600101906020018083116125fa57829003601f168201915b5050505050905090565b60606000821415612669576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061277d565b600082905060005b6000821461269b57808061268490613804565b915050600a82612694919061362c565b9150612671565b60008167ffffffffffffffff8111156126b7576126b661393a565b5b6040519080825280601f01601f1916602001820160405280156126e95781602001600182028036833780820191505090505b5090505b600085146127765760018261270291906136b7565b9150600a85612711919061384d565b603061271d91906135d6565b60f81b8183815181106127335761273261390b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561276f919061362c565b94506126ed565b8093505050505b919050565b50505050565b50505050565b61279b83838360016127a0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561280d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612848576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128556000868387612782565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a1f5750612a1e8773ffffffffffffffffffffffffffffffffffffffff1661240c565b5b15612ae5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a94600088848060010195508861242f565b612aca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a25578260005414612ae057600080fd5b612b51565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ae6575b816000819055505050612b676000868387612788565b5050505050565b828054612b7a906137a1565b90600052602060002090601f016020900481019282612b9c5760008555612be3565b82601f10612bb557805160ff1916838001178555612be3565b82800160010185558215612be3579182015b82811115612be2578251825591602001919060010190612bc7565b5b509050612bf09190612c37565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c50576000816000905550600101612c38565b5090565b6000612c67612c6284613511565b6134ec565b905082815260208101848484011115612c8357612c8261396e565b5b612c8e84828561375f565b509392505050565b6000612ca9612ca484613542565b6134ec565b905082815260208101848484011115612cc557612cc461396e565b5b612cd084828561375f565b509392505050565b600081359050612ce781613aff565b92915050565b600081359050612cfc81613b16565b92915050565b600081359050612d1181613b2d565b92915050565b600081519050612d2681613b2d565b92915050565b600082601f830112612d4157612d40613969565b5b8135612d51848260208601612c54565b91505092915050565b600082601f830112612d6f57612d6e613969565b5b8135612d7f848260208601612c96565b91505092915050565b600081359050612d9781613b44565b92915050565b600060208284031215612db357612db2613978565b5b6000612dc184828501612cd8565b91505092915050565b60008060408385031215612de157612de0613978565b5b6000612def85828601612cd8565b9250506020612e0085828601612cd8565b9150509250929050565b600080600060608486031215612e2357612e22613978565b5b6000612e3186828701612cd8565b9350506020612e4286828701612cd8565b9250506040612e5386828701612d88565b9150509250925092565b60008060008060808587031215612e7757612e76613978565b5b6000612e8587828801612cd8565b9450506020612e9687828801612cd8565b9350506040612ea787828801612d88565b925050606085013567ffffffffffffffff811115612ec857612ec7613973565b5b612ed487828801612d2c565b91505092959194509250565b60008060408385031215612ef757612ef6613978565b5b6000612f0585828601612cd8565b9250506020612f1685828601612ced565b9150509250929050565b60008060408385031215612f3757612f36613978565b5b6000612f4585828601612cd8565b9250506020612f5685828601612d88565b9150509250929050565b600060208284031215612f7657612f75613978565b5b6000612f8484828501612ced565b91505092915050565b600060208284031215612fa357612fa2613978565b5b6000612fb184828501612d02565b91505092915050565b600060208284031215612fd057612fcf613978565b5b6000612fde84828501612d17565b91505092915050565b600060208284031215612ffd57612ffc613978565b5b600082013567ffffffffffffffff81111561301b5761301a613973565b5b61302784828501612d5a565b91505092915050565b60006020828403121561304657613045613978565b5b600061305484828501612d88565b91505092915050565b613066816136eb565b82525050565b613075816136fd565b82525050565b600061308682613588565b613090818561359e565b93506130a081856020860161376e565b6130a98161397d565b840191505092915050565b60006130bf82613593565b6130c981856135ba565b93506130d981856020860161376e565b6130e28161397d565b840191505092915050565b60006130f882613593565b61310281856135cb565b935061311281856020860161376e565b80840191505092915050565b6000815461312b816137a1565b61313581866135cb565b94506001821660008114613150576001811461316157613194565b60ff19831686528186019350613194565b61316a85613573565b60005b8381101561318c5781548189015260018201915060208101905061316d565b838801955050505b50505092915050565b60006131aa6012836135ba565b91506131b58261398e565b602082019050919050565b60006131cd6017836135ba565b91506131d8826139b7565b602082019050919050565b60006131f06026836135ba565b91506131fb826139e0565b604082019050919050565b60006132136011836135ba565b915061321e82613a2f565b602082019050919050565b60006132366020836135ba565b915061324182613a58565b602082019050919050565b60006132596016836135ba565b915061326482613a81565b602082019050919050565b600061327c6000836135af565b915061328782613aaa565b600082019050919050565b600061329f6012836135ba565b91506132aa82613aad565b602082019050919050565b60006132c2601f836135ba565b91506132cd82613ad6565b602082019050919050565b6132e181613755565b82525050565b60006132f382866130ed565b91506132ff82856130ed565b915061330b828461311e565b9150819050949350505050565b60006133238261326f565b9150819050919050565b6000602082019050613342600083018461305d565b92915050565b600060808201905061335d600083018761305d565b61336a602083018661305d565b61337760408301856132d8565b8181036060830152613389818461307b565b905095945050505050565b60006020820190506133a9600083018461306c565b92915050565b600060208201905081810360008301526133c981846130b4565b905092915050565b600060208201905081810360008301526133ea8161319d565b9050919050565b6000602082019050818103600083015261340a816131c0565b9050919050565b6000602082019050818103600083015261342a816131e3565b9050919050565b6000602082019050818103600083015261344a81613206565b9050919050565b6000602082019050818103600083015261346a81613229565b9050919050565b6000602082019050818103600083015261348a8161324c565b9050919050565b600060208201905081810360008301526134aa81613292565b9050919050565b600060208201905081810360008301526134ca816132b5565b9050919050565b60006020820190506134e660008301846132d8565b92915050565b60006134f6613507565b905061350282826137d3565b919050565b6000604051905090565b600067ffffffffffffffff82111561352c5761352b61393a565b5b6135358261397d565b9050602081019050919050565b600067ffffffffffffffff82111561355d5761355c61393a565b5b6135668261397d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135e182613755565b91506135ec83613755565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136215761362061387e565b5b828201905092915050565b600061363782613755565b915061364283613755565b925082613652576136516138ad565b5b828204905092915050565b600061366882613755565b915061367383613755565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136ac576136ab61387e565b5b828202905092915050565b60006136c282613755565b91506136cd83613755565b9250828210156136e0576136df61387e565b5b828203905092915050565b60006136f682613735565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561378c578082015181840152602081019050613771565b8381111561379b576000848401525b50505050565b600060028204905060018216806137b957607f821691505b602082108114156137cd576137cc6138dc565b5b50919050565b6137dc8261397d565b810181811067ffffffffffffffff821117156137fb576137fa61393a565b5b80604052505050565b600061380f82613755565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138425761384161387e565b5b600182019050919050565b600061385882613755565b915061386383613755565b925082613873576138726138ad565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f45786365656473206d6178696d756d20737570706c792e000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207175616e746974792e000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613b08816136eb565b8114613b1357600080fd5b50565b613b1f816136fd565b8114613b2a57600080fd5b50565b613b3681613709565b8114613b4157600080fd5b50565b613b4d81613755565b8114613b5857600080fd5b5056fea2646970667358221220c89aab152dcfd1a6b116c9d7e783a829d605eed8f0a6d8c6cbedc4d5250be98a64736f6c63430008060033697066733a2f2f516d53754a564a70477879787379677652596b63636d4161684654504453464b4c5277797554355244573153424b2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635c975abb1161010d578063a1470c1d116100a0578063ccfd1ba71161006f578063ccfd1ba7146106ce578063d547cfb7146106f9578063dabd271914610724578063e985e9c51461074d578063f2fde38b1461078a576101f9565b8063a1470c1d14610616578063a22cb4651461063f578063b88d4fde14610668578063c87b56dd14610691576101f9565b80637f00c7a6116100dc5780637f00c7a61461057b5780638da5cb5b146105a457806395d89b41146105cf578063a0712d68146105fa576101f9565b80635c975abb146104bf5780636352211e146104ea57806370a0823114610527578063715018a614610564576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461040d57806340660cec1461041757806342842e0e1461044257806344a0d68a1461046b5780635503a0e814610494576101f9565b806323b872dd1461037457806323cf842b1461039d57806330176e13146103b95780633940e9ee146103e2576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806316ba10e0146102f557806318160ddd1461031e5780631a4231a414610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f8d565b6107b3565b6040516102329190613394565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612f60565b610895565b005b34801561027057600080fd5b5061027961092e565b60405161028691906133af565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613030565b6109c0565b6040516102c3919061332d565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612f20565b610a3c565b005b34801561030157600080fd5b5061031c60048036038101906103179190612fe7565b610b47565b005b34801561032a57600080fd5b50610333610bdd565b60405161034091906134d1565b60405180910390f35b34801561035557600080fd5b5061035e610bf4565b60405161036b91906134d1565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190612e0a565b610bfa565b005b6103b760048036038101906103b29190612f20565b610c0a565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612fe7565b610cf1565b005b3480156103ee57600080fd5b506103f7610d87565b60405161040491906134d1565b60405180910390f35b610415610d8d565b005b34801561042357600080fd5b5061042c610efa565b60405161043991906134d1565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612e0a565b610f00565b005b34801561047757600080fd5b50610492600480360381019061048d9190613030565b610f20565b005b3480156104a057600080fd5b506104a9610fa6565b6040516104b691906133af565b60405180910390f35b3480156104cb57600080fd5b506104d4611034565b6040516104e19190613394565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613030565b611047565b60405161051e919061332d565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612d9d565b61105d565b60405161055b91906134d1565b60405180910390f35b34801561057057600080fd5b5061057961112d565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613030565b6111b5565b005b3480156105b057600080fd5b506105b961123b565b6040516105c6919061332d565b60405180910390f35b3480156105db57600080fd5b506105e4611265565b6040516105f191906133af565b60405180910390f35b610614600480360381019061060f9190613030565b6112f7565b005b34801561062257600080fd5b5061063d60048036038101906106389190613030565b6114c3565b005b34801561064b57600080fd5b5061066660048036038101906106619190612ee0565b611549565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612e5d565b6116c1565b005b34801561069d57600080fd5b506106b860048036038101906106b39190613030565b61173d565b6040516106c591906133af565b60405180910390f35b3480156106da57600080fd5b506106e36117c6565b6040516106f091906134d1565b60405180910390f35b34801561070557600080fd5b5061070e6117cc565b60405161071b91906133af565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613030565b61185a565b005b34801561075957600080fd5b50610774600480360381019061076f9190612dca565b6118e0565b6040516107819190613394565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612d9d565b611974565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088e575061088d82611a6c565b5b9050919050565b61089d611ad6565b73ffffffffffffffffffffffffffffffffffffffff166108bb61123b565b73ffffffffffffffffffffffffffffffffffffffff1614610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613451565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606002805461093d906137a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610969906137a1565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b60006109cb82611ade565b610a01576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4782611047565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aaf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ace611ad6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b005750610afe81610af9611ad6565b6118e0565b155b15610b37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b42838383611b2c565b505050565b610b4f611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610b6d61123b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90613451565b60405180910390fd5b8060109080519060200190610bd9929190612b6e565b5050565b6000610be7611bde565b6001546000540303905090565b600b5481565b610c05838383611be3565b505050565b610c12611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610c3061123b565b73ffffffffffffffffffffffffffffffffffffffff1614610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613451565b60405180910390fd5b6000610c90610bdd565b9050600a548282610ca191906135d6565b1115610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613471565b60405180910390fd5b610cec8383612099565b505050565b610cf9611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610d1761123b565b73ffffffffffffffffffffffffffffffffffffffff1614610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490613451565b60405180910390fd5b80600f9080519060200190610d83929190612b6e565b5050565b600a5481565b610d95611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610db361123b565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613451565b60405180910390fd5b60026009541415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906134b1565b60405180910390fd5b60026009819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e9f90613318565b60006040518083038185875af1925050503d8060008114610edc576040519150601f19603f3d011682016040523d82523d6000602084013e610ee1565b606091505b5050905080610eef57600080fd5b506001600981905550565b600c5481565b610f1b838383604051806020016040528060008152506116c1565b505050565b610f28611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610f4661123b565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613451565b60405180910390fd5b80600b8190555050565b60108054610fb3906137a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf906137a1565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b6000611052826120b7565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611135611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661115361123b565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613451565b60405180910390fd5b6111b36000612346565b565b6111bd611ad6565b73ffffffffffffffffffffffffffffffffffffffff166111db61123b565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613451565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611274906137a1565b80601f01602080910402602001604051908101604052809291908181526020018280546112a0906137a1565b80156112ed5780601f106112c2576101008083540402835291602001916112ed565b820191906000526020600020905b8154815290600101906020018083116112d057829003601f168201915b5050505050905090565b6000611301610bdd565b9050601160009054906101000a900460ff1615611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906133d1565b60405180910390fd5b6000821180156113655750600d548211155b6113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613431565b60405180910390fd5b600a5482826113b391906135d6565b11156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb906133f1565b60405180910390fd5b6113fc61123b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b5576000600c54600584611440919061362c565b61144a919061365d565b600b5460058561145a919061384d565b611464919061365d565b61146e91906135d6565b9050803410156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613491565b60405180910390fd5b505b6114bf3383612099565b5050565b6114cb611ad6565b73ffffffffffffffffffffffffffffffffffffffff166114e961123b565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613451565b60405180910390fd5b80600d8190555050565b611551611ad6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c3611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611670611ad6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b59190613394565b60405180910390a35050565b6116cc848484611be3565b6116eb8373ffffffffffffffffffffffffffffffffffffffff1661240c565b801561170057506116fe8484848461242f565b155b15611737576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061174882611ade565b61177e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178661258f565b61179c6126d68461179791906135d6565b612621565b60106040516020016117b0939291906132e7565b6040516020818303038152906040529050919050565b600d5481565b600f80546117d9906137a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611805906137a1565b80156118525780601f1061182757610100808354040283529160200191611852565b820191906000526020600020905b81548152906001019060200180831161183557829003601f168201915b505050505081565b611862611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661188061123b565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613451565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197c611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661199a61123b565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613411565b60405180910390fd5b611a6981612346565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611ae9611bde565b11158015611af8575060005482105b8015611b25575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611bee826120b7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c7a611ad6565b73ffffffffffffffffffffffffffffffffffffffff161480611ca95750611ca885611ca3611ad6565b6118e0565b5b80611cee5750611cb7611ad6565b73ffffffffffffffffffffffffffffffffffffffff16611cd6846109c0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d27576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9b8585856001612782565b611da760008487611b2c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202757600054821461202657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120928585856001612788565b5050505050565b6120b382826040518060200160405280600081525061278e565b5050565b6120bf612bf4565b6000829050806120cd611bde565b111580156120dc575060005481105b1561230f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f1578092505050612341565b5b60011561230c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612307578092505050612341565b6121f2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612455611ad6565b8786866040518563ffffffff1660e01b81526004016124779493929190613348565b602060405180830381600087803b15801561249157600080fd5b505af19250505080156124c257506040513d601f19601f820116820180604052508101906124bf9190612fba565b60015b61253c573d80600081146124f2576040519150601f19603f3d011682016040523d82523d6000602084013e6124f7565b606091505b50600081511415612534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461259e906137a1565b80601f01602080910402602001604051908101604052809291908181526020018280546125ca906137a1565b80156126175780601f106125ec57610100808354040283529160200191612617565b820191906000526020600020905b8154815290600101906020018083116125fa57829003601f168201915b5050505050905090565b60606000821415612669576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061277d565b600082905060005b6000821461269b57808061268490613804565b915050600a82612694919061362c565b9150612671565b60008167ffffffffffffffff8111156126b7576126b661393a565b5b6040519080825280601f01601f1916602001820160405280156126e95781602001600182028036833780820191505090505b5090505b600085146127765760018261270291906136b7565b9150600a85612711919061384d565b603061271d91906135d6565b60f81b8183815181106127335761273261390b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561276f919061362c565b94506126ed565b8093505050505b919050565b50505050565b50505050565b61279b83838360016127a0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561280d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612848576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128556000868387612782565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a1f5750612a1e8773ffffffffffffffffffffffffffffffffffffffff1661240c565b5b15612ae5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a94600088848060010195508861242f565b612aca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a25578260005414612ae057600080fd5b612b51565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ae6575b816000819055505050612b676000868387612788565b5050505050565b828054612b7a906137a1565b90600052602060002090601f016020900481019282612b9c5760008555612be3565b82601f10612bb557805160ff1916838001178555612be3565b82800160010185558215612be3579182015b82811115612be2578251825591602001919060010190612bc7565b5b509050612bf09190612c37565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c50576000816000905550600101612c38565b5090565b6000612c67612c6284613511565b6134ec565b905082815260208101848484011115612c8357612c8261396e565b5b612c8e84828561375f565b509392505050565b6000612ca9612ca484613542565b6134ec565b905082815260208101848484011115612cc557612cc461396e565b5b612cd084828561375f565b509392505050565b600081359050612ce781613aff565b92915050565b600081359050612cfc81613b16565b92915050565b600081359050612d1181613b2d565b92915050565b600081519050612d2681613b2d565b92915050565b600082601f830112612d4157612d40613969565b5b8135612d51848260208601612c54565b91505092915050565b600082601f830112612d6f57612d6e613969565b5b8135612d7f848260208601612c96565b91505092915050565b600081359050612d9781613b44565b92915050565b600060208284031215612db357612db2613978565b5b6000612dc184828501612cd8565b91505092915050565b60008060408385031215612de157612de0613978565b5b6000612def85828601612cd8565b9250506020612e0085828601612cd8565b9150509250929050565b600080600060608486031215612e2357612e22613978565b5b6000612e3186828701612cd8565b9350506020612e4286828701612cd8565b9250506040612e5386828701612d88565b9150509250925092565b60008060008060808587031215612e7757612e76613978565b5b6000612e8587828801612cd8565b9450506020612e9687828801612cd8565b9350506040612ea787828801612d88565b925050606085013567ffffffffffffffff811115612ec857612ec7613973565b5b612ed487828801612d2c565b91505092959194509250565b60008060408385031215612ef757612ef6613978565b5b6000612f0585828601612cd8565b9250506020612f1685828601612ced565b9150509250929050565b60008060408385031215612f3757612f36613978565b5b6000612f4585828601612cd8565b9250506020612f5685828601612d88565b9150509250929050565b600060208284031215612f7657612f75613978565b5b6000612f8484828501612ced565b91505092915050565b600060208284031215612fa357612fa2613978565b5b6000612fb184828501612d02565b91505092915050565b600060208284031215612fd057612fcf613978565b5b6000612fde84828501612d17565b91505092915050565b600060208284031215612ffd57612ffc613978565b5b600082013567ffffffffffffffff81111561301b5761301a613973565b5b61302784828501612d5a565b91505092915050565b60006020828403121561304657613045613978565b5b600061305484828501612d88565b91505092915050565b613066816136eb565b82525050565b613075816136fd565b82525050565b600061308682613588565b613090818561359e565b93506130a081856020860161376e565b6130a98161397d565b840191505092915050565b60006130bf82613593565b6130c981856135ba565b93506130d981856020860161376e565b6130e28161397d565b840191505092915050565b60006130f882613593565b61310281856135cb565b935061311281856020860161376e565b80840191505092915050565b6000815461312b816137a1565b61313581866135cb565b94506001821660008114613150576001811461316157613194565b60ff19831686528186019350613194565b61316a85613573565b60005b8381101561318c5781548189015260018201915060208101905061316d565b838801955050505b50505092915050565b60006131aa6012836135ba565b91506131b58261398e565b602082019050919050565b60006131cd6017836135ba565b91506131d8826139b7565b602082019050919050565b60006131f06026836135ba565b91506131fb826139e0565b604082019050919050565b60006132136011836135ba565b915061321e82613a2f565b602082019050919050565b60006132366020836135ba565b915061324182613a58565b602082019050919050565b60006132596016836135ba565b915061326482613a81565b602082019050919050565b600061327c6000836135af565b915061328782613aaa565b600082019050919050565b600061329f6012836135ba565b91506132aa82613aad565b602082019050919050565b60006132c2601f836135ba565b91506132cd82613ad6565b602082019050919050565b6132e181613755565b82525050565b60006132f382866130ed565b91506132ff82856130ed565b915061330b828461311e565b9150819050949350505050565b60006133238261326f565b9150819050919050565b6000602082019050613342600083018461305d565b92915050565b600060808201905061335d600083018761305d565b61336a602083018661305d565b61337760408301856132d8565b8181036060830152613389818461307b565b905095945050505050565b60006020820190506133a9600083018461306c565b92915050565b600060208201905081810360008301526133c981846130b4565b905092915050565b600060208201905081810360008301526133ea8161319d565b9050919050565b6000602082019050818103600083015261340a816131c0565b9050919050565b6000602082019050818103600083015261342a816131e3565b9050919050565b6000602082019050818103600083015261344a81613206565b9050919050565b6000602082019050818103600083015261346a81613229565b9050919050565b6000602082019050818103600083015261348a8161324c565b9050919050565b600060208201905081810360008301526134aa81613292565b9050919050565b600060208201905081810360008301526134ca816132b5565b9050919050565b60006020820190506134e660008301846132d8565b92915050565b60006134f6613507565b905061350282826137d3565b919050565b6000604051905090565b600067ffffffffffffffff82111561352c5761352b61393a565b5b6135358261397d565b9050602081019050919050565b600067ffffffffffffffff82111561355d5761355c61393a565b5b6135668261397d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135e182613755565b91506135ec83613755565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136215761362061387e565b5b828201905092915050565b600061363782613755565b915061364283613755565b925082613652576136516138ad565b5b828204905092915050565b600061366882613755565b915061367383613755565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136ac576136ab61387e565b5b828202905092915050565b60006136c282613755565b91506136cd83613755565b9250828210156136e0576136df61387e565b5b828203905092915050565b60006136f682613735565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561378c578082015181840152602081019050613771565b8381111561379b576000848401525b50505050565b600060028204905060018216806137b957607f821691505b602082108114156137cd576137cc6138dc565b5b50919050565b6137dc8261397d565b810181811067ffffffffffffffff821117156137fb576137fa61393a565b5b80604052505050565b600061380f82613755565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138425761384161387e565b5b600182019050919050565b600061385882613755565b915061386383613755565b925082613873576138726138ad565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f45786365656473206d6178696d756d20737570706c792e000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207175616e746974792e000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613b08816136eb565b8114613b1357600080fd5b50565b613b1f816136fd565b8114613b2a57600080fd5b50565b613b3681613709565b8114613b4157600080fd5b50565b613b4d81613755565b8114613b5857600080fd5b5056fea2646970667358221220c89aab152dcfd1a6b116c9d7e783a829d605eed8f0a6d8c6cbedc4d5250be98a64736f6c63430008060033

Deployed Bytecode Sourcemap

47576:2833:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29764:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50327:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32877:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34380:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33943:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49587:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29013:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47710:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35245:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49091:241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49461:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47669:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49701:161;;;:::i;:::-;;47755:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35486:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49870:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47968:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48009:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32685:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30133:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;50212:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33046:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48516:567;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50087:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34656:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35742:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48183:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47803:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47935:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49972:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35014:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29764:305;29866:4;29918:25;29903:40;;;:11;:40;;;;:105;;;;29975:33;29960:48;;;:11;:48;;;;29903:105;:158;;;;30025:36;30049:11;30025:23;:36::i;:::-;29903:158;29883:178;;29764:305;;;:::o;50327:79::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50392:6:::1;50383;;:15;;;;;;;;;;;;;;;;;;50327:79:::0;:::o;32877:100::-;32931:13;32964:5;32957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:100;:::o;34380:204::-;34448:7;34473:16;34481:7;34473;:16::i;:::-;34468:64;;34498:34;;;;;;;;;;;;;;34468:64;34552:15;:24;34568:7;34552:24;;;;;;;;;;;;;;;;;;;;;34545:31;;34380:204;;;:::o;33943:371::-;34016:13;34032:24;34048:7;34032:15;:24::i;:::-;34016:40;;34077:5;34071:11;;:2;:11;;;34067:48;;;34091:24;;;;;;;;;;;;;;34067:48;34148:5;34132:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34158:37;34175:5;34182:12;:10;:12::i;:::-;34158:16;:37::i;:::-;34157:38;34132:63;34128:138;;;34219:35;;;;;;;;;;;;;;34128:138;34278:28;34287:2;34291:7;34300:5;34278:8;:28::i;:::-;34005:309;33943:371;;:::o;49587:106::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49675:10:::1;49663:9;:22;;;;;;;;;;;;:::i;:::-;;49587:106:::0;:::o;29013:303::-;29057:7;29282:15;:13;:15::i;:::-;29267:12;;29251:13;;:28;:46;29244:53;;29013:303;:::o;47710:38::-;;;;:::o;35245:170::-;35379:28;35389:4;35395:2;35399:7;35379:9;:28::i;:::-;35245:170;;;:::o;49091:241::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49181:14:::1;49198:13;:11;:13::i;:::-;49181:30;;49251:12;;49239:8;49230:6;:17;;;;:::i;:::-;:33;;49222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49301:23;49311:2;49315:8;49301:9;:23::i;:::-;49170:162;49091:241:::0;;:::o;49461:118::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49558:13:::1;49543:12;:28;;;;;;;;;;;;:::i;:::-;;49461:118:::0;:::o;47669:34::-;;;;:::o;49701:161::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;49770:7:::2;49783:10;;;;;;;;;;;:15;;49806:21;49783:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49769:63;;;49851:2;49843:11;;;::::0;::::2;;49758:104;1801:1:::1;2755:7;:22;;;;49701:161::o:0;47755:41::-;;;;:::o;35486:185::-;35624:39;35641:4;35647:2;35651:7;35624:39;;;;;;;;;;;;:16;:39::i;:::-;35486:185;;;:::o;49870:94::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49947:9:::1;49934:10;:22;;;;49870:94:::0;:::o;47968:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48009:25::-;;;;;;;;;;;;;:::o;32685:125::-;32749:7;32776:21;32789:7;32776:12;:21::i;:::-;:26;;;32769:33;;32685:125;;;:::o;30133:206::-;30197:7;30238:1;30221:19;;:5;:19;;;30217:60;;;30249:28;;;;;;;;;;;;;;30217:60;30303:12;:19;30316:5;30303:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30295:36;;30288:43;;30133:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;50212:107::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50301:10:::1;50286:12;:25;;;;50212:107:::0;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;33046:104::-;33102:13;33135:7;33128:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:104;:::o;48516:567::-;48576:14;48593:13;:11;:13::i;:::-;48576:30;;48626:6;;;;;;;;;;;48625:7;48617:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48686:1;48675:8;:12;48674:47;;;;;48705:15;;48693:8;:27;;48674:47;48666:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48783:12;;48771:8;48762:6;:17;;;;:::i;:::-;:33;;48754:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48854:7;:5;:7::i;:::-;48840:21;;:10;:21;;;48836:196;;48880:13;48938;;48935:1;48926:8;:10;;;;:::i;:::-;48925:26;;;;:::i;:::-;48910:10;;48907:1;48898:8;:10;;;;:::i;:::-;48897:23;;;;:::i;:::-;48896:56;;;;:::i;:::-;48880:72;;48991:5;48978:9;:18;;48969:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48863:169;48836:196;49044:31;49054:10;49066:8;49044:9;:31::i;:::-;48565:518;48516:567;:::o;50087:117::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50180:16:::1;50162:15;:34;;;;50087:117:::0;:::o;34656:287::-;34767:12;:10;:12::i;:::-;34755:24;;:8;:24;;;34751:54;;;34788:17;;;;;;;;;;;;;;34751:54;34863:8;34818:18;:32;34837:12;:10;:12::i;:::-;34818:32;;;;;;;;;;;;;;;:42;34851:8;34818:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34916:8;34887:48;;34902:12;:10;:12::i;:::-;34887:48;;;34926:8;34887:48;;;;;;:::i;:::-;;;;;;;;34656:287;;:::o;35742:369::-;35909:28;35919:4;35925:2;35929:7;35909:9;:28::i;:::-;35952:15;:2;:13;;;:15::i;:::-;:76;;;;;35972:56;36003:4;36009:2;36013:7;36022:5;35972:30;:56::i;:::-;35971:57;35952:76;35948:156;;;36052:40;;;;;;;;;;;;;;35948:156;35742:369;;;;:::o;48183:325::-;48301:13;48337:16;48345:7;48337;:16::i;:::-;48332:59;;48362:29;;;;;;;;;;;;;;48332:59;48448:10;:8;:10::i;:::-;48460:27;48471:4;48461:7;:14;;;;:::i;:::-;48460:25;:27::i;:::-;48489:9;48431:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48404:96;;48183:325;;;:::o;47803:36::-;;;;:::o;47935:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49972:107::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50059:12:::1;50043:13;:28;;;;49972:107:::0;:::o;35014:164::-;35111:4;35135:18;:25;35154:5;35135:25;;;;;;;;;;;;;;;:35;35161:8;35135:35;;;;;;;;;;;;;;;;;;;;;;;;;35128:42;;35014:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;36366:174::-;36423:4;36466:7;36447:15;:13;:15::i;:::-;:26;;:53;;;;;36487:13;;36477:7;:23;36447:53;:85;;;;;36505:11;:20;36517:7;36505:20;;;;;;;;;;;:27;;;;;;;;;;;;36504:28;36447:85;36440:92;;36366:174;;;:::o;44523:196::-;44665:2;44638:15;:24;44654:7;44638:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44703:7;44699:2;44683:28;;44692:5;44683:28;;;;;;;;;;;;44523:196;;;:::o;28787:92::-;28843:7;28787:92;:::o;39466:2130::-;39581:35;39619:21;39632:7;39619:12;:21::i;:::-;39581:59;;39679:4;39657:26;;:13;:18;;;:26;;;39653:67;;39692:28;;;;;;;;;;;;;;39653:67;39733:22;39775:4;39759:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39796:36;39813:4;39819:12;:10;:12::i;:::-;39796:16;:36::i;:::-;39759:73;:126;;;;39873:12;:10;:12::i;:::-;39849:36;;:20;39861:7;39849:11;:20::i;:::-;:36;;;39759:126;39733:153;;39904:17;39899:66;;39930:35;;;;;;;;;;;;;;39899:66;39994:1;39980:16;;:2;:16;;;39976:52;;;40005:23;;;;;;;;;;;;;;39976:52;40041:43;40063:4;40069:2;40073:7;40082:1;40041:21;:43::i;:::-;40149:35;40166:1;40170:7;40179:4;40149:8;:35::i;:::-;40510:1;40480:12;:18;40493:4;40480:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40554:1;40526:12;:16;40539:2;40526:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40572:31;40606:11;:20;40618:7;40606:20;;;;;;;;;;;40572:54;;40657:2;40641:8;:13;;;:18;;;;;;;;;;;;;;;;;;40707:15;40674:8;:23;;;:49;;;;;;;;;;;;;;;;;;40975:19;41007:1;40997:7;:11;40975:33;;41023:31;41057:11;:24;41069:11;41057:24;;;;;;;;;;;41023:58;;41125:1;41100:27;;:8;:13;;;;;;;;;;;;:27;;;41096:384;;;41310:13;;41295:11;:28;41291:174;;41364:4;41348:8;:13;;;:20;;;;;;;;;;;;;;;;;;41417:13;:28;;;41391:8;:23;;;:54;;;;;;;;;;;;;;;;;;41291:174;41096:384;40455:1036;;;41527:7;41523:2;41508:27;;41517:4;41508:27;;;;;;;;;;;;41546:42;41567:4;41573:2;41577:7;41586:1;41546:20;:42::i;:::-;39570:2026;;39466:2130;;;:::o;36548:104::-;36617:27;36627:2;36631:8;36617:27;;;;;;;;;;;;:9;:27::i;:::-;36548:104;;:::o;31514:1109::-;31576:21;;:::i;:::-;31610:12;31625:7;31610:22;;31693:4;31674:15;:13;:15::i;:::-;:23;;:47;;;;;31708:13;;31701:4;:20;31674:47;31670:886;;;31742:31;31776:11;:17;31788:4;31776:17;;;;;;;;;;;31742:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31817:9;:16;;;31812:729;;31888:1;31862:28;;:9;:14;;;:28;;;31858:101;;31926:9;31919:16;;;;;;31858:101;32261:261;32268:4;32261:261;;;32301:6;;;;;;;;32346:11;:17;32358:4;32346:17;;;;;;;;;;;32334:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:1;32394:28;;:9;:14;;;:28;;;32390:109;;32462:9;32455:16;;;;;;32390:109;32261:261;;;31812:729;31723:833;31670:886;32584:31;;;;;;;;;;;;;;31514:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;45211:667::-;45374:4;45411:2;45395:36;;;45432:12;:10;:12::i;:::-;45446:4;45452:7;45461:5;45395:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45391:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45646:1;45629:6;:13;:18;45625:235;;;45675:40;;;;;;;;;;;;;;45625:235;45818:6;45812:13;45803:6;45799:2;45795:15;45788:38;45391:480;45524:45;;;45514:55;;;:6;:55;;;;45507:62;;;45211:667;;;;;;:::o;49340:113::-;49400:13;49433:12;49426:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49340:113;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;46526:159::-;;;;;:::o;47344:158::-;;;;;:::o;37015:163::-;37138:32;37144:2;37148:8;37158:5;37165:4;37138:5;:32::i;:::-;37015:163;;;:::o;37437:1775::-;37576:20;37599:13;;37576:36;;37641:1;37627:16;;:2;:16;;;37623:48;;;37652:19;;;;;;;;;;;;;;37623:48;37698:1;37686:8;:13;37682:44;;;37708:18;;;;;;;;;;;;;;37682:44;37739:61;37769:1;37773:2;37777:12;37791:8;37739:21;:61::i;:::-;38112:8;38077:12;:16;38090:2;38077:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38176:8;38136:12;:16;38149:2;38136:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38235:2;38202:11;:25;38214:12;38202:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38302:15;38252:11;:25;38264:12;38252:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38335:20;38358:12;38335:35;;38385:11;38414:8;38399:12;:23;38385:37;;38443:4;:23;;;;;38451:15;:2;:13;;;:15::i;:::-;38443:23;38439:641;;;38487:314;38543:12;38539:2;38518:38;;38535:1;38518:38;;;;;;;;;;;;38584:69;38623:1;38627:2;38631:14;;;;;;38647:5;38584:30;:69::i;:::-;38579:174;;38689:40;;;;;;;;;;;;;;38579:174;38796:3;38780:12;:19;;38487:314;;38882:12;38865:13;;:29;38861:43;;38896:8;;;38861:43;38439:641;;;38945:120;39001:14;;;;;;38997:2;38976:40;;38993:1;38976:40;;;;;;;;;;;;39060:3;39044:12;:19;;38945:120;;38439:641;39110:12;39094:13;:28;;;;38052:1082;;39144:60;39173:1;39177:2;39181:12;39195:8;39144:20;:60::i;:::-;37565:1647;37437:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1176:86;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1330:79;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:2;;1540:79;;:::i;:::-;1499:2;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:2;;1899:79;;:::i;:::-;1858:2;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2184:87;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2391:79;;:::i;:::-;2353:2;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2343:263;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2743:79;;:::i;:::-;2705:2;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2695:391;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3240:79;;:::i;:::-;3202:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3192:519;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:2;;;3892:79;;:::i;:::-;3853:2;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:2;;;4476:79;;:::i;:::-;4440:2;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3843:817;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:2;;;4794:79;;:::i;:::-;4756:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4746:388;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5271:79;;:::i;:::-;5233:2;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5223:391;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:2;;;5731:79;;:::i;:::-;5693:2;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5683:260;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:2;;;6062:79;;:::i;:::-;6024:2;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;6014:262;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:2;;;6406:79;;:::i;:::-;6368:2;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6358:273;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:2;;;6761:79;;:::i;:::-;6723:2;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:2;;;6961:79;;:::i;:::-;6925:2;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6713:433;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:2;;;7266:79;;:::i;:::-;7228:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7218:263;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7552:53;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7670:50;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9866:220;;;:::o;10092:366::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10238:220;;;:::o;10464:366::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10610:220;;;:::o;10836:366::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10982:220;;;:::o;11208:366::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11354:220;;;:::o;11580:366::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11726:220;;;:::o;11952:398::-;12111:3;12132:83;12213:1;12208:3;12132:83;:::i;:::-;12125:90;;12224:93;12313:3;12224:93;:::i;:::-;12342:1;12337:3;12333:11;12326:18;;12115:235;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12502:220;;;:::o;12728:366::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12874:220;;;:::o;13100:118::-;13187:24;13205:5;13187:24;:::i;:::-;13182:3;13175:37;13165:53;;:::o;13224:589::-;13449:3;13471:95;13562:3;13553:6;13471:95;:::i;:::-;13464:102;;13583:95;13674:3;13665:6;13583:95;:::i;:::-;13576:102;;13695:92;13783:3;13774:6;13695:92;:::i;:::-;13688:99;;13804:3;13797:10;;13453:360;;;;;;:::o;13819:379::-;14003:3;14025:147;14168:3;14025:147;:::i;:::-;14018:154;;14189:3;14182:10;;14007:191;;;:::o;14204:222::-;14297:4;14335:2;14324:9;14320:18;14312:26;;14348:71;14416:1;14405:9;14401:17;14392:6;14348:71;:::i;:::-;14302:124;;;;:::o;14432:640::-;14627:4;14665:3;14654:9;14650:19;14642:27;;14679:71;14747:1;14736:9;14732:17;14723:6;14679:71;:::i;:::-;14760:72;14828:2;14817:9;14813:18;14804:6;14760:72;:::i;:::-;14842;14910:2;14899:9;14895:18;14886:6;14842:72;:::i;:::-;14961:9;14955:4;14951:20;14946:2;14935:9;14931:18;14924:48;14989:76;15060:4;15051:6;14989:76;:::i;:::-;14981:84;;14632:440;;;;;;;:::o;15078:210::-;15165:4;15203:2;15192:9;15188:18;15180:26;;15216:65;15278:1;15267:9;15263:17;15254:6;15216:65;:::i;:::-;15170:118;;;;:::o;15294:313::-;15407:4;15445:2;15434:9;15430:18;15422:26;;15494:9;15488:4;15484:20;15480:1;15469:9;15465:17;15458:47;15522:78;15595:4;15586:6;15522:78;:::i;:::-;15514:86;;15412:195;;;;:::o;15613:419::-;15779:4;15817:2;15806:9;15802:18;15794:26;;15866:9;15860:4;15856:20;15852:1;15841:9;15837:17;15830:47;15894:131;16020:4;15894:131;:::i;:::-;15886:139;;15784:248;;;:::o;16038:419::-;16204:4;16242:2;16231:9;16227:18;16219:26;;16291:9;16285:4;16281:20;16277:1;16266:9;16262:17;16255:47;16319:131;16445:4;16319:131;:::i;:::-;16311:139;;16209:248;;;:::o;16463:419::-;16629:4;16667:2;16656:9;16652:18;16644:26;;16716:9;16710:4;16706:20;16702:1;16691:9;16687:17;16680:47;16744:131;16870:4;16744:131;:::i;:::-;16736:139;;16634:248;;;:::o;16888:419::-;17054:4;17092:2;17081:9;17077:18;17069:26;;17141:9;17135:4;17131:20;17127:1;17116:9;17112:17;17105:47;17169:131;17295:4;17169:131;:::i;:::-;17161:139;;17059:248;;;:::o;17313:419::-;17479:4;17517:2;17506:9;17502:18;17494:26;;17566:9;17560:4;17556:20;17552:1;17541:9;17537:17;17530:47;17594:131;17720:4;17594:131;:::i;:::-;17586:139;;17484:248;;;:::o;17738:419::-;17904:4;17942:2;17931:9;17927:18;17919:26;;17991:9;17985:4;17981:20;17977:1;17966:9;17962:17;17955:47;18019:131;18145:4;18019:131;:::i;:::-;18011:139;;17909:248;;;:::o;18163:419::-;18329:4;18367:2;18356:9;18352:18;18344:26;;18416:9;18410:4;18406:20;18402:1;18391:9;18387:17;18380:47;18444:131;18570:4;18444:131;:::i;:::-;18436:139;;18334:248;;;:::o;18588:419::-;18754:4;18792:2;18781:9;18777:18;18769:26;;18841:9;18835:4;18831:20;18827:1;18816:9;18812:17;18805:47;18869:131;18995:4;18869:131;:::i;:::-;18861:139;;18759:248;;;:::o;19013:222::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19157:71;19225:1;19214:9;19210:17;19201:6;19157:71;:::i;:::-;19111:124;;;;:::o;19241:129::-;19275:6;19302:20;;:::i;:::-;19292:30;;19331:33;19359:4;19351:6;19331:33;:::i;:::-;19282:88;;;:::o;19376:75::-;19409:6;19442:2;19436:9;19426:19;;19416:35;:::o;19457:307::-;19518:4;19608:18;19600:6;19597:30;19594:2;;;19630:18;;:::i;:::-;19594:2;19668:29;19690:6;19668:29;:::i;:::-;19660:37;;19752:4;19746;19742:15;19734:23;;19523:241;;;:::o;19770:308::-;19832:4;19922:18;19914:6;19911:30;19908:2;;;19944:18;;:::i;:::-;19908:2;19982:29;20004:6;19982:29;:::i;:::-;19974:37;;20066:4;20060;20056:15;20048:23;;19837:241;;;:::o;20084:141::-;20133:4;20156:3;20148:11;;20179:3;20176:1;20169:14;20213:4;20210:1;20200:18;20192:26;;20138:87;;;:::o;20231:98::-;20282:6;20316:5;20310:12;20300:22;;20289:40;;;:::o;20335:99::-;20387:6;20421:5;20415:12;20405:22;;20394:40;;;:::o;20440:168::-;20523:11;20557:6;20552:3;20545:19;20597:4;20592:3;20588:14;20573:29;;20535:73;;;;:::o;20614:147::-;20715:11;20752:3;20737:18;;20727:34;;;;:::o;20767:169::-;20851:11;20885:6;20880:3;20873:19;20925:4;20920:3;20916:14;20901:29;;20863:73;;;;:::o;20942:148::-;21044:11;21081:3;21066:18;;21056:34;;;;:::o;21096:305::-;21136:3;21155:20;21173:1;21155:20;:::i;:::-;21150:25;;21189:20;21207:1;21189:20;:::i;:::-;21184:25;;21343:1;21275:66;21271:74;21268:1;21265:81;21262:2;;;21349:18;;:::i;:::-;21262:2;21393:1;21390;21386:9;21379:16;;21140:261;;;;:::o;21407:185::-;21447:1;21464:20;21482:1;21464:20;:::i;:::-;21459:25;;21498:20;21516:1;21498:20;:::i;:::-;21493:25;;21537:1;21527:2;;21542:18;;:::i;:::-;21527:2;21584:1;21581;21577:9;21572:14;;21449:143;;;;:::o;21598:348::-;21638:7;21661:20;21679:1;21661:20;:::i;:::-;21656:25;;21695:20;21713:1;21695:20;:::i;:::-;21690:25;;21883:1;21815:66;21811:74;21808:1;21805:81;21800:1;21793:9;21786:17;21782:105;21779:2;;;21890:18;;:::i;:::-;21779:2;21938:1;21935;21931:9;21920:20;;21646:300;;;;:::o;21952:191::-;21992:4;22012:20;22030:1;22012:20;:::i;:::-;22007:25;;22046:20;22064:1;22046:20;:::i;:::-;22041:25;;22085:1;22082;22079:8;22076:2;;;22090:18;;:::i;:::-;22076:2;22135:1;22132;22128:9;22120:17;;21997:146;;;;:::o;22149:96::-;22186:7;22215:24;22233:5;22215:24;:::i;:::-;22204:35;;22194:51;;;:::o;22251:90::-;22285:7;22328:5;22321:13;22314:21;22303:32;;22293:48;;;:::o;22347:149::-;22383:7;22423:66;22416:5;22412:78;22401:89;;22391:105;;;:::o;22502:126::-;22539:7;22579:42;22572:5;22568:54;22557:65;;22547:81;;;:::o;22634:77::-;22671:7;22700:5;22689:16;;22679:32;;;:::o;22717:154::-;22801:6;22796:3;22791;22778:30;22863:1;22854:6;22849:3;22845:16;22838:27;22768:103;;;:::o;22877:307::-;22945:1;22955:113;22969:6;22966:1;22963:13;22955:113;;;23054:1;23049:3;23045:11;23039:18;23035:1;23030:3;23026:11;23019:39;22991:2;22988:1;22984:10;22979:15;;22955:113;;;23086:6;23083:1;23080:13;23077:2;;;23166:1;23157:6;23152:3;23148:16;23141:27;23077:2;22926:258;;;;:::o;23190:320::-;23234:6;23271:1;23265:4;23261:12;23251:22;;23318:1;23312:4;23308:12;23339:18;23329:2;;23395:4;23387:6;23383:17;23373:27;;23329:2;23457;23449:6;23446:14;23426:18;23423:38;23420:2;;;23476:18;;:::i;:::-;23420:2;23241:269;;;;:::o;23516:281::-;23599:27;23621:4;23599:27;:::i;:::-;23591:6;23587:40;23729:6;23717:10;23714:22;23693:18;23681:10;23678:34;23675:62;23672:2;;;23740:18;;:::i;:::-;23672:2;23780:10;23776:2;23769:22;23559:238;;;:::o;23803:233::-;23842:3;23865:24;23883:5;23865:24;:::i;:::-;23856:33;;23911:66;23904:5;23901:77;23898:2;;;23981:18;;:::i;:::-;23898:2;24028:1;24021:5;24017:13;24010:20;;23846:190;;;:::o;24042:176::-;24074:1;24091:20;24109:1;24091:20;:::i;:::-;24086:25;;24125:20;24143:1;24125:20;:::i;:::-;24120:25;;24164:1;24154:2;;24169:18;;:::i;:::-;24154:2;24210:1;24207;24203:9;24198:14;;24076:142;;;;:::o;24224:180::-;24272:77;24269:1;24262:88;24369:4;24366:1;24359:15;24393:4;24390:1;24383:15;24410:180;24458:77;24455:1;24448:88;24555:4;24552:1;24545:15;24579:4;24576:1;24569:15;24596:180;24644:77;24641:1;24634:88;24741:4;24738:1;24731:15;24765:4;24762:1;24755:15;24782:180;24830:77;24827:1;24820:88;24927:4;24924:1;24917:15;24951:4;24948:1;24941:15;24968:180;25016:77;25013:1;25006:88;25113:4;25110:1;25103:15;25137:4;25134:1;25127:15;25154:117;25263:1;25260;25253:12;25277:117;25386:1;25383;25376:12;25400:117;25509:1;25506;25499:12;25523:117;25632:1;25629;25622:12;25646:102;25687:6;25738:2;25734:7;25729:2;25722:5;25718:14;25714:28;25704:38;;25694:54;;;:::o;25754:168::-;25894:20;25890:1;25882:6;25878:14;25871:44;25860:62;:::o;25928:173::-;26068:25;26064:1;26056:6;26052:14;26045:49;26034:67;:::o;26107:225::-;26247:34;26243:1;26235:6;26231:14;26224:58;26316:8;26311:2;26303:6;26299:15;26292:33;26213:119;:::o;26338:167::-;26478:19;26474:1;26466:6;26462:14;26455:43;26444:61;:::o;26511:182::-;26651:34;26647:1;26639:6;26635:14;26628:58;26617:76;:::o;26699:172::-;26839:24;26835:1;26827:6;26823:14;26816:48;26805:66;:::o;26877:114::-;26983:8;:::o;26997:168::-;27137:20;27133:1;27125:6;27121:14;27114:44;27103:62;:::o;27171:181::-;27311:33;27307:1;27299:6;27295:14;27288:57;27277:75;:::o;27358:122::-;27431:24;27449:5;27431:24;:::i;:::-;27424:5;27421:35;27411:2;;27470:1;27467;27460:12;27411:2;27401:79;:::o;27486:116::-;27556:21;27571:5;27556:21;:::i;:::-;27549:5;27546:32;27536:2;;27592:1;27589;27582:12;27536:2;27526:76;:::o;27608:120::-;27680:23;27697:5;27680:23;:::i;:::-;27673:5;27670:34;27660:2;;27718:1;27715;27708:12;27660:2;27650:78;:::o;27734:122::-;27807:24;27825:5;27807:24;:::i;:::-;27800:5;27797:35;27787:2;;27846:1;27843;27836:12;27787:2;27777:79;:::o

Swarm Source

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