ETH Price: $3,058.62 (+1.14%)
Gas: 3 Gwei

Token

RingerPunks (RNGRP)
 

Overview

Max Total Supply

5,555 RNGRP

Holders

1,362

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 RNGRP
0x1c66c8f500636fa69c0ced0227244c443a9f1748
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:
RingerPunks

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-18
*/

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.17;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

    /**
     * @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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 {}

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/contracts/RINGERPUNKS.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.20;





//I AM PUNK
contract RingerPunks is ERC721A, ERC2981, DefaultOperatorFilterer, Ownable {

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant PRICE = 0.003 ether;
    uint256 public constant MAX_PER_WALLET = 5;

    string private baseUri;
    bool public isMintActive = false;

    constructor(
        string memory _baseUri
    ) ERC721A("RingerPunks", "RNGRP") {
        _mint(msg.sender, 1);
        baseUri = _baseUri;
        setDefaultRoyalty(msg.sender, 500);
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool){
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }

    //puUUUUUUUUUUUUUUUUUUUUUUNK miNt
    function mint(uint256 mintAmount) public payable {
        require(msg.sender == tx.origin, "No contracts");
        require(isMintActive, "Sale not active");
        require(_totalMinted() + mintAmount <= MAX_SUPPLY, "Exceeds max supply");
        require(balanceOf(msg.sender) + mintAmount <= MAX_PER_WALLET, "Exceeds max per wallet");
        uint256 _quantity = mintAmount;
        uint256 freeMinted = _getAux(msg.sender);
        if (freeMinted < 1) {
            _quantity = mintAmount - 1;
            _setAux(msg.sender, 1);
        }
        if (_quantity > 0) {
            require(PRICE * _quantity <= msg.value,"Insufficient funds sent");
        }
        _mint(msg.sender, mintAmount);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    function withdrawAll() external onlyOwner {
        (bool os, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(os);
    }

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

    function setMintActive(bool mintState) external onlyOwner {
        isMintActive = mintState;
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function deleteDefaultRoyalty() public onlyOwner {
        _deleteDefaultRoyalty();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintState","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040525f600c5f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040516200456a3803806200456a83398181016040528101906200004f919062000a81565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f52696e67657250756e6b730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f524e4752500000000000000000000000000000000000000000000000000000008152508160029081620000e3919062000d07565b508060039081620000f5919062000d07565b50620001066200035360201b60201c565b5f8190555050505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002f1578015620001c2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018d92919062000e2e565b5f604051808303815f87803b158015620001a5575f80fd5b505af1158015620001b8573d5f803e3d5ffd5b50505050620002f0565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000276576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200024192919062000e2e565b5f604051808303815f87803b15801562000259575f80fd5b505af11580156200026c573d5f803e3d5ffd5b50505050620002ef565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002bf919062000e59565b5f604051808303815f87803b158015620002d7575f80fd5b505af1158015620002ea573d5f803e3d5ffd5b505050505b5b5b505062000313620003076200035b60201b60201c565b6200036260201b60201c565b620003263360016200042560201b60201c565b80600b908162000337919062000d07565b506200034c336101f4620005fa60201b60201c565b5062000ff4565b5f6001905090565b5f33905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820362000464576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004785f8483856200062060201b60201c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506200050283620004e45f865f6200062660201b60201c565b620004f5856200065560201b60201c565b176200066460201b60201c565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146200059e5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905062000563565b505f8203620005d9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050620005f55f8483856200068e60201b60201c565b505050565b6200060a6200069460201b60201c565b6200061c82826200072560201b60201c565b5050565b50505050565b5f8060e883901c905060e862000644868684620008c360201b60201c565b62ffffff16901b9150509392505050565b5f6001821460e11b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b620006a46200035b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006ca620008cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071a9062000ed2565b60405180910390fd5b565b62000735620008f360201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000796576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078d9062000f66565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000807576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fe9062000fd4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f9392505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f612710905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200095d8262000915565b810181811067ffffffffffffffff821117156200097f576200097e62000925565b5b80604052505050565b5f62000993620008fc565b9050620009a1828262000952565b919050565b5f67ffffffffffffffff821115620009c357620009c262000925565b5b620009ce8262000915565b9050602081019050919050565b5f5b83811015620009fa578082015181840152602081019050620009dd565b5f8484015250505050565b5f62000a1b62000a1584620009a6565b62000988565b90508281526020810184848401111562000a3a5762000a3962000911565b5b62000a47848285620009db565b509392505050565b5f82601f83011262000a665762000a656200090d565b5b815162000a7884826020860162000a05565b91505092915050565b5f6020828403121562000a995762000a9862000905565b5b5f82015167ffffffffffffffff81111562000ab95762000ab862000909565b5b62000ac78482850162000a4f565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b1f57607f821691505b60208210810362000b355762000b3462000ada565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b5c565b62000ba5868362000b5c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000bef62000be962000be38462000bbd565b62000bc6565b62000bbd565b9050919050565b5f819050919050565b62000c0a8362000bcf565b62000c2262000c198262000bf6565b84845462000b68565b825550505050565b5f90565b62000c3862000c2a565b62000c4581848462000bff565b505050565b5b8181101562000c6c5762000c605f8262000c2e565b60018101905062000c4b565b5050565b601f82111562000cbb5762000c858162000b3b565b62000c908462000b4d565b8101602085101562000ca0578190505b62000cb862000caf8562000b4d565b83018262000c4a565b50505b505050565b5f82821c905092915050565b5f62000cdd5f198460080262000cc0565b1980831691505092915050565b5f62000cf7838362000ccc565b9150826002028217905092915050565b62000d128262000ad0565b67ffffffffffffffff81111562000d2e5762000d2d62000925565b5b62000d3a825462000b07565b62000d4782828562000c70565b5f60209050601f83116001811462000d7d575f841562000d68578287015190505b62000d74858262000cea565b86555062000de3565b601f19841662000d8d8662000b3b565b5f5b8281101562000db65784890151825560018201915060208501945060208101905062000d8f565b8683101562000dd6578489015162000dd2601f89168262000ccc565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e168262000deb565b9050919050565b62000e288162000e0a565b82525050565b5f60408201905062000e435f83018562000e1d565b62000e52602083018462000e1d565b9392505050565b5f60208201905062000e6e5f83018462000e1d565b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000eba60208362000e74565b915062000ec78262000e84565b602082019050919050565b5f6020820190508181035f83015262000eeb8162000eac565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f62000f4e602a8362000e74565b915062000f5b8262000ef2565b604082019050919050565b5f6020820190508181035f83015262000f7f8162000f40565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f62000fbc60198362000e74565b915062000fc98262000f86565b602082019050919050565b5f6020820190508181035f83015262000fed8162000fae565b9050919050565b61356880620010025f395ff3fe6080604052600436106101c1575f3560e01c806370a08231116100f6578063a0bcfc7f11610094578063c87b56dd11610063578063c87b56dd146105b2578063e985e9c5146105ee578063ee1cc9441461062a578063f2fde38b14610652576101c1565b8063a0bcfc7f14610530578063a22cb46514610558578063aa1b103f14610580578063b88d4fde14610596576101c1565b80638d859f3e116100d05780638d859f3e146104965780638da5cb5b146104c057806395d89b41146104ea578063a0712d6814610514576101c1565b806370a082311461042e578063715018a61461046a578063853828b614610480576101c1565b806323b872dd1161016357806341f434341161013d57806341f434341461038257806342842e0e146103ac5780635b92ac0d146103c85780636352211e146103f2576101c1565b806323b872dd146102ff5780632a55205a1461031b57806332cb6b0c14610358576101c1565b8063081812fc1161019f578063081812fc14610253578063095ea7b31461028f5780630f2cdd6c146102ab57806318160ddd146102d5576101c1565b806301ffc9a7146101c557806304634d8d1461020157806306fdde0314610229575b5f80fd5b3480156101d0575f80fd5b506101eb60048036038101906101e691906123eb565b61067a565b6040516101f89190612430565b60405180910390f35b34801561020c575f80fd5b50610227600480360381019061022291906124e4565b61069b565b005b348015610234575f80fd5b5061023d6106b1565b60405161024a91906125ac565b60405180910390f35b34801561025e575f80fd5b50610279600480360381019061027491906125ff565b610741565b6040516102869190612639565b60405180910390f35b6102a960048036038101906102a49190612652565b6107bb565b005b3480156102b6575f80fd5b506102bf6107d4565b6040516102cc919061269f565b60405180910390f35b3480156102e0575f80fd5b506102e96107d9565b6040516102f6919061269f565b60405180910390f35b610319600480360381019061031491906126b8565b6107ee565b005b348015610326575f80fd5b50610341600480360381019061033c9190612708565b61083d565b60405161034f929190612746565b60405180910390f35b348015610363575f80fd5b5061036c610a19565b604051610379919061269f565b60405180910390f35b34801561038d575f80fd5b50610396610a1f565b6040516103a391906127c8565b60405180910390f35b6103c660048036038101906103c191906126b8565b610a31565b005b3480156103d3575f80fd5b506103dc610a80565b6040516103e99190612430565b60405180910390f35b3480156103fd575f80fd5b50610418600480360381019061041391906125ff565b610a92565b6040516104259190612639565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f91906127e1565b610aa3565b604051610461919061269f565b60405180910390f35b348015610475575f80fd5b5061047e610b58565b005b34801561048b575f80fd5b50610494610b6b565b005b3480156104a1575f80fd5b506104aa610be7565b6040516104b7919061269f565b60405180910390f35b3480156104cb575f80fd5b506104d4610bf2565b6040516104e19190612639565b60405180910390f35b3480156104f5575f80fd5b506104fe610c1a565b60405161050b91906125ac565b60405180910390f35b61052e600480360381019061052991906125ff565b610caa565b005b34801561053b575f80fd5b5061055660048036038101906105519190612938565b610ebf565b005b348015610563575f80fd5b5061057e600480360381019061057991906129a9565b610eda565b005b34801561058b575f80fd5b50610594610ef3565b005b6105b060048036038101906105ab9190612a85565b610f05565b005b3480156105bd575f80fd5b506105d860048036038101906105d391906125ff565b610f56565b6040516105e591906125ac565b60405180910390f35b3480156105f9575f80fd5b50610614600480360381019061060f9190612b05565b610ff1565b6040516106219190612430565b60405180910390f35b348015610635575f80fd5b50610650600480360381019061064b9190612b43565b61107f565b005b34801561065d575f80fd5b50610678600480360381019061067391906127e1565b6110a3565b005b5f61068482611125565b806106945750610693826111b6565b5b9050919050565b6106a361122f565b6106ad82826112ad565b5050565b6060600280546106c090612b9b565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90612b9b565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b5f61074b8261143d565b610781576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107c581611497565b6107cf8383611591565b505050565b600581565b5f6107e26116d0565b6001545f540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461082c5761082b33611497565b5b6108378484846116d8565b50505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16036109c65760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f6109cf6119e6565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866109fb9190612bf8565b610a059190612c66565b9050815f0151819350935050509250929050565b6115b381565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6f57610a6e33611497565b5b610a7a8484846119ef565b50505050565b600c5f9054906101000a900460ff1681565b5f610a9c82611a0e565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610b6061122f565b610b695f611ad1565b565b610b7361122f565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610b9890612cc3565b5f6040518083038185875af1925050503d805f8114610bd2576040519150601f19603f3d011682016040523d82523d5f602084013e610bd7565b606091505b5050905080610be4575f80fd5b50565b660aa87bee53800081565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c2990612b9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612b9b565b8015610ca05780601f10610c7757610100808354040283529160200191610ca0565b820191905f5260205f20905b815481529060010190602001808311610c8357829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90612d21565b60405180910390fd5b600c5f9054906101000a900460ff16610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90612d89565b60405180910390fd5b6115b381610d72611b94565b610d7c9190612da7565b1115610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612e24565b60405180910390fd5b600581610dc933610aa3565b610dd39190612da7565b1115610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90612e8c565b60405180910390fd5b5f8190505f610e2233611ba5565b67ffffffffffffffff1690506001811015610e5257600183610e449190612eaa565b9150610e51336001611bef565b5b5f821115610eb0573482660aa87bee538000610e6e9190612bf8565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690612f27565b60405180910390fd5b5b610eba3384611c9f565b505050565b610ec761122f565b80600b9081610ed691906130d9565b5050565b81610ee481611497565b610eee8383611e48565b505050565b610efb61122f565b610f03611f4e565b565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4357610f4233611497565b5b610f4f85858585611f98565b5050505050565b6060610f618261143d565b610f97576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f610fa061200a565b90505f815103610fbe5760405180602001604052805f815250610fe9565b80610fc88461209a565b604051602001610fd99291906131e2565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61108761122f565b80600c5f6101000a81548160ff02191690831515021790555050565b6110ab61122f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613275565b60405180910390fd5b61112281611ad1565b50565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061117f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112285750611227826120e9565b5b9050919050565b611237612152565b73ffffffffffffffffffffffffffffffffffffffff16611255610bf2565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a2906132dd565b60405180910390fd5b565b6112b56119e6565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a9061336b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611378906133d3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f816114476116d0565b1115801561145557505f5482105b801561149057505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561158e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161150d9291906133f1565b602060405180830381865afa158015611528573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154c919061342c565b61158d57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115849190612639565b60405180910390fd5b5b50565b5f61159b82610a92565b90508073ffffffffffffffffffffffffffffffffffffffff166115bc612159565b73ffffffffffffffffffffffffffffffffffffffff161461161f576115e8816115e3612159565b610ff1565b61161e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f6116e282611a0e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611749576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061175484612160565b9150915061176a8187611765612159565b612183565b6117b65761177f8661177a612159565b610ff1565b6117b5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361181b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61182886868660016121c6565b8015611832575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506118fa856118d68888876121cc565b7c0200000000000000000000000000000000000000000000000000000000176121f3565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611976575f6001850190505f60045f8381526020019081526020015f205403611974575f548114611973578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119de868686600161221d565b505050505050565b5f612710905090565b611a0983838360405180602001604052805f815250610f05565b505050565b5f8082905080611a1c6116d0565b11611a9a575f54811015611a99575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611a97575b5f8103611a8d5760045f836001900393508381526020019081526020015f20549050611a66565b8092505050611acc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f611b9d6116d0565b5f5403905090565b5f60c060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c9050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f82905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff83161791508160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505050565b5f805490505f8203611cdd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce95f8483856121c6565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611d5b83611d4c5f865f6121cc565b611d5585612223565b176121f3565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611df55780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611dbc565b505f8203611e2f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611e435f84838561221d565b505050565b8060075f611e54612159565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611efd612159565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f429190612430565b60405180910390a35050565b60085f8082015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f820160146101000a8154906bffffffffffffffffffffffff02191690555050565b611fa38484846107ee565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461200457611fcd84848484612232565b612003576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461201990612b9b565b80601f016020809104026020016040519081016040528092919081815260200182805461204590612b9b565b80156120905780601f1061206757610100808354040283529160200191612090565b820191905f5260205f20905b81548152906001019060200180831161207357829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b6001156120d457600184039350600a81066030018453600a81049050806120b2575b50828103602084039350808452505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86121e286868461237d565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612257612159565b8786866040518563ffffffff1660e01b815260040161227994939291906134a9565b6020604051808303815f875af19250505080156122b457506040513d601f19601f820116820180604052508101906122b19190613507565b60015b61232a573d805f81146122e2576040519150601f19603f3d011682016040523d82523d5f602084013e6122e7565b606091505b505f815103612322576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ca81612396565b81146123d4575f80fd5b50565b5f813590506123e5816123c1565b92915050565b5f60208284031215612400576123ff61238e565b5b5f61240d848285016123d7565b91505092915050565b5f8115159050919050565b61242a81612416565b82525050565b5f6020820190506124435f830184612421565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61247282612449565b9050919050565b61248281612468565b811461248c575f80fd5b50565b5f8135905061249d81612479565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b6124c3816124a3565b81146124cd575f80fd5b50565b5f813590506124de816124ba565b92915050565b5f80604083850312156124fa576124f961238e565b5b5f6125078582860161248f565b9250506020612518858286016124d0565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561255957808201518184015260208101905061253e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61257e82612522565b612588818561252c565b935061259881856020860161253c565b6125a181612564565b840191505092915050565b5f6020820190508181035f8301526125c48184612574565b905092915050565b5f819050919050565b6125de816125cc565b81146125e8575f80fd5b50565b5f813590506125f9816125d5565b92915050565b5f602082840312156126145761261361238e565b5b5f612621848285016125eb565b91505092915050565b61263381612468565b82525050565b5f60208201905061264c5f83018461262a565b92915050565b5f80604083850312156126685761266761238e565b5b5f6126758582860161248f565b9250506020612686858286016125eb565b9150509250929050565b612699816125cc565b82525050565b5f6020820190506126b25f830184612690565b92915050565b5f805f606084860312156126cf576126ce61238e565b5b5f6126dc8682870161248f565b93505060206126ed8682870161248f565b92505060406126fe868287016125eb565b9150509250925092565b5f806040838503121561271e5761271d61238e565b5b5f61272b858286016125eb565b925050602061273c858286016125eb565b9150509250929050565b5f6040820190506127595f83018561262a565b6127666020830184612690565b9392505050565b5f819050919050565b5f61279061278b61278684612449565b61276d565b612449565b9050919050565b5f6127a182612776565b9050919050565b5f6127b282612797565b9050919050565b6127c2816127a8565b82525050565b5f6020820190506127db5f8301846127b9565b92915050565b5f602082840312156127f6576127f561238e565b5b5f6128038482850161248f565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61284a82612564565b810181811067ffffffffffffffff8211171561286957612868612814565b5b80604052505050565b5f61287b612385565b90506128878282612841565b919050565b5f67ffffffffffffffff8211156128a6576128a5612814565b5b6128af82612564565b9050602081019050919050565b828183375f83830152505050565b5f6128dc6128d78461288c565b612872565b9050828152602081018484840111156128f8576128f7612810565b5b6129038482856128bc565b509392505050565b5f82601f83011261291f5761291e61280c565b5b813561292f8482602086016128ca565b91505092915050565b5f6020828403121561294d5761294c61238e565b5b5f82013567ffffffffffffffff81111561296a57612969612392565b5b6129768482850161290b565b91505092915050565b61298881612416565b8114612992575f80fd5b50565b5f813590506129a38161297f565b92915050565b5f80604083850312156129bf576129be61238e565b5b5f6129cc8582860161248f565b92505060206129dd85828601612995565b9150509250929050565b5f67ffffffffffffffff821115612a0157612a00612814565b5b612a0a82612564565b9050602081019050919050565b5f612a29612a24846129e7565b612872565b905082815260208101848484011115612a4557612a44612810565b5b612a508482856128bc565b509392505050565b5f82601f830112612a6c57612a6b61280c565b5b8135612a7c848260208601612a17565b91505092915050565b5f805f8060808587031215612a9d57612a9c61238e565b5b5f612aaa8782880161248f565b9450506020612abb8782880161248f565b9350506040612acc878288016125eb565b925050606085013567ffffffffffffffff811115612aed57612aec612392565b5b612af987828801612a58565b91505092959194509250565b5f8060408385031215612b1b57612b1a61238e565b5b5f612b288582860161248f565b9250506020612b398582860161248f565b9150509250929050565b5f60208284031215612b5857612b5761238e565b5b5f612b6584828501612995565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612bb257607f821691505b602082108103612bc557612bc4612b6e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c02826125cc565b9150612c0d836125cc565b9250828202612c1b816125cc565b91508282048414831517612c3257612c31612bcb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c70826125cc565b9150612c7b836125cc565b925082612c8b57612c8a612c39565b5b828204905092915050565b5f81905092915050565b50565b5f612cae5f83612c96565b9150612cb982612ca0565b5f82019050919050565b5f612ccd82612ca3565b9150819050919050565b7f4e6f20636f6e74726163747300000000000000000000000000000000000000005f82015250565b5f612d0b600c8361252c565b9150612d1682612cd7565b602082019050919050565b5f6020820190508181035f830152612d3881612cff565b9050919050565b7f53616c65206e6f742061637469766500000000000000000000000000000000005f82015250565b5f612d73600f8361252c565b9150612d7e82612d3f565b602082019050919050565b5f6020820190508181035f830152612da081612d67565b9050919050565b5f612db1826125cc565b9150612dbc836125cc565b9250828201905080821115612dd457612dd3612bcb565b5b92915050565b7f45786365656473206d617820737570706c7900000000000000000000000000005f82015250565b5f612e0e60128361252c565b9150612e1982612dda565b602082019050919050565b5f6020820190508181035f830152612e3b81612e02565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f612e7660168361252c565b9150612e8182612e42565b602082019050919050565b5f6020820190508181035f830152612ea381612e6a565b9050919050565b5f612eb4826125cc565b9150612ebf836125cc565b9250828203905081811115612ed757612ed6612bcb565b5b92915050565b7f496e73756666696369656e742066756e64732073656e740000000000000000005f82015250565b5f612f1160178361252c565b9150612f1c82612edd565b602082019050919050565b5f6020820190508181035f830152612f3e81612f05565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612fa17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f66565b612fab8683612f66565b95508019841693508086168417925050509392505050565b5f612fdd612fd8612fd3846125cc565b61276d565b6125cc565b9050919050565b5f819050919050565b612ff683612fc3565b61300a61300282612fe4565b848454612f72565b825550505050565b5f90565b61301e613012565b613029818484612fed565b505050565b5b8181101561304c576130415f82613016565b60018101905061302f565b5050565b601f8211156130915761306281612f45565b61306b84612f57565b8101602085101561307a578190505b61308e61308685612f57565b83018261302e565b50505b505050565b5f82821c905092915050565b5f6130b15f1984600802613096565b1980831691505092915050565b5f6130c983836130a2565b9150826002028217905092915050565b6130e282612522565b67ffffffffffffffff8111156130fb576130fa612814565b5b6131058254612b9b565b613110828285613050565b5f60209050601f831160018114613141575f841561312f578287015190505b61313985826130be565b8655506131a0565b601f19841661314f86612f45565b5f5b8281101561317657848901518255600182019150602085019450602081019050613151565b86831015613193578489015161318f601f8916826130a2565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f6131bc82612522565b6131c681856131a8565b93506131d681856020860161253c565b80840191505092915050565b5f6131ed82856131b2565b91506131f982846131b2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61325f60268361252c565b915061326a82613205565b604082019050919050565b5f6020820190508181035f83015261328c81613253565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6132c760208361252c565b91506132d282613293565b602082019050919050565b5f6020820190508181035f8301526132f4816132bb565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f613355602a8361252c565b9150613360826132fb565b604082019050919050565b5f6020820190508181035f83015261338281613349565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f6133bd60198361252c565b91506133c882613389565b602082019050919050565b5f6020820190508181035f8301526133ea816133b1565b9050919050565b5f6040820190506134045f83018561262a565b613411602083018461262a565b9392505050565b5f815190506134268161297f565b92915050565b5f602082840312156134415761344061238e565b5b5f61344e84828501613418565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f61347b82613457565b6134858185613461565b935061349581856020860161253c565b61349e81612564565b840191505092915050565b5f6080820190506134bc5f83018761262a565b6134c9602083018661262a565b6134d66040830185612690565b81810360608301526134e88184613471565b905095945050505050565b5f81519050613501816123c1565b92915050565b5f6020828403121561351c5761351b61238e565b5b5f613529848285016134f3565b9150509291505056fea26469706673582212209810d08dea91023909207b70ecbabba074eb8f1c106bb884dc17cf5800d76c3864736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696132666a6f6d357366736a73376e32636d34347a33743461366b69686d746a69666d336d36637a36646e78633534723376646c712f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c1575f3560e01c806370a08231116100f6578063a0bcfc7f11610094578063c87b56dd11610063578063c87b56dd146105b2578063e985e9c5146105ee578063ee1cc9441461062a578063f2fde38b14610652576101c1565b8063a0bcfc7f14610530578063a22cb46514610558578063aa1b103f14610580578063b88d4fde14610596576101c1565b80638d859f3e116100d05780638d859f3e146104965780638da5cb5b146104c057806395d89b41146104ea578063a0712d6814610514576101c1565b806370a082311461042e578063715018a61461046a578063853828b614610480576101c1565b806323b872dd1161016357806341f434341161013d57806341f434341461038257806342842e0e146103ac5780635b92ac0d146103c85780636352211e146103f2576101c1565b806323b872dd146102ff5780632a55205a1461031b57806332cb6b0c14610358576101c1565b8063081812fc1161019f578063081812fc14610253578063095ea7b31461028f5780630f2cdd6c146102ab57806318160ddd146102d5576101c1565b806301ffc9a7146101c557806304634d8d1461020157806306fdde0314610229575b5f80fd5b3480156101d0575f80fd5b506101eb60048036038101906101e691906123eb565b61067a565b6040516101f89190612430565b60405180910390f35b34801561020c575f80fd5b50610227600480360381019061022291906124e4565b61069b565b005b348015610234575f80fd5b5061023d6106b1565b60405161024a91906125ac565b60405180910390f35b34801561025e575f80fd5b50610279600480360381019061027491906125ff565b610741565b6040516102869190612639565b60405180910390f35b6102a960048036038101906102a49190612652565b6107bb565b005b3480156102b6575f80fd5b506102bf6107d4565b6040516102cc919061269f565b60405180910390f35b3480156102e0575f80fd5b506102e96107d9565b6040516102f6919061269f565b60405180910390f35b610319600480360381019061031491906126b8565b6107ee565b005b348015610326575f80fd5b50610341600480360381019061033c9190612708565b61083d565b60405161034f929190612746565b60405180910390f35b348015610363575f80fd5b5061036c610a19565b604051610379919061269f565b60405180910390f35b34801561038d575f80fd5b50610396610a1f565b6040516103a391906127c8565b60405180910390f35b6103c660048036038101906103c191906126b8565b610a31565b005b3480156103d3575f80fd5b506103dc610a80565b6040516103e99190612430565b60405180910390f35b3480156103fd575f80fd5b50610418600480360381019061041391906125ff565b610a92565b6040516104259190612639565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f91906127e1565b610aa3565b604051610461919061269f565b60405180910390f35b348015610475575f80fd5b5061047e610b58565b005b34801561048b575f80fd5b50610494610b6b565b005b3480156104a1575f80fd5b506104aa610be7565b6040516104b7919061269f565b60405180910390f35b3480156104cb575f80fd5b506104d4610bf2565b6040516104e19190612639565b60405180910390f35b3480156104f5575f80fd5b506104fe610c1a565b60405161050b91906125ac565b60405180910390f35b61052e600480360381019061052991906125ff565b610caa565b005b34801561053b575f80fd5b5061055660048036038101906105519190612938565b610ebf565b005b348015610563575f80fd5b5061057e600480360381019061057991906129a9565b610eda565b005b34801561058b575f80fd5b50610594610ef3565b005b6105b060048036038101906105ab9190612a85565b610f05565b005b3480156105bd575f80fd5b506105d860048036038101906105d391906125ff565b610f56565b6040516105e591906125ac565b60405180910390f35b3480156105f9575f80fd5b50610614600480360381019061060f9190612b05565b610ff1565b6040516106219190612430565b60405180910390f35b348015610635575f80fd5b50610650600480360381019061064b9190612b43565b61107f565b005b34801561065d575f80fd5b50610678600480360381019061067391906127e1565b6110a3565b005b5f61068482611125565b806106945750610693826111b6565b5b9050919050565b6106a361122f565b6106ad82826112ad565b5050565b6060600280546106c090612b9b565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90612b9b565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b5f61074b8261143d565b610781576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107c581611497565b6107cf8383611591565b505050565b600581565b5f6107e26116d0565b6001545f540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461082c5761082b33611497565b5b6108378484846116d8565b50505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16036109c65760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f6109cf6119e6565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866109fb9190612bf8565b610a059190612c66565b9050815f0151819350935050509250929050565b6115b381565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6f57610a6e33611497565b5b610a7a8484846119ef565b50505050565b600c5f9054906101000a900460ff1681565b5f610a9c82611a0e565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610b6061122f565b610b695f611ad1565b565b610b7361122f565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610b9890612cc3565b5f6040518083038185875af1925050503d805f8114610bd2576040519150601f19603f3d011682016040523d82523d5f602084013e610bd7565b606091505b5050905080610be4575f80fd5b50565b660aa87bee53800081565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c2990612b9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612b9b565b8015610ca05780601f10610c7757610100808354040283529160200191610ca0565b820191905f5260205f20905b815481529060010190602001808311610c8357829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90612d21565b60405180910390fd5b600c5f9054906101000a900460ff16610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90612d89565b60405180910390fd5b6115b381610d72611b94565b610d7c9190612da7565b1115610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612e24565b60405180910390fd5b600581610dc933610aa3565b610dd39190612da7565b1115610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90612e8c565b60405180910390fd5b5f8190505f610e2233611ba5565b67ffffffffffffffff1690506001811015610e5257600183610e449190612eaa565b9150610e51336001611bef565b5b5f821115610eb0573482660aa87bee538000610e6e9190612bf8565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690612f27565b60405180910390fd5b5b610eba3384611c9f565b505050565b610ec761122f565b80600b9081610ed691906130d9565b5050565b81610ee481611497565b610eee8383611e48565b505050565b610efb61122f565b610f03611f4e565b565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4357610f4233611497565b5b610f4f85858585611f98565b5050505050565b6060610f618261143d565b610f97576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f610fa061200a565b90505f815103610fbe5760405180602001604052805f815250610fe9565b80610fc88461209a565b604051602001610fd99291906131e2565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61108761122f565b80600c5f6101000a81548160ff02191690831515021790555050565b6110ab61122f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613275565b60405180910390fd5b61112281611ad1565b50565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061117f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112285750611227826120e9565b5b9050919050565b611237612152565b73ffffffffffffffffffffffffffffffffffffffff16611255610bf2565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a2906132dd565b60405180910390fd5b565b6112b56119e6565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a9061336b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611378906133d3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f816114476116d0565b1115801561145557505f5482105b801561149057505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561158e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161150d9291906133f1565b602060405180830381865afa158015611528573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154c919061342c565b61158d57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115849190612639565b60405180910390fd5b5b50565b5f61159b82610a92565b90508073ffffffffffffffffffffffffffffffffffffffff166115bc612159565b73ffffffffffffffffffffffffffffffffffffffff161461161f576115e8816115e3612159565b610ff1565b61161e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f6116e282611a0e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611749576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061175484612160565b9150915061176a8187611765612159565b612183565b6117b65761177f8661177a612159565b610ff1565b6117b5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361181b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61182886868660016121c6565b8015611832575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506118fa856118d68888876121cc565b7c0200000000000000000000000000000000000000000000000000000000176121f3565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611976575f6001850190505f60045f8381526020019081526020015f205403611974575f548114611973578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119de868686600161221d565b505050505050565b5f612710905090565b611a0983838360405180602001604052805f815250610f05565b505050565b5f8082905080611a1c6116d0565b11611a9a575f54811015611a99575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611a97575b5f8103611a8d5760045f836001900393508381526020019081526020015f20549050611a66565b8092505050611acc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f611b9d6116d0565b5f5403905090565b5f60c060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c9050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f82905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff83161791508160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505050565b5f805490505f8203611cdd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce95f8483856121c6565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611d5b83611d4c5f865f6121cc565b611d5585612223565b176121f3565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611df55780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611dbc565b505f8203611e2f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611e435f84838561221d565b505050565b8060075f611e54612159565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611efd612159565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f429190612430565b60405180910390a35050565b60085f8082015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f820160146101000a8154906bffffffffffffffffffffffff02191690555050565b611fa38484846107ee565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461200457611fcd84848484612232565b612003576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461201990612b9b565b80601f016020809104026020016040519081016040528092919081815260200182805461204590612b9b565b80156120905780601f1061206757610100808354040283529160200191612090565b820191905f5260205f20905b81548152906001019060200180831161207357829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b6001156120d457600184039350600a81066030018453600a81049050806120b2575b50828103602084039350808452505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86121e286868461237d565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612257612159565b8786866040518563ffffffff1660e01b815260040161227994939291906134a9565b6020604051808303815f875af19250505080156122b457506040513d601f19601f820116820180604052508101906122b19190613507565b60015b61232a573d805f81146122e2576040519150601f19603f3d011682016040523d82523d5f602084013e6122e7565b606091505b505f815103612322576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ca81612396565b81146123d4575f80fd5b50565b5f813590506123e5816123c1565b92915050565b5f60208284031215612400576123ff61238e565b5b5f61240d848285016123d7565b91505092915050565b5f8115159050919050565b61242a81612416565b82525050565b5f6020820190506124435f830184612421565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61247282612449565b9050919050565b61248281612468565b811461248c575f80fd5b50565b5f8135905061249d81612479565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b6124c3816124a3565b81146124cd575f80fd5b50565b5f813590506124de816124ba565b92915050565b5f80604083850312156124fa576124f961238e565b5b5f6125078582860161248f565b9250506020612518858286016124d0565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561255957808201518184015260208101905061253e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61257e82612522565b612588818561252c565b935061259881856020860161253c565b6125a181612564565b840191505092915050565b5f6020820190508181035f8301526125c48184612574565b905092915050565b5f819050919050565b6125de816125cc565b81146125e8575f80fd5b50565b5f813590506125f9816125d5565b92915050565b5f602082840312156126145761261361238e565b5b5f612621848285016125eb565b91505092915050565b61263381612468565b82525050565b5f60208201905061264c5f83018461262a565b92915050565b5f80604083850312156126685761266761238e565b5b5f6126758582860161248f565b9250506020612686858286016125eb565b9150509250929050565b612699816125cc565b82525050565b5f6020820190506126b25f830184612690565b92915050565b5f805f606084860312156126cf576126ce61238e565b5b5f6126dc8682870161248f565b93505060206126ed8682870161248f565b92505060406126fe868287016125eb565b9150509250925092565b5f806040838503121561271e5761271d61238e565b5b5f61272b858286016125eb565b925050602061273c858286016125eb565b9150509250929050565b5f6040820190506127595f83018561262a565b6127666020830184612690565b9392505050565b5f819050919050565b5f61279061278b61278684612449565b61276d565b612449565b9050919050565b5f6127a182612776565b9050919050565b5f6127b282612797565b9050919050565b6127c2816127a8565b82525050565b5f6020820190506127db5f8301846127b9565b92915050565b5f602082840312156127f6576127f561238e565b5b5f6128038482850161248f565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61284a82612564565b810181811067ffffffffffffffff8211171561286957612868612814565b5b80604052505050565b5f61287b612385565b90506128878282612841565b919050565b5f67ffffffffffffffff8211156128a6576128a5612814565b5b6128af82612564565b9050602081019050919050565b828183375f83830152505050565b5f6128dc6128d78461288c565b612872565b9050828152602081018484840111156128f8576128f7612810565b5b6129038482856128bc565b509392505050565b5f82601f83011261291f5761291e61280c565b5b813561292f8482602086016128ca565b91505092915050565b5f6020828403121561294d5761294c61238e565b5b5f82013567ffffffffffffffff81111561296a57612969612392565b5b6129768482850161290b565b91505092915050565b61298881612416565b8114612992575f80fd5b50565b5f813590506129a38161297f565b92915050565b5f80604083850312156129bf576129be61238e565b5b5f6129cc8582860161248f565b92505060206129dd85828601612995565b9150509250929050565b5f67ffffffffffffffff821115612a0157612a00612814565b5b612a0a82612564565b9050602081019050919050565b5f612a29612a24846129e7565b612872565b905082815260208101848484011115612a4557612a44612810565b5b612a508482856128bc565b509392505050565b5f82601f830112612a6c57612a6b61280c565b5b8135612a7c848260208601612a17565b91505092915050565b5f805f8060808587031215612a9d57612a9c61238e565b5b5f612aaa8782880161248f565b9450506020612abb8782880161248f565b9350506040612acc878288016125eb565b925050606085013567ffffffffffffffff811115612aed57612aec612392565b5b612af987828801612a58565b91505092959194509250565b5f8060408385031215612b1b57612b1a61238e565b5b5f612b288582860161248f565b9250506020612b398582860161248f565b9150509250929050565b5f60208284031215612b5857612b5761238e565b5b5f612b6584828501612995565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612bb257607f821691505b602082108103612bc557612bc4612b6e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c02826125cc565b9150612c0d836125cc565b9250828202612c1b816125cc565b91508282048414831517612c3257612c31612bcb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c70826125cc565b9150612c7b836125cc565b925082612c8b57612c8a612c39565b5b828204905092915050565b5f81905092915050565b50565b5f612cae5f83612c96565b9150612cb982612ca0565b5f82019050919050565b5f612ccd82612ca3565b9150819050919050565b7f4e6f20636f6e74726163747300000000000000000000000000000000000000005f82015250565b5f612d0b600c8361252c565b9150612d1682612cd7565b602082019050919050565b5f6020820190508181035f830152612d3881612cff565b9050919050565b7f53616c65206e6f742061637469766500000000000000000000000000000000005f82015250565b5f612d73600f8361252c565b9150612d7e82612d3f565b602082019050919050565b5f6020820190508181035f830152612da081612d67565b9050919050565b5f612db1826125cc565b9150612dbc836125cc565b9250828201905080821115612dd457612dd3612bcb565b5b92915050565b7f45786365656473206d617820737570706c7900000000000000000000000000005f82015250565b5f612e0e60128361252c565b9150612e1982612dda565b602082019050919050565b5f6020820190508181035f830152612e3b81612e02565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f612e7660168361252c565b9150612e8182612e42565b602082019050919050565b5f6020820190508181035f830152612ea381612e6a565b9050919050565b5f612eb4826125cc565b9150612ebf836125cc565b9250828203905081811115612ed757612ed6612bcb565b5b92915050565b7f496e73756666696369656e742066756e64732073656e740000000000000000005f82015250565b5f612f1160178361252c565b9150612f1c82612edd565b602082019050919050565b5f6020820190508181035f830152612f3e81612f05565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612fa17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f66565b612fab8683612f66565b95508019841693508086168417925050509392505050565b5f612fdd612fd8612fd3846125cc565b61276d565b6125cc565b9050919050565b5f819050919050565b612ff683612fc3565b61300a61300282612fe4565b848454612f72565b825550505050565b5f90565b61301e613012565b613029818484612fed565b505050565b5b8181101561304c576130415f82613016565b60018101905061302f565b5050565b601f8211156130915761306281612f45565b61306b84612f57565b8101602085101561307a578190505b61308e61308685612f57565b83018261302e565b50505b505050565b5f82821c905092915050565b5f6130b15f1984600802613096565b1980831691505092915050565b5f6130c983836130a2565b9150826002028217905092915050565b6130e282612522565b67ffffffffffffffff8111156130fb576130fa612814565b5b6131058254612b9b565b613110828285613050565b5f60209050601f831160018114613141575f841561312f578287015190505b61313985826130be565b8655506131a0565b601f19841661314f86612f45565b5f5b8281101561317657848901518255600182019150602085019450602081019050613151565b86831015613193578489015161318f601f8916826130a2565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f6131bc82612522565b6131c681856131a8565b93506131d681856020860161253c565b80840191505092915050565b5f6131ed82856131b2565b91506131f982846131b2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61325f60268361252c565b915061326a82613205565b604082019050919050565b5f6020820190508181035f83015261328c81613253565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6132c760208361252c565b91506132d282613293565b602082019050919050565b5f6020820190508181035f8301526132f4816132bb565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f613355602a8361252c565b9150613360826132fb565b604082019050919050565b5f6020820190508181035f83015261338281613349565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f6133bd60198361252c565b91506133c882613389565b602082019050919050565b5f6020820190508181035f8301526133ea816133b1565b9050919050565b5f6040820190506134045f83018561262a565b613411602083018461262a565b9392505050565b5f815190506134268161297f565b92915050565b5f602082840312156134415761344061238e565b5b5f61344e84828501613418565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f61347b82613457565b6134858185613461565b935061349581856020860161253c565b61349e81612564565b840191505092915050565b5f6080820190506134bc5f83018761262a565b6134c9602083018661262a565b6134d66040830185612690565b81810360608301526134e88184613471565b905095945050505050565b5f81519050613501816123c1565b92915050565b5f6020828403121561351c5761351b61238e565b5b5f613529848285016134f3565b9150509291505056fea26469706673582212209810d08dea91023909207b70ecbabba074eb8f1c106bb884dc17cf5800d76c3864736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696132666a6f6d357366736a73376e32636d34347a33743461366b69686d746a69666d336d36637a36646e78633534723376646c712f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://bafybeia2fjom5sfsjs7n2cm44z3t4a6kihmtjifm3m6cz6dnxc54r3vdlq/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f626166796265696132666a6f6d357366736a73376e32636d34
Arg [3] : 347a33743461366b69686d746a69666d336d36637a36646e7863353472337664
Arg [4] : 6c712f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

73248:3268:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74691:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76270:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40984:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47475:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73940:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73430:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36735:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74113:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19181:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;73332:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7735:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74292:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73510:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42377:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37919:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13864:103;;;;;;;;;;;;;:::i;:::-;;75898:155;;;;;;;;;;;;;:::i;:::-;;73380:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13216:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41160:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74952:721;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76061:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73756:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76422:91;;;;;;;;;;;;;:::i;:::-;;74479:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41370:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48424:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76161:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14122:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74691:214;74794:4;74817:38;74843:11;74817:25;:38::i;:::-;:80;;;;74859:38;74885:11;74859:25;:38::i;:::-;74817:80;74810:87;;74691:214;;;:::o;76270:144::-;13102:13;:11;:13::i;:::-;76364:42:::1;76383:8;76393:12;76364:18;:42::i;:::-;76270:144:::0;;:::o;40984:100::-;41038:13;41071:5;41064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40984:100;:::o;47475:218::-;47551:7;47576:16;47584:7;47576;:16::i;:::-;47571:64;;47601:34;;;;;;;;;;;;;;47571:64;47655:15;:24;47671:7;47655:24;;;;;;;;;;;:30;;;;;;;;;;;;47648:37;;47475:218;;;:::o;73940:165::-;74044:8;9517:30;9538:8;9517:20;:30::i;:::-;74065:32:::1;74079:8;74089:7;74065:13;:32::i;:::-;73940:165:::0;;;:::o;73430:42::-;73471:1;73430:42;:::o;36735:323::-;36796:7;37024:15;:13;:15::i;:::-;37009:12;;36993:13;;:28;:46;36986:53;;36735:323;:::o;74113:171::-;74222:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;74239:37:::1;74258:4;74264:2;74268:7;74239:18;:37::i;:::-;74113:171:::0;;;;:::o;19181:442::-;19278:7;19287;19307:26;19336:17;:27;19354:8;19336:27;;;;;;;;;;;19307:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19408:1;19380:30;;:7;:16;;;:30;;;19376:92;;19437:19;19427:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19376:92;19480:21;19545:17;:15;:17::i;:::-;19504:58;;19518:7;:23;;;19505:36;;:10;:36;;;;:::i;:::-;19504:58;;;;:::i;:::-;19480:82;;19583:7;:16;;;19601:13;19575:40;;;;;;19181:442;;;;;:::o;73332:41::-;73369:4;73332:41;:::o;7735:143::-;151:42;7735:143;:::o;74292:179::-;74405:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;74422:41:::1;74445:4;74451:2;74455:7;74422:22;:41::i;:::-;74292:179:::0;;;;:::o;73510:32::-;;;;;;;;;;;;;:::o;42377:152::-;42449:7;42492:27;42511:7;42492:18;:27::i;:::-;42469:52;;42377:152;;;:::o;37919:233::-;37991:7;38032:1;38015:19;;:5;:19;;;38011:60;;38043:28;;;;;;;;;;;;;;38011:60;32078:13;38089:18;:25;38108:5;38089:25;;;;;;;;;;;;;;;;:55;38082:62;;37919:233;;;:::o;13864:103::-;13102:13;:11;:13::i;:::-;13929:30:::1;13956:1;13929:18;:30::i;:::-;13864:103::o:0;75898:155::-;13102:13;:11;:13::i;:::-;75952:7:::1;75973:10;75965:24;;75997:21;75965:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75951:72;;;76042:2;76034:11;;;::::0;::::1;;75940:113;75898:155::o:0;73380:43::-;73412:11;73380:43;:::o;13216:87::-;13262:7;13289:6;;;;;;;;;;;13282:13;;13216:87;:::o;41160:104::-;41216:13;41249:7;41242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41160:104;:::o;74952:721::-;75034:9;75020:23;;:10;:23;;;75012:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;75079:12;;;;;;;;;;;75071:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;73369:4;75147:10;75130:14;:12;:14::i;:::-;:27;;;;:::i;:::-;:41;;75122:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;73471:1;75237:10;75213:21;75223:10;75213:9;:21::i;:::-;:34;;;;:::i;:::-;:52;;75205:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;75303:17;75323:10;75303:30;;75344:18;75365:19;75373:10;75365:7;:19::i;:::-;75344:40;;;;75412:1;75399:10;:14;75395:110;;;75455:1;75442:10;:14;;;;:::i;:::-;75430:26;;75471:22;75479:10;75491:1;75471:7;:22::i;:::-;75395:110;75531:1;75519:9;:13;75515:111;;;75578:9;75565;73412:11;75557:17;;;;:::i;:::-;:30;;75549:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;75515:111;75636:29;75642:10;75654;75636:5;:29::i;:::-;75001:672;;74952:721;:::o;76061:92::-;13102:13;:11;:13::i;:::-;76141:4:::1;76131:7;:14;;;;;;:::i;:::-;;76061:92:::0;:::o;73756:176::-;73860:8;9517:30;9538:8;9517:20;:30::i;:::-;73881:43:::1;73905:8;73915;73881:23;:43::i;:::-;73756:176:::0;;;:::o;76422:91::-;13102:13;:11;:13::i;:::-;76482:23:::1;:21;:23::i;:::-;76422:91::o:0;74479:204::-;74611:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;74628:47:::1;74651:4;74657:2;74661:7;74670:4;74628:22;:47::i;:::-;74479:204:::0;;;;;:::o;41370:318::-;41443:13;41474:16;41482:7;41474;:16::i;:::-;41469:59;;41499:29;;;;;;;;;;;;;;41469:59;41541:21;41565:10;:8;:10::i;:::-;41541:34;;41618:1;41599:7;41593:21;:26;:87;;;;;;;;;;;;;;;;;41646:7;41655:18;41665:7;41655:9;:18::i;:::-;41629:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41593:87;41586:94;;;41370:318;;;:::o;48424:164::-;48521:4;48545:18;:25;48564:5;48545:25;;;;;;;;;;;;;;;:35;48571:8;48545:35;;;;;;;;;;;;;;;;;;;;;;;;;48538:42;;48424:164;;;;:::o;76161:101::-;13102:13;:11;:13::i;:::-;76245:9:::1;76230:12;;:24;;;;;;;;;;;;;;;;;;76161:101:::0;:::o;14122:201::-;13102:13;:11;:13::i;:::-;14231:1:::1;14211:22;;:8;:22;;::::0;14203:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14287:28;14306:8;14287:18;:28::i;:::-;14122:201:::0;:::o;40082:639::-;40167:4;40506:10;40491:25;;:11;:25;;;;:102;;;;40583:10;40568:25;;:11;:25;;;;40491:102;:179;;;;40660:10;40645:25;;:11;:25;;;;40491:179;40471:199;;40082:639;;;:::o;18911:215::-;19013:4;19052:26;19037:41;;;:11;:41;;;;:81;;;;19082:36;19106:11;19082:23;:36::i;:::-;19037:81;19030:88;;18911:215;;;:::o;13381:132::-;13456:12;:10;:12::i;:::-;13445:23;;:7;:5;:7::i;:::-;:23;;;13437:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13381:132::o;20273:332::-;20392:17;:15;:17::i;:::-;20376:33;;:12;:33;;;;20368:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;20495:1;20475:22;;:8;:22;;;20467:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20562:35;;;;;;;;20574:8;20562:35;;;;;;20584:12;20562:35;;;;;20540:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20273:332;;:::o;48846:282::-;48911:4;48967:7;48948:15;:13;:15::i;:::-;:26;;:66;;;;;49001:13;;48991:7;:23;48948:66;:153;;;;;49100:1;32854:8;49052:17;:26;49070:7;49052:26;;;;;;;;;;;;:44;:49;48948:153;48928:173;;48846:282;;;:::o;9660:647::-;9899:1;151:42;9851:45;;;:49;9847:453;;;151:42;10150;;;10201:4;10208:8;10150:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10264:8;10245:28;;;;;;;;;;;:::i;:::-;;;;;;;;10145:144;9847:453;9660:647;:::o;46908:408::-;46997:13;47013:16;47021:7;47013;:16::i;:::-;46997:32;;47069:5;47046:28;;:19;:17;:19::i;:::-;:28;;;47042:175;;47094:44;47111:5;47118:19;:17;:19::i;:::-;47094:16;:44::i;:::-;47089:128;;47166:35;;;;;;;;;;;;;;47089:128;47042:175;47262:2;47229:15;:24;47245:7;47229:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47300:7;47296:2;47280:28;;47289:5;47280:28;;;;;;;;;;;;46986:330;46908:408;;:::o;75681:101::-;75746:7;75773:1;75766:8;;75681:101;:::o;51114:2825::-;51256:27;51286;51305:7;51286:18;:27::i;:::-;51256:57;;51371:4;51330:45;;51346:19;51330:45;;;51326:86;;51384:28;;;;;;;;;;;;;;51326:86;51426:27;51455:23;51482:35;51509:7;51482:26;:35::i;:::-;51425:92;;;;51617:68;51642:15;51659:4;51665:19;:17;:19::i;:::-;51617:24;:68::i;:::-;51612:180;;51705:43;51722:4;51728:19;:17;:19::i;:::-;51705:16;:43::i;:::-;51700:92;;51757:35;;;;;;;;;;;;;;51700:92;51612:180;51823:1;51809:16;;:2;:16;;;51805:52;;51834:23;;;;;;;;;;;;;;51805:52;51870:43;51892:4;51898:2;51902:7;51911:1;51870:21;:43::i;:::-;52006:15;52003:160;;;52146:1;52125:19;52118:30;52003:160;52543:18;:24;52562:4;52543:24;;;;;;;;;;;;;;;;52541:26;;;;;;;;;;;;52612:18;:22;52631:2;52612:22;;;;;;;;;;;;;;;;52610:24;;;;;;;;;;;52934:146;52971:2;53020:45;53035:4;53041:2;53045:19;53020:14;:45::i;:::-;33134:8;52992:73;52934:18;:146::i;:::-;52905:17;:26;52923:7;52905:26;;;;;;;;;;;:175;;;;53251:1;33134:8;53200:19;:47;:52;53196:627;;53273:19;53305:1;53295:7;:11;53273:33;;53462:1;53428:17;:30;53446:11;53428:30;;;;;;;;;;;;:35;53424:384;;53566:13;;53551:11;:28;53547:242;;53746:19;53713:17;:30;53731:11;53713:30;;;;;;;;;;;:52;;;;53547:242;53424:384;53254:569;53196:627;53870:7;53866:2;53851:27;;53860:4;53851:27;;;;;;;;;;;;53889:42;53910:4;53916:2;53920:7;53929:1;53889:20;:42::i;:::-;51245:2694;;;51114:2825;;;:::o;19905:97::-;19963:6;19989:5;19982:12;;19905:97;:::o;54035:193::-;54181:39;54198:4;54204:2;54208:7;54181:39;;;;;;;;;;;;:16;:39::i;:::-;54035:193;;;:::o;43532:1275::-;43599:7;43619:12;43634:7;43619:22;;43702:4;43683:15;:13;:15::i;:::-;:23;43679:1061;;43736:13;;43729:4;:20;43725:1015;;;43774:14;43791:17;:23;43809:4;43791:23;;;;;;;;;;;;43774:40;;43908:1;32854:8;43880:6;:24;:29;43876:845;;44545:113;44562:1;44552:6;:11;44545:113;;44605:17;:25;44623:6;;;;;;;44605:25;;;;;;;;;;;;44596:34;;44545:113;;;44691:6;44684:13;;;;;;43876:845;43751:989;43725:1015;43679:1061;44768:31;;;;;;;;;;;;;;43532:1275;;;;:::o;14483:191::-;14557:16;14576:6;;;;;;;;;;;14557:25;;14602:8;14593:6;;:17;;;;;;;;;;;;;;;;;;14657:8;14626:40;;14647:8;14626:40;;;;;;;;;;;;14546:128;14483:191;:::o;37156:296::-;37211:7;37418:15;:13;:15::i;:::-;37402:13;;:31;37395:38;;37156:296;:::o;38806:137::-;38861:6;32452:3;38894:18;:25;38913:5;38894:25;;;;;;;;;;;;;;;;:40;;38880:55;;38806:137;;;:::o;39131:404::-;39203:14;39220:18;:25;39239:5;39220:25;;;;;;;;;;;;;;;;39203:42;;39256:17;39386:3;39373:16;;32452:3;39457:9;:24;;32597:14;39420:6;:32;39419:63;39410:72;;39521:6;39493:18;:25;39512:5;39493:25;;;;;;;;;;;;;;;:34;;;;39192:343;;39131:404;;:::o;58495:2966::-;58568:20;58591:13;;58568:36;;58631:1;58619:8;:13;58615:44;;58641:18;;;;;;;;;;;;;;58615:44;58672:61;58702:1;58706:2;58710:12;58724:8;58672:21;:61::i;:::-;59216:1;32216:2;59186:1;:26;;59185:32;59173:8;:45;59147:18;:22;59166:2;59147:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59495:139;59532:2;59586:33;59609:1;59613:2;59617:1;59586:14;:33::i;:::-;59553:30;59574:8;59553:20;:30::i;:::-;:66;59495:18;:139::i;:::-;59461:17;:31;59479:12;59461:31;;;;;;;;;;;:173;;;;59651:16;59682:11;59711:8;59696:12;:23;59682:37;;60232:16;60228:2;60224:25;60212:37;;60604:12;60564:8;60523:1;60461:25;60402:1;60341;60314:335;60975:1;60961:12;60957:20;60915:346;61016:3;61007:7;61004:16;60915:346;;61234:7;61224:8;61221:1;61194:25;61191:1;61188;61183:59;61069:1;61060:7;61056:15;61045:26;;60915:346;;;60919:77;61306:1;61294:8;:13;61290:45;;61316:19;;;;;;;;;;;;;;61290:45;61368:3;61352:13;:19;;;;58921:2462;;61393:60;61422:1;61426:2;61430:12;61444:8;61393:20;:60::i;:::-;58557:2904;58495:2966;;:::o;48033:234::-;48180:8;48128:18;:39;48147:19;:17;:19::i;:::-;48128:39;;;;;;;;;;;;;;;:49;48168:8;48128:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48240:8;48204:55;;48219:19;:17;:19::i;:::-;48204:55;;;48250:8;48204:55;;;;;;:::i;:::-;;;;;;;;48033:234;;:::o;20681:95::-;20749:19;;20742:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20681:95::o;54826:407::-;55001:31;55014:4;55020:2;55024:7;55001:12;:31::i;:::-;55065:1;55047:2;:14;;;:19;55043:183;;55086:56;55117:4;55123:2;55127:7;55136:5;55086:30;:56::i;:::-;55081:145;;55170:40;;;;;;;;;;;;;;55081:145;55043:183;54826:407;;;;:::o;75790:100::-;75842:13;75875:7;75868:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75790:100;:::o;71361:1745::-;71426:17;71860:4;71853;71847:11;71843:22;71952:1;71946:4;71939:15;72027:4;72024:1;72020:12;72013:19;;72109:1;72104:3;72097:14;72213:3;72452:5;72434:428;72460:1;72434:428;;;72500:1;72495:3;72491:11;72484:18;;72671:2;72665:4;72661:13;72657:2;72653:22;72648:3;72640:36;72765:2;72759:4;72755:13;72747:21;;72832:4;72434:428;72822:25;72434:428;72438:21;72901:3;72896;72892:13;73016:4;73011:3;73007:14;73000:21;;73081:6;73076:3;73069:19;71465:1634;;;71361:1745;;;:::o;16463:157::-;16548:4;16587:25;16572:40;;;:11;:40;;;;16565:47;;16463:157;;;:::o;11767:98::-;11820:7;11847:10;11840:17;;11767:98;:::o;71154:105::-;71214:7;71241:10;71234:17;;71154:105;:::o;50009:485::-;50111:27;50140:23;50181:38;50222:15;:24;50238:7;50222:24;;;;;;;;;;;50181:65;;50399:18;50376:41;;50456:19;50450:26;50431:45;;50361:126;50009:485;;;:::o;49237:659::-;49386:11;49551:16;49544:5;49540:28;49531:37;;49711:16;49700:9;49696:32;49683:45;;49861:15;49850:9;49847:30;49839:5;49828:9;49825:20;49822:56;49812:66;;49237:659;;;;;:::o;55895:159::-;;;;;:::o;70463:311::-;70598:7;70618:16;33258:3;70644:19;:41;;70618:68;;33258:3;70712:31;70723:4;70729:2;70733:9;70712:10;:31::i;:::-;70704:40;;:62;;70697:69;;;70463:311;;;;;:::o;45355:450::-;45435:14;45603:16;45596:5;45592:28;45583:37;;45780:5;45766:11;45741:23;45737:41;45734:52;45727:5;45724:63;45714:73;;45355:450;;;;:::o;56719:158::-;;;;;:::o;45907:324::-;45977:14;46210:1;46200:8;46197:15;46171:24;46167:46;46157:56;;45907:324;;;:::o;57317:716::-;57480:4;57526:2;57501:45;;;57547:19;:17;:19::i;:::-;57568:4;57574:7;57583:5;57501:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57801:1;57784:6;:13;:18;57780:235;;57830:40;;;;;;;;;;;;;;57780:235;57973:6;57967:13;57958:6;57954:2;57950:15;57943:38;57497:529;57670:54;;;57660:64;;;:6;:64;;;;57653:71;;;57317:716;;;;;;:::o;70164:147::-;70301:6;70164:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:60::-;7575:3;7596:5;7589:12;;7547:60;;;:::o;7613:142::-;7663:9;7696:53;7714:34;7723:24;7741:5;7723:24;:::i;:::-;7714:34;:::i;:::-;7696:53;:::i;:::-;7683:66;;7613:142;;;:::o;7761:126::-;7811:9;7844:37;7875:5;7844:37;:::i;:::-;7831:50;;7761:126;;;:::o;7893:157::-;7974:9;8007:37;8038:5;8007:37;:::i;:::-;7994:50;;7893:157;;;:::o;8056:193::-;8174:68;8236:5;8174:68;:::i;:::-;8169:3;8162:81;8056:193;;:::o;8255:284::-;8379:4;8417:2;8406:9;8402:18;8394:26;;8430:102;8529:1;8518:9;8514:17;8505:6;8430:102;:::i;:::-;8255:284;;;;:::o;8545:329::-;8604:6;8653:2;8641:9;8632:7;8628:23;8624:32;8621:119;;;8659:79;;:::i;:::-;8621:119;8779:1;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8750:117;8545:329;;;;:::o;8880:117::-;8989:1;8986;8979:12;9003:117;9112:1;9109;9102:12;9126:180;9174:77;9171:1;9164:88;9271:4;9268:1;9261:15;9295:4;9292:1;9285:15;9312:281;9395:27;9417:4;9395:27;:::i;:::-;9387:6;9383:40;9525:6;9513:10;9510:22;9489:18;9477:10;9474:34;9471:62;9468:88;;;9536:18;;:::i;:::-;9468:88;9576:10;9572:2;9565:22;9355:238;9312:281;;:::o;9599:129::-;9633:6;9660:20;;:::i;:::-;9650:30;;9689:33;9717:4;9709:6;9689:33;:::i;:::-;9599:129;;;:::o;9734:308::-;9796:4;9886:18;9878:6;9875:30;9872:56;;;9908:18;;:::i;:::-;9872:56;9946:29;9968:6;9946:29;:::i;:::-;9938:37;;10030:4;10024;10020:15;10012:23;;9734:308;;;:::o;10048:146::-;10145:6;10140:3;10135;10122:30;10186:1;10177:6;10172:3;10168:16;10161:27;10048:146;;;:::o;10200:425::-;10278:5;10303:66;10319:49;10361:6;10319:49;:::i;:::-;10303:66;:::i;:::-;10294:75;;10392:6;10385:5;10378:21;10430:4;10423:5;10419:16;10468:3;10459:6;10454:3;10450:16;10447:25;10444:112;;;10475:79;;:::i;:::-;10444:112;10565:54;10612:6;10607:3;10602;10565:54;:::i;:::-;10284:341;10200:425;;;;;:::o;10645:340::-;10701:5;10750:3;10743:4;10735:6;10731:17;10727:27;10717:122;;10758:79;;:::i;:::-;10717:122;10875:6;10862:20;10900:79;10975:3;10967:6;10960:4;10952:6;10948:17;10900:79;:::i;:::-;10891:88;;10707:278;10645:340;;;;:::o;10991:509::-;11060:6;11109:2;11097:9;11088:7;11084:23;11080:32;11077:119;;;11115:79;;:::i;:::-;11077:119;11263:1;11252:9;11248:17;11235:31;11293:18;11285:6;11282:30;11279:117;;;11315:79;;:::i;:::-;11279:117;11420:63;11475:7;11466:6;11455:9;11451:22;11420:63;:::i;:::-;11410:73;;11206:287;10991:509;;;;:::o;11506:116::-;11576:21;11591:5;11576:21;:::i;:::-;11569:5;11566:32;11556:60;;11612:1;11609;11602:12;11556:60;11506:116;:::o;11628:133::-;11671:5;11709:6;11696:20;11687:29;;11725:30;11749:5;11725:30;:::i;:::-;11628:133;;;;:::o;11767:468::-;11832:6;11840;11889:2;11877:9;11868:7;11864:23;11860:32;11857:119;;;11895:79;;:::i;:::-;11857:119;12015:1;12040:53;12085:7;12076:6;12065:9;12061:22;12040:53;:::i;:::-;12030:63;;11986:117;12142:2;12168:50;12210:7;12201:6;12190:9;12186:22;12168:50;:::i;:::-;12158:60;;12113:115;11767:468;;;;;:::o;12241:307::-;12302:4;12392:18;12384:6;12381:30;12378:56;;;12414:18;;:::i;:::-;12378:56;12452:29;12474:6;12452:29;:::i;:::-;12444:37;;12536:4;12530;12526:15;12518:23;;12241:307;;;:::o;12554:423::-;12631:5;12656:65;12672:48;12713:6;12672:48;:::i;:::-;12656:65;:::i;:::-;12647:74;;12744:6;12737:5;12730:21;12782:4;12775:5;12771:16;12820:3;12811:6;12806:3;12802:16;12799:25;12796:112;;;12827:79;;:::i;:::-;12796:112;12917:54;12964:6;12959:3;12954;12917:54;:::i;:::-;12637:340;12554:423;;;;;:::o;12996:338::-;13051:5;13100:3;13093:4;13085:6;13081:17;13077:27;13067:122;;13108:79;;:::i;:::-;13067:122;13225:6;13212:20;13250:78;13324:3;13316:6;13309:4;13301:6;13297:17;13250:78;:::i;:::-;13241:87;;13057:277;12996:338;;;;:::o;13340:943::-;13435:6;13443;13451;13459;13508:3;13496:9;13487:7;13483:23;13479:33;13476:120;;;13515:79;;:::i;:::-;13476:120;13635:1;13660:53;13705:7;13696:6;13685:9;13681:22;13660:53;:::i;:::-;13650:63;;13606:117;13762:2;13788:53;13833:7;13824:6;13813:9;13809:22;13788:53;:::i;:::-;13778:63;;13733:118;13890:2;13916:53;13961:7;13952:6;13941:9;13937:22;13916:53;:::i;:::-;13906:63;;13861:118;14046:2;14035:9;14031:18;14018:32;14077:18;14069:6;14066:30;14063:117;;;14099:79;;:::i;:::-;14063:117;14204:62;14258:7;14249:6;14238:9;14234:22;14204:62;:::i;:::-;14194:72;;13989:287;13340:943;;;;;;;:::o;14289:474::-;14357:6;14365;14414:2;14402:9;14393:7;14389:23;14385:32;14382:119;;;14420:79;;:::i;:::-;14382:119;14540:1;14565:53;14610:7;14601:6;14590:9;14586:22;14565:53;:::i;:::-;14555:63;;14511:117;14667:2;14693:53;14738:7;14729:6;14718:9;14714:22;14693:53;:::i;:::-;14683:63;;14638:118;14289:474;;;;;:::o;14769:323::-;14825:6;14874:2;14862:9;14853:7;14849:23;14845:32;14842:119;;;14880:79;;:::i;:::-;14842:119;15000:1;15025:50;15067:7;15058:6;15047:9;15043:22;15025:50;:::i;:::-;15015:60;;14971:114;14769:323;;;;:::o;15098:180::-;15146:77;15143:1;15136:88;15243:4;15240:1;15233:15;15267:4;15264:1;15257:15;15284:320;15328:6;15365:1;15359:4;15355:12;15345:22;;15412:1;15406:4;15402:12;15433:18;15423:81;;15489:4;15481:6;15477:17;15467:27;;15423:81;15551:2;15543:6;15540:14;15520:18;15517:38;15514:84;;15570:18;;:::i;:::-;15514:84;15335:269;15284:320;;;:::o;15610:180::-;15658:77;15655:1;15648:88;15755:4;15752:1;15745:15;15779:4;15776:1;15769:15;15796:410;15836:7;15859:20;15877:1;15859:20;:::i;:::-;15854:25;;15893:20;15911:1;15893:20;:::i;:::-;15888:25;;15948:1;15945;15941:9;15970:30;15988:11;15970:30;:::i;:::-;15959:41;;16149:1;16140:7;16136:15;16133:1;16130:22;16110:1;16103:9;16083:83;16060:139;;16179:18;;:::i;:::-;16060:139;15844:362;15796:410;;;;:::o;16212:180::-;16260:77;16257:1;16250:88;16357:4;16354:1;16347:15;16381:4;16378:1;16371:15;16398:185;16438:1;16455:20;16473:1;16455:20;:::i;:::-;16450:25;;16489:20;16507:1;16489:20;:::i;:::-;16484:25;;16528:1;16518:35;;16533:18;;:::i;:::-;16518:35;16575:1;16572;16568:9;16563:14;;16398:185;;;;:::o;16589:147::-;16690:11;16727:3;16712:18;;16589:147;;;;:::o;16742:114::-;;:::o;16862:398::-;17021:3;17042:83;17123:1;17118:3;17042:83;:::i;:::-;17035:90;;17134:93;17223:3;17134:93;:::i;:::-;17252:1;17247:3;17243:11;17236:18;;16862:398;;;:::o;17266:379::-;17450:3;17472:147;17615:3;17472:147;:::i;:::-;17465:154;;17636:3;17629:10;;17266:379;;;:::o;17651:162::-;17791:14;17787:1;17779:6;17775:14;17768:38;17651:162;:::o;17819:366::-;17961:3;17982:67;18046:2;18041:3;17982:67;:::i;:::-;17975:74;;18058:93;18147:3;18058:93;:::i;:::-;18176:2;18171:3;18167:12;18160:19;;17819:366;;;:::o;18191:419::-;18357:4;18395:2;18384:9;18380:18;18372:26;;18444:9;18438:4;18434:20;18430:1;18419:9;18415:17;18408:47;18472:131;18598:4;18472:131;:::i;:::-;18464:139;;18191:419;;;:::o;18616:165::-;18756:17;18752:1;18744:6;18740:14;18733:41;18616:165;:::o;18787:366::-;18929:3;18950:67;19014:2;19009:3;18950:67;:::i;:::-;18943:74;;19026:93;19115:3;19026:93;:::i;:::-;19144:2;19139:3;19135:12;19128:19;;18787:366;;;:::o;19159:419::-;19325:4;19363:2;19352:9;19348:18;19340:26;;19412:9;19406:4;19402:20;19398:1;19387:9;19383:17;19376:47;19440:131;19566:4;19440:131;:::i;:::-;19432:139;;19159:419;;;:::o;19584:191::-;19624:3;19643:20;19661:1;19643:20;:::i;:::-;19638:25;;19677:20;19695:1;19677:20;:::i;:::-;19672:25;;19720:1;19717;19713:9;19706:16;;19741:3;19738:1;19735:10;19732:36;;;19748:18;;:::i;:::-;19732:36;19584:191;;;;:::o;19781:168::-;19921:20;19917:1;19909:6;19905:14;19898:44;19781:168;:::o;19955:366::-;20097:3;20118:67;20182:2;20177:3;20118:67;:::i;:::-;20111:74;;20194:93;20283:3;20194:93;:::i;:::-;20312:2;20307:3;20303:12;20296:19;;19955:366;;;:::o;20327:419::-;20493:4;20531:2;20520:9;20516:18;20508:26;;20580:9;20574:4;20570:20;20566:1;20555:9;20551:17;20544:47;20608:131;20734:4;20608:131;:::i;:::-;20600:139;;20327:419;;;:::o;20752:172::-;20892:24;20888:1;20880:6;20876:14;20869:48;20752:172;:::o;20930:366::-;21072:3;21093:67;21157:2;21152:3;21093:67;:::i;:::-;21086:74;;21169:93;21258:3;21169:93;:::i;:::-;21287:2;21282:3;21278:12;21271:19;;20930:366;;;:::o;21302:419::-;21468:4;21506:2;21495:9;21491:18;21483:26;;21555:9;21549:4;21545:20;21541:1;21530:9;21526:17;21519:47;21583:131;21709:4;21583:131;:::i;:::-;21575:139;;21302:419;;;:::o;21727:194::-;21767:4;21787:20;21805:1;21787:20;:::i;:::-;21782:25;;21821:20;21839:1;21821:20;:::i;:::-;21816:25;;21865:1;21862;21858:9;21850:17;;21889:1;21883:4;21880:11;21877:37;;;21894:18;;:::i;:::-;21877:37;21727:194;;;;:::o;21927:173::-;22067:25;22063:1;22055:6;22051:14;22044:49;21927:173;:::o;22106:366::-;22248:3;22269:67;22333:2;22328:3;22269:67;:::i;:::-;22262:74;;22345:93;22434:3;22345:93;:::i;:::-;22463:2;22458:3;22454:12;22447:19;;22106:366;;;:::o;22478:419::-;22644:4;22682:2;22671:9;22667:18;22659:26;;22731:9;22725:4;22721:20;22717:1;22706:9;22702:17;22695:47;22759:131;22885:4;22759:131;:::i;:::-;22751:139;;22478:419;;;:::o;22903:141::-;22952:4;22975:3;22967:11;;22998:3;22995:1;22988:14;23032:4;23029:1;23019:18;23011:26;;22903:141;;;:::o;23050:93::-;23087:6;23134:2;23129;23122:5;23118:14;23114:23;23104:33;;23050:93;;;:::o;23149:107::-;23193:8;23243:5;23237:4;23233:16;23212:37;;23149:107;;;;:::o;23262:393::-;23331:6;23381:1;23369:10;23365:18;23404:97;23434:66;23423:9;23404:97;:::i;:::-;23522:39;23552:8;23541:9;23522:39;:::i;:::-;23510:51;;23594:4;23590:9;23583:5;23579:21;23570:30;;23643:4;23633:8;23629:19;23622:5;23619:30;23609:40;;23338:317;;23262:393;;;;;:::o;23661:142::-;23711:9;23744:53;23762:34;23771:24;23789:5;23771:24;:::i;:::-;23762:34;:::i;:::-;23744:53;:::i;:::-;23731:66;;23661:142;;;:::o;23809:75::-;23852:3;23873:5;23866:12;;23809:75;;;:::o;23890:269::-;24000:39;24031:7;24000:39;:::i;:::-;24061:91;24110:41;24134:16;24110:41;:::i;:::-;24102:6;24095:4;24089:11;24061:91;:::i;:::-;24055:4;24048:105;23966:193;23890:269;;;:::o;24165:73::-;24210:3;24165:73;:::o;24244:189::-;24321:32;;:::i;:::-;24362:65;24420:6;24412;24406:4;24362:65;:::i;:::-;24297:136;24244:189;;:::o;24439:186::-;24499:120;24516:3;24509:5;24506:14;24499:120;;;24570:39;24607:1;24600:5;24570:39;:::i;:::-;24543:1;24536:5;24532:13;24523:22;;24499:120;;;24439:186;;:::o;24631:543::-;24732:2;24727:3;24724:11;24721:446;;;24766:38;24798:5;24766:38;:::i;:::-;24850:29;24868:10;24850:29;:::i;:::-;24840:8;24836:44;25033:2;25021:10;25018:18;25015:49;;;25054:8;25039:23;;25015:49;25077:80;25133:22;25151:3;25133:22;:::i;:::-;25123:8;25119:37;25106:11;25077:80;:::i;:::-;24736:431;;24721:446;24631:543;;;:::o;25180:117::-;25234:8;25284:5;25278:4;25274:16;25253:37;;25180:117;;;;:::o;25303:169::-;25347:6;25380:51;25428:1;25424:6;25416:5;25413:1;25409:13;25380:51;:::i;:::-;25376:56;25461:4;25455;25451:15;25441:25;;25354:118;25303:169;;;;:::o;25477:295::-;25553:4;25699:29;25724:3;25718:4;25699:29;:::i;:::-;25691:37;;25761:3;25758:1;25754:11;25748:4;25745:21;25737:29;;25477:295;;;;:::o;25777:1395::-;25894:37;25927:3;25894:37;:::i;:::-;25996:18;25988:6;25985:30;25982:56;;;26018:18;;:::i;:::-;25982:56;26062:38;26094:4;26088:11;26062:38;:::i;:::-;26147:67;26207:6;26199;26193:4;26147:67;:::i;:::-;26241:1;26265:4;26252:17;;26297:2;26289:6;26286:14;26314:1;26309:618;;;;26971:1;26988:6;26985:77;;;27037:9;27032:3;27028:19;27022:26;27013:35;;26985:77;27088:67;27148:6;27141:5;27088:67;:::i;:::-;27082:4;27075:81;26944:222;26279:887;;26309:618;26361:4;26357:9;26349:6;26345:22;26395:37;26427:4;26395:37;:::i;:::-;26454:1;26468:208;26482:7;26479:1;26476:14;26468:208;;;26561:9;26556:3;26552:19;26546:26;26538:6;26531:42;26612:1;26604:6;26600:14;26590:24;;26659:2;26648:9;26644:18;26631:31;;26505:4;26502:1;26498:12;26493:17;;26468:208;;;26704:6;26695:7;26692:19;26689:179;;;26762:9;26757:3;26753:19;26747:26;26805:48;26847:4;26839:6;26835:17;26824:9;26805:48;:::i;:::-;26797:6;26790:64;26712:156;26689:179;26914:1;26910;26902:6;26898:14;26894:22;26888:4;26881:36;26316:611;;;26279:887;;25869:1303;;;25777:1395;;:::o;27178:148::-;27280:11;27317:3;27302:18;;27178:148;;;;:::o;27332:390::-;27438:3;27466:39;27499:5;27466:39;:::i;:::-;27521:89;27603:6;27598:3;27521:89;:::i;:::-;27514:96;;27619:65;27677:6;27672:3;27665:4;27658:5;27654:16;27619:65;:::i;:::-;27709:6;27704:3;27700:16;27693:23;;27442:280;27332:390;;;;:::o;27728:435::-;27908:3;27930:95;28021:3;28012:6;27930:95;:::i;:::-;27923:102;;28042:95;28133:3;28124:6;28042:95;:::i;:::-;28035:102;;28154:3;28147:10;;27728:435;;;;;:::o;28169:225::-;28309:34;28305:1;28297:6;28293:14;28286:58;28378:8;28373:2;28365:6;28361:15;28354:33;28169:225;:::o;28400:366::-;28542:3;28563:67;28627:2;28622:3;28563:67;:::i;:::-;28556:74;;28639:93;28728:3;28639:93;:::i;:::-;28757:2;28752:3;28748:12;28741:19;;28400:366;;;:::o;28772:419::-;28938:4;28976:2;28965:9;28961:18;28953:26;;29025:9;29019:4;29015:20;29011:1;29000:9;28996:17;28989:47;29053:131;29179:4;29053:131;:::i;:::-;29045:139;;28772:419;;;:::o;29197:182::-;29337:34;29333:1;29325:6;29321:14;29314:58;29197:182;:::o;29385:366::-;29527:3;29548:67;29612:2;29607:3;29548:67;:::i;:::-;29541:74;;29624:93;29713:3;29624:93;:::i;:::-;29742:2;29737:3;29733:12;29726:19;;29385:366;;;:::o;29757:419::-;29923:4;29961:2;29950:9;29946:18;29938:26;;30010:9;30004:4;30000:20;29996:1;29985:9;29981:17;29974:47;30038:131;30164:4;30038:131;:::i;:::-;30030:139;;29757:419;;;:::o;30182:229::-;30322:34;30318:1;30310:6;30306:14;30299:58;30391:12;30386:2;30378:6;30374:15;30367:37;30182:229;:::o;30417:366::-;30559:3;30580:67;30644:2;30639:3;30580:67;:::i;:::-;30573:74;;30656:93;30745:3;30656:93;:::i;:::-;30774:2;30769:3;30765:12;30758:19;;30417:366;;;:::o;30789:419::-;30955:4;30993:2;30982:9;30978:18;30970:26;;31042:9;31036:4;31032:20;31028:1;31017:9;31013:17;31006:47;31070:131;31196:4;31070:131;:::i;:::-;31062:139;;30789:419;;;:::o;31214:175::-;31354:27;31350:1;31342:6;31338:14;31331:51;31214:175;:::o;31395:366::-;31537:3;31558:67;31622:2;31617:3;31558:67;:::i;:::-;31551:74;;31634:93;31723:3;31634:93;:::i;:::-;31752:2;31747:3;31743:12;31736:19;;31395:366;;;:::o;31767:419::-;31933:4;31971:2;31960:9;31956:18;31948:26;;32020:9;32014:4;32010:20;32006:1;31995:9;31991:17;31984:47;32048:131;32174:4;32048:131;:::i;:::-;32040:139;;31767:419;;;:::o;32192:332::-;32313:4;32351:2;32340:9;32336:18;32328:26;;32364:71;32432:1;32421:9;32417:17;32408:6;32364:71;:::i;:::-;32445:72;32513:2;32502:9;32498:18;32489:6;32445:72;:::i;:::-;32192:332;;;;;:::o;32530:137::-;32584:5;32615:6;32609:13;32600:22;;32631:30;32655:5;32631:30;:::i;:::-;32530:137;;;;:::o;32673:345::-;32740:6;32789:2;32777:9;32768:7;32764:23;32760:32;32757:119;;;32795:79;;:::i;:::-;32757:119;32915:1;32940:61;32993:7;32984:6;32973:9;32969:22;32940:61;:::i;:::-;32930:71;;32886:125;32673:345;;;;:::o;33024:98::-;33075:6;33109:5;33103:12;33093:22;;33024:98;;;:::o;33128:168::-;33211:11;33245:6;33240:3;33233:19;33285:4;33280:3;33276:14;33261:29;;33128:168;;;;:::o;33302:373::-;33388:3;33416:38;33448:5;33416:38;:::i;:::-;33470:70;33533:6;33528:3;33470:70;:::i;:::-;33463:77;;33549:65;33607:6;33602:3;33595:4;33588:5;33584:16;33549:65;:::i;:::-;33639:29;33661:6;33639:29;:::i;:::-;33634:3;33630:39;33623:46;;33392:283;33302:373;;;;:::o;33681:640::-;33876:4;33914:3;33903:9;33899:19;33891:27;;33928:71;33996:1;33985:9;33981:17;33972:6;33928:71;:::i;:::-;34009:72;34077:2;34066:9;34062:18;34053:6;34009:72;:::i;:::-;34091;34159:2;34148:9;34144:18;34135:6;34091:72;:::i;:::-;34210:9;34204:4;34200:20;34195:2;34184:9;34180:18;34173:48;34238:76;34309:4;34300:6;34238:76;:::i;:::-;34230:84;;33681:640;;;;;;;:::o;34327:141::-;34383:5;34414:6;34408:13;34399:22;;34430:32;34456:5;34430:32;:::i;:::-;34327:141;;;;:::o;34474:349::-;34543:6;34592:2;34580:9;34571:7;34567:23;34563:32;34560:119;;;34598:79;;:::i;:::-;34560:119;34718:1;34743:63;34798:7;34789:6;34778:9;34774:22;34743:63;:::i;:::-;34733:73;;34689:127;34474:349;;;;:::o

Swarm Source

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